Sync all projects
This commit is contained in:
@@ -0,0 +1 @@
|
||||
H4sIAFhyiGYC/11RS2/TQBC+8yssgxSbhE0AgZC3PhTBAVQaCRQuURRt43W81j7MPqImliUkBCcOFeJGT73QC+LSA8qBX9Mm4l+wtreR2jnNzDffPL5ZIOlJQ7EXe+Udz5ommuLI6zx+uv1xsfn2a3z1+8uk02uwTChtoUzrIur3UUFANqPLFZgJFj17uCtieCSpreuztJ8rwYE+1g40OyBdzihSyuUbf8oRq0dffT7/9+n8BtLybjXLMEqwVJHbvLbOSGH5YH+Oue5Ywpvh81cHL6ejfceoeu5GhoWxpzwZDAZtihJGbOLRdVxQtJwWSCq7kJYGuyq0Wtq2rtvln4/b9U+3V1QQPteIwEZAeEw4YXN4aNgRlhAlicS7Yy/XX6950cLqn8TjCaydXMSv3w0PQTM3kPiDwUoHhBdGhyFYZeZIwPfDF3FZwVTIoKaQeADJXi4AxXZ8Bkm3G5YJKIzKgrL9ZS7GZAIav1fr2MZupSqsbEewEMm0OTmVgsW+/fvm+9/N+sSHN1BLjxPAUBGkhs80ETwgOiwl1kZyj+h2Ste/53dtYKurEOSC8MC/64dQYf0WK0N1kITQabE5Od1enFkt7ttE9R/6sY8xjgIAAA==
|
||||
+73
File diff suppressed because one or more lines are too long
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,6140 @@
|
||||
/*globals window, global, require*/
|
||||
|
||||
/**
|
||||
* CryptoJS core components.
|
||||
*/
|
||||
var CryptoJS = CryptoJS || (function (Math, undefined) {
|
||||
|
||||
var crypto;
|
||||
|
||||
// Native crypto from window (Browser)
|
||||
if (typeof window !== 'undefined' && window.crypto) {
|
||||
crypto = window.crypto;
|
||||
}
|
||||
|
||||
// Native (experimental IE 11) crypto from window (Browser)
|
||||
if (!crypto && typeof window !== 'undefined' && window.msCrypto) {
|
||||
crypto = window.msCrypto;
|
||||
}
|
||||
|
||||
// Native crypto from global (NodeJS)
|
||||
if (!crypto && typeof global !== 'undefined' && global.crypto) {
|
||||
crypto = global.crypto;
|
||||
}
|
||||
|
||||
// Native crypto import via require (NodeJS)
|
||||
if (!crypto && typeof require === 'function') {
|
||||
try {
|
||||
crypto = require('crypto');
|
||||
} catch (err) {}
|
||||
}
|
||||
|
||||
/*
|
||||
* Cryptographically secure pseudorandom number generator
|
||||
*
|
||||
* As Math.random() is cryptographically not safe to use
|
||||
*/
|
||||
var cryptoSecureRandomInt = function () {
|
||||
if (crypto) {
|
||||
// Use getRandomValues method (Browser)
|
||||
if (typeof crypto.getRandomValues === 'function') {
|
||||
try {
|
||||
return crypto.getRandomValues(new Uint32Array(1))[0];
|
||||
} catch (err) {}
|
||||
}
|
||||
|
||||
// Use randomBytes method (NodeJS)
|
||||
if (typeof crypto.randomBytes === 'function') {
|
||||
try {
|
||||
return crypto.randomBytes(4).readInt32LE();
|
||||
} catch (err) {}
|
||||
}
|
||||
}
|
||||
|
||||
throw new Error('Native crypto module could not be used to get secure random number.');
|
||||
};
|
||||
|
||||
/*
|
||||
* Local polyfill of Object.create
|
||||
*/
|
||||
var create = Object.create || (function () {
|
||||
function F() {}
|
||||
|
||||
return function (obj) {
|
||||
var subtype;
|
||||
|
||||
F.prototype = obj;
|
||||
|
||||
subtype = new F();
|
||||
|
||||
F.prototype = null;
|
||||
|
||||
return subtype;
|
||||
};
|
||||
}())
|
||||
|
||||
/**
|
||||
* CryptoJS namespace.
|
||||
*/
|
||||
var C = {};
|
||||
|
||||
/**
|
||||
* Library namespace.
|
||||
*/
|
||||
var C_lib = C.lib = {};
|
||||
|
||||
/**
|
||||
* Base object for prototypal inheritance.
|
||||
*/
|
||||
var Base = C_lib.Base = (function () {
|
||||
|
||||
|
||||
return {
|
||||
/**
|
||||
* Creates a new object that inherits from this object.
|
||||
*
|
||||
* @param {Object} overrides Properties to copy into the new object.
|
||||
*
|
||||
* @return {Object} The new object.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var MyType = CryptoJS.lib.Base.extend({
|
||||
* field: 'value',
|
||||
*
|
||||
* method: function () {
|
||||
* }
|
||||
* });
|
||||
*/
|
||||
extend: function (overrides) {
|
||||
// Spawn
|
||||
var subtype = create(this);
|
||||
|
||||
// Augment
|
||||
if (overrides) {
|
||||
subtype.mixIn(overrides);
|
||||
}
|
||||
|
||||
// Create default initializer
|
||||
if (!subtype.hasOwnProperty('init') || this.init === subtype.init) {
|
||||
subtype.init = function () {
|
||||
subtype.$super.init.apply(this, arguments);
|
||||
};
|
||||
}
|
||||
|
||||
// Initializer's prototype is the subtype object
|
||||
subtype.init.prototype = subtype;
|
||||
|
||||
// Reference supertype
|
||||
subtype.$super = this;
|
||||
|
||||
return subtype;
|
||||
},
|
||||
|
||||
/**
|
||||
* Extends this object and runs the init method.
|
||||
* Arguments to create() will be passed to init().
|
||||
*
|
||||
* @return {Object} The new object.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var instance = MyType.create();
|
||||
*/
|
||||
create: function () {
|
||||
var instance = this.extend();
|
||||
instance.init.apply(instance, arguments);
|
||||
|
||||
return instance;
|
||||
},
|
||||
|
||||
/**
|
||||
* Initializes a newly created object.
|
||||
* Override this method to add some logic when your objects are created.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var MyType = CryptoJS.lib.Base.extend({
|
||||
* init: function () {
|
||||
* // ...
|
||||
* }
|
||||
* });
|
||||
*/
|
||||
init: function () {
|
||||
},
|
||||
|
||||
/**
|
||||
* Copies properties into this object.
|
||||
*
|
||||
* @param {Object} properties The properties to mix in.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* MyType.mixIn({
|
||||
* field: 'value'
|
||||
* });
|
||||
*/
|
||||
mixIn: function (properties) {
|
||||
for (var propertyName in properties) {
|
||||
if (properties.hasOwnProperty(propertyName)) {
|
||||
this[propertyName] = properties[propertyName];
|
||||
}
|
||||
}
|
||||
|
||||
// IE won't copy toString using the loop above
|
||||
if (properties.hasOwnProperty('toString')) {
|
||||
this.toString = properties.toString;
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates a copy of this object.
|
||||
*
|
||||
* @return {Object} The clone.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var clone = instance.clone();
|
||||
*/
|
||||
clone: function () {
|
||||
return this.init.prototype.extend(this);
|
||||
}
|
||||
};
|
||||
}());
|
||||
|
||||
/**
|
||||
* An array of 32-bit words.
|
||||
*
|
||||
* @property {Array} words The array of 32-bit words.
|
||||
* @property {number} sigBytes The number of significant bytes in this word array.
|
||||
*/
|
||||
var WordArray = C_lib.WordArray = Base.extend({
|
||||
/**
|
||||
* Initializes a newly created word array.
|
||||
*
|
||||
* @param {Array} words (Optional) An array of 32-bit words.
|
||||
* @param {number} sigBytes (Optional) The number of significant bytes in the words.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.lib.WordArray.create();
|
||||
* var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607]);
|
||||
* var wordArray = CryptoJS.lib.WordArray.create([0x00010203, 0x04050607], 6);
|
||||
*/
|
||||
init: function (words, sigBytes) {
|
||||
words = this.words = words || [];
|
||||
|
||||
if (sigBytes != undefined) {
|
||||
this.sigBytes = sigBytes;
|
||||
} else {
|
||||
this.sigBytes = words.length * 4;
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts this word array to a string.
|
||||
*
|
||||
* @param {Encoder} encoder (Optional) The encoding strategy to use. Default: CryptoJS.enc.Hex
|
||||
*
|
||||
* @return {string} The stringified word array.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var string = wordArray + '';
|
||||
* var string = wordArray.toString();
|
||||
* var string = wordArray.toString(CryptoJS.enc.Utf8);
|
||||
*/
|
||||
toString: function (encoder) {
|
||||
return (encoder || Hex).stringify(this);
|
||||
},
|
||||
|
||||
/**
|
||||
* Concatenates a word array to this word array.
|
||||
*
|
||||
* @param {WordArray} wordArray The word array to append.
|
||||
*
|
||||
* @return {WordArray} This word array.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* wordArray1.concat(wordArray2);
|
||||
*/
|
||||
concat: function (wordArray) {
|
||||
// Shortcuts
|
||||
var thisWords = this.words;
|
||||
var thatWords = wordArray.words;
|
||||
var thisSigBytes = this.sigBytes;
|
||||
var thatSigBytes = wordArray.sigBytes;
|
||||
|
||||
// Clamp excess bits
|
||||
this.clamp();
|
||||
|
||||
// Concat
|
||||
if (thisSigBytes % 4) {
|
||||
// Copy one byte at a time
|
||||
for (var i = 0; i < thatSigBytes; i++) {
|
||||
var thatByte = (thatWords[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;
|
||||
thisWords[(thisSigBytes + i) >>> 2] |= thatByte << (24 - ((thisSigBytes + i) % 4) * 8);
|
||||
}
|
||||
} else {
|
||||
// Copy one word at a time
|
||||
for (var i = 0; i < thatSigBytes; i += 4) {
|
||||
thisWords[(thisSigBytes + i) >>> 2] = thatWords[i >>> 2];
|
||||
}
|
||||
}
|
||||
this.sigBytes += thatSigBytes;
|
||||
|
||||
// Chainable
|
||||
return this;
|
||||
},
|
||||
|
||||
/**
|
||||
* Removes insignificant bits.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* wordArray.clamp();
|
||||
*/
|
||||
clamp: function () {
|
||||
// Shortcuts
|
||||
var words = this.words;
|
||||
var sigBytes = this.sigBytes;
|
||||
|
||||
// Clamp
|
||||
words[sigBytes >>> 2] &= 0xffffffff << (32 - (sigBytes % 4) * 8);
|
||||
words.length = Math.ceil(sigBytes / 4);
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates a copy of this word array.
|
||||
*
|
||||
* @return {WordArray} The clone.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var clone = wordArray.clone();
|
||||
*/
|
||||
clone: function () {
|
||||
var clone = Base.clone.call(this);
|
||||
clone.words = this.words.slice(0);
|
||||
|
||||
return clone;
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates a word array filled with random bytes.
|
||||
*
|
||||
* @param {number} nBytes The number of random bytes to generate.
|
||||
*
|
||||
* @return {WordArray} The random word array.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.lib.WordArray.random(16);
|
||||
*/
|
||||
random: function (nBytes) {
|
||||
var words = [];
|
||||
|
||||
for (var i = 0; i < nBytes; i += 4) {
|
||||
words.push(cryptoSecureRandomInt());
|
||||
}
|
||||
|
||||
return new WordArray.init(words, nBytes);
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Encoder namespace.
|
||||
*/
|
||||
var C_enc = C.enc = {};
|
||||
|
||||
/**
|
||||
* Hex encoding strategy.
|
||||
*/
|
||||
var Hex = C_enc.Hex = {
|
||||
/**
|
||||
* Converts a word array to a hex string.
|
||||
*
|
||||
* @param {WordArray} wordArray The word array.
|
||||
*
|
||||
* @return {string} The hex string.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hexString = CryptoJS.enc.Hex.stringify(wordArray);
|
||||
*/
|
||||
stringify: function (wordArray) {
|
||||
// Shortcuts
|
||||
var words = wordArray.words;
|
||||
var sigBytes = wordArray.sigBytes;
|
||||
|
||||
// Convert
|
||||
var hexChars = [];
|
||||
for (var i = 0; i < sigBytes; i++) {
|
||||
var bite = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;
|
||||
hexChars.push((bite >>> 4).toString(16));
|
||||
hexChars.push((bite & 0x0f).toString(16));
|
||||
}
|
||||
|
||||
return hexChars.join('');
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts a hex string to a word array.
|
||||
*
|
||||
* @param {string} hexStr The hex string.
|
||||
*
|
||||
* @return {WordArray} The word array.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.enc.Hex.parse(hexString);
|
||||
*/
|
||||
parse: function (hexStr) {
|
||||
// Shortcut
|
||||
var hexStrLength = hexStr.length;
|
||||
|
||||
// Convert
|
||||
var words = [];
|
||||
for (var i = 0; i < hexStrLength; i += 2) {
|
||||
words[i >>> 3] |= parseInt(hexStr.substr(i, 2), 16) << (24 - (i % 8) * 4);
|
||||
}
|
||||
|
||||
return new WordArray.init(words, hexStrLength / 2);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Latin1 encoding strategy.
|
||||
*/
|
||||
var Latin1 = C_enc.Latin1 = {
|
||||
/**
|
||||
* Converts a word array to a Latin1 string.
|
||||
*
|
||||
* @param {WordArray} wordArray The word array.
|
||||
*
|
||||
* @return {string} The Latin1 string.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var latin1String = CryptoJS.enc.Latin1.stringify(wordArray);
|
||||
*/
|
||||
stringify: function (wordArray) {
|
||||
// Shortcuts
|
||||
var words = wordArray.words;
|
||||
var sigBytes = wordArray.sigBytes;
|
||||
|
||||
// Convert
|
||||
var latin1Chars = [];
|
||||
for (var i = 0; i < sigBytes; i++) {
|
||||
var bite = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;
|
||||
latin1Chars.push(String.fromCharCode(bite));
|
||||
}
|
||||
|
||||
return latin1Chars.join('');
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts a Latin1 string to a word array.
|
||||
*
|
||||
* @param {string} latin1Str The Latin1 string.
|
||||
*
|
||||
* @return {WordArray} The word array.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.enc.Latin1.parse(latin1String);
|
||||
*/
|
||||
parse: function (latin1Str) {
|
||||
// Shortcut
|
||||
var latin1StrLength = latin1Str.length;
|
||||
|
||||
// Convert
|
||||
var words = [];
|
||||
for (var i = 0; i < latin1StrLength; i++) {
|
||||
words[i >>> 2] |= (latin1Str.charCodeAt(i) & 0xff) << (24 - (i % 4) * 8);
|
||||
}
|
||||
|
||||
return new WordArray.init(words, latin1StrLength);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* UTF-8 encoding strategy.
|
||||
*/
|
||||
var Utf8 = C_enc.Utf8 = {
|
||||
/**
|
||||
* Converts a word array to a UTF-8 string.
|
||||
*
|
||||
* @param {WordArray} wordArray The word array.
|
||||
*
|
||||
* @return {string} The UTF-8 string.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var utf8String = CryptoJS.enc.Utf8.stringify(wordArray);
|
||||
*/
|
||||
stringify: function (wordArray) {
|
||||
try {
|
||||
return decodeURIComponent(escape(Latin1.stringify(wordArray)));
|
||||
} catch (e) {
|
||||
throw new Error('Malformed UTF-8 data');
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts a UTF-8 string to a word array.
|
||||
*
|
||||
* @param {string} utf8Str The UTF-8 string.
|
||||
*
|
||||
* @return {WordArray} The word array.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.enc.Utf8.parse(utf8String);
|
||||
*/
|
||||
parse: function (utf8Str) {
|
||||
return Latin1.parse(unescape(encodeURIComponent(utf8Str)));
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Abstract buffered block algorithm template.
|
||||
*
|
||||
* The property blockSize must be implemented in a concrete subtype.
|
||||
*
|
||||
* @property {number} _minBufferSize The number of blocks that should be kept unprocessed in the buffer. Default: 0
|
||||
*/
|
||||
var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm = Base.extend({
|
||||
/**
|
||||
* Resets this block algorithm's data buffer to its initial state.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* bufferedBlockAlgorithm.reset();
|
||||
*/
|
||||
reset: function () {
|
||||
// Initial values
|
||||
this._data = new WordArray.init();
|
||||
this._nDataBytes = 0;
|
||||
},
|
||||
|
||||
/**
|
||||
* Adds new data to this block algorithm's buffer.
|
||||
*
|
||||
* @param {WordArray|string} data The data to append. Strings are converted to a WordArray using UTF-8.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* bufferedBlockAlgorithm._append('data');
|
||||
* bufferedBlockAlgorithm._append(wordArray);
|
||||
*/
|
||||
_append: function (data) {
|
||||
// Convert string to WordArray, else assume WordArray already
|
||||
if (typeof data == 'string') {
|
||||
data = Utf8.parse(data);
|
||||
}
|
||||
|
||||
// Append
|
||||
this._data.concat(data);
|
||||
this._nDataBytes += data.sigBytes;
|
||||
},
|
||||
|
||||
/**
|
||||
* Processes available data blocks.
|
||||
*
|
||||
* This method invokes _doProcessBlock(offset), which must be implemented by a concrete subtype.
|
||||
*
|
||||
* @param {boolean} doFlush Whether all blocks and partial blocks should be processed.
|
||||
*
|
||||
* @return {WordArray} The processed data.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var processedData = bufferedBlockAlgorithm._process();
|
||||
* var processedData = bufferedBlockAlgorithm._process(!!'flush');
|
||||
*/
|
||||
_process: function (doFlush) {
|
||||
var processedWords;
|
||||
|
||||
// Shortcuts
|
||||
var data = this._data;
|
||||
var dataWords = data.words;
|
||||
var dataSigBytes = data.sigBytes;
|
||||
var blockSize = this.blockSize;
|
||||
var blockSizeBytes = blockSize * 4;
|
||||
|
||||
// Count blocks ready
|
||||
var nBlocksReady = dataSigBytes / blockSizeBytes;
|
||||
if (doFlush) {
|
||||
// Round up to include partial blocks
|
||||
nBlocksReady = Math.ceil(nBlocksReady);
|
||||
} else {
|
||||
// Round down to include only full blocks,
|
||||
// less the number of blocks that must remain in the buffer
|
||||
nBlocksReady = Math.max((nBlocksReady | 0) - this._minBufferSize, 0);
|
||||
}
|
||||
|
||||
// Count words ready
|
||||
var nWordsReady = nBlocksReady * blockSize;
|
||||
|
||||
// Count bytes ready
|
||||
var nBytesReady = Math.min(nWordsReady * 4, dataSigBytes);
|
||||
|
||||
// Process blocks
|
||||
if (nWordsReady) {
|
||||
for (var offset = 0; offset < nWordsReady; offset += blockSize) {
|
||||
// Perform concrete-algorithm logic
|
||||
this._doProcessBlock(dataWords, offset);
|
||||
}
|
||||
|
||||
// Remove processed words
|
||||
processedWords = dataWords.splice(0, nWordsReady);
|
||||
data.sigBytes -= nBytesReady;
|
||||
}
|
||||
|
||||
// Return processed words
|
||||
return new WordArray.init(processedWords, nBytesReady);
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates a copy of this object.
|
||||
*
|
||||
* @return {Object} The clone.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var clone = bufferedBlockAlgorithm.clone();
|
||||
*/
|
||||
clone: function () {
|
||||
var clone = Base.clone.call(this);
|
||||
clone._data = this._data.clone();
|
||||
|
||||
return clone;
|
||||
},
|
||||
|
||||
_minBufferSize: 0
|
||||
});
|
||||
|
||||
/**
|
||||
* Abstract hasher template.
|
||||
*
|
||||
* @property {number} blockSize The number of 32-bit words this hasher operates on. Default: 16 (512 bits)
|
||||
*/
|
||||
var Hasher = C_lib.Hasher = BufferedBlockAlgorithm.extend({
|
||||
/**
|
||||
* Configuration options.
|
||||
*/
|
||||
cfg: Base.extend(),
|
||||
|
||||
/**
|
||||
* Initializes a newly created hasher.
|
||||
*
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this hash computation.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hasher = CryptoJS.algo.SHA256.create();
|
||||
*/
|
||||
init: function (cfg) {
|
||||
// Apply config defaults
|
||||
this.cfg = this.cfg.extend(cfg);
|
||||
|
||||
// Set initial values
|
||||
this.reset();
|
||||
},
|
||||
|
||||
/**
|
||||
* Resets this hasher to its initial state.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* hasher.reset();
|
||||
*/
|
||||
reset: function () {
|
||||
// Reset data buffer
|
||||
BufferedBlockAlgorithm.reset.call(this);
|
||||
|
||||
// Perform concrete-hasher logic
|
||||
this._doReset();
|
||||
},
|
||||
|
||||
/**
|
||||
* Updates this hasher with a message.
|
||||
*
|
||||
* @param {WordArray|string} messageUpdate The message to append.
|
||||
*
|
||||
* @return {Hasher} This hasher.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* hasher.update('message');
|
||||
* hasher.update(wordArray);
|
||||
*/
|
||||
update: function (messageUpdate) {
|
||||
// Append
|
||||
this._append(messageUpdate);
|
||||
|
||||
// Update the hash
|
||||
this._process();
|
||||
|
||||
// Chainable
|
||||
return this;
|
||||
},
|
||||
|
||||
/**
|
||||
* Finalizes the hash computation.
|
||||
* Note that the finalize operation is effectively a destructive, read-once operation.
|
||||
*
|
||||
* @param {WordArray|string} messageUpdate (Optional) A final message update.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = hasher.finalize();
|
||||
* var hash = hasher.finalize('message');
|
||||
* var hash = hasher.finalize(wordArray);
|
||||
*/
|
||||
finalize: function (messageUpdate) {
|
||||
// Final message update
|
||||
if (messageUpdate) {
|
||||
this._append(messageUpdate);
|
||||
}
|
||||
|
||||
// Perform concrete-hasher logic
|
||||
var hash = this._doFinalize();
|
||||
|
||||
return hash;
|
||||
},
|
||||
|
||||
blockSize: 512/32,
|
||||
|
||||
/**
|
||||
* Creates a shortcut function to a hasher's object interface.
|
||||
*
|
||||
* @param {Hasher} hasher The hasher to create a helper for.
|
||||
*
|
||||
* @return {Function} The shortcut function.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var SHA256 = CryptoJS.lib.Hasher._createHelper(CryptoJS.algo.SHA256);
|
||||
*/
|
||||
_createHelper: function (hasher) {
|
||||
return function (message, cfg) {
|
||||
return new hasher.init(cfg).finalize(message);
|
||||
};
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates a shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {Hasher} hasher The hasher to use in this HMAC helper.
|
||||
*
|
||||
* @return {Function} The shortcut function.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var HmacSHA256 = CryptoJS.lib.Hasher._createHmacHelper(CryptoJS.algo.SHA256);
|
||||
*/
|
||||
_createHmacHelper: function (hasher) {
|
||||
return function (message, key) {
|
||||
return new C_algo.HMAC.init(hasher, key).finalize(message);
|
||||
};
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Algorithm namespace.
|
||||
*/
|
||||
var C_algo = C.algo = {};
|
||||
|
||||
return C;
|
||||
}(Math));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function (undefined) {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var Base = C_lib.Base;
|
||||
var X32WordArray = C_lib.WordArray;
|
||||
|
||||
/**
|
||||
* x64 namespace.
|
||||
*/
|
||||
var C_x64 = C.x64 = {};
|
||||
|
||||
/**
|
||||
* A 64-bit word.
|
||||
*/
|
||||
var X64Word = C_x64.Word = Base.extend({
|
||||
/**
|
||||
* Initializes a newly created 64-bit word.
|
||||
*
|
||||
* @param {number} high The high 32 bits.
|
||||
* @param {number} low The low 32 bits.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var x64Word = CryptoJS.x64.Word.create(0x00010203, 0x04050607);
|
||||
*/
|
||||
init: function (high, low) {
|
||||
this.high = high;
|
||||
this.low = low;
|
||||
}
|
||||
|
||||
/**
|
||||
* Bitwise NOTs this word.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after negating.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var negated = x64Word.not();
|
||||
*/
|
||||
// not: function () {
|
||||
// var high = ~this.high;
|
||||
// var low = ~this.low;
|
||||
|
||||
// return X64Word.create(high, low);
|
||||
// },
|
||||
|
||||
/**
|
||||
* Bitwise ANDs this word with the passed word.
|
||||
*
|
||||
* @param {X64Word} word The x64-Word to AND with this word.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after ANDing.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var anded = x64Word.and(anotherX64Word);
|
||||
*/
|
||||
// and: function (word) {
|
||||
// var high = this.high & word.high;
|
||||
// var low = this.low & word.low;
|
||||
|
||||
// return X64Word.create(high, low);
|
||||
// },
|
||||
|
||||
/**
|
||||
* Bitwise ORs this word with the passed word.
|
||||
*
|
||||
* @param {X64Word} word The x64-Word to OR with this word.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after ORing.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ored = x64Word.or(anotherX64Word);
|
||||
*/
|
||||
// or: function (word) {
|
||||
// var high = this.high | word.high;
|
||||
// var low = this.low | word.low;
|
||||
|
||||
// return X64Word.create(high, low);
|
||||
// },
|
||||
|
||||
/**
|
||||
* Bitwise XORs this word with the passed word.
|
||||
*
|
||||
* @param {X64Word} word The x64-Word to XOR with this word.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after XORing.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var xored = x64Word.xor(anotherX64Word);
|
||||
*/
|
||||
// xor: function (word) {
|
||||
// var high = this.high ^ word.high;
|
||||
// var low = this.low ^ word.low;
|
||||
|
||||
// return X64Word.create(high, low);
|
||||
// },
|
||||
|
||||
/**
|
||||
* Shifts this word n bits to the left.
|
||||
*
|
||||
* @param {number} n The number of bits to shift.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after shifting.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var shifted = x64Word.shiftL(25);
|
||||
*/
|
||||
// shiftL: function (n) {
|
||||
// if (n < 32) {
|
||||
// var high = (this.high << n) | (this.low >>> (32 - n));
|
||||
// var low = this.low << n;
|
||||
// } else {
|
||||
// var high = this.low << (n - 32);
|
||||
// var low = 0;
|
||||
// }
|
||||
|
||||
// return X64Word.create(high, low);
|
||||
// },
|
||||
|
||||
/**
|
||||
* Shifts this word n bits to the right.
|
||||
*
|
||||
* @param {number} n The number of bits to shift.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after shifting.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var shifted = x64Word.shiftR(7);
|
||||
*/
|
||||
// shiftR: function (n) {
|
||||
// if (n < 32) {
|
||||
// var low = (this.low >>> n) | (this.high << (32 - n));
|
||||
// var high = this.high >>> n;
|
||||
// } else {
|
||||
// var low = this.high >>> (n - 32);
|
||||
// var high = 0;
|
||||
// }
|
||||
|
||||
// return X64Word.create(high, low);
|
||||
// },
|
||||
|
||||
/**
|
||||
* Rotates this word n bits to the left.
|
||||
*
|
||||
* @param {number} n The number of bits to rotate.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after rotating.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var rotated = x64Word.rotL(25);
|
||||
*/
|
||||
// rotL: function (n) {
|
||||
// return this.shiftL(n).or(this.shiftR(64 - n));
|
||||
// },
|
||||
|
||||
/**
|
||||
* Rotates this word n bits to the right.
|
||||
*
|
||||
* @param {number} n The number of bits to rotate.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after rotating.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var rotated = x64Word.rotR(7);
|
||||
*/
|
||||
// rotR: function (n) {
|
||||
// return this.shiftR(n).or(this.shiftL(64 - n));
|
||||
// },
|
||||
|
||||
/**
|
||||
* Adds this word with the passed word.
|
||||
*
|
||||
* @param {X64Word} word The x64-Word to add with this word.
|
||||
*
|
||||
* @return {X64Word} A new x64-Word object after adding.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var added = x64Word.add(anotherX64Word);
|
||||
*/
|
||||
// add: function (word) {
|
||||
// var low = (this.low + word.low) | 0;
|
||||
// var carry = (low >>> 0) < (this.low >>> 0) ? 1 : 0;
|
||||
// var high = (this.high + word.high + carry) | 0;
|
||||
|
||||
// return X64Word.create(high, low);
|
||||
// }
|
||||
});
|
||||
|
||||
/**
|
||||
* An array of 64-bit words.
|
||||
*
|
||||
* @property {Array} words The array of CryptoJS.x64.Word objects.
|
||||
* @property {number} sigBytes The number of significant bytes in this word array.
|
||||
*/
|
||||
var X64WordArray = C_x64.WordArray = Base.extend({
|
||||
/**
|
||||
* Initializes a newly created word array.
|
||||
*
|
||||
* @param {Array} words (Optional) An array of CryptoJS.x64.Word objects.
|
||||
* @param {number} sigBytes (Optional) The number of significant bytes in the words.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.x64.WordArray.create();
|
||||
*
|
||||
* var wordArray = CryptoJS.x64.WordArray.create([
|
||||
* CryptoJS.x64.Word.create(0x00010203, 0x04050607),
|
||||
* CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f)
|
||||
* ]);
|
||||
*
|
||||
* var wordArray = CryptoJS.x64.WordArray.create([
|
||||
* CryptoJS.x64.Word.create(0x00010203, 0x04050607),
|
||||
* CryptoJS.x64.Word.create(0x18191a1b, 0x1c1d1e1f)
|
||||
* ], 10);
|
||||
*/
|
||||
init: function (words, sigBytes) {
|
||||
words = this.words = words || [];
|
||||
|
||||
if (sigBytes != undefined) {
|
||||
this.sigBytes = sigBytes;
|
||||
} else {
|
||||
this.sigBytes = words.length * 8;
|
||||
}
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts this 64-bit word array to a 32-bit word array.
|
||||
*
|
||||
* @return {CryptoJS.lib.WordArray} This word array's data as a 32-bit word array.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var x32WordArray = x64WordArray.toX32();
|
||||
*/
|
||||
toX32: function () {
|
||||
// Shortcuts
|
||||
var x64Words = this.words;
|
||||
var x64WordsLength = x64Words.length;
|
||||
|
||||
// Convert
|
||||
var x32Words = [];
|
||||
for (var i = 0; i < x64WordsLength; i++) {
|
||||
var x64Word = x64Words[i];
|
||||
x32Words.push(x64Word.high);
|
||||
x32Words.push(x64Word.low);
|
||||
}
|
||||
|
||||
return X32WordArray.create(x32Words, this.sigBytes);
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates a copy of this word array.
|
||||
*
|
||||
* @return {X64WordArray} The clone.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var clone = x64WordArray.clone();
|
||||
*/
|
||||
clone: function () {
|
||||
var clone = Base.clone.call(this);
|
||||
|
||||
// Clone "words" array
|
||||
var words = clone.words = this.words.slice(0);
|
||||
|
||||
// Clone each X64Word object
|
||||
var wordsLength = words.length;
|
||||
for (var i = 0; i < wordsLength; i++) {
|
||||
words[i] = words[i].clone();
|
||||
}
|
||||
|
||||
return clone;
|
||||
}
|
||||
});
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Check if typed arrays are supported
|
||||
if (typeof ArrayBuffer != 'function') {
|
||||
return;
|
||||
}
|
||||
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
|
||||
// Reference original init
|
||||
var superInit = WordArray.init;
|
||||
|
||||
// Augment WordArray.init to handle typed arrays
|
||||
var subInit = WordArray.init = function (typedArray) {
|
||||
// Convert buffers to uint8
|
||||
if (typedArray instanceof ArrayBuffer) {
|
||||
typedArray = new Uint8Array(typedArray);
|
||||
}
|
||||
|
||||
// Convert other array views to uint8
|
||||
if (
|
||||
typedArray instanceof Int8Array ||
|
||||
(typeof Uint8ClampedArray !== "undefined" && typedArray instanceof Uint8ClampedArray) ||
|
||||
typedArray instanceof Int16Array ||
|
||||
typedArray instanceof Uint16Array ||
|
||||
typedArray instanceof Int32Array ||
|
||||
typedArray instanceof Uint32Array ||
|
||||
typedArray instanceof Float32Array ||
|
||||
typedArray instanceof Float64Array
|
||||
) {
|
||||
typedArray = new Uint8Array(typedArray.buffer, typedArray.byteOffset, typedArray.byteLength);
|
||||
}
|
||||
|
||||
// Handle Uint8Array
|
||||
if (typedArray instanceof Uint8Array) {
|
||||
// Shortcut
|
||||
var typedArrayByteLength = typedArray.byteLength;
|
||||
|
||||
// Extract bytes
|
||||
var words = [];
|
||||
for (var i = 0; i < typedArrayByteLength; i++) {
|
||||
words[i >>> 2] |= typedArray[i] << (24 - (i % 4) * 8);
|
||||
}
|
||||
|
||||
// Initialize this word array
|
||||
superInit.call(this, words, typedArrayByteLength);
|
||||
} else {
|
||||
// Else call normal init
|
||||
superInit.apply(this, arguments);
|
||||
}
|
||||
};
|
||||
|
||||
subInit.prototype = WordArray;
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var C_enc = C.enc;
|
||||
|
||||
/**
|
||||
* UTF-16 BE encoding strategy.
|
||||
*/
|
||||
var Utf16BE = C_enc.Utf16 = C_enc.Utf16BE = {
|
||||
/**
|
||||
* Converts a word array to a UTF-16 BE string.
|
||||
*
|
||||
* @param {WordArray} wordArray The word array.
|
||||
*
|
||||
* @return {string} The UTF-16 BE string.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var utf16String = CryptoJS.enc.Utf16.stringify(wordArray);
|
||||
*/
|
||||
stringify: function (wordArray) {
|
||||
// Shortcuts
|
||||
var words = wordArray.words;
|
||||
var sigBytes = wordArray.sigBytes;
|
||||
|
||||
// Convert
|
||||
var utf16Chars = [];
|
||||
for (var i = 0; i < sigBytes; i += 2) {
|
||||
var codePoint = (words[i >>> 2] >>> (16 - (i % 4) * 8)) & 0xffff;
|
||||
utf16Chars.push(String.fromCharCode(codePoint));
|
||||
}
|
||||
|
||||
return utf16Chars.join('');
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts a UTF-16 BE string to a word array.
|
||||
*
|
||||
* @param {string} utf16Str The UTF-16 BE string.
|
||||
*
|
||||
* @return {WordArray} The word array.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.enc.Utf16.parse(utf16String);
|
||||
*/
|
||||
parse: function (utf16Str) {
|
||||
// Shortcut
|
||||
var utf16StrLength = utf16Str.length;
|
||||
|
||||
// Convert
|
||||
var words = [];
|
||||
for (var i = 0; i < utf16StrLength; i++) {
|
||||
words[i >>> 1] |= utf16Str.charCodeAt(i) << (16 - (i % 2) * 16);
|
||||
}
|
||||
|
||||
return WordArray.create(words, utf16StrLength * 2);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* UTF-16 LE encoding strategy.
|
||||
*/
|
||||
C_enc.Utf16LE = {
|
||||
/**
|
||||
* Converts a word array to a UTF-16 LE string.
|
||||
*
|
||||
* @param {WordArray} wordArray The word array.
|
||||
*
|
||||
* @return {string} The UTF-16 LE string.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var utf16Str = CryptoJS.enc.Utf16LE.stringify(wordArray);
|
||||
*/
|
||||
stringify: function (wordArray) {
|
||||
// Shortcuts
|
||||
var words = wordArray.words;
|
||||
var sigBytes = wordArray.sigBytes;
|
||||
|
||||
// Convert
|
||||
var utf16Chars = [];
|
||||
for (var i = 0; i < sigBytes; i += 2) {
|
||||
var codePoint = swapEndian((words[i >>> 2] >>> (16 - (i % 4) * 8)) & 0xffff);
|
||||
utf16Chars.push(String.fromCharCode(codePoint));
|
||||
}
|
||||
|
||||
return utf16Chars.join('');
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts a UTF-16 LE string to a word array.
|
||||
*
|
||||
* @param {string} utf16Str The UTF-16 LE string.
|
||||
*
|
||||
* @return {WordArray} The word array.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.enc.Utf16LE.parse(utf16Str);
|
||||
*/
|
||||
parse: function (utf16Str) {
|
||||
// Shortcut
|
||||
var utf16StrLength = utf16Str.length;
|
||||
|
||||
// Convert
|
||||
var words = [];
|
||||
for (var i = 0; i < utf16StrLength; i++) {
|
||||
words[i >>> 1] |= swapEndian(utf16Str.charCodeAt(i) << (16 - (i % 2) * 16));
|
||||
}
|
||||
|
||||
return WordArray.create(words, utf16StrLength * 2);
|
||||
}
|
||||
};
|
||||
|
||||
function swapEndian(word) {
|
||||
return ((word << 8) & 0xff00ff00) | ((word >>> 8) & 0x00ff00ff);
|
||||
}
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var C_enc = C.enc;
|
||||
|
||||
/**
|
||||
* Base64 encoding strategy.
|
||||
*/
|
||||
var Base64 = C_enc.Base64 = {
|
||||
/**
|
||||
* Converts a word array to a Base64 string.
|
||||
*
|
||||
* @param {WordArray} wordArray The word array.
|
||||
*
|
||||
* @return {string} The Base64 string.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var base64String = CryptoJS.enc.Base64.stringify(wordArray);
|
||||
*/
|
||||
stringify: function (wordArray) {
|
||||
// Shortcuts
|
||||
var words = wordArray.words;
|
||||
var sigBytes = wordArray.sigBytes;
|
||||
var map = this._map;
|
||||
|
||||
// Clamp excess bits
|
||||
wordArray.clamp();
|
||||
|
||||
// Convert
|
||||
var base64Chars = [];
|
||||
for (var i = 0; i < sigBytes; i += 3) {
|
||||
var byte1 = (words[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff;
|
||||
var byte2 = (words[(i + 1) >>> 2] >>> (24 - ((i + 1) % 4) * 8)) & 0xff;
|
||||
var byte3 = (words[(i + 2) >>> 2] >>> (24 - ((i + 2) % 4) * 8)) & 0xff;
|
||||
|
||||
var triplet = (byte1 << 16) | (byte2 << 8) | byte3;
|
||||
|
||||
for (var j = 0; (j < 4) && (i + j * 0.75 < sigBytes); j++) {
|
||||
base64Chars.push(map.charAt((triplet >>> (6 * (3 - j))) & 0x3f));
|
||||
}
|
||||
}
|
||||
|
||||
// Add padding
|
||||
var paddingChar = map.charAt(64);
|
||||
if (paddingChar) {
|
||||
while (base64Chars.length % 4) {
|
||||
base64Chars.push(paddingChar);
|
||||
}
|
||||
}
|
||||
|
||||
return base64Chars.join('');
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts a Base64 string to a word array.
|
||||
*
|
||||
* @param {string} base64Str The Base64 string.
|
||||
*
|
||||
* @return {WordArray} The word array.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var wordArray = CryptoJS.enc.Base64.parse(base64String);
|
||||
*/
|
||||
parse: function (base64Str) {
|
||||
// Shortcuts
|
||||
var base64StrLength = base64Str.length;
|
||||
var map = this._map;
|
||||
var reverseMap = this._reverseMap;
|
||||
|
||||
if (!reverseMap) {
|
||||
reverseMap = this._reverseMap = [];
|
||||
for (var j = 0; j < map.length; j++) {
|
||||
reverseMap[map.charCodeAt(j)] = j;
|
||||
}
|
||||
}
|
||||
|
||||
// Ignore padding
|
||||
var paddingChar = map.charAt(64);
|
||||
if (paddingChar) {
|
||||
var paddingIndex = base64Str.indexOf(paddingChar);
|
||||
if (paddingIndex !== -1) {
|
||||
base64StrLength = paddingIndex;
|
||||
}
|
||||
}
|
||||
|
||||
// Convert
|
||||
return parseLoop(base64Str, base64StrLength, reverseMap);
|
||||
|
||||
},
|
||||
|
||||
_map: 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/='
|
||||
};
|
||||
|
||||
function parseLoop(base64Str, base64StrLength, reverseMap) {
|
||||
var words = [];
|
||||
var nBytes = 0;
|
||||
for (var i = 0; i < base64StrLength; i++) {
|
||||
if (i % 4) {
|
||||
var bits1 = reverseMap[base64Str.charCodeAt(i - 1)] << ((i % 4) * 2);
|
||||
var bits2 = reverseMap[base64Str.charCodeAt(i)] >>> (6 - (i % 4) * 2);
|
||||
var bitsCombined = bits1 | bits2;
|
||||
words[nBytes >>> 2] |= bitsCombined << (24 - (nBytes % 4) * 8);
|
||||
nBytes++;
|
||||
}
|
||||
}
|
||||
return WordArray.create(words, nBytes);
|
||||
}
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function (Math) {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var Hasher = C_lib.Hasher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Constants table
|
||||
var T = [];
|
||||
|
||||
// Compute constants
|
||||
(function () {
|
||||
for (var i = 0; i < 64; i++) {
|
||||
T[i] = (Math.abs(Math.sin(i + 1)) * 0x100000000) | 0;
|
||||
}
|
||||
}());
|
||||
|
||||
/**
|
||||
* MD5 hash algorithm.
|
||||
*/
|
||||
var MD5 = C_algo.MD5 = Hasher.extend({
|
||||
_doReset: function () {
|
||||
this._hash = new WordArray.init([
|
||||
0x67452301, 0xefcdab89,
|
||||
0x98badcfe, 0x10325476
|
||||
]);
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
// Swap endian
|
||||
for (var i = 0; i < 16; i++) {
|
||||
// Shortcuts
|
||||
var offset_i = offset + i;
|
||||
var M_offset_i = M[offset_i];
|
||||
|
||||
M[offset_i] = (
|
||||
(((M_offset_i << 8) | (M_offset_i >>> 24)) & 0x00ff00ff) |
|
||||
(((M_offset_i << 24) | (M_offset_i >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
}
|
||||
|
||||
// Shortcuts
|
||||
var H = this._hash.words;
|
||||
|
||||
var M_offset_0 = M[offset + 0];
|
||||
var M_offset_1 = M[offset + 1];
|
||||
var M_offset_2 = M[offset + 2];
|
||||
var M_offset_3 = M[offset + 3];
|
||||
var M_offset_4 = M[offset + 4];
|
||||
var M_offset_5 = M[offset + 5];
|
||||
var M_offset_6 = M[offset + 6];
|
||||
var M_offset_7 = M[offset + 7];
|
||||
var M_offset_8 = M[offset + 8];
|
||||
var M_offset_9 = M[offset + 9];
|
||||
var M_offset_10 = M[offset + 10];
|
||||
var M_offset_11 = M[offset + 11];
|
||||
var M_offset_12 = M[offset + 12];
|
||||
var M_offset_13 = M[offset + 13];
|
||||
var M_offset_14 = M[offset + 14];
|
||||
var M_offset_15 = M[offset + 15];
|
||||
|
||||
// Working varialbes
|
||||
var a = H[0];
|
||||
var b = H[1];
|
||||
var c = H[2];
|
||||
var d = H[3];
|
||||
|
||||
// Computation
|
||||
a = FF(a, b, c, d, M_offset_0, 7, T[0]);
|
||||
d = FF(d, a, b, c, M_offset_1, 12, T[1]);
|
||||
c = FF(c, d, a, b, M_offset_2, 17, T[2]);
|
||||
b = FF(b, c, d, a, M_offset_3, 22, T[3]);
|
||||
a = FF(a, b, c, d, M_offset_4, 7, T[4]);
|
||||
d = FF(d, a, b, c, M_offset_5, 12, T[5]);
|
||||
c = FF(c, d, a, b, M_offset_6, 17, T[6]);
|
||||
b = FF(b, c, d, a, M_offset_7, 22, T[7]);
|
||||
a = FF(a, b, c, d, M_offset_8, 7, T[8]);
|
||||
d = FF(d, a, b, c, M_offset_9, 12, T[9]);
|
||||
c = FF(c, d, a, b, M_offset_10, 17, T[10]);
|
||||
b = FF(b, c, d, a, M_offset_11, 22, T[11]);
|
||||
a = FF(a, b, c, d, M_offset_12, 7, T[12]);
|
||||
d = FF(d, a, b, c, M_offset_13, 12, T[13]);
|
||||
c = FF(c, d, a, b, M_offset_14, 17, T[14]);
|
||||
b = FF(b, c, d, a, M_offset_15, 22, T[15]);
|
||||
|
||||
a = GG(a, b, c, d, M_offset_1, 5, T[16]);
|
||||
d = GG(d, a, b, c, M_offset_6, 9, T[17]);
|
||||
c = GG(c, d, a, b, M_offset_11, 14, T[18]);
|
||||
b = GG(b, c, d, a, M_offset_0, 20, T[19]);
|
||||
a = GG(a, b, c, d, M_offset_5, 5, T[20]);
|
||||
d = GG(d, a, b, c, M_offset_10, 9, T[21]);
|
||||
c = GG(c, d, a, b, M_offset_15, 14, T[22]);
|
||||
b = GG(b, c, d, a, M_offset_4, 20, T[23]);
|
||||
a = GG(a, b, c, d, M_offset_9, 5, T[24]);
|
||||
d = GG(d, a, b, c, M_offset_14, 9, T[25]);
|
||||
c = GG(c, d, a, b, M_offset_3, 14, T[26]);
|
||||
b = GG(b, c, d, a, M_offset_8, 20, T[27]);
|
||||
a = GG(a, b, c, d, M_offset_13, 5, T[28]);
|
||||
d = GG(d, a, b, c, M_offset_2, 9, T[29]);
|
||||
c = GG(c, d, a, b, M_offset_7, 14, T[30]);
|
||||
b = GG(b, c, d, a, M_offset_12, 20, T[31]);
|
||||
|
||||
a = HH(a, b, c, d, M_offset_5, 4, T[32]);
|
||||
d = HH(d, a, b, c, M_offset_8, 11, T[33]);
|
||||
c = HH(c, d, a, b, M_offset_11, 16, T[34]);
|
||||
b = HH(b, c, d, a, M_offset_14, 23, T[35]);
|
||||
a = HH(a, b, c, d, M_offset_1, 4, T[36]);
|
||||
d = HH(d, a, b, c, M_offset_4, 11, T[37]);
|
||||
c = HH(c, d, a, b, M_offset_7, 16, T[38]);
|
||||
b = HH(b, c, d, a, M_offset_10, 23, T[39]);
|
||||
a = HH(a, b, c, d, M_offset_13, 4, T[40]);
|
||||
d = HH(d, a, b, c, M_offset_0, 11, T[41]);
|
||||
c = HH(c, d, a, b, M_offset_3, 16, T[42]);
|
||||
b = HH(b, c, d, a, M_offset_6, 23, T[43]);
|
||||
a = HH(a, b, c, d, M_offset_9, 4, T[44]);
|
||||
d = HH(d, a, b, c, M_offset_12, 11, T[45]);
|
||||
c = HH(c, d, a, b, M_offset_15, 16, T[46]);
|
||||
b = HH(b, c, d, a, M_offset_2, 23, T[47]);
|
||||
|
||||
a = II(a, b, c, d, M_offset_0, 6, T[48]);
|
||||
d = II(d, a, b, c, M_offset_7, 10, T[49]);
|
||||
c = II(c, d, a, b, M_offset_14, 15, T[50]);
|
||||
b = II(b, c, d, a, M_offset_5, 21, T[51]);
|
||||
a = II(a, b, c, d, M_offset_12, 6, T[52]);
|
||||
d = II(d, a, b, c, M_offset_3, 10, T[53]);
|
||||
c = II(c, d, a, b, M_offset_10, 15, T[54]);
|
||||
b = II(b, c, d, a, M_offset_1, 21, T[55]);
|
||||
a = II(a, b, c, d, M_offset_8, 6, T[56]);
|
||||
d = II(d, a, b, c, M_offset_15, 10, T[57]);
|
||||
c = II(c, d, a, b, M_offset_6, 15, T[58]);
|
||||
b = II(b, c, d, a, M_offset_13, 21, T[59]);
|
||||
a = II(a, b, c, d, M_offset_4, 6, T[60]);
|
||||
d = II(d, a, b, c, M_offset_11, 10, T[61]);
|
||||
c = II(c, d, a, b, M_offset_2, 15, T[62]);
|
||||
b = II(b, c, d, a, M_offset_9, 21, T[63]);
|
||||
|
||||
// Intermediate hash value
|
||||
H[0] = (H[0] + a) | 0;
|
||||
H[1] = (H[1] + b) | 0;
|
||||
H[2] = (H[2] + c) | 0;
|
||||
H[3] = (H[3] + d) | 0;
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
// Shortcuts
|
||||
var data = this._data;
|
||||
var dataWords = data.words;
|
||||
|
||||
var nBitsTotal = this._nDataBytes * 8;
|
||||
var nBitsLeft = data.sigBytes * 8;
|
||||
|
||||
// Add padding
|
||||
dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32);
|
||||
|
||||
var nBitsTotalH = Math.floor(nBitsTotal / 0x100000000);
|
||||
var nBitsTotalL = nBitsTotal;
|
||||
dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = (
|
||||
(((nBitsTotalH << 8) | (nBitsTotalH >>> 24)) & 0x00ff00ff) |
|
||||
(((nBitsTotalH << 24) | (nBitsTotalH >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = (
|
||||
(((nBitsTotalL << 8) | (nBitsTotalL >>> 24)) & 0x00ff00ff) |
|
||||
(((nBitsTotalL << 24) | (nBitsTotalL >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
|
||||
data.sigBytes = (dataWords.length + 1) * 4;
|
||||
|
||||
// Hash final blocks
|
||||
this._process();
|
||||
|
||||
// Shortcuts
|
||||
var hash = this._hash;
|
||||
var H = hash.words;
|
||||
|
||||
// Swap endian
|
||||
for (var i = 0; i < 4; i++) {
|
||||
// Shortcut
|
||||
var H_i = H[i];
|
||||
|
||||
H[i] = (((H_i << 8) | (H_i >>> 24)) & 0x00ff00ff) |
|
||||
(((H_i << 24) | (H_i >>> 8)) & 0xff00ff00);
|
||||
}
|
||||
|
||||
// Return final computed hash
|
||||
return hash;
|
||||
},
|
||||
|
||||
clone: function () {
|
||||
var clone = Hasher.clone.call(this);
|
||||
clone._hash = this._hash.clone();
|
||||
|
||||
return clone;
|
||||
}
|
||||
});
|
||||
|
||||
function FF(a, b, c, d, x, s, t) {
|
||||
var n = a + ((b & c) | (~b & d)) + x + t;
|
||||
return ((n << s) | (n >>> (32 - s))) + b;
|
||||
}
|
||||
|
||||
function GG(a, b, c, d, x, s, t) {
|
||||
var n = a + ((b & d) | (c & ~d)) + x + t;
|
||||
return ((n << s) | (n >>> (32 - s))) + b;
|
||||
}
|
||||
|
||||
function HH(a, b, c, d, x, s, t) {
|
||||
var n = a + (b ^ c ^ d) + x + t;
|
||||
return ((n << s) | (n >>> (32 - s))) + b;
|
||||
}
|
||||
|
||||
function II(a, b, c, d, x, s, t) {
|
||||
var n = a + (c ^ (b | ~d)) + x + t;
|
||||
return ((n << s) | (n >>> (32 - s))) + b;
|
||||
}
|
||||
|
||||
/**
|
||||
* Shortcut function to the hasher's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = CryptoJS.MD5('message');
|
||||
* var hash = CryptoJS.MD5(wordArray);
|
||||
*/
|
||||
C.MD5 = Hasher._createHelper(MD5);
|
||||
|
||||
/**
|
||||
* Shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = CryptoJS.HmacMD5(message, key);
|
||||
*/
|
||||
C.HmacMD5 = Hasher._createHmacHelper(MD5);
|
||||
}(Math));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var Hasher = C_lib.Hasher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Reusable object
|
||||
var W = [];
|
||||
|
||||
/**
|
||||
* SHA-1 hash algorithm.
|
||||
*/
|
||||
var SHA1 = C_algo.SHA1 = Hasher.extend({
|
||||
_doReset: function () {
|
||||
this._hash = new WordArray.init([
|
||||
0x67452301, 0xefcdab89,
|
||||
0x98badcfe, 0x10325476,
|
||||
0xc3d2e1f0
|
||||
]);
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
// Shortcut
|
||||
var H = this._hash.words;
|
||||
|
||||
// Working variables
|
||||
var a = H[0];
|
||||
var b = H[1];
|
||||
var c = H[2];
|
||||
var d = H[3];
|
||||
var e = H[4];
|
||||
|
||||
// Computation
|
||||
for (var i = 0; i < 80; i++) {
|
||||
if (i < 16) {
|
||||
W[i] = M[offset + i] | 0;
|
||||
} else {
|
||||
var n = W[i - 3] ^ W[i - 8] ^ W[i - 14] ^ W[i - 16];
|
||||
W[i] = (n << 1) | (n >>> 31);
|
||||
}
|
||||
|
||||
var t = ((a << 5) | (a >>> 27)) + e + W[i];
|
||||
if (i < 20) {
|
||||
t += ((b & c) | (~b & d)) + 0x5a827999;
|
||||
} else if (i < 40) {
|
||||
t += (b ^ c ^ d) + 0x6ed9eba1;
|
||||
} else if (i < 60) {
|
||||
t += ((b & c) | (b & d) | (c & d)) - 0x70e44324;
|
||||
} else /* if (i < 80) */ {
|
||||
t += (b ^ c ^ d) - 0x359d3e2a;
|
||||
}
|
||||
|
||||
e = d;
|
||||
d = c;
|
||||
c = (b << 30) | (b >>> 2);
|
||||
b = a;
|
||||
a = t;
|
||||
}
|
||||
|
||||
// Intermediate hash value
|
||||
H[0] = (H[0] + a) | 0;
|
||||
H[1] = (H[1] + b) | 0;
|
||||
H[2] = (H[2] + c) | 0;
|
||||
H[3] = (H[3] + d) | 0;
|
||||
H[4] = (H[4] + e) | 0;
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
// Shortcuts
|
||||
var data = this._data;
|
||||
var dataWords = data.words;
|
||||
|
||||
var nBitsTotal = this._nDataBytes * 8;
|
||||
var nBitsLeft = data.sigBytes * 8;
|
||||
|
||||
// Add padding
|
||||
dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32);
|
||||
dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = Math.floor(nBitsTotal / 0x100000000);
|
||||
dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = nBitsTotal;
|
||||
data.sigBytes = dataWords.length * 4;
|
||||
|
||||
// Hash final blocks
|
||||
this._process();
|
||||
|
||||
// Return final computed hash
|
||||
return this._hash;
|
||||
},
|
||||
|
||||
clone: function () {
|
||||
var clone = Hasher.clone.call(this);
|
||||
clone._hash = this._hash.clone();
|
||||
|
||||
return clone;
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut function to the hasher's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = CryptoJS.SHA1('message');
|
||||
* var hash = CryptoJS.SHA1(wordArray);
|
||||
*/
|
||||
C.SHA1 = Hasher._createHelper(SHA1);
|
||||
|
||||
/**
|
||||
* Shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = CryptoJS.HmacSHA1(message, key);
|
||||
*/
|
||||
C.HmacSHA1 = Hasher._createHmacHelper(SHA1);
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function (Math) {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var Hasher = C_lib.Hasher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Initialization and round constants tables
|
||||
var H = [];
|
||||
var K = [];
|
||||
|
||||
// Compute constants
|
||||
(function () {
|
||||
function isPrime(n) {
|
||||
var sqrtN = Math.sqrt(n);
|
||||
for (var factor = 2; factor <= sqrtN; factor++) {
|
||||
if (!(n % factor)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
function getFractionalBits(n) {
|
||||
return ((n - (n | 0)) * 0x100000000) | 0;
|
||||
}
|
||||
|
||||
var n = 2;
|
||||
var nPrime = 0;
|
||||
while (nPrime < 64) {
|
||||
if (isPrime(n)) {
|
||||
if (nPrime < 8) {
|
||||
H[nPrime] = getFractionalBits(Math.pow(n, 1 / 2));
|
||||
}
|
||||
K[nPrime] = getFractionalBits(Math.pow(n, 1 / 3));
|
||||
|
||||
nPrime++;
|
||||
}
|
||||
|
||||
n++;
|
||||
}
|
||||
}());
|
||||
|
||||
// Reusable object
|
||||
var W = [];
|
||||
|
||||
/**
|
||||
* SHA-256 hash algorithm.
|
||||
*/
|
||||
var SHA256 = C_algo.SHA256 = Hasher.extend({
|
||||
_doReset: function () {
|
||||
this._hash = new WordArray.init(H.slice(0));
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
// Shortcut
|
||||
var H = this._hash.words;
|
||||
|
||||
// Working variables
|
||||
var a = H[0];
|
||||
var b = H[1];
|
||||
var c = H[2];
|
||||
var d = H[3];
|
||||
var e = H[4];
|
||||
var f = H[5];
|
||||
var g = H[6];
|
||||
var h = H[7];
|
||||
|
||||
// Computation
|
||||
for (var i = 0; i < 64; i++) {
|
||||
if (i < 16) {
|
||||
W[i] = M[offset + i] | 0;
|
||||
} else {
|
||||
var gamma0x = W[i - 15];
|
||||
var gamma0 = ((gamma0x << 25) | (gamma0x >>> 7)) ^
|
||||
((gamma0x << 14) | (gamma0x >>> 18)) ^
|
||||
(gamma0x >>> 3);
|
||||
|
||||
var gamma1x = W[i - 2];
|
||||
var gamma1 = ((gamma1x << 15) | (gamma1x >>> 17)) ^
|
||||
((gamma1x << 13) | (gamma1x >>> 19)) ^
|
||||
(gamma1x >>> 10);
|
||||
|
||||
W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16];
|
||||
}
|
||||
|
||||
var ch = (e & f) ^ (~e & g);
|
||||
var maj = (a & b) ^ (a & c) ^ (b & c);
|
||||
|
||||
var sigma0 = ((a << 30) | (a >>> 2)) ^ ((a << 19) | (a >>> 13)) ^ ((a << 10) | (a >>> 22));
|
||||
var sigma1 = ((e << 26) | (e >>> 6)) ^ ((e << 21) | (e >>> 11)) ^ ((e << 7) | (e >>> 25));
|
||||
|
||||
var t1 = h + sigma1 + ch + K[i] + W[i];
|
||||
var t2 = sigma0 + maj;
|
||||
|
||||
h = g;
|
||||
g = f;
|
||||
f = e;
|
||||
e = (d + t1) | 0;
|
||||
d = c;
|
||||
c = b;
|
||||
b = a;
|
||||
a = (t1 + t2) | 0;
|
||||
}
|
||||
|
||||
// Intermediate hash value
|
||||
H[0] = (H[0] + a) | 0;
|
||||
H[1] = (H[1] + b) | 0;
|
||||
H[2] = (H[2] + c) | 0;
|
||||
H[3] = (H[3] + d) | 0;
|
||||
H[4] = (H[4] + e) | 0;
|
||||
H[5] = (H[5] + f) | 0;
|
||||
H[6] = (H[6] + g) | 0;
|
||||
H[7] = (H[7] + h) | 0;
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
// Shortcuts
|
||||
var data = this._data;
|
||||
var dataWords = data.words;
|
||||
|
||||
var nBitsTotal = this._nDataBytes * 8;
|
||||
var nBitsLeft = data.sigBytes * 8;
|
||||
|
||||
// Add padding
|
||||
dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32);
|
||||
dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = Math.floor(nBitsTotal / 0x100000000);
|
||||
dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 15] = nBitsTotal;
|
||||
data.sigBytes = dataWords.length * 4;
|
||||
|
||||
// Hash final blocks
|
||||
this._process();
|
||||
|
||||
// Return final computed hash
|
||||
return this._hash;
|
||||
},
|
||||
|
||||
clone: function () {
|
||||
var clone = Hasher.clone.call(this);
|
||||
clone._hash = this._hash.clone();
|
||||
|
||||
return clone;
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut function to the hasher's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = CryptoJS.SHA256('message');
|
||||
* var hash = CryptoJS.SHA256(wordArray);
|
||||
*/
|
||||
C.SHA256 = Hasher._createHelper(SHA256);
|
||||
|
||||
/**
|
||||
* Shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = CryptoJS.HmacSHA256(message, key);
|
||||
*/
|
||||
C.HmacSHA256 = Hasher._createHmacHelper(SHA256);
|
||||
}(Math));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var C_algo = C.algo;
|
||||
var SHA256 = C_algo.SHA256;
|
||||
|
||||
/**
|
||||
* SHA-224 hash algorithm.
|
||||
*/
|
||||
var SHA224 = C_algo.SHA224 = SHA256.extend({
|
||||
_doReset: function () {
|
||||
this._hash = new WordArray.init([
|
||||
0xc1059ed8, 0x367cd507, 0x3070dd17, 0xf70e5939,
|
||||
0xffc00b31, 0x68581511, 0x64f98fa7, 0xbefa4fa4
|
||||
]);
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
var hash = SHA256._doFinalize.call(this);
|
||||
|
||||
hash.sigBytes -= 4;
|
||||
|
||||
return hash;
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut function to the hasher's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = CryptoJS.SHA224('message');
|
||||
* var hash = CryptoJS.SHA224(wordArray);
|
||||
*/
|
||||
C.SHA224 = SHA256._createHelper(SHA224);
|
||||
|
||||
/**
|
||||
* Shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = CryptoJS.HmacSHA224(message, key);
|
||||
*/
|
||||
C.HmacSHA224 = SHA256._createHmacHelper(SHA224);
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var Hasher = C_lib.Hasher;
|
||||
var C_x64 = C.x64;
|
||||
var X64Word = C_x64.Word;
|
||||
var X64WordArray = C_x64.WordArray;
|
||||
var C_algo = C.algo;
|
||||
|
||||
function X64Word_create() {
|
||||
return X64Word.create.apply(X64Word, arguments);
|
||||
}
|
||||
|
||||
// Constants
|
||||
var K = [
|
||||
X64Word_create(0x428a2f98, 0xd728ae22), X64Word_create(0x71374491, 0x23ef65cd),
|
||||
X64Word_create(0xb5c0fbcf, 0xec4d3b2f), X64Word_create(0xe9b5dba5, 0x8189dbbc),
|
||||
X64Word_create(0x3956c25b, 0xf348b538), X64Word_create(0x59f111f1, 0xb605d019),
|
||||
X64Word_create(0x923f82a4, 0xaf194f9b), X64Word_create(0xab1c5ed5, 0xda6d8118),
|
||||
X64Word_create(0xd807aa98, 0xa3030242), X64Word_create(0x12835b01, 0x45706fbe),
|
||||
X64Word_create(0x243185be, 0x4ee4b28c), X64Word_create(0x550c7dc3, 0xd5ffb4e2),
|
||||
X64Word_create(0x72be5d74, 0xf27b896f), X64Word_create(0x80deb1fe, 0x3b1696b1),
|
||||
X64Word_create(0x9bdc06a7, 0x25c71235), X64Word_create(0xc19bf174, 0xcf692694),
|
||||
X64Word_create(0xe49b69c1, 0x9ef14ad2), X64Word_create(0xefbe4786, 0x384f25e3),
|
||||
X64Word_create(0x0fc19dc6, 0x8b8cd5b5), X64Word_create(0x240ca1cc, 0x77ac9c65),
|
||||
X64Word_create(0x2de92c6f, 0x592b0275), X64Word_create(0x4a7484aa, 0x6ea6e483),
|
||||
X64Word_create(0x5cb0a9dc, 0xbd41fbd4), X64Word_create(0x76f988da, 0x831153b5),
|
||||
X64Word_create(0x983e5152, 0xee66dfab), X64Word_create(0xa831c66d, 0x2db43210),
|
||||
X64Word_create(0xb00327c8, 0x98fb213f), X64Word_create(0xbf597fc7, 0xbeef0ee4),
|
||||
X64Word_create(0xc6e00bf3, 0x3da88fc2), X64Word_create(0xd5a79147, 0x930aa725),
|
||||
X64Word_create(0x06ca6351, 0xe003826f), X64Word_create(0x14292967, 0x0a0e6e70),
|
||||
X64Word_create(0x27b70a85, 0x46d22ffc), X64Word_create(0x2e1b2138, 0x5c26c926),
|
||||
X64Word_create(0x4d2c6dfc, 0x5ac42aed), X64Word_create(0x53380d13, 0x9d95b3df),
|
||||
X64Word_create(0x650a7354, 0x8baf63de), X64Word_create(0x766a0abb, 0x3c77b2a8),
|
||||
X64Word_create(0x81c2c92e, 0x47edaee6), X64Word_create(0x92722c85, 0x1482353b),
|
||||
X64Word_create(0xa2bfe8a1, 0x4cf10364), X64Word_create(0xa81a664b, 0xbc423001),
|
||||
X64Word_create(0xc24b8b70, 0xd0f89791), X64Word_create(0xc76c51a3, 0x0654be30),
|
||||
X64Word_create(0xd192e819, 0xd6ef5218), X64Word_create(0xd6990624, 0x5565a910),
|
||||
X64Word_create(0xf40e3585, 0x5771202a), X64Word_create(0x106aa070, 0x32bbd1b8),
|
||||
X64Word_create(0x19a4c116, 0xb8d2d0c8), X64Word_create(0x1e376c08, 0x5141ab53),
|
||||
X64Word_create(0x2748774c, 0xdf8eeb99), X64Word_create(0x34b0bcb5, 0xe19b48a8),
|
||||
X64Word_create(0x391c0cb3, 0xc5c95a63), X64Word_create(0x4ed8aa4a, 0xe3418acb),
|
||||
X64Word_create(0x5b9cca4f, 0x7763e373), X64Word_create(0x682e6ff3, 0xd6b2b8a3),
|
||||
X64Word_create(0x748f82ee, 0x5defb2fc), X64Word_create(0x78a5636f, 0x43172f60),
|
||||
X64Word_create(0x84c87814, 0xa1f0ab72), X64Word_create(0x8cc70208, 0x1a6439ec),
|
||||
X64Word_create(0x90befffa, 0x23631e28), X64Word_create(0xa4506ceb, 0xde82bde9),
|
||||
X64Word_create(0xbef9a3f7, 0xb2c67915), X64Word_create(0xc67178f2, 0xe372532b),
|
||||
X64Word_create(0xca273ece, 0xea26619c), X64Word_create(0xd186b8c7, 0x21c0c207),
|
||||
X64Word_create(0xeada7dd6, 0xcde0eb1e), X64Word_create(0xf57d4f7f, 0xee6ed178),
|
||||
X64Word_create(0x06f067aa, 0x72176fba), X64Word_create(0x0a637dc5, 0xa2c898a6),
|
||||
X64Word_create(0x113f9804, 0xbef90dae), X64Word_create(0x1b710b35, 0x131c471b),
|
||||
X64Word_create(0x28db77f5, 0x23047d84), X64Word_create(0x32caab7b, 0x40c72493),
|
||||
X64Word_create(0x3c9ebe0a, 0x15c9bebc), X64Word_create(0x431d67c4, 0x9c100d4c),
|
||||
X64Word_create(0x4cc5d4be, 0xcb3e42b6), X64Word_create(0x597f299c, 0xfc657e2a),
|
||||
X64Word_create(0x5fcb6fab, 0x3ad6faec), X64Word_create(0x6c44198c, 0x4a475817)
|
||||
];
|
||||
|
||||
// Reusable objects
|
||||
var W = [];
|
||||
(function () {
|
||||
for (var i = 0; i < 80; i++) {
|
||||
W[i] = X64Word_create();
|
||||
}
|
||||
}());
|
||||
|
||||
/**
|
||||
* SHA-512 hash algorithm.
|
||||
*/
|
||||
var SHA512 = C_algo.SHA512 = Hasher.extend({
|
||||
_doReset: function () {
|
||||
this._hash = new X64WordArray.init([
|
||||
new X64Word.init(0x6a09e667, 0xf3bcc908), new X64Word.init(0xbb67ae85, 0x84caa73b),
|
||||
new X64Word.init(0x3c6ef372, 0xfe94f82b), new X64Word.init(0xa54ff53a, 0x5f1d36f1),
|
||||
new X64Word.init(0x510e527f, 0xade682d1), new X64Word.init(0x9b05688c, 0x2b3e6c1f),
|
||||
new X64Word.init(0x1f83d9ab, 0xfb41bd6b), new X64Word.init(0x5be0cd19, 0x137e2179)
|
||||
]);
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
// Shortcuts
|
||||
var H = this._hash.words;
|
||||
|
||||
var H0 = H[0];
|
||||
var H1 = H[1];
|
||||
var H2 = H[2];
|
||||
var H3 = H[3];
|
||||
var H4 = H[4];
|
||||
var H5 = H[5];
|
||||
var H6 = H[6];
|
||||
var H7 = H[7];
|
||||
|
||||
var H0h = H0.high;
|
||||
var H0l = H0.low;
|
||||
var H1h = H1.high;
|
||||
var H1l = H1.low;
|
||||
var H2h = H2.high;
|
||||
var H2l = H2.low;
|
||||
var H3h = H3.high;
|
||||
var H3l = H3.low;
|
||||
var H4h = H4.high;
|
||||
var H4l = H4.low;
|
||||
var H5h = H5.high;
|
||||
var H5l = H5.low;
|
||||
var H6h = H6.high;
|
||||
var H6l = H6.low;
|
||||
var H7h = H7.high;
|
||||
var H7l = H7.low;
|
||||
|
||||
// Working variables
|
||||
var ah = H0h;
|
||||
var al = H0l;
|
||||
var bh = H1h;
|
||||
var bl = H1l;
|
||||
var ch = H2h;
|
||||
var cl = H2l;
|
||||
var dh = H3h;
|
||||
var dl = H3l;
|
||||
var eh = H4h;
|
||||
var el = H4l;
|
||||
var fh = H5h;
|
||||
var fl = H5l;
|
||||
var gh = H6h;
|
||||
var gl = H6l;
|
||||
var hh = H7h;
|
||||
var hl = H7l;
|
||||
|
||||
// Rounds
|
||||
for (var i = 0; i < 80; i++) {
|
||||
var Wil;
|
||||
var Wih;
|
||||
|
||||
// Shortcut
|
||||
var Wi = W[i];
|
||||
|
||||
// Extend message
|
||||
if (i < 16) {
|
||||
Wih = Wi.high = M[offset + i * 2] | 0;
|
||||
Wil = Wi.low = M[offset + i * 2 + 1] | 0;
|
||||
} else {
|
||||
// Gamma0
|
||||
var gamma0x = W[i - 15];
|
||||
var gamma0xh = gamma0x.high;
|
||||
var gamma0xl = gamma0x.low;
|
||||
var gamma0h = ((gamma0xh >>> 1) | (gamma0xl << 31)) ^ ((gamma0xh >>> 8) | (gamma0xl << 24)) ^ (gamma0xh >>> 7);
|
||||
var gamma0l = ((gamma0xl >>> 1) | (gamma0xh << 31)) ^ ((gamma0xl >>> 8) | (gamma0xh << 24)) ^ ((gamma0xl >>> 7) | (gamma0xh << 25));
|
||||
|
||||
// Gamma1
|
||||
var gamma1x = W[i - 2];
|
||||
var gamma1xh = gamma1x.high;
|
||||
var gamma1xl = gamma1x.low;
|
||||
var gamma1h = ((gamma1xh >>> 19) | (gamma1xl << 13)) ^ ((gamma1xh << 3) | (gamma1xl >>> 29)) ^ (gamma1xh >>> 6);
|
||||
var gamma1l = ((gamma1xl >>> 19) | (gamma1xh << 13)) ^ ((gamma1xl << 3) | (gamma1xh >>> 29)) ^ ((gamma1xl >>> 6) | (gamma1xh << 26));
|
||||
|
||||
// W[i] = gamma0 + W[i - 7] + gamma1 + W[i - 16]
|
||||
var Wi7 = W[i - 7];
|
||||
var Wi7h = Wi7.high;
|
||||
var Wi7l = Wi7.low;
|
||||
|
||||
var Wi16 = W[i - 16];
|
||||
var Wi16h = Wi16.high;
|
||||
var Wi16l = Wi16.low;
|
||||
|
||||
Wil = gamma0l + Wi7l;
|
||||
Wih = gamma0h + Wi7h + ((Wil >>> 0) < (gamma0l >>> 0) ? 1 : 0);
|
||||
Wil = Wil + gamma1l;
|
||||
Wih = Wih + gamma1h + ((Wil >>> 0) < (gamma1l >>> 0) ? 1 : 0);
|
||||
Wil = Wil + Wi16l;
|
||||
Wih = Wih + Wi16h + ((Wil >>> 0) < (Wi16l >>> 0) ? 1 : 0);
|
||||
|
||||
Wi.high = Wih;
|
||||
Wi.low = Wil;
|
||||
}
|
||||
|
||||
var chh = (eh & fh) ^ (~eh & gh);
|
||||
var chl = (el & fl) ^ (~el & gl);
|
||||
var majh = (ah & bh) ^ (ah & ch) ^ (bh & ch);
|
||||
var majl = (al & bl) ^ (al & cl) ^ (bl & cl);
|
||||
|
||||
var sigma0h = ((ah >>> 28) | (al << 4)) ^ ((ah << 30) | (al >>> 2)) ^ ((ah << 25) | (al >>> 7));
|
||||
var sigma0l = ((al >>> 28) | (ah << 4)) ^ ((al << 30) | (ah >>> 2)) ^ ((al << 25) | (ah >>> 7));
|
||||
var sigma1h = ((eh >>> 14) | (el << 18)) ^ ((eh >>> 18) | (el << 14)) ^ ((eh << 23) | (el >>> 9));
|
||||
var sigma1l = ((el >>> 14) | (eh << 18)) ^ ((el >>> 18) | (eh << 14)) ^ ((el << 23) | (eh >>> 9));
|
||||
|
||||
// t1 = h + sigma1 + ch + K[i] + W[i]
|
||||
var Ki = K[i];
|
||||
var Kih = Ki.high;
|
||||
var Kil = Ki.low;
|
||||
|
||||
var t1l = hl + sigma1l;
|
||||
var t1h = hh + sigma1h + ((t1l >>> 0) < (hl >>> 0) ? 1 : 0);
|
||||
var t1l = t1l + chl;
|
||||
var t1h = t1h + chh + ((t1l >>> 0) < (chl >>> 0) ? 1 : 0);
|
||||
var t1l = t1l + Kil;
|
||||
var t1h = t1h + Kih + ((t1l >>> 0) < (Kil >>> 0) ? 1 : 0);
|
||||
var t1l = t1l + Wil;
|
||||
var t1h = t1h + Wih + ((t1l >>> 0) < (Wil >>> 0) ? 1 : 0);
|
||||
|
||||
// t2 = sigma0 + maj
|
||||
var t2l = sigma0l + majl;
|
||||
var t2h = sigma0h + majh + ((t2l >>> 0) < (sigma0l >>> 0) ? 1 : 0);
|
||||
|
||||
// Update working variables
|
||||
hh = gh;
|
||||
hl = gl;
|
||||
gh = fh;
|
||||
gl = fl;
|
||||
fh = eh;
|
||||
fl = el;
|
||||
el = (dl + t1l) | 0;
|
||||
eh = (dh + t1h + ((el >>> 0) < (dl >>> 0) ? 1 : 0)) | 0;
|
||||
dh = ch;
|
||||
dl = cl;
|
||||
ch = bh;
|
||||
cl = bl;
|
||||
bh = ah;
|
||||
bl = al;
|
||||
al = (t1l + t2l) | 0;
|
||||
ah = (t1h + t2h + ((al >>> 0) < (t1l >>> 0) ? 1 : 0)) | 0;
|
||||
}
|
||||
|
||||
// Intermediate hash value
|
||||
H0l = H0.low = (H0l + al);
|
||||
H0.high = (H0h + ah + ((H0l >>> 0) < (al >>> 0) ? 1 : 0));
|
||||
H1l = H1.low = (H1l + bl);
|
||||
H1.high = (H1h + bh + ((H1l >>> 0) < (bl >>> 0) ? 1 : 0));
|
||||
H2l = H2.low = (H2l + cl);
|
||||
H2.high = (H2h + ch + ((H2l >>> 0) < (cl >>> 0) ? 1 : 0));
|
||||
H3l = H3.low = (H3l + dl);
|
||||
H3.high = (H3h + dh + ((H3l >>> 0) < (dl >>> 0) ? 1 : 0));
|
||||
H4l = H4.low = (H4l + el);
|
||||
H4.high = (H4h + eh + ((H4l >>> 0) < (el >>> 0) ? 1 : 0));
|
||||
H5l = H5.low = (H5l + fl);
|
||||
H5.high = (H5h + fh + ((H5l >>> 0) < (fl >>> 0) ? 1 : 0));
|
||||
H6l = H6.low = (H6l + gl);
|
||||
H6.high = (H6h + gh + ((H6l >>> 0) < (gl >>> 0) ? 1 : 0));
|
||||
H7l = H7.low = (H7l + hl);
|
||||
H7.high = (H7h + hh + ((H7l >>> 0) < (hl >>> 0) ? 1 : 0));
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
// Shortcuts
|
||||
var data = this._data;
|
||||
var dataWords = data.words;
|
||||
|
||||
var nBitsTotal = this._nDataBytes * 8;
|
||||
var nBitsLeft = data.sigBytes * 8;
|
||||
|
||||
// Add padding
|
||||
dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32);
|
||||
dataWords[(((nBitsLeft + 128) >>> 10) << 5) + 30] = Math.floor(nBitsTotal / 0x100000000);
|
||||
dataWords[(((nBitsLeft + 128) >>> 10) << 5) + 31] = nBitsTotal;
|
||||
data.sigBytes = dataWords.length * 4;
|
||||
|
||||
// Hash final blocks
|
||||
this._process();
|
||||
|
||||
// Convert hash to 32-bit word array before returning
|
||||
var hash = this._hash.toX32();
|
||||
|
||||
// Return final computed hash
|
||||
return hash;
|
||||
},
|
||||
|
||||
clone: function () {
|
||||
var clone = Hasher.clone.call(this);
|
||||
clone._hash = this._hash.clone();
|
||||
|
||||
return clone;
|
||||
},
|
||||
|
||||
blockSize: 1024/32
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut function to the hasher's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = CryptoJS.SHA512('message');
|
||||
* var hash = CryptoJS.SHA512(wordArray);
|
||||
*/
|
||||
C.SHA512 = Hasher._createHelper(SHA512);
|
||||
|
||||
/**
|
||||
* Shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = CryptoJS.HmacSHA512(message, key);
|
||||
*/
|
||||
C.HmacSHA512 = Hasher._createHmacHelper(SHA512);
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_x64 = C.x64;
|
||||
var X64Word = C_x64.Word;
|
||||
var X64WordArray = C_x64.WordArray;
|
||||
var C_algo = C.algo;
|
||||
var SHA512 = C_algo.SHA512;
|
||||
|
||||
/**
|
||||
* SHA-384 hash algorithm.
|
||||
*/
|
||||
var SHA384 = C_algo.SHA384 = SHA512.extend({
|
||||
_doReset: function () {
|
||||
this._hash = new X64WordArray.init([
|
||||
new X64Word.init(0xcbbb9d5d, 0xc1059ed8), new X64Word.init(0x629a292a, 0x367cd507),
|
||||
new X64Word.init(0x9159015a, 0x3070dd17), new X64Word.init(0x152fecd8, 0xf70e5939),
|
||||
new X64Word.init(0x67332667, 0xffc00b31), new X64Word.init(0x8eb44a87, 0x68581511),
|
||||
new X64Word.init(0xdb0c2e0d, 0x64f98fa7), new X64Word.init(0x47b5481d, 0xbefa4fa4)
|
||||
]);
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
var hash = SHA512._doFinalize.call(this);
|
||||
|
||||
hash.sigBytes -= 16;
|
||||
|
||||
return hash;
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut function to the hasher's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = CryptoJS.SHA384('message');
|
||||
* var hash = CryptoJS.SHA384(wordArray);
|
||||
*/
|
||||
C.SHA384 = SHA512._createHelper(SHA384);
|
||||
|
||||
/**
|
||||
* Shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = CryptoJS.HmacSHA384(message, key);
|
||||
*/
|
||||
C.HmacSHA384 = SHA512._createHmacHelper(SHA384);
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function (Math) {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var Hasher = C_lib.Hasher;
|
||||
var C_x64 = C.x64;
|
||||
var X64Word = C_x64.Word;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Constants tables
|
||||
var RHO_OFFSETS = [];
|
||||
var PI_INDEXES = [];
|
||||
var ROUND_CONSTANTS = [];
|
||||
|
||||
// Compute Constants
|
||||
(function () {
|
||||
// Compute rho offset constants
|
||||
var x = 1, y = 0;
|
||||
for (var t = 0; t < 24; t++) {
|
||||
RHO_OFFSETS[x + 5 * y] = ((t + 1) * (t + 2) / 2) % 64;
|
||||
|
||||
var newX = y % 5;
|
||||
var newY = (2 * x + 3 * y) % 5;
|
||||
x = newX;
|
||||
y = newY;
|
||||
}
|
||||
|
||||
// Compute pi index constants
|
||||
for (var x = 0; x < 5; x++) {
|
||||
for (var y = 0; y < 5; y++) {
|
||||
PI_INDEXES[x + 5 * y] = y + ((2 * x + 3 * y) % 5) * 5;
|
||||
}
|
||||
}
|
||||
|
||||
// Compute round constants
|
||||
var LFSR = 0x01;
|
||||
for (var i = 0; i < 24; i++) {
|
||||
var roundConstantMsw = 0;
|
||||
var roundConstantLsw = 0;
|
||||
|
||||
for (var j = 0; j < 7; j++) {
|
||||
if (LFSR & 0x01) {
|
||||
var bitPosition = (1 << j) - 1;
|
||||
if (bitPosition < 32) {
|
||||
roundConstantLsw ^= 1 << bitPosition;
|
||||
} else /* if (bitPosition >= 32) */ {
|
||||
roundConstantMsw ^= 1 << (bitPosition - 32);
|
||||
}
|
||||
}
|
||||
|
||||
// Compute next LFSR
|
||||
if (LFSR & 0x80) {
|
||||
// Primitive polynomial over GF(2): x^8 + x^6 + x^5 + x^4 + 1
|
||||
LFSR = (LFSR << 1) ^ 0x71;
|
||||
} else {
|
||||
LFSR <<= 1;
|
||||
}
|
||||
}
|
||||
|
||||
ROUND_CONSTANTS[i] = X64Word.create(roundConstantMsw, roundConstantLsw);
|
||||
}
|
||||
}());
|
||||
|
||||
// Reusable objects for temporary values
|
||||
var T = [];
|
||||
(function () {
|
||||
for (var i = 0; i < 25; i++) {
|
||||
T[i] = X64Word.create();
|
||||
}
|
||||
}());
|
||||
|
||||
/**
|
||||
* SHA-3 hash algorithm.
|
||||
*/
|
||||
var SHA3 = C_algo.SHA3 = Hasher.extend({
|
||||
/**
|
||||
* Configuration options.
|
||||
*
|
||||
* @property {number} outputLength
|
||||
* The desired number of bits in the output hash.
|
||||
* Only values permitted are: 224, 256, 384, 512.
|
||||
* Default: 512
|
||||
*/
|
||||
cfg: Hasher.cfg.extend({
|
||||
outputLength: 512
|
||||
}),
|
||||
|
||||
_doReset: function () {
|
||||
var state = this._state = []
|
||||
for (var i = 0; i < 25; i++) {
|
||||
state[i] = new X64Word.init();
|
||||
}
|
||||
|
||||
this.blockSize = (1600 - 2 * this.cfg.outputLength) / 32;
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
// Shortcuts
|
||||
var state = this._state;
|
||||
var nBlockSizeLanes = this.blockSize / 2;
|
||||
|
||||
// Absorb
|
||||
for (var i = 0; i < nBlockSizeLanes; i++) {
|
||||
// Shortcuts
|
||||
var M2i = M[offset + 2 * i];
|
||||
var M2i1 = M[offset + 2 * i + 1];
|
||||
|
||||
// Swap endian
|
||||
M2i = (
|
||||
(((M2i << 8) | (M2i >>> 24)) & 0x00ff00ff) |
|
||||
(((M2i << 24) | (M2i >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
M2i1 = (
|
||||
(((M2i1 << 8) | (M2i1 >>> 24)) & 0x00ff00ff) |
|
||||
(((M2i1 << 24) | (M2i1 >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
|
||||
// Absorb message into state
|
||||
var lane = state[i];
|
||||
lane.high ^= M2i1;
|
||||
lane.low ^= M2i;
|
||||
}
|
||||
|
||||
// Rounds
|
||||
for (var round = 0; round < 24; round++) {
|
||||
// Theta
|
||||
for (var x = 0; x < 5; x++) {
|
||||
// Mix column lanes
|
||||
var tMsw = 0, tLsw = 0;
|
||||
for (var y = 0; y < 5; y++) {
|
||||
var lane = state[x + 5 * y];
|
||||
tMsw ^= lane.high;
|
||||
tLsw ^= lane.low;
|
||||
}
|
||||
|
||||
// Temporary values
|
||||
var Tx = T[x];
|
||||
Tx.high = tMsw;
|
||||
Tx.low = tLsw;
|
||||
}
|
||||
for (var x = 0; x < 5; x++) {
|
||||
// Shortcuts
|
||||
var Tx4 = T[(x + 4) % 5];
|
||||
var Tx1 = T[(x + 1) % 5];
|
||||
var Tx1Msw = Tx1.high;
|
||||
var Tx1Lsw = Tx1.low;
|
||||
|
||||
// Mix surrounding columns
|
||||
var tMsw = Tx4.high ^ ((Tx1Msw << 1) | (Tx1Lsw >>> 31));
|
||||
var tLsw = Tx4.low ^ ((Tx1Lsw << 1) | (Tx1Msw >>> 31));
|
||||
for (var y = 0; y < 5; y++) {
|
||||
var lane = state[x + 5 * y];
|
||||
lane.high ^= tMsw;
|
||||
lane.low ^= tLsw;
|
||||
}
|
||||
}
|
||||
|
||||
// Rho Pi
|
||||
for (var laneIndex = 1; laneIndex < 25; laneIndex++) {
|
||||
var tMsw;
|
||||
var tLsw;
|
||||
|
||||
// Shortcuts
|
||||
var lane = state[laneIndex];
|
||||
var laneMsw = lane.high;
|
||||
var laneLsw = lane.low;
|
||||
var rhoOffset = RHO_OFFSETS[laneIndex];
|
||||
|
||||
// Rotate lanes
|
||||
if (rhoOffset < 32) {
|
||||
tMsw = (laneMsw << rhoOffset) | (laneLsw >>> (32 - rhoOffset));
|
||||
tLsw = (laneLsw << rhoOffset) | (laneMsw >>> (32 - rhoOffset));
|
||||
} else /* if (rhoOffset >= 32) */ {
|
||||
tMsw = (laneLsw << (rhoOffset - 32)) | (laneMsw >>> (64 - rhoOffset));
|
||||
tLsw = (laneMsw << (rhoOffset - 32)) | (laneLsw >>> (64 - rhoOffset));
|
||||
}
|
||||
|
||||
// Transpose lanes
|
||||
var TPiLane = T[PI_INDEXES[laneIndex]];
|
||||
TPiLane.high = tMsw;
|
||||
TPiLane.low = tLsw;
|
||||
}
|
||||
|
||||
// Rho pi at x = y = 0
|
||||
var T0 = T[0];
|
||||
var state0 = state[0];
|
||||
T0.high = state0.high;
|
||||
T0.low = state0.low;
|
||||
|
||||
// Chi
|
||||
for (var x = 0; x < 5; x++) {
|
||||
for (var y = 0; y < 5; y++) {
|
||||
// Shortcuts
|
||||
var laneIndex = x + 5 * y;
|
||||
var lane = state[laneIndex];
|
||||
var TLane = T[laneIndex];
|
||||
var Tx1Lane = T[((x + 1) % 5) + 5 * y];
|
||||
var Tx2Lane = T[((x + 2) % 5) + 5 * y];
|
||||
|
||||
// Mix rows
|
||||
lane.high = TLane.high ^ (~Tx1Lane.high & Tx2Lane.high);
|
||||
lane.low = TLane.low ^ (~Tx1Lane.low & Tx2Lane.low);
|
||||
}
|
||||
}
|
||||
|
||||
// Iota
|
||||
var lane = state[0];
|
||||
var roundConstant = ROUND_CONSTANTS[round];
|
||||
lane.high ^= roundConstant.high;
|
||||
lane.low ^= roundConstant.low;
|
||||
}
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
// Shortcuts
|
||||
var data = this._data;
|
||||
var dataWords = data.words;
|
||||
var nBitsTotal = this._nDataBytes * 8;
|
||||
var nBitsLeft = data.sigBytes * 8;
|
||||
var blockSizeBits = this.blockSize * 32;
|
||||
|
||||
// Add padding
|
||||
dataWords[nBitsLeft >>> 5] |= 0x1 << (24 - nBitsLeft % 32);
|
||||
dataWords[((Math.ceil((nBitsLeft + 1) / blockSizeBits) * blockSizeBits) >>> 5) - 1] |= 0x80;
|
||||
data.sigBytes = dataWords.length * 4;
|
||||
|
||||
// Hash final blocks
|
||||
this._process();
|
||||
|
||||
// Shortcuts
|
||||
var state = this._state;
|
||||
var outputLengthBytes = this.cfg.outputLength / 8;
|
||||
var outputLengthLanes = outputLengthBytes / 8;
|
||||
|
||||
// Squeeze
|
||||
var hashWords = [];
|
||||
for (var i = 0; i < outputLengthLanes; i++) {
|
||||
// Shortcuts
|
||||
var lane = state[i];
|
||||
var laneMsw = lane.high;
|
||||
var laneLsw = lane.low;
|
||||
|
||||
// Swap endian
|
||||
laneMsw = (
|
||||
(((laneMsw << 8) | (laneMsw >>> 24)) & 0x00ff00ff) |
|
||||
(((laneMsw << 24) | (laneMsw >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
laneLsw = (
|
||||
(((laneLsw << 8) | (laneLsw >>> 24)) & 0x00ff00ff) |
|
||||
(((laneLsw << 24) | (laneLsw >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
|
||||
// Squeeze state to retrieve hash
|
||||
hashWords.push(laneLsw);
|
||||
hashWords.push(laneMsw);
|
||||
}
|
||||
|
||||
// Return final computed hash
|
||||
return new WordArray.init(hashWords, outputLengthBytes);
|
||||
},
|
||||
|
||||
clone: function () {
|
||||
var clone = Hasher.clone.call(this);
|
||||
|
||||
var state = clone._state = this._state.slice(0);
|
||||
for (var i = 0; i < 25; i++) {
|
||||
state[i] = state[i].clone();
|
||||
}
|
||||
|
||||
return clone;
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut function to the hasher's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = CryptoJS.SHA3('message');
|
||||
* var hash = CryptoJS.SHA3(wordArray);
|
||||
*/
|
||||
C.SHA3 = Hasher._createHelper(SHA3);
|
||||
|
||||
/**
|
||||
* Shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = CryptoJS.HmacSHA3(message, key);
|
||||
*/
|
||||
C.HmacSHA3 = Hasher._createHmacHelper(SHA3);
|
||||
}(Math));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/** @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.
|
||||
*/
|
||||
|
||||
(function (Math) {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var Hasher = C_lib.Hasher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Constants table
|
||||
var _zl = WordArray.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]);
|
||||
var _zr = WordArray.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]);
|
||||
var _sl = WordArray.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 ]);
|
||||
var _sr = WordArray.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 ]);
|
||||
|
||||
var _hl = WordArray.create([ 0x00000000, 0x5A827999, 0x6ED9EBA1, 0x8F1BBCDC, 0xA953FD4E]);
|
||||
var _hr = WordArray.create([ 0x50A28BE6, 0x5C4DD124, 0x6D703EF3, 0x7A6D76E9, 0x00000000]);
|
||||
|
||||
/**
|
||||
* RIPEMD160 hash algorithm.
|
||||
*/
|
||||
var RIPEMD160 = C_algo.RIPEMD160 = Hasher.extend({
|
||||
_doReset: function () {
|
||||
this._hash = WordArray.create([0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0]);
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
|
||||
// Swap endian
|
||||
for (var i = 0; i < 16; i++) {
|
||||
// Shortcuts
|
||||
var offset_i = offset + i;
|
||||
var M_offset_i = M[offset_i];
|
||||
|
||||
// Swap
|
||||
M[offset_i] = (
|
||||
(((M_offset_i << 8) | (M_offset_i >>> 24)) & 0x00ff00ff) |
|
||||
(((M_offset_i << 24) | (M_offset_i >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
}
|
||||
// Shortcut
|
||||
var H = this._hash.words;
|
||||
var hl = _hl.words;
|
||||
var hr = _hr.words;
|
||||
var zl = _zl.words;
|
||||
var zr = _zr.words;
|
||||
var sl = _sl.words;
|
||||
var sr = _sr.words;
|
||||
|
||||
// Working variables
|
||||
var al, bl, cl, dl, el;
|
||||
var ar, br, cr, dr, er;
|
||||
|
||||
ar = al = H[0];
|
||||
br = bl = H[1];
|
||||
cr = cl = H[2];
|
||||
dr = dl = H[3];
|
||||
er = el = H[4];
|
||||
// Computation
|
||||
var t;
|
||||
for (var i = 0; i < 80; i += 1) {
|
||||
t = (al + M[offset+zl[i]])|0;
|
||||
if (i<16){
|
||||
t += f1(bl,cl,dl) + hl[0];
|
||||
} else if (i<32) {
|
||||
t += f2(bl,cl,dl) + hl[1];
|
||||
} else if (i<48) {
|
||||
t += f3(bl,cl,dl) + hl[2];
|
||||
} else if (i<64) {
|
||||
t += f4(bl,cl,dl) + hl[3];
|
||||
} else {// if (i<80) {
|
||||
t += f5(bl,cl,dl) + hl[4];
|
||||
}
|
||||
t = t|0;
|
||||
t = rotl(t,sl[i]);
|
||||
t = (t+el)|0;
|
||||
al = el;
|
||||
el = dl;
|
||||
dl = rotl(cl, 10);
|
||||
cl = bl;
|
||||
bl = t;
|
||||
|
||||
t = (ar + M[offset+zr[i]])|0;
|
||||
if (i<16){
|
||||
t += f5(br,cr,dr) + hr[0];
|
||||
} else if (i<32) {
|
||||
t += f4(br,cr,dr) + hr[1];
|
||||
} else if (i<48) {
|
||||
t += f3(br,cr,dr) + hr[2];
|
||||
} else if (i<64) {
|
||||
t += f2(br,cr,dr) + hr[3];
|
||||
} else {// if (i<80) {
|
||||
t += f1(br,cr,dr) + hr[4];
|
||||
}
|
||||
t = t|0;
|
||||
t = rotl(t,sr[i]) ;
|
||||
t = (t+er)|0;
|
||||
ar = er;
|
||||
er = dr;
|
||||
dr = rotl(cr, 10);
|
||||
cr = br;
|
||||
br = t;
|
||||
}
|
||||
// Intermediate hash value
|
||||
t = (H[1] + cl + dr)|0;
|
||||
H[1] = (H[2] + dl + er)|0;
|
||||
H[2] = (H[3] + el + ar)|0;
|
||||
H[3] = (H[4] + al + br)|0;
|
||||
H[4] = (H[0] + bl + cr)|0;
|
||||
H[0] = t;
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
// Shortcuts
|
||||
var data = this._data;
|
||||
var dataWords = data.words;
|
||||
|
||||
var nBitsTotal = this._nDataBytes * 8;
|
||||
var nBitsLeft = data.sigBytes * 8;
|
||||
|
||||
// Add padding
|
||||
dataWords[nBitsLeft >>> 5] |= 0x80 << (24 - nBitsLeft % 32);
|
||||
dataWords[(((nBitsLeft + 64) >>> 9) << 4) + 14] = (
|
||||
(((nBitsTotal << 8) | (nBitsTotal >>> 24)) & 0x00ff00ff) |
|
||||
(((nBitsTotal << 24) | (nBitsTotal >>> 8)) & 0xff00ff00)
|
||||
);
|
||||
data.sigBytes = (dataWords.length + 1) * 4;
|
||||
|
||||
// Hash final blocks
|
||||
this._process();
|
||||
|
||||
// Shortcuts
|
||||
var hash = this._hash;
|
||||
var H = hash.words;
|
||||
|
||||
// Swap endian
|
||||
for (var i = 0; i < 5; i++) {
|
||||
// Shortcut
|
||||
var H_i = H[i];
|
||||
|
||||
// Swap
|
||||
H[i] = (((H_i << 8) | (H_i >>> 24)) & 0x00ff00ff) |
|
||||
(((H_i << 24) | (H_i >>> 8)) & 0xff00ff00);
|
||||
}
|
||||
|
||||
// Return final computed hash
|
||||
return hash;
|
||||
},
|
||||
|
||||
clone: function () {
|
||||
var clone = Hasher.clone.call(this);
|
||||
clone._hash = this._hash.clone();
|
||||
|
||||
return clone;
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
function f1(x, y, z) {
|
||||
return ((x) ^ (y) ^ (z));
|
||||
|
||||
}
|
||||
|
||||
function f2(x, y, z) {
|
||||
return (((x)&(y)) | ((~x)&(z)));
|
||||
}
|
||||
|
||||
function f3(x, y, z) {
|
||||
return (((x) | (~(y))) ^ (z));
|
||||
}
|
||||
|
||||
function f4(x, y, z) {
|
||||
return (((x) & (z)) | ((y)&(~(z))));
|
||||
}
|
||||
|
||||
function f5(x, y, z) {
|
||||
return ((x) ^ ((y) |(~(z))));
|
||||
|
||||
}
|
||||
|
||||
function rotl(x,n) {
|
||||
return (x<<n) | (x>>>(32-n));
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Shortcut function to the hasher's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
*
|
||||
* @return {WordArray} The hash.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hash = CryptoJS.RIPEMD160('message');
|
||||
* var hash = CryptoJS.RIPEMD160(wordArray);
|
||||
*/
|
||||
C.RIPEMD160 = Hasher._createHelper(RIPEMD160);
|
||||
|
||||
/**
|
||||
* Shortcut function to the HMAC's object interface.
|
||||
*
|
||||
* @param {WordArray|string} message The message to hash.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = CryptoJS.HmacRIPEMD160(message, key);
|
||||
*/
|
||||
C.HmacRIPEMD160 = Hasher._createHmacHelper(RIPEMD160);
|
||||
}(Math));
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var Base = C_lib.Base;
|
||||
var C_enc = C.enc;
|
||||
var Utf8 = C_enc.Utf8;
|
||||
var C_algo = C.algo;
|
||||
|
||||
/**
|
||||
* HMAC algorithm.
|
||||
*/
|
||||
var HMAC = C_algo.HMAC = Base.extend({
|
||||
/**
|
||||
* Initializes a newly created HMAC.
|
||||
*
|
||||
* @param {Hasher} hasher The hash algorithm to use.
|
||||
* @param {WordArray|string} key The secret key.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmacHasher = CryptoJS.algo.HMAC.create(CryptoJS.algo.SHA256, key);
|
||||
*/
|
||||
init: function (hasher, key) {
|
||||
// Init hasher
|
||||
hasher = this._hasher = new hasher.init();
|
||||
|
||||
// Convert string to WordArray, else assume WordArray already
|
||||
if (typeof key == 'string') {
|
||||
key = Utf8.parse(key);
|
||||
}
|
||||
|
||||
// Shortcuts
|
||||
var hasherBlockSize = hasher.blockSize;
|
||||
var hasherBlockSizeBytes = hasherBlockSize * 4;
|
||||
|
||||
// Allow arbitrary length keys
|
||||
if (key.sigBytes > hasherBlockSizeBytes) {
|
||||
key = hasher.finalize(key);
|
||||
}
|
||||
|
||||
// Clamp excess bits
|
||||
key.clamp();
|
||||
|
||||
// Clone key for inner and outer pads
|
||||
var oKey = this._oKey = key.clone();
|
||||
var iKey = this._iKey = key.clone();
|
||||
|
||||
// Shortcuts
|
||||
var oKeyWords = oKey.words;
|
||||
var iKeyWords = iKey.words;
|
||||
|
||||
// XOR keys with pad constants
|
||||
for (var i = 0; i < hasherBlockSize; i++) {
|
||||
oKeyWords[i] ^= 0x5c5c5c5c;
|
||||
iKeyWords[i] ^= 0x36363636;
|
||||
}
|
||||
oKey.sigBytes = iKey.sigBytes = hasherBlockSizeBytes;
|
||||
|
||||
// Set initial values
|
||||
this.reset();
|
||||
},
|
||||
|
||||
/**
|
||||
* Resets this HMAC to its initial state.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* hmacHasher.reset();
|
||||
*/
|
||||
reset: function () {
|
||||
// Shortcut
|
||||
var hasher = this._hasher;
|
||||
|
||||
// Reset
|
||||
hasher.reset();
|
||||
hasher.update(this._iKey);
|
||||
},
|
||||
|
||||
/**
|
||||
* Updates this HMAC with a message.
|
||||
*
|
||||
* @param {WordArray|string} messageUpdate The message to append.
|
||||
*
|
||||
* @return {HMAC} This HMAC instance.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* hmacHasher.update('message');
|
||||
* hmacHasher.update(wordArray);
|
||||
*/
|
||||
update: function (messageUpdate) {
|
||||
this._hasher.update(messageUpdate);
|
||||
|
||||
// Chainable
|
||||
return this;
|
||||
},
|
||||
|
||||
/**
|
||||
* Finalizes the HMAC computation.
|
||||
* Note that the finalize operation is effectively a destructive, read-once operation.
|
||||
*
|
||||
* @param {WordArray|string} messageUpdate (Optional) A final message update.
|
||||
*
|
||||
* @return {WordArray} The HMAC.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hmac = hmacHasher.finalize();
|
||||
* var hmac = hmacHasher.finalize('message');
|
||||
* var hmac = hmacHasher.finalize(wordArray);
|
||||
*/
|
||||
finalize: function (messageUpdate) {
|
||||
// Shortcut
|
||||
var hasher = this._hasher;
|
||||
|
||||
// Compute HMAC
|
||||
var innerHash = hasher.finalize(messageUpdate);
|
||||
hasher.reset();
|
||||
var hmac = hasher.finalize(this._oKey.clone().concat(innerHash));
|
||||
|
||||
return hmac;
|
||||
}
|
||||
});
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var Base = C_lib.Base;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var C_algo = C.algo;
|
||||
var SHA1 = C_algo.SHA1;
|
||||
var HMAC = C_algo.HMAC;
|
||||
|
||||
/**
|
||||
* Password-Based Key Derivation Function 2 algorithm.
|
||||
*/
|
||||
var PBKDF2 = C_algo.PBKDF2 = Base.extend({
|
||||
/**
|
||||
* Configuration options.
|
||||
*
|
||||
* @property {number} keySize The key size in words to generate. Default: 4 (128 bits)
|
||||
* @property {Hasher} hasher The hasher to use. Default: SHA1
|
||||
* @property {number} iterations The number of iterations to perform. Default: 1
|
||||
*/
|
||||
cfg: Base.extend({
|
||||
keySize: 128/32,
|
||||
hasher: SHA1,
|
||||
iterations: 1
|
||||
}),
|
||||
|
||||
/**
|
||||
* Initializes a newly created key derivation function.
|
||||
*
|
||||
* @param {Object} cfg (Optional) The configuration options to use for the derivation.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var kdf = CryptoJS.algo.PBKDF2.create();
|
||||
* var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8 });
|
||||
* var kdf = CryptoJS.algo.PBKDF2.create({ keySize: 8, iterations: 1000 });
|
||||
*/
|
||||
init: function (cfg) {
|
||||
this.cfg = this.cfg.extend(cfg);
|
||||
},
|
||||
|
||||
/**
|
||||
* Computes the Password-Based Key Derivation Function 2.
|
||||
*
|
||||
* @param {WordArray|string} password The password.
|
||||
* @param {WordArray|string} salt A salt.
|
||||
*
|
||||
* @return {WordArray} The derived key.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var key = kdf.compute(password, salt);
|
||||
*/
|
||||
compute: function (password, salt) {
|
||||
// Shortcut
|
||||
var cfg = this.cfg;
|
||||
|
||||
// Init HMAC
|
||||
var hmac = HMAC.create(cfg.hasher, password);
|
||||
|
||||
// Initial values
|
||||
var derivedKey = WordArray.create();
|
||||
var blockIndex = WordArray.create([0x00000001]);
|
||||
|
||||
// Shortcuts
|
||||
var derivedKeyWords = derivedKey.words;
|
||||
var blockIndexWords = blockIndex.words;
|
||||
var keySize = cfg.keySize;
|
||||
var iterations = cfg.iterations;
|
||||
|
||||
// Generate key
|
||||
while (derivedKeyWords.length < keySize) {
|
||||
var block = hmac.update(salt).finalize(blockIndex);
|
||||
hmac.reset();
|
||||
|
||||
// Shortcuts
|
||||
var blockWords = block.words;
|
||||
var blockWordsLength = blockWords.length;
|
||||
|
||||
// Iterations
|
||||
var intermediate = block;
|
||||
for (var i = 1; i < iterations; i++) {
|
||||
intermediate = hmac.finalize(intermediate);
|
||||
hmac.reset();
|
||||
|
||||
// Shortcut
|
||||
var intermediateWords = intermediate.words;
|
||||
|
||||
// XOR intermediate with block
|
||||
for (var j = 0; j < blockWordsLength; j++) {
|
||||
blockWords[j] ^= intermediateWords[j];
|
||||
}
|
||||
}
|
||||
|
||||
derivedKey.concat(block);
|
||||
blockIndexWords[0]++;
|
||||
}
|
||||
derivedKey.sigBytes = keySize * 4;
|
||||
|
||||
return derivedKey;
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Computes the Password-Based Key Derivation Function 2.
|
||||
*
|
||||
* @param {WordArray|string} password The password.
|
||||
* @param {WordArray|string} salt A salt.
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this computation.
|
||||
*
|
||||
* @return {WordArray} The derived key.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var key = CryptoJS.PBKDF2(password, salt);
|
||||
* var key = CryptoJS.PBKDF2(password, salt, { keySize: 8 });
|
||||
* var key = CryptoJS.PBKDF2(password, salt, { keySize: 8, iterations: 1000 });
|
||||
*/
|
||||
C.PBKDF2 = function (password, salt, cfg) {
|
||||
return PBKDF2.create(cfg).compute(password, salt);
|
||||
};
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Cipher core components.
|
||||
*/
|
||||
CryptoJS.lib.Cipher || (function (undefined) {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var Base = C_lib.Base;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var BufferedBlockAlgorithm = C_lib.BufferedBlockAlgorithm;
|
||||
var C_enc = C.enc;
|
||||
var Utf8 = C_enc.Utf8;
|
||||
var Base64 = C_enc.Base64;
|
||||
var C_algo = C.algo;
|
||||
var EvpKDF = C_algo.EvpKDF;
|
||||
|
||||
/**
|
||||
* Abstract base cipher template.
|
||||
*
|
||||
* @property {number} keySize This cipher's key size. Default: 4 (128 bits)
|
||||
* @property {number} ivSize This cipher's IV size. Default: 4 (128 bits)
|
||||
* @property {number} _ENC_XFORM_MODE A constant representing encryption mode.
|
||||
* @property {number} _DEC_XFORM_MODE A constant representing decryption mode.
|
||||
*/
|
||||
var Cipher = C_lib.Cipher = BufferedBlockAlgorithm.extend({
|
||||
/**
|
||||
* Configuration options.
|
||||
*
|
||||
* @property {WordArray} iv The IV to use for this operation.
|
||||
*/
|
||||
cfg: Base.extend(),
|
||||
|
||||
/**
|
||||
* Creates this cipher in encryption mode.
|
||||
*
|
||||
* @param {WordArray} key The key.
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
||||
*
|
||||
* @return {Cipher} A cipher instance.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var cipher = CryptoJS.algo.AES.createEncryptor(keyWordArray, { iv: ivWordArray });
|
||||
*/
|
||||
createEncryptor: function (key, cfg) {
|
||||
return this.create(this._ENC_XFORM_MODE, key, cfg);
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates this cipher in decryption mode.
|
||||
*
|
||||
* @param {WordArray} key The key.
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
||||
*
|
||||
* @return {Cipher} A cipher instance.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var cipher = CryptoJS.algo.AES.createDecryptor(keyWordArray, { iv: ivWordArray });
|
||||
*/
|
||||
createDecryptor: function (key, cfg) {
|
||||
return this.create(this._DEC_XFORM_MODE, key, cfg);
|
||||
},
|
||||
|
||||
/**
|
||||
* Initializes a newly created cipher.
|
||||
*
|
||||
* @param {number} xformMode Either the encryption or decryption transormation mode constant.
|
||||
* @param {WordArray} key The key.
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var cipher = CryptoJS.algo.AES.create(CryptoJS.algo.AES._ENC_XFORM_MODE, keyWordArray, { iv: ivWordArray });
|
||||
*/
|
||||
init: function (xformMode, key, cfg) {
|
||||
// Apply config defaults
|
||||
this.cfg = this.cfg.extend(cfg);
|
||||
|
||||
// Store transform mode and key
|
||||
this._xformMode = xformMode;
|
||||
this._key = key;
|
||||
|
||||
// Set initial values
|
||||
this.reset();
|
||||
},
|
||||
|
||||
/**
|
||||
* Resets this cipher to its initial state.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* cipher.reset();
|
||||
*/
|
||||
reset: function () {
|
||||
// Reset data buffer
|
||||
BufferedBlockAlgorithm.reset.call(this);
|
||||
|
||||
// Perform concrete-cipher logic
|
||||
this._doReset();
|
||||
},
|
||||
|
||||
/**
|
||||
* Adds data to be encrypted or decrypted.
|
||||
*
|
||||
* @param {WordArray|string} dataUpdate The data to encrypt or decrypt.
|
||||
*
|
||||
* @return {WordArray} The data after processing.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var encrypted = cipher.process('data');
|
||||
* var encrypted = cipher.process(wordArray);
|
||||
*/
|
||||
process: function (dataUpdate) {
|
||||
// Append
|
||||
this._append(dataUpdate);
|
||||
|
||||
// Process available blocks
|
||||
return this._process();
|
||||
},
|
||||
|
||||
/**
|
||||
* Finalizes the encryption or decryption process.
|
||||
* Note that the finalize operation is effectively a destructive, read-once operation.
|
||||
*
|
||||
* @param {WordArray|string} dataUpdate The final data to encrypt or decrypt.
|
||||
*
|
||||
* @return {WordArray} The data after final processing.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var encrypted = cipher.finalize();
|
||||
* var encrypted = cipher.finalize('data');
|
||||
* var encrypted = cipher.finalize(wordArray);
|
||||
*/
|
||||
finalize: function (dataUpdate) {
|
||||
// Final data update
|
||||
if (dataUpdate) {
|
||||
this._append(dataUpdate);
|
||||
}
|
||||
|
||||
// Perform concrete-cipher logic
|
||||
var finalProcessedData = this._doFinalize();
|
||||
|
||||
return finalProcessedData;
|
||||
},
|
||||
|
||||
keySize: 128/32,
|
||||
|
||||
ivSize: 128/32,
|
||||
|
||||
_ENC_XFORM_MODE: 1,
|
||||
|
||||
_DEC_XFORM_MODE: 2,
|
||||
|
||||
/**
|
||||
* Creates shortcut functions to a cipher's object interface.
|
||||
*
|
||||
* @param {Cipher} cipher The cipher to create a helper for.
|
||||
*
|
||||
* @return {Object} An object with encrypt and decrypt shortcut functions.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var AES = CryptoJS.lib.Cipher._createHelper(CryptoJS.algo.AES);
|
||||
*/
|
||||
_createHelper: (function () {
|
||||
function selectCipherStrategy(key) {
|
||||
if (typeof key == 'string') {
|
||||
return PasswordBasedCipher;
|
||||
} else {
|
||||
return SerializableCipher;
|
||||
}
|
||||
}
|
||||
|
||||
return function (cipher) {
|
||||
return {
|
||||
encrypt: function (message, key, cfg) {
|
||||
return selectCipherStrategy(key).encrypt(cipher, message, key, cfg);
|
||||
},
|
||||
|
||||
decrypt: function (ciphertext, key, cfg) {
|
||||
return selectCipherStrategy(key).decrypt(cipher, ciphertext, key, cfg);
|
||||
}
|
||||
};
|
||||
};
|
||||
}())
|
||||
});
|
||||
|
||||
/**
|
||||
* Abstract base stream cipher template.
|
||||
*
|
||||
* @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 1 (32 bits)
|
||||
*/
|
||||
var StreamCipher = C_lib.StreamCipher = Cipher.extend({
|
||||
_doFinalize: function () {
|
||||
// Process partial blocks
|
||||
var finalProcessedBlocks = this._process(!!'flush');
|
||||
|
||||
return finalProcessedBlocks;
|
||||
},
|
||||
|
||||
blockSize: 1
|
||||
});
|
||||
|
||||
/**
|
||||
* Mode namespace.
|
||||
*/
|
||||
var C_mode = C.mode = {};
|
||||
|
||||
/**
|
||||
* Abstract base block cipher mode template.
|
||||
*/
|
||||
var BlockCipherMode = C_lib.BlockCipherMode = Base.extend({
|
||||
/**
|
||||
* Creates this mode for encryption.
|
||||
*
|
||||
* @param {Cipher} cipher A block cipher instance.
|
||||
* @param {Array} iv The IV words.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var mode = CryptoJS.mode.CBC.createEncryptor(cipher, iv.words);
|
||||
*/
|
||||
createEncryptor: function (cipher, iv) {
|
||||
return this.Encryptor.create(cipher, iv);
|
||||
},
|
||||
|
||||
/**
|
||||
* Creates this mode for decryption.
|
||||
*
|
||||
* @param {Cipher} cipher A block cipher instance.
|
||||
* @param {Array} iv The IV words.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var mode = CryptoJS.mode.CBC.createDecryptor(cipher, iv.words);
|
||||
*/
|
||||
createDecryptor: function (cipher, iv) {
|
||||
return this.Decryptor.create(cipher, iv);
|
||||
},
|
||||
|
||||
/**
|
||||
* Initializes a newly created mode.
|
||||
*
|
||||
* @param {Cipher} cipher A block cipher instance.
|
||||
* @param {Array} iv The IV words.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var mode = CryptoJS.mode.CBC.Encryptor.create(cipher, iv.words);
|
||||
*/
|
||||
init: function (cipher, iv) {
|
||||
this._cipher = cipher;
|
||||
this._iv = iv;
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Cipher Block Chaining mode.
|
||||
*/
|
||||
var CBC = C_mode.CBC = (function () {
|
||||
/**
|
||||
* Abstract base CBC mode.
|
||||
*/
|
||||
var CBC = BlockCipherMode.extend();
|
||||
|
||||
/**
|
||||
* CBC encryptor.
|
||||
*/
|
||||
CBC.Encryptor = CBC.extend({
|
||||
/**
|
||||
* Processes the data block at offset.
|
||||
*
|
||||
* @param {Array} words The data words to operate on.
|
||||
* @param {number} offset The offset where the block starts.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* mode.processBlock(data.words, offset);
|
||||
*/
|
||||
processBlock: function (words, offset) {
|
||||
// Shortcuts
|
||||
var cipher = this._cipher;
|
||||
var blockSize = cipher.blockSize;
|
||||
|
||||
// XOR and encrypt
|
||||
xorBlock.call(this, words, offset, blockSize);
|
||||
cipher.encryptBlock(words, offset);
|
||||
|
||||
// Remember this block to use with next block
|
||||
this._prevBlock = words.slice(offset, offset + blockSize);
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* CBC decryptor.
|
||||
*/
|
||||
CBC.Decryptor = CBC.extend({
|
||||
/**
|
||||
* Processes the data block at offset.
|
||||
*
|
||||
* @param {Array} words The data words to operate on.
|
||||
* @param {number} offset The offset where the block starts.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* mode.processBlock(data.words, offset);
|
||||
*/
|
||||
processBlock: function (words, offset) {
|
||||
// Shortcuts
|
||||
var cipher = this._cipher;
|
||||
var blockSize = cipher.blockSize;
|
||||
|
||||
// Remember this block to use with next block
|
||||
var thisBlock = words.slice(offset, offset + blockSize);
|
||||
|
||||
// Decrypt and XOR
|
||||
cipher.decryptBlock(words, offset);
|
||||
xorBlock.call(this, words, offset, blockSize);
|
||||
|
||||
// This block becomes the previous block
|
||||
this._prevBlock = thisBlock;
|
||||
}
|
||||
});
|
||||
|
||||
function xorBlock(words, offset, blockSize) {
|
||||
var block;
|
||||
|
||||
// Shortcut
|
||||
var iv = this._iv;
|
||||
|
||||
// Choose mixing block
|
||||
if (iv) {
|
||||
block = iv;
|
||||
|
||||
// Remove IV for subsequent blocks
|
||||
this._iv = undefined;
|
||||
} else {
|
||||
block = this._prevBlock;
|
||||
}
|
||||
|
||||
// XOR blocks
|
||||
for (var i = 0; i < blockSize; i++) {
|
||||
words[offset + i] ^= block[i];
|
||||
}
|
||||
}
|
||||
|
||||
return CBC;
|
||||
}());
|
||||
|
||||
/**
|
||||
* Padding namespace.
|
||||
*/
|
||||
var C_pad = C.pad = {};
|
||||
|
||||
/**
|
||||
* PKCS #5/7 padding strategy.
|
||||
*/
|
||||
var Pkcs7 = C_pad.Pkcs7 = {
|
||||
/**
|
||||
* Pads data using the algorithm defined in PKCS #5/7.
|
||||
*
|
||||
* @param {WordArray} data The data to pad.
|
||||
* @param {number} blockSize The multiple that the data should be padded to.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* CryptoJS.pad.Pkcs7.pad(wordArray, 4);
|
||||
*/
|
||||
pad: function (data, blockSize) {
|
||||
// Shortcut
|
||||
var blockSizeBytes = blockSize * 4;
|
||||
|
||||
// Count padding bytes
|
||||
var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes;
|
||||
|
||||
// Create padding word
|
||||
var paddingWord = (nPaddingBytes << 24) | (nPaddingBytes << 16) | (nPaddingBytes << 8) | nPaddingBytes;
|
||||
|
||||
// Create padding
|
||||
var paddingWords = [];
|
||||
for (var i = 0; i < nPaddingBytes; i += 4) {
|
||||
paddingWords.push(paddingWord);
|
||||
}
|
||||
var padding = WordArray.create(paddingWords, nPaddingBytes);
|
||||
|
||||
// Add padding
|
||||
data.concat(padding);
|
||||
},
|
||||
|
||||
/**
|
||||
* Unpads data that had been padded using the algorithm defined in PKCS #5/7.
|
||||
*
|
||||
* @param {WordArray} data The data to unpad.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* CryptoJS.pad.Pkcs7.unpad(wordArray);
|
||||
*/
|
||||
unpad: function (data) {
|
||||
// Get number of padding bytes from last byte
|
||||
var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff;
|
||||
|
||||
// Remove padding
|
||||
data.sigBytes -= nPaddingBytes;
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* Abstract base block cipher template.
|
||||
*
|
||||
* @property {number} blockSize The number of 32-bit words this cipher operates on. Default: 4 (128 bits)
|
||||
*/
|
||||
var BlockCipher = C_lib.BlockCipher = Cipher.extend({
|
||||
/**
|
||||
* Configuration options.
|
||||
*
|
||||
* @property {Mode} mode The block mode to use. Default: CBC
|
||||
* @property {Padding} padding The padding strategy to use. Default: Pkcs7
|
||||
*/
|
||||
cfg: Cipher.cfg.extend({
|
||||
mode: CBC,
|
||||
padding: Pkcs7
|
||||
}),
|
||||
|
||||
reset: function () {
|
||||
var modeCreator;
|
||||
|
||||
// Reset cipher
|
||||
Cipher.reset.call(this);
|
||||
|
||||
// Shortcuts
|
||||
var cfg = this.cfg;
|
||||
var iv = cfg.iv;
|
||||
var mode = cfg.mode;
|
||||
|
||||
// Reset block mode
|
||||
if (this._xformMode == this._ENC_XFORM_MODE) {
|
||||
modeCreator = mode.createEncryptor;
|
||||
} else /* if (this._xformMode == this._DEC_XFORM_MODE) */ {
|
||||
modeCreator = mode.createDecryptor;
|
||||
// Keep at least one block in the buffer for unpadding
|
||||
this._minBufferSize = 1;
|
||||
}
|
||||
|
||||
if (this._mode && this._mode.__creator == modeCreator) {
|
||||
this._mode.init(this, iv && iv.words);
|
||||
} else {
|
||||
this._mode = modeCreator.call(mode, this, iv && iv.words);
|
||||
this._mode.__creator = modeCreator;
|
||||
}
|
||||
},
|
||||
|
||||
_doProcessBlock: function (words, offset) {
|
||||
this._mode.processBlock(words, offset);
|
||||
},
|
||||
|
||||
_doFinalize: function () {
|
||||
var finalProcessedBlocks;
|
||||
|
||||
// Shortcut
|
||||
var padding = this.cfg.padding;
|
||||
|
||||
// Finalize
|
||||
if (this._xformMode == this._ENC_XFORM_MODE) {
|
||||
// Pad data
|
||||
padding.pad(this._data, this.blockSize);
|
||||
|
||||
// Process final blocks
|
||||
finalProcessedBlocks = this._process(!!'flush');
|
||||
} else /* if (this._xformMode == this._DEC_XFORM_MODE) */ {
|
||||
// Process final blocks
|
||||
finalProcessedBlocks = this._process(!!'flush');
|
||||
|
||||
// Unpad data
|
||||
padding.unpad(finalProcessedBlocks);
|
||||
}
|
||||
|
||||
return finalProcessedBlocks;
|
||||
},
|
||||
|
||||
blockSize: 128/32
|
||||
});
|
||||
|
||||
/**
|
||||
* A collection of cipher parameters.
|
||||
*
|
||||
* @property {WordArray} ciphertext The raw ciphertext.
|
||||
* @property {WordArray} key The key to this ciphertext.
|
||||
* @property {WordArray} iv The IV used in the ciphering operation.
|
||||
* @property {WordArray} salt The salt used with a key derivation function.
|
||||
* @property {Cipher} algorithm The cipher algorithm.
|
||||
* @property {Mode} mode The block mode used in the ciphering operation.
|
||||
* @property {Padding} padding The padding scheme used in the ciphering operation.
|
||||
* @property {number} blockSize The block size of the cipher.
|
||||
* @property {Format} formatter The default formatting strategy to convert this cipher params object to a string.
|
||||
*/
|
||||
var CipherParams = C_lib.CipherParams = Base.extend({
|
||||
/**
|
||||
* Initializes a newly created cipher params object.
|
||||
*
|
||||
* @param {Object} cipherParams An object with any of the possible cipher parameters.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var cipherParams = CryptoJS.lib.CipherParams.create({
|
||||
* ciphertext: ciphertextWordArray,
|
||||
* key: keyWordArray,
|
||||
* iv: ivWordArray,
|
||||
* salt: saltWordArray,
|
||||
* algorithm: CryptoJS.algo.AES,
|
||||
* mode: CryptoJS.mode.CBC,
|
||||
* padding: CryptoJS.pad.PKCS7,
|
||||
* blockSize: 4,
|
||||
* formatter: CryptoJS.format.OpenSSL
|
||||
* });
|
||||
*/
|
||||
init: function (cipherParams) {
|
||||
this.mixIn(cipherParams);
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts this cipher params object to a string.
|
||||
*
|
||||
* @param {Format} formatter (Optional) The formatting strategy to use.
|
||||
*
|
||||
* @return {string} The stringified cipher params.
|
||||
*
|
||||
* @throws Error If neither the formatter nor the default formatter is set.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var string = cipherParams + '';
|
||||
* var string = cipherParams.toString();
|
||||
* var string = cipherParams.toString(CryptoJS.format.OpenSSL);
|
||||
*/
|
||||
toString: function (formatter) {
|
||||
return (formatter || this.formatter).stringify(this);
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Format namespace.
|
||||
*/
|
||||
var C_format = C.format = {};
|
||||
|
||||
/**
|
||||
* OpenSSL formatting strategy.
|
||||
*/
|
||||
var OpenSSLFormatter = C_format.OpenSSL = {
|
||||
/**
|
||||
* Converts a cipher params object to an OpenSSL-compatible string.
|
||||
*
|
||||
* @param {CipherParams} cipherParams The cipher params object.
|
||||
*
|
||||
* @return {string} The OpenSSL-compatible string.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var openSSLString = CryptoJS.format.OpenSSL.stringify(cipherParams);
|
||||
*/
|
||||
stringify: function (cipherParams) {
|
||||
var wordArray;
|
||||
|
||||
// Shortcuts
|
||||
var ciphertext = cipherParams.ciphertext;
|
||||
var salt = cipherParams.salt;
|
||||
|
||||
// Format
|
||||
if (salt) {
|
||||
wordArray = WordArray.create([0x53616c74, 0x65645f5f]).concat(salt).concat(ciphertext);
|
||||
} else {
|
||||
wordArray = ciphertext;
|
||||
}
|
||||
|
||||
return wordArray.toString(Base64);
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts an OpenSSL-compatible string to a cipher params object.
|
||||
*
|
||||
* @param {string} openSSLStr The OpenSSL-compatible string.
|
||||
*
|
||||
* @return {CipherParams} The cipher params object.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var cipherParams = CryptoJS.format.OpenSSL.parse(openSSLString);
|
||||
*/
|
||||
parse: function (openSSLStr) {
|
||||
var salt;
|
||||
|
||||
// Parse base64
|
||||
var ciphertext = Base64.parse(openSSLStr);
|
||||
|
||||
// Shortcut
|
||||
var ciphertextWords = ciphertext.words;
|
||||
|
||||
// Test for salt
|
||||
if (ciphertextWords[0] == 0x53616c74 && ciphertextWords[1] == 0x65645f5f) {
|
||||
// Extract salt
|
||||
salt = WordArray.create(ciphertextWords.slice(2, 4));
|
||||
|
||||
// Remove salt from ciphertext
|
||||
ciphertextWords.splice(0, 4);
|
||||
ciphertext.sigBytes -= 16;
|
||||
}
|
||||
|
||||
return CipherParams.create({ ciphertext: ciphertext, salt: salt });
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* A cipher wrapper that returns ciphertext as a serializable cipher params object.
|
||||
*/
|
||||
var SerializableCipher = C_lib.SerializableCipher = Base.extend({
|
||||
/**
|
||||
* Configuration options.
|
||||
*
|
||||
* @property {Formatter} format The formatting strategy to convert cipher param objects to and from a string. Default: OpenSSL
|
||||
*/
|
||||
cfg: Base.extend({
|
||||
format: OpenSSLFormatter
|
||||
}),
|
||||
|
||||
/**
|
||||
* Encrypts a message.
|
||||
*
|
||||
* @param {Cipher} cipher The cipher algorithm to use.
|
||||
* @param {WordArray|string} message The message to encrypt.
|
||||
* @param {WordArray} key The key.
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
||||
*
|
||||
* @return {CipherParams} A cipher params object.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key);
|
||||
* var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv });
|
||||
* var ciphertextParams = CryptoJS.lib.SerializableCipher.encrypt(CryptoJS.algo.AES, message, key, { iv: iv, format: CryptoJS.format.OpenSSL });
|
||||
*/
|
||||
encrypt: function (cipher, message, key, cfg) {
|
||||
// Apply config defaults
|
||||
cfg = this.cfg.extend(cfg);
|
||||
|
||||
// Encrypt
|
||||
var encryptor = cipher.createEncryptor(key, cfg);
|
||||
var ciphertext = encryptor.finalize(message);
|
||||
|
||||
// Shortcut
|
||||
var cipherCfg = encryptor.cfg;
|
||||
|
||||
// Create and return serializable cipher params
|
||||
return CipherParams.create({
|
||||
ciphertext: ciphertext,
|
||||
key: key,
|
||||
iv: cipherCfg.iv,
|
||||
algorithm: cipher,
|
||||
mode: cipherCfg.mode,
|
||||
padding: cipherCfg.padding,
|
||||
blockSize: cipher.blockSize,
|
||||
formatter: cfg.format
|
||||
});
|
||||
},
|
||||
|
||||
/**
|
||||
* Decrypts serialized ciphertext.
|
||||
*
|
||||
* @param {Cipher} cipher The cipher algorithm to use.
|
||||
* @param {CipherParams|string} ciphertext The ciphertext to decrypt.
|
||||
* @param {WordArray} key The key.
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
||||
*
|
||||
* @return {WordArray} The plaintext.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, key, { iv: iv, format: CryptoJS.format.OpenSSL });
|
||||
* var plaintext = CryptoJS.lib.SerializableCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, key, { iv: iv, format: CryptoJS.format.OpenSSL });
|
||||
*/
|
||||
decrypt: function (cipher, ciphertext, key, cfg) {
|
||||
// Apply config defaults
|
||||
cfg = this.cfg.extend(cfg);
|
||||
|
||||
// Convert string to CipherParams
|
||||
ciphertext = this._parse(ciphertext, cfg.format);
|
||||
|
||||
// Decrypt
|
||||
var plaintext = cipher.createDecryptor(key, cfg).finalize(ciphertext.ciphertext);
|
||||
|
||||
return plaintext;
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts serialized ciphertext to CipherParams,
|
||||
* else assumed CipherParams already and returns ciphertext unchanged.
|
||||
*
|
||||
* @param {CipherParams|string} ciphertext The ciphertext.
|
||||
* @param {Formatter} format The formatting strategy to use to parse serialized ciphertext.
|
||||
*
|
||||
* @return {CipherParams} The unserialized ciphertext.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertextParams = CryptoJS.lib.SerializableCipher._parse(ciphertextStringOrParams, format);
|
||||
*/
|
||||
_parse: function (ciphertext, format) {
|
||||
if (typeof ciphertext == 'string') {
|
||||
return format.parse(ciphertext, this);
|
||||
} else {
|
||||
return ciphertext;
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Key derivation function namespace.
|
||||
*/
|
||||
var C_kdf = C.kdf = {};
|
||||
|
||||
/**
|
||||
* OpenSSL key derivation function.
|
||||
*/
|
||||
var OpenSSLKdf = C_kdf.OpenSSL = {
|
||||
/**
|
||||
* Derives a key and IV from a password.
|
||||
*
|
||||
* @param {string} password The password to derive from.
|
||||
* @param {number} keySize The size in words of the key to generate.
|
||||
* @param {number} ivSize The size in words of the IV to generate.
|
||||
* @param {WordArray|string} salt (Optional) A 64-bit salt to use. If omitted, a salt will be generated randomly.
|
||||
*
|
||||
* @return {CipherParams} A cipher params object with the key, IV, and salt.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32);
|
||||
* var derivedParams = CryptoJS.kdf.OpenSSL.execute('Password', 256/32, 128/32, 'saltsalt');
|
||||
*/
|
||||
execute: function (password, keySize, ivSize, salt) {
|
||||
// Generate random salt
|
||||
if (!salt) {
|
||||
salt = WordArray.random(64/8);
|
||||
}
|
||||
|
||||
// Derive key and IV
|
||||
var key = EvpKDF.create({ keySize: keySize + ivSize }).compute(password, salt);
|
||||
|
||||
// Separate key and IV
|
||||
var iv = WordArray.create(key.words.slice(keySize), ivSize * 4);
|
||||
key.sigBytes = keySize * 4;
|
||||
|
||||
// Return params
|
||||
return CipherParams.create({ key: key, iv: iv, salt: salt });
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* A serializable cipher wrapper that derives the key from a password,
|
||||
* and returns ciphertext as a serializable cipher params object.
|
||||
*/
|
||||
var PasswordBasedCipher = C_lib.PasswordBasedCipher = SerializableCipher.extend({
|
||||
/**
|
||||
* Configuration options.
|
||||
*
|
||||
* @property {KDF} kdf The key derivation function to use to generate a key and IV from a password. Default: OpenSSL
|
||||
*/
|
||||
cfg: SerializableCipher.cfg.extend({
|
||||
kdf: OpenSSLKdf
|
||||
}),
|
||||
|
||||
/**
|
||||
* Encrypts a message using a password.
|
||||
*
|
||||
* @param {Cipher} cipher The cipher algorithm to use.
|
||||
* @param {WordArray|string} message The message to encrypt.
|
||||
* @param {string} password The password.
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
||||
*
|
||||
* @return {CipherParams} A cipher params object.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password');
|
||||
* var ciphertextParams = CryptoJS.lib.PasswordBasedCipher.encrypt(CryptoJS.algo.AES, message, 'password', { format: CryptoJS.format.OpenSSL });
|
||||
*/
|
||||
encrypt: function (cipher, message, password, cfg) {
|
||||
// Apply config defaults
|
||||
cfg = this.cfg.extend(cfg);
|
||||
|
||||
// Derive key and other params
|
||||
var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize);
|
||||
|
||||
// Add IV to config
|
||||
cfg.iv = derivedParams.iv;
|
||||
|
||||
// Encrypt
|
||||
var ciphertext = SerializableCipher.encrypt.call(this, cipher, message, derivedParams.key, cfg);
|
||||
|
||||
// Mix in derived params
|
||||
ciphertext.mixIn(derivedParams);
|
||||
|
||||
return ciphertext;
|
||||
},
|
||||
|
||||
/**
|
||||
* Decrypts serialized ciphertext using a password.
|
||||
*
|
||||
* @param {Cipher} cipher The cipher algorithm to use.
|
||||
* @param {CipherParams|string} ciphertext The ciphertext to decrypt.
|
||||
* @param {string} password The password.
|
||||
* @param {Object} cfg (Optional) The configuration options to use for this operation.
|
||||
*
|
||||
* @return {WordArray} The plaintext.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, formattedCiphertext, 'password', { format: CryptoJS.format.OpenSSL });
|
||||
* var plaintext = CryptoJS.lib.PasswordBasedCipher.decrypt(CryptoJS.algo.AES, ciphertextParams, 'password', { format: CryptoJS.format.OpenSSL });
|
||||
*/
|
||||
decrypt: function (cipher, ciphertext, password, cfg) {
|
||||
// Apply config defaults
|
||||
cfg = this.cfg.extend(cfg);
|
||||
|
||||
// Convert string to CipherParams
|
||||
ciphertext = this._parse(ciphertext, cfg.format);
|
||||
|
||||
// Derive key and other params
|
||||
var derivedParams = cfg.kdf.execute(password, cipher.keySize, cipher.ivSize, ciphertext.salt);
|
||||
|
||||
// Add IV to config
|
||||
cfg.iv = derivedParams.iv;
|
||||
|
||||
// Decrypt
|
||||
var plaintext = SerializableCipher.decrypt.call(this, cipher, ciphertext, derivedParams.key, cfg);
|
||||
|
||||
return plaintext;
|
||||
}
|
||||
});
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Cipher Feedback block mode.
|
||||
*/
|
||||
CryptoJS.mode.CFB = (function () {
|
||||
var CFB = CryptoJS.lib.BlockCipherMode.extend();
|
||||
|
||||
CFB.Encryptor = CFB.extend({
|
||||
processBlock: function (words, offset) {
|
||||
// Shortcuts
|
||||
var cipher = this._cipher;
|
||||
var blockSize = cipher.blockSize;
|
||||
|
||||
generateKeystreamAndEncrypt.call(this, words, offset, blockSize, cipher);
|
||||
|
||||
// Remember this block to use with next block
|
||||
this._prevBlock = words.slice(offset, offset + blockSize);
|
||||
}
|
||||
});
|
||||
|
||||
CFB.Decryptor = CFB.extend({
|
||||
processBlock: function (words, offset) {
|
||||
// Shortcuts
|
||||
var cipher = this._cipher;
|
||||
var blockSize = cipher.blockSize;
|
||||
|
||||
// Remember this block to use with next block
|
||||
var thisBlock = words.slice(offset, offset + blockSize);
|
||||
|
||||
generateKeystreamAndEncrypt.call(this, words, offset, blockSize, cipher);
|
||||
|
||||
// This block becomes the previous block
|
||||
this._prevBlock = thisBlock;
|
||||
}
|
||||
});
|
||||
|
||||
function generateKeystreamAndEncrypt(words, offset, blockSize, cipher) {
|
||||
var keystream;
|
||||
|
||||
// Shortcut
|
||||
var iv = this._iv;
|
||||
|
||||
// Generate keystream
|
||||
if (iv) {
|
||||
keystream = iv.slice(0);
|
||||
|
||||
// Remove IV for subsequent blocks
|
||||
this._iv = undefined;
|
||||
} else {
|
||||
keystream = this._prevBlock;
|
||||
}
|
||||
cipher.encryptBlock(keystream, 0);
|
||||
|
||||
// Encrypt
|
||||
for (var i = 0; i < blockSize; i++) {
|
||||
words[offset + i] ^= keystream[i];
|
||||
}
|
||||
}
|
||||
|
||||
return CFB;
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Counter block mode.
|
||||
*/
|
||||
CryptoJS.mode.CTR = (function () {
|
||||
var CTR = CryptoJS.lib.BlockCipherMode.extend();
|
||||
|
||||
var Encryptor = CTR.Encryptor = CTR.extend({
|
||||
processBlock: function (words, offset) {
|
||||
// Shortcuts
|
||||
var cipher = this._cipher
|
||||
var blockSize = cipher.blockSize;
|
||||
var iv = this._iv;
|
||||
var counter = this._counter;
|
||||
|
||||
// Generate keystream
|
||||
if (iv) {
|
||||
counter = this._counter = iv.slice(0);
|
||||
|
||||
// Remove IV for subsequent blocks
|
||||
this._iv = undefined;
|
||||
}
|
||||
var keystream = counter.slice(0);
|
||||
cipher.encryptBlock(keystream, 0);
|
||||
|
||||
// Increment counter
|
||||
counter[blockSize - 1] = (counter[blockSize - 1] + 1) | 0
|
||||
|
||||
// Encrypt
|
||||
for (var i = 0; i < blockSize; i++) {
|
||||
words[offset + i] ^= keystream[i];
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
CTR.Decryptor = Encryptor;
|
||||
|
||||
return CTR;
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/** @preserve
|
||||
* Counter block mode compatible with Dr Brian Gladman fileenc.c
|
||||
* derived from CryptoJS.mode.CTR
|
||||
* Jan Hruby [email protected]
|
||||
*/
|
||||
CryptoJS.mode.CTRGladman = (function () {
|
||||
var CTRGladman = CryptoJS.lib.BlockCipherMode.extend();
|
||||
|
||||
function incWord(word)
|
||||
{
|
||||
if (((word >> 24) & 0xff) === 0xff) { //overflow
|
||||
var b1 = (word >> 16)&0xff;
|
||||
var b2 = (word >> 8)&0xff;
|
||||
var b3 = word & 0xff;
|
||||
|
||||
if (b1 === 0xff) // overflow b1
|
||||
{
|
||||
b1 = 0;
|
||||
if (b2 === 0xff)
|
||||
{
|
||||
b2 = 0;
|
||||
if (b3 === 0xff)
|
||||
{
|
||||
b3 = 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
++b3;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
++b2;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
++b1;
|
||||
}
|
||||
|
||||
word = 0;
|
||||
word += (b1 << 16);
|
||||
word += (b2 << 8);
|
||||
word += b3;
|
||||
}
|
||||
else
|
||||
{
|
||||
word += (0x01 << 24);
|
||||
}
|
||||
return word;
|
||||
}
|
||||
|
||||
function incCounter(counter)
|
||||
{
|
||||
if ((counter[0] = incWord(counter[0])) === 0)
|
||||
{
|
||||
// encr_data in fileenc.c from Dr Brian Gladman's counts only with DWORD j < 8
|
||||
counter[1] = incWord(counter[1]);
|
||||
}
|
||||
return counter;
|
||||
}
|
||||
|
||||
var Encryptor = CTRGladman.Encryptor = CTRGladman.extend({
|
||||
processBlock: function (words, offset) {
|
||||
// Shortcuts
|
||||
var cipher = this._cipher
|
||||
var blockSize = cipher.blockSize;
|
||||
var iv = this._iv;
|
||||
var counter = this._counter;
|
||||
|
||||
// Generate keystream
|
||||
if (iv) {
|
||||
counter = this._counter = iv.slice(0);
|
||||
|
||||
// Remove IV for subsequent blocks
|
||||
this._iv = undefined;
|
||||
}
|
||||
|
||||
incCounter(counter);
|
||||
|
||||
var keystream = counter.slice(0);
|
||||
cipher.encryptBlock(keystream, 0);
|
||||
|
||||
// Encrypt
|
||||
for (var i = 0; i < blockSize; i++) {
|
||||
words[offset + i] ^= keystream[i];
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
CTRGladman.Decryptor = Encryptor;
|
||||
|
||||
return CTRGladman;
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Output Feedback block mode.
|
||||
*/
|
||||
CryptoJS.mode.OFB = (function () {
|
||||
var OFB = CryptoJS.lib.BlockCipherMode.extend();
|
||||
|
||||
var Encryptor = OFB.Encryptor = OFB.extend({
|
||||
processBlock: function (words, offset) {
|
||||
// Shortcuts
|
||||
var cipher = this._cipher
|
||||
var blockSize = cipher.blockSize;
|
||||
var iv = this._iv;
|
||||
var keystream = this._keystream;
|
||||
|
||||
// Generate keystream
|
||||
if (iv) {
|
||||
keystream = this._keystream = iv.slice(0);
|
||||
|
||||
// Remove IV for subsequent blocks
|
||||
this._iv = undefined;
|
||||
}
|
||||
cipher.encryptBlock(keystream, 0);
|
||||
|
||||
// Encrypt
|
||||
for (var i = 0; i < blockSize; i++) {
|
||||
words[offset + i] ^= keystream[i];
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
OFB.Decryptor = Encryptor;
|
||||
|
||||
return OFB;
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Electronic Codebook block mode.
|
||||
*/
|
||||
CryptoJS.mode.ECB = (function () {
|
||||
var ECB = CryptoJS.lib.BlockCipherMode.extend();
|
||||
|
||||
ECB.Encryptor = ECB.extend({
|
||||
processBlock: function (words, offset) {
|
||||
this._cipher.encryptBlock(words, offset);
|
||||
}
|
||||
});
|
||||
|
||||
ECB.Decryptor = ECB.extend({
|
||||
processBlock: function (words, offset) {
|
||||
this._cipher.decryptBlock(words, offset);
|
||||
}
|
||||
});
|
||||
|
||||
return ECB;
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* ANSI X.923 padding strategy.
|
||||
*/
|
||||
CryptoJS.pad.AnsiX923 = {
|
||||
pad: function (data, blockSize) {
|
||||
// Shortcuts
|
||||
var dataSigBytes = data.sigBytes;
|
||||
var blockSizeBytes = blockSize * 4;
|
||||
|
||||
// Count padding bytes
|
||||
var nPaddingBytes = blockSizeBytes - dataSigBytes % blockSizeBytes;
|
||||
|
||||
// Compute last byte position
|
||||
var lastBytePos = dataSigBytes + nPaddingBytes - 1;
|
||||
|
||||
// Pad
|
||||
data.clamp();
|
||||
data.words[lastBytePos >>> 2] |= nPaddingBytes << (24 - (lastBytePos % 4) * 8);
|
||||
data.sigBytes += nPaddingBytes;
|
||||
},
|
||||
|
||||
unpad: function (data) {
|
||||
// Get number of padding bytes from last byte
|
||||
var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff;
|
||||
|
||||
// Remove padding
|
||||
data.sigBytes -= nPaddingBytes;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* ISO 10126 padding strategy.
|
||||
*/
|
||||
CryptoJS.pad.Iso10126 = {
|
||||
pad: function (data, blockSize) {
|
||||
// Shortcut
|
||||
var blockSizeBytes = blockSize * 4;
|
||||
|
||||
// Count padding bytes
|
||||
var nPaddingBytes = blockSizeBytes - data.sigBytes % blockSizeBytes;
|
||||
|
||||
// Pad
|
||||
data.concat(CryptoJS.lib.WordArray.random(nPaddingBytes - 1)).
|
||||
concat(CryptoJS.lib.WordArray.create([nPaddingBytes << 24], 1));
|
||||
},
|
||||
|
||||
unpad: function (data) {
|
||||
// Get number of padding bytes from last byte
|
||||
var nPaddingBytes = data.words[(data.sigBytes - 1) >>> 2] & 0xff;
|
||||
|
||||
// Remove padding
|
||||
data.sigBytes -= nPaddingBytes;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* ISO/IEC 9797-1 Padding Method 2.
|
||||
*/
|
||||
CryptoJS.pad.Iso97971 = {
|
||||
pad: function (data, blockSize) {
|
||||
// Add 0x80 byte
|
||||
data.concat(CryptoJS.lib.WordArray.create([0x80000000], 1));
|
||||
|
||||
// Zero pad the rest
|
||||
CryptoJS.pad.ZeroPadding.pad(data, blockSize);
|
||||
},
|
||||
|
||||
unpad: function (data) {
|
||||
// Remove zero padding
|
||||
CryptoJS.pad.ZeroPadding.unpad(data);
|
||||
|
||||
// Remove one more byte -- the 0x80 byte
|
||||
data.sigBytes--;
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Zero padding strategy.
|
||||
*/
|
||||
CryptoJS.pad.ZeroPadding = {
|
||||
pad: function (data, blockSize) {
|
||||
// Shortcut
|
||||
var blockSizeBytes = blockSize * 4;
|
||||
|
||||
// Pad
|
||||
data.clamp();
|
||||
data.sigBytes += blockSizeBytes - ((data.sigBytes % blockSizeBytes) || blockSizeBytes);
|
||||
},
|
||||
|
||||
unpad: function (data) {
|
||||
// Shortcut
|
||||
var dataWords = data.words;
|
||||
|
||||
// Unpad
|
||||
var i = data.sigBytes - 1;
|
||||
for (var i = data.sigBytes - 1; i >= 0; i--) {
|
||||
if (((dataWords[i >>> 2] >>> (24 - (i % 4) * 8)) & 0xff)) {
|
||||
data.sigBytes = i + 1;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* A noop padding strategy.
|
||||
*/
|
||||
CryptoJS.pad.NoPadding = {
|
||||
pad: function () {
|
||||
},
|
||||
|
||||
unpad: function () {
|
||||
}
|
||||
};
|
||||
|
||||
|
||||
(function (undefined) {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var CipherParams = C_lib.CipherParams;
|
||||
var C_enc = C.enc;
|
||||
var Hex = C_enc.Hex;
|
||||
var C_format = C.format;
|
||||
|
||||
var HexFormatter = C_format.Hex = {
|
||||
/**
|
||||
* Converts the ciphertext of a cipher params object to a hexadecimally encoded string.
|
||||
*
|
||||
* @param {CipherParams} cipherParams The cipher params object.
|
||||
*
|
||||
* @return {string} The hexadecimally encoded string.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var hexString = CryptoJS.format.Hex.stringify(cipherParams);
|
||||
*/
|
||||
stringify: function (cipherParams) {
|
||||
return cipherParams.ciphertext.toString(Hex);
|
||||
},
|
||||
|
||||
/**
|
||||
* Converts a hexadecimally encoded ciphertext string to a cipher params object.
|
||||
*
|
||||
* @param {string} input The hexadecimally encoded string.
|
||||
*
|
||||
* @return {CipherParams} The cipher params object.
|
||||
*
|
||||
* @static
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var cipherParams = CryptoJS.format.Hex.parse(hexString);
|
||||
*/
|
||||
parse: function (input) {
|
||||
var ciphertext = Hex.parse(input);
|
||||
return CipherParams.create({ ciphertext: ciphertext });
|
||||
}
|
||||
};
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var BlockCipher = C_lib.BlockCipher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Lookup tables
|
||||
var SBOX = [];
|
||||
var INV_SBOX = [];
|
||||
var SUB_MIX_0 = [];
|
||||
var SUB_MIX_1 = [];
|
||||
var SUB_MIX_2 = [];
|
||||
var SUB_MIX_3 = [];
|
||||
var INV_SUB_MIX_0 = [];
|
||||
var INV_SUB_MIX_1 = [];
|
||||
var INV_SUB_MIX_2 = [];
|
||||
var INV_SUB_MIX_3 = [];
|
||||
|
||||
// Compute lookup tables
|
||||
(function () {
|
||||
// Compute double table
|
||||
var d = [];
|
||||
for (var i = 0; i < 256; i++) {
|
||||
if (i < 128) {
|
||||
d[i] = i << 1;
|
||||
} else {
|
||||
d[i] = (i << 1) ^ 0x11b;
|
||||
}
|
||||
}
|
||||
|
||||
// Walk GF(2^8)
|
||||
var x = 0;
|
||||
var xi = 0;
|
||||
for (var i = 0; i < 256; i++) {
|
||||
// Compute sbox
|
||||
var sx = xi ^ (xi << 1) ^ (xi << 2) ^ (xi << 3) ^ (xi << 4);
|
||||
sx = (sx >>> 8) ^ (sx & 0xff) ^ 0x63;
|
||||
SBOX[x] = sx;
|
||||
INV_SBOX[sx] = x;
|
||||
|
||||
// Compute multiplication
|
||||
var x2 = d[x];
|
||||
var x4 = d[x2];
|
||||
var x8 = d[x4];
|
||||
|
||||
// Compute sub bytes, mix columns tables
|
||||
var t = (d[sx] * 0x101) ^ (sx * 0x1010100);
|
||||
SUB_MIX_0[x] = (t << 24) | (t >>> 8);
|
||||
SUB_MIX_1[x] = (t << 16) | (t >>> 16);
|
||||
SUB_MIX_2[x] = (t << 8) | (t >>> 24);
|
||||
SUB_MIX_3[x] = t;
|
||||
|
||||
// Compute inv sub bytes, inv mix columns tables
|
||||
var t = (x8 * 0x1010101) ^ (x4 * 0x10001) ^ (x2 * 0x101) ^ (x * 0x1010100);
|
||||
INV_SUB_MIX_0[sx] = (t << 24) | (t >>> 8);
|
||||
INV_SUB_MIX_1[sx] = (t << 16) | (t >>> 16);
|
||||
INV_SUB_MIX_2[sx] = (t << 8) | (t >>> 24);
|
||||
INV_SUB_MIX_3[sx] = t;
|
||||
|
||||
// Compute next counter
|
||||
if (!x) {
|
||||
x = xi = 1;
|
||||
} else {
|
||||
x = x2 ^ d[d[d[x8 ^ x2]]];
|
||||
xi ^= d[d[xi]];
|
||||
}
|
||||
}
|
||||
}());
|
||||
|
||||
// Precomputed Rcon lookup
|
||||
var RCON = [0x00, 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80, 0x1b, 0x36];
|
||||
|
||||
/**
|
||||
* AES block cipher algorithm.
|
||||
*/
|
||||
var AES = C_algo.AES = BlockCipher.extend({
|
||||
_doReset: function () {
|
||||
var t;
|
||||
|
||||
// Skip reset of nRounds has been set before and key did not change
|
||||
if (this._nRounds && this._keyPriorReset === this._key) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Shortcuts
|
||||
var key = this._keyPriorReset = this._key;
|
||||
var keyWords = key.words;
|
||||
var keySize = key.sigBytes / 4;
|
||||
|
||||
// Compute number of rounds
|
||||
var nRounds = this._nRounds = keySize + 6;
|
||||
|
||||
// Compute number of key schedule rows
|
||||
var ksRows = (nRounds + 1) * 4;
|
||||
|
||||
// Compute key schedule
|
||||
var keySchedule = this._keySchedule = [];
|
||||
for (var ksRow = 0; ksRow < ksRows; ksRow++) {
|
||||
if (ksRow < keySize) {
|
||||
keySchedule[ksRow] = keyWords[ksRow];
|
||||
} else {
|
||||
t = keySchedule[ksRow - 1];
|
||||
|
||||
if (!(ksRow % keySize)) {
|
||||
// Rot word
|
||||
t = (t << 8) | (t >>> 24);
|
||||
|
||||
// Sub word
|
||||
t = (SBOX[t >>> 24] << 24) | (SBOX[(t >>> 16) & 0xff] << 16) | (SBOX[(t >>> 8) & 0xff] << 8) | SBOX[t & 0xff];
|
||||
|
||||
// Mix Rcon
|
||||
t ^= RCON[(ksRow / keySize) | 0] << 24;
|
||||
} else if (keySize > 6 && ksRow % keySize == 4) {
|
||||
// Sub word
|
||||
t = (SBOX[t >>> 24] << 24) | (SBOX[(t >>> 16) & 0xff] << 16) | (SBOX[(t >>> 8) & 0xff] << 8) | SBOX[t & 0xff];
|
||||
}
|
||||
|
||||
keySchedule[ksRow] = keySchedule[ksRow - keySize] ^ t;
|
||||
}
|
||||
}
|
||||
|
||||
// Compute inv key schedule
|
||||
var invKeySchedule = this._invKeySchedule = [];
|
||||
for (var invKsRow = 0; invKsRow < ksRows; invKsRow++) {
|
||||
var ksRow = ksRows - invKsRow;
|
||||
|
||||
if (invKsRow % 4) {
|
||||
var t = keySchedule[ksRow];
|
||||
} else {
|
||||
var t = keySchedule[ksRow - 4];
|
||||
}
|
||||
|
||||
if (invKsRow < 4 || ksRow <= 4) {
|
||||
invKeySchedule[invKsRow] = t;
|
||||
} else {
|
||||
invKeySchedule[invKsRow] = INV_SUB_MIX_0[SBOX[t >>> 24]] ^ INV_SUB_MIX_1[SBOX[(t >>> 16) & 0xff]] ^
|
||||
INV_SUB_MIX_2[SBOX[(t >>> 8) & 0xff]] ^ INV_SUB_MIX_3[SBOX[t & 0xff]];
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
encryptBlock: function (M, offset) {
|
||||
this._doCryptBlock(M, offset, this._keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX);
|
||||
},
|
||||
|
||||
decryptBlock: function (M, offset) {
|
||||
// Swap 2nd and 4th rows
|
||||
var t = M[offset + 1];
|
||||
M[offset + 1] = M[offset + 3];
|
||||
M[offset + 3] = t;
|
||||
|
||||
this._doCryptBlock(M, offset, this._invKeySchedule, INV_SUB_MIX_0, INV_SUB_MIX_1, INV_SUB_MIX_2, INV_SUB_MIX_3, INV_SBOX);
|
||||
|
||||
// Inv swap 2nd and 4th rows
|
||||
var t = M[offset + 1];
|
||||
M[offset + 1] = M[offset + 3];
|
||||
M[offset + 3] = t;
|
||||
},
|
||||
|
||||
_doCryptBlock: function (M, offset, keySchedule, SUB_MIX_0, SUB_MIX_1, SUB_MIX_2, SUB_MIX_3, SBOX) {
|
||||
// Shortcut
|
||||
var nRounds = this._nRounds;
|
||||
|
||||
// Get input, add round key
|
||||
var s0 = M[offset] ^ keySchedule[0];
|
||||
var s1 = M[offset + 1] ^ keySchedule[1];
|
||||
var s2 = M[offset + 2] ^ keySchedule[2];
|
||||
var s3 = M[offset + 3] ^ keySchedule[3];
|
||||
|
||||
// Key schedule row counter
|
||||
var ksRow = 4;
|
||||
|
||||
// Rounds
|
||||
for (var round = 1; round < nRounds; round++) {
|
||||
// Shift rows, sub bytes, mix columns, add round key
|
||||
var t0 = SUB_MIX_0[s0 >>> 24] ^ SUB_MIX_1[(s1 >>> 16) & 0xff] ^ SUB_MIX_2[(s2 >>> 8) & 0xff] ^ SUB_MIX_3[s3 & 0xff] ^ keySchedule[ksRow++];
|
||||
var t1 = SUB_MIX_0[s1 >>> 24] ^ SUB_MIX_1[(s2 >>> 16) & 0xff] ^ SUB_MIX_2[(s3 >>> 8) & 0xff] ^ SUB_MIX_3[s0 & 0xff] ^ keySchedule[ksRow++];
|
||||
var t2 = SUB_MIX_0[s2 >>> 24] ^ SUB_MIX_1[(s3 >>> 16) & 0xff] ^ SUB_MIX_2[(s0 >>> 8) & 0xff] ^ SUB_MIX_3[s1 & 0xff] ^ keySchedule[ksRow++];
|
||||
var t3 = SUB_MIX_0[s3 >>> 24] ^ SUB_MIX_1[(s0 >>> 16) & 0xff] ^ SUB_MIX_2[(s1 >>> 8) & 0xff] ^ SUB_MIX_3[s2 & 0xff] ^ keySchedule[ksRow++];
|
||||
|
||||
// Update state
|
||||
s0 = t0;
|
||||
s1 = t1;
|
||||
s2 = t2;
|
||||
s3 = t3;
|
||||
}
|
||||
|
||||
// Shift rows, sub bytes, add round key
|
||||
var t0 = ((SBOX[s0 >>> 24] << 24) | (SBOX[(s1 >>> 16) & 0xff] << 16) | (SBOX[(s2 >>> 8) & 0xff] << 8) | SBOX[s3 & 0xff]) ^ keySchedule[ksRow++];
|
||||
var t1 = ((SBOX[s1 >>> 24] << 24) | (SBOX[(s2 >>> 16) & 0xff] << 16) | (SBOX[(s3 >>> 8) & 0xff] << 8) | SBOX[s0 & 0xff]) ^ keySchedule[ksRow++];
|
||||
var t2 = ((SBOX[s2 >>> 24] << 24) | (SBOX[(s3 >>> 16) & 0xff] << 16) | (SBOX[(s0 >>> 8) & 0xff] << 8) | SBOX[s1 & 0xff]) ^ keySchedule[ksRow++];
|
||||
var t3 = ((SBOX[s3 >>> 24] << 24) | (SBOX[(s0 >>> 16) & 0xff] << 16) | (SBOX[(s1 >>> 8) & 0xff] << 8) | SBOX[s2 & 0xff]) ^ keySchedule[ksRow++];
|
||||
|
||||
// Set output
|
||||
M[offset] = t0;
|
||||
M[offset + 1] = t1;
|
||||
M[offset + 2] = t2;
|
||||
M[offset + 3] = t3;
|
||||
},
|
||||
|
||||
keySize: 256/32
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut functions to the cipher's object interface.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertext = CryptoJS.AES.encrypt(message, key, cfg);
|
||||
* var plaintext = CryptoJS.AES.decrypt(ciphertext, key, cfg);
|
||||
*/
|
||||
C.AES = BlockCipher._createHelper(AES);
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var WordArray = C_lib.WordArray;
|
||||
var BlockCipher = C_lib.BlockCipher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Permuted Choice 1 constants
|
||||
var PC1 = [
|
||||
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
|
||||
];
|
||||
|
||||
// Permuted Choice 2 constants
|
||||
var PC2 = [
|
||||
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
|
||||
];
|
||||
|
||||
// Cumulative bit shift constants
|
||||
var BIT_SHIFTS = [1, 2, 4, 6, 8, 10, 12, 14, 15, 17, 19, 21, 23, 25, 27, 28];
|
||||
|
||||
// SBOXes and round permutation constants
|
||||
var SBOX_P = [
|
||||
{
|
||||
0x0: 0x808200,
|
||||
0x10000000: 0x8000,
|
||||
0x20000000: 0x808002,
|
||||
0x30000000: 0x2,
|
||||
0x40000000: 0x200,
|
||||
0x50000000: 0x808202,
|
||||
0x60000000: 0x800202,
|
||||
0x70000000: 0x800000,
|
||||
0x80000000: 0x202,
|
||||
0x90000000: 0x800200,
|
||||
0xa0000000: 0x8200,
|
||||
0xb0000000: 0x808000,
|
||||
0xc0000000: 0x8002,
|
||||
0xd0000000: 0x800002,
|
||||
0xe0000000: 0x0,
|
||||
0xf0000000: 0x8202,
|
||||
0x8000000: 0x0,
|
||||
0x18000000: 0x808202,
|
||||
0x28000000: 0x8202,
|
||||
0x38000000: 0x8000,
|
||||
0x48000000: 0x808200,
|
||||
0x58000000: 0x200,
|
||||
0x68000000: 0x808002,
|
||||
0x78000000: 0x2,
|
||||
0x88000000: 0x800200,
|
||||
0x98000000: 0x8200,
|
||||
0xa8000000: 0x808000,
|
||||
0xb8000000: 0x800202,
|
||||
0xc8000000: 0x800002,
|
||||
0xd8000000: 0x8002,
|
||||
0xe8000000: 0x202,
|
||||
0xf8000000: 0x800000,
|
||||
0x1: 0x8000,
|
||||
0x10000001: 0x2,
|
||||
0x20000001: 0x808200,
|
||||
0x30000001: 0x800000,
|
||||
0x40000001: 0x808002,
|
||||
0x50000001: 0x8200,
|
||||
0x60000001: 0x200,
|
||||
0x70000001: 0x800202,
|
||||
0x80000001: 0x808202,
|
||||
0x90000001: 0x808000,
|
||||
0xa0000001: 0x800002,
|
||||
0xb0000001: 0x8202,
|
||||
0xc0000001: 0x202,
|
||||
0xd0000001: 0x800200,
|
||||
0xe0000001: 0x8002,
|
||||
0xf0000001: 0x0,
|
||||
0x8000001: 0x808202,
|
||||
0x18000001: 0x808000,
|
||||
0x28000001: 0x800000,
|
||||
0x38000001: 0x200,
|
||||
0x48000001: 0x8000,
|
||||
0x58000001: 0x800002,
|
||||
0x68000001: 0x2,
|
||||
0x78000001: 0x8202,
|
||||
0x88000001: 0x8002,
|
||||
0x98000001: 0x800202,
|
||||
0xa8000001: 0x202,
|
||||
0xb8000001: 0x808200,
|
||||
0xc8000001: 0x800200,
|
||||
0xd8000001: 0x0,
|
||||
0xe8000001: 0x8200,
|
||||
0xf8000001: 0x808002
|
||||
},
|
||||
{
|
||||
0x0: 0x40084010,
|
||||
0x1000000: 0x4000,
|
||||
0x2000000: 0x80000,
|
||||
0x3000000: 0x40080010,
|
||||
0x4000000: 0x40000010,
|
||||
0x5000000: 0x40084000,
|
||||
0x6000000: 0x40004000,
|
||||
0x7000000: 0x10,
|
||||
0x8000000: 0x84000,
|
||||
0x9000000: 0x40004010,
|
||||
0xa000000: 0x40000000,
|
||||
0xb000000: 0x84010,
|
||||
0xc000000: 0x80010,
|
||||
0xd000000: 0x0,
|
||||
0xe000000: 0x4010,
|
||||
0xf000000: 0x40080000,
|
||||
0x800000: 0x40004000,
|
||||
0x1800000: 0x84010,
|
||||
0x2800000: 0x10,
|
||||
0x3800000: 0x40004010,
|
||||
0x4800000: 0x40084010,
|
||||
0x5800000: 0x40000000,
|
||||
0x6800000: 0x80000,
|
||||
0x7800000: 0x40080010,
|
||||
0x8800000: 0x80010,
|
||||
0x9800000: 0x0,
|
||||
0xa800000: 0x4000,
|
||||
0xb800000: 0x40080000,
|
||||
0xc800000: 0x40000010,
|
||||
0xd800000: 0x84000,
|
||||
0xe800000: 0x40084000,
|
||||
0xf800000: 0x4010,
|
||||
0x10000000: 0x0,
|
||||
0x11000000: 0x40080010,
|
||||
0x12000000: 0x40004010,
|
||||
0x13000000: 0x40084000,
|
||||
0x14000000: 0x40080000,
|
||||
0x15000000: 0x10,
|
||||
0x16000000: 0x84010,
|
||||
0x17000000: 0x4000,
|
||||
0x18000000: 0x4010,
|
||||
0x19000000: 0x80000,
|
||||
0x1a000000: 0x80010,
|
||||
0x1b000000: 0x40000010,
|
||||
0x1c000000: 0x84000,
|
||||
0x1d000000: 0x40004000,
|
||||
0x1e000000: 0x40000000,
|
||||
0x1f000000: 0x40084010,
|
||||
0x10800000: 0x84010,
|
||||
0x11800000: 0x80000,
|
||||
0x12800000: 0x40080000,
|
||||
0x13800000: 0x4000,
|
||||
0x14800000: 0x40004000,
|
||||
0x15800000: 0x40084010,
|
||||
0x16800000: 0x10,
|
||||
0x17800000: 0x40000000,
|
||||
0x18800000: 0x40084000,
|
||||
0x19800000: 0x40000010,
|
||||
0x1a800000: 0x40004010,
|
||||
0x1b800000: 0x80010,
|
||||
0x1c800000: 0x0,
|
||||
0x1d800000: 0x4010,
|
||||
0x1e800000: 0x40080010,
|
||||
0x1f800000: 0x84000
|
||||
},
|
||||
{
|
||||
0x0: 0x104,
|
||||
0x100000: 0x0,
|
||||
0x200000: 0x4000100,
|
||||
0x300000: 0x10104,
|
||||
0x400000: 0x10004,
|
||||
0x500000: 0x4000004,
|
||||
0x600000: 0x4010104,
|
||||
0x700000: 0x4010000,
|
||||
0x800000: 0x4000000,
|
||||
0x900000: 0x4010100,
|
||||
0xa00000: 0x10100,
|
||||
0xb00000: 0x4010004,
|
||||
0xc00000: 0x4000104,
|
||||
0xd00000: 0x10000,
|
||||
0xe00000: 0x4,
|
||||
0xf00000: 0x100,
|
||||
0x80000: 0x4010100,
|
||||
0x180000: 0x4010004,
|
||||
0x280000: 0x0,
|
||||
0x380000: 0x4000100,
|
||||
0x480000: 0x4000004,
|
||||
0x580000: 0x10000,
|
||||
0x680000: 0x10004,
|
||||
0x780000: 0x104,
|
||||
0x880000: 0x4,
|
||||
0x980000: 0x100,
|
||||
0xa80000: 0x4010000,
|
||||
0xb80000: 0x10104,
|
||||
0xc80000: 0x10100,
|
||||
0xd80000: 0x4000104,
|
||||
0xe80000: 0x4010104,
|
||||
0xf80000: 0x4000000,
|
||||
0x1000000: 0x4010100,
|
||||
0x1100000: 0x10004,
|
||||
0x1200000: 0x10000,
|
||||
0x1300000: 0x4000100,
|
||||
0x1400000: 0x100,
|
||||
0x1500000: 0x4010104,
|
||||
0x1600000: 0x4000004,
|
||||
0x1700000: 0x0,
|
||||
0x1800000: 0x4000104,
|
||||
0x1900000: 0x4000000,
|
||||
0x1a00000: 0x4,
|
||||
0x1b00000: 0x10100,
|
||||
0x1c00000: 0x4010000,
|
||||
0x1d00000: 0x104,
|
||||
0x1e00000: 0x10104,
|
||||
0x1f00000: 0x4010004,
|
||||
0x1080000: 0x4000000,
|
||||
0x1180000: 0x104,
|
||||
0x1280000: 0x4010100,
|
||||
0x1380000: 0x0,
|
||||
0x1480000: 0x10004,
|
||||
0x1580000: 0x4000100,
|
||||
0x1680000: 0x100,
|
||||
0x1780000: 0x4010004,
|
||||
0x1880000: 0x10000,
|
||||
0x1980000: 0x4010104,
|
||||
0x1a80000: 0x10104,
|
||||
0x1b80000: 0x4000004,
|
||||
0x1c80000: 0x4000104,
|
||||
0x1d80000: 0x4010000,
|
||||
0x1e80000: 0x4,
|
||||
0x1f80000: 0x10100
|
||||
},
|
||||
{
|
||||
0x0: 0x80401000,
|
||||
0x10000: 0x80001040,
|
||||
0x20000: 0x401040,
|
||||
0x30000: 0x80400000,
|
||||
0x40000: 0x0,
|
||||
0x50000: 0x401000,
|
||||
0x60000: 0x80000040,
|
||||
0x70000: 0x400040,
|
||||
0x80000: 0x80000000,
|
||||
0x90000: 0x400000,
|
||||
0xa0000: 0x40,
|
||||
0xb0000: 0x80001000,
|
||||
0xc0000: 0x80400040,
|
||||
0xd0000: 0x1040,
|
||||
0xe0000: 0x1000,
|
||||
0xf0000: 0x80401040,
|
||||
0x8000: 0x80001040,
|
||||
0x18000: 0x40,
|
||||
0x28000: 0x80400040,
|
||||
0x38000: 0x80001000,
|
||||
0x48000: 0x401000,
|
||||
0x58000: 0x80401040,
|
||||
0x68000: 0x0,
|
||||
0x78000: 0x80400000,
|
||||
0x88000: 0x1000,
|
||||
0x98000: 0x80401000,
|
||||
0xa8000: 0x400000,
|
||||
0xb8000: 0x1040,
|
||||
0xc8000: 0x80000000,
|
||||
0xd8000: 0x400040,
|
||||
0xe8000: 0x401040,
|
||||
0xf8000: 0x80000040,
|
||||
0x100000: 0x400040,
|
||||
0x110000: 0x401000,
|
||||
0x120000: 0x80000040,
|
||||
0x130000: 0x0,
|
||||
0x140000: 0x1040,
|
||||
0x150000: 0x80400040,
|
||||
0x160000: 0x80401000,
|
||||
0x170000: 0x80001040,
|
||||
0x180000: 0x80401040,
|
||||
0x190000: 0x80000000,
|
||||
0x1a0000: 0x80400000,
|
||||
0x1b0000: 0x401040,
|
||||
0x1c0000: 0x80001000,
|
||||
0x1d0000: 0x400000,
|
||||
0x1e0000: 0x40,
|
||||
0x1f0000: 0x1000,
|
||||
0x108000: 0x80400000,
|
||||
0x118000: 0x80401040,
|
||||
0x128000: 0x0,
|
||||
0x138000: 0x401000,
|
||||
0x148000: 0x400040,
|
||||
0x158000: 0x80000000,
|
||||
0x168000: 0x80001040,
|
||||
0x178000: 0x40,
|
||||
0x188000: 0x80000040,
|
||||
0x198000: 0x1000,
|
||||
0x1a8000: 0x80001000,
|
||||
0x1b8000: 0x80400040,
|
||||
0x1c8000: 0x1040,
|
||||
0x1d8000: 0x80401000,
|
||||
0x1e8000: 0x400000,
|
||||
0x1f8000: 0x401040
|
||||
},
|
||||
{
|
||||
0x0: 0x80,
|
||||
0x1000: 0x1040000,
|
||||
0x2000: 0x40000,
|
||||
0x3000: 0x20000000,
|
||||
0x4000: 0x20040080,
|
||||
0x5000: 0x1000080,
|
||||
0x6000: 0x21000080,
|
||||
0x7000: 0x40080,
|
||||
0x8000: 0x1000000,
|
||||
0x9000: 0x20040000,
|
||||
0xa000: 0x20000080,
|
||||
0xb000: 0x21040080,
|
||||
0xc000: 0x21040000,
|
||||
0xd000: 0x0,
|
||||
0xe000: 0x1040080,
|
||||
0xf000: 0x21000000,
|
||||
0x800: 0x1040080,
|
||||
0x1800: 0x21000080,
|
||||
0x2800: 0x80,
|
||||
0x3800: 0x1040000,
|
||||
0x4800: 0x40000,
|
||||
0x5800: 0x20040080,
|
||||
0x6800: 0x21040000,
|
||||
0x7800: 0x20000000,
|
||||
0x8800: 0x20040000,
|
||||
0x9800: 0x0,
|
||||
0xa800: 0x21040080,
|
||||
0xb800: 0x1000080,
|
||||
0xc800: 0x20000080,
|
||||
0xd800: 0x21000000,
|
||||
0xe800: 0x1000000,
|
||||
0xf800: 0x40080,
|
||||
0x10000: 0x40000,
|
||||
0x11000: 0x80,
|
||||
0x12000: 0x20000000,
|
||||
0x13000: 0x21000080,
|
||||
0x14000: 0x1000080,
|
||||
0x15000: 0x21040000,
|
||||
0x16000: 0x20040080,
|
||||
0x17000: 0x1000000,
|
||||
0x18000: 0x21040080,
|
||||
0x19000: 0x21000000,
|
||||
0x1a000: 0x1040000,
|
||||
0x1b000: 0x20040000,
|
||||
0x1c000: 0x40080,
|
||||
0x1d000: 0x20000080,
|
||||
0x1e000: 0x0,
|
||||
0x1f000: 0x1040080,
|
||||
0x10800: 0x21000080,
|
||||
0x11800: 0x1000000,
|
||||
0x12800: 0x1040000,
|
||||
0x13800: 0x20040080,
|
||||
0x14800: 0x20000000,
|
||||
0x15800: 0x1040080,
|
||||
0x16800: 0x80,
|
||||
0x17800: 0x21040000,
|
||||
0x18800: 0x40080,
|
||||
0x19800: 0x21040080,
|
||||
0x1a800: 0x0,
|
||||
0x1b800: 0x21000000,
|
||||
0x1c800: 0x1000080,
|
||||
0x1d800: 0x40000,
|
||||
0x1e800: 0x20040000,
|
||||
0x1f800: 0x20000080
|
||||
},
|
||||
{
|
||||
0x0: 0x10000008,
|
||||
0x100: 0x2000,
|
||||
0x200: 0x10200000,
|
||||
0x300: 0x10202008,
|
||||
0x400: 0x10002000,
|
||||
0x500: 0x200000,
|
||||
0x600: 0x200008,
|
||||
0x700: 0x10000000,
|
||||
0x800: 0x0,
|
||||
0x900: 0x10002008,
|
||||
0xa00: 0x202000,
|
||||
0xb00: 0x8,
|
||||
0xc00: 0x10200008,
|
||||
0xd00: 0x202008,
|
||||
0xe00: 0x2008,
|
||||
0xf00: 0x10202000,
|
||||
0x80: 0x10200000,
|
||||
0x180: 0x10202008,
|
||||
0x280: 0x8,
|
||||
0x380: 0x200000,
|
||||
0x480: 0x202008,
|
||||
0x580: 0x10000008,
|
||||
0x680: 0x10002000,
|
||||
0x780: 0x2008,
|
||||
0x880: 0x200008,
|
||||
0x980: 0x2000,
|
||||
0xa80: 0x10002008,
|
||||
0xb80: 0x10200008,
|
||||
0xc80: 0x0,
|
||||
0xd80: 0x10202000,
|
||||
0xe80: 0x202000,
|
||||
0xf80: 0x10000000,
|
||||
0x1000: 0x10002000,
|
||||
0x1100: 0x10200008,
|
||||
0x1200: 0x10202008,
|
||||
0x1300: 0x2008,
|
||||
0x1400: 0x200000,
|
||||
0x1500: 0x10000000,
|
||||
0x1600: 0x10000008,
|
||||
0x1700: 0x202000,
|
||||
0x1800: 0x202008,
|
||||
0x1900: 0x0,
|
||||
0x1a00: 0x8,
|
||||
0x1b00: 0x10200000,
|
||||
0x1c00: 0x2000,
|
||||
0x1d00: 0x10002008,
|
||||
0x1e00: 0x10202000,
|
||||
0x1f00: 0x200008,
|
||||
0x1080: 0x8,
|
||||
0x1180: 0x202000,
|
||||
0x1280: 0x200000,
|
||||
0x1380: 0x10000008,
|
||||
0x1480: 0x10002000,
|
||||
0x1580: 0x2008,
|
||||
0x1680: 0x10202008,
|
||||
0x1780: 0x10200000,
|
||||
0x1880: 0x10202000,
|
||||
0x1980: 0x10200008,
|
||||
0x1a80: 0x2000,
|
||||
0x1b80: 0x202008,
|
||||
0x1c80: 0x200008,
|
||||
0x1d80: 0x0,
|
||||
0x1e80: 0x10000000,
|
||||
0x1f80: 0x10002008
|
||||
},
|
||||
{
|
||||
0x0: 0x100000,
|
||||
0x10: 0x2000401,
|
||||
0x20: 0x400,
|
||||
0x30: 0x100401,
|
||||
0x40: 0x2100401,
|
||||
0x50: 0x0,
|
||||
0x60: 0x1,
|
||||
0x70: 0x2100001,
|
||||
0x80: 0x2000400,
|
||||
0x90: 0x100001,
|
||||
0xa0: 0x2000001,
|
||||
0xb0: 0x2100400,
|
||||
0xc0: 0x2100000,
|
||||
0xd0: 0x401,
|
||||
0xe0: 0x100400,
|
||||
0xf0: 0x2000000,
|
||||
0x8: 0x2100001,
|
||||
0x18: 0x0,
|
||||
0x28: 0x2000401,
|
||||
0x38: 0x2100400,
|
||||
0x48: 0x100000,
|
||||
0x58: 0x2000001,
|
||||
0x68: 0x2000000,
|
||||
0x78: 0x401,
|
||||
0x88: 0x100401,
|
||||
0x98: 0x2000400,
|
||||
0xa8: 0x2100000,
|
||||
0xb8: 0x100001,
|
||||
0xc8: 0x400,
|
||||
0xd8: 0x2100401,
|
||||
0xe8: 0x1,
|
||||
0xf8: 0x100400,
|
||||
0x100: 0x2000000,
|
||||
0x110: 0x100000,
|
||||
0x120: 0x2000401,
|
||||
0x130: 0x2100001,
|
||||
0x140: 0x100001,
|
||||
0x150: 0x2000400,
|
||||
0x160: 0x2100400,
|
||||
0x170: 0x100401,
|
||||
0x180: 0x401,
|
||||
0x190: 0x2100401,
|
||||
0x1a0: 0x100400,
|
||||
0x1b0: 0x1,
|
||||
0x1c0: 0x0,
|
||||
0x1d0: 0x2100000,
|
||||
0x1e0: 0x2000001,
|
||||
0x1f0: 0x400,
|
||||
0x108: 0x100400,
|
||||
0x118: 0x2000401,
|
||||
0x128: 0x2100001,
|
||||
0x138: 0x1,
|
||||
0x148: 0x2000000,
|
||||
0x158: 0x100000,
|
||||
0x168: 0x401,
|
||||
0x178: 0x2100400,
|
||||
0x188: 0x2000001,
|
||||
0x198: 0x2100000,
|
||||
0x1a8: 0x0,
|
||||
0x1b8: 0x2100401,
|
||||
0x1c8: 0x100401,
|
||||
0x1d8: 0x400,
|
||||
0x1e8: 0x2000400,
|
||||
0x1f8: 0x100001
|
||||
},
|
||||
{
|
||||
0x0: 0x8000820,
|
||||
0x1: 0x20000,
|
||||
0x2: 0x8000000,
|
||||
0x3: 0x20,
|
||||
0x4: 0x20020,
|
||||
0x5: 0x8020820,
|
||||
0x6: 0x8020800,
|
||||
0x7: 0x800,
|
||||
0x8: 0x8020000,
|
||||
0x9: 0x8000800,
|
||||
0xa: 0x20800,
|
||||
0xb: 0x8020020,
|
||||
0xc: 0x820,
|
||||
0xd: 0x0,
|
||||
0xe: 0x8000020,
|
||||
0xf: 0x20820,
|
||||
0x80000000: 0x800,
|
||||
0x80000001: 0x8020820,
|
||||
0x80000002: 0x8000820,
|
||||
0x80000003: 0x8000000,
|
||||
0x80000004: 0x8020000,
|
||||
0x80000005: 0x20800,
|
||||
0x80000006: 0x20820,
|
||||
0x80000007: 0x20,
|
||||
0x80000008: 0x8000020,
|
||||
0x80000009: 0x820,
|
||||
0x8000000a: 0x20020,
|
||||
0x8000000b: 0x8020800,
|
||||
0x8000000c: 0x0,
|
||||
0x8000000d: 0x8020020,
|
||||
0x8000000e: 0x8000800,
|
||||
0x8000000f: 0x20000,
|
||||
0x10: 0x20820,
|
||||
0x11: 0x8020800,
|
||||
0x12: 0x20,
|
||||
0x13: 0x800,
|
||||
0x14: 0x8000800,
|
||||
0x15: 0x8000020,
|
||||
0x16: 0x8020020,
|
||||
0x17: 0x20000,
|
||||
0x18: 0x0,
|
||||
0x19: 0x20020,
|
||||
0x1a: 0x8020000,
|
||||
0x1b: 0x8000820,
|
||||
0x1c: 0x8020820,
|
||||
0x1d: 0x20800,
|
||||
0x1e: 0x820,
|
||||
0x1f: 0x8000000,
|
||||
0x80000010: 0x20000,
|
||||
0x80000011: 0x800,
|
||||
0x80000012: 0x8020020,
|
||||
0x80000013: 0x20820,
|
||||
0x80000014: 0x20,
|
||||
0x80000015: 0x8020000,
|
||||
0x80000016: 0x8000000,
|
||||
0x80000017: 0x8000820,
|
||||
0x80000018: 0x8020820,
|
||||
0x80000019: 0x8000020,
|
||||
0x8000001a: 0x8000800,
|
||||
0x8000001b: 0x0,
|
||||
0x8000001c: 0x20800,
|
||||
0x8000001d: 0x820,
|
||||
0x8000001e: 0x20020,
|
||||
0x8000001f: 0x8020800
|
||||
}
|
||||
];
|
||||
|
||||
// Masks that select the SBOX input
|
||||
var SBOX_MASK = [
|
||||
0xf8000001, 0x1f800000, 0x01f80000, 0x001f8000,
|
||||
0x0001f800, 0x00001f80, 0x000001f8, 0x8000001f
|
||||
];
|
||||
|
||||
/**
|
||||
* DES block cipher algorithm.
|
||||
*/
|
||||
var DES = C_algo.DES = BlockCipher.extend({
|
||||
_doReset: function () {
|
||||
// Shortcuts
|
||||
var key = this._key;
|
||||
var keyWords = key.words;
|
||||
|
||||
// Select 56 bits according to PC1
|
||||
var keyBits = [];
|
||||
for (var i = 0; i < 56; i++) {
|
||||
var keyBitPos = PC1[i] - 1;
|
||||
keyBits[i] = (keyWords[keyBitPos >>> 5] >>> (31 - keyBitPos % 32)) & 1;
|
||||
}
|
||||
|
||||
// Assemble 16 subkeys
|
||||
var subKeys = this._subKeys = [];
|
||||
for (var nSubKey = 0; nSubKey < 16; nSubKey++) {
|
||||
// Create subkey
|
||||
var subKey = subKeys[nSubKey] = [];
|
||||
|
||||
// Shortcut
|
||||
var bitShift = BIT_SHIFTS[nSubKey];
|
||||
|
||||
// Select 48 bits according to PC2
|
||||
for (var i = 0; i < 24; i++) {
|
||||
// Select from the left 28 key bits
|
||||
subKey[(i / 6) | 0] |= keyBits[((PC2[i] - 1) + bitShift) % 28] << (31 - i % 6);
|
||||
|
||||
// Select from the right 28 key bits
|
||||
subKey[4 + ((i / 6) | 0)] |= keyBits[28 + (((PC2[i + 24] - 1) + bitShift) % 28)] << (31 - i % 6);
|
||||
}
|
||||
|
||||
// Since each subkey is applied to an expanded 32-bit input,
|
||||
// the subkey can be broken into 8 values scaled to 32-bits,
|
||||
// which allows the key to be used without expansion
|
||||
subKey[0] = (subKey[0] << 1) | (subKey[0] >>> 31);
|
||||
for (var i = 1; i < 7; i++) {
|
||||
subKey[i] = subKey[i] >>> ((i - 1) * 4 + 3);
|
||||
}
|
||||
subKey[7] = (subKey[7] << 5) | (subKey[7] >>> 27);
|
||||
}
|
||||
|
||||
// Compute inverse subkeys
|
||||
var invSubKeys = this._invSubKeys = [];
|
||||
for (var i = 0; i < 16; i++) {
|
||||
invSubKeys[i] = subKeys[15 - i];
|
||||
}
|
||||
},
|
||||
|
||||
encryptBlock: function (M, offset) {
|
||||
this._doCryptBlock(M, offset, this._subKeys);
|
||||
},
|
||||
|
||||
decryptBlock: function (M, offset) {
|
||||
this._doCryptBlock(M, offset, this._invSubKeys);
|
||||
},
|
||||
|
||||
_doCryptBlock: function (M, offset, subKeys) {
|
||||
// Get input
|
||||
this._lBlock = M[offset];
|
||||
this._rBlock = M[offset + 1];
|
||||
|
||||
// Initial permutation
|
||||
exchangeLR.call(this, 4, 0x0f0f0f0f);
|
||||
exchangeLR.call(this, 16, 0x0000ffff);
|
||||
exchangeRL.call(this, 2, 0x33333333);
|
||||
exchangeRL.call(this, 8, 0x00ff00ff);
|
||||
exchangeLR.call(this, 1, 0x55555555);
|
||||
|
||||
// Rounds
|
||||
for (var round = 0; round < 16; round++) {
|
||||
// Shortcuts
|
||||
var subKey = subKeys[round];
|
||||
var lBlock = this._lBlock;
|
||||
var rBlock = this._rBlock;
|
||||
|
||||
// Feistel function
|
||||
var f = 0;
|
||||
for (var i = 0; i < 8; i++) {
|
||||
f |= SBOX_P[i][((rBlock ^ subKey[i]) & SBOX_MASK[i]) >>> 0];
|
||||
}
|
||||
this._lBlock = rBlock;
|
||||
this._rBlock = lBlock ^ f;
|
||||
}
|
||||
|
||||
// Undo swap from last round
|
||||
var t = this._lBlock;
|
||||
this._lBlock = this._rBlock;
|
||||
this._rBlock = t;
|
||||
|
||||
// Final permutation
|
||||
exchangeLR.call(this, 1, 0x55555555);
|
||||
exchangeRL.call(this, 8, 0x00ff00ff);
|
||||
exchangeRL.call(this, 2, 0x33333333);
|
||||
exchangeLR.call(this, 16, 0x0000ffff);
|
||||
exchangeLR.call(this, 4, 0x0f0f0f0f);
|
||||
|
||||
// Set output
|
||||
M[offset] = this._lBlock;
|
||||
M[offset + 1] = this._rBlock;
|
||||
},
|
||||
|
||||
keySize: 64/32,
|
||||
|
||||
ivSize: 64/32,
|
||||
|
||||
blockSize: 64/32
|
||||
});
|
||||
|
||||
// Swap bits across the left and right words
|
||||
function exchangeLR(offset, mask) {
|
||||
var t = ((this._lBlock >>> offset) ^ this._rBlock) & mask;
|
||||
this._rBlock ^= t;
|
||||
this._lBlock ^= t << offset;
|
||||
}
|
||||
|
||||
function exchangeRL(offset, mask) {
|
||||
var t = ((this._rBlock >>> offset) ^ this._lBlock) & mask;
|
||||
this._lBlock ^= t;
|
||||
this._rBlock ^= t << offset;
|
||||
}
|
||||
|
||||
/**
|
||||
* Shortcut functions to the cipher's object interface.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertext = CryptoJS.DES.encrypt(message, key, cfg);
|
||||
* var plaintext = CryptoJS.DES.decrypt(ciphertext, key, cfg);
|
||||
*/
|
||||
C.DES = BlockCipher._createHelper(DES);
|
||||
|
||||
/**
|
||||
* Triple-DES block cipher algorithm.
|
||||
*/
|
||||
var TripleDES = C_algo.TripleDES = BlockCipher.extend({
|
||||
_doReset: function () {
|
||||
// Shortcuts
|
||||
var key = this._key;
|
||||
var keyWords = key.words;
|
||||
// Make sure the key length is valid (64, 128 or >= 192 bit)
|
||||
if (keyWords.length !== 2 && keyWords.length !== 4 && keyWords.length < 6) {
|
||||
throw new Error('Invalid key length - 3DES requires the key length to be 64, 128, 192 or >192.');
|
||||
}
|
||||
|
||||
// Extend the key according to the keying options defined in 3DES standard
|
||||
var key1 = keyWords.slice(0, 2);
|
||||
var key2 = keyWords.length < 4 ? keyWords.slice(0, 2) : keyWords.slice(2, 4);
|
||||
var key3 = keyWords.length < 6 ? keyWords.slice(0, 2) : keyWords.slice(4, 6);
|
||||
|
||||
// Create DES instances
|
||||
this._des1 = DES.createEncryptor(WordArray.create(key1));
|
||||
this._des2 = DES.createEncryptor(WordArray.create(key2));
|
||||
this._des3 = DES.createEncryptor(WordArray.create(key3));
|
||||
},
|
||||
|
||||
encryptBlock: function (M, offset) {
|
||||
this._des1.encryptBlock(M, offset);
|
||||
this._des2.decryptBlock(M, offset);
|
||||
this._des3.encryptBlock(M, offset);
|
||||
},
|
||||
|
||||
decryptBlock: function (M, offset) {
|
||||
this._des3.decryptBlock(M, offset);
|
||||
this._des2.encryptBlock(M, offset);
|
||||
this._des1.decryptBlock(M, offset);
|
||||
},
|
||||
|
||||
keySize: 192/32,
|
||||
|
||||
ivSize: 64/32,
|
||||
|
||||
blockSize: 64/32
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut functions to the cipher's object interface.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertext = CryptoJS.TripleDES.encrypt(message, key, cfg);
|
||||
* var plaintext = CryptoJS.TripleDES.decrypt(ciphertext, key, cfg);
|
||||
*/
|
||||
C.TripleDES = BlockCipher._createHelper(TripleDES);
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var StreamCipher = C_lib.StreamCipher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
/**
|
||||
* RC4 stream cipher algorithm.
|
||||
*/
|
||||
var RC4 = C_algo.RC4 = StreamCipher.extend({
|
||||
_doReset: function () {
|
||||
// Shortcuts
|
||||
var key = this._key;
|
||||
var keyWords = key.words;
|
||||
var keySigBytes = key.sigBytes;
|
||||
|
||||
// Init sbox
|
||||
var S = this._S = [];
|
||||
for (var i = 0; i < 256; i++) {
|
||||
S[i] = i;
|
||||
}
|
||||
|
||||
// Key setup
|
||||
for (var i = 0, j = 0; i < 256; i++) {
|
||||
var keyByteIndex = i % keySigBytes;
|
||||
var keyByte = (keyWords[keyByteIndex >>> 2] >>> (24 - (keyByteIndex % 4) * 8)) & 0xff;
|
||||
|
||||
j = (j + S[i] + keyByte) % 256;
|
||||
|
||||
// Swap
|
||||
var t = S[i];
|
||||
S[i] = S[j];
|
||||
S[j] = t;
|
||||
}
|
||||
|
||||
// Counters
|
||||
this._i = this._j = 0;
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
M[offset] ^= generateKeystreamWord.call(this);
|
||||
},
|
||||
|
||||
keySize: 256/32,
|
||||
|
||||
ivSize: 0
|
||||
});
|
||||
|
||||
function generateKeystreamWord() {
|
||||
// Shortcuts
|
||||
var S = this._S;
|
||||
var i = this._i;
|
||||
var j = this._j;
|
||||
|
||||
// Generate keystream word
|
||||
var keystreamWord = 0;
|
||||
for (var n = 0; n < 4; n++) {
|
||||
i = (i + 1) % 256;
|
||||
j = (j + S[i]) % 256;
|
||||
|
||||
// Swap
|
||||
var t = S[i];
|
||||
S[i] = S[j];
|
||||
S[j] = t;
|
||||
|
||||
keystreamWord |= S[(S[i] + S[j]) % 256] << (24 - n * 8);
|
||||
}
|
||||
|
||||
// Update counters
|
||||
this._i = i;
|
||||
this._j = j;
|
||||
|
||||
return keystreamWord;
|
||||
}
|
||||
|
||||
/**
|
||||
* Shortcut functions to the cipher's object interface.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertext = CryptoJS.RC4.encrypt(message, key, cfg);
|
||||
* var plaintext = CryptoJS.RC4.decrypt(ciphertext, key, cfg);
|
||||
*/
|
||||
C.RC4 = StreamCipher._createHelper(RC4);
|
||||
|
||||
/**
|
||||
* Modified RC4 stream cipher algorithm.
|
||||
*/
|
||||
var RC4Drop = C_algo.RC4Drop = RC4.extend({
|
||||
/**
|
||||
* Configuration options.
|
||||
*
|
||||
* @property {number} drop The number of keystream words to drop. Default 192
|
||||
*/
|
||||
cfg: RC4.cfg.extend({
|
||||
drop: 192
|
||||
}),
|
||||
|
||||
_doReset: function () {
|
||||
RC4._doReset.call(this);
|
||||
|
||||
// Drop
|
||||
for (var i = this.cfg.drop; i > 0; i--) {
|
||||
generateKeystreamWord.call(this);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
/**
|
||||
* Shortcut functions to the cipher's object interface.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertext = CryptoJS.RC4Drop.encrypt(message, key, cfg);
|
||||
* var plaintext = CryptoJS.RC4Drop.decrypt(ciphertext, key, cfg);
|
||||
*/
|
||||
C.RC4Drop = StreamCipher._createHelper(RC4Drop);
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var StreamCipher = C_lib.StreamCipher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Reusable objects
|
||||
var S = [];
|
||||
var C_ = [];
|
||||
var G = [];
|
||||
|
||||
/**
|
||||
* Rabbit stream cipher algorithm
|
||||
*/
|
||||
var Rabbit = C_algo.Rabbit = StreamCipher.extend({
|
||||
_doReset: function () {
|
||||
// Shortcuts
|
||||
var K = this._key.words;
|
||||
var iv = this.cfg.iv;
|
||||
|
||||
// Swap endian
|
||||
for (var i = 0; i < 4; i++) {
|
||||
K[i] = (((K[i] << 8) | (K[i] >>> 24)) & 0x00ff00ff) |
|
||||
(((K[i] << 24) | (K[i] >>> 8)) & 0xff00ff00);
|
||||
}
|
||||
|
||||
// Generate initial state values
|
||||
var X = this._X = [
|
||||
K[0], (K[3] << 16) | (K[2] >>> 16),
|
||||
K[1], (K[0] << 16) | (K[3] >>> 16),
|
||||
K[2], (K[1] << 16) | (K[0] >>> 16),
|
||||
K[3], (K[2] << 16) | (K[1] >>> 16)
|
||||
];
|
||||
|
||||
// Generate initial counter values
|
||||
var C = this._C = [
|
||||
(K[2] << 16) | (K[2] >>> 16), (K[0] & 0xffff0000) | (K[1] & 0x0000ffff),
|
||||
(K[3] << 16) | (K[3] >>> 16), (K[1] & 0xffff0000) | (K[2] & 0x0000ffff),
|
||||
(K[0] << 16) | (K[0] >>> 16), (K[2] & 0xffff0000) | (K[3] & 0x0000ffff),
|
||||
(K[1] << 16) | (K[1] >>> 16), (K[3] & 0xffff0000) | (K[0] & 0x0000ffff)
|
||||
];
|
||||
|
||||
// Carry bit
|
||||
this._b = 0;
|
||||
|
||||
// Iterate the system four times
|
||||
for (var i = 0; i < 4; i++) {
|
||||
nextState.call(this);
|
||||
}
|
||||
|
||||
// Modify the counters
|
||||
for (var i = 0; i < 8; i++) {
|
||||
C[i] ^= X[(i + 4) & 7];
|
||||
}
|
||||
|
||||
// IV setup
|
||||
if (iv) {
|
||||
// Shortcuts
|
||||
var IV = iv.words;
|
||||
var IV_0 = IV[0];
|
||||
var IV_1 = IV[1];
|
||||
|
||||
// Generate four subvectors
|
||||
var i0 = (((IV_0 << 8) | (IV_0 >>> 24)) & 0x00ff00ff) | (((IV_0 << 24) | (IV_0 >>> 8)) & 0xff00ff00);
|
||||
var i2 = (((IV_1 << 8) | (IV_1 >>> 24)) & 0x00ff00ff) | (((IV_1 << 24) | (IV_1 >>> 8)) & 0xff00ff00);
|
||||
var i1 = (i0 >>> 16) | (i2 & 0xffff0000);
|
||||
var i3 = (i2 << 16) | (i0 & 0x0000ffff);
|
||||
|
||||
// Modify counter values
|
||||
C[0] ^= i0;
|
||||
C[1] ^= i1;
|
||||
C[2] ^= i2;
|
||||
C[3] ^= i3;
|
||||
C[4] ^= i0;
|
||||
C[5] ^= i1;
|
||||
C[6] ^= i2;
|
||||
C[7] ^= i3;
|
||||
|
||||
// Iterate the system four times
|
||||
for (var i = 0; i < 4; i++) {
|
||||
nextState.call(this);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
// Shortcut
|
||||
var X = this._X;
|
||||
|
||||
// Iterate the system
|
||||
nextState.call(this);
|
||||
|
||||
// Generate four keystream words
|
||||
S[0] = X[0] ^ (X[5] >>> 16) ^ (X[3] << 16);
|
||||
S[1] = X[2] ^ (X[7] >>> 16) ^ (X[5] << 16);
|
||||
S[2] = X[4] ^ (X[1] >>> 16) ^ (X[7] << 16);
|
||||
S[3] = X[6] ^ (X[3] >>> 16) ^ (X[1] << 16);
|
||||
|
||||
for (var i = 0; i < 4; i++) {
|
||||
// Swap endian
|
||||
S[i] = (((S[i] << 8) | (S[i] >>> 24)) & 0x00ff00ff) |
|
||||
(((S[i] << 24) | (S[i] >>> 8)) & 0xff00ff00);
|
||||
|
||||
// Encrypt
|
||||
M[offset + i] ^= S[i];
|
||||
}
|
||||
},
|
||||
|
||||
blockSize: 128/32,
|
||||
|
||||
ivSize: 64/32
|
||||
});
|
||||
|
||||
function nextState() {
|
||||
// Shortcuts
|
||||
var X = this._X;
|
||||
var C = this._C;
|
||||
|
||||
// Save old counter values
|
||||
for (var i = 0; i < 8; i++) {
|
||||
C_[i] = C[i];
|
||||
}
|
||||
|
||||
// Calculate new counter values
|
||||
C[0] = (C[0] + 0x4d34d34d + this._b) | 0;
|
||||
C[1] = (C[1] + 0xd34d34d3 + ((C[0] >>> 0) < (C_[0] >>> 0) ? 1 : 0)) | 0;
|
||||
C[2] = (C[2] + 0x34d34d34 + ((C[1] >>> 0) < (C_[1] >>> 0) ? 1 : 0)) | 0;
|
||||
C[3] = (C[3] + 0x4d34d34d + ((C[2] >>> 0) < (C_[2] >>> 0) ? 1 : 0)) | 0;
|
||||
C[4] = (C[4] + 0xd34d34d3 + ((C[3] >>> 0) < (C_[3] >>> 0) ? 1 : 0)) | 0;
|
||||
C[5] = (C[5] + 0x34d34d34 + ((C[4] >>> 0) < (C_[4] >>> 0) ? 1 : 0)) | 0;
|
||||
C[6] = (C[6] + 0x4d34d34d + ((C[5] >>> 0) < (C_[5] >>> 0) ? 1 : 0)) | 0;
|
||||
C[7] = (C[7] + 0xd34d34d3 + ((C[6] >>> 0) < (C_[6] >>> 0) ? 1 : 0)) | 0;
|
||||
this._b = (C[7] >>> 0) < (C_[7] >>> 0) ? 1 : 0;
|
||||
|
||||
// Calculate the g-values
|
||||
for (var i = 0; i < 8; i++) {
|
||||
var gx = X[i] + C[i];
|
||||
|
||||
// Construct high and low argument for squaring
|
||||
var ga = gx & 0xffff;
|
||||
var gb = gx >>> 16;
|
||||
|
||||
// Calculate high and low result of squaring
|
||||
var gh = ((((ga * ga) >>> 17) + ga * gb) >>> 15) + gb * gb;
|
||||
var gl = (((gx & 0xffff0000) * gx) | 0) + (((gx & 0x0000ffff) * gx) | 0);
|
||||
|
||||
// High XOR low
|
||||
G[i] = gh ^ gl;
|
||||
}
|
||||
|
||||
// Calculate new state values
|
||||
X[0] = (G[0] + ((G[7] << 16) | (G[7] >>> 16)) + ((G[6] << 16) | (G[6] >>> 16))) | 0;
|
||||
X[1] = (G[1] + ((G[0] << 8) | (G[0] >>> 24)) + G[7]) | 0;
|
||||
X[2] = (G[2] + ((G[1] << 16) | (G[1] >>> 16)) + ((G[0] << 16) | (G[0] >>> 16))) | 0;
|
||||
X[3] = (G[3] + ((G[2] << 8) | (G[2] >>> 24)) + G[1]) | 0;
|
||||
X[4] = (G[4] + ((G[3] << 16) | (G[3] >>> 16)) + ((G[2] << 16) | (G[2] >>> 16))) | 0;
|
||||
X[5] = (G[5] + ((G[4] << 8) | (G[4] >>> 24)) + G[3]) | 0;
|
||||
X[6] = (G[6] + ((G[5] << 16) | (G[5] >>> 16)) + ((G[4] << 16) | (G[4] >>> 16))) | 0;
|
||||
X[7] = (G[7] + ((G[6] << 8) | (G[6] >>> 24)) + G[5]) | 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Shortcut functions to the cipher's object interface.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertext = CryptoJS.Rabbit.encrypt(message, key, cfg);
|
||||
* var plaintext = CryptoJS.Rabbit.decrypt(ciphertext, key, cfg);
|
||||
*/
|
||||
C.Rabbit = StreamCipher._createHelper(Rabbit);
|
||||
}());
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
(function () {
|
||||
// Shortcuts
|
||||
var C = CryptoJS;
|
||||
var C_lib = C.lib;
|
||||
var StreamCipher = C_lib.StreamCipher;
|
||||
var C_algo = C.algo;
|
||||
|
||||
// Reusable objects
|
||||
var S = [];
|
||||
var C_ = [];
|
||||
var G = [];
|
||||
|
||||
/**
|
||||
* Rabbit stream cipher algorithm.
|
||||
*
|
||||
* This is a legacy version that neglected to convert the key to little-endian.
|
||||
* This error doesn't affect the cipher's security,
|
||||
* but it does affect its compatibility with other implementations.
|
||||
*/
|
||||
var RabbitLegacy = C_algo.RabbitLegacy = StreamCipher.extend({
|
||||
_doReset: function () {
|
||||
// Shortcuts
|
||||
var K = this._key.words;
|
||||
var iv = this.cfg.iv;
|
||||
|
||||
// Generate initial state values
|
||||
var X = this._X = [
|
||||
K[0], (K[3] << 16) | (K[2] >>> 16),
|
||||
K[1], (K[0] << 16) | (K[3] >>> 16),
|
||||
K[2], (K[1] << 16) | (K[0] >>> 16),
|
||||
K[3], (K[2] << 16) | (K[1] >>> 16)
|
||||
];
|
||||
|
||||
// Generate initial counter values
|
||||
var C = this._C = [
|
||||
(K[2] << 16) | (K[2] >>> 16), (K[0] & 0xffff0000) | (K[1] & 0x0000ffff),
|
||||
(K[3] << 16) | (K[3] >>> 16), (K[1] & 0xffff0000) | (K[2] & 0x0000ffff),
|
||||
(K[0] << 16) | (K[0] >>> 16), (K[2] & 0xffff0000) | (K[3] & 0x0000ffff),
|
||||
(K[1] << 16) | (K[1] >>> 16), (K[3] & 0xffff0000) | (K[0] & 0x0000ffff)
|
||||
];
|
||||
|
||||
// Carry bit
|
||||
this._b = 0;
|
||||
|
||||
// Iterate the system four times
|
||||
for (var i = 0; i < 4; i++) {
|
||||
nextState.call(this);
|
||||
}
|
||||
|
||||
// Modify the counters
|
||||
for (var i = 0; i < 8; i++) {
|
||||
C[i] ^= X[(i + 4) & 7];
|
||||
}
|
||||
|
||||
// IV setup
|
||||
if (iv) {
|
||||
// Shortcuts
|
||||
var IV = iv.words;
|
||||
var IV_0 = IV[0];
|
||||
var IV_1 = IV[1];
|
||||
|
||||
// Generate four subvectors
|
||||
var i0 = (((IV_0 << 8) | (IV_0 >>> 24)) & 0x00ff00ff) | (((IV_0 << 24) | (IV_0 >>> 8)) & 0xff00ff00);
|
||||
var i2 = (((IV_1 << 8) | (IV_1 >>> 24)) & 0x00ff00ff) | (((IV_1 << 24) | (IV_1 >>> 8)) & 0xff00ff00);
|
||||
var i1 = (i0 >>> 16) | (i2 & 0xffff0000);
|
||||
var i3 = (i2 << 16) | (i0 & 0x0000ffff);
|
||||
|
||||
// Modify counter values
|
||||
C[0] ^= i0;
|
||||
C[1] ^= i1;
|
||||
C[2] ^= i2;
|
||||
C[3] ^= i3;
|
||||
C[4] ^= i0;
|
||||
C[5] ^= i1;
|
||||
C[6] ^= i2;
|
||||
C[7] ^= i3;
|
||||
|
||||
// Iterate the system four times
|
||||
for (var i = 0; i < 4; i++) {
|
||||
nextState.call(this);
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
_doProcessBlock: function (M, offset) {
|
||||
// Shortcut
|
||||
var X = this._X;
|
||||
|
||||
// Iterate the system
|
||||
nextState.call(this);
|
||||
|
||||
// Generate four keystream words
|
||||
S[0] = X[0] ^ (X[5] >>> 16) ^ (X[3] << 16);
|
||||
S[1] = X[2] ^ (X[7] >>> 16) ^ (X[5] << 16);
|
||||
S[2] = X[4] ^ (X[1] >>> 16) ^ (X[7] << 16);
|
||||
S[3] = X[6] ^ (X[3] >>> 16) ^ (X[1] << 16);
|
||||
|
||||
for (var i = 0; i < 4; i++) {
|
||||
// Swap endian
|
||||
S[i] = (((S[i] << 8) | (S[i] >>> 24)) & 0x00ff00ff) |
|
||||
(((S[i] << 24) | (S[i] >>> 8)) & 0xff00ff00);
|
||||
|
||||
// Encrypt
|
||||
M[offset + i] ^= S[i];
|
||||
}
|
||||
},
|
||||
|
||||
blockSize: 128/32,
|
||||
|
||||
ivSize: 64/32
|
||||
});
|
||||
|
||||
function nextState() {
|
||||
// Shortcuts
|
||||
var X = this._X;
|
||||
var C = this._C;
|
||||
|
||||
// Save old counter values
|
||||
for (var i = 0; i < 8; i++) {
|
||||
C_[i] = C[i];
|
||||
}
|
||||
|
||||
// Calculate new counter values
|
||||
C[0] = (C[0] + 0x4d34d34d + this._b) | 0;
|
||||
C[1] = (C[1] + 0xd34d34d3 + ((C[0] >>> 0) < (C_[0] >>> 0) ? 1 : 0)) | 0;
|
||||
C[2] = (C[2] + 0x34d34d34 + ((C[1] >>> 0) < (C_[1] >>> 0) ? 1 : 0)) | 0;
|
||||
C[3] = (C[3] + 0x4d34d34d + ((C[2] >>> 0) < (C_[2] >>> 0) ? 1 : 0)) | 0;
|
||||
C[4] = (C[4] + 0xd34d34d3 + ((C[3] >>> 0) < (C_[3] >>> 0) ? 1 : 0)) | 0;
|
||||
C[5] = (C[5] + 0x34d34d34 + ((C[4] >>> 0) < (C_[4] >>> 0) ? 1 : 0)) | 0;
|
||||
C[6] = (C[6] + 0x4d34d34d + ((C[5] >>> 0) < (C_[5] >>> 0) ? 1 : 0)) | 0;
|
||||
C[7] = (C[7] + 0xd34d34d3 + ((C[6] >>> 0) < (C_[6] >>> 0) ? 1 : 0)) | 0;
|
||||
this._b = (C[7] >>> 0) < (C_[7] >>> 0) ? 1 : 0;
|
||||
|
||||
// Calculate the g-values
|
||||
for (var i = 0; i < 8; i++) {
|
||||
var gx = X[i] + C[i];
|
||||
|
||||
// Construct high and low argument for squaring
|
||||
var ga = gx & 0xffff;
|
||||
var gb = gx >>> 16;
|
||||
|
||||
// Calculate high and low result of squaring
|
||||
var gh = ((((ga * ga) >>> 17) + ga * gb) >>> 15) + gb * gb;
|
||||
var gl = (((gx & 0xffff0000) * gx) | 0) + (((gx & 0x0000ffff) * gx) | 0);
|
||||
|
||||
// High XOR low
|
||||
G[i] = gh ^ gl;
|
||||
}
|
||||
|
||||
// Calculate new state values
|
||||
X[0] = (G[0] + ((G[7] << 16) | (G[7] >>> 16)) + ((G[6] << 16) | (G[6] >>> 16))) | 0;
|
||||
X[1] = (G[1] + ((G[0] << 8) | (G[0] >>> 24)) + G[7]) | 0;
|
||||
X[2] = (G[2] + ((G[1] << 16) | (G[1] >>> 16)) + ((G[0] << 16) | (G[0] >>> 16))) | 0;
|
||||
X[3] = (G[3] + ((G[2] << 8) | (G[2] >>> 24)) + G[1]) | 0;
|
||||
X[4] = (G[4] + ((G[3] << 16) | (G[3] >>> 16)) + ((G[2] << 16) | (G[2] >>> 16))) | 0;
|
||||
X[5] = (G[5] + ((G[4] << 8) | (G[4] >>> 24)) + G[3]) | 0;
|
||||
X[6] = (G[6] + ((G[5] << 16) | (G[5] >>> 16)) + ((G[4] << 16) | (G[4] >>> 16))) | 0;
|
||||
X[7] = (G[7] + ((G[6] << 8) | (G[6] >>> 24)) + G[5]) | 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* Shortcut functions to the cipher's object interface.
|
||||
*
|
||||
* @example
|
||||
*
|
||||
* var ciphertext = CryptoJS.RabbitLegacy.encrypt(message, key, cfg);
|
||||
* var plaintext = CryptoJS.RabbitLegacy.decrypt(ciphertext, key, cfg);
|
||||
*/
|
||||
C.RabbitLegacy = StreamCipher._createHelper(RabbitLegacy);
|
||||
}());
|
||||
@@ -0,0 +1,3564 @@
|
||||
import cheerio from 'assets://js/lib/cheerio.min.js';
|
||||
import 'assets://js/lib/crypto-js.js';
|
||||
import './jsencrypt.js';
|
||||
import './node-rsa.js';
|
||||
import './pako.min.js';
|
||||
// import JSEncrypt from './jsencrypt.js'; // 会导致壳子崩溃的
|
||||
import 模板 from './模板.js'
|
||||
import {gbkTool} from './gbk.js'
|
||||
|
||||
// import cheerio from "https://ghproxy.net/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/cheerio.min.js";
|
||||
// import "https://ghproxy.net/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/crypto-js.js";
|
||||
// import 模板 from"https://ghproxy.net/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/模板.js";
|
||||
// import {gbkTool} from 'https://ghproxy.net/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/gbk.js'
|
||||
|
||||
function init_test() {
|
||||
// console.log(typeof(CryptoJS));
|
||||
console.log("init_test_start");
|
||||
// print(模板);
|
||||
// print(typeof(模板.getMubans));
|
||||
console.log("当前版本号:" + VERSION);
|
||||
console.log('本地代理地址:' + getProxyUrl());
|
||||
console.log(RKEY);
|
||||
// ocr_demo_test();
|
||||
// rsa_demo_test();
|
||||
|
||||
// console.log('Uint8Array:'+typeof(Uint8Array)+' '+'Uint16Array:'+typeof(Uint16Array));
|
||||
// console.log('encodeURIComponent:'+typeof(encodeURIComponent)+' '+'decodeURIComponent:'+typeof(decodeURIComponent));
|
||||
// console.log('atob:'+typeof(atob)+' '+'btoa:'+typeof(btoa));
|
||||
// log('typeof (JSEncrypt):'+typeof (JSEncrypt));
|
||||
// log('typeof (pako):'+typeof (pako));
|
||||
// let b64_str = btoa('hello hipy');
|
||||
// let str = atob(b64_str);
|
||||
// console.log(`btoa加密文本:${b64_str},atob解密文本:${str}`)
|
||||
// let gzip_str = gzip('{"a":"电影","b":"电影","c":"电影","d":"电影","e":"电影","f":"电影"}');
|
||||
// let ungzip_str = ungzip(gzip_str);
|
||||
// console.log(`gzip加密文本:${gzip_str},长度:${gzip_str.length},ungzip解密文本:${ungzip_str},长度:${ungzip_str.length}`);
|
||||
// let a = {"1":[{"key":"类型","name":"类型","value":[{"n":"全部","v":""},{"n":"Netflix","v":"NETFLIX"},{"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":"地区","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":"其他"}]},{"key":"语言","name":"语言","value":[{"n":"全部","v":""},{"n":"国语","v":"国语"},{"n":"粤语","v":"粤语"},{"n":"英语","v":"英语"},{"n":"日语","v":"日语"},{"n":"韩语","v":"韩语"},{"n":"法语","v":"法语"},{"n":"其他","v":"其他"}]},{"key":"年份","name":"年份","value":[{"n":"全部","v":""},{"n":"2024","v":"2024"},{"n":"2023","v":"2023"},{"n":"2022","v":"2022"},{"n":"2021","v":"2021"},{"n":"2020","v":"2020"},{"n":"10年代","v":"2010_2019"},{"n":"00年代","v":"2000_2009"},{"n":"90年代","v":"1990_1999"},{"n":"80年代","v":"1980_1989"},{"n":"更早","v":"0_1979"}]},{"key":"排序","name":"排序","value":[{"n":"综合","v":""},{"n":"最新","v":"2"},{"n":"最热","v":"3"},{"n":"评分","v":"4"}]}],"2":[{"key":"类型","name":"类型","value":[{"n":"全部","v":""},{"n":"Netflix","v":"Netflix"},{"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":"地区","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":"其他"}]},{"key":"语言","name":"语言","value":[{"n":"全部","v":""},{"n":"国语","v":"国语"},{"n":"粤语","v":"粤语"},{"n":"英语","v":"英语"},{"n":"日语","v":"日语"},{"n":"韩语","v":"韩语"},{"n":"法语","v":"法语"},{"n":"其他","v":"其他"}]},{"key":"年份","name":"年份","value":[{"n":"全部","v":""},{"n":"2024","v":"2024"},{"n":"2023","v":"2023"},{"n":"2022","v":"2022"},{"n":"2021","v":"2021"},{"n":"2020","v":"2020"},{"n":"10年代","v":"2010_2019"},{"n":"00年代","v":"2000_2009"},{"n":"90年代","v":"1990_1999"},{"n":"80年代","v":"1980_1989"},{"n":"更早","v":"0_1979"}]},{"key":"排序","name":"排序","value":[{"n":"综合","v":""},{"n":"最新","v":"2"},{"n":"最热","v":"3"},{"n":"评分","v":"4"}]}],"3":[{"key":"类型","name":"类型","value":[{"n":"全部","v":""},{"n":"Netflix","v":"Netflix"},{"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":"Anime","v":"Anime"},{"n":"运动","v":"运动"},{"n":"亲子","v":"亲子"},{"n":"青春","v":"青春"},{"n":"恋爱","v":"恋爱"},{"n":"武侠","v":"武侠"},{"n":"惊悚","v":"惊悚"}]},{"key":"地区","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":"其他"}]},{"key":"语言","name":"语言","value":[{"n":"全部","v":""},{"n":"国语","v":"国语"},{"n":"粤语","v":"粤语"},{"n":"英语","v":"英语"},{"n":"日语","v":"日语"},{"n":"韩语","v":"韩语"},{"n":"法语","v":"法语"},{"n":"其他","v":"其他"}]},{"key":"年份","name":"年份","value":[{"n":"全部","v":""},{"n":"2024","v":"2024"},{"n":"2023","v":"2023"},{"n":"2022","v":"2022"},{"n":"2021","v":"2021"},{"n":"2020","v":"2020"},{"n":"10年代","v":"2010_2019"},{"n":"00年代","v":"2000_2009"},{"n":"90年代","v":"1990_1999"},{"n":"80年代","v":"1980_1989"},{"n":"更早","v":"0_1979"}]},{"key":"排序","name":"排序","value":[{"n":"综合","v":""},{"n":"最新","v":"2"},{"n":"最热","v":"3"},{"n":"评分","v":"4"}]}],"4":[{"key":"类型","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":"Season","v":"Season"},{"n":"犯罪","v":"犯罪"},{"n":"短片","v":"短片"},{"n":"搞笑","v":"搞笑"},{"n":"晚会","v":"晚会"}]},{"key":"地区","name":"地区","value":[{"n":"全部","v":""},{"n":"大陆","v":"中国大陆"},{"n":"香港","v":"中国香港"},{"n":"台湾","v":"中国台湾"},{"n":"美国","v":"美国"},{"n":"日本","v":"日本"},{"n":"韩国","v":"韩国"},{"n":"其他","v":"其他"}]},{"key":"语言","name":"语言","value":[{"n":"全部","v":""},{"n":"国语","v":"国语"},{"n":"粤语","v":"粤语"},{"n":"英语","v":"英语"},{"n":"日语","v":"日语"},{"n":"韩语","v":"韩语"},{"n":"法语","v":"法语"},{"n":"其他","v":"其他"}]},{"key":"年份","name":"年份","value":[{"n":"全部","v":""},{"n":"2024","v":"2024"},{"n":"2023","v":"2023"},{"n":"2022","v":"2022"},{"n":"2021","v":"2021"},{"n":"2020","v":"2020"},{"n":"10年代","v":"2010_2019"},{"n":"00年代","v":"2000_2009"},{"n":"90年代","v":"1990_1999"},{"n":"80年代","v":"1980_1989"},{"n":"更早","v":"0_1979"}]},{"key":"排序","name":"排序","value":[{"n":"综合","v":""},{"n":"最新","v":"2"},{"n":"最热","v":"3"},{"n":"评分","v":"4"}]}],"6":[{"key":"类型","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":"其它"}]},{"key":"排序","name":"排序","value":[{"n":"综合","v":""},{"n":"最新","v":"2"},{"n":"最热","v":"3"}]}]};
|
||||
// log(gzip(JSON.stringify(a)));
|
||||
|
||||
console.log(JSON.stringify(rule));
|
||||
console.log("init_test_end");
|
||||
|
||||
|
||||
// log('typeof (JSEncrypt):'+typeof (JSEncrypt));
|
||||
// let publicKey = 'MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAwEc7wBMtYKkxvrQNI3+ITBZwAkPkGvsv4TsAHFskKGZWz9eYl3scivhmlEfWHlEkdyb0m82CmB1qAgef+pD4cZu+Cdmm2e9lnExhLwm8cBgpkAen9QRNdjojZgxM0W+JcReH4W6pw+uFXiLRn4AIQkDftWGNLg6wlNS+39Z/RvP9zyATJLZ9AKDdHp62XMxEK1KZvWBuIg+Oa5UzgA9jy+2XyIqwhBtO8tPbUl21t2pvTzHoLUjSkPNm2LurcUk6+jQ2r6aiS2CN1NXIucPJU6mkuIQ821SjvkYPtIdRMntW4y2u4cyiqVEEQwlzWVMHh+/vfrWAQr9fgjDuYYtvPQIDAQAB';
|
||||
// let privateKey = 'MIIEvwIBADANBgkqhkiG9w0BAQEFAASCBKkwggSlAgEAAoIBAQDARzvAEy1gqTG+tA0jf4hMFnACQ+Qa+y/hOwAcWyQoZlbP15iXexyK+GaUR9YeUSR3JvSbzYKYHWoCB5/6kPhxm74J2abZ72WcTGEvCbxwGCmQB6f1BE12OiNmDEzRb4lxF4fhbqnD64VeItGfgAhCQN+1YY0uDrCU1L7f1n9G8/3PIBMktn0AoN0enrZczEQrUpm9YG4iD45rlTOAD2PL7ZfIirCEG07y09tSXbW3am9PMegtSNKQ82bYu6txSTr6NDavpqJLYI3U1ci5w8lTqaS4hDzbVKO+Rg+0h1Eye1bjLa7hzKKpUQRDCXNZUweH7+9+tYBCv1+CMO5hi289AgMBAAECggEBAIRbRJUWXmEwdq64kGbELlV6CIZ2p3mvOSlIjO34Cy7IK7AMz9xOgbpj/XDK9miOIJTouu7ZC7GcZdGZ4BUCYBMMS0fKjGFuurpZlXhkslNTPqEHtCUkXhIpOR7RDrwIlErGEOIsZC4aXQcM3tF1t7mroJLh4OY4dHMu82lv5NM4hhFMNvHzXVvrPXeTzw26gddHVG/ke0WUYOcB5j3cPp8xaVp7JV8bdxtGtkqIfBLY/dIczzJu/3F3cBpU2nNwt8uVUF/w/HKlr7j8FqqFHXWh182beU0n5AIdRyRJBrRUAEhdtsUnvJOVBDqzZa+9DJ5395F7V8KRlQptxETdhCECgYEA4x/2HM9fnVIhG6wTbEt1LhGTKYb/igMAHLqquEMfRsB44tobI8gVNwR3qJQY/nKXxcQemQV29PcdqpENCKyXUXGD8SI1UPg15rHFBI8CIqlCXfzJybdHjmzlhaA9I5lofIVh+5MW7WkvHZoRy7NeDMhHUuaiveuqC4OJ8n+dD2kCgYEA2LkmUVef3WkBBwUBRdkyoog3DMwR+/ubb0ncJVYy3ItYVJltQ4HqmrRiJc8xBAoFnG8rbiqDnmTnDR3WbuxU1G2hml09fqId+rQds2UfESswCXHU43A4f77m1XyA6PprBxpozVIcmK69N4rR9jOXflLWo3O+p2ipUbmNpId7+rUCgYBSpcbBJRT+AmzZzPwkZDD32p1ady114zGfQq3s7z/qVw+mPQezNZPCuXVxerK9pKVl6b/Ynwxyh5nb/3xms6c8k7oXfQM5u5ihof63cfKs+jqUSPCE3pTDVw0OWwjkc2Z6KW9GRHgLXEMw2mevYE3RCPArUpHV2nO+TNddzuIwQQKBgQDOZwdnUNygMfEYjlu3+jOPN8u2FGTMZ8SRKPbRWFb4VH27lKPLN2AIFuOivsEf56uQYRAry7GumMq0Y0ZmPg5Mglz2dvaqNBv5OLFQuW3tHAST+iWWtroYb+fISts7B8QG79AAO8OgZksvKrbslBYj6SEiaomZRsR7YQzVNXOOQQKBgQCovElZ50c8ZJ6m9D9fw3Nes7u9vshpyyac5tt4tZ7yfU4l5pWGrIUqCE703qZp4NAqEvlZUCJbj9kkysaj/2MfFb2b9jSvdNB+V/YW9Cwg+5TziYoOcQzN1z2u4p4goTAv0S+pTNSr3qWaTUI4TXUXQajif45Fexv+MrP5AAXQyw=='
|
||||
// // let text = '你好';
|
||||
// let text = '[{"vod_name":"兔小贝原创儿歌","vod_pic":"https://resource-cdn.tuxiaobei.com/video-album/FnQ8ieJHgsbgCKWXNBg4uoOmKgG5.jpg","vod_remarks":"共229首","vod_content":"","vod_id":"/subject/17@@兔小贝原创儿歌@@https://resource-cdn.tuxiaobei.com/video-album/FnQ8ieJHgsbgCKWXNBg4uoOmKgG5.jpg"},{"vod_name":"英文儿歌","vod_pic":"https://resource-cdn.tuxiaobei.com/video-album/Fqjpx2H_-QaYNAYn2MekRuDpeyUv.jpg","vod_remarks":"共10首","vod_content":"","vod_id":"/subject/23@@英文儿歌@@https://resource-cdn.tuxiaobei.com/video-album/Fqjpx2H_-QaYNAYn2MekRuDpeyUv.jpg"}]';
|
||||
// let str = RSA.encode(text, publicKey);
|
||||
// console.log("加密数据:" + str);
|
||||
// let str1 = 'Wa2c/868VOm0PgpGG2s2aMrDbGOlJRdZXlSGswjFgywd3nZNB7ND8kVMdNB/OsNFoQXJXSJMvPaE73BH7rs8fz54JGdYQK+qTgfQRqQZvomCjbzseSR4bm4NOrtIOOslL3WqxlzOuU0M1P1eERmkLEVU2WSyc3RGtJro3b3MOWYCNdKMoZdncfOHJndkl4wm9V3GGc3uH98hs6OxLvBWgXoW9jZQ3n0vR2FtS2KYrPGuSuKGkxlt9Kw5TD6nri142NOimz05WK55Xe04YUQ1VZd51t0wzJGXolWgfzIQaK2zzhk5Zjlm+IQJxXqEWiJ2+O6TJ+lIttvsDSaUflcDXQ==';
|
||||
// let str2 = 'R86mW9DzBw05pxBSh9ECh1stXxINmnudgZBbzU/cz1EcFgrEgdk0Zk4ruAiJZB2fP5c7d3gMmN8+Dv19IfARWSzw85xCEjUhpdcMJ0jn6ZE5H+muadND9LzjeVisojqwYxot3YVdKof7HMhPFN8QR0jfzqhjmnGFTlY1jMXzJK0MSOLNRLDar480CdKNb/cxALC8+xKIlhM9E4B31t8J4rNMUWSCAr49lbZ3jx3PxieBpTQUdDJz96AttR93Pc+c51wrxh0Ch/Mt4Rs09HGMXwIpNV+CxsGwSGRQUlyJo2k3d0WqsVzpz6S8A4VGEMTRLGI3IjEt+eWt7wM3nAXarg==';
|
||||
// let str3 = 'D4eOsRqua+jYA5+ZOR9PLI2PExKjKfArQfv9/wGeG50bQSjWypShJPY6RQfO+rghyf0juzHIUSxqH91OxinhCFkONaF2Vod2QVyphyn9eh73dAcEFKIFFKGXoPCjbMWrr3p4d+hgVrHzrFeGqkRq8JFOvG2L5XDxVfWbV8KmUA0DKuz6QwWg7P4kesy+C7BbLALy5W/wfZchD3gnsBvx/pjFoe11VfAify9isLxg9a15jj52xr6lzQ9kge9C2JcV8yq85bFKaUpJWgobzz+BSIv3lVMU6vgcldmOrhkyiETpFGFGGF00DphGCEoK6uAyyNDh7+Jn8P17zf/DW1wV3A==';
|
||||
// let uncrypted = RSA.decode(str, privateKey);
|
||||
// log('解密数据:'+uncrypted);
|
||||
// uncrypted = RSA.decode(str1, privateKey);
|
||||
// log('解密数据1:'+uncrypted);
|
||||
// uncrypted = RSA.decode(str2, privateKey);
|
||||
// log('解密数据2:'+uncrypted);
|
||||
// uncrypted = RSA.decode(str3, privateKey);
|
||||
// log('解密数据3:'+uncrypted);
|
||||
|
||||
// log('rsax:'+typeof(rsax));
|
||||
// log('rsaX:'+typeof(rsaX));
|
||||
// let data = base64Encode('你好');
|
||||
// let publicKey = 'dzyyds';
|
||||
// console.log(typeof (RSA.encode));
|
||||
// let encryptBase64Data = RSA.encode(data,publicKey);
|
||||
// log('encryptBase64Data:'+encryptBase64Data);
|
||||
// let str = RSA.decode(data,publicKey);
|
||||
// log('str:'+str);
|
||||
}
|
||||
|
||||
/**
|
||||
* 验证码ocr识别的测试案例
|
||||
*/
|
||||
function ocr_demo_test() {
|
||||
// 这张图片为4113的验证码
|
||||
let img_base64 = `iVBORw0KGgoAAAANSUhEUgAAAIAAAAAoBAMAAADEX+97AAAAG1BMVEXz+/4thQTa7N6QwIFFkyNeokKozqDB3b93sWHFR+MEAAAACXBIWXMAAA7EAAAOxAGVKw4bAAABN0lEQVRIie2TQU+DQBCFt9vScvQpxR4xrcSjJCZ67JDGXsX+AdR4B3vpsSYm/m2HXaRLmuySepR3Gdidb/btDAjRq5dT96eCMlfBuzi1QLZUoZy2yz5sOvI+9iomaPEZ6nWnEtxqIyiM1RcAy44GNDhBXUjot/VVNweV1ah68FqWRyjKIOqAcyYF6rGcmpYnHzGt3fycNoMw0d3/THFu7hFSJ/8OXO6iTM8/KSg09obAzIHLO250LgQ0txOZSfgrV4Exdw98uGycJ0ErAeExZGhOmFHV9zHO6qVSj0MpLq7xZON56o++MjlsEgfVhbQWWME+xQX7J4V6zfi9A1Ly9rP1BvEXp+BbVJ/M77n+wfOIDVp51pZ4iBxvmj9AGrtvry6emwfKnVkW+ZRKd5ZNMvob36vXP9YPDmQki8QiCFAAAAAASUVORK5CYII=`;
|
||||
// 更换api-可以通过这个代码换掉默认的ocr接口
|
||||
OcrApi.api = OCR_API;
|
||||
let code = OcrApi.classification(img_base64);
|
||||
log('测试验证码图片的ocr识别结果为:' + code);
|
||||
}
|
||||
|
||||
/**
|
||||
* rsa加解密的全方位测试案例
|
||||
*/
|
||||
function rsa_demo_test() {
|
||||
let t1 = new Date().getTime();
|
||||
let pkcs1_public = `
|
||||
-----BEGIN RSA PUBLIC KEY-----
|
||||
MEgCQQCrI0pQ/ERRpJ3Ou190XJedFq846nDYP52rOtXyDxlFK5D3p6JJu2RwsKwy
|
||||
lsQ9xY0xYPpRZUZKMEeR7e9gmRNLAgMBAAE=
|
||||
-----END RSA PUBLIC KEY-----
|
||||
`.trim();
|
||||
|
||||
let pkcs1_public_pem = `
|
||||
MEgCQQCrI0pQ/ERRpJ3Ou190XJedFq846nDYP52rOtXyDxlFK5D3p6JJu2RwsKwy
|
||||
lsQ9xY0xYPpRZUZKMEeR7e9gmRNLAgMBAAE=
|
||||
`.trim();
|
||||
|
||||
let pkcs8_public = `
|
||||
-----BEGIN PUBLIC KEY-----
|
||||
MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKsjSlD8RFGknc67X3Rcl50WrzjqcNg/
|
||||
nas61fIPGUUrkPenokm7ZHCwrDKWxD3FjTFg+lFlRkowR5Ht72CZE0sCAwEAAQ==
|
||||
-----END PUBLIC KEY-----`.trim();
|
||||
|
||||
let pkcs8_public_pem = `
|
||||
MFwwDQYJKoZIhvcNAQEBBQADSwAwSAJBAKsjSlD8RFGknc67X3Rcl50WrzjqcNg/
|
||||
nas61fIPGUUrkPenokm7ZHCwrDKWxD3FjTFg+lFlRkowR5Ht72CZE0sCAwEAAQ==
|
||||
`.trim();
|
||||
|
||||
let pkcs1_private = `
|
||||
-----BEGIN RSA PRIVATE KEY-----
|
||||
MIIBOAIBAAJBAKsjSlD8RFGknc67X3Rcl50WrzjqcNg/nas61fIPGUUrkPenokm7
|
||||
ZHCwrDKWxD3FjTFg+lFlRkowR5Ht72CZE0sCAwEAAQI/b6OV1z65UokQaMvSeRXt
|
||||
0Yv6wiYtduQI9qpq5nzy/ytaqsbBfClNTi/HifKPKxlRouWFkc518EQI8LBxoarJ
|
||||
AiEA4DaONMplV8PQNa3TKn2F+SDEvLOCjdL0kHKdN90Ti28CIQDDZnTBaHgZwZbA
|
||||
hS7Bbf5yvwjWMhO6Y7l04/Qm7R+35QIgPuQuqXIoUSD080mp1N5WyRW++atksIF+
|
||||
5lGv9e6GP/MCICnj8y/rl6Pd7tXDN6zcSeqLrfdNsREKhB3dKOCXgW9JAiAFYtFS
|
||||
EJNBXVRTK42SNsZ2hJ/9xLwOwnH2epT8Q43s3Q==
|
||||
-----END RSA PRIVATE KEY-----
|
||||
`.trim()
|
||||
|
||||
let pkcs8_private = `
|
||||
-----BEGIN PRIVATE KEY-----
|
||||
MIIBUgIBADANBgkqhkiG9w0BAQEFAASCATwwggE4AgEAAkEAqyNKUPxEUaSdzrtf
|
||||
dFyXnRavOOpw2D+dqzrV8g8ZRSuQ96eiSbtkcLCsMpbEPcWNMWD6UWVGSjBHke3v
|
||||
YJkTSwIDAQABAj9vo5XXPrlSiRBoy9J5Fe3Ri/rCJi125Aj2qmrmfPL/K1qqxsF8
|
||||
KU1OL8eJ8o8rGVGi5YWRznXwRAjwsHGhqskCIQDgNo40ymVXw9A1rdMqfYX5IMS8
|
||||
s4KN0vSQcp033ROLbwIhAMNmdMFoeBnBlsCFLsFt/nK/CNYyE7pjuXTj9CbtH7fl
|
||||
AiA+5C6pcihRIPTzSanU3lbJFb75q2SwgX7mUa/17oY/8wIgKePzL+uXo93u1cM3
|
||||
rNxJ6out902xEQqEHd0o4JeBb0kCIAVi0VIQk0FdVFMrjZI2xnaEn/3EvA7CcfZ6
|
||||
lPxDjezd
|
||||
-----END PRIVATE KEY-----
|
||||
`.trim()
|
||||
|
||||
let data = `
|
||||
NodeRsa
|
||||
这是node-rsa 现在修改集成在drpy里使用`.trim();
|
||||
|
||||
let encryptedWithPublic = NODERSA.encryptRSAWithPublicKey(data, pkcs1_public, {
|
||||
// PublicFormat: "pkcs1-public-pem",
|
||||
outputEncoding: "base64",
|
||||
options: {environment: "browser", encryptionScheme: 'pkcs1_oaep'},
|
||||
});
|
||||
console.log("公钥加密");
|
||||
console.log(encryptedWithPublic);
|
||||
|
||||
|
||||
let decryptedWithPrivate = NODERSA.decryptRSAWithPrivateKey(encryptedWithPublic, pkcs1_private, {
|
||||
// PublicFormat: "pkcs1-private",
|
||||
// outEncoding: "hex"
|
||||
options: {environment: "browser", encryptionScheme: 'pkcs1_oaep'},
|
||||
});
|
||||
console.log("私钥解密");
|
||||
console.log(decryptedWithPrivate);
|
||||
|
||||
|
||||
// https://www.btool.cn/rsa-sign
|
||||
let pkcs1_sha256_sign = NODERSA.sign("1", pkcs1_private, {
|
||||
outputEncoding: "base64",
|
||||
options: {environment: "browser", encryptionScheme: 'pkcs1', signingScheme: "pkcs1-sha256"},
|
||||
});
|
||||
console.log("pkcs1_sha256_sign");
|
||||
console.log(pkcs1_sha256_sign);
|
||||
|
||||
let pkcs1_sha256_sign_verify = NODERSA.verify("1", "Oulx2QrgeipKYBtqEDqFb2s/+ndk2cGQxO4CkhU7iBM1vyNmmvqubpsmeoUuN3waGrYZLknSEdwBkfv0tUMpFQ==", pkcs1_private, {
|
||||
options: {environment: "browser", encryptionScheme: 'pkcs1', signingScheme: "pkcs1-sha256"},
|
||||
});
|
||||
console.log("pkcs1_sha256_sign_verify");
|
||||
console.log(pkcs1_sha256_sign_verify);
|
||||
|
||||
let pkcs1_oaep_sha256 = NODERSA.encryptRSAWithPublicKey(data, `-----BEGIN RSA PUBLIC KEY-----
|
||||
MIIBCgKCAQEA5KOq1gRNyllLNWKQy8sGpZE3Q1ULLSmzZw+eaAhj9lvqn7IsT1du
|
||||
SYn08FfoOA2qMwtz+1O2l1mgzNoSVCyVpVabnTG+C9XKeZXAnJHd8aYA7l7Sxhdm
|
||||
kte+iymYZ0ZBPzijo8938iugtVvqi9UgDmnY3u/NlQDqiL5BGqSxSTd/Sgmy3zD8
|
||||
PYzEa3wD9vehQ5fZZ45vKIq8GNVh2Z8+IGO85FF1OsN7+b2yGJa/FmDDNn0+HP+m
|
||||
PfI+kYBqEVpo0Ztbc3UdxgFwGC8O1n8AQyriwHnSOtIiuBH62J/7qyC/3LEAApRb
|
||||
Dd9YszqzmODjQUddZKHmvc638VW+azc0EwIDAQAB
|
||||
-----END RSA PUBLIC KEY-----
|
||||
`, {
|
||||
outputEncoding: "base64",
|
||||
options: {
|
||||
environment: "browser", encryptionScheme: {
|
||||
scheme: "pkcs1_oaep",
|
||||
hash: "sha256",
|
||||
},
|
||||
}
|
||||
// options: { environment: "browser", encryptionScheme: 'pkcs1' },
|
||||
});
|
||||
console.log("pkcs1_oaep_sha256");
|
||||
console.log(pkcs1_oaep_sha256);
|
||||
|
||||
decryptedWithPrivate = NODERSA.decryptRSAWithPrivateKey("kSZesAAyYh2hdsQnYMdGqb6gKAzTauBKouvBzWcc4+F8RvGd0nwO6mVkUMVilPgUuNxjEauHayHiY8gI3Py45UI3+km0rSGyHrS6dHiHgCkMejXHieglYzAB0IxX3Jkm4z/66bdB/D+GFy0oct5fGCMI1UHPjEAYOsazJDa8lBFNbjiWFeb/qiZtIx3vGM7KYPAZzyRf/zPbbQ8zy9xOmRuOl5nnIxgo0Okp3KO/RIPO4GZOSBA8f2lx1UtNwwrXAMpcNavtoqHVcjJ/9lcotXYQFrn5b299pSIRf2gVm8ZJ31SK6Z8cc14nKtvgnmsgClDzIXJ1o1RcDK+knVAySg==", `-----BEGIN RSA PRIVATE KEY-----
|
||||
MIIEpAIBAAKCAQEA5KOq1gRNyllLNWKQy8sGpZE3Q1ULLSmzZw+eaAhj9lvqn7Is
|
||||
T1duSYn08FfoOA2qMwtz+1O2l1mgzNoSVCyVpVabnTG+C9XKeZXAnJHd8aYA7l7S
|
||||
xhdmkte+iymYZ0ZBPzijo8938iugtVvqi9UgDmnY3u/NlQDqiL5BGqSxSTd/Sgmy
|
||||
3zD8PYzEa3wD9vehQ5fZZ45vKIq8GNVh2Z8+IGO85FF1OsN7+b2yGJa/FmDDNn0+
|
||||
HP+mPfI+kYBqEVpo0Ztbc3UdxgFwGC8O1n8AQyriwHnSOtIiuBH62J/7qyC/3LEA
|
||||
ApRbDd9YszqzmODjQUddZKHmvc638VW+azc0EwIDAQABAoIBADZ/QGgUzInvsLp/
|
||||
zO2WbfYm39o/uhNAvk9RbLt1TIZbMFhyOpeKynHi3Swwd9xsfWX/U9zS/lGi/m31
|
||||
iKrhmaW4OA1G3vqpMcK7TBbFufYwUEaA+ZJX344euH8pIfdzyneMQ4z3Far2dS7l
|
||||
QsmjuilVV2kEFadveXewiYoVOWCu00w6bN8wy2SIHlQn+kIL6HQhWz12iKKflIKu
|
||||
eGRdzLHsKmBt6WbY1Wuhx7HU0fAKdlBDPxCHNlI+kybUYE9o5C2vJiaVM5wqJBgZ
|
||||
8Dz8kt1QbLJ910JoLXkLVQ8uC8NJKQwFtqQjTGPnEq0+wbgz6Ij599rKZkwW/xq9
|
||||
l6KoUiECgYEA6Ah42tVdkNW047f03xVYXFH96RgorHRS36mR8Y+ONUq1fwKidovC
|
||||
WjwVujt4OPf3l1W6iyn/F6cu/bsmvPrSc3HTN0B1V31QK4OjgetxQ2PSbTldH02J
|
||||
NPzkt+v+cPxXpx/P5mgt7Weefw5txU547KubGrHUV5rBKFtIx9pj16MCgYEA/EF0
|
||||
o19+D24DZAPwlDS5VbEd7FStnwY4oQ5PqbuNOSbSJLMWU0AqzXcRokp8UTyCZ0X3
|
||||
ATkS1REq97kShCuR+npTR6a6DlY7sdpPI1SMLNajgB2tkx0EOzX+PfNIbHUd4jpJ
|
||||
I0ZMAHv/OOtkzQHDaeTWBTrzsWm6/nTiykfduNECgYEA46AMD4HpPECqKAs66e5i
|
||||
tI6q7JSKskObWVdcmQEfnSAhVOwcvPb2Ptda6UuV8S0xcwDi88rLOUUFUFzc79+P
|
||||
vTkY38cYVi/VChsluDpk7ptqv0PbGu5Rf+3n4pZdEjI7OvR2W64wAAn67uIUxc7p
|
||||
yiO/ET0K9rYWb6S9jXGtKMkCgYEA2kPAqoO7zZoBMQ7/oR0lp/HC1HRIbiqx4RlC
|
||||
8Lgpb+QZPEwA6zPAVVvLVENi4d+bbcRp/xLlKpraNNJcJSSWAMbLPFoU7sbKjA87
|
||||
HnTPfRSTEA2d3Ibk3F7Rh8TzS3Ti0JZiJjVzGZAwu41iAMifzwaD8K6boUy80eNN
|
||||
QH2CaaECgYBUsLYvC/MiYg3w+LGOONuQongoVUXjGqnw2bjVa9RK7lwRdXPUqJ51
|
||||
MpVO98IkoLvGSI/0sGNP3GKNhC+eMGjJAVwFyEuOn+JsmMv9Y9uStIVi5tIHIhKw
|
||||
m7mp8il0kaftHdSxTbspG3tZ2fjIiFIZkLEOmRpd7ogWumgOajzUdA==
|
||||
-----END RSA PRIVATE KEY-----`, {
|
||||
// PublicFormat: "pkcs1-private",
|
||||
// outEncoding: "hex"
|
||||
options: {environment: "browser", encryptionScheme: 'pkcs1_oaep'},
|
||||
});
|
||||
console.log('decryptedWithPrivate');
|
||||
console.log(decryptedWithPrivate);
|
||||
|
||||
|
||||
(() => {
|
||||
let key = new NODERSA.NodeRSA({b: 1024});
|
||||
key.setOptions({encryptionScheme: 'pkcs1'})
|
||||
let text = `你好drpy node-ras`;
|
||||
let encrypted = key.encrypt(text, 'base64');
|
||||
console.log('encrypted: ', encrypted);
|
||||
const decrypted = key.decrypt(encrypted, 'utf8');
|
||||
console.log('decrypted: ', decrypted);
|
||||
})();
|
||||
let t2 = new Date().getTime();
|
||||
console.log('rsa_demo_test 测试耗时:' + (t2 - t1) + '毫秒');
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 执行预处理代码
|
||||
*/
|
||||
function pre() {
|
||||
if (typeof (rule.预处理) === 'string' && rule.预处理 && rule.预处理.trim()) {
|
||||
let code = rule.预处理.trim();
|
||||
console.log("执行预处理代码:" + code);
|
||||
if (code.startsWith('js:')) {
|
||||
code = code.replace('js:', '');
|
||||
}
|
||||
try {
|
||||
// code里可以进行get 或者 post请求cookie并改变rule.headers 里的cookie
|
||||
// 直接操作 rule_fetch_params 这个变量 .headers.Cookie
|
||||
eval(code);
|
||||
} catch (e) {
|
||||
console.log(`预处理执行失败:${e.message}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
let rule = {};
|
||||
let vercode = typeof (pdfl) === 'function' ? 'drpy2.1' : 'drpy2';
|
||||
const VERSION = vercode + ' 3.9.50beta32 20240625';
|
||||
/** 已知问题记录
|
||||
* 1.影魔的jinjia2引擎不支持 {{fl}}对象直接渲染 (有能力解决的话尽量解决下,支持对象直接渲染字符串转义,如果加了|safe就不转义)[影魔牛逼,最新的文件发现这问题已经解决了]
|
||||
* Array.prototype.append = Array.prototype.push; 这种js执行后有毛病,for in 循环列表会把属性给打印出来 (这个大毛病需要重点排除一下)
|
||||
* 2.import es6py.js但是里面的函数没有被装载进来.比如drpy规则报错setResult2 is undefiend(合并文件了可以不管了)
|
||||
* 3.无法重复导入cheerio(怎么解决drpy和parseTag里都需要导入cheerio的问题) 无法在副文件导入cheerio (现在是全部放在drpy一个文件里了,凑合解决?)
|
||||
* 4.有个错误不知道哪儿来的 executeScript: com.quickjs.JSObject$Undefined cannot be cast to java.lang.String 在 点击选集播放打印init_test_end后面打印(貌似不影响使用)
|
||||
* 5.需要实现 stringify 函数,比起JSON.strifngify函数,它会原封不动保留中文不会编码unicode
|
||||
* 6.base64Encode,base64Decode,md5函数还没有实现 (抄影魔代码实现了)
|
||||
* 7.eval(getCryptoJS());还没有实现 (可以空实现了,以后遇到能忽略)
|
||||
* done: jsp:{pdfa,pdfh,pd},json:{pdfa,pdfh,pd},jq:{pdfa,pdfh,pd}
|
||||
* 8.req函数不支持传递字符串的data参数 {'content-type':'text/plain'} 类型数据,因此无法直接调用alist的ocr接口
|
||||
* * 电脑看日志调试
|
||||
adb tcpip 5555
|
||||
adb connect 192.168.10.192
|
||||
adb devices -l
|
||||
adb logcat -c
|
||||
adb logcat | grep -i QuickJS
|
||||
adb logcat -c -b events
|
||||
adb logcat -c -b main -b events -b radio -b system
|
||||
adb logcat > 2.log DRPY:E | grep -i QuickJS
|
||||
* **/
|
||||
|
||||
|
||||
/*** 以下是内置变量和解析方法 **/
|
||||
const MOBILE_UA = 'Mozilla/5.0 (Linux; Android 11; Pixel 5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.91 Mobile Safari/537.36';
|
||||
const PC_UA = 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.54 Safari/537.36';
|
||||
const UA = 'Mozilla/5.0';
|
||||
const UC_UA = 'Mozilla/5.0 (Linux; U; Android 9; zh-CN; MI 9 Build/PKQ1.181121.001) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/57.0.2987.108 UCBrowser/12.5.5.1035 Mobile Safari/537.36';
|
||||
const IOS_UA = 'Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1';
|
||||
const RULE_CK = 'cookie'; // 源cookie的key值
|
||||
// const KEY = typeof(key)!=='undefined'&&key?key:'drpy_' + (rule.title || rule.host); // 源的唯一标识
|
||||
const CATE_EXCLUDE = '首页|留言|APP|下载|资讯|新闻|动态';
|
||||
const TAB_EXCLUDE = '猜你|喜欢|下载|剧情|榜|评论';
|
||||
const OCR_RETRY = 3;//ocr验证重试次数
|
||||
// const OCR_API = 'http://drpy.nokia.press:8028/ocr/drpy/text';//ocr在线识别接口
|
||||
const OCR_API = 'https://api.nn.ci/ocr/b64/text';//ocr在线识别接口
|
||||
if (typeof (MY_URL) === 'undefined') {
|
||||
var MY_URL; // 全局注入变量,pd函数需要
|
||||
}
|
||||
var HOST;
|
||||
var RKEY; // 源的唯一标识
|
||||
var fetch;
|
||||
var print;
|
||||
var log;
|
||||
var rule_fetch_params;
|
||||
var fetch_params; // 每个位置单独的
|
||||
var oheaders;
|
||||
// var play_url; // 二级详情页注入变量,为了适配js模式0 (不在这里定义了,直接二级里定义了个空字符串)
|
||||
var _pdfh;
|
||||
var _pdfa;
|
||||
var _pd;
|
||||
// const DOM_CHECK_ATTR = ['url', 'src', 'href', 'data-original', 'data-src'];
|
||||
const DOM_CHECK_ATTR = /(url|src|href|-original|-src|-play|-url|style)$/;
|
||||
// 过滤特殊链接,不走urlJoin
|
||||
const SPECIAL_URL = /^(ftp|magnet|thunder|ws):/;
|
||||
const NOADD_INDEX = /:eq|:lt|:gt|:first|:last|^body$|^#/; // 不自动加eq下标索引
|
||||
const URLJOIN_ATTR = /(url|src|href|-original|-src|-play|-url|style)$|^(data-|url-|src-)/; // 需要自动urljoin的属性
|
||||
const SELECT_REGEX = /:eq|:lt|:gt|#/g;
|
||||
const SELECT_REGEX_A = /:eq|:lt|:gt/g;
|
||||
|
||||
// 增加$js工具,支持$js.toString(()=>{});
|
||||
const $js = {
|
||||
toString(func) {
|
||||
let strfun = func.toString();
|
||||
return strfun.replace(/^\(\)(\s+)?=>(\s+)?\{/, "js:").replace(/\}$/, '');
|
||||
}
|
||||
};
|
||||
|
||||
function window_b64() {
|
||||
let b64map = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
|
||||
let base64DecodeChars = 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 btoa(str) {
|
||||
var out, i, len;
|
||||
var c1, c2, c3;
|
||||
len = str.length;
|
||||
i = 0;
|
||||
out = "";
|
||||
while (i < len) {
|
||||
c1 = str.charCodeAt(i++) & 0xff;
|
||||
if (i == len) {
|
||||
out += b64map.charAt(c1 >> 2);
|
||||
out += b64map.charAt((c1 & 0x3) << 4);
|
||||
out += "==";
|
||||
break;
|
||||
}
|
||||
c2 = str.charCodeAt(i++);
|
||||
if (i == len) {
|
||||
out += b64map.charAt(c1 >> 2);
|
||||
out += b64map.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
|
||||
out += b64map.charAt((c2 & 0xF) << 2);
|
||||
out += "=";
|
||||
break;
|
||||
}
|
||||
c3 = str.charCodeAt(i++);
|
||||
out += b64map.charAt(c1 >> 2);
|
||||
out += b64map.charAt(((c1 & 0x3) << 4) | ((c2 & 0xF0) >> 4));
|
||||
out += b64map.charAt(((c2 & 0xF) << 2) | ((c3 & 0xC0) >> 6));
|
||||
out += b64map.charAt(c3 & 0x3F);
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
function atob(str) {
|
||||
var c1, c2, c3, c4;
|
||||
var i, len, out;
|
||||
len = str.length;
|
||||
i = 0;
|
||||
out = "";
|
||||
while (i < len) {
|
||||
do {
|
||||
c1 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
|
||||
} while (i < len && c1 == -1);
|
||||
if (c1 == -1) break;
|
||||
do {
|
||||
c2 = base64DecodeChars[str.charCodeAt(i++) & 0xff];
|
||||
} while (i < len && c2 == -1);
|
||||
if (c2 == -1) break;
|
||||
out += String.fromCharCode((c1 << 2) | ((c2 & 0x30) >> 4));
|
||||
do {
|
||||
c3 = str.charCodeAt(i++) & 0xff;
|
||||
if (c3 == 61) return out;
|
||||
c3 = base64DecodeChars[c3];
|
||||
} while (i < len && c3 == -1);
|
||||
if (c3 == -1) break;
|
||||
out += String.fromCharCode(((c2 & 0XF) << 4) | ((c3 & 0x3C) >> 2));
|
||||
do {
|
||||
c4 = str.charCodeAt(i++) & 0xff;
|
||||
if (c4 == 61) return out;
|
||||
c4 = base64DecodeChars[c4];
|
||||
} while (i < len && c4 == -1);
|
||||
if (c4 == -1) break;
|
||||
out += String.fromCharCode(((c3 & 0x03) << 6) | c4);
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
return {
|
||||
atob,
|
||||
btoa
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
es6py扩展
|
||||
*/
|
||||
if (typeof atob !== 'function' || typeof btoa !== 'function') {
|
||||
var {atob, btoa} = window_b64();
|
||||
}
|
||||
|
||||
if (typeof Object.assign !== 'function') {
|
||||
Object.assign = function () {
|
||||
let target = arguments[0];
|
||||
for (let i = 1; i < arguments.length; i++) {
|
||||
let source = arguments[i];
|
||||
for (let key in source) {
|
||||
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
||||
target[key] = source[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
return target;
|
||||
};
|
||||
}
|
||||
if (!String.prototype.includes) {
|
||||
String.prototype.includes = function (search, start) {
|
||||
if (typeof start !== 'number') {
|
||||
start = 0;
|
||||
}
|
||||
|
||||
if (start + search.length > this.length) {
|
||||
return false;
|
||||
} else {
|
||||
return this.indexOf(search, start) !== -1;
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
if (!Array.prototype.includes) {
|
||||
Object.defineProperty(Array.prototype, 'includes', {
|
||||
value: function (searchElement, fromIndex) {
|
||||
|
||||
if (this == null) {//this是空或者未定义,抛出错误
|
||||
throw new TypeError('"this" is null or not defined');
|
||||
}
|
||||
|
||||
var o = Object(this);//将this转变成对象
|
||||
var len = o.length >>> 0;//无符号右移0位,获取对象length属性,如果未定义就会变成0
|
||||
|
||||
if (len === 0) {//length为0直接返回false未找到目标值
|
||||
return false;
|
||||
}
|
||||
|
||||
var n = fromIndex | 0;//查找起始索引
|
||||
var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);//计算正确起始索引,因为有可能是负值
|
||||
|
||||
while (k < len) {//从起始索引处开始循环
|
||||
if (o[k] === searchElement) {//如果某一位置与寻找目标相等,返回true,找到了
|
||||
return true;
|
||||
}
|
||||
k++;
|
||||
}
|
||||
return false;//未找到,返回false
|
||||
},
|
||||
enumerable: false
|
||||
});
|
||||
}
|
||||
if (typeof String.prototype.startsWith !== 'function') {
|
||||
String.prototype.startsWith = function (prefix) {
|
||||
return this.slice(0, prefix.length) === prefix;
|
||||
};
|
||||
}
|
||||
if (typeof String.prototype.endsWith !== 'function') {
|
||||
String.prototype.endsWith = function (suffix) {
|
||||
return this.indexOf(suffix, this.length - suffix.length) !== -1;
|
||||
};
|
||||
}
|
||||
Object.defineProperty(Object.prototype, 'myValues', {
|
||||
value: function (obj) {
|
||||
if (obj == null) {
|
||||
throw new TypeError("Cannot convert undefined or null to object");
|
||||
}
|
||||
var res = []
|
||||
for (var k in obj) {
|
||||
if (obj.hasOwnProperty(k)) {//需判断是否是本身的属性
|
||||
res.push(obj[k]);
|
||||
}
|
||||
}
|
||||
return res;
|
||||
},
|
||||
enumerable: false
|
||||
});
|
||||
if (typeof Object.prototype.values !== 'function') {
|
||||
Object.defineProperty(Object.prototype, 'values', {
|
||||
value: function (obj) {
|
||||
if (obj == null) {
|
||||
throw new TypeError("Cannot convert undefined or null to object");
|
||||
}
|
||||
var res = []
|
||||
for (var k in obj) {
|
||||
if (obj.hasOwnProperty(k)) {//需判断是否是本身的属性
|
||||
res.push(obj[k]);
|
||||
}
|
||||
}
|
||||
return res;
|
||||
},
|
||||
enumerable: false
|
||||
});
|
||||
}
|
||||
if (typeof Array.prototype.join !== 'function') {
|
||||
Object.defineProperty(Array.prototype, 'join', {
|
||||
value: function (emoji) {
|
||||
// emoji = emoji||',';
|
||||
emoji = emoji || '';
|
||||
let self = this;
|
||||
let str = "";
|
||||
let i = 0;
|
||||
if (!Array.isArray(self)) {
|
||||
throw String(self) + 'is not Array'
|
||||
}
|
||||
if (self.length === 0) {
|
||||
return ''
|
||||
}
|
||||
if (self.length === 1) {
|
||||
return String(self[0])
|
||||
}
|
||||
i = 1;
|
||||
str = this[0];
|
||||
for (; i < self.length; i++) {
|
||||
str += String(emoji) + String(self[i]);
|
||||
}
|
||||
return str;
|
||||
},
|
||||
enumerable: false
|
||||
});
|
||||
}
|
||||
if (typeof Array.prototype.toReversed !== 'function') {
|
||||
Object.defineProperty(Array.prototype, 'toReversed', {
|
||||
value: function () {
|
||||
const clonedList = this.slice();
|
||||
// 倒序新数组
|
||||
const reversedList = clonedList.reverse();
|
||||
return reversedList;
|
||||
},
|
||||
enumerable: false
|
||||
});
|
||||
}
|
||||
|
||||
Object.defineProperty(Array.prototype, 'append', {
|
||||
value: Array.prototype.push,
|
||||
enumerable: false
|
||||
});
|
||||
Object.defineProperty(String.prototype, 'strip', {
|
||||
value: String.prototype.trim,
|
||||
enumerable: false
|
||||
});
|
||||
Object.defineProperty(String.prototype, 'rstrip', {
|
||||
value: function (chars) {
|
||||
let regex = new RegExp(chars + "$");
|
||||
return this.replace(regex, "");
|
||||
},
|
||||
enumerable: false
|
||||
});
|
||||
|
||||
function 是否正版(vipUrl) {
|
||||
let flag = new RegExp('qq\.com|iqiyi\.com|youku\.com|mgtv\.com|bilibili\.com|sohu\.com|ixigua\.com|pptv\.com|miguvideo\.com|le\.com|1905\.com|fun\.tv');
|
||||
return flag.test(vipUrl);
|
||||
}
|
||||
|
||||
function urlDeal(vipUrl) {
|
||||
if (!vipUrl) {
|
||||
return ''
|
||||
}
|
||||
if (!是否正版(vipUrl)) {
|
||||
return vipUrl
|
||||
}
|
||||
if (!/miguvideo/.test(vipUrl)) {
|
||||
vipUrl = vipUrl.split('#')[0].split('?')[0];
|
||||
}
|
||||
return vipUrl
|
||||
}
|
||||
|
||||
function setResult(d) {
|
||||
if (!Array.isArray(d)) {
|
||||
return []
|
||||
}
|
||||
VODS = [];
|
||||
// print(d);
|
||||
d.forEach(function (it) {
|
||||
let obj = {
|
||||
vod_id: it.url || '',
|
||||
vod_name: it.title || '',
|
||||
vod_remarks: it.desc || '',
|
||||
vod_content: it.content || '',
|
||||
vod_pic: it.pic_url || it.img || '',
|
||||
};
|
||||
let keys = Object.keys(it);
|
||||
if (keys.includes('tname')) {
|
||||
obj.type_name = it.tname || '';
|
||||
}
|
||||
if (keys.includes('tid')) {
|
||||
obj.type_id = it.tid || '';
|
||||
}
|
||||
if (keys.includes('year')) {
|
||||
obj.vod_year = it.year || '';
|
||||
}
|
||||
if (keys.includes('actor')) {
|
||||
obj.vod_actor = it.actor || '';
|
||||
}
|
||||
if (keys.includes('director')) {
|
||||
obj.vod_director = it.director || '';
|
||||
}
|
||||
if (keys.includes('area')) {
|
||||
obj.vod_area = it.area || '';
|
||||
}
|
||||
VODS.push(obj);
|
||||
});
|
||||
return VODS
|
||||
}
|
||||
|
||||
function setResult2(res) {
|
||||
VODS = res.list || [];
|
||||
return VODS
|
||||
}
|
||||
|
||||
function setHomeResult(res) {
|
||||
if (!res || typeof (res) !== 'object') {
|
||||
return []
|
||||
}
|
||||
return setResult(res.list);
|
||||
}
|
||||
|
||||
// 猫了个咪
|
||||
function rc(js) {
|
||||
if (js === 'maomi_aes.js') {
|
||||
var a = CryptoJS.enc.Utf8.parse("625222f9149e961d");
|
||||
var t = CryptoJS.enc.Utf8.parse("5efdtf6060e2o330");
|
||||
return {
|
||||
De: function (word) {
|
||||
word = CryptoJS.enc.Hex.parse(word)
|
||||
return CryptoJS.AES.decrypt(CryptoJS.enc.Base64.stringify(word), a, {
|
||||
iv: t,
|
||||
mode: CryptoJS.mode.CBC,
|
||||
padding: CryptoJS.pad.Pkcs7
|
||||
}).toString(CryptoJS.enc.Utf8)
|
||||
},
|
||||
En: function (word) {
|
||||
// print(a);
|
||||
// print(word);
|
||||
var Encrypted = CryptoJS.AES.encrypt(word, a, {
|
||||
iv: t,
|
||||
mode: CryptoJS.mode.CBC,
|
||||
padding: CryptoJS.pad.Pkcs7
|
||||
});
|
||||
return Encrypted.ciphertext.toString();
|
||||
}
|
||||
};
|
||||
}
|
||||
return {};
|
||||
}
|
||||
|
||||
// 千万不要用for in 推荐 forEach (for in 会打乱顺序)
|
||||
//猫函数
|
||||
function maoss(jxurl, ref, key) {
|
||||
fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
eval(getCryptoJS());
|
||||
try {
|
||||
var getVideoInfo = function (text) {
|
||||
return CryptoJS.AES.decrypt(text, key, {iv: iv, padding: CryptoJS.pad.Pkcs7}).toString(CryptoJS.enc.Utf8);
|
||||
};
|
||||
var token_key = key == undefined ? 'dvyYRQlnPRCMdQSe' : key;
|
||||
if (ref) {
|
||||
var html = request(jxurl, {
|
||||
headers: {
|
||||
'Referer': ref
|
||||
}
|
||||
});
|
||||
} else {
|
||||
var html = request(jxurl);
|
||||
}
|
||||
// print(html);
|
||||
if (html.indexOf('&btwaf=') != -1) {
|
||||
html = request(jxurl + '&btwaf' + html.match(/&btwaf(.*?)"/)[1], {
|
||||
headers: {
|
||||
'Referer': ref
|
||||
}
|
||||
})
|
||||
}
|
||||
var token_iv = html.split('_token = "')[1].split('"')[0];
|
||||
var key = CryptoJS.enc.Utf8.parse(token_key);
|
||||
var iv = CryptoJS.enc.Utf8.parse(token_iv);
|
||||
// log("iv:"+iv);
|
||||
// log(html);
|
||||
// print(key);
|
||||
// print(iv);
|
||||
eval(html.match(/var config = {[\s\S]*?}/)[0] + '');
|
||||
// config.url = config.url.replace(/,/g,'');
|
||||
// print(config.url);
|
||||
if (!config.url.startsWith('http')) {
|
||||
//config.url = decodeURIComponent(AES(config.url, key, iv));
|
||||
config.url = CryptoJS.AES.decrypt(config.url, key, {
|
||||
iv: iv,
|
||||
padding: CryptoJS.pad.Pkcs7
|
||||
}).toString(CryptoJS.enc.Utf8)
|
||||
}
|
||||
return config.url;
|
||||
} catch (e) {
|
||||
return '';
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 将base64编码进行url编译
|
||||
* @param str
|
||||
* @returns {string}
|
||||
*/
|
||||
function urlencode(str) {
|
||||
str = (str + '').toString();
|
||||
return encodeURIComponent(str).replace(/!/g, '%21').replace(/'/g, '%27').replace(/\(/g, '%28').replace(/\)/g, '%29').replace(/\*/g, '%2A').replace(/%20/g, '+');
|
||||
}
|
||||
|
||||
/**
|
||||
* url编码,同 encodeURI
|
||||
* @param str
|
||||
* @returns {string}
|
||||
*/
|
||||
function encodeUrl(str) {
|
||||
if (typeof (encodeURI) == 'function') {
|
||||
return encodeURI(str)
|
||||
} else {
|
||||
str = (str + '').toString();
|
||||
return encodeURIComponent(str).replace(/%2F/g, '/').replace(/%3F/g, '?').replace(/%3A/g, ':').replace(/%40/g, '@').replace(/%3D/g, '=').replace(/%3A/g, ':').replace(/%2C/g, ',').replace(/%2B/g, '+').replace(/%24/g, '$');
|
||||
}
|
||||
}
|
||||
|
||||
function base64Encode(text) {
|
||||
return CryptoJS.enc.Base64.stringify(CryptoJS.enc.Utf8.parse(text));
|
||||
// return text
|
||||
}
|
||||
|
||||
function base64Decode(text) {
|
||||
return CryptoJS.enc.Utf8.stringify(CryptoJS.enc.Base64.parse(text));
|
||||
// return text
|
||||
}
|
||||
|
||||
function md5(text) {
|
||||
return CryptoJS.MD5(text).toString();
|
||||
}
|
||||
|
||||
function uint8ArrayToBase64(uint8Array) {
|
||||
let binaryString = String.fromCharCode.apply(null, Array.from(uint8Array));
|
||||
return btoa(binaryString);
|
||||
}
|
||||
|
||||
function Utf8ArrayToStr(array) {
|
||||
var out, i, len, c;
|
||||
var char2, char3;
|
||||
out = "";
|
||||
len = array.length;
|
||||
i = 0;
|
||||
while (i < len) {
|
||||
c = array[i++];
|
||||
switch (c >> 4) {
|
||||
case 0:
|
||||
case 1:
|
||||
case 2:
|
||||
case 3:
|
||||
case 4:
|
||||
case 5:
|
||||
case 6:
|
||||
case 7:
|
||||
out += String.fromCharCode(c);
|
||||
break;
|
||||
case 12:
|
||||
case 13:
|
||||
char2 = array[i++];
|
||||
out += String.fromCharCode(((c & 0x1f) << 6) | (char2 & 0x3f));
|
||||
break;
|
||||
case 14:
|
||||
char2 = array[i++];
|
||||
char3 = array[i++];
|
||||
out += String.fromCharCode(
|
||||
((c & 0x0f) << 12) | ((char2 & 0x3f) << 6) | ((char3 & 0x3f) << 0)
|
||||
);
|
||||
break;
|
||||
}
|
||||
}
|
||||
return out;
|
||||
}
|
||||
|
||||
/**
|
||||
* gzip压缩base64|压缩率80%+
|
||||
* @param str
|
||||
* @returns {string}
|
||||
*/
|
||||
function gzip(str) {
|
||||
let arr = pako.gzip(str, {
|
||||
// to: 'string'
|
||||
});
|
||||
return uint8ArrayToBase64(arr)
|
||||
}
|
||||
|
||||
/**
|
||||
* gzip解压base64数据
|
||||
* @param b64Data
|
||||
* @returns {string}
|
||||
*/
|
||||
function ungzip(b64Data) {
|
||||
let strData = atob(b64Data);
|
||||
const charData = strData.split('').map(function (x) {
|
||||
return x.charCodeAt(0);
|
||||
});
|
||||
const binData = new Uint8Array(charData);
|
||||
const data = pako.inflate(binData);
|
||||
return Utf8ArrayToStr(data);
|
||||
}
|
||||
|
||||
/**
|
||||
* 字符串按指定编码
|
||||
* @param input
|
||||
* @param encoding
|
||||
* @returns {*}
|
||||
*/
|
||||
function encodeStr(input, encoding) {
|
||||
encoding = encoding || 'gbk';
|
||||
if (encoding.startsWith('gb')) {
|
||||
const strTool = gbkTool();
|
||||
input = strTool.encode(input);
|
||||
}
|
||||
return input
|
||||
}
|
||||
|
||||
/**
|
||||
* 字符串指定解码
|
||||
* @param input
|
||||
* @param encoding
|
||||
* @returns {*}
|
||||
*/
|
||||
function decodeStr(input, encoding) {
|
||||
encoding = encoding || 'gbk';
|
||||
if (encoding.startsWith('gb')) {
|
||||
const strTool = gbkTool();
|
||||
input = strTool.decode(input);
|
||||
}
|
||||
return input
|
||||
}
|
||||
|
||||
function getCryptoJS() {
|
||||
// return request('https://ghproxy.net/https://raw.githubusercontent.com/hjdhnx/dr_py/main/libs/crypto-hiker.js');
|
||||
return 'console.log("CryptoJS已装载");'
|
||||
}
|
||||
|
||||
// 封装的RSA加解密类
|
||||
const RSA = {
|
||||
decode: function (data, key, option) {
|
||||
option = option || {};
|
||||
if (typeof (JSEncrypt) === 'function') {
|
||||
let chunkSize = option.chunkSize || 117; // 默认分段长度为117
|
||||
let privateKey = this.getPrivateKey(key); // 获取私钥
|
||||
const decryptor = new JSEncrypt(); //创建解密对象实例
|
||||
decryptor.setPrivateKey(privateKey); //设置秘钥
|
||||
let uncrypted = '';
|
||||
// uncrypted = decryptor.decrypt(data);
|
||||
uncrypted = decryptor.decryptUnicodeLong(data);
|
||||
return uncrypted;
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
},
|
||||
encode: function (data, key, option) {
|
||||
option = option || {};
|
||||
if (typeof (JSEncrypt) === 'function') {
|
||||
let chunkSize = option.chunkSize || 117; // 默认分段长度为117
|
||||
let publicKey = this.getPublicKey(key); // 获取公钥
|
||||
const encryptor = new JSEncrypt();
|
||||
encryptor.setPublicKey(publicKey); // 设置公钥
|
||||
let encrypted = ''; // 加密结果
|
||||
// const textLen = data.length; // 待加密文本长度
|
||||
// let offset = 0; // 分段偏移量
|
||||
// // 分段加密
|
||||
// while (offset < textLen) {
|
||||
// let chunk = data.slice(offset, chunkSize); // 提取分段数据
|
||||
// let enc = encryptor.encrypt(chunk); // 加密分段数据
|
||||
// encrypted += enc; // 连接加密结果
|
||||
// offset += chunkSize; // 更新偏移量
|
||||
// }
|
||||
encrypted = encryptor.encryptUnicodeLong(data);
|
||||
return encrypted
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
},
|
||||
fixKey(key, prefix, endfix) {
|
||||
if (!key.includes(prefix)) {
|
||||
key = prefix + key;
|
||||
}
|
||||
if (!key.includes(endfix)) {
|
||||
key += endfix
|
||||
}
|
||||
return key
|
||||
},
|
||||
getPrivateKey(key) {
|
||||
let prefix = '-----BEGIN RSA PRIVATE KEY-----';
|
||||
let endfix = '-----END RSA PRIVATE KEY-----';
|
||||
return this.fixKey(key, prefix, endfix);
|
||||
},
|
||||
getPublicKey(key) {
|
||||
let prefix = '-----BEGIN PUBLIC KEY-----';
|
||||
let endfix = '-----END PUBLIC KEY-----';
|
||||
return this.fixKey(key, prefix, endfix);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* 获取壳子返回的代理地址
|
||||
* @returns {string|*}
|
||||
*/
|
||||
function getProxyUrl() {
|
||||
if (typeof (getProxy) === 'function') {//判断壳子里有getProxy函数就执行取返回结果。否则取默认的本地
|
||||
return getProxy(true)
|
||||
} else {
|
||||
return 'http://127.0.0.1:9978/proxy?do=js'
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 根据正则处理原始m3u8里的广告ts片段,自动修复相对链接
|
||||
* @param m3u8_text m3u8原始文本,里面是最末级的只含ts片段的。不支持嵌套m3u8链接
|
||||
* @param m3u8_url m3u8原始地址
|
||||
* @param ad_remove 正则表达式如: reg:/video/adjump(.*?)ts
|
||||
* @returns {string|DocumentFragment|*|string}
|
||||
*/
|
||||
function fixAdM3u8(m3u8_text, m3u8_url, ad_remove) {
|
||||
if ((!m3u8_text && !m3u8_url) || (!m3u8_text && m3u8_url && !m3u8_url.startsWith('http'))) {
|
||||
return ''
|
||||
}
|
||||
if (!m3u8_text) {
|
||||
log('m3u8_url:' + m3u8_url);
|
||||
m3u8_text = request(m3u8_url);
|
||||
}
|
||||
log('len(m3u8_text):' + m3u8_text.length);
|
||||
if (!ad_remove) {
|
||||
return m3u8_text
|
||||
}
|
||||
if (ad_remove.startsWith('reg:')) {
|
||||
ad_remove = ad_remove.slice(4)
|
||||
} else if (ad_remove.startsWith('js:')) {
|
||||
ad_remove = ad_remove.slice(3)
|
||||
}
|
||||
let m3u8_start = m3u8_text.slice(0, m3u8_text.indexOf('#EXTINF')).trim();
|
||||
let m3u8_body = m3u8_text.slice(m3u8_text.indexOf('#EXTINF'), m3u8_text.indexOf('#EXT-X-ENDLIST')).trim();
|
||||
let m3u8_end = m3u8_text.slice(m3u8_text.indexOf('#EXT-X-ENDLIST')).trim();
|
||||
let murls = [];
|
||||
let m3_body_list = m3u8_body.split('\n');
|
||||
let m3_len = m3_body_list.length;
|
||||
let i = 0;
|
||||
while (i < m3_len) {
|
||||
let mi = m3_body_list[i];
|
||||
let mi_1 = m3_body_list[i + 1];
|
||||
if (mi.startsWith('#EXTINF')) {
|
||||
murls.push([mi, mi_1].join('&'));
|
||||
i += 2
|
||||
} else if (mi.startsWith('#EXT-X-DISCONTINUITY')) {
|
||||
let mi_2 = m3_body_list[i + 2];
|
||||
murls.push([mi, mi_1, mi_2].join('&'));
|
||||
i += 3
|
||||
} else {
|
||||
break;
|
||||
}
|
||||
}
|
||||
let new_m3u8_body = [];
|
||||
for (let murl of murls) {
|
||||
if (ad_remove && new RegExp(ad_remove).test(murl)) {
|
||||
|
||||
} else {
|
||||
let murl_list = murl.split('&');
|
||||
if (!murl_list[murl_list.length - 1].startsWith('http') && m3u8_url.startsWith('http')) {
|
||||
murl_list[murl_list.length - 1] = urljoin(m3u8_url, murl_list[murl_list.length - 1]);
|
||||
}
|
||||
murl_list.forEach((it) => {
|
||||
new_m3u8_body.push(it);
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
new_m3u8_body = new_m3u8_body.join('\n').trim();
|
||||
m3u8_text = [m3u8_start, new_m3u8_body, m3u8_end].join('\n').trim();
|
||||
return m3u8_text
|
||||
}
|
||||
|
||||
/**
|
||||
* 智能对比去除广告。支持嵌套m3u8。只需要传入播放地址
|
||||
* @param m3u8_url m3u8播放地址
|
||||
* @param headers 自定义访问m3u8的请求头,可以不传
|
||||
* @returns {string}
|
||||
*/
|
||||
function fixAdM3u8Ai(m3u8_url, headers) {
|
||||
let ts = new Date().getTime();
|
||||
let option = headers ? {headers: headers} : {};
|
||||
|
||||
function b(s1, s2) {
|
||||
let i = 0;
|
||||
while (i < s1.length) {
|
||||
if (s1[i] !== s2[i]) {
|
||||
break
|
||||
}
|
||||
i++
|
||||
}
|
||||
return i;
|
||||
}
|
||||
|
||||
function reverseString(str) {
|
||||
return str.split('').reverse().join('');
|
||||
}
|
||||
|
||||
//log('播放的地址:' + m3u8_url);
|
||||
let m3u8 = request(m3u8_url, option);
|
||||
//log('m3u8处理前:' + m3u8);
|
||||
m3u8 = m3u8.trim().split('\n').map(it => it.startsWith('#') ? it : urljoin(m3u8_url, it)).join('\n');
|
||||
//log('m3u8处理后:============:' + m3u8);
|
||||
// 获取嵌套m3u8地址
|
||||
m3u8 = m3u8.replace(/\n\n/ig, '\n');//删除多余的换行符
|
||||
let last_url = m3u8.split('\n').slice(-1)[0];
|
||||
if (last_url.length < 5) {
|
||||
last_url = m3u8.split('\n').slice(-2)[0];
|
||||
}
|
||||
|
||||
if (last_url.includes('.m3u8') && last_url !== m3u8_url) {
|
||||
m3u8_url = urljoin2(m3u8_url, last_url);
|
||||
log('嵌套的m3u8_url:' + m3u8_url);
|
||||
m3u8 = request(m3u8_url, option);
|
||||
}
|
||||
//log('----处理有广告的地址----');
|
||||
let s = m3u8.trim().split('\n').filter(it => it.trim()).join('\n');
|
||||
let ss = s.split('\n')
|
||||
//找出第一条播放地址
|
||||
//let firststr = ss.find(x => !x.startsWith('#'));
|
||||
let firststr = '';
|
||||
let maxl = 0;//最大相同字符
|
||||
let kk = 0;
|
||||
let kkk = 2;
|
||||
let secondstr = '';
|
||||
for (let i = 0; i < ss.length; i++) {
|
||||
let s = ss[i];
|
||||
if (!s.startsWith("#")) {
|
||||
if (kk == 0) firststr = s;
|
||||
if (kk == 1) maxl = b(firststr, s);
|
||||
if (kk > 1) {
|
||||
if (maxl > b(firststr, s)) {
|
||||
if (secondstr.length < 5) secondstr = s;
|
||||
kkk = kkk + 2;
|
||||
} else {
|
||||
maxl = b(firststr, s);
|
||||
kkk++;
|
||||
}
|
||||
}
|
||||
kk++;
|
||||
if (kk >= 20) break;
|
||||
}
|
||||
}
|
||||
if (kkk > 30) firststr = secondstr;
|
||||
let firststrlen = firststr.length;
|
||||
//log('字符串长度:' + firststrlen);
|
||||
let ml = Math.round(ss.length / 2).toString().length;//取数据的长度的位数
|
||||
//log('数据条数的长度:' + ml);
|
||||
//找出最后一条播放地址
|
||||
let maxc = 0;
|
||||
let laststr = ss.toReversed().find((x) => {
|
||||
if (!x.startsWith('#')) {
|
||||
let k = b(reverseString(firststr), reverseString(x));
|
||||
maxl = b(firststr, x);
|
||||
maxc++;
|
||||
if (firststrlen - maxl <= ml + k || maxc > 10) {
|
||||
return true
|
||||
}
|
||||
}
|
||||
return false
|
||||
});
|
||||
log('最后一条切片:' + laststr);
|
||||
//log('最小相同字符长度:' + maxl);
|
||||
let ad_urls = [];
|
||||
for (let i = 0; i < ss.length; i++) {
|
||||
let s = ss[i];
|
||||
if (!s.startsWith('#')) {
|
||||
if (b(firststr, s) < maxl) {
|
||||
ad_urls.push(s); // 广告地址加入列表
|
||||
ss.splice(i - 1, 2);
|
||||
i = i - 2;
|
||||
} else {
|
||||
ss[i] = urljoin(m3u8_url, s);
|
||||
}
|
||||
} else {
|
||||
ss[i] = s.replace(/URI=\"(.*)\"/, 'URI=\"' + urljoin(m3u8_url, '$1') + '\"');
|
||||
}
|
||||
}
|
||||
log('处理的m3u8地址:' + m3u8_url);
|
||||
log('----广告地址----');
|
||||
log(ad_urls);
|
||||
m3u8 = ss.join('\n');
|
||||
//log('处理完成');
|
||||
log('处理耗时:' + (new Date().getTime() - ts).toString());
|
||||
return m3u8
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 强制正序算法
|
||||
* @param lists 待正序列表
|
||||
* @param key 正序键
|
||||
* @param option 单个元素处理函数
|
||||
* @returns {*}
|
||||
*/
|
||||
function forceOrder(lists, key, option) {
|
||||
let start = Math.floor(lists.length / 2);
|
||||
let end = Math.min(lists.length - 1, start + 1);
|
||||
if (start >= end) {
|
||||
return lists;
|
||||
}
|
||||
let first = lists[start];
|
||||
let second = lists[end];
|
||||
if (key) {
|
||||
try {
|
||||
first = first[key];
|
||||
second = second[key];
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
if (option && typeof (option) === 'function') {
|
||||
try {
|
||||
first = option(first);
|
||||
second = option(second);
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
first += '';
|
||||
second += '';
|
||||
// console.log(first,second);
|
||||
if (first.match(/(\d+)/) && second.match(/(\d+)/)) {
|
||||
let num1 = Number(first.match(/(\d+)/)[1]);
|
||||
let num2 = Number(second.match(/(\d+)/)[1]);
|
||||
if (num1 > num2) {
|
||||
lists.reverse();
|
||||
}
|
||||
}
|
||||
return lists
|
||||
}
|
||||
|
||||
let VODS = [];// 一级或者搜索需要的数据列表
|
||||
let VOD = {};// 二级的单个数据
|
||||
let TABS = [];// 二级的自定义线路列表 如: TABS=['道长在线','道长在线2']
|
||||
let LISTS = [];// 二级的自定义选集播放列表 如: LISTS=[['第1集$http://1.mp4','第2集$http://2.mp4'],['第3集$http://1.mp4','第4集$http://2.mp4']]
|
||||
|
||||
/**
|
||||
* 获取链接的query请求转为js的object字典对象
|
||||
* @param url
|
||||
* @returns {{}}
|
||||
*/
|
||||
function getQuery(url) {
|
||||
try {
|
||||
if (url.indexOf('?') > -1) {
|
||||
url = url.slice(url.indexOf('?') + 1);
|
||||
}
|
||||
let arr = url.split("#")[0].split("&");
|
||||
const resObj = {};
|
||||
arr.forEach(item => {
|
||||
let arr1 = item.split("=");
|
||||
let key = arr1[0];
|
||||
let value = arr1.slice(1).join('=');
|
||||
resObj[key] = value;
|
||||
});
|
||||
return resObj;
|
||||
} catch (err) {
|
||||
log(`getQuery发生错误:${e.message}`)
|
||||
return {};
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* url拼接
|
||||
* @param fromPath 初始当前页面url
|
||||
* @param nowPath 相对当前页面url
|
||||
* @returns {*}
|
||||
*/
|
||||
function urljoin(fromPath, nowPath) {
|
||||
fromPath = fromPath || '';
|
||||
nowPath = nowPath || '';
|
||||
return joinUrl(fromPath, nowPath);
|
||||
// try {
|
||||
// // import Uri from './uri.min.js';
|
||||
// // var Uri = require('./uri.min.js');
|
||||
// // eval(request('https://cdn.bootcdn.net/ajax/libs/URI.js/1.19.11/URI.min.js'));
|
||||
// // let new_uri = URI(nowPath, fromPath);
|
||||
|
||||
// let new_uri = Uri(nowPath, fromPath);
|
||||
// new_uri = new_uri.toString();
|
||||
// // console.log(new_uri);
|
||||
// // return fromPath + nowPath
|
||||
// return new_uri
|
||||
// }
|
||||
// catch (e) {
|
||||
// console.log('urljoin发生错误:'+e.message);
|
||||
// if(nowPath.startsWith('http')){
|
||||
// return nowPath
|
||||
// }if(nowPath.startsWith('/')){
|
||||
// return getHome(fromPath)+nowPath
|
||||
// }
|
||||
// return fromPath+nowPath
|
||||
// }
|
||||
}
|
||||
|
||||
var urljoin2 = urljoin;
|
||||
|
||||
// 内置 pdfh,pdfa,pd
|
||||
const defaultParser = {
|
||||
pdfh: pdfh,
|
||||
pdfa: pdfa,
|
||||
pd: pd,
|
||||
};
|
||||
|
||||
|
||||
/**
|
||||
* pdfh原版优化,能取style属性里的图片链接
|
||||
* @param html 源码
|
||||
* @param parse 解析表达式
|
||||
* @returns {string|*}
|
||||
*/
|
||||
function pdfh2(html, parse) {
|
||||
let html2 = html;
|
||||
try {
|
||||
if (typeof (html) !== 'string') {
|
||||
html2 = html.rr(html.ele).toString();
|
||||
}
|
||||
} catch (e) {
|
||||
print(`html对象转文本发生了错误:${e.message}`);
|
||||
}
|
||||
let result = defaultParser.pdfh(html2, parse);
|
||||
let option = parse.includes('&&') ? parse.split('&&').slice(-1)[0] : parse.split(' ').slice(-1)[0];
|
||||
if (/style/.test(option.toLowerCase()) && /url\(/.test(result)) {
|
||||
try {
|
||||
result = result.match(/url\((.*?)\)/)[1];
|
||||
// 2023/07/28新增 style取内部链接自动去除首尾单双引号
|
||||
result = result.replace(/^['|"](.*)['|"]$/, "$1");
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
/**
|
||||
* pdfa原版优化,可以转换jq的html对象
|
||||
* @param html
|
||||
* @param parse
|
||||
* @returns {*}
|
||||
*/
|
||||
function pdfa2(html, parse) {
|
||||
let html2 = html;
|
||||
try {
|
||||
if (typeof (html) !== 'string') {
|
||||
html2 = html.rr(html.ele).toString();
|
||||
}
|
||||
} catch (e) {
|
||||
print(`html对象转文本发生了错误:${e.message}`);
|
||||
}
|
||||
return defaultParser.pdfa(html2, parse);
|
||||
}
|
||||
|
||||
/**
|
||||
* pd原版方法重写-增加自动urljoin
|
||||
* @param html
|
||||
* @param parse
|
||||
* @param uri
|
||||
* @returns {*}
|
||||
*/
|
||||
function pd2(html, parse, uri) {
|
||||
let ret = pdfh2(html, parse);
|
||||
if (typeof (uri) === 'undefined' || !uri) {
|
||||
uri = '';
|
||||
}
|
||||
if (DOM_CHECK_ATTR.test(parse) && !SPECIAL_URL.test(ret)) {
|
||||
if (/http/.test(ret)) {
|
||||
ret = ret.slice(ret.indexOf('http'));
|
||||
} else {
|
||||
ret = urljoin(MY_URL, ret)
|
||||
}
|
||||
}
|
||||
// MY_URL = getItem('MY_URL',MY_URL);
|
||||
// console.log(`规则${RKEY}打印MY_URL:${MY_URL},uri:${uri}`);
|
||||
return ret
|
||||
}
|
||||
|
||||
const parseTags = {
|
||||
jsp: {
|
||||
pdfh: pdfh2,
|
||||
pdfa: pdfa2,
|
||||
pd: pd2,
|
||||
},
|
||||
json: {
|
||||
pdfh(html, parse) {
|
||||
if (!parse || !parse.trim()) {
|
||||
return '';
|
||||
}
|
||||
if (typeof (html) === 'string') {
|
||||
// print('jsonpath:pdfh字符串转dict');
|
||||
html = JSON.parse(html);
|
||||
}
|
||||
parse = parse.trim();
|
||||
if (!parse.startsWith('$.')) {
|
||||
parse = '$.' + parse;
|
||||
}
|
||||
parse = parse.split('||');
|
||||
for (let ps of parse) {
|
||||
let ret = cheerio.jp(ps, html);
|
||||
if (Array.isArray(ret)) {
|
||||
ret = ret[0] || '';
|
||||
} else {
|
||||
ret = ret || ''
|
||||
}
|
||||
if (ret && typeof (ret) !== 'string') {
|
||||
ret = ret.toString();
|
||||
}
|
||||
if (ret) {
|
||||
return ret
|
||||
}
|
||||
}
|
||||
return '';
|
||||
},
|
||||
pdfa(html, parse) {
|
||||
if (!parse || !parse.trim()) {
|
||||
return '';
|
||||
}
|
||||
if (typeof (html) === 'string') {
|
||||
// print('jsonpath:pdfa字符串转dict');
|
||||
html = JSON.parse(html);
|
||||
}
|
||||
parse = parse.trim()
|
||||
if (!parse.startsWith('$.')) {
|
||||
parse = '$.' + parse;
|
||||
}
|
||||
let ret = cheerio.jp(parse, html);
|
||||
if (Array.isArray(ret) && Array.isArray(ret[0]) && ret.length === 1) {
|
||||
return ret[0] || []
|
||||
}
|
||||
return ret || []
|
||||
},
|
||||
pd(html, parse) {
|
||||
let ret = parseTags.json.pdfh(html, parse);
|
||||
if (ret) {
|
||||
return urljoin(MY_URL, ret);
|
||||
}
|
||||
return ret
|
||||
},
|
||||
},
|
||||
jq: {
|
||||
pdfh(html, parse) {
|
||||
if (!html || !parse || !parse.trim()) {
|
||||
return ''
|
||||
}
|
||||
parse = parse.trim();
|
||||
let result = defaultParser.pdfh(html, parse);
|
||||
// print(`pdfh解析${parse}=>${result}`);
|
||||
return result;
|
||||
},
|
||||
pdfa(html, parse) {
|
||||
if (!html || !parse || !parse.trim()) {
|
||||
return [];
|
||||
}
|
||||
parse = parse.trim();
|
||||
let result = defaultParser.pdfa(html, parse);
|
||||
// print(result);
|
||||
print(`pdfa解析${parse}=>${result.length}`);
|
||||
return result;
|
||||
},
|
||||
pd(html, parse, base_url) {
|
||||
if (!html || !parse || !parse.trim()) {
|
||||
return ''
|
||||
}
|
||||
parse = parse.trim();
|
||||
base_url = base_url || MY_URL;
|
||||
return defaultParser.pd(html, parse, base_url);
|
||||
},
|
||||
},
|
||||
getParse(p0) {//非js开头的情况自动获取解析标签
|
||||
if (p0.startsWith('jsp:')) {
|
||||
return this.jsp
|
||||
} else if (p0.startsWith('json:')) {
|
||||
return this.json
|
||||
} else if (p0.startsWith('jq:')) {
|
||||
return this.jq
|
||||
} else {
|
||||
return this.jq
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
const stringify = JSON.stringify;
|
||||
const jsp = parseTags.jsp;
|
||||
const jq = parseTags.jq;
|
||||
|
||||
/*** 后台需要实现的java方法并注入到js中 ***/
|
||||
|
||||
/**
|
||||
* 读取本地文件->应用程序目录
|
||||
* @param filePath
|
||||
* @returns {string}
|
||||
*/
|
||||
function readFile(filePath) {
|
||||
filePath = filePath || './uri.min.js';
|
||||
var fd = os.open(filePath);
|
||||
var buffer = new ArrayBuffer(1024);
|
||||
var len = os.read(fd, buffer, 0, 1024);
|
||||
console.log(len);
|
||||
let text = String.fromCharCode.apply(null, new Uint8Array(buffer));
|
||||
console.log(text);
|
||||
return text
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理返回的json数据
|
||||
* @param html
|
||||
* @returns {*}
|
||||
*/
|
||||
function dealJson(html) {
|
||||
try {
|
||||
// html = html.match(/[\w|\W|\s|\S]*?(\{[\w|\W|\s|\S]*\})/).group[1];
|
||||
html = html.trim();
|
||||
if (!((html.startsWith('{') && html.endsWith('}')) || (html.startsWith('[') && html.endsWith(']')))) {
|
||||
html = '{' + html.match(/.*?\{(.*)\}/m)[1] + '}';
|
||||
}
|
||||
} catch (e) {
|
||||
}
|
||||
try {
|
||||
html = JSON.parse(html);
|
||||
} catch (e) {
|
||||
}
|
||||
// console.log(typeof(html));
|
||||
return html;
|
||||
}
|
||||
|
||||
/**
|
||||
* 验证码识别逻辑,需要java实现(js没有bytes类型,无法调用后端的传递图片二进制获取验证码文本的接口)
|
||||
* @type {{api: string, classification: (function(*=): string)}}
|
||||
*/
|
||||
var OcrApi = {
|
||||
api: OCR_API,
|
||||
classification: function (img) { // img是byte类型,这里不方便搞啊
|
||||
let code = '';
|
||||
try {
|
||||
// let html = request(this.api,{data:{img:img},headers:{'User-Agent':PC_UA},'method':'POST'},true);
|
||||
// html = JSON.parse(html);
|
||||
// code = html.url||'';
|
||||
log('通过drpy_ocr验证码接口过验证...');
|
||||
let html = '';
|
||||
if (this.api.endsWith('drpy/text')) {
|
||||
html = request(this.api, {data: {img: img}, headers: {'User-Agent': PC_UA}, 'method': 'POST'}, true);
|
||||
} else {
|
||||
html = post(this.api, {body: img});
|
||||
}
|
||||
code = html || '';
|
||||
} catch (e) {
|
||||
log(`OCR识别验证码发生错误:${e.message}`)
|
||||
}
|
||||
return code
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* 验证码识别,暂未实现
|
||||
* @param url 验证码图片链接
|
||||
* @returns {string} 验证成功后的cookie
|
||||
*/
|
||||
function verifyCode(url) {
|
||||
let cnt = 0;
|
||||
let host = getHome(url);
|
||||
let cookie = '';
|
||||
while (cnt < OCR_RETRY) {
|
||||
try {
|
||||
// let obj = {headers:headers,timeout:timeout};
|
||||
let yzm_url = `${host}/index.php/verify/index.html`;
|
||||
console.log(`验证码链接:${yzm_url}`);
|
||||
let hhtml = request(yzm_url, {withHeaders: true, toBase64: true}, true);
|
||||
let json = JSON.parse(hhtml);
|
||||
if (!cookie) {
|
||||
// print(json);
|
||||
let setCk = Object.keys(json).find(it => it.toLowerCase() === 'set-cookie');
|
||||
// cookie = json['set-cookie']?json['set-cookie'].split(';')[0]:'';
|
||||
cookie = setCk ? json[setCk].split(';')[0] : '';
|
||||
}
|
||||
// console.log(hhtml);
|
||||
console.log('cookie:' + cookie);
|
||||
let img = json.body;
|
||||
// console.log(img);
|
||||
let code = OcrApi.classification(img);
|
||||
console.log(`第${cnt + 1}次验证码识别结果:${code}`);
|
||||
let submit_url = `${host}/index.php/ajax/verify_check?type=search&verify=${code}`;
|
||||
console.log(submit_url);
|
||||
let html = request(submit_url, {headers: {Cookie: cookie}, 'method': 'POST'});
|
||||
// console.log(html);
|
||||
html = JSON.parse(html);
|
||||
if (html.msg === 'ok') {
|
||||
console.log(`第${cnt + 1}次验证码提交成功`);
|
||||
return cookie // 需要返回cookie
|
||||
} else if (html.msg !== 'ok' && cnt + 1 >= OCR_RETRY) {
|
||||
cookie = ''; // 需要清空返回cookie
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(`第${cnt + 1}次验证码提交失败:${e.message}`);
|
||||
if (cnt + 1 >= OCR_RETRY) {
|
||||
cookie = '';
|
||||
}
|
||||
}
|
||||
cnt += 1
|
||||
}
|
||||
return cookie
|
||||
}
|
||||
|
||||
/**
|
||||
* 存在数据库配置表里, key字段对应值value,没有就新增,有就更新,调用此方法会清除key对应的内存缓存
|
||||
* @param k 键
|
||||
* @param v 值
|
||||
*/
|
||||
function setItem(k, v) {
|
||||
local.set(RKEY, k, v);
|
||||
console.log(`规则${RKEY}设置${k} => ${v}`)
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取数据库配置表对应的key字段的value,没有这个key就返回value默认传参.需要有缓存,第一次获取后会存在内存里
|
||||
* @param k 键
|
||||
* @param v 值
|
||||
* @returns {*}
|
||||
*/
|
||||
function getItem(k, v) {
|
||||
return local.get(RKEY, k) || v;
|
||||
}
|
||||
|
||||
/**
|
||||
* 删除数据库key对应的一条数据,并清除此key对应的内存缓存
|
||||
* @param k
|
||||
*/
|
||||
function clearItem(k) {
|
||||
local.delete(RKEY, k);
|
||||
}
|
||||
|
||||
/*** js自封装的方法 ***/
|
||||
|
||||
/**
|
||||
* 获取链接的host(带http协议的完整链接)
|
||||
* @param url 任意一个正常完整的Url,自动提取根
|
||||
* @returns {string}
|
||||
*/
|
||||
function getHome(url) {
|
||||
if (!url) {
|
||||
return ''
|
||||
}
|
||||
let tmp = url.split('//');
|
||||
url = tmp[0] + '//' + tmp[1].split('/')[0];
|
||||
try {
|
||||
url = decodeURIComponent(url);
|
||||
} catch (e) {
|
||||
}
|
||||
return url
|
||||
}
|
||||
|
||||
/**
|
||||
* get参数编译链接,类似python params字典自动拼接
|
||||
* @param url 访问链接
|
||||
* @param obj 参数字典
|
||||
* @returns {*}
|
||||
*/
|
||||
function buildUrl(url, obj) {
|
||||
obj = obj || {};
|
||||
if (url.indexOf('?') < 0) {
|
||||
url += '?'
|
||||
}
|
||||
let param_list = [];
|
||||
let keys = Object.keys(obj);
|
||||
keys.forEach(it => {
|
||||
param_list.push(it + '=' + obj[it])
|
||||
});
|
||||
let prs = param_list.join('&');
|
||||
if (keys.length > 0 && !url.endsWith('?')) {
|
||||
url += '&'
|
||||
}
|
||||
url += prs;
|
||||
return url
|
||||
}
|
||||
|
||||
/**
|
||||
* 远程依赖执行函数
|
||||
* @param url 远程js地址
|
||||
*/
|
||||
function $require(url) {
|
||||
eval(request(url));
|
||||
}
|
||||
|
||||
/**
|
||||
* 将obj所有key变小写
|
||||
* @param obj
|
||||
*/
|
||||
function keysToLowerCase(obj) {
|
||||
return Object.keys(obj).reduce((result, key) => {
|
||||
const newKey = key.toLowerCase();
|
||||
result[newKey] = obj[key]; // 如果值也是对象,可以递归调用本函数
|
||||
return result;
|
||||
}, {});
|
||||
}
|
||||
|
||||
/**
|
||||
* 海阔网页请求函数完整封装
|
||||
* @param url 请求链接
|
||||
* @param obj 请求对象 {headers:{},method:'',timeout:5000,body:'',withHeaders:false}
|
||||
* @param ocr_flag 标识此flag是用于请求ocr识别的,自动过滤content-type指定编码
|
||||
* @returns {string|string|DocumentFragment|*}
|
||||
*/
|
||||
function request(url, obj, ocr_flag) {
|
||||
ocr_flag = ocr_flag || false;
|
||||
if (typeof (obj) === 'undefined' || !obj || obj === {}) {
|
||||
if (!fetch_params || !fetch_params.headers) {
|
||||
let headers = {
|
||||
'User-Agent': MOBILE_UA,
|
||||
};
|
||||
if (rule.headers) {
|
||||
Object.assign(headers, rule.headers);
|
||||
}
|
||||
if (!fetch_params) {
|
||||
fetch_params = {};
|
||||
}
|
||||
fetch_params.headers = headers;
|
||||
}
|
||||
if (!fetch_params.headers.Referer) {
|
||||
fetch_params.headers.Referer = getHome(url)
|
||||
}
|
||||
obj = fetch_params;
|
||||
} else {
|
||||
let headers = obj.headers || {};
|
||||
let keys = Object.keys(headers).map(it => it.toLowerCase());
|
||||
if (!keys.includes('user-agent')) {
|
||||
headers['User-Agent'] = MOBILE_UA;
|
||||
// fetch_params 里存在ua则优先,否则才默认手机UA
|
||||
if (typeof (fetch_params) === 'object' && fetch_params && fetch_params.headers) {
|
||||
let fetch_headers = keysToLowerCase(fetch_params.headers);
|
||||
if (fetch_headers['user-agent']) {
|
||||
headers['User-Agent'] = fetch_headers['user-agent'];
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!keys.includes('referer')) {
|
||||
headers['Referer'] = getHome(url);
|
||||
}
|
||||
obj.headers = headers;
|
||||
}
|
||||
if (rule.encoding && rule.encoding !== 'utf-8' && !ocr_flag) {
|
||||
if (!obj.headers.hasOwnProperty('Content-Type') && !obj.headers.hasOwnProperty('content-type')) { // 手动指定了就不管
|
||||
obj.headers["Content-Type"] = 'text/html; charset=' + rule.encoding;
|
||||
}
|
||||
}
|
||||
if (typeof (obj.body) != 'undefined' && obj.body && typeof (obj.body) === 'string') {
|
||||
// let data = {};
|
||||
// obj.body.split('&').forEach(it=>{
|
||||
// data[it.split('=')[0]] = it.split('=')[1]
|
||||
// });
|
||||
// obj.data = data;
|
||||
// delete obj.body
|
||||
|
||||
// 传body加 "Content-Type":"application/x-www-form-urlencoded;" 即可post form
|
||||
if (!obj.headers.hasOwnProperty('Content-Type') && !obj.headers.hasOwnProperty('content-type')) { // 手动指定了就不管
|
||||
obj.headers["Content-Type"] = 'application/x-www-form-urlencoded; charset=' + rule.encoding;
|
||||
}
|
||||
} else if (typeof (obj.body) != 'undefined' && obj.body && typeof (obj.body) === 'object') {
|
||||
obj.data = obj.body;
|
||||
delete obj.body
|
||||
}
|
||||
if (!url) {
|
||||
return obj.withHeaders ? '{}' : ''
|
||||
}
|
||||
if (obj.toBase64) { // 返回base64,用于请求图片
|
||||
obj.buffer = 2;
|
||||
delete obj.toBase64
|
||||
}
|
||||
if (obj.redirect === false) {
|
||||
obj.redirect = 0;
|
||||
}
|
||||
console.log(JSON.stringify(obj.headers));
|
||||
// console.log('request:'+url+' obj:'+JSON.stringify(obj));
|
||||
console.log('request:' + url + `|method:${obj.method || 'GET'}|body:${obj.body || ''}`);
|
||||
let res = req(url, obj);
|
||||
let html = res.content || '';
|
||||
// console.log(html);
|
||||
if (obj.withHeaders) {
|
||||
let htmlWithHeaders = res.headers;
|
||||
htmlWithHeaders.body = html;
|
||||
return JSON.stringify(htmlWithHeaders);
|
||||
} else {
|
||||
return html
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 快捷post请求
|
||||
* @param url 地址
|
||||
* @param obj 对象
|
||||
* @returns {string|DocumentFragment|*}
|
||||
*/
|
||||
function post(url, obj) {
|
||||
obj = obj || {};
|
||||
obj.method = 'POST';
|
||||
return request(url, obj);
|
||||
}
|
||||
|
||||
/**
|
||||
* 快捷获取特殊地址cookie|一般用作搜索过验证
|
||||
* 用法 let {cookie,html} = reqCookie(url);
|
||||
* @param url 能返回cookie的地址
|
||||
* @param obj 常规请求参数
|
||||
* @param all_cookie 返回全部cookie.默认false只返回第一个,一般是PhpSessionId
|
||||
* @returns {{cookie: string, html: (*|string|DocumentFragment)}}
|
||||
*/
|
||||
function reqCookie(url, obj, all_cookie) {
|
||||
obj = obj || {};
|
||||
obj.withHeaders = true;
|
||||
all_cookie = all_cookie || false;
|
||||
let html = request(url, obj);
|
||||
let json = JSON.parse(html);
|
||||
let setCk = Object.keys(json).find(it => it.toLowerCase() === 'set-cookie');
|
||||
let cookie = setCk ? json[setCk] : '';
|
||||
if (Array.isArray(cookie)) {
|
||||
cookie = cookie.join(';')
|
||||
}
|
||||
if (!all_cookie) {
|
||||
cookie = cookie.split(';')[0];
|
||||
}
|
||||
html = json.body;
|
||||
return {
|
||||
cookie,
|
||||
html
|
||||
}
|
||||
}
|
||||
|
||||
fetch = request;
|
||||
print = function (data) {
|
||||
data = data || '';
|
||||
if (typeof (data) == 'object' && Object.keys(data).length > 0) {
|
||||
try {
|
||||
data = JSON.stringify(data);
|
||||
console.log(data);
|
||||
} catch (e) {
|
||||
// console.log('print:'+e.message);
|
||||
console.log(typeof (data) + ':' + data.length);
|
||||
return
|
||||
}
|
||||
} else if (typeof (data) == 'object' && Object.keys(data).length < 1) {
|
||||
console.log('null object');
|
||||
} else {
|
||||
console.log(data);
|
||||
}
|
||||
}
|
||||
log = print;
|
||||
|
||||
/**
|
||||
* 检查宝塔验证并自动跳过获取正确源码
|
||||
* @param html 之前获取的html
|
||||
* @param url 之前的来源url
|
||||
* @param obj 来源obj
|
||||
* @returns {string|DocumentFragment|*}
|
||||
*/
|
||||
function checkHtml(html, url, obj) {
|
||||
if (/\?btwaf=/.test(html)) {
|
||||
let btwaf = html.match(/btwaf(.*?)"/)[1];
|
||||
url = url.split('#')[0] + '?btwaf' + btwaf;
|
||||
print('宝塔验证访问链接:' + url);
|
||||
html = request(url, obj);
|
||||
}
|
||||
return html
|
||||
}
|
||||
|
||||
/**
|
||||
* 带一次宝塔验证的源码获取
|
||||
* @param url 请求链接
|
||||
* @param obj 请求参数
|
||||
* @returns {string|DocumentFragment}
|
||||
*/
|
||||
function getCode(url, obj) {
|
||||
let html = request(url, obj);
|
||||
html = checkHtml(html, url, obj);
|
||||
return html
|
||||
}
|
||||
|
||||
/**
|
||||
* 源rule专用的请求方法,自动注入cookie
|
||||
* @param url 请求链接
|
||||
* @returns {string|DocumentFragment}
|
||||
*/
|
||||
function getHtml(url) {
|
||||
let obj = {};
|
||||
if (rule.headers) {
|
||||
obj.headers = rule.headers;
|
||||
}
|
||||
let cookie = getItem(RULE_CK, '');
|
||||
if (cookie) {
|
||||
// log('有cookie:'+cookie);
|
||||
if (obj.headers && !Object.keys(obj.headers).map(it => it.toLowerCase()).includes('cookie')) {
|
||||
log('历史无cookie,新增过验证后的cookie');
|
||||
obj.headers['Cookie'] = cookie;
|
||||
} else if (obj.headers && obj.headers.cookie && obj.headers.cookie !== cookie) {
|
||||
obj.headers['Cookie'] = cookie;
|
||||
log('历史有小写过期的cookie,更新过验证后的cookie');
|
||||
} else if (obj.headers && obj.headers.Cookie && obj.headers.Cookie !== cookie) {
|
||||
obj.headers['Cookie'] = cookie;
|
||||
log('历史有大写过期的cookie,更新过验证后的cookie');
|
||||
} else if (!obj.headers) {
|
||||
obj.headers = {Cookie: cookie};
|
||||
log('历史无headers,更新过验证后的含cookie的headers');
|
||||
}
|
||||
}
|
||||
let html = getCode(url, obj);
|
||||
return html
|
||||
}
|
||||
|
||||
/**
|
||||
* 首页分类解析,筛选暂未实现
|
||||
* @param homeObj 首页传参对象
|
||||
* @returns {string}
|
||||
*/
|
||||
function homeParse(homeObj) {
|
||||
fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
let classes = [];
|
||||
if (homeObj.class_name && homeObj.class_url) {
|
||||
let names = homeObj.class_name.split('&');
|
||||
let urls = homeObj.class_url.split('&');
|
||||
let cnt = Math.min(names.length, urls.length);
|
||||
for (let i = 0; i < cnt; i++) {
|
||||
classes.push({
|
||||
'type_id': urls[i],
|
||||
'type_name': names[i]
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
if (homeObj.class_parse) {
|
||||
if (homeObj.class_parse.startsWith('js:')) {
|
||||
var input = homeObj.MY_URL;
|
||||
try {
|
||||
eval(homeObj.class_parse.replace('js:', ''));
|
||||
if (Array.isArray(input)) {
|
||||
classes = input;
|
||||
}
|
||||
} catch (e) {
|
||||
log(`通过js动态获取分类发生了错误:${e.message}`);
|
||||
}
|
||||
} else {
|
||||
let p = homeObj.class_parse.split(';');
|
||||
let p0 = p[0];
|
||||
let _ps = parseTags.getParse(p0);
|
||||
let is_json = p0.startsWith('json:');
|
||||
_pdfa = _ps.pdfa;
|
||||
_pdfh = _ps.pdfh;
|
||||
_pd = _ps.pd;
|
||||
MY_URL = rule.url;
|
||||
if (is_json) {
|
||||
try {
|
||||
let cms_cate_url = homeObj.MY_URL.replace('ac=detail', 'ac=list');
|
||||
let html = homeObj.home_html || getHtml(cms_cate_url);
|
||||
if (html) {
|
||||
if (cms_cate_url === homeObj.MY_URL) {
|
||||
homeHtmlCache = html;
|
||||
}
|
||||
let list = _pdfa(html, p0.replace('json:', ''));
|
||||
if (list && list.length > 0) {
|
||||
classes = list;
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e.message);
|
||||
}
|
||||
} else if (p.length >= 3 && !is_json) { // 可以不写正则
|
||||
try {
|
||||
let html = homeObj.home_html || getHtml(homeObj.MY_URL);
|
||||
if (html) {
|
||||
homeHtmlCache = html;
|
||||
let list = _pdfa(html, p0);
|
||||
if (list && list.length > 0) {
|
||||
list.forEach((it, idex) => {
|
||||
try {
|
||||
let name = _pdfh(it, p[1]);
|
||||
if (homeObj.cate_exclude && (new RegExp(homeObj.cate_exclude).test(name))) {
|
||||
return;
|
||||
}
|
||||
// let url = pdfh(it, p[2]);
|
||||
let url = _pd(it, p[2]);
|
||||
if (p.length > 3 && p[3] && !homeObj.home_html) {
|
||||
let exp = new RegExp(p[3]);
|
||||
url = url.match(exp)[1];
|
||||
}
|
||||
|
||||
classes.push({
|
||||
'type_id': url.trim(),
|
||||
'type_name': name.trim()
|
||||
});
|
||||
} catch (e) {
|
||||
console.log(`分类列表定位第${idex}个元素正常报错:${e.message}`);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e.message);
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
// 排除分类
|
||||
classes = classes.filter(it => !homeObj.cate_exclude || !(new RegExp(homeObj.cate_exclude).test(it.type_name)));
|
||||
let resp = {
|
||||
'class': classes
|
||||
};
|
||||
if (homeObj.filter) {
|
||||
resp.filters = homeObj.filter;
|
||||
}
|
||||
console.log(JSON.stringify(resp));
|
||||
return JSON.stringify(resp);
|
||||
|
||||
}
|
||||
|
||||
/**
|
||||
* 推荐和搜索单字段继承一级
|
||||
* @param p 推荐或搜索的解析分割;列表
|
||||
* @param pn 自身列表序号
|
||||
* @param pp 一级解析分割;列表
|
||||
* @param ppn 继承一级序号
|
||||
* @returns {*}
|
||||
*/
|
||||
function getPP(p, pn, pp, ppn) {
|
||||
try {
|
||||
let ps = p[pn] === '*' && pp.length > ppn ? pp[ppn] : p[pn]
|
||||
return ps
|
||||
} catch (e) {
|
||||
return ''
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 首页推荐列表解析
|
||||
* @param homeVodObj
|
||||
* @returns {string}
|
||||
*/
|
||||
function homeVodParse(homeVodObj) {
|
||||
fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
let d = [];
|
||||
MY_URL = homeVodObj.homeUrl;
|
||||
// setItem('MY_URL',MY_URL);
|
||||
console.log(MY_URL);
|
||||
let t1 = (new Date()).getTime();
|
||||
let p = homeVodObj.推荐;
|
||||
print('p:' + p);
|
||||
if (p === '*' && rule.一级) {
|
||||
p = rule.一级;
|
||||
homeVodObj.double = false;
|
||||
}
|
||||
if (!p || typeof (p) !== 'string') {
|
||||
return '{}'
|
||||
}
|
||||
p = p.trim();
|
||||
let pp = rule.一级 ? rule.一级.split(';') : [];
|
||||
if (p.startsWith('js:')) {
|
||||
const TYPE = 'home';
|
||||
var input = MY_URL;
|
||||
HOST = rule.host;
|
||||
eval(p.replace('js:', ''));
|
||||
d = VODS;
|
||||
} else {
|
||||
p = p.split(';');
|
||||
if (!homeVodObj.double && p.length < 5) {
|
||||
return '{}'
|
||||
} else if (homeVodObj.double && p.length < 6) {
|
||||
return '{}'
|
||||
}
|
||||
let p0 = getPP(p, 0, pp, 0)
|
||||
let _ps = parseTags.getParse(p0);
|
||||
_pdfa = _ps.pdfa;
|
||||
_pdfh = _ps.pdfh;
|
||||
_pd = _ps.pd;
|
||||
let is_json = p0.startsWith('json:');
|
||||
p0 = p0.replace(/^(jsp:|json:|jq:)/, '');
|
||||
// print(p[0]);
|
||||
let html = homeHtmlCache || getHtml(MY_URL);
|
||||
homeHtmlCache = undefined;
|
||||
if (is_json) {
|
||||
// print('是json,开始处理');
|
||||
html = dealJson(html);
|
||||
}
|
||||
try {
|
||||
console.log('double:' + homeVodObj.double);
|
||||
if (homeVodObj.double) {
|
||||
let items = _pdfa(html, p0);
|
||||
// console.log(items.length);
|
||||
let p1 = getPP(p, 1, pp, 0);
|
||||
let p2 = getPP(p, 2, pp, 1);
|
||||
let p3 = getPP(p, 3, pp, 2);
|
||||
let p4 = getPP(p, 4, pp, 3);
|
||||
let p5 = getPP(p, 5, pp, 4);
|
||||
let p6 = getPP(p, 6, pp, 5);
|
||||
for (let item of items) {
|
||||
// console.log(p[1]);
|
||||
let items2 = _pdfa(item, p1);
|
||||
// console.log(items2.length);
|
||||
for (let item2 of items2) {
|
||||
try {
|
||||
let title = _pdfh(item2, p2);
|
||||
let img = '';
|
||||
try {
|
||||
img = _pd(item2, p3);
|
||||
} catch (e) {
|
||||
}
|
||||
let desc = '';
|
||||
try {
|
||||
desc = _pdfh(item2, p4);
|
||||
} catch (e) {
|
||||
}
|
||||
let links = [];
|
||||
for (let _p5 of p5.split('+')) {
|
||||
let link = !homeVodObj.detailUrl ? _pd(item2, _p5, MY_URL) : _pdfh(item2, _p5);
|
||||
links.push(link);
|
||||
}
|
||||
let content;
|
||||
if (p.length > 6 && p[6]) {
|
||||
content = _pdfh(item2, p6);
|
||||
} else {
|
||||
content = '';
|
||||
}
|
||||
let vid = links.join('$');
|
||||
if (rule.二级 === '*') {
|
||||
vid = vid + '@@' + title + '@@' + img;
|
||||
}
|
||||
let vod = {
|
||||
vod_name: title,
|
||||
vod_pic: img,
|
||||
vod_remarks: desc,
|
||||
vod_content: content,
|
||||
vod_id: vid
|
||||
};
|
||||
// print(vod);
|
||||
d.push(vod);
|
||||
} catch (e) {
|
||||
console.log(`首页列表双层定位处理发生错误:${e.message}`);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
} else {
|
||||
let items = _pdfa(html, p0);
|
||||
let p1 = getPP(p, 1, pp, 1);
|
||||
let p2 = getPP(p, 2, pp, 2);
|
||||
let p3 = getPP(p, 3, pp, 3);
|
||||
let p4 = getPP(p, 4, pp, 4);
|
||||
let p5 = getPP(p, 5, pp, 5);
|
||||
|
||||
for (let item of items) {
|
||||
try {
|
||||
let title = _pdfh(item, p1);
|
||||
let img = '';
|
||||
try {
|
||||
img = _pd(item, p2, MY_URL);
|
||||
} catch (e) {
|
||||
}
|
||||
let desc = '';
|
||||
try {
|
||||
desc = _pdfh(item, p3);
|
||||
} catch (e) {
|
||||
}
|
||||
let links = [];
|
||||
for (let _p5 of p4.split('+')) {
|
||||
let link = !homeVodObj.detailUrl ? _pd(item, _p5, MY_URL) : _pdfh(item, _p5);
|
||||
links.push(link);
|
||||
}
|
||||
let content;
|
||||
if (p.length > 5 && p[5]) {
|
||||
content = _pdfh(item, p5);
|
||||
} else {
|
||||
content = ''
|
||||
}
|
||||
let vid = links.join('$');
|
||||
if (rule.二级 === '*') {
|
||||
vid = vid + '@@' + title + '@@' + img;
|
||||
}
|
||||
let vod = {
|
||||
vod_name: title,
|
||||
vod_pic: img,
|
||||
vod_remarks: desc,
|
||||
vod_content: content,
|
||||
vod_id: vid
|
||||
};
|
||||
d.push(vod);
|
||||
|
||||
} catch (e) {
|
||||
console.log(`首页列表单层定位处理发生错误:${e.message}`);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
} catch (e) {
|
||||
|
||||
}
|
||||
}
|
||||
let t2 = (new Date()).getTime();
|
||||
console.log('加载首页推荐耗时:' + (t2 - t1) + '毫秒');
|
||||
// console.log(JSON.stringify(d));
|
||||
if (rule.图片替换) {
|
||||
if (rule.图片替换.startsWith('js:')) {
|
||||
d.forEach(it => {
|
||||
try {
|
||||
var input = it.vod_pic;
|
||||
eval(rule.图片替换.trim().replace('js:', ''));
|
||||
it.vod_pic = input;
|
||||
} catch (e) {
|
||||
log(`图片:${it.vod_pic}替换错误:${e.message}`);
|
||||
}
|
||||
});
|
||||
} else if (rule.图片替换.includes('=>')) {
|
||||
let replace_from = rule.图片替换.split('=>')[0];
|
||||
let replace_to = rule.图片替换.split('=>')[1];
|
||||
d.forEach(it => {
|
||||
if (it.vod_pic && it.vod_pic.startsWith('http')) {
|
||||
it.vod_pic = it.vod_pic.replace(replace_from, replace_to);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
if (rule.图片来源) {
|
||||
d.forEach(it => {
|
||||
if (it.vod_pic && it.vod_pic.startsWith('http')) {
|
||||
it.vod_pic = it.vod_pic + rule.图片来源;
|
||||
}
|
||||
});
|
||||
}
|
||||
if (d.length > 0) {
|
||||
print(d.slice(0, 2));
|
||||
}
|
||||
return JSON.stringify({
|
||||
list: d
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 一级分类页数据解析
|
||||
* @param cateObj
|
||||
* @returns {string}
|
||||
*/
|
||||
function categoryParse(cateObj) {
|
||||
fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
let p = cateObj.一级;
|
||||
if (!p || typeof (p) !== 'string') {
|
||||
return '{}'
|
||||
}
|
||||
let d = [];
|
||||
// let url = cateObj.url.replaceAll('fyclass', cateObj.tid).replaceAll('fypage', cateObj.pg);
|
||||
let url = cateObj.url.replaceAll('fyclass', cateObj.tid);
|
||||
if (cateObj.pg === 1 && url.includes('[') && url.includes(']')) {
|
||||
url = url.split('[')[1].split(']')[0];
|
||||
} else if (cateObj.pg > 1 && url.includes('[') && url.includes(']')) {
|
||||
url = url.split('[')[0];
|
||||
}
|
||||
if (rule.filter_url) {
|
||||
if (!/fyfilter/.test(url)) {
|
||||
if (!url.endsWith('&') && !rule.filter_url.startsWith('&')) {
|
||||
url += '&'
|
||||
}
|
||||
url += rule.filter_url;
|
||||
} else {
|
||||
url = url.replace('fyfilter', rule.filter_url);
|
||||
}
|
||||
// filter_url支持fyclass
|
||||
url = url.replaceAll('fyclass', cateObj.tid);
|
||||
// console.log('filter:'+cateObj.filter);
|
||||
let fl = cateObj.filter ? cateObj.extend : {};
|
||||
// 自动合并 不同分类对应的默认筛选
|
||||
if (rule.filter_def && typeof (rule.filter_def) === 'object') {
|
||||
try {
|
||||
if (Object.keys(rule.filter_def).length > 0 && rule.filter_def.hasOwnProperty(cateObj.tid)) {
|
||||
let self_fl_def = rule.filter_def[cateObj.tid];
|
||||
if (self_fl_def && typeof (self_fl_def) === 'object') {
|
||||
// 引用传递转值传递,避免污染self变量
|
||||
let fl_def = JSON.parse(JSON.stringify(self_fl_def));
|
||||
fl = Object.assign(fl_def, fl);
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
print(`合并不同分类对应的默认筛选出错:${e.message}`);
|
||||
}
|
||||
}
|
||||
let new_url;
|
||||
new_url = cheerio.jinja2(url, {fl: fl});
|
||||
// console.log('jinjia2执行后的new_url类型为:'+typeof(new_url));
|
||||
url = new_url;
|
||||
}
|
||||
if (/fypage/.test(url)) {
|
||||
if (url.includes('(') && url.includes(')')) {
|
||||
let url_rep = url.match(/.*?\((.*)\)/)[1];
|
||||
// console.log(url_rep);
|
||||
let cnt_page = url_rep.replaceAll('fypage', cateObj.pg);
|
||||
// console.log(cnt_page);
|
||||
let cnt_pg = eval(cnt_page);
|
||||
// console.log(cnt_pg);
|
||||
url = url.replaceAll(url_rep, cnt_pg).replaceAll('(', '').replaceAll(')', '');
|
||||
} else {
|
||||
url = url.replaceAll('fypage', cateObj.pg);
|
||||
}
|
||||
}
|
||||
|
||||
MY_URL = url;
|
||||
// setItem('MY_URL',MY_URL);
|
||||
console.log(MY_URL);
|
||||
p = p.trim();
|
||||
const MY_CATE = cateObj.tid;
|
||||
if (p.startsWith('js:')) {
|
||||
var MY_FL = cateObj.extend;
|
||||
const TYPE = 'cate';
|
||||
var input = MY_URL;
|
||||
const MY_PAGE = cateObj.pg;
|
||||
var desc = '';
|
||||
eval(p.trim().replace('js:', ''));
|
||||
d = VODS;
|
||||
} else {
|
||||
p = p.split(';');
|
||||
if (p.length < 5) {
|
||||
return '{}'
|
||||
}
|
||||
let _ps = parseTags.getParse(p[0]);
|
||||
_pdfa = _ps.pdfa;
|
||||
_pdfh = _ps.pdfh;
|
||||
_pd = _ps.pd;
|
||||
let is_json = p[0].startsWith('json:');
|
||||
p[0] = p[0].replace(/^(jsp:|json:|jq:)/, '');
|
||||
try {
|
||||
let html = getHtml(MY_URL);
|
||||
if (html) {
|
||||
if (is_json) {
|
||||
html = dealJson(html);
|
||||
}
|
||||
let list = _pdfa(html, p[0]);
|
||||
list.forEach(it => {
|
||||
let links = p[4].split('+').map(p4 => {
|
||||
return !rule.detailUrl ? _pd(it, p4, MY_URL) : _pdfh(it, p4);
|
||||
});
|
||||
let link = links.join('$');
|
||||
let vod_id = rule.detailUrl ? MY_CATE + '$' + link : link;
|
||||
|
||||
let vod_name = _pdfh(it, p[1]).replace(/\n|\t/g, '').trim();
|
||||
let vod_pic = _pd(it, p[2], MY_URL);
|
||||
|
||||
if (rule.二级 === '*') {
|
||||
vod_id = vod_id + '@@' + vod_name + '@@' + vod_pic;
|
||||
}
|
||||
d.push({
|
||||
'vod_id': vod_id,
|
||||
'vod_name': vod_name,
|
||||
'vod_pic': vod_pic,
|
||||
'vod_remarks': _pdfh(it, p[3]).replace(/\n|\t/g, '').trim(),
|
||||
});
|
||||
});
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e.message);
|
||||
}
|
||||
}
|
||||
if (rule.图片替换) {
|
||||
if (rule.图片替换.startsWith('js:')) {
|
||||
d.forEach(it => {
|
||||
try {
|
||||
var input = it.vod_pic;
|
||||
eval(rule.图片替换.trim().replace('js:', ''));
|
||||
it.vod_pic = input;
|
||||
} catch (e) {
|
||||
log(`图片:${it.vod_pic}替换错误:${e.message}`);
|
||||
}
|
||||
});
|
||||
} else if (rule.图片替换.includes('=>')) {
|
||||
let replace_from = rule.图片替换.split('=>')[0];
|
||||
let replace_to = rule.图片替换.split('=>')[1];
|
||||
d.forEach(it => {
|
||||
if (it.vod_pic && it.vod_pic.startsWith('http')) {
|
||||
it.vod_pic = it.vod_pic.replace(replace_from, replace_to);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
if (rule.图片来源) {
|
||||
d.forEach(it => {
|
||||
if (it.vod_pic && it.vod_pic.startsWith('http')) {
|
||||
it.vod_pic = it.vod_pic + rule.图片来源;
|
||||
}
|
||||
});
|
||||
}
|
||||
// print(d);
|
||||
if (d.length > 0) {
|
||||
print(d.slice(0, 2));
|
||||
}
|
||||
let pagecount = 0;
|
||||
if (rule.pagecount && typeof (rule.pagecount) === 'object' && rule.pagecount.hasOwnProperty(MY_CATE)) {
|
||||
print(`MY_CATE:${MY_CATE},pagecount:${JSON.stringify(rule.pagecount)}`);
|
||||
pagecount = parseInt(rule.pagecount[MY_CATE]);
|
||||
}
|
||||
let nodata = {
|
||||
list: [{
|
||||
vod_name: '无数据,防无限请求',
|
||||
vod_id: 'no_data',
|
||||
vod_remarks: '不要点,会崩的',
|
||||
vod_pic: 'https://ghproxy.net/https://raw.githubusercontent.com/hjdhnx/dr_py/main/404.jpg'
|
||||
}],
|
||||
total: 1, pagecount: 1, page: 1, limit: 1
|
||||
};
|
||||
let vod = d.length < 1 ? JSON.stringify(nodata) : JSON.stringify({
|
||||
'page': parseInt(cateObj.pg),
|
||||
'pagecount': pagecount || 999,
|
||||
'limit': 20,
|
||||
'total': 999,
|
||||
'list': d,
|
||||
});
|
||||
// print(vod);
|
||||
return vod
|
||||
}
|
||||
|
||||
/**
|
||||
* 搜索列表数据解析
|
||||
* @param searchObj
|
||||
* @returns {string}
|
||||
*/
|
||||
function searchParse(searchObj) {
|
||||
fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
let d = [];
|
||||
if (!searchObj.searchUrl) {
|
||||
return '{}'
|
||||
}
|
||||
let p = searchObj.搜索 === '*' && rule.一级 ? rule.一级 : searchObj.搜索;
|
||||
if (!p || typeof (p) !== 'string') {
|
||||
return '{}'
|
||||
}
|
||||
p = p.trim();
|
||||
let pp = rule.一级 ? rule.一级.split(';') : [];
|
||||
let url = searchObj.searchUrl.replaceAll('**', searchObj.wd);
|
||||
if (searchObj.pg === 1 && url.includes('[') && url.includes(']') && !url.includes('#')) {
|
||||
url = url.split('[')[1].split(']')[0];
|
||||
} else if (searchObj.pg > 1 && url.includes('[') && url.includes(']') && !url.includes('#')) {
|
||||
url = url.split('[')[0];
|
||||
}
|
||||
|
||||
if (/fypage/.test(url)) {
|
||||
if (url.includes('(') && url.includes(')')) {
|
||||
let url_rep = url.match(/.*?\((.*)\)/)[1];
|
||||
// console.log(url_rep);
|
||||
let cnt_page = url_rep.replaceAll('fypage', searchObj.pg);
|
||||
// console.log(cnt_page);
|
||||
let cnt_pg = eval(cnt_page);
|
||||
// console.log(cnt_pg);
|
||||
url = url.replaceAll(url_rep, cnt_pg).replaceAll('(', '').replaceAll(')', '');
|
||||
} else {
|
||||
url = url.replaceAll('fypage', searchObj.pg);
|
||||
}
|
||||
}
|
||||
|
||||
MY_URL = url;
|
||||
console.log(MY_URL);
|
||||
// log(searchObj.搜索);
|
||||
// setItem('MY_URL',MY_URL);
|
||||
if (p.startsWith('js:')) {
|
||||
const TYPE = 'search';
|
||||
const MY_PAGE = searchObj.pg;
|
||||
const KEY = searchObj.wd;
|
||||
var input = MY_URL;
|
||||
var detailUrl = rule.detailUrl || '';
|
||||
eval(p.trim().replace('js:', ''));
|
||||
d = VODS;
|
||||
} else {
|
||||
p = p.split(';');
|
||||
if (p.length < 5) {
|
||||
return '{}'
|
||||
}
|
||||
let p0 = getPP(p, 0, pp, 0);
|
||||
let _ps = parseTags.getParse(p0);
|
||||
_pdfa = _ps.pdfa;
|
||||
_pdfh = _ps.pdfh;
|
||||
_pd = _ps.pd;
|
||||
let is_json = p0.startsWith('json:');
|
||||
p0 = p0.replace(/^(jsp:|json:|jq:)/, '');
|
||||
// print('1381 p0:'+p0);
|
||||
try {
|
||||
let req_method = MY_URL.split(';').length > 1 ? MY_URL.split(';')[1].toLowerCase() : 'get';
|
||||
let html;
|
||||
if (req_method === 'post') {
|
||||
let rurls = MY_URL.split(';')[0].split('#')
|
||||
let rurl = rurls[0]
|
||||
let params = rurls.length > 1 ? rurls[1] : '';
|
||||
print(`post=》rurl:${rurl},params:${params}`);
|
||||
// let new_dict = {};
|
||||
// let new_tmp = params.split('&');
|
||||
// new_tmp.forEach(i=>{
|
||||
// new_dict[i.split('=')[0]] = i.split('=')[1];
|
||||
// });
|
||||
// html = post(rurl,{body:new_dict});
|
||||
let _fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
let postData = {body: params};
|
||||
Object.assign(_fetch_params, postData);
|
||||
html = post(rurl, _fetch_params);
|
||||
} else if (req_method === 'postjson') {
|
||||
let rurls = MY_URL.split(';')[0].split('#')
|
||||
let rurl = rurls[0]
|
||||
let params = rurls.length > 1 ? rurls[1] : '';
|
||||
print(`postjson-》rurl:${rurl},params:${params}`);
|
||||
try {
|
||||
params = JSON.parse(params);
|
||||
} catch (e) {
|
||||
params = '{}'
|
||||
}
|
||||
let _fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
let postData = {body: params};
|
||||
Object.assign(_fetch_params, postData);
|
||||
html = post(rurl, _fetch_params);
|
||||
} else {
|
||||
html = getHtml(MY_URL);
|
||||
}
|
||||
if (html) {
|
||||
if (/系统安全验证|输入验证码/.test(html)) {
|
||||
let cookie = verifyCode(MY_URL);
|
||||
if (cookie) {
|
||||
console.log(`本次成功过验证,cookie:${cookie}`);
|
||||
setItem(RULE_CK, cookie);
|
||||
} else {
|
||||
console.log(`本次自动过搜索验证失败,cookie:${cookie}`);
|
||||
}
|
||||
// obj.headers['Cookie'] = cookie;
|
||||
html = getHtml(MY_URL);
|
||||
}
|
||||
if (!html.includes(searchObj.wd)) {
|
||||
console.log('搜索结果源码未包含关键字,疑似搜索失败,正为您打印结果源码');
|
||||
console.log(html);
|
||||
}
|
||||
if (is_json) {
|
||||
// console.log(html);
|
||||
html = dealJson(html);
|
||||
// console.log(JSON.stringify(html));
|
||||
}
|
||||
// console.log(html);
|
||||
let list = _pdfa(html, p0);
|
||||
// print(list.length);
|
||||
// print(list);
|
||||
let p1 = getPP(p, 1, pp, 1);
|
||||
let p2 = getPP(p, 2, pp, 2);
|
||||
let p3 = getPP(p, 3, pp, 3);
|
||||
let p4 = getPP(p, 4, pp, 4);
|
||||
let p5 = getPP(p, 5, pp, 5);
|
||||
list.forEach(it => {
|
||||
let links = p4.split('+').map(_p4 => {
|
||||
return !rule.detailUrl ? _pd(it, _p4, MY_URL) : _pdfh(it, _p4)
|
||||
});
|
||||
let link = links.join('$');
|
||||
let content;
|
||||
if (p.length > 5 && p[5]) {
|
||||
content = _pdfh(it, p5);
|
||||
} else {
|
||||
content = '';
|
||||
}
|
||||
let vod_id = link;
|
||||
let vod_name = _pdfh(it, p1).replace(/\n|\t/g, '').trim();
|
||||
let vod_pic = _pd(it, p2, MY_URL);
|
||||
if (rule.二级 === '*') {
|
||||
vod_id = vod_id + '@@' + vod_name + '@@' + vod_pic;
|
||||
}
|
||||
let ob = {
|
||||
'vod_id': vod_id,
|
||||
'vod_name': vod_name,
|
||||
'vod_pic': vod_pic,
|
||||
'vod_remarks': _pdfh(it, p3).replace(/\n|\t/g, '').trim(),
|
||||
'vod_content': content.replace(/\n|\t/g, '').trim(),
|
||||
};
|
||||
d.push(ob);
|
||||
});
|
||||
|
||||
}
|
||||
} catch (e) {
|
||||
print(`搜索发生错误:${e.message}`);
|
||||
return '{}'
|
||||
}
|
||||
}
|
||||
if (rule.图片替换) {
|
||||
if (rule.图片替换.startsWith('js:')) {
|
||||
d.forEach(it => {
|
||||
try {
|
||||
var input = it.vod_pic;
|
||||
eval(rule.图片替换.trim().replace('js:', ''));
|
||||
it.vod_pic = input;
|
||||
} catch (e) {
|
||||
log(`图片:${it.vod_pic}替换错误:${e.message}`);
|
||||
}
|
||||
});
|
||||
} else if (rule.图片替换.includes('=>')) {
|
||||
let replace_from = rule.图片替换.split('=>')[0];
|
||||
let replace_to = rule.图片替换.split('=>')[1];
|
||||
d.forEach(it => {
|
||||
if (it.vod_pic && it.vod_pic.startsWith('http')) {
|
||||
it.vod_pic = it.vod_pic.replace(replace_from, replace_to);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
if (rule.图片来源) {
|
||||
d.forEach(it => {
|
||||
if (it.vod_pic && it.vod_pic.startsWith('http')) {
|
||||
it.vod_pic = it.vod_pic + rule.图片来源;
|
||||
}
|
||||
});
|
||||
}
|
||||
// print(d);
|
||||
return JSON.stringify({
|
||||
'page': parseInt(searchObj.pg),
|
||||
'pagecount': 10,
|
||||
'limit': 20,
|
||||
'total': 100,
|
||||
'list': d,
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* 二级详情页数据解析
|
||||
* @param detailObj
|
||||
* @returns {string}
|
||||
*/
|
||||
function detailParse(detailObj) {
|
||||
let t1 = (new Date()).getTime();
|
||||
fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
let orId = detailObj.orId;
|
||||
let vod_name = '片名';
|
||||
let vod_pic = '';
|
||||
let vod_id = orId;
|
||||
if (rule.二级 === '*') {
|
||||
// vod_id = orId.split('@@')[0]; // 千万不能分割
|
||||
let extra = orId.split('@@');
|
||||
vod_name = extra.length > 1 ? extra[1] : vod_name;
|
||||
vod_pic = extra.length > 2 ? extra[2] : vod_pic;
|
||||
}
|
||||
// print(vod_pic);
|
||||
let vod = {
|
||||
vod_id: vod_id, //"id",
|
||||
vod_name: vod_name,
|
||||
vod_pic: vod_pic,
|
||||
type_name: "类型",
|
||||
vod_year: "年份",
|
||||
vod_area: "地区",
|
||||
vod_remarks: "更新信息",
|
||||
vod_actor: "主演",
|
||||
vod_director: "导演",
|
||||
vod_content: "简介"
|
||||
};
|
||||
let p = detailObj.二级;
|
||||
let url = detailObj.url;
|
||||
let detailUrl = detailObj.detailUrl;
|
||||
let fyclass = detailObj.fyclass;
|
||||
let tab_exclude = detailObj.tab_exclude;
|
||||
let html = detailObj.html || '';
|
||||
MY_URL = url;
|
||||
if (detailObj.二级访问前) {
|
||||
try {
|
||||
print(`尝试在二级访问前执行代码:${detailObj.二级访问前}`);
|
||||
eval(detailObj.二级访问前.trim().replace('js:', ''));
|
||||
} catch (e) {
|
||||
print(`二级访问前执行代码出现错误:${e.message}`)
|
||||
}
|
||||
}
|
||||
// console.log(MY_URL);
|
||||
// setItem('MY_URL',MY_URL);
|
||||
if (p === '*') {
|
||||
vod.vod_play_from = '道长在线';
|
||||
vod.vod_remarks = detailUrl;
|
||||
vod.vod_actor = '没有二级,只有一级链接直接嗅探播放';
|
||||
vod.vod_content = MY_URL;
|
||||
vod.vod_play_url = '嗅探播放$' + MY_URL.split('@@')[0];
|
||||
} else if (typeof (p) === 'string' && p.trim().startsWith('js:')) {
|
||||
const TYPE = 'detail';
|
||||
var input = MY_URL;
|
||||
var play_url = '';
|
||||
eval(p.trim().replace('js:', ''));
|
||||
vod = VOD;
|
||||
console.log(JSON.stringify(vod));
|
||||
} else if (p && typeof (p) === 'object') {
|
||||
let tt1 = (new Date()).getTime();
|
||||
if (!html) {
|
||||
html = getHtml(MY_URL);
|
||||
}
|
||||
print(`二级${MY_URL}仅获取源码耗时:${(new Date()).getTime() - tt1}毫秒`);
|
||||
let _ps;
|
||||
if (p.is_json) {
|
||||
print('二级是json');
|
||||
_ps = parseTags.json;
|
||||
html = dealJson(html);
|
||||
} else if (p.is_jsp) {
|
||||
print('二级是jsp');
|
||||
_ps = parseTags.jsp;
|
||||
} else if (p.is_jq) {
|
||||
print('二级是jq');
|
||||
_ps = parseTags.jq;
|
||||
} else {
|
||||
print('二级默认jq');
|
||||
_ps = parseTags.jq;
|
||||
// print('二级默认jsp');
|
||||
// _ps = parseTags.jsp;
|
||||
}
|
||||
let tt2 = (new Date()).getTime();
|
||||
print(`二级${MY_URL}获取并装载源码耗时:${tt2 - tt1}毫秒`);
|
||||
_pdfa = _ps.pdfa;
|
||||
_pdfh = _ps.pdfh;
|
||||
_pd = _ps.pd;
|
||||
if (p.title) {
|
||||
let p1 = p.title.split(';');
|
||||
vod.vod_name = _pdfh(html, p1[0]).replace(/\n|\t/g, '').trim();
|
||||
let type_name = p1.length > 1 ? _pdfh(html, p1[1]).replace(/\n|\t/g, '').replace(/ /g, '').trim() : '';
|
||||
vod.type_name = type_name || vod.type_name;
|
||||
}
|
||||
if (p.desc) {
|
||||
try {
|
||||
let p1 = p.desc.split(';');
|
||||
vod.vod_remarks = _pdfh(html, p1[0]).replace(/\n|\t/g, '').trim();
|
||||
vod.vod_year = p1.length > 1 ? _pdfh(html, p1[1]).replace(/\n|\t/g, '').trim() : '';
|
||||
vod.vod_area = p1.length > 2 ? _pdfh(html, p1[2]).replace(/\n|\t/g, '').trim() : '';
|
||||
// vod.vod_actor = p1.length > 3 ? _pdfh(html, p1[3]).replaceAll('\n', ' ').trim():'';
|
||||
vod.vod_actor = p1.length > 3 ? _pdfh(html, p1[3]).replace(/\n|\t/g, '').trim() : '';
|
||||
vod.vod_director = p1.length > 4 ? _pdfh(html, p1[4]).replace(/\n|\t/g, '').trim() : '';
|
||||
} catch (e) {
|
||||
|
||||
}
|
||||
}
|
||||
if (p.content) {
|
||||
try {
|
||||
let p1 = p.content.split(';');
|
||||
vod.vod_content = _pdfh(html, p1[0]).replace(/\n|\t/g, '').trim();
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
if (p.img) {
|
||||
try {
|
||||
let p1 = p.img.split(';');
|
||||
vod.vod_pic = _pd(html, p1[0], MY_URL);
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
|
||||
let vod_play_from = '$$$';
|
||||
let playFrom = [];
|
||||
if (p.重定向 && p.重定向.startsWith('js:')) {
|
||||
print('开始执行重定向代码:' + p.重定向);
|
||||
html = eval(p.重定向.replace('js:', ''));
|
||||
}
|
||||
|
||||
// console.log(2);
|
||||
if (p.tabs) {
|
||||
if (p.tabs.startsWith('js:')) {
|
||||
print('开始执行tabs代码:' + p.tabs);
|
||||
var input = MY_URL;
|
||||
eval(p.tabs.replace('js:', ''));
|
||||
playFrom = TABS;
|
||||
} else {
|
||||
let p_tab = p.tabs.split(';')[0];
|
||||
// console.log(p_tab);
|
||||
let vHeader = _pdfa(html, p_tab);
|
||||
console.log(vHeader.length);
|
||||
let tab_text = p.tab_text || 'body&&Text';
|
||||
// print('tab_text:'+tab_text);
|
||||
let new_map = {};
|
||||
for (let v of vHeader) {
|
||||
let v_title = _pdfh(v, tab_text).trim();
|
||||
if (!v_title) {
|
||||
v_title = '线路空'
|
||||
}
|
||||
console.log(v_title);
|
||||
if (tab_exclude && (new RegExp(tab_exclude)).test(v_title)) {
|
||||
continue;
|
||||
}
|
||||
if (!new_map.hasOwnProperty(v_title)) {
|
||||
new_map[v_title] = 1;
|
||||
} else {
|
||||
new_map[v_title] += 1;
|
||||
}
|
||||
if (new_map[v_title] > 1) {
|
||||
v_title += Number(new_map[v_title] - 1);
|
||||
}
|
||||
playFrom.push(v_title);
|
||||
}
|
||||
}
|
||||
console.log(JSON.stringify(playFrom));
|
||||
} else {
|
||||
playFrom = ['道长在线']
|
||||
}
|
||||
vod.vod_play_from = playFrom.join(vod_play_from);
|
||||
|
||||
// console.log(3);
|
||||
let vod_play_url = '$$$';
|
||||
let vod_tab_list = [];
|
||||
if (p.lists) {
|
||||
if (p.lists.startsWith('js:')) {
|
||||
print('开始执行lists代码:' + p.lists);
|
||||
try {
|
||||
var input = MY_URL;
|
||||
var play_url = '';
|
||||
eval(p.lists.replace('js:', ''));
|
||||
for (let i in LISTS) {
|
||||
if (LISTS.hasOwnProperty(i)) {
|
||||
// print(i);
|
||||
try {
|
||||
LISTS[i] = LISTS[i].map(it => it.split('$').slice(0, 2).join('$'));
|
||||
} catch (e) {
|
||||
print(`格式化LISTS发生错误:${e.message}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
vod_play_url = LISTS.map(it => it.join('#')).join(vod_play_url);
|
||||
} catch (e) {
|
||||
print(`js执行lists: 发生错误:${e.message}`);
|
||||
}
|
||||
|
||||
} else {
|
||||
let list_text = p.list_text || 'body&&Text';
|
||||
let list_url = p.list_url || 'a&&href';
|
||||
let list_url_prefix = p.list_url_prefix || '';
|
||||
// print('list_text:'+list_text);
|
||||
// print('list_url:'+list_url);
|
||||
// print('list_parse:'+p.lists);
|
||||
let is_tab_js = p.tabs.trim().startsWith('js:');
|
||||
for (let i = 0; i < playFrom.length; i++) {
|
||||
let tab_name = playFrom[i];
|
||||
let tab_ext = p.tabs.split(';').length > 1 && !is_tab_js ? p.tabs.split(';')[1] : '';
|
||||
let p1 = p.lists.replaceAll('#idv', tab_name).replaceAll('#id', i);
|
||||
tab_ext = tab_ext.replaceAll('#idv', tab_name).replaceAll('#id', i);
|
||||
let tabName = tab_ext ? _pdfh(html, tab_ext) : tab_name;
|
||||
console.log(tabName);
|
||||
// print('tab_ext:'+tab_ext);
|
||||
let new_vod_list = [];
|
||||
let tt1 = (new Date()).getTime();
|
||||
// print('pdfl:'+typeof (pdfl));
|
||||
if (typeof (pdfl) === 'function') {
|
||||
new_vod_list = pdfl(html, p1, list_text, list_url, MY_URL);
|
||||
if (list_url_prefix) {
|
||||
new_vod_list = new_vod_list.map(it => it.split('$')[0] + '$' + list_url_prefix + it.split('$').slice(1).join('$'));
|
||||
}
|
||||
} else {
|
||||
let vodList = [];
|
||||
try {
|
||||
vodList = _pdfa(html, p1);
|
||||
console.log('len(vodList):' + vodList.length);
|
||||
} catch (e) {
|
||||
// console.log(e.message);
|
||||
}
|
||||
for (let i = 0; i < vodList.length; i++) {
|
||||
let it = vodList[i];
|
||||
new_vod_list.push(_pdfh(it, list_text).trim() + '$' + list_url_prefix + _pd(it, list_url, MY_URL));
|
||||
}
|
||||
}
|
||||
if (new_vod_list.length > 0) {
|
||||
new_vod_list = forceOrder(new_vod_list, '', x => x.split('$')[0]);
|
||||
console.log(`drpy影响性能代码共计列表数循环次数:${new_vod_list.length},耗时:${(new Date()).getTime() - tt1}毫秒`);
|
||||
}
|
||||
// print(new_vod_list);
|
||||
let vlist = new_vod_list.join('#');
|
||||
vod_tab_list.push(vlist);
|
||||
}
|
||||
vod_play_url = vod_tab_list.join(vod_play_url);
|
||||
}
|
||||
}
|
||||
vod.vod_play_url = vod_play_url;
|
||||
}
|
||||
if (rule.图片替换 && rule.图片替换.includes('=>')) {
|
||||
let replace_from = rule.图片替换.split('=>')[0];
|
||||
let replace_to = rule.图片替换.split('=>')[1];
|
||||
vod.vod_pic = vod.vod_pic.replace(replace_from, replace_to);
|
||||
}
|
||||
if (rule.图片来源 && vod.vod_pic && vod.vod_pic.startsWith('http')) {
|
||||
vod.vod_pic = vod.vod_pic + rule.图片来源;
|
||||
}
|
||||
if (!vod.vod_id || (vod_id.includes('$') && vod.vod_id !== vod_id)) {
|
||||
vod.vod_id = vod_id;
|
||||
}
|
||||
let t2 = (new Date()).getTime();
|
||||
console.log(`加载二级界面${MY_URL}耗时:${t2 - t1}毫秒`);
|
||||
// print(vod);
|
||||
try {
|
||||
vod = vodDeal(vod);
|
||||
} catch (e) {
|
||||
console.log(`vodDeal发生错误:${e.message}`);
|
||||
}
|
||||
// print(vod);
|
||||
return JSON.stringify({
|
||||
list: [vod]
|
||||
})
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取二级待返回的播放线路没处理时的索引关系
|
||||
* @param vod
|
||||
* @returns {{}}
|
||||
*/
|
||||
function get_tab_index(vod) {
|
||||
let obj = {};
|
||||
vod.vod_play_from.split('$$$').forEach((it, index) => {
|
||||
obj[it] = index;
|
||||
});
|
||||
return obj
|
||||
}
|
||||
|
||||
/**
|
||||
* 处理待返回的vod数据|线路去除,排序,重命名
|
||||
* @param vod
|
||||
* @returns {*}
|
||||
*/
|
||||
function vodDeal(vod) {
|
||||
let vod_play_from = vod.vod_play_from.split('$$$');
|
||||
let vod_play_url = vod.vod_play_url.split('$$$');
|
||||
|
||||
// 移除指定线路后的列表
|
||||
let tab_removed_list = vod_play_from;
|
||||
// 排序后的线路列表
|
||||
let tab_ordered_list = vod_play_from;
|
||||
// 线路重命名后的列表
|
||||
let tab_renamed_list = vod_play_from;
|
||||
// 定义实际要返回线路
|
||||
let tab_list = vod_play_from;
|
||||
// 选集列表根据线路排序
|
||||
let play_ordered_list = vod_play_url;
|
||||
|
||||
// 判断有移除线路或者线路排序
|
||||
if ((rule.tab_remove && rule.tab_remove.length > 0) || (rule.tab_order && rule.tab_order.length > 0)) {
|
||||
// 获取原来线路的索引下标
|
||||
let tab_index_dict = get_tab_index(vod);
|
||||
|
||||
if (rule.tab_remove && rule.tab_remove.length > 0) {
|
||||
tab_removed_list = vod_play_from.filter(it => !rule.tab_remove.includes(it));
|
||||
tab_list = tab_removed_list;
|
||||
}
|
||||
|
||||
if (rule.tab_order && rule.tab_order.length > 0) {
|
||||
let tab_order = rule.tab_order;
|
||||
tab_ordered_list = tab_removed_list.sort((a, b) => {
|
||||
return (tab_order.indexOf(a) === -1 ? 9999 : tab_order.indexOf(a)) - (tab_order.indexOf(b) === -1 ? 9999 : tab_order.indexOf(b))
|
||||
});
|
||||
tab_list = tab_ordered_list;
|
||||
}
|
||||
play_ordered_list = tab_list.map(it => vod_play_url[tab_index_dict[it]]);
|
||||
}
|
||||
|
||||
if (rule.tab_rename && typeof (rule.tab_rename) === 'object' & Object.keys(rule.tab_rename).length > 0) {
|
||||
tab_renamed_list = tab_list.map(it => rule.tab_rename[it] || it);
|
||||
tab_list = tab_renamed_list;
|
||||
}
|
||||
vod.vod_play_from = tab_list.join('$$$');
|
||||
vod.vod_play_url = play_ordered_list.join('$$$');
|
||||
return vod
|
||||
}
|
||||
|
||||
/**
|
||||
* 判断是否需要解析
|
||||
* @param url
|
||||
* @returns {number|number}
|
||||
*/
|
||||
function tellIsJx(url) {
|
||||
try {
|
||||
let is_vip = !/\.(m3u8|mp4|m4a)$/.test(url.split('?')[0]) && 是否正版(url);
|
||||
return is_vip ? 1 : 0
|
||||
} catch (e) {
|
||||
return 1
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 选集播放点击事件解析
|
||||
* @param playObj
|
||||
* @returns {string}
|
||||
*/
|
||||
function playParse(playObj) {
|
||||
fetch_params = JSON.parse(JSON.stringify(rule_fetch_params));
|
||||
MY_URL = playObj.url;
|
||||
var MY_FLAG = playObj.flag;
|
||||
if (!/http/.test(MY_URL)) {
|
||||
try {
|
||||
MY_URL = base64Decode(MY_URL);
|
||||
} catch (e) {
|
||||
}
|
||||
}
|
||||
MY_URL = decodeURIComponent(MY_URL);
|
||||
var input = MY_URL;//注入给免嗅js
|
||||
var flag = MY_FLAG;//注入播放线路名称给免嗅js
|
||||
let common_play = {
|
||||
parse: SPECIAL_URL.test(input) || /^(push:)/.test(input) ? 0 : 1,
|
||||
url: input,
|
||||
flag: flag,
|
||||
// url:urlencode(input),
|
||||
jx: tellIsJx(input)
|
||||
};
|
||||
let lazy_play;
|
||||
if (!rule.play_parse || !rule.lazy) {
|
||||
lazy_play = common_play;
|
||||
} else if (rule.play_parse && rule.lazy && typeof (rule.lazy) === 'string') {
|
||||
try {
|
||||
let lazy_code = rule.lazy.trim();
|
||||
if (lazy_code.startsWith('js:')) {
|
||||
lazy_code = lazy_code.replace('js:', '').trim();
|
||||
}
|
||||
print('开始执行js免嗅=>' + lazy_code);
|
||||
eval(lazy_code);
|
||||
lazy_play = typeof (input) === 'object' ? input : {
|
||||
parse: SPECIAL_URL.test(input) || /^(push:)/.test(input) ? 0 : 1,
|
||||
jx: tellIsJx(input),
|
||||
url: input
|
||||
};
|
||||
} catch (e) {
|
||||
print(`js免嗅错误:${e.message}`);
|
||||
lazy_play = common_play;
|
||||
}
|
||||
} else {
|
||||
lazy_play = common_play;
|
||||
}
|
||||
// print('play_json:'+typeof(rule.play_json));
|
||||
// console.log(Array.isArray(rule.play_json));
|
||||
if (Array.isArray(rule.play_json) && rule.play_json.length > 0) { // 数组情况判断长度大于0
|
||||
let web_url = lazy_play.url;
|
||||
for (let pjson of rule.play_json) {
|
||||
if (pjson.re && (pjson.re === '*' || web_url.match(new RegExp(pjson.re)))) {
|
||||
if (pjson.json && typeof (pjson.json) === 'object') {
|
||||
let base_json = pjson.json;
|
||||
// print('开始合并:');
|
||||
// print(base_json);
|
||||
lazy_play = Object.assign(lazy_play, base_json);
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (rule.play_json && !Array.isArray(rule.play_json)) { // 其他情况 非[] 判断true/false
|
||||
let base_json = {
|
||||
jx: 1,
|
||||
parse: 1,
|
||||
};
|
||||
lazy_play = Object.assign(lazy_play, base_json);
|
||||
} else if (!rule.play_json) { // 不解析传0
|
||||
let base_json = {
|
||||
jx: 0,
|
||||
parse: 1,
|
||||
};
|
||||
lazy_play = Object.assign(lazy_play, base_json);
|
||||
}
|
||||
console.log(JSON.stringify(lazy_play));
|
||||
return JSON.stringify(lazy_play);
|
||||
}
|
||||
|
||||
/**
|
||||
* 本地代理解析规则
|
||||
* @param params
|
||||
*/
|
||||
function proxyParse(proxyObj) {
|
||||
var input = proxyObj.params;
|
||||
if (proxyObj.proxy_rule) {
|
||||
log('准备执行本地代理规则:\n' + proxyObj.proxy_rule);
|
||||
try {
|
||||
eval(proxyObj.proxy_rule);
|
||||
if (input && input !== proxyObj.params && Array.isArray(input) && input.length >= 3) {
|
||||
return input
|
||||
} else {
|
||||
return [404, 'text/plain', 'Not Found']
|
||||
}
|
||||
} catch (e) {
|
||||
return [500, 'text/plain', '代理规则错误:' + e.message]
|
||||
}
|
||||
|
||||
} else {
|
||||
return [404, 'text/plain', 'Not Found']
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 辅助嗅探解析规则
|
||||
* @param isVideoObj
|
||||
* @returns {boolean}
|
||||
*/
|
||||
function isVideoParse(isVideoObj) {
|
||||
var input = isVideoObj.url;
|
||||
if (!isVideoObj.t) { // t为假代表默认传的正则字符串
|
||||
let re_matcher = new RegExp(isVideoObj.isVideo, 'i'); // /g匹配多个,/i不区分大小写,/m匹配多行
|
||||
return re_matcher.test(input);
|
||||
} else {
|
||||
// 执行js
|
||||
try {
|
||||
eval(isVideoObj.isVideo);
|
||||
if (typeof (input) === 'boolean') {
|
||||
return input
|
||||
} else {
|
||||
return false
|
||||
}
|
||||
} catch (e) {
|
||||
log(`执行嗅探规则发生错误:${e.message}`);
|
||||
return false
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取加密前的原始的js源文本
|
||||
* @param js_code
|
||||
*/
|
||||
function getOriginalJs(js_code) {
|
||||
let current_match = /var rule|[\u4E00-\u9FA5]+|function|let |var |const |\(|\)|"|'/;
|
||||
if (current_match.test(js_code)) {
|
||||
return js_code
|
||||
}
|
||||
let rsa_private_key = 'MIIEvQIBADANBgkqhkiG9w0BAQEFAASCBKcwggSjAgEAAoIBAQCqin/jUpqM6+fgYP/oMqj9zcdHMM0mEZXLeTyixIJWP53lzJV2N2E3OP6BBpUmq2O1a9aLnTIbADBaTulTNiOnVGoNG58umBnupnbmmF8iARbDp2mTzdMMeEgLdrfXS6Y3VvazKYALP8EhEQykQVarexR78vRq7ltY3quXx7cgI0ROfZz5Sw3UOLQJ+VoWmwIxu9AMEZLVzFDQN93hzuzs3tNyHK6xspBGB7zGbwCg+TKi0JeqPDrXxYUpAz1cQ/MO+Da0WgvkXnvrry8NQROHejdLVOAslgr6vYthH9bKbsGyNY3H+P12kcxo9RAcVveONnZbcMyxjtF5dWblaernAgMBAAECggEAGdEHlSEPFmAr5PKqKrtoi6tYDHXdyHKHC5tZy4YV+Pp+a6gxxAiUJejx1hRqBcWSPYeKne35BM9dgn5JofgjI5SKzVsuGL6bxl3ayAOu+xXRHWM9f0t8NHoM5fdd0zC3g88dX3fb01geY2QSVtcxSJpEOpNH3twgZe6naT2pgiq1S4okpkpldJPo5GYWGKMCHSLnKGyhwS76gF8bTPLoay9Jxk70uv6BDUMlA4ICENjmsYtd3oirWwLwYMEJbSFMlyJvB7hjOjR/4RpT4FPnlSsIpuRtkCYXD4jdhxGlvpXREw97UF2wwnEUnfgiZJ2FT/MWmvGGoaV/CfboLsLZuQKBgQDTNZdJrs8dbijynHZuuRwvXvwC03GDpEJO6c1tbZ1s9wjRyOZjBbQFRjDgFeWs9/T1aNBLUrgsQL9c9nzgUziXjr1Nmu52I0Mwxi13Km/q3mT+aQfdgNdu6ojsI5apQQHnN/9yMhF6sNHg63YOpH+b+1bGRCtr1XubuLlumKKscwKBgQDOtQ2lQjMtwsqJmyiyRLiUOChtvQ5XI7B2mhKCGi8kZ+WEAbNQcmThPesVzW+puER6D4Ar4hgsh9gCeuTaOzbRfZ+RLn3Aksu2WJEzfs6UrGvm6DU1INn0z/tPYRAwPX7sxoZZGxqML/z+/yQdf2DREoPdClcDa2Lmf1KpHdB+vQKBgBXFCVHz7a8n4pqXG/HvrIMJdEpKRwH9lUQS/zSPPtGzaLpOzchZFyQQBwuh1imM6Te+VPHeldMh3VeUpGxux39/m+160adlnRBS7O7CdgSsZZZ/dusS06HAFNraFDZf1/VgJTk9BeYygX+AZYu+0tReBKSs9BjKSVJUqPBIVUQXAoGBAJcZ7J6oVMcXxHxwqoAeEhtvLcaCU9BJK36XQ/5M67ceJ72mjJC6/plUbNukMAMNyyi62gO6I9exearecRpB/OGIhjNXm99Ar59dAM9228X8gGfryLFMkWcO/fNZzb6lxXmJ6b2LPY3KqpMwqRLTAU/zy+ax30eFoWdDHYa4X6e1AoGAfa8asVGOJ8GL9dlWufEeFkDEDKO9ww5GdnpN+wqLwePWqeJhWCHad7bge6SnlylJp5aZXl1+YaBTtOskC4Whq9TP2J+dNIgxsaF5EFZQJr8Xv+lY9lu0CruYOh9nTNF9x3nubxJgaSid/7yRPfAGnsJRiknB5bsrCvgsFQFjJVs=';
|
||||
let decode_content = '';
|
||||
|
||||
function aes_decrypt(data) {
|
||||
let key = CryptoJS.enc.Hex.parse("686A64686E780A0A0A0A0A0A0A0A0A0A");
|
||||
let iv = CryptoJS.enc.Hex.parse("647A797964730A0A0A0A0A0A0A0A0A0A");
|
||||
let encrypted = CryptoJS.AES.decrypt({
|
||||
ciphertext: CryptoJS.enc.Base64.parse(data)
|
||||
}, key, {
|
||||
iv: iv,
|
||||
mode: CryptoJS.mode.CBC,
|
||||
padding: CryptoJS.pad.Pkcs7
|
||||
}).toString(CryptoJS.enc.Utf8);
|
||||
return encrypted;
|
||||
}
|
||||
|
||||
let error_log = false;
|
||||
|
||||
function logger(text) {
|
||||
if (error_log) {
|
||||
log(text);
|
||||
}
|
||||
}
|
||||
|
||||
let decode_funcs = [
|
||||
(text) => {
|
||||
try {
|
||||
return ungzip(text)
|
||||
} catch (e) {
|
||||
logger('非gzip加密');
|
||||
return ''
|
||||
}
|
||||
},
|
||||
(text) => {
|
||||
try {
|
||||
return base64Decode(text)
|
||||
} catch (e) {
|
||||
logger('非b64加密');
|
||||
return ''
|
||||
}
|
||||
},
|
||||
(text) => {
|
||||
try {
|
||||
return aes_decrypt(text)
|
||||
} catch (e) {
|
||||
logger('非aes加密');
|
||||
return ''
|
||||
}
|
||||
},
|
||||
(text) => {
|
||||
try {
|
||||
return RSA.decode(text, rsa_private_key, null)
|
||||
} catch (e) {
|
||||
logger('非rsa加密');
|
||||
return ''
|
||||
}
|
||||
},
|
||||
// (text)=>{try {return NODERSA.decryptRSAWithPrivateKey(text, RSA.getPrivateKey(rsa_private_key).replace(/RSA /g,''), {options: {environment: "browser", encryptionScheme: 'pkcs1',b:'1024'}});} catch (e) {log(e.message);return ''}},
|
||||
]
|
||||
let func_index = 0
|
||||
while (!current_match.test(decode_content)) {
|
||||
decode_content = decode_funcs[func_index](js_code);
|
||||
func_index++;
|
||||
if (func_index >= decode_funcs.length) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
return decode_content
|
||||
}
|
||||
|
||||
/**
|
||||
* 执行main函数
|
||||
* 示例 function main(text){return gzip(text)}
|
||||
* @param main_func_code
|
||||
* @param arg
|
||||
*/
|
||||
function runMain(main_func_code, arg) {
|
||||
let mainFunc = function () {
|
||||
return ''
|
||||
};
|
||||
try {
|
||||
eval(main_func_code + '\nmainFunc=main;');
|
||||
return mainFunc(arg);
|
||||
} catch (e) {
|
||||
log(`执行main_funct发生了错误:${e.message}`);
|
||||
return ''
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* js源预处理特定返回对象中的函数
|
||||
* @param ext
|
||||
*/
|
||||
function init(ext) {
|
||||
console.log('init');
|
||||
// init前重置rule和fetch_params
|
||||
rule = {};
|
||||
rule_fetch_params = {};
|
||||
fetch_params = null;
|
||||
try {
|
||||
// make shared jsContext happy muban不能import,不然会造成换源继承后变量被篡改
|
||||
// if (typeof (globalThis.mubanJs) === 'undefined') {
|
||||
// let mubanJs = request('https://ghproxy.net/https://raw.githubusercontent.com/hjdhnx/dr_py/main/js/模板.js', { 'User-Agent': MOBILE_UA });
|
||||
// mubanJs = mubanJs.replace('export default', '(function() {return muban;}()) // export default');
|
||||
// // console.log(mubanJs);
|
||||
// globalThis.mubanJs = mubanJs;
|
||||
// }
|
||||
// let muban = eval(globalThis.mubanJs);
|
||||
|
||||
let muban = 模板.getMubans();
|
||||
// print(typeof (muban));
|
||||
// print(muban);
|
||||
if (typeof ext == 'object') {
|
||||
rule = ext;
|
||||
} else if (typeof ext == 'string') {
|
||||
if (ext.startsWith('http') || ext.startsWith('file://')) {
|
||||
let query = getQuery(ext); // 获取链接传参
|
||||
let js = request(ext, {'method': 'GET'});
|
||||
if (js) {
|
||||
js = getOriginalJs(js);
|
||||
// eval(js.replace('var rule', 'rule'));
|
||||
// eval("(function(){'use strict';"+js.replace('var rule', 'rule')+"})()");
|
||||
eval("(function(){" + js.replace('var rule', 'rule') + "})()");
|
||||
}
|
||||
if (query.type === 'url' && query.params) { // 指定type是链接并且传了params支持简写如 ./xx.json
|
||||
rule.params = urljoin(ext, query.params);
|
||||
} else if (query.params) { // 没指定type直接视为字符串
|
||||
rule.params = query.params;
|
||||
}
|
||||
} else {
|
||||
ext = getOriginalJs(ext);
|
||||
// eval(ext.replace('var rule', 'rule'));
|
||||
// eval("(function(){'use strict';"+ext.replace('var rule', 'rule')+"})()");
|
||||
eval("(function(){" + ext.replace('var rule', 'rule') + "})()");
|
||||
}
|
||||
} else {
|
||||
console.log(`规则加载失败,不支持的规则类型:${typeof ext}`);
|
||||
return
|
||||
}
|
||||
rule.host = (rule.host || '').rstrip('/');
|
||||
HOST = rule.host;
|
||||
if (rule.hostJs) {
|
||||
console.log(`检测到hostJs,准备执行...`);
|
||||
try {
|
||||
eval(rule.hostJs);
|
||||
rule.host = HOST.rstrip('/');
|
||||
} catch (e) {
|
||||
console.log(`执行${rule.hostJs}获取host发生错误:${e.message}`);
|
||||
}
|
||||
}
|
||||
if (rule['模板'] === '自动') {
|
||||
try {
|
||||
let host_headers = rule['headers'] || {};
|
||||
let host_html = getCode(HOST, {headers: host_headers});
|
||||
let match_muban = '';
|
||||
let muban_keys = Object.keys(muban).filter(it => !/默认|短视2|采集1/.test(it));
|
||||
for (let muban_key of muban_keys) {
|
||||
try {
|
||||
let host_data = JSON.parse(home({}, host_html, muban[muban_key].class_parse));
|
||||
if (host_data.class && host_data.class.length > 0) {
|
||||
match_muban = muban_key;
|
||||
console.log(`自动匹配模板:【${muban_key}】`);
|
||||
break;
|
||||
}
|
||||
} catch (e) {
|
||||
// @ts-ignore
|
||||
console.log(`自动匹配模板:【${muban_key}】错误:${e.message}`);
|
||||
}
|
||||
}
|
||||
if (match_muban) {
|
||||
muban['自动'] = muban[match_muban];
|
||||
if (rule['模板修改'] && rule['模板修改'].startsWith('js:')) {
|
||||
// 模板修改:$js.toString(()=>{ muban.自动.class_parse = ''});
|
||||
eval(rule['模板修改'].replace('js:', '').trim());
|
||||
}
|
||||
} else {
|
||||
delete rule['模板']
|
||||
}
|
||||
} catch (e) {
|
||||
delete rule['模板']
|
||||
}
|
||||
}
|
||||
if (rule.模板 && muban.hasOwnProperty(rule.模板)) {
|
||||
print('继承模板:' + rule.模板);
|
||||
rule = Object.assign(muban[rule.模板], rule);
|
||||
}
|
||||
/** 处理一下 rule规则关键字段没传递的情况 **/
|
||||
let rule_cate_excludes = (rule.cate_exclude || '').split('|').filter(it => it.trim());
|
||||
let rule_tab_excludes = (rule.tab_exclude || '').split('|').filter(it => it.trim());
|
||||
rule_cate_excludes = rule_cate_excludes.concat(CATE_EXCLUDE.split('|').filter(it => it.trim()));
|
||||
rule_tab_excludes = rule_tab_excludes.concat(TAB_EXCLUDE.split('|').filter(it => it.trim()));
|
||||
|
||||
rule.cate_exclude = rule_cate_excludes.join('|');
|
||||
rule.tab_exclude = rule_tab_excludes.join('|');
|
||||
|
||||
rule.类型 = rule.类型 || '影视'; // 影视|听书|漫画|小说
|
||||
rule.url = rule.url || '';
|
||||
rule.double = rule.double || false;
|
||||
rule.homeUrl = rule.homeUrl || '';
|
||||
rule.detailUrl = rule.detailUrl || '';
|
||||
rule.searchUrl = rule.searchUrl || '';
|
||||
rule.homeUrl = rule.host && rule.homeUrl ? urljoin(rule.host, rule.homeUrl) : (rule.homeUrl || rule.host);
|
||||
rule.homeUrl = cheerio.jinja2(rule.homeUrl, {rule: rule});
|
||||
rule.detailUrl = rule.host && rule.detailUrl ? urljoin(rule.host, rule.detailUrl) : rule.detailUrl;
|
||||
rule.二级访问前 = rule.二级访问前 || '';
|
||||
if (rule.url.includes('[') && rule.url.includes(']')) {
|
||||
let u1 = rule.url.split('[')[0]
|
||||
let u2 = rule.url.split('[')[1].split(']')[0]
|
||||
rule.url = rule.host && rule.url ? urljoin(rule.host, u1) + '[' + urljoin(rule.host, u2) + ']' : rule.url;
|
||||
} else {
|
||||
rule.url = rule.host && rule.url ? urljoin(rule.host, rule.url) : rule.url;
|
||||
}
|
||||
if (rule.searchUrl.includes('[') && rule.searchUrl.includes(']') && !rule.searchUrl.includes('#')) {
|
||||
let u1 = rule.searchUrl.split('[')[0]
|
||||
let u2 = rule.searchUrl.split('[')[1].split(']')[0]
|
||||
rule.searchUrl = rule.host && rule.searchUrl ? urljoin(rule.host, u1) + '[' + urljoin(rule.host, u2) + ']' : rule.searchUrl;
|
||||
} else {
|
||||
rule.searchUrl = rule.host && rule.searchUrl ? urljoin(rule.host, rule.searchUrl) : rule.searchUrl;
|
||||
}
|
||||
|
||||
rule.timeout = rule.timeout || 5000;
|
||||
rule.encoding = rule.编码 || rule.encoding || 'utf-8';
|
||||
rule.search_encoding = rule.搜索编码 || rule.search_encoding || '';
|
||||
rule.图片来源 = rule.图片来源 || '';
|
||||
rule.图片替换 = rule.图片替换 || '';
|
||||
rule.play_json = rule.hasOwnProperty('play_json') ? rule.play_json : [];
|
||||
rule.pagecount = rule.hasOwnProperty('pagecount') ? rule.pagecount : {};
|
||||
rule.proxy_rule = rule.hasOwnProperty('proxy_rule') ? rule.proxy_rule : '';
|
||||
if (!rule.hasOwnProperty('sniffer')) { // 默认关闭辅助嗅探
|
||||
rule.sniffer = false;
|
||||
}
|
||||
rule.sniffer = rule.hasOwnProperty('sniffer') ? rule.sniffer : '';
|
||||
rule.sniffer = !!(rule.sniffer && rule.sniffer !== '0' && rule.sniffer !== 'false');
|
||||
|
||||
rule.isVideo = rule.hasOwnProperty('isVideo') ? rule.isVideo : '';
|
||||
if (rule.sniffer && !rule.isVideo) { // 默认辅助嗅探自动增强嗅探规则
|
||||
rule.isVideo = '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*';
|
||||
}
|
||||
|
||||
rule.tab_remove = rule.hasOwnProperty('tab_remove') ? rule.tab_remove : [];
|
||||
rule.tab_order = rule.hasOwnProperty('tab_order') ? rule.tab_order : [];
|
||||
rule.tab_rename = rule.hasOwnProperty('tab_rename') ? rule.tab_rename : {};
|
||||
|
||||
if (rule.headers && typeof (rule.headers) === 'object') {
|
||||
try {
|
||||
let header_keys = Object.keys(rule.headers);
|
||||
for (let k of header_keys) {
|
||||
if (k.toLowerCase() === 'user-agent') {
|
||||
let v = rule.headers[k];
|
||||
console.log(v);
|
||||
if (['MOBILE_UA', 'PC_UA', 'UC_UA', 'IOS_UA', 'UA'].includes(v)) {
|
||||
rule.headers[k] = eval(v);
|
||||
}
|
||||
} else if (k.toLowerCase() === 'cookie') {
|
||||
let v = rule.headers[k];
|
||||
if (v && v.startsWith('http')) {
|
||||
console.log(v);
|
||||
try {
|
||||
v = fetch(v);
|
||||
console.log(v);
|
||||
rule.headers[k] = v;
|
||||
} catch (e) {
|
||||
console.log(`从${v}获取cookie发生错误:${e.message}`);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(`处理headers发生错误:${e.message}`);
|
||||
}
|
||||
}
|
||||
// print(rule.headers);
|
||||
rule_fetch_params = {'headers': rule.headers || false, 'timeout': rule.timeout, 'encoding': rule.encoding};
|
||||
oheaders = rule.headers || {};
|
||||
RKEY = typeof (key) !== 'undefined' && key ? key : 'drpy_' + (rule.title || rule.host);
|
||||
pre(); // 预处理
|
||||
init_test();
|
||||
} catch (e) {
|
||||
console.log(`init_test发生错误:${e.message}`);
|
||||
}
|
||||
}
|
||||
|
||||
let homeHtmlCache = undefined;
|
||||
|
||||
/**
|
||||
* js源获取首页分类和筛选特定返回对象中的函数
|
||||
* @param filter 筛选条件字典对象
|
||||
* @param home_html 指定了源码。无需内部再请求
|
||||
* @param class_parse 自动匹配传入的模板的动态分类
|
||||
* @returns {string}
|
||||
*/
|
||||
function home(filter, home_html, class_parse) {
|
||||
console.log("home");
|
||||
home_html = home_html || '';
|
||||
class_parse = class_parse || '';
|
||||
if (typeof (rule.filter) === 'string' && rule.filter.trim().length > 0) {
|
||||
try {
|
||||
let filter_json = ungzip(rule.filter.trim());
|
||||
rule.filter = JSON.parse(filter_json);
|
||||
} catch (e) {
|
||||
rule.filter = {};
|
||||
}
|
||||
}
|
||||
let homeObj = {
|
||||
filter: rule.filter || false,
|
||||
MY_URL: rule.homeUrl,
|
||||
class_name: rule.class_name || '',
|
||||
class_url: rule.class_url || '',
|
||||
class_parse: class_parse || rule.class_parse || '',
|
||||
cate_exclude: rule.cate_exclude,
|
||||
home_html: home_html,
|
||||
};
|
||||
return homeParse(homeObj);
|
||||
}
|
||||
|
||||
/**
|
||||
* js源获取首页推荐数据列表特定返回对象中的函数
|
||||
* @param params
|
||||
* @returns {string}
|
||||
*/
|
||||
function homeVod(params) {
|
||||
console.log("homeVod");
|
||||
let homeVodObj = {
|
||||
推荐: rule.推荐,
|
||||
double: rule.double,
|
||||
homeUrl: rule.homeUrl,
|
||||
detailUrl: rule.detailUrl
|
||||
};
|
||||
return homeVodParse(homeVodObj)
|
||||
// return "{}";
|
||||
}
|
||||
|
||||
/**
|
||||
* js源获取分类页一级数据列表特定返回对象中的函数
|
||||
* @param tid 分类id
|
||||
* @param pg 页数
|
||||
* @param filter 当前选中的筛选条件
|
||||
* @param extend 扩展
|
||||
* @returns {string}
|
||||
*/
|
||||
function category(tid, pg, filter, extend) {
|
||||
let cateObj = {
|
||||
url: rule.url,
|
||||
一级: rule.一级,
|
||||
tid: tid,
|
||||
pg: parseInt(pg),
|
||||
filter: filter,
|
||||
extend: extend
|
||||
};
|
||||
// console.log(JSON.stringify(extend));
|
||||
return categoryParse(cateObj)
|
||||
}
|
||||
|
||||
/**
|
||||
* js源获取二级详情页数据特定返回对象中的函数
|
||||
* @param vod_url 一级列表中的vod_id或者是带分类的自拼接 vod_id 如 fyclass$vod_id
|
||||
* @returns {string}
|
||||
*/
|
||||
function detail(vod_url) {
|
||||
let orId = vod_url;
|
||||
let fyclass = '';
|
||||
log('orId:' + orId);
|
||||
if (vod_url.indexOf('$') > -1) {
|
||||
let tmp = vod_url.split('$');
|
||||
fyclass = tmp[0];
|
||||
vod_url = tmp[1];
|
||||
}
|
||||
let detailUrl = vod_url.split('@@')[0];
|
||||
let url;
|
||||
if (!detailUrl.startsWith('http') && !detailUrl.includes('/')) {
|
||||
url = rule.detailUrl.replaceAll('fyid', detailUrl).replaceAll('fyclass', fyclass);
|
||||
} else if (detailUrl.includes('/')) {
|
||||
url = urljoin(rule.homeUrl, detailUrl);
|
||||
} else {
|
||||
url = detailUrl
|
||||
}
|
||||
let detailObj = {
|
||||
orId: orId,
|
||||
url: url,
|
||||
二级: rule.二级,
|
||||
二级访问前: rule.二级访问前,
|
||||
detailUrl: detailUrl,
|
||||
fyclass: fyclass,
|
||||
tab_exclude: rule.tab_exclude,
|
||||
}
|
||||
return detailParse(detailObj)
|
||||
}
|
||||
|
||||
/**
|
||||
* js源选集按钮播放点击事件特定返回对象中的函数
|
||||
* @param flag 线路名
|
||||
* @param id 播放按钮的链接
|
||||
* @param flags 全局配置的flags是否需要解析的标识列表
|
||||
* @returns {string}
|
||||
*/
|
||||
function play(flag, id, flags) {
|
||||
let playObj = {
|
||||
url: id,
|
||||
flag: flag,
|
||||
flags: flags
|
||||
}
|
||||
return playParse(playObj);
|
||||
}
|
||||
|
||||
/**
|
||||
* js源搜索返回的数据列表特定返回对象中的函数
|
||||
* @param wd 搜索关键字
|
||||
* @param quick 是否来自快速搜索
|
||||
* @returns {string}
|
||||
*/
|
||||
function search(wd, quick, pg) {
|
||||
if (rule.search_encoding) {
|
||||
if (rule.search_encoding.toLowerCase() !== 'utf-8') {
|
||||
// 按搜索编码进行编码
|
||||
wd = encodeStr(wd, rule.search_encoding);
|
||||
}
|
||||
} else if (rule.encoding && rule.encoding.toLowerCase() !== 'utf-8') {
|
||||
// 按全局编码进行编码
|
||||
wd = encodeStr(wd, rule.encoding);
|
||||
}
|
||||
let searchObj = {
|
||||
searchUrl: rule.searchUrl,
|
||||
搜索: rule.搜索,
|
||||
wd: wd,
|
||||
//pg: pg,
|
||||
pg: pg || 1,
|
||||
quick: quick,
|
||||
};
|
||||
// console.log(JSON.stringify(searchObj));
|
||||
return searchParse(searchObj)
|
||||
}
|
||||
|
||||
/**
|
||||
* js源本地代理返回的数据列表特定返回对象中的函数
|
||||
* @param params 代理链接参数比如 /proxy?do=js&url=https://wwww.baidu.com => params就是 {do:'js','url':'https://wwww.baidu.com'}
|
||||
* @returns {*}
|
||||
*/
|
||||
function proxy(params) {
|
||||
if (rule.proxy_rule && rule.proxy_rule.trim()) {
|
||||
rule.proxy_rule = rule.proxy_rule.trim();
|
||||
}
|
||||
if (rule.proxy_rule.startsWith('js:')) {
|
||||
rule.proxy_rule = rule.proxy_rule.replace('js:', '');
|
||||
}
|
||||
let proxyObj = {
|
||||
params: params,
|
||||
proxy_rule: rule.proxy_rule
|
||||
};
|
||||
return proxyParse(proxyObj)
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 是否启用辅助嗅探功能,启用后可以根据isVideo函数进行手动识别为视频的链接地址。默认为false
|
||||
* @returns {*|boolean|boolean}
|
||||
*/
|
||||
function sniffer() {
|
||||
let enable_sniffer = rule.sniffer || false;
|
||||
if (enable_sniffer) {
|
||||
// log('准备执行辅助嗅探代理规则:\n'+rule.isVideo);
|
||||
log('开始执行辅助嗅探代理规则...');
|
||||
}
|
||||
return enable_sniffer
|
||||
}
|
||||
|
||||
/**
|
||||
* 启用辅助嗅探功能后根据次函数返回的值识别地址是否为视频,返回true/false
|
||||
* @param url
|
||||
*/
|
||||
function isVideo(url) {
|
||||
let t = 0;
|
||||
let is_video;
|
||||
if (rule.isVideo && rule.isVideo.trim()) {
|
||||
is_video = rule.isVideo.trim();
|
||||
}
|
||||
if (is_video.startsWith('js:')) {
|
||||
is_video = is_video.replace('js:', '');
|
||||
t = 1;
|
||||
}
|
||||
let isVideoObj = {
|
||||
url: url,
|
||||
isVideo: is_video,
|
||||
t: t,
|
||||
};
|
||||
let result = isVideoParse(isVideoObj);
|
||||
if (result) {
|
||||
log('成功执行辅助嗅探规则并检测到视频地址:\n' + rule.isVideo);
|
||||
}
|
||||
return result
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取规则
|
||||
* @returns {{}}
|
||||
*/
|
||||
function getRule(key) {
|
||||
return key ? rule[key] || '' : rule
|
||||
}
|
||||
|
||||
function DRPY() {//导出函数
|
||||
return {
|
||||
runMain: runMain,
|
||||
getRule: getRule,
|
||||
init: init,
|
||||
home: home,
|
||||
homeVod: homeVod,
|
||||
category: category,
|
||||
detail: detail,
|
||||
play: play,
|
||||
search: search,
|
||||
proxy: proxy,
|
||||
sniffer: sniffer,
|
||||
isVideo: isVideo,
|
||||
fixAdM3u8Ai: fixAdM3u8Ai,
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 导出函数无法简写成下面的形式:
|
||||
|
||||
export default {
|
||||
...DRPY,
|
||||
DRPY
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
// 导出函数对象
|
||||
export default {
|
||||
runMain,
|
||||
getRule,
|
||||
init,
|
||||
home,
|
||||
homeVod,
|
||||
category,
|
||||
detail,
|
||||
play,
|
||||
search,
|
||||
proxy,
|
||||
sniffer,
|
||||
isVideo,
|
||||
fixAdM3u8Ai,
|
||||
DRPY,
|
||||
}
|
||||
+73
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2
@@ -0,0 +1,2 @@
|
||||
/*! pako 2.1.0 https://github.com/nodeca/pako @license (MIT AND Zlib) */
|
||||
!function(t,e){"object"==typeof exports&&"undefined"!=typeof module?e(exports):"function"==typeof define&&define.amd?define(["exports"],e):e((t="undefined"!=typeof globalThis?globalThis:t||self).pako={})}(this,(function(t){"use strict";function e(t){let e=t.length;for(;--e>=0;)t[e]=0}const a=256,i=286,n=30,s=15,r=new Uint8Array([0,0,0,0,0,0,0,0,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,0]),o=new Uint8Array([0,0,0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7,8,8,9,9,10,10,11,11,12,12,13,13]),l=new Uint8Array([0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,3,7]),h=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]),d=new Array(576);e(d);const _=new Array(60);e(_);const f=new Array(512);e(f);const c=new Array(256);e(c);const u=new Array(29);e(u);const w=new Array(n);function m(t,e,a,i,n){this.static_tree=t,this.extra_bits=e,this.extra_base=a,this.elems=i,this.max_length=n,this.has_stree=t&&t.length}let b,g,p;function k(t,e){this.dyn_tree=t,this.max_code=0,this.stat_desc=e}e(w);const v=t=>t<256?f[t]:f[256+(t>>>7)],y=(t,e)=>{t.pending_buf[t.pending++]=255&e,t.pending_buf[t.pending++]=e>>>8&255},x=(t,e,a)=>{t.bi_valid>16-a?(t.bi_buf|=e<<t.bi_valid&65535,y(t,t.bi_buf),t.bi_buf=e>>16-t.bi_valid,t.bi_valid+=a-16):(t.bi_buf|=e<<t.bi_valid&65535,t.bi_valid+=a)},z=(t,e,a)=>{x(t,a[2*e],a[2*e+1])},A=(t,e)=>{let a=0;do{a|=1&t,t>>>=1,a<<=1}while(--e>0);return a>>>1},E=(t,e,a)=>{const i=new Array(16);let n,r,o=0;for(n=1;n<=s;n++)o=o+a[n-1]<<1,i[n]=o;for(r=0;r<=e;r++){let e=t[2*r+1];0!==e&&(t[2*r]=A(i[e]++,e))}},R=t=>{let e;for(e=0;e<i;e++)t.dyn_ltree[2*e]=0;for(e=0;e<n;e++)t.dyn_dtree[2*e]=0;for(e=0;e<19;e++)t.bl_tree[2*e]=0;t.dyn_ltree[512]=1,t.opt_len=t.static_len=0,t.sym_next=t.matches=0},Z=t=>{t.bi_valid>8?y(t,t.bi_buf):t.bi_valid>0&&(t.pending_buf[t.pending++]=t.bi_buf),t.bi_buf=0,t.bi_valid=0},U=(t,e,a,i)=>{const n=2*e,s=2*a;return t[n]<t[s]||t[n]===t[s]&&i[e]<=i[a]},S=(t,e,a)=>{const i=t.heap[a];let n=a<<1;for(;n<=t.heap_len&&(n<t.heap_len&&U(e,t.heap[n+1],t.heap[n],t.depth)&&n++,!U(e,i,t.heap[n],t.depth));)t.heap[a]=t.heap[n],a=n,n<<=1;t.heap[a]=i},D=(t,e,i)=>{let n,s,l,h,d=0;if(0!==t.sym_next)do{n=255&t.pending_buf[t.sym_buf+d++],n+=(255&t.pending_buf[t.sym_buf+d++])<<8,s=t.pending_buf[t.sym_buf+d++],0===n?z(t,s,e):(l=c[s],z(t,l+a+1,e),h=r[l],0!==h&&(s-=u[l],x(t,s,h)),n--,l=v(n),z(t,l,i),h=o[l],0!==h&&(n-=w[l],x(t,n,h)))}while(d<t.sym_next);z(t,256,e)},T=(t,e)=>{const a=e.dyn_tree,i=e.stat_desc.static_tree,n=e.stat_desc.has_stree,r=e.stat_desc.elems;let o,l,h,d=-1;for(t.heap_len=0,t.heap_max=573,o=0;o<r;o++)0!==a[2*o]?(t.heap[++t.heap_len]=d=o,t.depth[o]=0):a[2*o+1]=0;for(;t.heap_len<2;)h=t.heap[++t.heap_len]=d<2?++d:0,a[2*h]=1,t.depth[h]=0,t.opt_len--,n&&(t.static_len-=i[2*h+1]);for(e.max_code=d,o=t.heap_len>>1;o>=1;o--)S(t,a,o);h=r;do{o=t.heap[1],t.heap[1]=t.heap[t.heap_len--],S(t,a,1),l=t.heap[1],t.heap[--t.heap_max]=o,t.heap[--t.heap_max]=l,a[2*h]=a[2*o]+a[2*l],t.depth[h]=(t.depth[o]>=t.depth[l]?t.depth[o]:t.depth[l])+1,a[2*o+1]=a[2*l+1]=h,t.heap[1]=h++,S(t,a,1)}while(t.heap_len>=2);t.heap[--t.heap_max]=t.heap[1],((t,e)=>{const a=e.dyn_tree,i=e.max_code,n=e.stat_desc.static_tree,r=e.stat_desc.has_stree,o=e.stat_desc.extra_bits,l=e.stat_desc.extra_base,h=e.stat_desc.max_length;let d,_,f,c,u,w,m=0;for(c=0;c<=s;c++)t.bl_count[c]=0;for(a[2*t.heap[t.heap_max]+1]=0,d=t.heap_max+1;d<573;d++)_=t.heap[d],c=a[2*a[2*_+1]+1]+1,c>h&&(c=h,m++),a[2*_+1]=c,_>i||(t.bl_count[c]++,u=0,_>=l&&(u=o[_-l]),w=a[2*_],t.opt_len+=w*(c+u),r&&(t.static_len+=w*(n[2*_+1]+u)));if(0!==m){do{for(c=h-1;0===t.bl_count[c];)c--;t.bl_count[c]--,t.bl_count[c+1]+=2,t.bl_count[h]--,m-=2}while(m>0);for(c=h;0!==c;c--)for(_=t.bl_count[c];0!==_;)f=t.heap[--d],f>i||(a[2*f+1]!==c&&(t.opt_len+=(c-a[2*f+1])*a[2*f],a[2*f+1]=c),_--)}})(t,e),E(a,d,t.bl_count)},O=(t,e,a)=>{let i,n,s=-1,r=e[1],o=0,l=7,h=4;for(0===r&&(l=138,h=3),e[2*(a+1)+1]=65535,i=0;i<=a;i++)n=r,r=e[2*(i+1)+1],++o<l&&n===r||(o<h?t.bl_tree[2*n]+=o:0!==n?(n!==s&&t.bl_tree[2*n]++,t.bl_tree[32]++):o<=10?t.bl_tree[34]++:t.bl_tree[36]++,o=0,s=n,0===r?(l=138,h=3):n===r?(l=6,h=3):(l=7,h=4))},I=(t,e,a)=>{let i,n,s=-1,r=e[1],o=0,l=7,h=4;for(0===r&&(l=138,h=3),i=0;i<=a;i++)if(n=r,r=e[2*(i+1)+1],!(++o<l&&n===r)){if(o<h)do{z(t,n,t.bl_tree)}while(0!=--o);else 0!==n?(n!==s&&(z(t,n,t.bl_tree),o--),z(t,16,t.bl_tree),x(t,o-3,2)):o<=10?(z(t,17,t.bl_tree),x(t,o-3,3)):(z(t,18,t.bl_tree),x(t,o-11,7));o=0,s=n,0===r?(l=138,h=3):n===r?(l=6,h=3):(l=7,h=4)}};let F=!1;const L=(t,e,a,i)=>{x(t,0+(i?1:0),3),Z(t),y(t,a),y(t,~a),a&&t.pending_buf.set(t.window.subarray(e,e+a),t.pending),t.pending+=a};var N=(t,e,i,n)=>{let s,r,o=0;t.level>0?(2===t.strm.data_type&&(t.strm.data_type=(t=>{let e,i=4093624447;for(e=0;e<=31;e++,i>>>=1)if(1&i&&0!==t.dyn_ltree[2*e])return 0;if(0!==t.dyn_ltree[18]||0!==t.dyn_ltree[20]||0!==t.dyn_ltree[26])return 1;for(e=32;e<a;e++)if(0!==t.dyn_ltree[2*e])return 1;return 0})(t)),T(t,t.l_desc),T(t,t.d_desc),o=(t=>{let e;for(O(t,t.dyn_ltree,t.l_desc.max_code),O(t,t.dyn_dtree,t.d_desc.max_code),T(t,t.bl_desc),e=18;e>=3&&0===t.bl_tree[2*h[e]+1];e--);return t.opt_len+=3*(e+1)+5+5+4,e})(t),s=t.opt_len+3+7>>>3,r=t.static_len+3+7>>>3,r<=s&&(s=r)):s=r=i+5,i+4<=s&&-1!==e?L(t,e,i,n):4===t.strategy||r===s?(x(t,2+(n?1:0),3),D(t,d,_)):(x(t,4+(n?1:0),3),((t,e,a,i)=>{let n;for(x(t,e-257,5),x(t,a-1,5),x(t,i-4,4),n=0;n<i;n++)x(t,t.bl_tree[2*h[n]+1],3);I(t,t.dyn_ltree,e-1),I(t,t.dyn_dtree,a-1)})(t,t.l_desc.max_code+1,t.d_desc.max_code+1,o+1),D(t,t.dyn_ltree,t.dyn_dtree)),R(t),n&&Z(t)},B={_tr_init:t=>{F||((()=>{let t,e,a,h,k;const v=new Array(16);for(a=0,h=0;h<28;h++)for(u[h]=a,t=0;t<1<<r[h];t++)c[a++]=h;for(c[a-1]=h,k=0,h=0;h<16;h++)for(w[h]=k,t=0;t<1<<o[h];t++)f[k++]=h;for(k>>=7;h<n;h++)for(w[h]=k<<7,t=0;t<1<<o[h]-7;t++)f[256+k++]=h;for(e=0;e<=s;e++)v[e]=0;for(t=0;t<=143;)d[2*t+1]=8,t++,v[8]++;for(;t<=255;)d[2*t+1]=9,t++,v[9]++;for(;t<=279;)d[2*t+1]=7,t++,v[7]++;for(;t<=287;)d[2*t+1]=8,t++,v[8]++;for(E(d,287,v),t=0;t<n;t++)_[2*t+1]=5,_[2*t]=A(t,5);b=new m(d,r,257,i,s),g=new m(_,o,0,n,s),p=new m(new Array(0),l,0,19,7)})(),F=!0),t.l_desc=new k(t.dyn_ltree,b),t.d_desc=new k(t.dyn_dtree,g),t.bl_desc=new k(t.bl_tree,p),t.bi_buf=0,t.bi_valid=0,R(t)},_tr_stored_block:L,_tr_flush_block:N,_tr_tally:(t,e,i)=>(t.pending_buf[t.sym_buf+t.sym_next++]=e,t.pending_buf[t.sym_buf+t.sym_next++]=e>>8,t.pending_buf[t.sym_buf+t.sym_next++]=i,0===e?t.dyn_ltree[2*i]++:(t.matches++,e--,t.dyn_ltree[2*(c[i]+a+1)]++,t.dyn_dtree[2*v(e)]++),t.sym_next===t.sym_end),_tr_align:t=>{x(t,2,3),z(t,256,d),(t=>{16===t.bi_valid?(y(t,t.bi_buf),t.bi_buf=0,t.bi_valid=0):t.bi_valid>=8&&(t.pending_buf[t.pending++]=255&t.bi_buf,t.bi_buf>>=8,t.bi_valid-=8)})(t)}};var C=(t,e,a,i)=>{let n=65535&t|0,s=t>>>16&65535|0,r=0;for(;0!==a;){r=a>2e3?2e3:a,a-=r;do{n=n+e[i++]|0,s=s+n|0}while(--r);n%=65521,s%=65521}return n|s<<16|0};const M=new Uint32Array((()=>{let t,e=[];for(var a=0;a<256;a++){t=a;for(var i=0;i<8;i++)t=1&t?3988292384^t>>>1:t>>>1;e[a]=t}return e})());var H=(t,e,a,i)=>{const n=M,s=i+a;t^=-1;for(let a=i;a<s;a++)t=t>>>8^n[255&(t^e[a])];return-1^t},j={2:"need dictionary",1:"stream end",0:"","-1":"file error","-2":"stream error","-3":"data error","-4":"insufficient memory","-5":"buffer error","-6":"incompatible version"},K={Z_NO_FLUSH:0,Z_PARTIAL_FLUSH:1,Z_SYNC_FLUSH:2,Z_FULL_FLUSH:3,Z_FINISH:4,Z_BLOCK:5,Z_TREES:6,Z_OK:0,Z_STREAM_END:1,Z_NEED_DICT:2,Z_ERRNO:-1,Z_STREAM_ERROR:-2,Z_DATA_ERROR:-3,Z_MEM_ERROR:-4,Z_BUF_ERROR:-5,Z_NO_COMPRESSION:0,Z_BEST_SPEED:1,Z_BEST_COMPRESSION:9,Z_DEFAULT_COMPRESSION:-1,Z_FILTERED:1,Z_HUFFMAN_ONLY:2,Z_RLE:3,Z_FIXED:4,Z_DEFAULT_STRATEGY:0,Z_BINARY:0,Z_TEXT:1,Z_UNKNOWN:2,Z_DEFLATED:8};const{_tr_init:P,_tr_stored_block:Y,_tr_flush_block:G,_tr_tally:X,_tr_align:W}=B,{Z_NO_FLUSH:q,Z_PARTIAL_FLUSH:J,Z_FULL_FLUSH:Q,Z_FINISH:V,Z_BLOCK:$,Z_OK:tt,Z_STREAM_END:et,Z_STREAM_ERROR:at,Z_DATA_ERROR:it,Z_BUF_ERROR:nt,Z_DEFAULT_COMPRESSION:st,Z_FILTERED:rt,Z_HUFFMAN_ONLY:ot,Z_RLE:lt,Z_FIXED:ht,Z_DEFAULT_STRATEGY:dt,Z_UNKNOWN:_t,Z_DEFLATED:ft}=K,ct=258,ut=262,wt=42,mt=113,bt=666,gt=(t,e)=>(t.msg=j[e],e),pt=t=>2*t-(t>4?9:0),kt=t=>{let e=t.length;for(;--e>=0;)t[e]=0},vt=t=>{let e,a,i,n=t.w_size;e=t.hash_size,i=e;do{a=t.head[--i],t.head[i]=a>=n?a-n:0}while(--e);e=n,i=e;do{a=t.prev[--i],t.prev[i]=a>=n?a-n:0}while(--e)};let yt=(t,e,a)=>(e<<t.hash_shift^a)&t.hash_mask;const xt=t=>{const e=t.state;let a=e.pending;a>t.avail_out&&(a=t.avail_out),0!==a&&(t.output.set(e.pending_buf.subarray(e.pending_out,e.pending_out+a),t.next_out),t.next_out+=a,e.pending_out+=a,t.total_out+=a,t.avail_out-=a,e.pending-=a,0===e.pending&&(e.pending_out=0))},zt=(t,e)=>{G(t,t.block_start>=0?t.block_start:-1,t.strstart-t.block_start,e),t.block_start=t.strstart,xt(t.strm)},At=(t,e)=>{t.pending_buf[t.pending++]=e},Et=(t,e)=>{t.pending_buf[t.pending++]=e>>>8&255,t.pending_buf[t.pending++]=255&e},Rt=(t,e,a,i)=>{let n=t.avail_in;return n>i&&(n=i),0===n?0:(t.avail_in-=n,e.set(t.input.subarray(t.next_in,t.next_in+n),a),1===t.state.wrap?t.adler=C(t.adler,e,n,a):2===t.state.wrap&&(t.adler=H(t.adler,e,n,a)),t.next_in+=n,t.total_in+=n,n)},Zt=(t,e)=>{let a,i,n=t.max_chain_length,s=t.strstart,r=t.prev_length,o=t.nice_match;const l=t.strstart>t.w_size-ut?t.strstart-(t.w_size-ut):0,h=t.window,d=t.w_mask,_=t.prev,f=t.strstart+ct;let c=h[s+r-1],u=h[s+r];t.prev_length>=t.good_match&&(n>>=2),o>t.lookahead&&(o=t.lookahead);do{if(a=e,h[a+r]===u&&h[a+r-1]===c&&h[a]===h[s]&&h[++a]===h[s+1]){s+=2,a++;do{}while(h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&h[++s]===h[++a]&&s<f);if(i=ct-(f-s),s=f-ct,i>r){if(t.match_start=e,r=i,i>=o)break;c=h[s+r-1],u=h[s+r]}}}while((e=_[e&d])>l&&0!=--n);return r<=t.lookahead?r:t.lookahead},Ut=t=>{const e=t.w_size;let a,i,n;do{if(i=t.window_size-t.lookahead-t.strstart,t.strstart>=e+(e-ut)&&(t.window.set(t.window.subarray(e,e+e-i),0),t.match_start-=e,t.strstart-=e,t.block_start-=e,t.insert>t.strstart&&(t.insert=t.strstart),vt(t),i+=e),0===t.strm.avail_in)break;if(a=Rt(t.strm,t.window,t.strstart+t.lookahead,i),t.lookahead+=a,t.lookahead+t.insert>=3)for(n=t.strstart-t.insert,t.ins_h=t.window[n],t.ins_h=yt(t,t.ins_h,t.window[n+1]);t.insert&&(t.ins_h=yt(t,t.ins_h,t.window[n+3-1]),t.prev[n&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=n,n++,t.insert--,!(t.lookahead+t.insert<3)););}while(t.lookahead<ut&&0!==t.strm.avail_in)},St=(t,e)=>{let a,i,n,s=t.pending_buf_size-5>t.w_size?t.w_size:t.pending_buf_size-5,r=0,o=t.strm.avail_in;do{if(a=65535,n=t.bi_valid+42>>3,t.strm.avail_out<n)break;if(n=t.strm.avail_out-n,i=t.strstart-t.block_start,a>i+t.strm.avail_in&&(a=i+t.strm.avail_in),a>n&&(a=n),a<s&&(0===a&&e!==V||e===q||a!==i+t.strm.avail_in))break;r=e===V&&a===i+t.strm.avail_in?1:0,Y(t,0,0,r),t.pending_buf[t.pending-4]=a,t.pending_buf[t.pending-3]=a>>8,t.pending_buf[t.pending-2]=~a,t.pending_buf[t.pending-1]=~a>>8,xt(t.strm),i&&(i>a&&(i=a),t.strm.output.set(t.window.subarray(t.block_start,t.block_start+i),t.strm.next_out),t.strm.next_out+=i,t.strm.avail_out-=i,t.strm.total_out+=i,t.block_start+=i,a-=i),a&&(Rt(t.strm,t.strm.output,t.strm.next_out,a),t.strm.next_out+=a,t.strm.avail_out-=a,t.strm.total_out+=a)}while(0===r);return o-=t.strm.avail_in,o&&(o>=t.w_size?(t.matches=2,t.window.set(t.strm.input.subarray(t.strm.next_in-t.w_size,t.strm.next_in),0),t.strstart=t.w_size,t.insert=t.strstart):(t.window_size-t.strstart<=o&&(t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,t.insert>t.strstart&&(t.insert=t.strstart)),t.window.set(t.strm.input.subarray(t.strm.next_in-o,t.strm.next_in),t.strstart),t.strstart+=o,t.insert+=o>t.w_size-t.insert?t.w_size-t.insert:o),t.block_start=t.strstart),t.high_water<t.strstart&&(t.high_water=t.strstart),r?4:e!==q&&e!==V&&0===t.strm.avail_in&&t.strstart===t.block_start?2:(n=t.window_size-t.strstart,t.strm.avail_in>n&&t.block_start>=t.w_size&&(t.block_start-=t.w_size,t.strstart-=t.w_size,t.window.set(t.window.subarray(t.w_size,t.w_size+t.strstart),0),t.matches<2&&t.matches++,n+=t.w_size,t.insert>t.strstart&&(t.insert=t.strstart)),n>t.strm.avail_in&&(n=t.strm.avail_in),n&&(Rt(t.strm,t.window,t.strstart,n),t.strstart+=n,t.insert+=n>t.w_size-t.insert?t.w_size-t.insert:n),t.high_water<t.strstart&&(t.high_water=t.strstart),n=t.bi_valid+42>>3,n=t.pending_buf_size-n>65535?65535:t.pending_buf_size-n,s=n>t.w_size?t.w_size:n,i=t.strstart-t.block_start,(i>=s||(i||e===V)&&e!==q&&0===t.strm.avail_in&&i<=n)&&(a=i>n?n:i,r=e===V&&0===t.strm.avail_in&&a===i?1:0,Y(t,t.block_start,a,r),t.block_start+=a,xt(t.strm)),r?3:1)},Dt=(t,e)=>{let a,i;for(;;){if(t.lookahead<ut){if(Ut(t),t.lookahead<ut&&e===q)return 1;if(0===t.lookahead)break}if(a=0,t.lookahead>=3&&(t.ins_h=yt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),0!==a&&t.strstart-a<=t.w_size-ut&&(t.match_length=Zt(t,a)),t.match_length>=3)if(i=X(t,t.strstart-t.match_start,t.match_length-3),t.lookahead-=t.match_length,t.match_length<=t.max_lazy_match&&t.lookahead>=3){t.match_length--;do{t.strstart++,t.ins_h=yt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart}while(0!=--t.match_length);t.strstart++}else t.strstart+=t.match_length,t.match_length=0,t.ins_h=t.window[t.strstart],t.ins_h=yt(t,t.ins_h,t.window[t.strstart+1]);else i=X(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++;if(i&&(zt(t,!1),0===t.strm.avail_out))return 1}return t.insert=t.strstart<2?t.strstart:2,e===V?(zt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(zt(t,!1),0===t.strm.avail_out)?1:2},Tt=(t,e)=>{let a,i,n;for(;;){if(t.lookahead<ut){if(Ut(t),t.lookahead<ut&&e===q)return 1;if(0===t.lookahead)break}if(a=0,t.lookahead>=3&&(t.ins_h=yt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart),t.prev_length=t.match_length,t.prev_match=t.match_start,t.match_length=2,0!==a&&t.prev_length<t.max_lazy_match&&t.strstart-a<=t.w_size-ut&&(t.match_length=Zt(t,a),t.match_length<=5&&(t.strategy===rt||3===t.match_length&&t.strstart-t.match_start>4096)&&(t.match_length=2)),t.prev_length>=3&&t.match_length<=t.prev_length){n=t.strstart+t.lookahead-3,i=X(t,t.strstart-1-t.prev_match,t.prev_length-3),t.lookahead-=t.prev_length-1,t.prev_length-=2;do{++t.strstart<=n&&(t.ins_h=yt(t,t.ins_h,t.window[t.strstart+3-1]),a=t.prev[t.strstart&t.w_mask]=t.head[t.ins_h],t.head[t.ins_h]=t.strstart)}while(0!=--t.prev_length);if(t.match_available=0,t.match_length=2,t.strstart++,i&&(zt(t,!1),0===t.strm.avail_out))return 1}else if(t.match_available){if(i=X(t,0,t.window[t.strstart-1]),i&&zt(t,!1),t.strstart++,t.lookahead--,0===t.strm.avail_out)return 1}else t.match_available=1,t.strstart++,t.lookahead--}return t.match_available&&(i=X(t,0,t.window[t.strstart-1]),t.match_available=0),t.insert=t.strstart<2?t.strstart:2,e===V?(zt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(zt(t,!1),0===t.strm.avail_out)?1:2};function Ot(t,e,a,i,n){this.good_length=t,this.max_lazy=e,this.nice_length=a,this.max_chain=i,this.func=n}const It=[new Ot(0,0,0,0,St),new Ot(4,4,8,4,Dt),new Ot(4,5,16,8,Dt),new Ot(4,6,32,32,Dt),new Ot(4,4,16,16,Tt),new Ot(8,16,32,32,Tt),new Ot(8,16,128,128,Tt),new Ot(8,32,128,256,Tt),new Ot(32,128,258,1024,Tt),new Ot(32,258,258,4096,Tt)];function Ft(){this.strm=null,this.status=0,this.pending_buf=null,this.pending_buf_size=0,this.pending_out=0,this.pending=0,this.wrap=0,this.gzhead=null,this.gzindex=0,this.method=ft,this.last_flush=-1,this.w_size=0,this.w_bits=0,this.w_mask=0,this.window=null,this.window_size=0,this.prev=null,this.head=null,this.ins_h=0,this.hash_size=0,this.hash_bits=0,this.hash_mask=0,this.hash_shift=0,this.block_start=0,this.match_length=0,this.prev_match=0,this.match_available=0,this.strstart=0,this.match_start=0,this.lookahead=0,this.prev_length=0,this.max_chain_length=0,this.max_lazy_match=0,this.level=0,this.strategy=0,this.good_match=0,this.nice_match=0,this.dyn_ltree=new Uint16Array(1146),this.dyn_dtree=new Uint16Array(122),this.bl_tree=new Uint16Array(78),kt(this.dyn_ltree),kt(this.dyn_dtree),kt(this.bl_tree),this.l_desc=null,this.d_desc=null,this.bl_desc=null,this.bl_count=new Uint16Array(16),this.heap=new Uint16Array(573),kt(this.heap),this.heap_len=0,this.heap_max=0,this.depth=new Uint16Array(573),kt(this.depth),this.sym_buf=0,this.lit_bufsize=0,this.sym_next=0,this.sym_end=0,this.opt_len=0,this.static_len=0,this.matches=0,this.insert=0,this.bi_buf=0,this.bi_valid=0}const Lt=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.status!==wt&&57!==e.status&&69!==e.status&&73!==e.status&&91!==e.status&&103!==e.status&&e.status!==mt&&e.status!==bt?1:0},Nt=t=>{if(Lt(t))return gt(t,at);t.total_in=t.total_out=0,t.data_type=_t;const e=t.state;return e.pending=0,e.pending_out=0,e.wrap<0&&(e.wrap=-e.wrap),e.status=2===e.wrap?57:e.wrap?wt:mt,t.adler=2===e.wrap?0:1,e.last_flush=-2,P(e),tt},Bt=t=>{const e=Nt(t);var a;return e===tt&&((a=t.state).window_size=2*a.w_size,kt(a.head),a.max_lazy_match=It[a.level].max_lazy,a.good_match=It[a.level].good_length,a.nice_match=It[a.level].nice_length,a.max_chain_length=It[a.level].max_chain,a.strstart=0,a.block_start=0,a.lookahead=0,a.insert=0,a.match_length=a.prev_length=2,a.match_available=0,a.ins_h=0),e},Ct=(t,e,a,i,n,s)=>{if(!t)return at;let r=1;if(e===st&&(e=6),i<0?(r=0,i=-i):i>15&&(r=2,i-=16),n<1||n>9||a!==ft||i<8||i>15||e<0||e>9||s<0||s>ht||8===i&&1!==r)return gt(t,at);8===i&&(i=9);const o=new Ft;return t.state=o,o.strm=t,o.status=wt,o.wrap=r,o.gzhead=null,o.w_bits=i,o.w_size=1<<o.w_bits,o.w_mask=o.w_size-1,o.hash_bits=n+7,o.hash_size=1<<o.hash_bits,o.hash_mask=o.hash_size-1,o.hash_shift=~~((o.hash_bits+3-1)/3),o.window=new Uint8Array(2*o.w_size),o.head=new Uint16Array(o.hash_size),o.prev=new Uint16Array(o.w_size),o.lit_bufsize=1<<n+6,o.pending_buf_size=4*o.lit_bufsize,o.pending_buf=new Uint8Array(o.pending_buf_size),o.sym_buf=o.lit_bufsize,o.sym_end=3*(o.lit_bufsize-1),o.level=e,o.strategy=s,o.method=a,Bt(t)};var Mt={deflateInit:(t,e)=>Ct(t,e,ft,15,8,dt),deflateInit2:Ct,deflateReset:Bt,deflateResetKeep:Nt,deflateSetHeader:(t,e)=>Lt(t)||2!==t.state.wrap?at:(t.state.gzhead=e,tt),deflate:(t,e)=>{if(Lt(t)||e>$||e<0)return t?gt(t,at):at;const a=t.state;if(!t.output||0!==t.avail_in&&!t.input||a.status===bt&&e!==V)return gt(t,0===t.avail_out?nt:at);const i=a.last_flush;if(a.last_flush=e,0!==a.pending){if(xt(t),0===t.avail_out)return a.last_flush=-1,tt}else if(0===t.avail_in&&pt(e)<=pt(i)&&e!==V)return gt(t,nt);if(a.status===bt&&0!==t.avail_in)return gt(t,nt);if(a.status===wt&&0===a.wrap&&(a.status=mt),a.status===wt){let e=ft+(a.w_bits-8<<4)<<8,i=-1;if(i=a.strategy>=ot||a.level<2?0:a.level<6?1:6===a.level?2:3,e|=i<<6,0!==a.strstart&&(e|=32),e+=31-e%31,Et(a,e),0!==a.strstart&&(Et(a,t.adler>>>16),Et(a,65535&t.adler)),t.adler=1,a.status=mt,xt(t),0!==a.pending)return a.last_flush=-1,tt}if(57===a.status)if(t.adler=0,At(a,31),At(a,139),At(a,8),a.gzhead)At(a,(a.gzhead.text?1:0)+(a.gzhead.hcrc?2:0)+(a.gzhead.extra?4:0)+(a.gzhead.name?8:0)+(a.gzhead.comment?16:0)),At(a,255&a.gzhead.time),At(a,a.gzhead.time>>8&255),At(a,a.gzhead.time>>16&255),At(a,a.gzhead.time>>24&255),At(a,9===a.level?2:a.strategy>=ot||a.level<2?4:0),At(a,255&a.gzhead.os),a.gzhead.extra&&a.gzhead.extra.length&&(At(a,255&a.gzhead.extra.length),At(a,a.gzhead.extra.length>>8&255)),a.gzhead.hcrc&&(t.adler=H(t.adler,a.pending_buf,a.pending,0)),a.gzindex=0,a.status=69;else if(At(a,0),At(a,0),At(a,0),At(a,0),At(a,0),At(a,9===a.level?2:a.strategy>=ot||a.level<2?4:0),At(a,3),a.status=mt,xt(t),0!==a.pending)return a.last_flush=-1,tt;if(69===a.status){if(a.gzhead.extra){let e=a.pending,i=(65535&a.gzhead.extra.length)-a.gzindex;for(;a.pending+i>a.pending_buf_size;){let n=a.pending_buf_size-a.pending;if(a.pending_buf.set(a.gzhead.extra.subarray(a.gzindex,a.gzindex+n),a.pending),a.pending=a.pending_buf_size,a.gzhead.hcrc&&a.pending>e&&(t.adler=H(t.adler,a.pending_buf,a.pending-e,e)),a.gzindex+=n,xt(t),0!==a.pending)return a.last_flush=-1,tt;e=0,i-=n}let n=new Uint8Array(a.gzhead.extra);a.pending_buf.set(n.subarray(a.gzindex,a.gzindex+i),a.pending),a.pending+=i,a.gzhead.hcrc&&a.pending>e&&(t.adler=H(t.adler,a.pending_buf,a.pending-e,e)),a.gzindex=0}a.status=73}if(73===a.status){if(a.gzhead.name){let e,i=a.pending;do{if(a.pending===a.pending_buf_size){if(a.gzhead.hcrc&&a.pending>i&&(t.adler=H(t.adler,a.pending_buf,a.pending-i,i)),xt(t),0!==a.pending)return a.last_flush=-1,tt;i=0}e=a.gzindex<a.gzhead.name.length?255&a.gzhead.name.charCodeAt(a.gzindex++):0,At(a,e)}while(0!==e);a.gzhead.hcrc&&a.pending>i&&(t.adler=H(t.adler,a.pending_buf,a.pending-i,i)),a.gzindex=0}a.status=91}if(91===a.status){if(a.gzhead.comment){let e,i=a.pending;do{if(a.pending===a.pending_buf_size){if(a.gzhead.hcrc&&a.pending>i&&(t.adler=H(t.adler,a.pending_buf,a.pending-i,i)),xt(t),0!==a.pending)return a.last_flush=-1,tt;i=0}e=a.gzindex<a.gzhead.comment.length?255&a.gzhead.comment.charCodeAt(a.gzindex++):0,At(a,e)}while(0!==e);a.gzhead.hcrc&&a.pending>i&&(t.adler=H(t.adler,a.pending_buf,a.pending-i,i))}a.status=103}if(103===a.status){if(a.gzhead.hcrc){if(a.pending+2>a.pending_buf_size&&(xt(t),0!==a.pending))return a.last_flush=-1,tt;At(a,255&t.adler),At(a,t.adler>>8&255),t.adler=0}if(a.status=mt,xt(t),0!==a.pending)return a.last_flush=-1,tt}if(0!==t.avail_in||0!==a.lookahead||e!==q&&a.status!==bt){let i=0===a.level?St(a,e):a.strategy===ot?((t,e)=>{let a;for(;;){if(0===t.lookahead&&(Ut(t),0===t.lookahead)){if(e===q)return 1;break}if(t.match_length=0,a=X(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++,a&&(zt(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===V?(zt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(zt(t,!1),0===t.strm.avail_out)?1:2})(a,e):a.strategy===lt?((t,e)=>{let a,i,n,s;const r=t.window;for(;;){if(t.lookahead<=ct){if(Ut(t),t.lookahead<=ct&&e===q)return 1;if(0===t.lookahead)break}if(t.match_length=0,t.lookahead>=3&&t.strstart>0&&(n=t.strstart-1,i=r[n],i===r[++n]&&i===r[++n]&&i===r[++n])){s=t.strstart+ct;do{}while(i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&i===r[++n]&&n<s);t.match_length=ct-(s-n),t.match_length>t.lookahead&&(t.match_length=t.lookahead)}if(t.match_length>=3?(a=X(t,1,t.match_length-3),t.lookahead-=t.match_length,t.strstart+=t.match_length,t.match_length=0):(a=X(t,0,t.window[t.strstart]),t.lookahead--,t.strstart++),a&&(zt(t,!1),0===t.strm.avail_out))return 1}return t.insert=0,e===V?(zt(t,!0),0===t.strm.avail_out?3:4):t.sym_next&&(zt(t,!1),0===t.strm.avail_out)?1:2})(a,e):It[a.level].func(a,e);if(3!==i&&4!==i||(a.status=bt),1===i||3===i)return 0===t.avail_out&&(a.last_flush=-1),tt;if(2===i&&(e===J?W(a):e!==$&&(Y(a,0,0,!1),e===Q&&(kt(a.head),0===a.lookahead&&(a.strstart=0,a.block_start=0,a.insert=0))),xt(t),0===t.avail_out))return a.last_flush=-1,tt}return e!==V?tt:a.wrap<=0?et:(2===a.wrap?(At(a,255&t.adler),At(a,t.adler>>8&255),At(a,t.adler>>16&255),At(a,t.adler>>24&255),At(a,255&t.total_in),At(a,t.total_in>>8&255),At(a,t.total_in>>16&255),At(a,t.total_in>>24&255)):(Et(a,t.adler>>>16),Et(a,65535&t.adler)),xt(t),a.wrap>0&&(a.wrap=-a.wrap),0!==a.pending?tt:et)},deflateEnd:t=>{if(Lt(t))return at;const e=t.state.status;return t.state=null,e===mt?gt(t,it):tt},deflateSetDictionary:(t,e)=>{let a=e.length;if(Lt(t))return at;const i=t.state,n=i.wrap;if(2===n||1===n&&i.status!==wt||i.lookahead)return at;if(1===n&&(t.adler=C(t.adler,e,a,0)),i.wrap=0,a>=i.w_size){0===n&&(kt(i.head),i.strstart=0,i.block_start=0,i.insert=0);let t=new Uint8Array(i.w_size);t.set(e.subarray(a-i.w_size,a),0),e=t,a=i.w_size}const s=t.avail_in,r=t.next_in,o=t.input;for(t.avail_in=a,t.next_in=0,t.input=e,Ut(i);i.lookahead>=3;){let t=i.strstart,e=i.lookahead-2;do{i.ins_h=yt(i,i.ins_h,i.window[t+3-1]),i.prev[t&i.w_mask]=i.head[i.ins_h],i.head[i.ins_h]=t,t++}while(--e);i.strstart=t,i.lookahead=2,Ut(i)}return i.strstart+=i.lookahead,i.block_start=i.strstart,i.insert=i.lookahead,i.lookahead=0,i.match_length=i.prev_length=2,i.match_available=0,t.next_in=r,t.input=o,t.avail_in=s,i.wrap=n,tt},deflateInfo:"pako deflate (from Nodeca project)"};const Ht=(t,e)=>Object.prototype.hasOwnProperty.call(t,e);var jt=function(t){const e=Array.prototype.slice.call(arguments,1);for(;e.length;){const a=e.shift();if(a){if("object"!=typeof a)throw new TypeError(a+"must be non-object");for(const e in a)Ht(a,e)&&(t[e]=a[e])}}return t},Kt=t=>{let e=0;for(let a=0,i=t.length;a<i;a++)e+=t[a].length;const a=new Uint8Array(e);for(let e=0,i=0,n=t.length;e<n;e++){let n=t[e];a.set(n,i),i+=n.length}return a};let Pt=!0;try{String.fromCharCode.apply(null,new Uint8Array(1))}catch(t){Pt=!1}const Yt=new Uint8Array(256);for(let t=0;t<256;t++)Yt[t]=t>=252?6:t>=248?5:t>=240?4:t>=224?3:t>=192?2:1;Yt[254]=Yt[254]=1;var Gt=t=>{if("function"==typeof TextEncoder&&TextEncoder.prototype.encode)return(new TextEncoder).encode(t);let e,a,i,n,s,r=t.length,o=0;for(n=0;n<r;n++)a=t.charCodeAt(n),55296==(64512&a)&&n+1<r&&(i=t.charCodeAt(n+1),56320==(64512&i)&&(a=65536+(a-55296<<10)+(i-56320),n++)),o+=a<128?1:a<2048?2:a<65536?3:4;for(e=new Uint8Array(o),s=0,n=0;s<o;n++)a=t.charCodeAt(n),55296==(64512&a)&&n+1<r&&(i=t.charCodeAt(n+1),56320==(64512&i)&&(a=65536+(a-55296<<10)+(i-56320),n++)),a<128?e[s++]=a:a<2048?(e[s++]=192|a>>>6,e[s++]=128|63&a):a<65536?(e[s++]=224|a>>>12,e[s++]=128|a>>>6&63,e[s++]=128|63&a):(e[s++]=240|a>>>18,e[s++]=128|a>>>12&63,e[s++]=128|a>>>6&63,e[s++]=128|63&a);return e},Xt=(t,e)=>{const a=e||t.length;if("function"==typeof TextDecoder&&TextDecoder.prototype.decode)return(new TextDecoder).decode(t.subarray(0,e));let i,n;const s=new Array(2*a);for(n=0,i=0;i<a;){let e=t[i++];if(e<128){s[n++]=e;continue}let r=Yt[e];if(r>4)s[n++]=65533,i+=r-1;else{for(e&=2===r?31:3===r?15:7;r>1&&i<a;)e=e<<6|63&t[i++],r--;r>1?s[n++]=65533:e<65536?s[n++]=e:(e-=65536,s[n++]=55296|e>>10&1023,s[n++]=56320|1023&e)}}return((t,e)=>{if(e<65534&&t.subarray&&Pt)return String.fromCharCode.apply(null,t.length===e?t:t.subarray(0,e));let a="";for(let i=0;i<e;i++)a+=String.fromCharCode(t[i]);return a})(s,n)},Wt=(t,e)=>{(e=e||t.length)>t.length&&(e=t.length);let a=e-1;for(;a>=0&&128==(192&t[a]);)a--;return a<0||0===a?e:a+Yt[t[a]]>e?a:e};var qt=function(){this.input=null,this.next_in=0,this.avail_in=0,this.total_in=0,this.output=null,this.next_out=0,this.avail_out=0,this.total_out=0,this.msg="",this.state=null,this.data_type=2,this.adler=0};const Jt=Object.prototype.toString,{Z_NO_FLUSH:Qt,Z_SYNC_FLUSH:Vt,Z_FULL_FLUSH:$t,Z_FINISH:te,Z_OK:ee,Z_STREAM_END:ae,Z_DEFAULT_COMPRESSION:ie,Z_DEFAULT_STRATEGY:ne,Z_DEFLATED:se}=K;function re(t){this.options=jt({level:ie,method:se,chunkSize:16384,windowBits:15,memLevel:8,strategy:ne},t||{});let e=this.options;e.raw&&e.windowBits>0?e.windowBits=-e.windowBits:e.gzip&&e.windowBits>0&&e.windowBits<16&&(e.windowBits+=16),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new qt,this.strm.avail_out=0;let a=Mt.deflateInit2(this.strm,e.level,e.method,e.windowBits,e.memLevel,e.strategy);if(a!==ee)throw new Error(j[a]);if(e.header&&Mt.deflateSetHeader(this.strm,e.header),e.dictionary){let t;if(t="string"==typeof e.dictionary?Gt(e.dictionary):"[object ArrayBuffer]"===Jt.call(e.dictionary)?new Uint8Array(e.dictionary):e.dictionary,a=Mt.deflateSetDictionary(this.strm,t),a!==ee)throw new Error(j[a]);this._dict_set=!0}}function oe(t,e){const a=new re(e);if(a.push(t,!0),a.err)throw a.msg||j[a.err];return a.result}re.prototype.push=function(t,e){const a=this.strm,i=this.options.chunkSize;let n,s;if(this.ended)return!1;for(s=e===~~e?e:!0===e?te:Qt,"string"==typeof t?a.input=Gt(t):"[object ArrayBuffer]"===Jt.call(t)?a.input=new Uint8Array(t):a.input=t,a.next_in=0,a.avail_in=a.input.length;;)if(0===a.avail_out&&(a.output=new Uint8Array(i),a.next_out=0,a.avail_out=i),(s===Vt||s===$t)&&a.avail_out<=6)this.onData(a.output.subarray(0,a.next_out)),a.avail_out=0;else{if(n=Mt.deflate(a,s),n===ae)return a.next_out>0&&this.onData(a.output.subarray(0,a.next_out)),n=Mt.deflateEnd(this.strm),this.onEnd(n),this.ended=!0,n===ee;if(0!==a.avail_out){if(s>0&&a.next_out>0)this.onData(a.output.subarray(0,a.next_out)),a.avail_out=0;else if(0===a.avail_in)break}else this.onData(a.output)}return!0},re.prototype.onData=function(t){this.chunks.push(t)},re.prototype.onEnd=function(t){t===ee&&(this.result=Kt(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var le={Deflate:re,deflate:oe,deflateRaw:function(t,e){return(e=e||{}).raw=!0,oe(t,e)},gzip:function(t,e){return(e=e||{}).gzip=!0,oe(t,e)},constants:K};const he=16209;var de=function(t,e){let a,i,n,s,r,o,l,h,d,_,f,c,u,w,m,b,g,p,k,v,y,x,z,A;const E=t.state;a=t.next_in,z=t.input,i=a+(t.avail_in-5),n=t.next_out,A=t.output,s=n-(e-t.avail_out),r=n+(t.avail_out-257),o=E.dmax,l=E.wsize,h=E.whave,d=E.wnext,_=E.window,f=E.hold,c=E.bits,u=E.lencode,w=E.distcode,m=(1<<E.lenbits)-1,b=(1<<E.distbits)-1;t:do{c<15&&(f+=z[a++]<<c,c+=8,f+=z[a++]<<c,c+=8),g=u[f&m];e:for(;;){if(p=g>>>24,f>>>=p,c-=p,p=g>>>16&255,0===p)A[n++]=65535&g;else{if(!(16&p)){if(0==(64&p)){g=u[(65535&g)+(f&(1<<p)-1)];continue e}if(32&p){E.mode=16191;break t}t.msg="invalid literal/length code",E.mode=he;break t}k=65535&g,p&=15,p&&(c<p&&(f+=z[a++]<<c,c+=8),k+=f&(1<<p)-1,f>>>=p,c-=p),c<15&&(f+=z[a++]<<c,c+=8,f+=z[a++]<<c,c+=8),g=w[f&b];a:for(;;){if(p=g>>>24,f>>>=p,c-=p,p=g>>>16&255,!(16&p)){if(0==(64&p)){g=w[(65535&g)+(f&(1<<p)-1)];continue a}t.msg="invalid distance code",E.mode=he;break t}if(v=65535&g,p&=15,c<p&&(f+=z[a++]<<c,c+=8,c<p&&(f+=z[a++]<<c,c+=8)),v+=f&(1<<p)-1,v>o){t.msg="invalid distance too far back",E.mode=he;break t}if(f>>>=p,c-=p,p=n-s,v>p){if(p=v-p,p>h&&E.sane){t.msg="invalid distance too far back",E.mode=he;break t}if(y=0,x=_,0===d){if(y+=l-p,p<k){k-=p;do{A[n++]=_[y++]}while(--p);y=n-v,x=A}}else if(d<p){if(y+=l+d-p,p-=d,p<k){k-=p;do{A[n++]=_[y++]}while(--p);if(y=0,d<k){p=d,k-=p;do{A[n++]=_[y++]}while(--p);y=n-v,x=A}}}else if(y+=d-p,p<k){k-=p;do{A[n++]=_[y++]}while(--p);y=n-v,x=A}for(;k>2;)A[n++]=x[y++],A[n++]=x[y++],A[n++]=x[y++],k-=3;k&&(A[n++]=x[y++],k>1&&(A[n++]=x[y++]))}else{y=n-v;do{A[n++]=A[y++],A[n++]=A[y++],A[n++]=A[y++],k-=3}while(k>2);k&&(A[n++]=A[y++],k>1&&(A[n++]=A[y++]))}break}}break}}while(a<i&&n<r);k=c>>3,a-=k,c-=k<<3,f&=(1<<c)-1,t.next_in=a,t.next_out=n,t.avail_in=a<i?i-a+5:5-(a-i),t.avail_out=n<r?r-n+257:257-(n-r),E.hold=f,E.bits=c};const _e=15,fe=new Uint16Array([3,4,5,6,7,8,9,10,11,13,15,17,19,23,27,31,35,43,51,59,67,83,99,115,131,163,195,227,258,0,0]),ce=new Uint8Array([16,16,16,16,16,16,16,16,17,17,17,17,18,18,18,18,19,19,19,19,20,20,20,20,21,21,21,21,16,72,78]),ue=new Uint16Array([1,2,3,4,5,7,9,13,17,25,33,49,65,97,129,193,257,385,513,769,1025,1537,2049,3073,4097,6145,8193,12289,16385,24577,0,0]),we=new Uint8Array([16,16,16,16,17,17,18,18,19,19,20,20,21,21,22,22,23,23,24,24,25,25,26,26,27,27,28,28,29,29,64,64]);var me=(t,e,a,i,n,s,r,o)=>{const l=o.bits;let h,d,_,f,c,u,w=0,m=0,b=0,g=0,p=0,k=0,v=0,y=0,x=0,z=0,A=null;const E=new Uint16Array(16),R=new Uint16Array(16);let Z,U,S,D=null;for(w=0;w<=_e;w++)E[w]=0;for(m=0;m<i;m++)E[e[a+m]]++;for(p=l,g=_e;g>=1&&0===E[g];g--);if(p>g&&(p=g),0===g)return n[s++]=20971520,n[s++]=20971520,o.bits=1,0;for(b=1;b<g&&0===E[b];b++);for(p<b&&(p=b),y=1,w=1;w<=_e;w++)if(y<<=1,y-=E[w],y<0)return-1;if(y>0&&(0===t||1!==g))return-1;for(R[1]=0,w=1;w<_e;w++)R[w+1]=R[w]+E[w];for(m=0;m<i;m++)0!==e[a+m]&&(r[R[e[a+m]]++]=m);if(0===t?(A=D=r,u=20):1===t?(A=fe,D=ce,u=257):(A=ue,D=we,u=0),z=0,m=0,w=b,c=s,k=p,v=0,_=-1,x=1<<p,f=x-1,1===t&&x>852||2===t&&x>592)return 1;for(;;){Z=w-v,r[m]+1<u?(U=0,S=r[m]):r[m]>=u?(U=D[r[m]-u],S=A[r[m]-u]):(U=96,S=0),h=1<<w-v,d=1<<k,b=d;do{d-=h,n[c+(z>>v)+d]=Z<<24|U<<16|S|0}while(0!==d);for(h=1<<w-1;z&h;)h>>=1;if(0!==h?(z&=h-1,z+=h):z=0,m++,0==--E[w]){if(w===g)break;w=e[a+r[m]]}if(w>p&&(z&f)!==_){for(0===v&&(v=p),c+=b,k=w-v,y=1<<k;k+v<g&&(y-=E[k+v],!(y<=0));)k++,y<<=1;if(x+=1<<k,1===t&&x>852||2===t&&x>592)return 1;_=z&f,n[_]=p<<24|k<<16|c-s|0}}return 0!==z&&(n[c+z]=w-v<<24|64<<16|0),o.bits=p,0};const{Z_FINISH:be,Z_BLOCK:ge,Z_TREES:pe,Z_OK:ke,Z_STREAM_END:ve,Z_NEED_DICT:ye,Z_STREAM_ERROR:xe,Z_DATA_ERROR:ze,Z_MEM_ERROR:Ae,Z_BUF_ERROR:Ee,Z_DEFLATED:Re}=K,Ze=16180,Ue=16190,Se=16191,De=16192,Te=16194,Oe=16199,Ie=16200,Fe=16206,Le=16209,Ne=t=>(t>>>24&255)+(t>>>8&65280)+((65280&t)<<8)+((255&t)<<24);function Be(){this.strm=null,this.mode=0,this.last=!1,this.wrap=0,this.havedict=!1,this.flags=0,this.dmax=0,this.check=0,this.total=0,this.head=null,this.wbits=0,this.wsize=0,this.whave=0,this.wnext=0,this.window=null,this.hold=0,this.bits=0,this.length=0,this.offset=0,this.extra=0,this.lencode=null,this.distcode=null,this.lenbits=0,this.distbits=0,this.ncode=0,this.nlen=0,this.ndist=0,this.have=0,this.next=null,this.lens=new Uint16Array(320),this.work=new Uint16Array(288),this.lendyn=null,this.distdyn=null,this.sane=0,this.back=0,this.was=0}const Ce=t=>{if(!t)return 1;const e=t.state;return!e||e.strm!==t||e.mode<Ze||e.mode>16211?1:0},Me=t=>{if(Ce(t))return xe;const e=t.state;return t.total_in=t.total_out=e.total=0,t.msg="",e.wrap&&(t.adler=1&e.wrap),e.mode=Ze,e.last=0,e.havedict=0,e.flags=-1,e.dmax=32768,e.head=null,e.hold=0,e.bits=0,e.lencode=e.lendyn=new Int32Array(852),e.distcode=e.distdyn=new Int32Array(592),e.sane=1,e.back=-1,ke},He=t=>{if(Ce(t))return xe;const e=t.state;return e.wsize=0,e.whave=0,e.wnext=0,Me(t)},je=(t,e)=>{let a;if(Ce(t))return xe;const i=t.state;return e<0?(a=0,e=-e):(a=5+(e>>4),e<48&&(e&=15)),e&&(e<8||e>15)?xe:(null!==i.window&&i.wbits!==e&&(i.window=null),i.wrap=a,i.wbits=e,He(t))},Ke=(t,e)=>{if(!t)return xe;const a=new Be;t.state=a,a.strm=t,a.window=null,a.mode=Ze;const i=je(t,e);return i!==ke&&(t.state=null),i};let Pe,Ye,Ge=!0;const Xe=t=>{if(Ge){Pe=new Int32Array(512),Ye=new Int32Array(32);let e=0;for(;e<144;)t.lens[e++]=8;for(;e<256;)t.lens[e++]=9;for(;e<280;)t.lens[e++]=7;for(;e<288;)t.lens[e++]=8;for(me(1,t.lens,0,288,Pe,0,t.work,{bits:9}),e=0;e<32;)t.lens[e++]=5;me(2,t.lens,0,32,Ye,0,t.work,{bits:5}),Ge=!1}t.lencode=Pe,t.lenbits=9,t.distcode=Ye,t.distbits=5},We=(t,e,a,i)=>{let n;const s=t.state;return null===s.window&&(s.wsize=1<<s.wbits,s.wnext=0,s.whave=0,s.window=new Uint8Array(s.wsize)),i>=s.wsize?(s.window.set(e.subarray(a-s.wsize,a),0),s.wnext=0,s.whave=s.wsize):(n=s.wsize-s.wnext,n>i&&(n=i),s.window.set(e.subarray(a-i,a-i+n),s.wnext),(i-=n)?(s.window.set(e.subarray(a-i,a),0),s.wnext=i,s.whave=s.wsize):(s.wnext+=n,s.wnext===s.wsize&&(s.wnext=0),s.whave<s.wsize&&(s.whave+=n))),0};var qe={inflateReset:He,inflateReset2:je,inflateResetKeep:Me,inflateInit:t=>Ke(t,15),inflateInit2:Ke,inflate:(t,e)=>{let a,i,n,s,r,o,l,h,d,_,f,c,u,w,m,b,g,p,k,v,y,x,z=0;const A=new Uint8Array(4);let E,R;const Z=new Uint8Array([16,17,18,0,8,7,9,6,10,5,11,4,12,3,13,2,14,1,15]);if(Ce(t)||!t.output||!t.input&&0!==t.avail_in)return xe;a=t.state,a.mode===Se&&(a.mode=De),r=t.next_out,n=t.output,l=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,h=a.hold,d=a.bits,_=o,f=l,x=ke;t:for(;;)switch(a.mode){case Ze:if(0===a.wrap){a.mode=De;break}for(;d<16;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(2&a.wrap&&35615===h){0===a.wbits&&(a.wbits=15),a.check=0,A[0]=255&h,A[1]=h>>>8&255,a.check=H(a.check,A,2,0),h=0,d=0,a.mode=16181;break}if(a.head&&(a.head.done=!1),!(1&a.wrap)||(((255&h)<<8)+(h>>8))%31){t.msg="incorrect header check",a.mode=Le;break}if((15&h)!==Re){t.msg="unknown compression method",a.mode=Le;break}if(h>>>=4,d-=4,y=8+(15&h),0===a.wbits&&(a.wbits=y),y>15||y>a.wbits){t.msg="invalid window size",a.mode=Le;break}a.dmax=1<<a.wbits,a.flags=0,t.adler=a.check=1,a.mode=512&h?16189:Se,h=0,d=0;break;case 16181:for(;d<16;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(a.flags=h,(255&a.flags)!==Re){t.msg="unknown compression method",a.mode=Le;break}if(57344&a.flags){t.msg="unknown header flags set",a.mode=Le;break}a.head&&(a.head.text=h>>8&1),512&a.flags&&4&a.wrap&&(A[0]=255&h,A[1]=h>>>8&255,a.check=H(a.check,A,2,0)),h=0,d=0,a.mode=16182;case 16182:for(;d<32;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}a.head&&(a.head.time=h),512&a.flags&&4&a.wrap&&(A[0]=255&h,A[1]=h>>>8&255,A[2]=h>>>16&255,A[3]=h>>>24&255,a.check=H(a.check,A,4,0)),h=0,d=0,a.mode=16183;case 16183:for(;d<16;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}a.head&&(a.head.xflags=255&h,a.head.os=h>>8),512&a.flags&&4&a.wrap&&(A[0]=255&h,A[1]=h>>>8&255,a.check=H(a.check,A,2,0)),h=0,d=0,a.mode=16184;case 16184:if(1024&a.flags){for(;d<16;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}a.length=h,a.head&&(a.head.extra_len=h),512&a.flags&&4&a.wrap&&(A[0]=255&h,A[1]=h>>>8&255,a.check=H(a.check,A,2,0)),h=0,d=0}else a.head&&(a.head.extra=null);a.mode=16185;case 16185:if(1024&a.flags&&(c=a.length,c>o&&(c=o),c&&(a.head&&(y=a.head.extra_len-a.length,a.head.extra||(a.head.extra=new Uint8Array(a.head.extra_len)),a.head.extra.set(i.subarray(s,s+c),y)),512&a.flags&&4&a.wrap&&(a.check=H(a.check,i,c,s)),o-=c,s+=c,a.length-=c),a.length))break t;a.length=0,a.mode=16186;case 16186:if(2048&a.flags){if(0===o)break t;c=0;do{y=i[s+c++],a.head&&y&&a.length<65536&&(a.head.name+=String.fromCharCode(y))}while(y&&c<o);if(512&a.flags&&4&a.wrap&&(a.check=H(a.check,i,c,s)),o-=c,s+=c,y)break t}else a.head&&(a.head.name=null);a.length=0,a.mode=16187;case 16187:if(4096&a.flags){if(0===o)break t;c=0;do{y=i[s+c++],a.head&&y&&a.length<65536&&(a.head.comment+=String.fromCharCode(y))}while(y&&c<o);if(512&a.flags&&4&a.wrap&&(a.check=H(a.check,i,c,s)),o-=c,s+=c,y)break t}else a.head&&(a.head.comment=null);a.mode=16188;case 16188:if(512&a.flags){for(;d<16;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(4&a.wrap&&h!==(65535&a.check)){t.msg="header crc mismatch",a.mode=Le;break}h=0,d=0}a.head&&(a.head.hcrc=a.flags>>9&1,a.head.done=!0),t.adler=a.check=0,a.mode=Se;break;case 16189:for(;d<32;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}t.adler=a.check=Ne(h),h=0,d=0,a.mode=Ue;case Ue:if(0===a.havedict)return t.next_out=r,t.avail_out=l,t.next_in=s,t.avail_in=o,a.hold=h,a.bits=d,ye;t.adler=a.check=1,a.mode=Se;case Se:if(e===ge||e===pe)break t;case De:if(a.last){h>>>=7&d,d-=7&d,a.mode=Fe;break}for(;d<3;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}switch(a.last=1&h,h>>>=1,d-=1,3&h){case 0:a.mode=16193;break;case 1:if(Xe(a),a.mode=Oe,e===pe){h>>>=2,d-=2;break t}break;case 2:a.mode=16196;break;case 3:t.msg="invalid block type",a.mode=Le}h>>>=2,d-=2;break;case 16193:for(h>>>=7&d,d-=7&d;d<32;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if((65535&h)!=(h>>>16^65535)){t.msg="invalid stored block lengths",a.mode=Le;break}if(a.length=65535&h,h=0,d=0,a.mode=Te,e===pe)break t;case Te:a.mode=16195;case 16195:if(c=a.length,c){if(c>o&&(c=o),c>l&&(c=l),0===c)break t;n.set(i.subarray(s,s+c),r),o-=c,s+=c,l-=c,r+=c,a.length-=c;break}a.mode=Se;break;case 16196:for(;d<14;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(a.nlen=257+(31&h),h>>>=5,d-=5,a.ndist=1+(31&h),h>>>=5,d-=5,a.ncode=4+(15&h),h>>>=4,d-=4,a.nlen>286||a.ndist>30){t.msg="too many length or distance symbols",a.mode=Le;break}a.have=0,a.mode=16197;case 16197:for(;a.have<a.ncode;){for(;d<3;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}a.lens[Z[a.have++]]=7&h,h>>>=3,d-=3}for(;a.have<19;)a.lens[Z[a.have++]]=0;if(a.lencode=a.lendyn,a.lenbits=7,E={bits:a.lenbits},x=me(0,a.lens,0,19,a.lencode,0,a.work,E),a.lenbits=E.bits,x){t.msg="invalid code lengths set",a.mode=Le;break}a.have=0,a.mode=16198;case 16198:for(;a.have<a.nlen+a.ndist;){for(;z=a.lencode[h&(1<<a.lenbits)-1],m=z>>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(g<16)h>>>=m,d-=m,a.lens[a.have++]=g;else{if(16===g){for(R=m+2;d<R;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(h>>>=m,d-=m,0===a.have){t.msg="invalid bit length repeat",a.mode=Le;break}y=a.lens[a.have-1],c=3+(3&h),h>>>=2,d-=2}else if(17===g){for(R=m+3;d<R;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}h>>>=m,d-=m,y=0,c=3+(7&h),h>>>=3,d-=3}else{for(R=m+7;d<R;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}h>>>=m,d-=m,y=0,c=11+(127&h),h>>>=7,d-=7}if(a.have+c>a.nlen+a.ndist){t.msg="invalid bit length repeat",a.mode=Le;break}for(;c--;)a.lens[a.have++]=y}}if(a.mode===Le)break;if(0===a.lens[256]){t.msg="invalid code -- missing end-of-block",a.mode=Le;break}if(a.lenbits=9,E={bits:a.lenbits},x=me(1,a.lens,0,a.nlen,a.lencode,0,a.work,E),a.lenbits=E.bits,x){t.msg="invalid literal/lengths set",a.mode=Le;break}if(a.distbits=6,a.distcode=a.distdyn,E={bits:a.distbits},x=me(2,a.lens,a.nlen,a.ndist,a.distcode,0,a.work,E),a.distbits=E.bits,x){t.msg="invalid distances set",a.mode=Le;break}if(a.mode=Oe,e===pe)break t;case Oe:a.mode=Ie;case Ie:if(o>=6&&l>=258){t.next_out=r,t.avail_out=l,t.next_in=s,t.avail_in=o,a.hold=h,a.bits=d,de(t,f),r=t.next_out,n=t.output,l=t.avail_out,s=t.next_in,i=t.input,o=t.avail_in,h=a.hold,d=a.bits,a.mode===Se&&(a.back=-1);break}for(a.back=0;z=a.lencode[h&(1<<a.lenbits)-1],m=z>>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(b&&0==(240&b)){for(p=m,k=b,v=g;z=a.lencode[v+((h&(1<<p+k)-1)>>p)],m=z>>>24,b=z>>>16&255,g=65535&z,!(p+m<=d);){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}h>>>=p,d-=p,a.back+=p}if(h>>>=m,d-=m,a.back+=m,a.length=g,0===b){a.mode=16205;break}if(32&b){a.back=-1,a.mode=Se;break}if(64&b){t.msg="invalid literal/length code",a.mode=Le;break}a.extra=15&b,a.mode=16201;case 16201:if(a.extra){for(R=a.extra;d<R;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}a.length+=h&(1<<a.extra)-1,h>>>=a.extra,d-=a.extra,a.back+=a.extra}a.was=a.length,a.mode=16202;case 16202:for(;z=a.distcode[h&(1<<a.distbits)-1],m=z>>>24,b=z>>>16&255,g=65535&z,!(m<=d);){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(0==(240&b)){for(p=m,k=b,v=g;z=a.distcode[v+((h&(1<<p+k)-1)>>p)],m=z>>>24,b=z>>>16&255,g=65535&z,!(p+m<=d);){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}h>>>=p,d-=p,a.back+=p}if(h>>>=m,d-=m,a.back+=m,64&b){t.msg="invalid distance code",a.mode=Le;break}a.offset=g,a.extra=15&b,a.mode=16203;case 16203:if(a.extra){for(R=a.extra;d<R;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}a.offset+=h&(1<<a.extra)-1,h>>>=a.extra,d-=a.extra,a.back+=a.extra}if(a.offset>a.dmax){t.msg="invalid distance too far back",a.mode=Le;break}a.mode=16204;case 16204:if(0===l)break t;if(c=f-l,a.offset>c){if(c=a.offset-c,c>a.whave&&a.sane){t.msg="invalid distance too far back",a.mode=Le;break}c>a.wnext?(c-=a.wnext,u=a.wsize-c):u=a.wnext-c,c>a.length&&(c=a.length),w=a.window}else w=n,u=r-a.offset,c=a.length;c>l&&(c=l),l-=c,a.length-=c;do{n[r++]=w[u++]}while(--c);0===a.length&&(a.mode=Ie);break;case 16205:if(0===l)break t;n[r++]=a.length,l--,a.mode=Ie;break;case Fe:if(a.wrap){for(;d<32;){if(0===o)break t;o--,h|=i[s++]<<d,d+=8}if(f-=l,t.total_out+=f,a.total+=f,4&a.wrap&&f&&(t.adler=a.check=a.flags?H(a.check,n,f,r-f):C(a.check,n,f,r-f)),f=l,4&a.wrap&&(a.flags?h:Ne(h))!==a.check){t.msg="incorrect data check",a.mode=Le;break}h=0,d=0}a.mode=16207;case 16207:if(a.wrap&&a.flags){for(;d<32;){if(0===o)break t;o--,h+=i[s++]<<d,d+=8}if(4&a.wrap&&h!==(4294967295&a.total)){t.msg="incorrect length check",a.mode=Le;break}h=0,d=0}a.mode=16208;case 16208:x=ve;break t;case Le:x=ze;break t;case 16210:return Ae;default:return xe}return t.next_out=r,t.avail_out=l,t.next_in=s,t.avail_in=o,a.hold=h,a.bits=d,(a.wsize||f!==t.avail_out&&a.mode<Le&&(a.mode<Fe||e!==be))&&We(t,t.output,t.next_out,f-t.avail_out),_-=t.avail_in,f-=t.avail_out,t.total_in+=_,t.total_out+=f,a.total+=f,4&a.wrap&&f&&(t.adler=a.check=a.flags?H(a.check,n,f,t.next_out-f):C(a.check,n,f,t.next_out-f)),t.data_type=a.bits+(a.last?64:0)+(a.mode===Se?128:0)+(a.mode===Oe||a.mode===Te?256:0),(0===_&&0===f||e===be)&&x===ke&&(x=Ee),x},inflateEnd:t=>{if(Ce(t))return xe;let e=t.state;return e.window&&(e.window=null),t.state=null,ke},inflateGetHeader:(t,e)=>{if(Ce(t))return xe;const a=t.state;return 0==(2&a.wrap)?xe:(a.head=e,e.done=!1,ke)},inflateSetDictionary:(t,e)=>{const a=e.length;let i,n,s;return Ce(t)?xe:(i=t.state,0!==i.wrap&&i.mode!==Ue?xe:i.mode===Ue&&(n=1,n=C(n,e,a,0),n!==i.check)?ze:(s=We(t,e,a,a),s?(i.mode=16210,Ae):(i.havedict=1,ke)))},inflateInfo:"pako inflate (from Nodeca project)"};var Je=function(){this.text=0,this.time=0,this.xflags=0,this.os=0,this.extra=null,this.extra_len=0,this.name="",this.comment="",this.hcrc=0,this.done=!1};const Qe=Object.prototype.toString,{Z_NO_FLUSH:Ve,Z_FINISH:$e,Z_OK:ta,Z_STREAM_END:ea,Z_NEED_DICT:aa,Z_STREAM_ERROR:ia,Z_DATA_ERROR:na,Z_MEM_ERROR:sa}=K;function ra(t){this.options=jt({chunkSize:65536,windowBits:15,to:""},t||{});const e=this.options;e.raw&&e.windowBits>=0&&e.windowBits<16&&(e.windowBits=-e.windowBits,0===e.windowBits&&(e.windowBits=-15)),!(e.windowBits>=0&&e.windowBits<16)||t&&t.windowBits||(e.windowBits+=32),e.windowBits>15&&e.windowBits<48&&0==(15&e.windowBits)&&(e.windowBits|=15),this.err=0,this.msg="",this.ended=!1,this.chunks=[],this.strm=new qt,this.strm.avail_out=0;let a=qe.inflateInit2(this.strm,e.windowBits);if(a!==ta)throw new Error(j[a]);if(this.header=new Je,qe.inflateGetHeader(this.strm,this.header),e.dictionary&&("string"==typeof e.dictionary?e.dictionary=Gt(e.dictionary):"[object ArrayBuffer]"===Qe.call(e.dictionary)&&(e.dictionary=new Uint8Array(e.dictionary)),e.raw&&(a=qe.inflateSetDictionary(this.strm,e.dictionary),a!==ta)))throw new Error(j[a])}function oa(t,e){const a=new ra(e);if(a.push(t),a.err)throw a.msg||j[a.err];return a.result}ra.prototype.push=function(t,e){const a=this.strm,i=this.options.chunkSize,n=this.options.dictionary;let s,r,o;if(this.ended)return!1;for(r=e===~~e?e:!0===e?$e:Ve,"[object ArrayBuffer]"===Qe.call(t)?a.input=new Uint8Array(t):a.input=t,a.next_in=0,a.avail_in=a.input.length;;){for(0===a.avail_out&&(a.output=new Uint8Array(i),a.next_out=0,a.avail_out=i),s=qe.inflate(a,r),s===aa&&n&&(s=qe.inflateSetDictionary(a,n),s===ta?s=qe.inflate(a,r):s===na&&(s=aa));a.avail_in>0&&s===ea&&a.state.wrap>0&&0!==t[a.next_in];)qe.inflateReset(a),s=qe.inflate(a,r);switch(s){case ia:case na:case aa:case sa:return this.onEnd(s),this.ended=!0,!1}if(o=a.avail_out,a.next_out&&(0===a.avail_out||s===ea))if("string"===this.options.to){let t=Wt(a.output,a.next_out),e=a.next_out-t,n=Xt(a.output,t);a.next_out=e,a.avail_out=i-e,e&&a.output.set(a.output.subarray(t,t+e),0),this.onData(n)}else this.onData(a.output.length===a.next_out?a.output:a.output.subarray(0,a.next_out));if(s!==ta||0!==o){if(s===ea)return s=qe.inflateEnd(this.strm),this.onEnd(s),this.ended=!0,!0;if(0===a.avail_in)break}}return!0},ra.prototype.onData=function(t){this.chunks.push(t)},ra.prototype.onEnd=function(t){t===ta&&("string"===this.options.to?this.result=this.chunks.join(""):this.result=Kt(this.chunks)),this.chunks=[],this.err=t,this.msg=this.strm.msg};var la={Inflate:ra,inflate:oa,inflateRaw:function(t,e){return(e=e||{}).raw=!0,oa(t,e)},ungzip:oa,constants:K};const{Deflate:ha,deflate:da,deflateRaw:_a,gzip:fa}=le,{Inflate:ca,inflate:ua,inflateRaw:wa,ungzip:ma}=la;var ba=ha,ga=da,pa=_a,ka=fa,va=ca,ya=ua,xa=wa,za=ma,Aa=K,Ea={Deflate:ba,deflate:ga,deflateRaw:pa,gzip:ka,Inflate:va,inflate:ya,inflateRaw:xa,ungzip:za,constants:Aa};t.Deflate=ba,t.Inflate=va,t.constants=Aa,t.default=Ea,t.deflate=ga,t.deflateRaw=pa,t.gzip=ka,t.inflate=ya,t.inflateRaw=xa,t.ungzip=za,Object.defineProperty(t,"__esModule",{value:!0})}));
|
||||
@@ -0,0 +1,377 @@
|
||||
if (typeof Object.assign != 'function') {
|
||||
Object.assign = function () {
|
||||
let target = arguments[0];
|
||||
for (let i = 1; i < arguments.length; i++) {
|
||||
let source = arguments[i];
|
||||
for (let key in source) {
|
||||
if (Object.prototype.hasOwnProperty.call(source, key)) {
|
||||
target[key] = source[key];
|
||||
}
|
||||
}
|
||||
}
|
||||
return target;
|
||||
};
|
||||
}
|
||||
|
||||
function getMubans() {
|
||||
var mubanDict = { // 模板字典
|
||||
mx: {
|
||||
title: '',
|
||||
host: '',
|
||||
url: '/vodshow/fyclass--------fypage---/',
|
||||
searchUrl: '/vodsearch/**----------fypage---/',
|
||||
class_parse: '.top_nav li;a&&Text;a&&href;.*/(.*?)/',
|
||||
searchable: 2,
|
||||
quickSearch: 0,
|
||||
filterable: 0,
|
||||
headers: {
|
||||
'User-Agent': 'MOBILE_UA',
|
||||
},
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
limit: 6,
|
||||
推荐: '.cbox_list;*;*;*;*;*',
|
||||
double: true,
|
||||
一级: 'ul.vodlist li;a&&title;a&&data-original;.pic_text&&Text;a&&href',
|
||||
二级: {
|
||||
title: 'h2&&Text;.detail_list&&ul:eq(1)&&li&&a:eq(2)&&Text',
|
||||
img: '.vodlist_thumb&&data-original',
|
||||
desc: '.content_detail&&li:eq(1)&&Text;.detail_list&&ul:eq(1)&&li&&a&&Text;.detail_list&&ul:eq(1)&&li&&a:eq(1)&&Text;.detail_list&&ul:eq(1)&&li:eq(2)&&Text;.detail_list&&ul:eq(1)&&li:eq(3)&&Text',
|
||||
content: '.content_desc&&span&&Text',
|
||||
tabs: '.play_source_tab&&a',
|
||||
lists: '.content_playlist:eq(#id) li',
|
||||
},
|
||||
搜索: '*',
|
||||
},
|
||||
mxpro: {
|
||||
title: '',
|
||||
host: '', // homeUrl:'/',
|
||||
url: '/vodshow/fyclass--------fypage---.html',
|
||||
searchUrl: '/vodsearch/**----------fypage---.html',
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 0,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
headers: {//网站的请求头,完整支持所有的,常带ua和cookies
|
||||
'User-Agent': 'MOBILE_UA', // "Cookie": "searchneed=ok"
|
||||
},
|
||||
class_parse: '.navbar-items li:gt(2):lt(8);a&&Text;a&&href;/(\\d+).html',
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
limit: 6,
|
||||
推荐: '.tab-list.active;a.module-poster-item.module-item;.module-poster-item-title&&Text;.lazyload&&data-original;.module-item-note&&Text;a&&href',
|
||||
double: true, // 推荐内容是否双层定位
|
||||
一级: 'body a.module-poster-item.module-item;a&&title;.lazyload&&data-original;.module-item-note&&Text;a&&href',
|
||||
二级: {
|
||||
"title": "h1&&Text;.module-info-tag&&Text",
|
||||
"img": ".lazyload&&data-original",
|
||||
"desc": ".module-info-item:eq(1)&&Text;.module-info-item:eq(2)&&Text;.module-info-item:eq(3)&&Text",
|
||||
"content": ".module-info-introduction&&Text",
|
||||
"tabs": ".module-tab-item",
|
||||
"lists": ".module-play-list:eq(#id) a"
|
||||
},
|
||||
搜索: 'body .module-item;.module-card-item-title&&Text;.lazyload&&data-original;.module-item-note&&Text;a&&href;.module-info-item-content&&Text',
|
||||
}, mxone5: {
|
||||
title: '',
|
||||
host: '',
|
||||
url: '/show/fyclass--------fypage---.html',
|
||||
searchUrl: '/search/**----------fypage---.html',
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 0,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
class_parse: '.nav-menu-items&&li;a&&Text;a&&href;.*/(.*?).html',
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
limit: 6,
|
||||
推荐: '.module-list;.module-items&&.module-item;a&&title;img&&data-src;.module-item-text&&Text;a&&href',
|
||||
double: true, // 推荐内容是否双层定位
|
||||
一级: '.module-items .module-item;a&&title;img&&data-src;.module-item-text&&Text;a&&href',
|
||||
二级: {
|
||||
"title": "h1&&Text;.tag-link&&Text",
|
||||
"img": ".module-item-pic&&img&&data-src",
|
||||
"desc": ".video-info-items:eq(0)&&Text;.video-info-items:eq(1)&&Text;.video-info-items:eq(2)&&Text;.video-info-items:eq(3)&&Text",
|
||||
"content": ".vod_content&&Text",
|
||||
"tabs": ".module-tab-item",
|
||||
"lists": ".module-player-list:eq(#id)&&.scroll-content&&a"
|
||||
},
|
||||
搜索: '.module-items .module-search-item;a&&title;img&&data-src;.video-serial&&Text;a&&href',
|
||||
}, 首图: {
|
||||
title: '',
|
||||
host: '',
|
||||
url: '/vodshow/fyclass--------fypage---/',
|
||||
searchUrl: '/vodsearch/**----------fypage---.html',
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 0,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
headers: {//网站的请求头,完整支持所有的,常带ua和cookies
|
||||
'User-Agent': 'MOBILE_UA', // "Cookie": "searchneed=ok"
|
||||
},
|
||||
class_parse: '.myui-header__menu li.hidden-sm:gt(0):lt(5);a&&Text;a&&href;/(\\d+).html',
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
limit: 6,
|
||||
推荐: 'ul.myui-vodlist.clearfix;li;a&&title;a&&data-original;.pic-text&&Text;a&&href',
|
||||
double: true, // 推荐内容是否双层定位
|
||||
一级: '.myui-vodlist li;a&&title;a&&data-original;.pic-text&&Text;a&&href',
|
||||
二级: {
|
||||
"title": ".myui-content__detail .title&&Text;.myui-content__detail p:eq(-2)&&Text",
|
||||
"img": ".myui-content__thumb .lazyload&&data-original",
|
||||
"desc": ".myui-content__detail p:eq(0)&&Text;.myui-content__detail p:eq(1)&&Text;.myui-content__detail p:eq(2)&&Text",
|
||||
"content": ".content&&Text",
|
||||
"tabs": ".nav-tabs:eq(0) li",
|
||||
"lists": ".myui-content__list:eq(#id) li"
|
||||
},
|
||||
搜索: '#searchList li;a&&title;.lazyload&&data-original;.text-muted&&Text;a&&href;.text-muted:eq(-1)&&Text',
|
||||
}, 首图2: {
|
||||
title: '',
|
||||
host: '',
|
||||
url: '/list/fyclass-fypage.html',
|
||||
searchUrl: '/vodsearch/**----------fypage---.html',
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 0,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
headers: {
|
||||
'User-Agent': 'UC_UA', // "Cookie": ""
|
||||
}, // class_parse:'.stui-header__menu li:gt(0):lt(7);a&&Text;a&&href;/(\\d+).html',
|
||||
class_parse: '.stui-header__menu li:gt(0):lt(7);a&&Text;a&&href;.*/(.*?).html',
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
limit: 6,
|
||||
推荐: 'ul.stui-vodlist.clearfix;li;a&&title;.lazyload&&data-original;.pic-text&&Text;a&&href',
|
||||
double: true, // 推荐内容是否双层定位
|
||||
一级: '.stui-vodlist li;a&&title;a&&data-original;.pic-text&&Text;a&&href',
|
||||
二级: {
|
||||
"title": ".stui-content__detail .title&&Text;.stui-content__detail p:eq(-2)&&Text",
|
||||
"img": ".stui-content__thumb .lazyload&&data-original",
|
||||
"desc": ".stui-content__detail p:eq(0)&&Text;.stui-content__detail p:eq(1)&&Text;.stui-content__detail p:eq(2)&&Text",
|
||||
"content": ".detail&&Text",
|
||||
"tabs": ".stui-vodlist__head h3",
|
||||
"lists": ".stui-content__playlist:eq(#id) li"
|
||||
},
|
||||
搜索: 'ul.stui-vodlist__media:eq(0),ul.stui-vodlist:eq(0),#searchList li;a&&title;.lazyload&&data-original;.text-muted&&Text;a&&href;.text-muted:eq(-1)&&Text',
|
||||
搜索1: 'ul.stui-vodlist&&li;a&&title;.lazyload&&data-original;.text-muted&&Text;a&&href;.text-muted:eq(-1)&&Text',
|
||||
搜索2: 'ul.stui-vodlist__media&&li;a&&title;.lazyload&&data-original;.text-muted&&Text;a&&href;.text-muted:eq(-1)&&Text',
|
||||
}, 默认: {
|
||||
title: '',
|
||||
host: '',
|
||||
url: '',
|
||||
searchUrl: '',
|
||||
searchable: 2,
|
||||
quickSearch: 0,
|
||||
filterable: 1,
|
||||
filter: '',
|
||||
filter_url: '',
|
||||
filter_def: {},
|
||||
headers: {
|
||||
'User-Agent': 'MOBILE_UA',
|
||||
},
|
||||
timeout: 5000,
|
||||
class_parse: '#side-menu li;a&&Text;a&&href;/(.*?)\.html',
|
||||
cate_exclude: '',
|
||||
play_parse: true,
|
||||
lazy: `js:input = {parse: 1, url: input, js: ''}`,
|
||||
double: true,
|
||||
推荐: '列表1;列表2;标题;图片;描述;链接;详情',
|
||||
一级: '列表;标题;图片;描述;链接;详情',
|
||||
二级: {
|
||||
title: 'vod_name;vod_type',
|
||||
img: '图片链接',
|
||||
desc: '主要信息;年代;地区;演员;导演',
|
||||
content: '简介',
|
||||
tabs: '',
|
||||
lists: 'xx:eq(#id)&&a',
|
||||
tab_text: 'body&&Text',
|
||||
list_text: 'body&&Text',
|
||||
list_url: 'a&&href'
|
||||
},
|
||||
搜索: '列表;标题;图片;描述;链接;详情',
|
||||
}, vfed: {
|
||||
title: '',
|
||||
host: '',
|
||||
url: '/index.php/vod/show/id/fyclass/page/fypage.html',
|
||||
searchUrl: '/index.php/vod/search/page/fypage/wd/**.html',
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 0,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
headers: {
|
||||
'User-Agent': 'UC_UA',
|
||||
}, // class_parse:'.fed-pops-navbar&&ul.fed-part-rows&&a.fed-part-eone:gt(0):lt(5);a&&Text;a&&href;.*/(.*?).html',
|
||||
class_parse: '.fed-pops-navbar&&ul.fed-part-rows&&a;a&&Text;a&&href;.*/(.*?).html',
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
limit: 6,
|
||||
推荐: 'ul.fed-list-info.fed-part-rows;li;a.fed-list-title&&Text;a&&data-original;.fed-list-remarks&&Text;a&&href',
|
||||
double: true, // 推荐内容是否双层定位
|
||||
一级: '.fed-list-info&&li;a.fed-list-title&&Text;a&&data-original;.fed-list-remarks&&Text;a&&href',
|
||||
二级: {
|
||||
"title": "h1.fed-part-eone&&Text;.fed-deta-content&&.fed-part-rows&&li&&Text",
|
||||
"img": ".fed-list-info&&a&&data-original",
|
||||
"desc": ".fed-deta-content&&.fed-part-rows&&li:eq(1)&&Text;.fed-deta-content&&.fed-part-rows&&li:eq(2)&&Text;.fed-deta-content&&.fed-part-rows&&li:eq(3)&&Text",
|
||||
"content": ".fed-part-esan&&Text",
|
||||
"tabs": ".fed-drop-boxs&&.fed-part-rows&&li",
|
||||
"lists": ".fed-play-item:eq(#id)&&ul:eq(1)&&li"
|
||||
},
|
||||
搜索: '.fed-deta-info;h1&&Text;.lazyload&&data-original;.fed-list-remarks&&Text;a&&href;.fed-deta-content&&Text',
|
||||
}, 海螺3: {
|
||||
title: '',
|
||||
host: '',
|
||||
searchUrl: '/v_search/**----------fypage---.html',
|
||||
url: '/vod_____show/fyclass--------fypage---.html',
|
||||
headers: {
|
||||
'User-Agent': 'MOBILE_UA'
|
||||
},
|
||||
timeout: 5000,
|
||||
class_parse: 'body&&.hl-nav li:gt(0);a&&Text;a&&href;.*/(.*?).html',
|
||||
cate_exclude: '明星|专题|最新|排行',
|
||||
limit: 40,
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
推荐: '.hl-vod-list;li;a&&title;a&&data-original;.remarks&&Text;a&&href',
|
||||
double: true,
|
||||
一级: '.hl-vod-list&&.hl-list-item;a&&title;a&&data-original;.remarks&&Text;a&&href',
|
||||
二级: {
|
||||
"title": ".hl-infos-title&&Text;.hl-text-conch&&Text",
|
||||
"img": ".hl-lazy&&data-original",
|
||||
"desc": ".hl-infos-content&&.hl-text-conch&&Text",
|
||||
"content": ".hl-content-text&&Text",
|
||||
"tabs": ".hl-tabs&&a",
|
||||
"lists": ".hl-plays-list:eq(#id)&&li"
|
||||
},
|
||||
搜索: '.hl-list-item;a&&title;a&&data-original;.remarks&&Text;a&&href',
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 0,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
}, 海螺2: {
|
||||
title: '',
|
||||
host: '',
|
||||
searchUrl: '/index.php/vod/search/page/fypage/wd/**/',
|
||||
url: '/index.php/vod/show/id/fyclass/page/fypage/',
|
||||
headers: {
|
||||
'User-Agent': 'MOBILE_UA'
|
||||
},
|
||||
timeout: 5000,
|
||||
class_parse: '#nav-bar li;a&&Text;a&&href;id/(.*?)/',
|
||||
limit: 40,
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
推荐: '.list-a.size;li;a&&title;.lazy&&data-original;.bt&&Text;a&&href',
|
||||
double: true,
|
||||
一级: '.list-a&&li;a&&title;.lazy&&data-original;.list-remarks&&Text;a&&href',
|
||||
二级: {
|
||||
"title": "h2&&Text;.deployment&&Text",
|
||||
"img": ".lazy&&data-original",
|
||||
"desc": ".deployment&&Text",
|
||||
"content": ".ec-show&&Text",
|
||||
"tabs": "#tag&&a",
|
||||
"lists": ".play_list_box:eq(#id)&&li"
|
||||
},
|
||||
搜索: '.search-list;a&&title;.lazy&&data-original;.deployment&&Text;a&&href',
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 0,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
}, 短视: {
|
||||
title: '',
|
||||
host: '', // homeUrl:'/',
|
||||
url: '/channel/fyclass-fypage.html',
|
||||
searchUrl: '/search.html?wd=**',
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 0,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
headers: {//网站的请求头,完整支持所有的,常带ua和cookies
|
||||
'User-Agent': 'MOBILE_UA', // "Cookie": "searchneed=ok"
|
||||
},
|
||||
class_parse: '.menu_bottom ul li;a&&Text;a&&href;.*/(.*?).html',
|
||||
cate_exclude: '解析|动态',
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
limit: 6,
|
||||
推荐: '.indexShowBox;ul&&li;a&&title;img&&data-src;.s1&&Text;a&&href',
|
||||
double: true, // 推荐内容是否双层定位
|
||||
一级: '.pic-list&&li;a&&title;img&&data-src;.s1&&Text;a&&href',
|
||||
二级: {
|
||||
"title": "h1&&Text;.content-rt&&p:eq(0)&&Text",
|
||||
"img": ".img&&img&&data-src",
|
||||
"desc": ".content-rt&&p:eq(1)&&Text;.content-rt&&p:eq(2)&&Text;.content-rt&&p:eq(3)&&Text;.content-rt&&p:eq(4)&&Text;.content-rt&&p:eq(5)&&Text",
|
||||
"content": ".zkjj_a&&Text",
|
||||
"tabs": ".py-tabs&&option",
|
||||
"lists": ".player:eq(#id) li"
|
||||
},
|
||||
搜索: '.sr_lists&&ul&&li;h3&&Text;img&&data-src;.int&&p:eq(0)&&Text;a&&href',
|
||||
}, 短视2: {
|
||||
title: '',
|
||||
host: '',
|
||||
class_name: '电影&电视剧&综艺&动漫',
|
||||
class_url: '1&2&3&4',
|
||||
searchUrl: '/index.php/ajax/suggest?mid=1&wd=**&limit=50',
|
||||
searchable: 2,
|
||||
quickSearch: 0,
|
||||
headers: {'User-Agent': 'MOBILE_UA'},
|
||||
url: '/index.php/api/vod#type=fyclass&page=fypage',
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
filter_url: '',
|
||||
filter: {},
|
||||
filter_def: {},
|
||||
detailUrl: '/index.php/vod/detail/id/fyid.html',
|
||||
play_parse: true,
|
||||
lazy: '',
|
||||
limit: 6,
|
||||
推荐: '.list-vod.flex .public-list-box;a&&title;.lazy&&data-original;.public-list-prb&&Text;a&&href',
|
||||
一级: 'js:let body=input.split("#")[1];let t=Math.round(new Date/1e3).toString();let key=md5("DS"+t+"DCC147D11943AF75");let url=input.split("#")[0];body=body+"&time="+t+"&key="+key;print(body);fetch_params.body=body;let html=post(url,fetch_params);let data=JSON.parse(html);VODS=data.list.map(function(it){it.vod_pic=urljoin2(input.split("/i")[0],it.vod_pic);return it});',
|
||||
二级: {
|
||||
"title": ".slide-info-title&&Text;.slide-info:eq(3)--strong&&Text",
|
||||
"img": ".detail-pic&&data-original",
|
||||
"desc": ".fraction&&Text;.slide-info-remarks:eq(1)&&Text;.slide-info-remarks:eq(2)&&Text;.slide-info:eq(2)--strong&&Text;.slide-info:eq(1)--strong&&Text",
|
||||
"content": "#height_limit&&Text",
|
||||
"tabs": ".anthology.wow.fadeInUp.animated&&.swiper-wrapper&&a",
|
||||
"tab_text": ".swiper-slide&&Text",
|
||||
"lists": ".anthology-list-box:eq(#id) li"
|
||||
},
|
||||
搜索: 'json:list;name;pic;;id',
|
||||
}, 采集1: {
|
||||
title: '',
|
||||
host: '',
|
||||
homeTid: '13',
|
||||
homeUrl: '/api.php/provide/vod/?ac=detail&t={{rule.homeTid}}',
|
||||
detailUrl: '/api.php/provide/vod/?ac=detail&ids=fyid',
|
||||
searchUrl: '/api.php/provide/vod/?wd=**&pg=fypage',
|
||||
url: '/api.php/provide/vod/?ac=detail&pg=fypage&t=fyclass',
|
||||
headers: {'User-Agent': 'MOBILE_UA'},
|
||||
timeout: 5000, // class_name: '电影&电视剧&综艺&动漫',
|
||||
// class_url: '1&2&3&4',
|
||||
// class_parse:'js:let html=request(input);input=JSON.parse(html).class;',
|
||||
class_parse: 'json:class;',
|
||||
limit: 20,
|
||||
multi: 1,
|
||||
searchable: 2,//是否启用全局搜索,
|
||||
quickSearch: 1,//是否启用快速搜索,
|
||||
filterable: 0,//是否启用分类筛选,
|
||||
play_parse: true,
|
||||
parse_url: '',
|
||||
lazy: `js:
|
||||
if(/\\.(m3u8|mp4)/.test(input)){
|
||||
input = {parse:0,url:input}
|
||||
}else{
|
||||
if(rule.parse_url.startsWith('json:')){
|
||||
let purl = rule.parse_url.replace('json:','')+input;
|
||||
let html = request(purl);
|
||||
input = {parse:0,url:JSON.parse(html).url}
|
||||
}else{
|
||||
input= rule.parse_url+input;
|
||||
}
|
||||
}
|
||||
`,
|
||||
推荐: '*',
|
||||
一级: 'json:list;vod_name;vod_pic;vod_remarks;vod_id;vod_play_from',
|
||||
二级: `js:
|
||||
let html=request(input);
|
||||
html=JSON.parse(html);
|
||||
let data=html.list;
|
||||
VOD=data[0];`,
|
||||
搜索: '*',
|
||||
}
|
||||
};
|
||||
return JSON.parse(JSON.stringify(mubanDict));
|
||||
}
|
||||
|
||||
var mubanDict = getMubans();
|
||||
var muban = getMubans();
|
||||
export default {muban, getMubans};
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -0,0 +1 @@
|
||||
var iil='jsjiami.com.v6',iil_=['iil'],lIIIl1ll=[iil,'\x6f\x6b\x68\x74\x74\x70\x2f\x33\x2e\x31\x35','\x69\x6e\x64\x65\x78\x4f\x66','\x24\x24\x24','\x73\x70\x6c\x69\x74','\x74\x72\x69\x6d','\x26\x26\x26','\x3a\x2f\x2f','\x6c\x6f\x67','\x70\x69\x63\x55\x72\x6c\x3a\x20','\x72\x65\x70\x6c\x61\x63\x65','\x70\x75\x73\x68','\x2f\x66\x69\x6c\x65\x2f\x6c\x69\x76\x65\x73\x6f\x75\x72\x63\x65\x6c\x69\x73\x74','\x2f\x6c\x69\x76\x65\x73\x6f\x75\x72\x63\x65\x6c\x69\x73\x74','\x47\x45\x54','\x70\x61\x72\x73\x65','\x63\x6f\x6e\x74\x65\x6e\x74','\x73\x75\x62\x73\x74\x72\x69\x6e\x67','\x6c\x61\x73\x74\x49\x6e\x64\x65\x78\x4f\x66','\x6e\x61\x6d\x65','\x75\x72\x6c','\x3d\x3d\x3d\x3d\x20\x3e\x3e\x3e\x20','\x73\x74\x72\x69\x6e\x67\x69\x66\x79','\x65\x78\x65\x63','\x74\x65\x73\x74','\x6d\x61\x74\x63\x68','\x63\x68\x61\x6e\x6e\x65\x6c','\x2c\x23\x67\x65\x6e\x72\x65\x23\x0a','\x75\x72\x6c\x73','\x64\x61\x74\x61','\x64\x61\x74\x61\x6c\x69\x73\x74','\x70\x72\x6f\x76','\x6c\x69\x73\x74','\x2d\x2d\x2d','\x6c\x69\x6e\x65','\x77\x65\x62\x50\x69\x63\x55\x72\x6c\x3a\x20','\x23\x45\x58\x54\x4d\x33\x55','\x22\x63\x68\x61\x6e\x6e\x65\x6c\x22','\x22\x75\x72\x6c\x73\x22','\x22\x64\x61\x74\x61\x6c\x69\x73\x74\x22','\x6c\x65\x6e\x67\x74\x68','\x23\x67\x65\x6e\x72\x65\x23','\x7b\x6e\x61\x6d\x65\x7d','\x7b\x63\x61\x74\x65\x7d','\u76f4\u64ad\u5217\u8868','\x6e\x75\x6c\x6c','\x74\x79\x70\x65\x5f\x69\x64','\x76\x6f\x64\x5f\x70\x6c\x61\x79\x5f\x75\x72\x6c','\x68\x61\x73\x4f\x77\x6e\x50\x72\x6f\x70\x65\x72\x74\x79','\x6a\x6f\x69\x6e','\x76\x6f\x64\x5f\x70\x6c\x61\x79\x5f\x66\x72\x6f\x6d','\x6a\x43\x50\x73\x4e\x6a\x77\x69\x4a\x61\x51\x6d\x69\x2e\x63\x6f\x4e\x4f\x6d\x47\x72\x2e\x76\x56\x36\x41\x46\x67\x79\x74\x74\x3d\x3d'];function Ii1l1III(_0x3b13df,_0x346a54){_0x3b13df=~~'0x'['concat'](_0x3b13df['slice'](0x0));var _0x4db44b=lIIIl1ll[_0x3b13df];return _0x4db44b;};(function(_0x209161,_0x5eaa4a){var _0x42ecdf=0x0;for(_0x5eaa4a=_0x209161['shift'](_0x42ecdf>>0x2);_0x5eaa4a&&_0x5eaa4a!==(_0x209161['pop'](_0x42ecdf>>0x3)+'')['replace'](/[CPNwJQNOGrVAFgytt=]/g,'');_0x42ecdf++){_0x42ecdf=_0x42ecdf^0x127efd;}}(lIIIl1ll,Ii1l1III));let headers={'User-Agent':Ii1l1III('0')};let classes=[];let cates={};let picUrl='';let webPaths={};function init(IiIIi1i){let i1Ii11I1='';if(IiIIi1i[Ii1l1III('1')](Ii1l1III('2'))>0x0){i1Ii11I1=IiIIi1i[Ii1l1III('3')](Ii1l1III('2'))[0x0][Ii1l1III('4')]();IiIIi1i=IiIIi1i[Ii1l1III('3')](Ii1l1III('2'))[0x1][Ii1l1III('4')]();}if(IiIIi1i[Ii1l1III('1')](Ii1l1III('5'))>0x0){picUrl=IiIIi1i[Ii1l1III('3')](Ii1l1III('5'))[0x1][Ii1l1III('4')]();if(picUrl[Ii1l1III('1')](Ii1l1III('6'))<0x0){picUrl=i1Ii11I1+picUrl;}IiIIi1i=IiIIi1i[Ii1l1III('3')](Ii1l1III('5'))[0x0][Ii1l1III('4')]();}console[Ii1l1III('7')](Ii1l1III('8')+picUrl);let IIlIlI1I=IiIIi1i[Ii1l1III('3')]('\x23');for(const IlII1I1 of IIlIlI1I){if(IlII1I1[Ii1l1III('1')]('\x24')>0x0){let illIl111=IlII1I1;let Ill1iIi=IlII1I1[Ii1l1III('3')]('\x24')[0x0];if(illIl111[Ii1l1III('1')](Ii1l1III('6'))<0x0){illIl111=illIl111[Ii1l1III('9')]('\x24','\x24'+i1Ii11I1);}classes[Ii1l1III('a')]({'type_id':illIl111,'type_name':Ill1iIi[Ii1l1III('9')]('\x21\x21','')});}else{let II1lIlli=IlII1I1;if(II1lIlli[Ii1l1III('1')](Ii1l1III('6'))<0x0){II1lIlli=i1Ii11I1+II1lIlli;}II1lIlli=II1lIlli[Ii1l1III('9')](Ii1l1III('b'),Ii1l1III('c'));let Illi11ll=req(II1lIlli,{'\x6d\x65\x74\x68\x6f\x64':Ii1l1III('d'),'\x68\x65\x61\x64\x65\x72\x73':headers});try{let l1lIiill=JSON[Ii1l1III('e')](Illi11ll[Ii1l1III('f')]);let lillI11l=II1lIlli[Ii1l1III('10')](0x0,II1lIlli[Ii1l1III('11')]('\x2f')+0x1);for(const i1iilII1 of l1lIiill){let Iillil=i1iilII1[Ii1l1III('12')];let lI1iIl=i1iilII1[Ii1l1III('13')];let illIl111=Iillil+'\x24'+(lI1iIl[Ii1l1III('1')](Ii1l1III('6'))<0x0?lillI11l:'')+lI1iIl;classes[Ii1l1III('a')]({'type_id':illIl111,'type_name':Iillil[Ii1l1III('9')]('\x21\x21','')});webPaths[illIl111]=lillI11l;}}catch(Ii1Ii11){console[Ii1l1III('7')](Ii1l1III('14')+Ii1Ii11);}}}}function home(I1iiIiIl){return JSON[Ii1l1III('15')]({'class':classes,'filters':null});}function parseM3u(iIi1Ii1I,I1IlIIIi){let iI1iiIii={};let iiI11111=/(#EXTINF:.+?),([^,]+?)\s*\n(.+?)\s*\n/g;let ii1iilil=null;while((ii1iilil=iiI11111[Ii1l1III('16')](iIi1Ii1I))!=null){let lllli1iI=ii1iilil[0x1];let il1Ili1I=ii1iilil[0x2];let liIlll1l=ii1iilil[0x3];if(il1Ili1I==null||liIlll1l==null||il1Ili1I==''||liIlll1l==''){continue;}il1Ili1I=il1Ili1I[Ii1l1III('4')]();liIlll1l=liIlll1l[Ii1l1III('4')]();let IiI1lI1l=I1IlIIIi;let ilIl1i1i=/group-title="(.*?)"/;if(ilIl1i1i[Ii1l1III('17')](lllli1iI)){IiI1lI1l=lllli1iI[Ii1l1III('18')](ilIl1i1i)[0x1];}if(!iI1iiIii[IiI1lI1l]){iI1iiIii[IiI1lI1l]=[];}iI1iiIii[IiI1lI1l][Ii1l1III('a')](il1Ili1I+'\x2c'+liIlll1l);}let ll11III1='';for(const li1Ili in iI1iiIii){ll11III1+=li1Ili+'\x0a';let IlIil1ll=iI1iiIii[li1Ili];for(const li1iI11 of IlIil1ll){ll11III1+=li1iI11+'\x0a';}}return ll11III1;}function parseFm(IliiIl1I){let lliiI1i1='';let Iii1ll=JSON[Ii1l1III('e')](IliiIl1I);for(const i1lIlli1 of Iii1ll){let I111Il1l=i1lIlli1[Ii1l1III('12')];let ilI11li=i1lIlli1[Ii1l1III('19')];lliiI1i1+=I111Il1l+Ii1l1III('1a');for(const iiilI1iI of ilI11li){let I11111l1=iiilI1iI[Ii1l1III('12')];let IlI1l1I1=iiilI1iI[Ii1l1III('1b')];for(const l1II1lll of IlI1l1I1){lliiI1i1+=I11111l1+'\x2c'+l1II1lll+'\x0a';}}}return lliiI1i1;}function parseLu(iIliI1lI){let IIlilI1i='';let I11ilI1i=JSON[Ii1l1III('e')](iIliI1lI)[Ii1l1III('1c')];for(const i1Ii1l1 of I11ilI1i[Ii1l1III('1d')]){let I11111l=i1Ii1l1[Ii1l1III('1e')];let IiIiii1l=i1Ii1l1[Ii1l1III('1f')];IIlilI1i+=I11111l+Ii1l1III('1a');for(const l1111lI of IiIiii1l){let lIlI1iI=l1111lI[Ii1l1III('12')];let ll11i1II=l1111lI[Ii1l1III('1b')];for(const Iliilii of ll11i1II){IIlilI1i+=lIlI1iI+Ii1l1III('20')+Iliilii[Ii1l1III('21')]+'\x2c'+Iliilii[Ii1l1III('13')]+'\x0a';}}}return IIlilI1i;}function getCateData(IliI1i){let iI1I1I1I=picUrl;if(IliI1i[Ii1l1III('1')](Ii1l1III('5'))>0x0){iI1I1I1I=IliI1i[Ii1l1III('3')](Ii1l1III('5'))[0x1][Ii1l1III('4')]();if(iI1I1I1I[Ii1l1III('1')](Ii1l1III('6'))<0x0&&webPaths[IliI1i]){iI1I1I1I=webPaths[IliI1i]+iI1I1I1I;}IliI1i=IliI1i[Ii1l1III('3')](Ii1l1III('5'))[0x0][Ii1l1III('4')]();}console[Ii1l1III('7')](Ii1l1III('22')+iI1I1I1I);let ll1iIiiI=IliI1i[Ii1l1III('3')]('\x24')[0x1];let i1I1l1i=IliI1i[Ii1l1III('3')]('\x24')[0x0];if(!cates[IliI1i]){cates[IliI1i]=[];let iIl11Iii=headers;if(ll1iIiiI[Ii1l1III('1')]('\x7c')>0x0){let ii111I1I=decodeURIComponent(ll1iIiiI[Ii1l1III('3')]('\x7c')[0x1]);ll1iIiiI=ll1iIiiI[Ii1l1III('3')]('\x7c')[0x0];for(const II1Ii1l of ii111I1I[Ii1l1III('3')]('\x26')){if(II1Ii1l[Ii1l1III('1')]('\x3d')>0x0){let lI1lliii=II1Ii1l[Ii1l1III('3')]('\x3d')[0x0];let I11Iii1i=II1Ii1l[Ii1l1III('3')]('\x3d')[0x1];iIl11Iii[lI1lliii]=I11Iii1i;}}}let I111lilI=req(ll1iIiiI,{'\x6d\x65\x74\x68\x6f\x64':Ii1l1III('d'),'\x68\x65\x61\x64\x65\x72\x73':iIl11Iii});I111lilI=I111lilI[Ii1l1III('f')][Ii1l1III('4')]();if(I111lilI[Ii1l1III('1')](Ii1l1III('23'))>=0x0){I111lilI=parseM3u(I111lilI,i1I1l1i);}else if(I111lilI[Ii1l1III('1')](Ii1l1III('24'))>0x0&&I111lilI[Ii1l1III('1')](Ii1l1III('25'))>0x0){I111lilI=parseFm(I111lilI);}else if(I111lilI[Ii1l1III('1')](Ii1l1III('26'))>0x0&&I111lilI[Ii1l1III('1')](Ii1l1III('25'))>0x0){I111lilI=parseLu(I111lilI);}let li1IiiII=(i1I1l1i+'\x0a'+I111lilI[Ii1l1III('9')]('\x0d',''))[Ii1l1III('3')]('\x0a');let lli11iI=i1I1l1i;let IiiIIiIi=null;let iiiI1l='';for(let i1ii1IIl=0x0;i1ii1IIl<li1IiiII[Ii1l1III('27')];i1ii1IIl++){let lIliIii=li1IiiII[i1ii1IIl][Ii1l1III('9')](/\s+/g,'');if(lIliIii!=''&&lIliIii[Ii1l1III('1')](Ii1l1III('6'))<0x0&&(lIliIii[Ii1l1III('1')]('\x2c')<0x0||lIliIii[Ii1l1III('1')](Ii1l1III('28'))>0x0)){if(iiiI1l!=''){let ilIIIl=iI1I1I1I[Ii1l1III('9')](Ii1l1III('29'),encodeURIComponent(lli11iI))[Ii1l1III('9')](Ii1l1III('2a'),encodeURIComponent(i1I1l1i));let ilI1ilI=ilIIIl[Ii1l1III('1')]('\x3c');let iili1I1i=ilIIIl[Ii1l1III('11')]('\x3e');if(ilI1ilI>-0x1&&iili1I1i>ilI1ilI){let I11Ilili=ilIIIl[Ii1l1III('10')](ilI1ilI,iili1I1i+0x1);let I1liliII=new RegExp(I11Ilili[Ii1l1III('9')](/<|>/g,''));let lii11liI=lli11iI[Ii1l1III('9')](I1liliII,function(Ili1lIi1,iiliII1l){return iiliII1l;});ilIIIl=ilIIIl[Ii1l1III('9')](I11Ilili,lii11liI);console[Ii1l1III('7')](lli11iI+'\x2c\x20'+ilIIIl);}let IiiIIiIi={'vod_id':IliI1i+Ii1l1III('2')+cates[IliI1i][Ii1l1III('27')],'vod_name':lli11iI,'vod_pic':ilIIIl,'vod_remarks':'','type_name':Ii1l1III('2b'),'vod_year':'','vod_area':'','vod_actor':'','vod_director':'','vod_content':'','vod_play_from':i1I1l1i,'vod_play_url':iiiI1l};cates[IliI1i][Ii1l1III('a')](IiiIIiIi);}lli11iI=lIliIii[Ii1l1III('3')]('\x2c')[0x0][Ii1l1III('4')]();iiiI1l='';}else if(lIliIii[Ii1l1III('1')]('\x2c')>0x0&&/http|rtmp|rtsp|rsp/[Ii1l1III('17')](lIliIii)){let l1iiI1ii=lIliIii[Ii1l1III('3')]('\x2c');if(iiiI1l!=''){iiiI1l+='\x23';}iiiI1l+=l1iiI1ii[0x0][Ii1l1III('4')]()+'\x24'+l1iiI1ii[0x1][Ii1l1III('4')]();}}if(iiiI1l!=''){let II1Iliil=iI1I1I1I[Ii1l1III('9')](Ii1l1III('29'),encodeURIComponent(lli11iI))[Ii1l1III('9')](Ii1l1III('2a'),encodeURIComponent(i1I1l1i));let ilI1ilI=II1Iliil[Ii1l1III('1')]('\x3c');let iili1I1i=II1Iliil[Ii1l1III('11')]('\x3e');if(ilI1ilI>-0x1&&iili1I1i>ilI1ilI){let I11Ilili=II1Iliil[Ii1l1III('10')](ilI1ilI,iili1I1i+0x1);let I1liliII=new RegExp(I11Ilili[Ii1l1III('9')](/<|>/g,''));let lii11liI=I1liliII[Ii1l1III('17')](lli11iI)?lli11iI[Ii1l1III('18')](I1liliII)[0x1]:Ii1l1III('2c');II1Iliil=II1Iliil[Ii1l1III('9')](I11Ilili,lii11liI);}let IiiIIiIi={'vod_id':IliI1i+Ii1l1III('2')+cates[IliI1i][Ii1l1III('27')],'vod_name':lli11iI,'vod_pic':II1Iliil,'vod_remarks':'','type_name':Ii1l1III('2b'),'vod_year':'','vod_area':'','vod_actor':'','vod_director':'','vod_content':'','vod_play_from':i1I1l1i,'vod_play_url':iiiI1l};cates[IliI1i][Ii1l1III('a')](IiiIIiIi);}}return cates[IliI1i];}function homeVod(liIIlIl1){let iIl1IIii=getCateData(classes[0x0][Ii1l1III('2d')]);let I1l1iil=JSON[Ii1l1III('15')]({'list':iIl1IIii});return I1l1iil;}function category(I1l1i1Ii,l1IiiIli,IIi1Illi,lilIliIl){let IIi1i1ll=[];if(l1IiiIli==0x1){IIi1i1ll=getCateData(I1l1i1Ii);}let iIiiIi1i=JSON[Ii1l1III('15')]({'list':IIi1i1ll});return iIiiIi1i;}function detail(lIl11iii){let I1IIIil=lIl11iii[Ii1l1III('3')](Ii1l1III('2'));let liiiil1i=I1IIIil[0x0];let l1l111II=liiiil1i[Ii1l1III('3')]('\x24')[0x0];let Il1li11i=parseInt(I1IIIil[0x1]);let Iill11Ii=getCateData(liiiil1i)[Il1li11i];console[Ii1l1III('7')](JSON[Ii1l1III('15')](Iill11Ii));if(l1l111II[Ii1l1III('1')]('\x21\x21')>=0x0){l1l111II=l1l111II[Ii1l1III('9')]('\x21\x21','');const ii1l1iil=Iill11Ii[Ii1l1III('2e')][Ii1l1III('3')]('\x23');console[Ii1l1III('7')](JSON[Ii1l1III('15')](ii1l1iil));let i1Ili1I={};let IIIllli1={};for(const i1IiIlIl of ii1l1iil){let Ill1iii1=i1IiIlIl[Ii1l1III('3')]('\x24')[0x0];let IIiIII11=l1l111II;if(Ill1iii1[Ii1l1III('1')](Ii1l1III('20'))>0x0){IIiIII11=Ill1iii1[Ii1l1III('3')](Ii1l1III('20'))[0x1];Ill1iii1=Ill1iii1[Ii1l1III('3')](Ii1l1III('20'))[0x0];}if(!i1Ili1I[Ii1l1III('2f')](Ill1iii1)){i1Ili1I[Ill1iii1]=0x1;}else{i1Ili1I[Ill1iii1]++;}IIiIII11=l1l111II+(i1Ili1I[Ill1iii1]>0x1?'\x20'+i1Ili1I[Ill1iii1]:'');if(!IIIllli1[Ii1l1III('2f')](IIiIII11)){IIIllli1[IIiIII11]=[];}IIIllli1[IIiIII11][Ii1l1III('a')](Ill1iii1+'\x24'+i1IiIlIl[Ii1l1III('3')]('\x24')[0x1]);}let III1i1ii=[];let iii1lIIi=[];for(let iliI1I1i in IIIllli1){III1i1ii[Ii1l1III('a')](iliI1I1i);iii1lIIi[Ii1l1III('a')](IIIllli1[iliI1I1i][Ii1l1III('30')]('\x23'));}Iill11Ii[Ii1l1III('31')]=III1i1ii[Ii1l1III('30')](Ii1l1III('2'));Iill11Ii[Ii1l1III('2e')]=iii1lIIi[Ii1l1III('30')](Ii1l1III('2'));}return JSON[Ii1l1III('15')]({'list':[Iill11Ii]});}function play(l1llIIii,illiiIII,lIIIiIiI){return JSON[Ii1l1III('15')]({'parse':0x0,'url':illiiIII});}function search(I1lll,lI1iiIII){return null;}__JS_SPIDER__={'\x69\x6e\x69\x74':init,'\x68\x6f\x6d\x65':home,'\x68\x6f\x6d\x65\x56\x6f\x64':homeVod,'\x63\x61\x74\x65\x67\x6f\x72\x79':category,'\x64\x65\x74\x61\x69\x6c':detail,'\x70\x6c\x61\x79':play,'\x73\x65\x61\x72\x63\x68':search};;iil='jsjiami.com.v6';
|
||||
Vendored
+73
File diff suppressed because one or more lines are too long
@@ -0,0 +1,19 @@
|
||||
格式说明:
|
||||
地址(支持m3u订阅、tvbox配置文件中live选项的直播地址订阅)
|
||||
|
||||
相对路径说明
|
||||
以./开头,相对位置是本订阅文件
|
||||
以/开头,存储卡的根目录
|
||||
|
||||
#经典三级
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/经典三级.txt
|
||||
#国产情色
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/国产情色.txt
|
||||
#日媒视频
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/日媒视频.txt
|
||||
#欧美成人1~12线
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/欧美成人1~12线.txt
|
||||
#欧美成人13~28线
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/欧美成人13~28线.txt
|
||||
#atsushi
|
||||
https://github.moeyy.xyz/https://raw.githubusercontent.com/atsushi444/iptv-epg/main/Adult.m3u
|
||||
@@ -0,0 +1,19 @@
|
||||
格式说明:
|
||||
地址(支持m3u订阅、tvbox配置文件中live选项的直播地址订阅)
|
||||
|
||||
相对路径说明
|
||||
以./开头,相对位置是本订阅文件
|
||||
以/开头,存储卡的根目录
|
||||
|
||||
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/经典三级.txt
|
||||
#国产情色
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/国产情色.txt
|
||||
#日媒视频
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/日媒视频.txt
|
||||
#欧美成人1~12线
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/欧美成人1~12线.txt
|
||||
#欧美成人13~28线
|
||||
https://mirror.ghproxy.com//https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/欧美成人13~28线.txt
|
||||
#atsushi
|
||||
https://github.moeyy.xyz/https://raw.githubusercontent.com/atsushi444/iptv-epg/main/Adult.m3u
|
||||
@@ -0,0 +1,27 @@
|
||||
格式说明:
|
||||
地址(支持m3u订阅、tvbox配置文件中live选项的直播地址订阅)
|
||||
|
||||
相对路径说明
|
||||
以./开头,相对位置是本订阅文件
|
||||
以/开头,存储卡的根目录
|
||||
|
||||
|
||||
#👙魅惑少女
|
||||
https://cloud.lxweb.cn/f/bGxASp/%E5%87%BA%E9%95%9C%E5%B0%91%E5%A5%B3.txt
|
||||
#绅士辅导
|
||||
https://cloud.lxweb.cn/f/GdpAsg/%E4%B8%87%E8%83%BD%E9%92%A5%E5%8C%99.txt
|
||||
#🛀🏻快车资源
|
||||
https://mirror.ghproxy.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/%E5%BF%AB%E8%BD%A6%E8%B5%84%E6%BA%90.txt
|
||||
#🤷羽龑专线
|
||||
https://cloud.lxweb.cn/f/xzL8iM/%E7%BE%BD%E9%BE%91%E4%B8%93%E7%BA%BF.txt
|
||||
#影视界源
|
||||
https://cloud.lxweb.cn/f/LQpksD/%E5%BD%B1%E8%A7%86%E7%95%8C%E6%BA%90.txt
|
||||
#浮力湾湾
|
||||
https://cloud.lxweb.cn/f/oE2wsY/%E6%B9%BE%E6%B9%BE%E4%B8%80%E5%A4%A9.txt
|
||||
#🌊加勒比嗨
|
||||
https://mirror.ghproxy.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/%E5%8A%A0%E5%8B%92%E6%AF%94%E6%B5%B7.txt
|
||||
#🌆深夜互搏
|
||||
https://cloud.lxweb.cn/f/PyOYub/%E5%8D%88%E5%A4%9C%E9%A2%91%E9%81%93.txt
|
||||
#🐺狼人猎奇
|
||||
https://cloud.lxweb.cn/f/8xwrs1/%E7%BB%BF%E8%8C%B6%E7%9B%B4%E6%92%AD.json
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
格式说明:
|
||||
地址(支持m3u订阅、tvbox配置文件中live选项的直播地址订阅)
|
||||
|
||||
相对路径说明
|
||||
以./开头,相对位置是本订阅文件
|
||||
以/开头,存储卡的根目录
|
||||
|
||||
|
||||
#👙魅惑少女
|
||||
https://cloud.lxweb.cn/f/bGxASp/%E5%87%BA%E9%95%9C%E5%B0%91%E5%A5%B3.txt
|
||||
#绅士辅导
|
||||
https://cloud.lxweb.cn/f/GdpAsg/%E4%B8%87%E8%83%BD%E9%92%A5%E5%8C%99.txt
|
||||
#🛀🏻快车资源
|
||||
https://cloud.lxweb.cn/f/rWJ1hE/%E5%BF%AB%E8%BD%A6%E8%B5%84%E6%BA%90.txt
|
||||
#🤷羽龑专线https://cloud.lxweb.cn/f/xzL8iM/%E7%BE%BD%E9%BE%91%E4%B8%93%E7%BA%BF.txt
|
||||
#影视界源
|
||||
https://cloud.lxweb.cn/f/LQpksD/%E5%BD%B1%E8%A7%86%E7%95%8C%E6%BA%90.txt
|
||||
#浮力湾湾
|
||||
https://cloud.lxweb.cn/f/oE2wsY/%E6%B9%BE%E6%B9%BE%E4%B8%80%E5%A4%A9.txt
|
||||
#🌊加勒比嗨
|
||||
https://mirror.ghproxy.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/main/wyykFL/txt/%E5%8A%A0%E5%8B%92%E6%AF%94%E6%B5%B7.txt
|
||||
#🌆深夜互搏
|
||||
https://cloud.lxweb.cn/f/PyOYub/%E5%8D%88%E5%A4%9C%E9%A2%91%E9%81%93.txt
|
||||
#🐺狼人猎奇
|
||||
https://cloud.lxweb.cn/f/8xwrs1/%E7%BB%BF%E8%8C%B6%E7%9B%B4%E6%92%AD.json
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,19 @@
|
||||
[
|
||||
|
||||
|
||||
{"name":"国产情色","url":"https://github.catvod.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/refs/heads/main/wyykFL/txt/国产情色.txt&&&https://d.feiliupan.com/t/53165148789018624/图片/72c0.jpeg"},
|
||||
{"name":"传媒娱乐","url":"https://github.catvod.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/refs/heads/main/wyykFL/txt/传媒娱乐.txt&&&https://d.feiliupan.com/t/53165148789018624/图片/6281.jpeg"},
|
||||
{"name":"亚洲情色","url":"https://github.catvod.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/refs/heads/main/wyykFL/txt/亚洲情色.txt&&&https://d.feiliupan.com/t/53165148789018624/图片/5d3b.jpeg"},
|
||||
{"name":"欧美成人","url":"https://github.catvod.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/refs/heads/main/wyykFL/txt/欧美成人.txt&&&https://d.feiliupan.com/t/53165148789018624/图片/9f38.jpeg"}
|
||||
|
||||
]
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1 @@
|
||||
var iil='jsjiami.com.v6',iil_=['iil'],lIIIl1ll=[iil,'\x6f\x6b\x68\x74\x74\x70\x2f\x33\x2e\x31\x35','\x69\x6e\x64\x65\x78\x4f\x66','\x24\x24\x24','\x73\x70\x6c\x69\x74','\x74\x72\x69\x6d','\x26\x26\x26','\x3a\x2f\x2f','\x6c\x6f\x67','\x70\x69\x63\x55\x72\x6c\x3a\x20','\x72\x65\x70\x6c\x61\x63\x65','\x70\x75\x73\x68','\x2f\x66\x69\x6c\x65\x2f\x6c\x69\x76\x65\x73\x6f\x75\x72\x63\x65\x6c\x69\x73\x74','\x2f\x6c\x69\x76\x65\x73\x6f\x75\x72\x63\x65\x6c\x69\x73\x74','\x47\x45\x54','\x70\x61\x72\x73\x65','\x63\x6f\x6e\x74\x65\x6e\x74','\x73\x75\x62\x73\x74\x72\x69\x6e\x67','\x6c\x61\x73\x74\x49\x6e\x64\x65\x78\x4f\x66','\x6e\x61\x6d\x65','\x75\x72\x6c','\x3d\x3d\x3d\x3d\x20\x3e\x3e\x3e\x20','\x73\x74\x72\x69\x6e\x67\x69\x66\x79','\x65\x78\x65\x63','\x74\x65\x73\x74','\x6d\x61\x74\x63\x68','\x63\x68\x61\x6e\x6e\x65\x6c','\x2c\x23\x67\x65\x6e\x72\x65\x23\x0a','\x75\x72\x6c\x73','\x64\x61\x74\x61','\x64\x61\x74\x61\x6c\x69\x73\x74','\x70\x72\x6f\x76','\x6c\x69\x73\x74','\x2d\x2d\x2d','\x6c\x69\x6e\x65','\x77\x65\x62\x50\x69\x63\x55\x72\x6c\x3a\x20','\x23\x45\x58\x54\x4d\x33\x55','\x22\x63\x68\x61\x6e\x6e\x65\x6c\x22','\x22\x75\x72\x6c\x73\x22','\x22\x64\x61\x74\x61\x6c\x69\x73\x74\x22','\x6c\x65\x6e\x67\x74\x68','\x23\x67\x65\x6e\x72\x65\x23','\x7b\x6e\x61\x6d\x65\x7d','\x7b\x63\x61\x74\x65\x7d','\u76f4\u64ad\u5217\u8868','\x6e\x75\x6c\x6c','\x74\x79\x70\x65\x5f\x69\x64','\x76\x6f\x64\x5f\x70\x6c\x61\x79\x5f\x75\x72\x6c','\x68\x61\x73\x4f\x77\x6e\x50\x72\x6f\x70\x65\x72\x74\x79','\x6a\x6f\x69\x6e','\x76\x6f\x64\x5f\x70\x6c\x61\x79\x5f\x66\x72\x6f\x6d','\x6a\x43\x50\x73\x4e\x6a\x77\x69\x4a\x61\x51\x6d\x69\x2e\x63\x6f\x4e\x4f\x6d\x47\x72\x2e\x76\x56\x36\x41\x46\x67\x79\x74\x74\x3d\x3d'];function Ii1l1III(_0x3b13df,_0x346a54){_0x3b13df=~~'0x'['concat'](_0x3b13df['slice'](0x0));var _0x4db44b=lIIIl1ll[_0x3b13df];return _0x4db44b;};(function(_0x209161,_0x5eaa4a){var _0x42ecdf=0x0;for(_0x5eaa4a=_0x209161['shift'](_0x42ecdf>>0x2);_0x5eaa4a&&_0x5eaa4a!==(_0x209161['pop'](_0x42ecdf>>0x3)+'')['replace'](/[CPNwJQNOGrVAFgytt=]/g,'');_0x42ecdf++){_0x42ecdf=_0x42ecdf^0x127efd;}}(lIIIl1ll,Ii1l1III));let headers={'User-Agent':Ii1l1III('0')};let classes=[];let cates={};let picUrl='';let webPaths={};function init(IiIIi1i){let i1Ii11I1='';if(IiIIi1i[Ii1l1III('1')](Ii1l1III('2'))>0x0){i1Ii11I1=IiIIi1i[Ii1l1III('3')](Ii1l1III('2'))[0x0][Ii1l1III('4')]();IiIIi1i=IiIIi1i[Ii1l1III('3')](Ii1l1III('2'))[0x1][Ii1l1III('4')]();}if(IiIIi1i[Ii1l1III('1')](Ii1l1III('5'))>0x0){picUrl=IiIIi1i[Ii1l1III('3')](Ii1l1III('5'))[0x1][Ii1l1III('4')]();if(picUrl[Ii1l1III('1')](Ii1l1III('6'))<0x0){picUrl=i1Ii11I1+picUrl;}IiIIi1i=IiIIi1i[Ii1l1III('3')](Ii1l1III('5'))[0x0][Ii1l1III('4')]();}console[Ii1l1III('7')](Ii1l1III('8')+picUrl);let IIlIlI1I=IiIIi1i[Ii1l1III('3')]('\x23');for(const IlII1I1 of IIlIlI1I){if(IlII1I1[Ii1l1III('1')]('\x24')>0x0){let illIl111=IlII1I1;let Ill1iIi=IlII1I1[Ii1l1III('3')]('\x24')[0x0];if(illIl111[Ii1l1III('1')](Ii1l1III('6'))<0x0){illIl111=illIl111[Ii1l1III('9')]('\x24','\x24'+i1Ii11I1);}classes[Ii1l1III('a')]({'type_id':illIl111,'type_name':Ill1iIi[Ii1l1III('9')]('\x21\x21','')});}else{let II1lIlli=IlII1I1;if(II1lIlli[Ii1l1III('1')](Ii1l1III('6'))<0x0){II1lIlli=i1Ii11I1+II1lIlli;}II1lIlli=II1lIlli[Ii1l1III('9')](Ii1l1III('b'),Ii1l1III('c'));let Illi11ll=req(II1lIlli,{'\x6d\x65\x74\x68\x6f\x64':Ii1l1III('d'),'\x68\x65\x61\x64\x65\x72\x73':headers});try{let l1lIiill=JSON[Ii1l1III('e')](Illi11ll[Ii1l1III('f')]);let lillI11l=II1lIlli[Ii1l1III('10')](0x0,II1lIlli[Ii1l1III('11')]('\x2f')+0x1);for(const i1iilII1 of l1lIiill){let Iillil=i1iilII1[Ii1l1III('12')];let lI1iIl=i1iilII1[Ii1l1III('13')];let illIl111=Iillil+'\x24'+(lI1iIl[Ii1l1III('1')](Ii1l1III('6'))<0x0?lillI11l:'')+lI1iIl;classes[Ii1l1III('a')]({'type_id':illIl111,'type_name':Iillil[Ii1l1III('9')]('\x21\x21','')});webPaths[illIl111]=lillI11l;}}catch(Ii1Ii11){console[Ii1l1III('7')](Ii1l1III('14')+Ii1Ii11);}}}}function home(I1iiIiIl){return JSON[Ii1l1III('15')]({'class':classes,'filters':null});}function parseM3u(iIi1Ii1I,I1IlIIIi){let iI1iiIii={};let iiI11111=/(#EXTINF:.+?),([^,]+?)\s*\n(.+?)\s*\n/g;let ii1iilil=null;while((ii1iilil=iiI11111[Ii1l1III('16')](iIi1Ii1I))!=null){let lllli1iI=ii1iilil[0x1];let il1Ili1I=ii1iilil[0x2];let liIlll1l=ii1iilil[0x3];if(il1Ili1I==null||liIlll1l==null||il1Ili1I==''||liIlll1l==''){continue;}il1Ili1I=il1Ili1I[Ii1l1III('4')]();liIlll1l=liIlll1l[Ii1l1III('4')]();let IiI1lI1l=I1IlIIIi;let ilIl1i1i=/group-title="(.*?)"/;if(ilIl1i1i[Ii1l1III('17')](lllli1iI)){IiI1lI1l=lllli1iI[Ii1l1III('18')](ilIl1i1i)[0x1];}if(!iI1iiIii[IiI1lI1l]){iI1iiIii[IiI1lI1l]=[];}iI1iiIii[IiI1lI1l][Ii1l1III('a')](il1Ili1I+'\x2c'+liIlll1l);}let ll11III1='';for(const li1Ili in iI1iiIii){ll11III1+=li1Ili+'\x0a';let IlIil1ll=iI1iiIii[li1Ili];for(const li1iI11 of IlIil1ll){ll11III1+=li1iI11+'\x0a';}}return ll11III1;}function parseFm(IliiIl1I){let lliiI1i1='';let Iii1ll=JSON[Ii1l1III('e')](IliiIl1I);for(const i1lIlli1 of Iii1ll){let I111Il1l=i1lIlli1[Ii1l1III('12')];let ilI11li=i1lIlli1[Ii1l1III('19')];lliiI1i1+=I111Il1l+Ii1l1III('1a');for(const iiilI1iI of ilI11li){let I11111l1=iiilI1iI[Ii1l1III('12')];let IlI1l1I1=iiilI1iI[Ii1l1III('1b')];for(const l1II1lll of IlI1l1I1){lliiI1i1+=I11111l1+'\x2c'+l1II1lll+'\x0a';}}}return lliiI1i1;}function parseLu(iIliI1lI){let IIlilI1i='';let I11ilI1i=JSON[Ii1l1III('e')](iIliI1lI)[Ii1l1III('1c')];for(const i1Ii1l1 of I11ilI1i[Ii1l1III('1d')]){let I11111l=i1Ii1l1[Ii1l1III('1e')];let IiIiii1l=i1Ii1l1[Ii1l1III('1f')];IIlilI1i+=I11111l+Ii1l1III('1a');for(const l1111lI of IiIiii1l){let lIlI1iI=l1111lI[Ii1l1III('12')];let ll11i1II=l1111lI[Ii1l1III('1b')];for(const Iliilii of ll11i1II){IIlilI1i+=lIlI1iI+Ii1l1III('20')+Iliilii[Ii1l1III('21')]+'\x2c'+Iliilii[Ii1l1III('13')]+'\x0a';}}}return IIlilI1i;}function getCateData(IliI1i){let iI1I1I1I=picUrl;if(IliI1i[Ii1l1III('1')](Ii1l1III('5'))>0x0){iI1I1I1I=IliI1i[Ii1l1III('3')](Ii1l1III('5'))[0x1][Ii1l1III('4')]();if(iI1I1I1I[Ii1l1III('1')](Ii1l1III('6'))<0x0&&webPaths[IliI1i]){iI1I1I1I=webPaths[IliI1i]+iI1I1I1I;}IliI1i=IliI1i[Ii1l1III('3')](Ii1l1III('5'))[0x0][Ii1l1III('4')]();}console[Ii1l1III('7')](Ii1l1III('22')+iI1I1I1I);let ll1iIiiI=IliI1i[Ii1l1III('3')]('\x24')[0x1];let i1I1l1i=IliI1i[Ii1l1III('3')]('\x24')[0x0];if(!cates[IliI1i]){cates[IliI1i]=[];let iIl11Iii=headers;if(ll1iIiiI[Ii1l1III('1')]('\x7c')>0x0){let ii111I1I=decodeURIComponent(ll1iIiiI[Ii1l1III('3')]('\x7c')[0x1]);ll1iIiiI=ll1iIiiI[Ii1l1III('3')]('\x7c')[0x0];for(const II1Ii1l of ii111I1I[Ii1l1III('3')]('\x26')){if(II1Ii1l[Ii1l1III('1')]('\x3d')>0x0){let lI1lliii=II1Ii1l[Ii1l1III('3')]('\x3d')[0x0];let I11Iii1i=II1Ii1l[Ii1l1III('3')]('\x3d')[0x1];iIl11Iii[lI1lliii]=I11Iii1i;}}}let I111lilI=req(ll1iIiiI,{'\x6d\x65\x74\x68\x6f\x64':Ii1l1III('d'),'\x68\x65\x61\x64\x65\x72\x73':iIl11Iii});I111lilI=I111lilI[Ii1l1III('f')][Ii1l1III('4')]();if(I111lilI[Ii1l1III('1')](Ii1l1III('23'))>=0x0){I111lilI=parseM3u(I111lilI,i1I1l1i);}else if(I111lilI[Ii1l1III('1')](Ii1l1III('24'))>0x0&&I111lilI[Ii1l1III('1')](Ii1l1III('25'))>0x0){I111lilI=parseFm(I111lilI);}else if(I111lilI[Ii1l1III('1')](Ii1l1III('26'))>0x0&&I111lilI[Ii1l1III('1')](Ii1l1III('25'))>0x0){I111lilI=parseLu(I111lilI);}let li1IiiII=(i1I1l1i+'\x0a'+I111lilI[Ii1l1III('9')]('\x0d',''))[Ii1l1III('3')]('\x0a');let lli11iI=i1I1l1i;let IiiIIiIi=null;let iiiI1l='';for(let i1ii1IIl=0x0;i1ii1IIl<li1IiiII[Ii1l1III('27')];i1ii1IIl++){let lIliIii=li1IiiII[i1ii1IIl][Ii1l1III('9')](/\s+/g,'');if(lIliIii!=''&&lIliIii[Ii1l1III('1')](Ii1l1III('6'))<0x0&&(lIliIii[Ii1l1III('1')]('\x2c')<0x0||lIliIii[Ii1l1III('1')](Ii1l1III('28'))>0x0)){if(iiiI1l!=''){let ilIIIl=iI1I1I1I[Ii1l1III('9')](Ii1l1III('29'),encodeURIComponent(lli11iI))[Ii1l1III('9')](Ii1l1III('2a'),encodeURIComponent(i1I1l1i));let ilI1ilI=ilIIIl[Ii1l1III('1')]('\x3c');let iili1I1i=ilIIIl[Ii1l1III('11')]('\x3e');if(ilI1ilI>-0x1&&iili1I1i>ilI1ilI){let I11Ilili=ilIIIl[Ii1l1III('10')](ilI1ilI,iili1I1i+0x1);let I1liliII=new RegExp(I11Ilili[Ii1l1III('9')](/<|>/g,''));let lii11liI=lli11iI[Ii1l1III('9')](I1liliII,function(Ili1lIi1,iiliII1l){return iiliII1l;});ilIIIl=ilIIIl[Ii1l1III('9')](I11Ilili,lii11liI);console[Ii1l1III('7')](lli11iI+'\x2c\x20'+ilIIIl);}let IiiIIiIi={'vod_id':IliI1i+Ii1l1III('2')+cates[IliI1i][Ii1l1III('27')],'vod_name':lli11iI,'vod_pic':ilIIIl,'vod_remarks':'','type_name':Ii1l1III('2b'),'vod_year':'','vod_area':'','vod_actor':'','vod_director':'','vod_content':'','vod_play_from':i1I1l1i,'vod_play_url':iiiI1l};cates[IliI1i][Ii1l1III('a')](IiiIIiIi);}lli11iI=lIliIii[Ii1l1III('3')]('\x2c')[0x0][Ii1l1III('4')]();iiiI1l='';}else if(lIliIii[Ii1l1III('1')]('\x2c')>0x0&&/http|rtmp|rtsp|rsp/[Ii1l1III('17')](lIliIii)){let l1iiI1ii=lIliIii[Ii1l1III('3')]('\x2c');if(iiiI1l!=''){iiiI1l+='\x23';}iiiI1l+=l1iiI1ii[0x0][Ii1l1III('4')]()+'\x24'+l1iiI1ii[0x1][Ii1l1III('4')]();}}if(iiiI1l!=''){let II1Iliil=iI1I1I1I[Ii1l1III('9')](Ii1l1III('29'),encodeURIComponent(lli11iI))[Ii1l1III('9')](Ii1l1III('2a'),encodeURIComponent(i1I1l1i));let ilI1ilI=II1Iliil[Ii1l1III('1')]('\x3c');let iili1I1i=II1Iliil[Ii1l1III('11')]('\x3e');if(ilI1ilI>-0x1&&iili1I1i>ilI1ilI){let I11Ilili=II1Iliil[Ii1l1III('10')](ilI1ilI,iili1I1i+0x1);let I1liliII=new RegExp(I11Ilili[Ii1l1III('9')](/<|>/g,''));let lii11liI=I1liliII[Ii1l1III('17')](lli11iI)?lli11iI[Ii1l1III('18')](I1liliII)[0x1]:Ii1l1III('2c');II1Iliil=II1Iliil[Ii1l1III('9')](I11Ilili,lii11liI);}let IiiIIiIi={'vod_id':IliI1i+Ii1l1III('2')+cates[IliI1i][Ii1l1III('27')],'vod_name':lli11iI,'vod_pic':II1Iliil,'vod_remarks':'','type_name':Ii1l1III('2b'),'vod_year':'','vod_area':'','vod_actor':'','vod_director':'','vod_content':'','vod_play_from':i1I1l1i,'vod_play_url':iiiI1l};cates[IliI1i][Ii1l1III('a')](IiiIIiIi);}}return cates[IliI1i];}function homeVod(liIIlIl1){let iIl1IIii=getCateData(classes[0x0][Ii1l1III('2d')]);let I1l1iil=JSON[Ii1l1III('15')]({'list':iIl1IIii});return I1l1iil;}function category(I1l1i1Ii,l1IiiIli,IIi1Illi,lilIliIl){let IIi1i1ll=[];if(l1IiiIli==0x1){IIi1i1ll=getCateData(I1l1i1Ii);}let iIiiIi1i=JSON[Ii1l1III('15')]({'list':IIi1i1ll});return iIiiIi1i;}function detail(lIl11iii){let I1IIIil=lIl11iii[Ii1l1III('3')](Ii1l1III('2'));let liiiil1i=I1IIIil[0x0];let l1l111II=liiiil1i[Ii1l1III('3')]('\x24')[0x0];let Il1li11i=parseInt(I1IIIil[0x1]);let Iill11Ii=getCateData(liiiil1i)[Il1li11i];console[Ii1l1III('7')](JSON[Ii1l1III('15')](Iill11Ii));if(l1l111II[Ii1l1III('1')]('\x21\x21')>=0x0){l1l111II=l1l111II[Ii1l1III('9')]('\x21\x21','');const ii1l1iil=Iill11Ii[Ii1l1III('2e')][Ii1l1III('3')]('\x23');console[Ii1l1III('7')](JSON[Ii1l1III('15')](ii1l1iil));let i1Ili1I={};let IIIllli1={};for(const i1IiIlIl of ii1l1iil){let Ill1iii1=i1IiIlIl[Ii1l1III('3')]('\x24')[0x0];let IIiIII11=l1l111II;if(Ill1iii1[Ii1l1III('1')](Ii1l1III('20'))>0x0){IIiIII11=Ill1iii1[Ii1l1III('3')](Ii1l1III('20'))[0x1];Ill1iii1=Ill1iii1[Ii1l1III('3')](Ii1l1III('20'))[0x0];}if(!i1Ili1I[Ii1l1III('2f')](Ill1iii1)){i1Ili1I[Ill1iii1]=0x1;}else{i1Ili1I[Ill1iii1]++;}IIiIII11=l1l111II+(i1Ili1I[Ill1iii1]>0x1?'\x20'+i1Ili1I[Ill1iii1]:'');if(!IIIllli1[Ii1l1III('2f')](IIiIII11)){IIIllli1[IIiIII11]=[];}IIIllli1[IIiIII11][Ii1l1III('a')](Ill1iii1+'\x24'+i1IiIlIl[Ii1l1III('3')]('\x24')[0x1]);}let III1i1ii=[];let iii1lIIi=[];for(let iliI1I1i in IIIllli1){III1i1ii[Ii1l1III('a')](iliI1I1i);iii1lIIi[Ii1l1III('a')](IIIllli1[iliI1I1i][Ii1l1III('30')]('\x23'));}Iill11Ii[Ii1l1III('31')]=III1i1ii[Ii1l1III('30')](Ii1l1III('2'));Iill11Ii[Ii1l1III('2e')]=iii1lIIi[Ii1l1III('30')](Ii1l1III('2'));}return JSON[Ii1l1III('15')]({'list':[Iill11Ii]});}function play(l1llIIii,illiiIII,lIIIiIiI){return JSON[Ii1l1III('15')]({'parse':0x0,'url':illiiIII});}function search(I1lll,lI1iiIII){return null;}__JS_SPIDER__={'\x69\x6e\x69\x74':init,'\x68\x6f\x6d\x65':home,'\x68\x6f\x6d\x65\x56\x6f\x64':homeVod,'\x63\x61\x74\x65\x67\x6f\x72\x79':category,'\x64\x65\x74\x61\x69\x6c':detail,'\x70\x6c\x61\x79':play,'\x73\x65\x61\x72\x63\x68':search};;iil='jsjiami.com.v6';
|
||||
@@ -0,0 +1,4784 @@
|
||||
|
||||
|
||||
💥杂乱无章,#genre#
|
||||
|
||||
活?OL初次拍攝[1280*720],https://47b61.cdnedge.live/file/avple-images/hls/6219eb6ab9e8e9119a2f1fec/playlist.m3u8
|
||||
內穴服務-孟若羽[1280*720],https://47b61.cdnedge.live/file/avple-images/hls/61e927b7c6ba7653ff362827/playlist.m3u8
|
||||
College girl with bigtits Megan Reece pounded by huge black cock,http://12156.vod.adultiptv.net/ph5b43b8bca9ecc/play.m3u8
|
||||
Deep Anal Fucking Amateur Milf gets Two Facials,http://10238.vod.redtraffic.xyz/ph5b296eb53e0c0/play.m3u8
|
||||
Deepthroat Huge Cock compilation,http://6122.vod.adultiptv.net/ph5a0cb8d332f16/play.m3u8
|
||||
Demmi和Rafa Santos,http://21470.vod.adultiptv.net/ph5b2b032d300aa/play.m3u8
|
||||
Demure Anal Angel Delivers Asian Rectal Pleasure,http://218158.vod.adultiptv.net/ph5704c915bdef9/play.m3u8
|
||||
Deviant Ella Nova進入了異族戴綠帽會議,http://1244.vod.redtraffic.xyz/ph5c224b2c6a2a9/play.m3u8
|
||||
DaughterSwap-小烏木青少年貿易&amp; 操爸爸,http://1465.vod.redtraffic.xyz/ph5a735e6ddaed2/play.m3u8
|
||||
DaughterSwap-青少年Besties他媽的海誓山盟爸爸,http://12204.vod.redtraffic.xyz/ph5b4649afbaf3b/play.m3u8
|
||||
Diamond Jackson編譯PMV(擴展),http://6122.vod.redtraffic.xyz/ph5875e9899c21c/play.m3u8
|
||||
Diamond Kitty,http://21470.vod.redtraffic.xyz/ph5b0eb09e21ecf/play.m3u8
|
||||
Digital Playground-DP Star Live Show Part 2,http://1465.vod.redtraffic.xyz/ph5613d73c8c785/play.m3u8
|
||||
Dillion Harper被繼母抓住了鐵桿,http://12204.vod.adultiptv.net/ph569972bcae5fe/play.m3u8
|
||||
今晚老公不在家-?小雨[1280*720],https://q2cyl7.cdnedge.live/file/avple-images/hls/622fc6e2e14ae771445e47fa/playlist.m3u8
|
||||
叫雞叫到表姐-李蓉蓉[1280*720],https://1xp60.cdnedge.live/file/avple-images/hls/6219e6f5b9e8e9119a2f1fe1/playlist.m3u8
|
||||
鮑魚遊戲-孟若羽[960*544],https://zo392.cdnedge.live/file/avple-images/hls/621731ea336b5d6ff709b379/playlist.m3u8
|
||||
?琴老?的激情樂章[1280*720],https://w9n76.cdnedge.live/file/avple-images/hls/6219e94eb9e8e9119a2f1fe6/playlist.m3u8
|
||||
小姨勾引親外甥-白星雨[1280*720],https://u89ey.cdnedge.live/file/avple-images/hls/61efa03b5d579208810784f5/playlist.m3u8
|
||||
合租之偷窺-季曉彤,https://10j99.cdnedge.live/file/avple-images/hls/6197fbbdf1d93a199d1cf17b/playlist.m3u8
|
||||
阿?法?震台中篇[1280*720],https://je40u.cdnedge.live/file/avple-images/hls/615b142d62da73610588de51/p
|
||||
|
||||
🔞传媒1,#genre#
|
||||
|
||||
0,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e6ca3006a4603929a38d/playlist.m3u8
|
||||
1,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e77d3006a4603929a38f/playlist.m3u8
|
||||
36,https://d862cp.cdnedge.live/file/avple-images/hls/6202e0e6152c48301ba2ac72/playlist.m3u8
|
||||
37,https://d862cp.cdnedge.live/file/avple-images/hls/620b88afd0ea7c7d841b2f35/playlist.m3u8
|
||||
38,https://d862cp.cdnedge.live/file/avple-images/hls/620c6397d0ea7c7d841b2f37/playlist.m3u8
|
||||
39,https://d862cp.cdnedge.live/file/avple-images/hls/620c64c2d0ea7c7d841b2f39/playlist.m3u8
|
||||
40,https://d862cp.cdnedge.live/file/avple-images/hls/62104fa69d14d648884aa81d/playlist.m3u8
|
||||
41,https://d862cp.cdnedge.live/file/avple-images/hls/6211ae465e73c82284228828/playlist.m3u8
|
||||
42,https://d862cp.cdnedge.live/file/avple-images/hls/6215b81bcef8321ac4bf99a7/playlist.m3u8
|
||||
43,https://d862cp.cdnedge.live/file/avple-images/hls/621731ae336b5d6ff709b378/playlist.m3u8
|
||||
44,https://d862cp.cdnedge.live/file/avple-images/hls/6219e7e6b9e8e9119a2f1fe3/playlist.m3u8
|
||||
45,https://d862cp.cdnedge.live/file/avple-images/hls/6219e9c6b9e8e9119a2f1fe8/playlist.m3u8
|
||||
46,https://d862cp.cdnedge.live/file/avple-images/hls/621e17ee0b43873ee3783bf0/playlist.m3u8
|
||||
47,https://d862cp.cdnedge.live/file/avple-images/hls/621e1b360b43873ee3783bf2/playlist.m3u8
|
||||
48,https://d862cp.cdnedge.live/file/avple-images/hls/621f6c7a532bec088eaa2e88/playlist.m3u8
|
||||
49,https://d862cp.cdnedge.live/file/avple-images/hls/62246efac6370a74fa39c710/playlist.m3u8
|
||||
50,https://d862cp.cdnedge.live/file/avple-images/hls/622b616c99043721e41f476c/playlist.m3u8
|
||||
51,https://d862cp.cdnedge.live/file/avple-images/hls/622b634a99043721e41f476f/playlist.m3u8
|
||||
52,https://d862cp.cdnedge.live/file/avple-images/hls/622d4746e5f4997685910d13/playlist.m3u8
|
||||
53,https://d862cp.cdnedge.live/file/avple-images/hls/622fc71ee14ae771445e47fb/playlist.m3u8
|
||||
54,https://d862cp.cdnedge.live/file/avple-images/hls/622fca68e14ae771445e4800/playlist.m3u8
|
||||
55,https://d862cp.cdnedge.live/file/avple-images/hls/623aa076a36ac22379912382/playlist.m3u8
|
||||
56,https://d862cp.cdnedge.live/file/avple-images/hls/623aa346a36ac22379912386/playlist.m3u8
|
||||
57,https://d862cp.cdnedge.live/file/avple-images/hls/623e751676b51e756d5edbfc/playlist.m3u8
|
||||
58,https://d862cp.cdnedge.live/file/avple-images/hls/623e773276b51e756d5edc01/playlist.m3u8
|
||||
59,https://d862cp.cdnedge.live/file/avple-images/hls/623e7c9676b51e756d5edc09/playlist.m3u8
|
||||
60,https://d862cp.cdnedge.live/file/avple-images/hls/624908e9ecadf8296558c708/playlist.m3u8
|
||||
61,https://d862cp.cdnedge.live/file/avple-images/hls/62493cf3cb995938b9053402/playlist.m3u8
|
||||
62,https://d862cp.cdnedge.live/file/avple-images/hls/6249963dcf66f04e1354bd2e/playlist.m3u8
|
||||
63,https://d862cp.cdnedge.live/file/avple-images/hls/6249a0afeb0b5f202d561608/playlist.m3u8
|
||||
64,https://d862cp.cdnedge.live/file/avple-images/hls/624bef3d528c292827c459d7/playlist.m3u8
|
||||
65,https://d862cp.cdnedge.live/file/avple-images/hls/6251973cb9fdae53fd999573/playlist.m3u8
|
||||
66,https://d862cp.cdnedge.live/file/avple-images/hls/625406493d5bac30b2603dba/playlist.m3u8
|
||||
67,https://d862cp.cdnedge.live/file/avple-images/hls/6256afbebd35195668774555/playlist.m3u8
|
||||
68,https://d862cp.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
69,https://d862cp.cdnedge.live/file/avple-images/hls/626bd15b20859323fc450d6a/playlist.m3u8
|
||||
70,https://d862cp.cdnedge.live/file/avple-images/hls/626bd60920859323fc450d71/playlist.m3u8
|
||||
71,https://d862cp.cdnedge.live/file/avple-images/hls/626bd86220859323fc450d73/playlist.m3u8
|
||||
72,https://d862cp.cdnedge.live/file/avple-images/hls/62715fc34deadc023a8a098e/playlist.m3u8
|
||||
73,https://d862cp.cdnedge.live/file/avple-images/hls/6276757c3847697e5124b6d7/playlist.m3u8
|
||||
74,https://d862cp.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8c/playlist.m3u8
|
||||
75,https://d862cp.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8d/playlist.m3u8
|
||||
76,https://d862cp.cdnedge.live/file/avple-images/hls/627e6603c60346652e396c7f/playlist.m3u8
|
||||
77,https://d862cp.cdnedge.live/file/avple-images/hls/6280b2fbfc27be165aeb81d5/playlist.m3u8
|
||||
78,https://d862cp.cdnedge.live/file/avple-images/hls/6280b7a8fc27be165aeb81d9/playlist.m3u8
|
||||
79,https://d862cp.cdnedge.live/file/avple-images/hls/6280bc92fc27be165aeb81dd/playlist.m3u8
|
||||
80,https://d862cp.cdnedge.live/file/avple-images/hls/628375d8ef2c1c6dbc484241/playlist.m3u8
|
||||
81,https://d862cp.cdnedge.live/file/avple-images/hls/6284c1baef2c1c6dbc484243/playlist.m3u8
|
||||
82,https://d862cp.cdnedge.live/file/avple-images/hls/6284e42bc71b08247ee18e32/playlist.m3u8
|
||||
83,https://d862cp.cdnedge.live/file/avple-images/hls/6284e5d0c71b08247ee18e35/playlist.m3u8
|
||||
84,https://d862cp.cdnedge.live/file/avple-images/hls/6284ea43c71b08247ee18e3b/playlist.m3u8
|
||||
85,https://d862cp.cdnedge.live/file/avple-images/hls/628ab86ea1c1cd0b44683efe/playlist.m3u8
|
||||
86,https://d862cp.cdnedge.live/file/avple-images/hls/628ab8aaa1c1cd0b44683eff/playlist.m3u8
|
||||
87,https://d862cp.cdnedge.live/file/avple-images/hls/628b5d6f478a7e4e23bce256/playlist.m3u8
|
||||
88,https://d862cp.cdnedge.live/file/avple-images/hls/628b6013c27a514e3ebcb9b6/playlist.m3u8
|
||||
89,https://d862cp.cdnedge.live/file/avple-images/hls/628b60f3478a7e4e23bce259/playlist.m3u8
|
||||
90,https://d862cp.cdnedge.live/file/avple-images/hls/628b61a7478a7e4e23bce25a/playlist.m3u8
|
||||
92,https://d862cp.cdnedge.live/file/avple-images/hls/628cc65ede01360ccb2f8e9d/playlist.m3u8
|
||||
93,https://d862cp.cdnedge.live/file/avple-images/hls/628f6925531f007e5ba30af3/playlist.m3u8
|
||||
94,https://d862cp.cdnedge.live/file/avple-images/hls/628f7f67531f007e5ba30af7/playlist.m3u8
|
||||
95,https://d862cp.cdnedge.live/file/avple-images/hls/628f8543531f007e5ba30b00/playlist.m3u8
|
||||
96,https://d862cp.cdnedge.live/file/avple-images/hls/629247ae777f8769be5fdfa7/playlist.m3u8
|
||||
97,https://d862cp.cdnedge.live/file/avple-images/hls/62924b6e777f8769be5fdfab/playlist.m3u8
|
||||
98,https://d862cp.cdnedge.live/file/avple-images/hls/6294de40180f8c65c7d908a8/playlist.m3u8
|
||||
99,https://d862cp.cdnedge.live/file/avple-images/hls/6295761e180f8c65c7d908ac/playlist.m3u8
|
||||
100,https://d862cp.cdnedge.live/file/avple-images/hls/62957f08180f8c65c7d908b9/playlist.m3u8
|
||||
101,https://d862cp.cdnedge.live/file/avple-images/hls/6295f4087ef42454a69c76d3/playlist.m3u8
|
||||
102,https://d862cp.cdnedge.live/file/avple-images/hls/62a2a5d356220431fa6b0d88/playlist.m3u8
|
||||
103,https://d862cp.cdnedge.live/file/avple-images/hls/62a496f094b044303b9622cd/playlist.m3u8
|
||||
104,https://d862cp.cdnedge.live/file/avple-images/hls/62a5a56594b044303b9622d2/playlist.m3u8
|
||||
105,https://d862cp.cdnedge.live/file/avple-images/hls/62a5ac6b94b044303b9622db/playlist.m3u8
|
||||
106,https://d862cp.cdnedge.live/file/avple-images/hls/62aacc3a21a7da2e6584bc81/playlist.m3u8
|
||||
107,https://d862cp.cdnedge.live/file/avple-images/hls/62aacecb21a7da2e6584bc85/playlist.m3u8
|
||||
108,https://d862cp.cdnedge.live/file/avple-images/hls/62aad03321a7da2e6584bc87/playlist.m3u8
|
||||
109,https://d862cp.cdnedge.live/file/avple-images/hls/62ac60491ea6384bb6ca9f86/playlist.m3u8
|
||||
110,https://d862cp.cdnedge.live/file/avple-images/hls/62ac67541ea6384bb6ca9f8c/playlist.m3u8
|
||||
111,https://d862cp.cdnedge.live/file/avple-images/hls/62aed0a9c556631aff1378f1/playlist.m3u8
|
||||
112,https://d862cp.cdnedge.live/file/avple-images/hls/62aed121c556631aff1378f2/playlist.m3u8
|
||||
113,https://d862cp.cdnedge.live/file/avple-images/hls/62b1b7a2eec8264ea0826f2d/playlist.m3u8
|
||||
114,https://d862cp.cdnedge.live/file/avple-images/hls/62b431daea01b50f6781dc58/playlist.m3u8
|
||||
115,https://d862cp.cdnedge.live/file/avple-images/hls/62b43214ea01b50f6781dc59/playlist.m3u8
|
||||
116,https://d862cp.cdnedge.live/file/avple-images/hls/62b43253ea01b50f6781dc5a/playlist.m3u8
|
||||
117,https://d862cp.cdnedge.live/file/avple-images/hls/62b432ccea01b50f6781dc5b/playlist.m3u8
|
||||
118,https://d862cp.cdnedge.live/file/avple-images/hls/62b43341ea01b50f6781dc5c/playlist.m3u8
|
||||
119,https://d862cp.cdnedge.live/file/avple-images/hls/62bbed25ea3d425e0a93b79d/playlist.m3u8
|
||||
120,https://d862cp.cdnedge.live/file/avple-images/hls/62bd8531d0fa6a48496bbf5a/playlist.m3u8
|
||||
122,https://d862cp.cdnedge.live/file/avple-images/hls/618071b94d383b66797a697f/playlist.m3u8
|
||||
123,https://d862cp.cdnedge.live/file/avple-images/hls/618336b586d3713512d4ddb1/playlist.m3u8
|
||||
124,https://d862cp.cdnedge.live/file/avple-images/hls/618b97b552fe307992e9158b/playlist.m3u8
|
||||
125,https://d862cp.cdnedge.live/file/avple-images/hls/6190b7813e002b78fa02b86c/playlist.m3u8
|
||||
126,https://d862cp.cdnedge.live/file/avple-images/hls/6193bc3d1ab2cd467ae5359c/playlist.m3u8
|
||||
127,https://d862cp.cdnedge.live/file/avple-images/hls/61965529647fa6021841bd50/playlist.m3u8
|
||||
128,https://d862cp.cdnedge.live/file/avple-images/hls/619951b14a94103a79bc9486/playlist.m3u8
|
||||
129,https://d862cp.cdnedge.live/file/avple-images/hls/619a41ed8a9163545f3c8173/playlist.m3u8
|
||||
130,https://d862cp.cdnedge.live/file/avple-images/hls/619e96c1364f6c1f6030fe58/playlist.m3u8
|
||||
131,https://d862cp.cdnedge.live/file/avple-images/hls/62c049e68a72962dc53aa5a2/playlist.m3u8
|
||||
132,https://d862cp.cdnedge.live/file/avple-images/hls/61703f29bc5c965ae4f56248/playlist.m3u8
|
||||
133,https://d862cp.cdnedge.live/file/avple-images/hls/61730a0116713849c8fc4706/playlist.m3u8
|
||||
134,https://d862cp.cdnedge.live/file/avple-images/hls/617835fd6275b513e05eef0a/playlist.m3u8
|
||||
135,https://d862cp.cdnedge.live/file/avple-images/hls/617a0469933dae5425d49b8e/playlist.m3u8
|
||||
136,https://d862cp.cdnedge.live/file/avple-images/hls/617c4ed1f0db60036839e949/playlist.m3u8
|
||||
137,https://d862cp.cdnedge.live/file/avple-images/hls/617e2661eb87aa24a1c4102b/playlist.m3u8
|
||||
138,https://d862cp.cdnedge.live/file/avple-images/hls/628cad88de01360ccb2f8e97/playlist.m3u8
|
||||
139,https://d862cp.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb9/playlist.m3u8
|
||||
140,https://d862cp.cdnedge.live/file/avple-images/hls/61e927b7c6ba7653ff362827/playlist.m3u8
|
||||
|
||||
🔞传媒2,#genre#
|
||||
|
||||
0,https://8bb88.cdnedge.live/file/avple-images/hls/617c5075f0db60036839e94c/playlist.m3u8
|
||||
1,https://8bb88.cdnedge.live/file/avple-images/hls/618070514d383b66797a697c/playlist.m3u8
|
||||
2,https://8bb88.cdnedge.live/file/avple-images/hls/618074134d383b66797a6982/playlist.m3u8
|
||||
3,https://8bb88.cdnedge.live/file/avple-images/hls/618627fd26bdd144b598cbda/playlist.m3u8
|
||||
4,https://8bb88.cdnedge.live/file/avple-images/hls/618d1a31608a75437203bdfe/playlist.m3u8
|
||||
5,https://8bb88.cdnedge.live/file/avple-images/hls/618d1df1608a75437203be01/playlist.m3u8
|
||||
6,https://8bb88.cdnedge.live/file/avple-images/hls/618e691df061a16282b2ee99/playlist.m3u8
|
||||
7,https://8bb88.cdnedge.live/file/avple-images/hls/6193b96d1ab2cd467ae53596/playlist.m3u8
|
||||
8,https://8bb88.cdnedge.live/file/avple-images/hls/6193bc011ab2cd467ae5359b/playlist.m3u8
|
||||
9,https://8bb88.cdnedge.live/file/avple-images/hls/619508d2416cf262e9444a28/playlist.m3u8
|
||||
10,https://8bb88.cdnedge.live/file/avple-images/hls/6197ac0df1d93a199d1cf177/playlist.m3u8
|
||||
11,https://8bb88.cdnedge.live/file/avple-images/hls/6197fbbdf1d93a199d1cf17b/playlist.m3u8
|
||||
12,https://8bb88.cdnedge.live/file/avple-images/hls/619c02fdf0d6ad68f95a08ab/playlist.m3u8
|
||||
13,https://8bb88.cdnedge.live/file/avple-images/hls/619c0375f0d6ad68f95a08ac/playlist.m3u8
|
||||
14,https://8bb88.cdnedge.live/file/avple-images/hls/619e95d1364f6c1f6030fe56/playlist.m3u8
|
||||
15,https://8bb88.cdnedge.live/file/avple-images/hls/61a52649a992bd3d5c3eb61d/playlist.m3u8
|
||||
16,https://8bb88.cdnedge.live/file/avple-images/hls/61accd38779a324ef83699a9/playlist.m3u8
|
||||
17,https://8bb88.cdnedge.live/file/avple-images/hls/61accf7e609ef7155b3678df/playlist.m3u8
|
||||
18,https://8bb88.cdnedge.live/file/avple-images/hls/61b46ef1f91a1b0eecb6e532/playlist.m3u8
|
||||
19,https://8bb88.cdnedge.live/file/avple-images/hls/61b6cb291458462c26eadc87/playlist.m3u8
|
||||
20,https://8bb88.cdnedge.live/file/avple-images/hls/61b6cccd1458462c26eadc8b/playlist.m3u8
|
||||
21,https://8bb88.cdnedge.live/file/avple-images/hls/61bad40ed56b7626e975d4ec/playlist.m3u8
|
||||
22,https://8bb88.cdnedge.live/file/avple-images/hls/61c02769ad3e743fbb4f96eb/playlist.m3u8
|
||||
23,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a4e5668fd93b4250a319/playlist.m3u8
|
||||
24,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a91d668fd93b4250a321/playlist.m3u8
|
||||
25,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a95a668fd93b4250a322/playlist.m3u8
|
||||
27,https://8bb88.cdnedge.live/file/avple-images/hls/61c843f92beaee4e833a9d66/playlist.m3u8
|
||||
28,https://8bb88.cdnedge.live/file/avple-images/hls/61c849992beaee4e833a9d6c/playlist.m3u8
|
||||
29,https://8bb88.cdnedge.live/file/avple-images/hls/61c84bb587883b68401d1b31/playlist.m3u8
|
||||
30,https://8bb88.cdnedge.live/file/avple-images/hls/61cace99b4a41e7b51c24d4c/playlist.m3u8
|
||||
31,https://8bb88.cdnedge.live/file/avple-images/hls/61ce1315b418404e15c81308/playlist.m3u8
|
||||
32,https://8bb88.cdnedge.live/file/avple-images/hls/61d0c0a18ec5397ce0e2cde0/playlist.m3u8
|
||||
33,https://8bb88.cdnedge.live/file/avple-images/hls/61d0c2bd8ec5397ce0e2cde4/playlist.m3u8
|
||||
34,https://8bb88.cdnedge.live/file/avple-images/hls/61d22e41fc53091229805814/playlist.m3u8
|
||||
35,https://8bb88.cdnedge.live/file/avple-images/hls/61d627adf2772f49dcde1d55/playlist.m3u8
|
||||
36,https://8bb88.cdnedge.live/file/avple-images/hls/61d8f98d188cab78b243b410/playlist.m3u8
|
||||
37,https://8bb88.cdnedge.live/file/avple-images/hls/61db6bcd5fb6a835028c9ae8/playlist.m3u8
|
||||
38,https://8bb88.cdnedge.live/file/avple-images/hls/61de119d26bc6674a0936d1c/playlist.m3u8
|
||||
39,https://8bb88.cdnedge.live/file/avple-images/hls/61e1183ab12f2d3579c3423a/playlist.m3u8
|
||||
40,https://8bb88.cdnedge.live/file/avple-images/hls/61e3bd56ec201f6b0a3a89a8/playlist.m3u8
|
||||
41,https://8bb88.cdnedge.live/file/avple-images/hls/61e927b0c6ba7653ff362823/playlist.m3u8
|
||||
42,https://8bb88.cdnedge.live/file/avple-images/hls/61e927b3c6ba7653ff362825/playlist.m3u8
|
||||
43,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbb9a7580a3314beba2a2/playlist.m3u8
|
||||
44,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbcc67580a3314beba2a5/playlist.m3u8
|
||||
45,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbd7a7580a3314beba2a7/playlist.m3u8
|
||||
46,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbdf37580a3314beba2a8/playlist.m3u8
|
||||
47,https://8bb88.cdnedge.live/file/avple-images/hls/61f70493d7d05308d12ef123/playlist.m3u8
|
||||
48,https://8bb88.cdnedge.live/file/avple-images/hls/61fd8e3ec68d7d11e015cd88/playlist.m3u8
|
||||
49,https://8bb88.cdnedge.live/file/avple-images/hls/61fd8f6ac68d7d11e015cd8c/playlist.m3u8
|
||||
50,https://8bb88.cdnedge.live/file/avple-images/hls/6202ddda152c48301ba2ac6d/playlist.m3u8
|
||||
51,https://8bb88.cdnedge.live/file/avple-images/hls/6202de16152c48301ba2ac6e/playlist.m3u8
|
||||
52,https://8bb88.cdnedge.live/file/avple-images/hls/62059fcbd69d37216eb636da/playlist.m3u8
|
||||
53,https://8bb88.cdnedge.live/file/avple-images/hls/6211adce5e73c82284228827/playlist.m3u8
|
||||
54,https://8bb88.cdnedge.live/file/avple-images/hls/6215b6b3cef8321ac4bf99a3/playlist.m3u8
|
||||
55,https://8bb88.cdnedge.live/file/avple-images/hls/621e17b40b43873ee3783bef/playlist.m3u8
|
||||
56,https://8bb88.cdnedge.live/file/avple-images/hls/622310611fdb77263ccb386b/playlist.m3u8
|
||||
57,https://8bb88.cdnedge.live/file/avple-images/hls/62246d92c6370a74fa39c70d/playlist.m3u8
|
||||
58,https://8bb88.cdnedge.live/file/avple-images/hls/62246f36c6370a74fa39c711/playlist.m3u8
|
||||
59,https://8bb88.cdnedge.live/file/avple-images/hls/62266e26c4dfd90d53d40fbe/playlist.m3u8
|
||||
60,https://8bb88.cdnedge.live/file/avple-images/hls/62266edac4dfd90d53d40fc0/playlist.m3u8
|
||||
61,https://8bb88.cdnedge.live/file/avple-images/hls/622b603e99043721e41f476a/playlist.m3u8
|
||||
62,https://8bb88.cdnedge.live/file/avple-images/hls/622d4836e5f4997685910d15/playlist.m3u8
|
||||
63,https://8bb88.cdnedge.live/file/avple-images/hls/622d4872e5f4997685910d16/playlist.m3u8
|
||||
64,https://8bb88.cdnedge.live/file/avple-images/hls/622fc84ae14ae771445e47fc/playlist.m3u8
|
||||
65,https://8bb88.cdnedge.live/file/avple-images/hls/62323a8b8cc9324f4943612f/playlist.m3u8
|
||||
66,https://8bb88.cdnedge.live/file/avple-images/hls/6233c791aefa78093f9ffdce/playlist.m3u8
|
||||
67,https://8bb88.cdnedge.live/file/avple-images/hls/6236af7a1222e41c629a9325/playlist.m3u8
|
||||
68,https://8bb88.cdnedge.live/file/avple-images/hls/623824223f90d26204d0e678/playlist.m3u8
|
||||
69,https://8bb88.cdnedge.live/file/avple-images/hls/6238249a3f90d26204d0e67a/playlist.m3u8
|
||||
70,https://8bb88.cdnedge.live/file/avple-images/hls/6238254e3f90d26204d0e67c/playlist.m3u8
|
||||
71,https://8bb88.cdnedge.live/file/avple-images/hls/623926e2a14fb341a31f13de/playlist.m3u8
|
||||
72,https://8bb88.cdnedge.live/file/avple-images/hls/623e755276b51e756d5edbfd/playlist.m3u8
|
||||
73,https://8bb88.cdnedge.live/file/avple-images/hls/623e77aa76b51e756d5edc03/playlist.m3u8
|
||||
74,https://8bb88.cdnedge.live/file/avple-images/hls/6242c24981f80f77774148cf/playlist.m3u8
|
||||
75,https://8bb88.cdnedge.live/file/avple-images/hls/6242fdf2e092281092d3775a/playlist.m3u8
|
||||
76,https://8bb88.cdnedge.live/file/avple-images/hls/624591930ea8e533f480f47a/playlist.m3u8
|
||||
77,https://8bb88.cdnedge.live/file/avple-images/hls/62492509ddaa1830ff7bacb4/playlist.m3u8
|
||||
78,https://8bb88.cdnedge.live/file/avple-images/hls/624be925528c292827c459d2/playlist.m3u8
|
||||
80,https://8bb88.cdnedge.live/file/avple-images/hls/624eea246d742407ed435442/playlist.m3u8
|
||||
81,https://8bb88.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999576/playlist.m3u8
|
||||
82,https://8bb88.cdnedge.live/file/avple-images/hls/625494363d5bac30b2603dbf/playlist.m3u8
|
||||
83,https://8bb88.cdnedge.live/file/avple-images/hls/625494ae3d5bac30b2603dc0/playlist.m3u8
|
||||
84,https://8bb88.cdnedge.live/file/avple-images/hls/626bd0e020859323fc450d69/playlist.m3u8
|
||||
85,https://8bb88.cdnedge.live/file/avple-images/hls/626faf1c3ddea14c11aa4aa7/playlist.m3u8
|
||||
86,https://8bb88.cdnedge.live/file/avple-images/hls/626fb4bc3ddea14c11aa4aad/playlist.m3u8
|
||||
87,https://8bb88.cdnedge.live/file/avple-images/hls/626fc4703ddea14c11aa4ab4/playlist.m3u8
|
||||
89,https://8bb88.cdnedge.live/file/avple-images/hls/62767aa53847697e5124b6df/playlist.m3u8
|
||||
90,https://8bb88.cdnedge.live/file/avple-images/hls/62767dee3847697e5124b6e2/playlist.m3u8
|
||||
92,https://8bb88.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5c/playlist.m3u8
|
||||
93,https://8bb88.cdnedge.live/file/avple-images/hls/627d15332568f9623a3e5423/playlist.m3u8
|
||||
94,https://8bb88.cdnedge.live/file/avple-images/hls/627e6330c60346652e396c7c/playlist.m3u8
|
||||
95,https://8bb88.cdnedge.live/file/avple-images/hls/627eefcbc60346652e396c83/playlist.m3u8
|
||||
96,https://8bb88.cdnedge.live/file/avple-images/hls/627ef135c60346652e396c85/playlist.m3u8
|
||||
97,https://8bb88.cdnedge.live/file/avple-images/hls/627ef1e7c60346652e396c86/playlist.m3u8
|
||||
98,https://8bb88.cdnedge.live/file/avple-images/hls/6280b2fbfc27be165aeb81d5/playlist.m3u8
|
||||
99,https://8bb88.cdnedge.live/file/avple-images/hls/6280b3effc27be165aeb81d6/playlist.m3u8
|
||||
100,https://8bb88.cdnedge.live/file/avple-images/hls/6280be37fc27be165aeb81e0/playlist.m3u8
|
||||
101,https://8bb88.cdnedge.live/file/avple-images/hls/6280d34eef039d550798916c/playlist.m3u8
|
||||
102,https://8bb88.cdnedge.live/file/avple-images/hls/6280d697ef039d550798916e/playlist.m3u8
|
||||
103,https://8bb88.cdnedge.live/file/avple-images/hls/6280d8b2ef039d5507989170/playlist.m3u8
|
||||
104,https://8bb88.cdnedge.live/file/avple-images/hls/628259c987e86122ac281eb4/playlist.m3u8
|
||||
105,https://8bb88.cdnedge.live/file/avple-images/hls/6284dfb7c71b08247ee18e2c/playlist.m3u8
|
||||
106,https://8bb88.cdnedge.live/file/avple-images/hls/6284e288c71b08247ee18e2f/playlist.m3u8
|
||||
107,https://8bb88.cdnedge.live/file/avple-images/hls/628799b1d28d4f134ac6904c/playlist.m3u8
|
||||
108,https://8bb88.cdnedge.live/file/avple-images/hls/6288c9e7b982a351108bf731/playlist.m3u8
|
||||
109,https://8bb88.cdnedge.live/file/avple-images/hls/628ab3fba1c1cd0b44683ef8/playlist.m3u8
|
||||
110,https://8bb88.cdnedge.live/file/avple-images/hls/628ab564a1c1cd0b44683efa/playlist.m3u8
|
||||
111,https://8bb88.cdnedge.live/file/avple-images/hls/628ab68ea1c1cd0b44683efb/playlist.m3u8
|
||||
112,https://8bb88.cdnedge.live/file/avple-images/hls/628b5d6f478a7e4e23bce256/playlist.m3u8
|
||||
113,https://8bb88.cdnedge.live/file/avple-images/hls/628b61a7478a7e4e23bce25a/playlist.m3u8
|
||||
114,https://8bb88.cdnedge.live/file/avple-images/hls/628cd91fde01360ccb2f8e9f/playlist.m3u8
|
||||
115,https://8bb88.cdnedge.live/file/avple-images/hls/628f7f67531f007e5ba30af7/playlist.m3u8
|
||||
116,https://8bb88.cdnedge.live/file/avple-images/hls/6290bf9287412532ac7f4cff/playlist.m3u8
|
||||
117,https://8bb88.cdnedge.live/file/avple-images/hls/62957ecc180f8c65c7d908b8/playlist.m3u8
|
||||
118,https://8bb88.cdnedge.live/file/avple-images/hls/6295806f180f8c65c7d908bc/playlist.m3u8
|
||||
119,https://8bb88.cdnedge.live/file/avple-images/hls/6295f53721a63954baad12c8/playlist.m3u8
|
||||
120,https://8bb88.cdnedge.live/file/avple-images/hls/6295fb067ef42454a69c76d6/playlist.m3u8
|
||||
121,https://8bb88.cdnedge.live/file/avple-images/hls/62a1c90c56220431fa6b0d80/playlist.m3u8
|
||||
122,https://8bb88.cdnedge.live/file/avple-images/hls/62a497a394b044303b9622ce/playlist.m3u8
|
||||
123,https://8bb88.cdnedge.live/file/avple-images/hls/62a5b0a294b044303b9622e0/playlist.m3u8
|
||||
124,https://8bb88.cdnedge.live/file/avple-images/hls/62aad7b221a7da2e6584bc92/playlist.m3u8
|
||||
125,https://8bb88.cdnedge.live/file/avple-images/hls/62ac66641ea6384bb6ca9f8a/playlist.m3u8
|
||||
126,https://8bb88.cdnedge.live/file/avple-images/hls/62ac68051ea6384bb6ca9f8e/playlist.m3u8
|
||||
127,https://8bb88.cdnedge.live/file/avple-images/hls/62aecb0ac556631aff1378ea/playlist.m3u8
|
||||
128,https://8bb88.cdnedge.live/file/avple-images/hls/62aecf05c556631aff1378ef/playlist.m3u8
|
||||
129,https://8bb88.cdnedge.live/file/avple-images/hls/62aed1d5c556631aff1378f4/playlist.m3u8
|
||||
130,https://8bb88.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b50/playlist.m3u8
|
||||
131,https://8bb88.cdnedge.live/file/avple-images/hls/62bbea91ea3d425e0a93b79a/playlist.m3u8
|
||||
132,https://8bb88.cdnedge.live/file/avple-images/hls/62bbf3efea3d425e0a93b7a9/playlist.m3u8
|
||||
133,https://8bb88.cdnedge.live/file/avple-images/hls/62bd8968d0fa6a48496bbf61/playlist.m3u8
|
||||
134,https://8bb88.cdnedge.live/file/avple-images/hls/62c440c8366b240e3b67be31/playlist.m3u8
|
||||
135,https://8bb88.cdnedge.live/file/avple-images/hls/62c44c81366b240e3b67be3c/playlist.m3u8
|
||||
134,https://8bb88.cdnedge.live/file/avple-images/hls/6171a7ddf8003d17dfd1a735/playlist.m3u8
|
||||
135,https://8bb88.cdnedge.live/file/avple-images/hls/61730ba516713849c8fc4707/playlist.m3u8
|
||||
136,https://8bb88.cdnedge.live/file/avple-images/hls/61730c5916713849c8fc4709/playlist.m3u8
|
||||
137,https://8bb88.cdnedge.live/file/avple-images/hls/61771ed9ad20e84f6e46a0ae/playlist.m3u8
|
||||
138,https://8bb88.cdnedge.live/file/avple-images/hls/61772005ad20e84f6e46a0b0/playlist.m3u8
|
||||
139,https://8bb88.cdnedge.live/file/avple-images/hls/617c4da5f0db60036839e946/playlist.m3u8
|
||||
140,https://8bb88.cdnedge.live/file/avple-images/hls/617c4e59f0db60036839e948/playlist.m3u8
|
||||
141,https://8bb88.cdnedge.live/file/avple-images/hls/61ce10f9b418404e15c81302/playlist.m3u8
|
||||
142,https://8bb88.cdnedge.live/file/avple-images/hls/622b5fc699043721e41f4769/playlist.m3u8
|
||||
143,https://8bb88.cdnedge.live/file/avple-images/hls/627a573c1a1d9a347dd98539/playlist.m3u8
|
||||
144,https://8bb88.cdnedge.live/file/avple-images/hls/6298685823d5972db0bfc99d/playlist.m3u8
|
||||
|
||||
🔞传媒3,#genre#
|
||||
|
||||
0,https://10j99.cdnedge.live/file/avple-images/hls/61703f29bc5c965ae4f56248/playlist.m3u8
|
||||
1,https://10j99.cdnedge.live/file/avple-images/hls/6171a981f8003d17dfd1a739/playlist.m3u8
|
||||
2,https://10j99.cdnedge.live/file/avple-images/hls/6173094d16713849c8fc4704/playlist.m3u8
|
||||
3,https://10j99.cdnedge.live/file/avple-images/hls/61771dadad20e84f6e46a0ab/playlist.m3u8
|
||||
4,https://10j99.cdnedge.live/file/avple-images/hls/617e28f5eb87aa24a1c41030/playlist.m3u8
|
||||
5,https://10j99.cdnedge.live/file/avple-images/hls/618071054d383b66797a697e/playlist.m3u8
|
||||
6,https://10j99.cdnedge.live/file/avple-images/hls/6183345d86d3713512d4ddac/playlist.m3u8
|
||||
7,https://10j99.cdnedge.live/file/avple-images/hls/6186240126bdd144b598cbd2/playlist.m3u8
|
||||
8,https://10j99.cdnedge.live/file/avple-images/hls/6186265a26bdd144b598cbd7/playlist.m3u8
|
||||
9,https://10j99.cdnedge.live/file/avple-images/hls/618e68e1f061a16282b2ee98/playlist.m3u8
|
||||
10,https://10j99.cdnedge.live/file/avple-images/hls/6190b9d93e002b78fa02b871/playlist.m3u8
|
||||
11,https://10j99.cdnedge.live/file/avple-images/hls/6193bb891ab2cd467ae5359a/playlist.m3u8
|
||||
12,https://10j99.cdnedge.live/file/avple-images/hls/6196ae3a647fa6021841bd52/playlist.m3u8
|
||||
13,https://10j99.cdnedge.live/file/avple-images/hls/6197aaa5f1d93a199d1cf174/playlist.m3u8
|
||||
14,https://10j99.cdnedge.live/file/avple-images/hls/6197ac85f1d93a199d1cf178/playlist.m3u8
|
||||
15,https://10j99.cdnedge.live/file/avple-images/hls/6199513a4a94103a79bc9485/playlist.m3u8
|
||||
16,https://10j99.cdnedge.live/file/avple-images/hls/619a42a28a9163545f3c8175/playlist.m3u8
|
||||
17,https://10j99.cdnedge.live/file/avple-images/hls/619d54f544b3af0456c438a8/playlist.m3u8
|
||||
18,https://10j99.cdnedge.live/file/avple-images/hls/619e9649364f6c1f6030fe57/playlist.m3u8
|
||||
19,https://10j99.cdnedge.live/file/avple-images/hls/61a288adc4f43c7ba5009c27/playlist.m3u8
|
||||
20,https://10j99.cdnedge.live/file/avple-images/hls/61a5260da992bd3d5c3eb61c/playlist.m3u8
|
||||
21,https://10j99.cdnedge.live/file/avple-images/hls/61a526fda992bd3d5c3eb61f/playlist.m3u8
|
||||
22,https://10j99.cdnedge.live/file/avple-images/hls/61a52775a992bd3d5c3eb620/playlist.m3u8
|
||||
23,https://10j99.cdnedge.live/file/avple-images/hls/61a7d5797aac5d7ef57bda25/playlist.m3u8
|
||||
24,https://10j99.cdnedge.live/file/avple-images/hls/61accd35779a324ef83699a5/playlist.m3u8
|
||||
25,https://10j99.cdnedge.live/file/avple-images/hls/61accd43779a324ef83699b9/playlist.m3u8
|
||||
26,https://10j99.cdnedge.live/file/avple-images/hls/61aea31d02275f78f19d8f2a/playlist.m3u8
|
||||
27,https://10j99.cdnedge.live/file/avple-images/hls/61b05222cb1e9c2565068be7/playlist.m3u8
|
||||
28,https://10j99.cdnedge.live/file/avple-images/hls/61b303a90f991b6812b80302/playlist.m3u8
|
||||
29,https://10j99.cdnedge.live/file/avple-images/hls/61b6c85a1458462c26eadc85/playlist.m3u8
|
||||
30,https://10j99.cdnedge.live/file/avple-images/hls/61bd97a28cc57113d487484a/playlist.m3u8
|
||||
31,https://10j99.cdnedge.live/file/avple-images/hls/61d0c3358ec5397ce0e2cde6/playlist.m3u8
|
||||
32,https://10j99.cdnedge.live/file/avple-images/hls/61d22ef5fc53091229805815/playlist.m3u8
|
||||
33,https://10j99.cdnedge.live/file/avple-images/hls/61d623edf2772f49dcde1d4b/playlist.m3u8
|
||||
34,https://10j99.cdnedge.live/file/avple-images/hls/61df66293c31380dc7d79adc/playlist.m3u8
|
||||
35,https://10j99.cdnedge.live/file/avple-images/hls/61e11a91b12f2d3579c3423f/playlist.m3u8
|
||||
36,https://10j99.cdnedge.live/file/avple-images/hls/61e249d99e31551b4fa3bead/playlist.m3u8
|
||||
37,https://10j99.cdnedge.live/file/avple-images/hls/61e927b2c6ba7653ff362824/playlist.m3u8
|
||||
38,https://10j99.cdnedge.live/file/avple-images/hls/61e927bac6ba7653ff362829/playlist.m3u8
|
||||
39,https://10j99.cdnedge.live/file/avple-images/hls/61f391b123581479b901ae12/playlist.m3u8
|
||||
40,https://10j99.cdnedge.live/file/avple-images/hls/61d0c0298ec5397ce0e2cddf/playlist.m3u8
|
||||
41,https://10j99.cdnedge.live/file/avple-images/hls/61f7041bd7d05308d12ef122/playlist.m3u8
|
||||
42,https://10j99.cdnedge.live/file/avple-images/hls/61f7050ad7d05308d12ef124/playlist.m3u8
|
||||
43,https://10j99.cdnedge.live/file/avple-images/hls/61f9a80a9053272327957ad9/playlist.m3u8
|
||||
44,https://10j99.cdnedge.live/file/avple-images/hls/61fb897211eff304d6e13797/playlist.m3u8
|
||||
45,https://10j99.cdnedge.live/file/avple-images/hls/61fb8d3211eff304d6e137a0/playlist.m3u8
|
||||
46,https://10j99.cdnedge.live/file/avple-images/hls/61ff17c299eb625f8e37e0aa/playlist.m3u8
|
||||
47,https://10j99.cdnedge.live/file/avple-images/hls/6202dd9e152c48301ba2ac6c/playlist.m3u8
|
||||
48,https://10j99.cdnedge.live/file/avple-images/hls/6202e33e152c48301ba2ac74/playlist.m3u8
|
||||
49,https://10j99.cdnedge.live/file/avple-images/hls/62059f8ed69d37216eb636d9/playlist.m3u8
|
||||
50,https://10j99.cdnedge.live/file/avple-images/hls/620b87fdd0ea7c7d841b2f33/playlist.m3u8
|
||||
51,https://10j99.cdnedge.live/file/avple-images/hls/620c63d2d0ea7c7d841b2f38/playlist.m3u8
|
||||
52,https://10j99.cdnedge.live/file/avple-images/hls/62104c9a9d14d648884aa814/playlist.m3u8
|
||||
53,https://10j99.cdnedge.live/file/avple-images/hls/62104ef39d14d648884aa81b/playlist.m3u8
|
||||
54,https://10j99.cdnedge.live/file/avple-images/hls/6219e85eb9e8e9119a2f1fe4/playlist.m3u8
|
||||
55,https://10j99.cdnedge.live/file/avple-images/hls/6219eaf2b9e8e9119a2f1feb/playlist.m3u8
|
||||
56,https://10j99.cdnedge.live/file/avple-images/hls/6219eb6ab9e8e9119a2f1fec/playlist.m3u8
|
||||
57,https://10j99.cdnedge.live/file/avple-images/hls/6219ebe2b9e8e9119a2f1fee/playlist.m3u8
|
||||
58,https://10j99.cdnedge.live/file/avple-images/hls/621e12c60b43873ee3783be6/playlist.m3u8
|
||||
59,https://10j99.cdnedge.live/file/avple-images/hls/621e13b70b43873ee3783be8/playlist.m3u8
|
||||
60,https://10j99.cdnedge.live/file/avple-images/hls/621e14e20b43873ee3783bea/playlist.m3u8
|
||||
61,https://10j99.cdnedge.live/file/avple-images/hls/61f3922623581479b901ae14/playlist.m3u8
|
||||
62,https://10j99.cdnedge.live/file/avple-images/hls/621f6da6532bec088eaa2e8b/playlist.m3u8
|
||||
63,https://10j99.cdnedge.live/file/avple-images/hls/62247026c6370a74fa39c714/playlist.m3u8
|
||||
64,https://10j99.cdnedge.live/file/avple-images/hls/62266d37c4dfd90d53d40fbc/playlist.m3u8
|
||||
65,https://10j99.cdnedge.live/file/avple-images/hls/622b62d399043721e41f476e/playlist.m3u8
|
||||
66,https://10j99.cdnedge.live/file/avple-images/hls/622d48eae5f4997685910d17/playlist.m3u8
|
||||
68,https://10j99.cdnedge.live/file/avple-images/hls/622fc6e2e14ae771445e47fa/playlist.m3u8
|
||||
69,https://10j99.cdnedge.live/file/avple-images/hls/62323b028cc9324f49436131/playlist.m3u8
|
||||
70,https://10j99.cdnedge.live/file/avple-images/hls/6233c80aaefa78093f9ffdcf/playlist.m3u8
|
||||
71,https://10j99.cdnedge.live/file/avple-images/hls/623506caecafc64f34ef85bc/playlist.m3u8
|
||||
72,https://10j99.cdnedge.live/file/avple-images/hls/6236afb61222e41c629a9326/playlist.m3u8
|
||||
73,https://10j99.cdnedge.live/file/avple-images/hls/623822bb3f90d26204d0e675/playlist.m3u8
|
||||
74,https://10j99.cdnedge.live/file/avple-images/hls/6238258a3f90d26204d0e67d/playlist.m3u8
|
||||
75,https://10j99.cdnedge.live/file/avple-images/hls/6242c3af81f80f77774148d0/playlist.m3u8
|
||||
76,https://10j99.cdnedge.live/file/avple-images/hls/6242c49f32e7237a7bdd24b8/playlist.m3u8
|
||||
77,https://10j99.cdnedge.live/file/avple-images/hls/62492b62ac4583340eae9cc1/playlist.m3u8
|
||||
78,https://10j99.cdnedge.live/file/avple-images/hls/6249a0afeb0b5f202d561606/playlist.m3u8
|
||||
79,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d56160c/playlist.m3u8
|
||||
80,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561612/playlist.m3u8
|
||||
81,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561616/playlist.m3u8
|
||||
82,https://10j99.cdnedge.live/file/avple-images/hls/624bedd5528c292827c459d5/playlist.m3u8
|
||||
83,https://10j99.cdnedge.live/file/avple-images/hls/624d663c8d83843ab3a678c6/playlist.m3u8
|
||||
84,https://10j99.cdnedge.live/file/avple-images/hls/6250345df06f665330ec2bdb/playlist.m3u8
|
||||
85,https://10j99.cdnedge.live/file/avple-images/hls/62503512f06f665330ec2bdd/playlist.m3u8
|
||||
86,https://10j99.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957e/playlist.m3u8
|
||||
87,https://10j99.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbb/playlist.m3u8
|
||||
88,https://10j99.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbe/playlist.m3u8
|
||||
89,https://10j99.cdnedge.live/file/avple-images/hls/6256af80bd35195668774554/playlist.m3u8
|
||||
90,https://10j99.cdnedge.live/file/avple-images/hls/6256b124bd35195668774557/playlist.m3u8
|
||||
92,https://10j99.cdnedge.live/file/avple-images/hls/626a9b433d701068e96b4fdc/playlist.m3u8
|
||||
93,https://10j99.cdnedge.live/file/avple-images/hls/626bcd9920859323fc450d66/playlist.m3u8
|
||||
94,https://10j99.cdnedge.live/file/avple-images/hls/626fb78f3ddea14c11aa4ab0/playlist.m3u8
|
||||
95,https://10j99.cdnedge.live/file/avple-images/hls/6270a7893ddea14c11aa4ab5/playlist.m3u8
|
||||
96,https://10j99.cdnedge.live/file/avple-images/hls/627677203847697e5124b6da/playlist.m3u8
|
||||
97,https://10j99.cdnedge.live/file/avple-images/hls/627a30d336b3e104a6145865/playlist.m3u8
|
||||
98,https://10j99.cdnedge.live/file/avple-images/hls/627a40801a1d9a347dd98534/playlist.m3u8
|
||||
99,https://10j99.cdnedge.live/file/avple-images/hls/627a595a1a1d9a347dd9853c/playlist.m3u8
|
||||
100,https://10j99.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5a/playlist.m3u8
|
||||
101,https://10j99.cdnedge.live/file/avple-images/hls/6280b1cefc27be165aeb81d3/playlist.m3u8
|
||||
102,https://10j99.cdnedge.live/file/avple-images/hls/6280b245fc27be165aeb81d4/playlist.m3u8
|
||||
103,https://10j99.cdnedge.live/file/avple-images/hls/6280bd0bfc27be165aeb81de/playlist.m3u8
|
||||
104,https://10j99.cdnedge.live/file/avple-images/hls/6280da2fef039d5507989172/playlist.m3u8
|
||||
105,https://10j99.cdnedge.live/file/avple-images/hls/6284dfb7c71b08247ee18e2c/playlist.m3u8
|
||||
106,https://10j99.cdnedge.live/file/avple-images/hls/6284e030c71b08247ee18e2d/playlist.m3u8
|
||||
107,https://10j99.cdnedge.live/file/avple-images/hls/6284ea06c71b08247ee18e3a/playlist.m3u8
|
||||
108,https://10j99.cdnedge.live/file/avple-images/hls/6284ea43c71b08247ee18e3b/playlist.m3u8
|
||||
109,https://10j99.cdnedge.live/file/avple-images/hls/628637caebf92063abd2f8af/playlist.m3u8
|
||||
110,https://10j99.cdnedge.live/file/avple-images/hls/62863d69ebf92063abd2f8b0/playlist.m3u8
|
||||
111,https://10j99.cdnedge.live/file/avple-images/hls/62879794d28d4f134ac69047/playlist.m3u8
|
||||
112,https://10j99.cdnedge.live/file/avple-images/hls/628799b1d28d4f134ac6904c/playlist.m3u8
|
||||
113,https://10j99.cdnedge.live/file/avple-images/hls/62879b91d28d4f134ac69052/playlist.m3u8
|
||||
114,https://10j99.cdnedge.live/file/avple-images/hls/628a3b0aa1c1cd0b44683ef2/playlist.m3u8
|
||||
115,https://10j99.cdnedge.live/file/avple-images/hls/628aaf87a1c1cd0b44683ef3/playlist.m3u8
|
||||
116,https://10j99.cdnedge.live/file/avple-images/hls/628ab3fba1c1cd0b44683ef8/playlist.m3u8
|
||||
117,https://10j99.cdnedge.live/file/avple-images/hls/628ab923a1c1cd0b44683f00/playlist.m3u8
|
||||
118,https://10j99.cdnedge.live/file/avple-images/hls/628b5ed9478a7e4e23bce258/playlist.m3u8
|
||||
119,https://10j99.cdnedge.live/file/avple-images/hls/628f69da531f007e5ba30af4/playlist.m3u8
|
||||
120,https://10j99.cdnedge.live/file/avple-images/hls/628f7d10531f007e5ba30af5/playlist.m3u8
|
||||
121,https://10j99.cdnedge.live/file/avple-images/hls/628f8327531f007e5ba30afc/playlist.m3u8
|
||||
122,https://10j99.cdnedge.live/file/avple-images/hls/629218cc777f8769be5fdfa1/playlist.m3u8
|
||||
123,https://10j99.cdnedge.live/file/avple-images/hls/62924950777f8769be5fdfa9/playlist.m3u8
|
||||
124,https://10j99.cdnedge.live/file/avple-images/hls/6294dcd9180f8c65c7d908a7/playlist.m3u8
|
||||
125,https://10j99.cdnedge.live/file/avple-images/hls/62955c19180f8c65c7d908a9/playlist.m3u8
|
||||
126,https://10j99.cdnedge.live/file/avple-images/hls/62957a56180f8c65c7d908b4/playlist.m3u8
|
||||
127,https://10j99.cdnedge.live/file/avple-images/hls/62957b83180f8c65c7d908b6/playlist.m3u8
|
||||
128,https://10j99.cdnedge.live/file/avple-images/hls/6295806f180f8c65c7d908bb/playlist.m3u8
|
||||
129,https://10j99.cdnedge.live/file/avple-images/hls/62986a7523d5972db0bfc9a1/playlist.m3u8
|
||||
130,https://10j99.cdnedge.live/file/avple-images/hls/62986d8123d5972db0bfc9a6/playlist.m3u8
|
||||
131,https://10j99.cdnedge.live/file/avple-images/hls/6298bad914bfa15d01c0842d/playlist.m3u8
|
||||
132,https://10j99.cdnedge.live/file/avple-images/hls/62a2a82856220431fa6b0d8d/playlist.m3u8
|
||||
133,https://10j99.cdnedge.live/file/avple-images/hls/62aacddb21a7da2e6584bc83/playlist.m3u8
|
||||
134,https://10j99.cdnedge.live/file/avple-images/hls/62ac64491ea6384bb6ca9f88/playlist.m3u8
|
||||
135,https://10j99.cdnedge.live/file/avple-images/hls/62b1b45aeec8264ea0826f28/playlist.m3u8
|
||||
136,https://10j99.cdnedge.live/file/avple-images/hls/62b1b6eceec8264ea0826f2c/playlist.m3u8
|
||||
137,https://10j99.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b4f/playlist.m3u8
|
||||
138,https://10j99.cdnedge.live/file/avple-images/hls/62bb0a7aea3d425e0a93b791/playlist.m3u8
|
||||
139,https://10j99.cdnedge.live/file/avple-images/hls/62bbec72ea3d425e0a93b79c/playlist.m3u8
|
||||
140,https://10j99.cdnedge.live/file/avple-images/hls/62bbefb8ea3d425e0a93b7a3/playlist.m3u8
|
||||
141,https://10j99.cdnedge.live/file/avple-images/hls/62bbf06cea3d425e0a93b7a5/playlist.m3u8
|
||||
142,https://10j99.cdnedge.live/file/avple-images/hls/62bbf378ea3d425e0a93b7a8/playlist.m3u8
|
||||
143,https://10j99.cdnedge.live/file/avple-images/hls/62bd8879d0fa6a48496bbf5e/playlist.m3u8
|
||||
145,https://10j99.cdnedge.live/file/avple-images/hls/62c4444a366b240e3b67be37/playlist.m3u8
|
||||
146,https://10j99.cdnedge.live/file/avple-images/hls/62c44575366b240e3b67be3a/playlist.m3u8
|
||||
147,https://10j99.cdnedge.live/file/avple-images/hls/621e15960b43873ee3783beb/playlist.m3u8
|
||||
148,https://10j99.cdnedge.live/file/avple-images/hls/621e16860b43873ee3783bed/playlist.m3u8
|
||||
149,https://10j99.cdnedge.live/file/avple-images/hls/6256b1d8bd35195668774559/playlist.m3u8
|
||||
150,https://10j99.cdnedge.live/file/avple-images/hls/628f8239531f007e5ba30afb/playlist.m3u8
|
||||
|
||||
🔞传媒4,#genre#
|
||||
0,https://je40u.cdnedge.live/file/avple-images/hls/6193b9e61ab2cd467ae53597/playlist.m3u8
|
||||
1,https://je40u.cdnedge.live/file/avple-images/hls/619654b1647fa6021841bd4f/playlist.m3u8
|
||||
2,https://je40u.cdnedge.live/file/avple-images/hls/619655a1647fa6021841bd51/playlist.m3u8
|
||||
3,https://je40u.cdnedge.live/file/avple-images/hls/61994e2d4a94103a79bc9481/playlist.m3u8
|
||||
4,https://je40u.cdnedge.live/file/avple-images/hls/619c024af0d6ad68f95a08a9/playlist.m3u8
|
||||
5,https://je40u.cdnedge.live/file/avple-images/hls/619e9595364f6c1f6030fe55/playlist.m3u8
|
||||
6,https://je40u.cdnedge.live/file/avple-images/hls/61a285a1c4f43c7ba5009c21/playlist.m3u8
|
||||
7,https://je40u.cdnedge.live/file/avple-images/hls/61a28691c4f43c7ba5009c23/playlist.m3u8
|
||||
8,https://je40u.cdnedge.live/file/avple-images/hls/61a52379a992bd3d5c3eb618/playlist.m3u8
|
||||
9,https://je40u.cdnedge.live/file/avple-images/hls/61a67d2da04cdb55de21fe93/playlist.m3u8
|
||||
10,https://je40u.cdnedge.live/file/avple-images/hls/61a7d4c57aac5d7ef57bda23/playlist.m3u8
|
||||
11,https://je40u.cdnedge.live/file/avple-images/hls/61b1a1491b15f6408e9320e3/playlist.m3u8
|
||||
12,https://je40u.cdnedge.live/file/avple-images/hls/61b304210f991b6812b80303/playlist.m3u8
|
||||
13,https://je40u.cdnedge.live/file/avple-images/hls/61b46e79f91a1b0eecb6e531/playlist.m3u8
|
||||
14,https://je40u.cdnedge.live/file/avple-images/hls/61b97d650d486a09e8730583/playlist.m3u8
|
||||
15,https://je40u.cdnedge.live/file/avple-images/hls/61c026f1ad3e743fbb4f96ea/playlist.m3u8
|
||||
16,https://je40u.cdnedge.live/file/avple-images/hls/61c02985ad3e743fbb4f96ee/playlist.m3u8
|
||||
17,https://je40u.cdnedge.live/file/avple-images/hls/61c18a428ac9db578c18b7f2/playlist.m3u8
|
||||
18,https://je40u.cdnedge.live/file/avple-images/hls/61c2cf19768c0b6e65877054/playlist.m3u8
|
||||
19,https://je40u.cdnedge.live/file/avple-images/hls/61c6a689668fd93b4250a31d/playlist.m3u8
|
||||
20,https://je40u.cdnedge.live/file/avple-images/hls/61c9980d87883b68401d1b33/playlist.m3u8
|
||||
21,https://je40u.cdnedge.live/file/avple-images/hls/61cc3a95b192e6156087c942/playlist.m3u8
|
||||
22,https://je40u.cdnedge.live/file/avple-images/hls/61d0bfed8ec5397ce0e2cdde/playlist.m3u8
|
||||
23,https://je40u.cdnedge.live/file/avple-images/hls/61d0c5518ec5397ce0e2cde9/playlist.m3u8
|
||||
24,https://je40u.cdnedge.live/file/avple-images/hls/61d0c5c98ec5397ce0e2cdea/playlist.m3u8
|
||||
25,https://je40u.cdnedge.live/file/avple-images/hls/61d22f33fc53091229805816/playlist.m3u8
|
||||
26,https://je40u.cdnedge.live/file/avple-images/hls/61d62519f2772f49dcde1d4e/playlist.m3u8
|
||||
27,https://je40u.cdnedge.live/file/avple-images/hls/61d62735f2772f49dcde1d54/playlist.m3u8
|
||||
28,https://je40u.cdnedge.live/file/avple-images/hls/61d8f6fa188cab78b243b409/playlist.m3u8
|
||||
29,https://je40u.cdnedge.live/file/avple-images/hls/61db6cbd5fb6a835028c9aea/playlist.m3u8
|
||||
30,https://je40u.cdnedge.live/file/avple-images/hls/61de13b926bc6674a0936d1f/playlist.m3u8
|
||||
31,https://je40u.cdnedge.live/file/avple-images/hls/61de159926bc6674a0936d24/playlist.m3u8
|
||||
32,https://je40u.cdnedge.live/file/avple-images/hls/61e3bbedec201f6b0a3a89a5/playlist.m3u8
|
||||
33,https://je40u.cdnedge.live/file/avple-images/hls/61e927bbc6ba7653ff36282a/playlist.m3u8
|
||||
34,https://je40u.cdnedge.live/file/avple-images/hls/61ecc04a7580a3314beba2ad/playlist.m3u8
|
||||
35,https://je40u.cdnedge.live/file/avple-images/hls/61f70366d7d05308d12ef11f/playlist.m3u8
|
||||
36,https://je40u.cdnedge.live/file/avple-images/hls/61f9a8be9053272327957adb/playlist.m3u8
|
||||
37,https://je40u.cdnedge.live/file/avple-images/hls/61fb89ea11eff304d6e13798/playlist.m3u8
|
||||
38,https://je40u.cdnedge.live/file/avple-images/hls/61ff18ee99eb625f8e37e0ad/playlist.m3u8
|
||||
39,https://je40u.cdnedge.live/file/avple-images/hls/6206efa6c6e4cd6e597c7184/playlist.m3u8
|
||||
40,https://je40u.cdnedge.live/file/avple-images/hls/6215b72acef8321ac4bf99a5/playlist.m3u8
|
||||
41,https://je40u.cdnedge.live/file/avple-images/hls/6215b7a2cef8321ac4bf99a6/playlist.m3u8
|
||||
42,https://je40u.cdnedge.live/file/avple-images/hls/6219eab6b9e8e9119a2f1fea/playlist.m3u8
|
||||
43,https://je40u.cdnedge.live/file/avple-images/hls/62230e3e1fdb77263ccb3865/playlist.m3u8
|
||||
44,https://je40u.cdnedge.live/file/avple-images/hls/62230f2e1fdb77263ccb3867/playlist.m3u8
|
||||
45,https://je40u.cdnedge.live/file/avple-images/hls/6223101e1fdb77263ccb386a/playlist.m3u8
|
||||
46,https://je40u.cdnedge.live/file/avple-images/hls/62246e82c6370a74fa39c70f/playlist.m3u8
|
||||
47,https://je40u.cdnedge.live/file/avple-images/hls/6224736ec6370a74fa39c717/playlist.m3u8
|
||||
48,https://je40u.cdnedge.live/file/avple-images/hls/62266cfac4dfd90d53d40fbb/playlist.m3u8
|
||||
49,https://je40u.cdnedge.live/file/avple-images/hls/62266daec4dfd90d53d40fbd/playlist.m3u8
|
||||
50,https://je40u.cdnedge.live/file/avple-images/hls/62266f8ec4dfd90d53d40fc2/playlist.m3u8
|
||||
51,https://je40u.cdnedge.live/file/avple-images/hls/6233c8faaefa78093f9ffdd1/playlist.m3u8
|
||||
52,https://je40u.cdnedge.live/file/avple-images/hls/62350561ecafc64f34ef85b8/playlist.m3u8
|
||||
53,https://je40u.cdnedge.live/file/avple-images/hls/623aa3bea36ac22379912387/playlist.m3u8
|
||||
54,https://je40u.cdnedge.live/file/avple-images/hls/623e776e76b51e756d5edc02/playlist.m3u8
|
||||
55,https://je40u.cdnedge.live/file/avple-images/hls/623e789a76b51e756d5edc05/playlist.m3u8
|
||||
56,https://je40u.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c24/playlist.m3u8
|
||||
57,https://je40u.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c2a/playlist.m3u8
|
||||
58,https://je40u.cdnedge.live/file/avple-images/hls/6242c0df81f80f77774148cb/playlist.m3u8
|
||||
59,https://je40u.cdnedge.live/file/avple-images/hls/62492ae9ac4583340eae9cc0/playlist.m3u8
|
||||
60,https://je40u.cdnedge.live/file/avple-images/hls/624beec5528c292827c459d6/playlist.m3u8
|
||||
61,https://je40u.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbc/playlist.m3u8
|
||||
62,https://je40u.cdnedge.live/file/avple-images/hls/626bd3ec20859323fc450d6e/playlist.m3u8
|
||||
63,https://je40u.cdnedge.live/file/avple-images/hls/626bd8d820859323fc450d74/playlist.m3u8
|
||||
64,https://je40u.cdnedge.live/file/avple-images/hls/626fb5ac3ddea14c11aa4aae/playlist.m3u8
|
||||
65,https://je40u.cdnedge.live/file/avple-images/hls/626fb8b93ddea14c11aa4ab2/playlist.m3u8
|
||||
66,https://je40u.cdnedge.live/file/avple-images/hls/62722e804deadc023a8a0995/playlist.m3u8
|
||||
67,https://je40u.cdnedge.live/file/avple-images/hls/6274cf9d84b95e04c28dde2b/playlist.m3u8
|
||||
68,https://je40u.cdnedge.live/file/avple-images/hls/6274d2aa84b95e04c28dde2f/playlist.m3u8
|
||||
69,https://je40u.cdnedge.live/file/avple-images/hls/627676e63847697e5124b6d9/playlist.m3u8
|
||||
70,https://je40u.cdnedge.live/file/avple-images/hls/6276838a3847697e5124b6e3/playlist.m3u8
|
||||
71,https://je40u.cdnedge.live/file/avple-images/hls/627a564b1a1d9a347dd98537/playlist.m3u8
|
||||
72,https://je40u.cdnedge.live/file/avple-images/hls/6280b4d7fc27be165aeb81d7/playlist.m3u8
|
||||
73,https://je40u.cdnedge.live/file/avple-images/hls/6280b58dfc27be165aeb81d8/playlist.m3u8
|
||||
74,https://je40u.cdnedge.live/file/avple-images/hls/6280b821fc27be165aeb81da/playlist.m3u8
|
||||
75,https://je40u.cdnedge.live/file/avple-images/hls/6280d8b2ef039d5507989170/playlist.m3u8
|
||||
76,https://je40u.cdnedge.live/file/avple-images/hls/6280d9a2ef039d5507989171/playlist.m3u8
|
||||
78,https://je40u.cdnedge.live/file/avple-images/hls/6284e030c71b08247ee18e2d/playlist.m3u8
|
||||
79,https://je40u.cdnedge.live/file/avple-images/hls/6284e301c71b08247ee18e30/playlist.m3u8
|
||||
80,https://je40u.cdnedge.live/file/avple-images/hls/628637caebf92063abd2f8af/playlist.m3u8
|
||||
81,https://je40u.cdnedge.live/file/avple-images/hls/62879668d28d4f134ac69045/playlist.m3u8
|
||||
82,https://je40u.cdnedge.live/file/avple-images/hls/6287980bd28d4f134ac69048/playlist.m3u8
|
||||
83,https://je40u.cdnedge.live/file/avple-images/hls/628798c1d28d4f134ac69049/playlist.m3u8
|
||||
84,https://je40u.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac6904f/playlist.m3u8
|
||||
85,https://je40u.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac69050/playlist.m3u8
|
||||
86,https://je40u.cdnedge.live/file/avple-images/hls/6287b15cd28d4f134ac69053/playlist.m3u8
|
||||
87,https://je40u.cdnedge.live/file/avple-images/hls/628a3b0aa1c1cd0b44683ef2/playlist.m3u8
|
||||
88,https://je40u.cdnedge.live/file/avple-images/hls/628ab68ea1c1cd0b44683efb/playlist.m3u8
|
||||
89,https://je40u.cdnedge.live/file/avple-images/hls/628ab706a1c1cd0b44683efc/playlist.m3u8
|
||||
90,https://je40u.cdnedge.live/file/avple-images/hls/628cc5adde01360ccb2f8e9c/playlist.m3u8
|
||||
92,https://je40u.cdnedge.live/file/avple-images/hls/628f8183531f007e5ba30afa/playlist.m3u8
|
||||
93,https://je40u.cdnedge.live/file/avple-images/hls/628f8453531f007e5ba30afe/playlist.m3u8
|
||||
94,https://je40u.cdnedge.live/file/avple-images/hls/6290be2987412532ac7f4cfe/playlist.m3u8
|
||||
95,https://je40u.cdnedge.live/file/avple-images/hls/629215fc777f8769be5fdf9f/playlist.m3u8
|
||||
96,https://je40u.cdnedge.live/file/avple-images/hls/62924646777f8769be5fdfa3/playlist.m3u8
|
||||
97,https://je40u.cdnedge.live/file/avple-images/hls/629246f9777f8769be5fdfa5/playlist.m3u8
|
||||
98,https://je40u.cdnedge.live/file/avple-images/hls/62924770777f8769be5fdfa6/playlist.m3u8
|
||||
99,https://je40u.cdnedge.live/file/avple-images/hls/62957876180f8c65c7d908b1/playlist.m3u8
|
||||
100,https://je40u.cdnedge.live/file/avple-images/hls/62a1c9bf56220431fa6b0d81/playlist.m3u8
|
||||
101,https://je40u.cdnedge.live/file/avple-images/hls/62a1ca7556220431fa6b0d82/playlist.m3u8
|
||||
102,https://je40u.cdnedge.live/file/avple-images/hls/62a58dbd94b044303b9622d0/playlist.m3u8
|
||||
103,https://je40u.cdnedge.live/file/avple-images/hls/62a5ace294b044303b9622dc/playlist.m3u8
|
||||
104,https://je40u.cdnedge.live/file/avple-images/hls/62a5b24894b044303b9622e1/playlist.m3u8
|
||||
105,https://je40u.cdnedge.live/file/avple-images/hls/62aaca9721a7da2e6584bc7f/playlist.m3u8
|
||||
106,https://je40u.cdnedge.live/file/avple-images/hls/62aace5621a7da2e6584bc84/playlist.m3u8
|
||||
107,https://je40u.cdnedge.live/file/avple-images/hls/62ac67c91ea6384bb6ca9f8d/playlist.m3u8
|
||||
108,https://je40u.cdnedge.live/file/avple-images/hls/62bbef03ea3d425e0a93b7a1/playlist.m3u8
|
||||
109,https://je40u.cdnedge.live/file/avple-images/hls/62bbf02fea3d425e0a93b7a4/playlist.m3u8
|
||||
110,https://je40u.cdnedge.live/file/avple-images/hls/62bbf592ea3d425e0a93b7ad/playlist.m3u8
|
||||
111,https://je40u.cdnedge.live/file/avple-images/hls/62bd84f5d0fa6a48496bbf59/playlist.m3u8
|
||||
112,https://je40u.cdnedge.live/file/avple-images/hls/62bd88b4d0fa6a48496bbf5f/playlist.m3u8
|
||||
113,https://je40u.cdnedge.live/file/avple-images/hls/62c43af1366b240e3b67be29/playlist.m3u8
|
||||
114,https://je40u.cdnedge.live/file/avple-images/hls/62c4426c366b240e3b67be34/playlist.m3u8
|
||||
114,https://je40u.cdnedge.live/file/avple-images/hls/61703eedbc5c965ae4f56247/playlist.m3u8
|
||||
115,https://je40u.cdnedge.live/file/avple-images/hls/6171a891f8003d17dfd1a737/playlist.m3u8
|
||||
116,https://je40u.cdnedge.live/file/avple-images/hls/6173085d16713849c8fc4703/playlist.m3u8
|
||||
117,https://je40u.cdnedge.live/file/avple-images/hls/61771a65ad20e84f6e46a0a5/playlist.m3u8
|
||||
118,https://je40u.cdnedge.live/file/avple-images/hls/617789ac4835757d4271a1ec/playlist.m3u8
|
||||
119,https://je40u.cdnedge.live/file/avple-images/hls/617c4e1df0db60036839e947/playlist.m3u8
|
||||
120,https://je40u.cdnedge.live/file/avple-images/hls/617c50edf0db60036839e94d/playlist.m3u8
|
||||
121,https://je40u.cdnedge.live/file/avple-images/hls/617e2716eb87aa24a1c4102c/playlist.m3u8
|
||||
122,https://je40u.cdnedge.live/file/avple-images/hls/61806fda4d383b66797a697b/playlist.m3u8
|
||||
123,https://je40u.cdnedge.live/file/avple-images/hls/6183354d86d3713512d4ddae/playlist.m3u8
|
||||
124,https://je40u.cdnedge.live/file/avple-images/hls/618463a6fddb3b0ce1f32687/playlist.m3u8
|
||||
125,https://je40u.cdnedge.live/file/avple-images/hls/6186261e26bdd144b598cbd6/playlist.m3u8
|
||||
126,https://je40u.cdnedge.live/file/avple-images/hls/6186274926bdd144b598cbd9/playlist.m3u8
|
||||
127,https://je40u.cdnedge.live/file/avple-images/hls/61869e1d8928100853d28995/playlist.m3u8
|
||||
128,https://je40u.cdnedge.live/file/avple-images/hls/618b991e52fe307992e9158f/playlist.m3u8
|
||||
129,https://je40u.cdnedge.live/file/avple-images/hls/618e6959f061a16282b2ee9a/playlist.m3u8
|
||||
130,https://je40u.cdnedge.live/file/avple-images/hls/6190bac93e002b78fa02b873/playlist.m3u8
|
||||
131,https://je40u.cdnedge.live/file/avple-images/hls/61de143126bc6674a0936d20/playlist.m3u8
|
||||
132,https://je40u.cdnedge.live/file/avple-images/hls/624eec006d742407ed435446/playlist.m3u8
|
||||
133,https://je40u.cdnedge.live/file/avple-images/hls/628cd91fde01360ccb2f8e9f/playlist.m3u8
|
||||
|
||||
🔞传媒5,#genre#
|
||||
0,https://q2cyl7.cdnedge.live/file/avple-images/hls/61846201fddb3b0ce1f32683/playlist.m3u8
|
||||
1,https://q2cyl7.cdnedge.live/file/avple-images/hls/618624b526bdd144b598cbd3/playlist.m3u8
|
||||
2,https://q2cyl7.cdnedge.live/file/avple-images/hls/61869c018928100853d28991/playlist.m3u8
|
||||
3,https://q2cyl7.cdnedge.live/file/avple-images/hls/61892bc935829357ea3d3e99/playlist.m3u8
|
||||
4,https://q2cyl7.cdnedge.live/file/avple-images/hls/618b999552fe307992e91590/playlist.m3u8
|
||||
5,https://q2cyl7.cdnedge.live/file/avple-images/hls/6190b9613e002b78fa02b870/playlist.m3u8
|
||||
6,https://q2cyl7.cdnedge.live/file/avple-images/hls/61924e2689e9d231c0a0b0e7/playlist.m3u8
|
||||
7,https://q2cyl7.cdnedge.live/file/avple-images/hls/6192bae589e9d231c0a0b0e8/playlist.m3u8
|
||||
8,https://q2cyl7.cdnedge.live/file/avple-images/hls/619a42298a9163545f3c8174/playlist.m3u8
|
||||
9,https://q2cyl7.cdnedge.live/file/avple-images/hls/619c0286f0d6ad68f95a08aa/playlist.m3u8
|
||||
10,https://q2cyl7.cdnedge.live/file/avple-images/hls/619d547d44b3af0456c438a7/playlist.m3u8
|
||||
11,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a287f9c4f43c7ba5009c26/playlist.m3u8
|
||||
12,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a5251da992bd3d5c3eb61a/playlist.m3u8
|
||||
13,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a940490791fe25b65cea17/playlist.m3u8
|
||||
14,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a940c10791fe25b65cea18/playlist.m3u8
|
||||
15,https://q2cyl7.cdnedge.live/file/avple-images/hls/61accd46779a324ef83699bd/playlist.m3u8
|
||||
16,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b051aacb1e9c2565068be6/playlist.m3u8
|
||||
17,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b46f69f91a1b0eecb6e533/playlist.m3u8
|
||||
19,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b6cd091458462c26eadc8c/playlist.m3u8
|
||||
20,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b8183597618e5cc644ad45/playlist.m3u8
|
||||
21,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bc3cfe942b586818e33e80/playlist.m3u8
|
||||
22,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bc3d3a942b586818e33e81/playlist.m3u8
|
||||
23,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bd94958cc57113d4874845/playlist.m3u8
|
||||
24,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c6aef9668fd93b4250a32b/playlist.m3u8
|
||||
25,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c848a92beaee4e833a9d6a/playlist.m3u8
|
||||
26,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c849212beaee4e833a9d6b/playlist.m3u8
|
||||
27,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c998c287883b68401d1b35/playlist.m3u8
|
||||
28,https://q2cyl7.cdnedge.live/file/avple-images/hls/61cacf4db4a41e7b51c24d4e/playlist.m3u8
|
||||
29,https://q2cyl7.cdnedge.live/file/avple-images/hls/61cc39e1b192e6156087c940/playlist.m3u8
|
||||
30,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ce129db418404e15c81307/playlist.m3u8
|
||||
31,https://q2cyl7.cdnedge.live/file/avple-images/hls/61d624a1f2772f49dcde1d4d/playlist.m3u8
|
||||
32,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e24c319e31551b4fa3beb1/playlist.m3u8
|
||||
33,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e3bc66ec201f6b0a3a89a6/playlist.m3u8
|
||||
34,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927adc6ba7653ff362821/playlist.m3u8
|
||||
35,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927b5c6ba7653ff362826/playlist.m3u8
|
||||
36,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927b8c6ba7653ff362828/playlist.m3u8
|
||||
37,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927bec6ba7653ff36282c/playlist.m3u8
|
||||
38,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ea6977dabdc15a14562f7c/playlist.m3u8
|
||||
39,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ecbd32b900ea3153ca96f0/playlist.m3u8
|
||||
40,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ecbe6a7580a3314beba2a9/playlist.m3u8
|
||||
41,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ee46864e82d1622de7f24c/playlist.m3u8
|
||||
42,https://q2cyl7.cdnedge.live/file/avple-images/hls/61efa21b5d579208810784f8/playlist.m3u8
|
||||
43,https://q2cyl7.cdnedge.live/file/avple-images/hls/61f9a8479053272327957ada/playlist.m3u8
|
||||
44,https://q2cyl7.cdnedge.live/file/avple-images/hls/61fb8a9e11eff304d6e1379a/playlist.m3u8
|
||||
45,https://q2cyl7.cdnedge.live/file/avple-images/hls/61fb8c0611eff304d6e1379e/playlist.m3u8
|
||||
46,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ff17ff99eb625f8e37e0ab/playlist.m3u8
|
||||
47,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ff192a99eb625f8e37e0ae/playlist.m3u8
|
||||
48,https://q2cyl7.cdnedge.live/file/avple-images/hls/62059e64d69d37216eb636d7/playlist.m3u8
|
||||
49,https://q2cyl7.cdnedge.live/file/avple-images/hls/6205a006d69d37216eb636db/playlist.m3u8
|
||||
50,https://q2cyl7.cdnedge.live/file/avple-images/hls/620b87fcd0ea7c7d841b2f32/playlist.m3u8
|
||||
51,https://q2cyl7.cdnedge.live/file/avple-images/hls/62104e029d14d648884aa818/playlist.m3u8
|
||||
52,https://q2cyl7.cdnedge.live/file/avple-images/hls/62104e7c9d14d648884aa819/playlist.m3u8
|
||||
53,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215abafcef8321ac4bf999e/playlist.m3u8
|
||||
54,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215b63acef8321ac4bf99a2/playlist.m3u8
|
||||
55,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215b892cef8321ac4bf99a8/playlist.m3u8
|
||||
56,https://q2cyl7.cdnedge.live/file/avple-images/hls/6219e98ab9e8e9119a2f1fe7/playlist.m3u8
|
||||
57,https://q2cyl7.cdnedge.live/file/avple-images/hls/6219ea7ab9e8e9119a2f1fe9/playlist.m3u8
|
||||
58,https://q2cyl7.cdnedge.live/file/avple-images/hls/622d47bee5f4997685910d14/playlist.m3u8
|
||||
59,https://q2cyl7.cdnedge.live/file/avple-images/hls/62323bb68cc9324f49436133/playlist.m3u8
|
||||
60,https://q2cyl7.cdnedge.live/file/avple-images/hls/6233ca63aefa78093f9ffdd4/playlist.m3u8
|
||||
61,https://q2cyl7.cdnedge.live/file/avple-images/hls/6236ae8a1222e41c629a9323/playlist.m3u8
|
||||
62,https://q2cyl7.cdnedge.live/file/avple-images/hls/6236b06a1222e41c629a9328/playlist.m3u8
|
||||
63,https://q2cyl7.cdnedge.live/file/avple-images/hls/6239262ea14fb341a31f13dc/playlist.m3u8
|
||||
64,https://q2cyl7.cdnedge.live/file/avple-images/hls/623aa292a36ac22379912384/playlist.m3u8
|
||||
65,https://q2cyl7.cdnedge.live/file/avple-images/hls/623aa436a36ac22379912388/playlist.m3u8
|
||||
66,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e76bb76b51e756d5edc00/playlist.m3u8
|
||||
67,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e785e76b51e756d5edc04/playlist.m3u8
|
||||
68,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e78d776b51e756d5edc06/playlist.m3u8
|
||||
69,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e7c1e76b51e756d5edc08/playlist.m3u8
|
||||
70,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c23/playlist.m3u8
|
||||
71,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c27/playlist.m3u8
|
||||
72,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c28/playlist.m3u8
|
||||
73,https://q2cyl7.cdnedge.live/file/avple-images/hls/6242c580f371357b01d05a0d/playlist.m3u8
|
||||
74,https://q2cyl7.cdnedge.live/file/avple-images/hls/62493f0fcb995938b9053405/playlist.m3u8
|
||||
75,https://q2cyl7.cdnedge.live/file/avple-images/hls/624eeb896d742407ed435445/playlist.m3u8
|
||||
76,https://q2cyl7.cdnedge.live/file/avple-images/hls/6251892fb9fdae53fd99956c/playlist.m3u8
|
||||
77,https://q2cyl7.cdnedge.live/file/avple-images/hls/62518930b9fdae53fd99956e/playlist.m3u8
|
||||
78,https://q2cyl7.cdnedge.live/file/avple-images/hls/6251973bb9fdae53fd999571/playlist.m3u8
|
||||
79,https://q2cyl7.cdnedge.live/file/avple-images/hls/6252c0c06b426e5b63529745/playlist.m3u8
|
||||
80,https://q2cyl7.cdnedge.live/file/avple-images/hls/625497f53d5bac30b2603dc1/playlist.m3u8
|
||||
81,https://q2cyl7.cdnedge.live/file/avple-images/hls/62555b368fabfe03b7ab4be5/playlist.m3u8
|
||||
82,https://q2cyl7.cdnedge.live/file/avple-images/hls/6256b304bd3519566877455c/playlist.m3u8
|
||||
83,https://q2cyl7.cdnedge.live/file/avple-images/hls/626bd15b20859323fc450d6a/playlist.m3u8
|
||||
84,https://q2cyl7.cdnedge.live/file/avple-images/hls/6272341e4deadc023a8a0998/playlist.m3u8
|
||||
85,https://q2cyl7.cdnedge.live/file/avple-images/hls/6272350d4deadc023a8a0999/playlist.m3u8
|
||||
86,https://q2cyl7.cdnedge.live/file/avple-images/hls/6274cccf84b95e04c28dde29/playlist.m3u8
|
||||
87,https://q2cyl7.cdnedge.live/file/avple-images/hls/6274d1b984b95e04c28dde2d/playlist.m3u8
|
||||
88,https://q2cyl7.cdnedge.live/file/avple-images/hls/627a41341a1d9a347dd98536/playlist.m3u8
|
||||
89,https://q2cyl7.cdnedge.live/file/avple-images/hls/627a59cf1a1d9a347dd9853d/playlist.m3u8
|
||||
90,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280b7a8fc27be165aeb81d9/playlist.m3u8
|
||||
92,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280d3c6ef039d550798916d/playlist.m3u8
|
||||
93,https://q2cyl7.cdnedge.live/file/avple-images/hls/62837472ef2c1c6dbc484240/playlist.m3u8
|
||||
94,https://q2cyl7.cdnedge.live/file/avple-images/hls/6284e42bc71b08247ee18e32/playlist.m3u8
|
||||
95,https://q2cyl7.cdnedge.live/file/avple-images/hls/6284e7b1c71b08247ee18e38/playlist.m3u8
|
||||
96,https://q2cyl7.cdnedge.live/file/avple-images/hls/62879a28d28d4f134ac6904d/playlist.m3u8
|
||||
97,https://q2cyl7.cdnedge.live/file/avple-images/hls/628aafc4a1c1cd0b44683ef4/playlist.m3u8
|
||||
98,https://q2cyl7.cdnedge.live/file/avple-images/hls/628ab167a1c1cd0b44683ef6/playlist.m3u8
|
||||
99,https://q2cyl7.cdnedge.live/file/avple-images/hls/628cad88de01360ccb2f8e97/playlist.m3u8
|
||||
100,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f69da531f007e5ba30af4/playlist.m3u8
|
||||
101,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f8327531f007e5ba30afc/playlist.m3u8
|
||||
102,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f83a3531f007e5ba30afd/playlist.m3u8
|
||||
103,https://q2cyl7.cdnedge.live/file/avple-images/hls/6292197f777f8769be5fdfa2/playlist.m3u8
|
||||
104,https://q2cyl7.cdnedge.live/file/avple-images/hls/629574b7180f8c65c7d908aa/playlist.m3u8
|
||||
105,https://q2cyl7.cdnedge.live/file/avple-images/hls/62957968180f8c65c7d908b3/playlist.m3u8
|
||||
106,https://q2cyl7.cdnedge.live/file/avple-images/hls/62957fbb180f8c65c7d908ba/playlist.m3u8
|
||||
107,https://q2cyl7.cdnedge.live/file/avple-images/hls/62986d4223d5972db0bfc9a5/playlist.m3u8
|
||||
108,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f652a1b03d86e173f7d3c/playlist.m3u8
|
||||
109,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f652a1b03d86e173f7d3d/playlist.m3u8
|
||||
110,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a1c7a456220431fa6b0d7e/playlist.m3u8
|
||||
111,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a2a68556220431fa6b0d8a/playlist.m3u8
|
||||
112,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a5a65594b044303b9622d3/playlist.m3u8
|
||||
113,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a9bc9d21a7da2e6584bc7e/playlist.m3u8
|
||||
114,https://q2cyl7.cdnedge.live/file/avple-images/hls/62aacf8121a7da2e6584bc86/playlist.m3u8
|
||||
115,https://q2cyl7.cdnedge.live/file/avple-images/hls/62aecff5c556631aff1378f0/playlist.m3u8
|
||||
116,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b2dbadeec8264ea0826f2f/playlist.m3u8
|
||||
117,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b2dd89eec8264ea0826f31/playlist.m3u8
|
||||
118,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b4e/playlist.m3u8
|
||||
119,https://q2cyl7.cdnedge.live/file/avple-images/hls/62bd8710d0fa6a48496bbf5b/playlist.m3u8
|
||||
120,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c047ca8a72962dc53aa5a0/playlist.m3u8
|
||||
121,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c44231366b240e3b67be33/playlist.m3u8
|
||||
122,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280bc92fc27be165aeb81dd/playlist.m3u8
|
||||
123,https://q2cyl7.cdnedge.live/file/avple-images/hls/6235059eecafc64f34ef85b9/playlist.m3u8
|
||||
124,https://q2cyl7.cdnedge.live/file/avple-images/hls/61d0c2f98ec5397ce0e2cde5/playlist.m3u8
|
||||
125,https://q2cyl7.cdnedge.live/file/avple-images/hls/61771c09ad20e84f6e46a0a8/playlist.m3u8
|
||||
126,https://q2cyl7.cdnedge.live/file/avple-images/hls/617a033d933dae5425d49b8c/playlist.m3u8
|
||||
127,https://q2cyl7.cdnedge.live/file/avple-images/hls/617a04a5933dae5425d49b8f/playlist.m3u8
|
||||
128,https://q2cyl7.cdnedge.live/file/avple-images/hls/617c4ffdf0db60036839e94b/playlist.m3u8
|
||||
129,https://q2cyl7.cdnedge.live/file/avple-images/hls/617c5219f0db60036839e950/playlist.m3u8
|
||||
130,https://q2cyl7.cdnedge.live/file/avple-images/hls/61806f254d383b66797a697a/playlist.m3u8
|
||||
|
||||
🔞传媒6,#genre#
|
||||
0,https://zo392.cdnedge.live/file/avple-images/hls/61892cf535829357ea3d3e9c/playlist.m3u8
|
||||
1,https://zo392.cdnedge.live/file/avple-images/hls/618d1a6d608a75437203bdff/playlist.m3u8
|
||||
2,https://zo392.cdnedge.live/file/avple-images/hls/618d1e30608a75437203be02/playlist.m3u8
|
||||
3,https://zo392.cdnedge.live/file/avple-images/hls/6190ba513e002b78fa02b872/playlist.m3u8
|
||||
4,https://zo392.cdnedge.live/file/avple-images/hls/61924dad89e9d231c0a0b0e6/playlist.m3u8
|
||||
5,https://zo392.cdnedge.live/file/avple-images/hls/6193bcf11ab2cd467ae5359d/playlist.m3u8
|
||||
6,https://zo392.cdnedge.live/file/avple-images/hls/6197abd1f1d93a199d1cf176/playlist.m3u8
|
||||
7,https://zo392.cdnedge.live/file/avple-images/hls/619c01d1f0d6ad68f95a08a8/playlist.m3u8
|
||||
8,https://zo392.cdnedge.live/file/avple-images/hls/61a287bec4f43c7ba5009c25/playlist.m3u8
|
||||
9,https://zo392.cdnedge.live/file/avple-images/hls/61accd33779a324ef83699a3/playlist.m3u8
|
||||
10,https://zo392.cdnedge.live/file/avple-images/hls/61accd37779a324ef83699a7/playlist.m3u8
|
||||
11,https://zo392.cdnedge.live/file/avple-images/hls/61accd3b779a324ef83699ae/playlist.m3u8
|
||||
12,https://zo392.cdnedge.live/file/avple-images/hls/61b46e3ef91a1b0eecb6e530/playlist.m3u8
|
||||
13,https://zo392.cdnedge.live/file/avple-images/hls/61bad2a5d56b7626e975d4eb/playlist.m3u8
|
||||
14,https://zo392.cdnedge.live/file/avple-images/hls/61c0290dad3e743fbb4f96ed/playlist.m3u8
|
||||
15,https://zo392.cdnedge.live/file/avple-images/hls/61c029c1ad3e743fbb4f96ef/playlist.m3u8
|
||||
17,https://zo392.cdnedge.live/file/avple-images/hls/61c6a599668fd93b4250a31b/playlist.m3u8
|
||||
18,https://zo392.cdnedge.live/file/avple-images/hls/61c6abed668fd93b4250a327/playlist.m3u8
|
||||
19,https://zo392.cdnedge.live/file/avple-images/hls/61c84a892beaee4e833a9d6e/playlist.m3u8
|
||||
20,https://zo392.cdnedge.live/file/avple-images/hls/61d0befd8ec5397ce0e2cddd/playlist.m3u8
|
||||
21,https://zo392.cdnedge.live/file/avple-images/hls/61d62681f2772f49dcde1d52/playlist.m3u8
|
||||
22,https://zo392.cdnedge.live/file/avple-images/hls/61d627e9f2772f49dcde1d56/playlist.m3u8
|
||||
23,https://zo392.cdnedge.live/file/avple-images/hls/61de125126bc6674a0936d1e/playlist.m3u8
|
||||
24,https://zo392.cdnedge.live/file/avple-images/hls/61de146d26bc6674a0936d21/playlist.m3u8
|
||||
25,https://zo392.cdnedge.live/file/avple-images/hls/61e118b2b12f2d3579c3423b/playlist.m3u8
|
||||
26,https://zo392.cdnedge.live/file/avple-images/hls/61e11965b12f2d3579c3423d/playlist.m3u8
|
||||
27,https://zo392.cdnedge.live/file/avple-images/hls/61e249259e31551b4fa3beab/playlist.m3u8
|
||||
28,https://zo392.cdnedge.live/file/avple-images/hls/61e24a8d9e31551b4fa3beae/playlist.m3u8
|
||||
29,https://zo392.cdnedge.live/file/avple-images/hls/61ecbee27580a3314beba2aa/playlist.m3u8
|
||||
30,https://zo392.cdnedge.live/file/avple-images/hls/61f391ea23581479b901ae13/playlist.m3u8
|
||||
31,https://zo392.cdnedge.live/file/avple-images/hls/61f9a7569053272327957ad7/playlist.m3u8
|
||||
32,https://zo392.cdnedge.live/file/avple-images/hls/61fb88be11eff304d6e13795/playlist.m3u8
|
||||
33,https://zo392.cdnedge.live/file/avple-images/hls/61fb8b1711eff304d6e1379c/playlist.m3u8
|
||||
34,https://zo392.cdnedge.live/file/avple-images/hls/61fd8e7ac68d7d11e015cd89/playlist.m3u8
|
||||
35,https://zo392.cdnedge.live/file/avple-images/hls/6205a34fd69d37216eb636dc/playlist.m3u8
|
||||
36,https://zo392.cdnedge.live/file/avple-images/hls/620c6576d0ea7c7d841b2f3a/playlist.m3u8
|
||||
37,https://zo392.cdnedge.live/file/avple-images/hls/6211ae3ab0d135228b7be61a/playlist.m3u8
|
||||
38,https://zo392.cdnedge.live/file/avple-images/hls/6215ac26cef8321ac4bf999f/playlist.m3u8
|
||||
39,https://zo392.cdnedge.live/file/avple-images/hls/6219eba7b9e8e9119a2f1fed/playlist.m3u8
|
||||
40,https://zo392.cdnedge.live/file/avple-images/hls/621e189a833cfd3eefe736a3/playlist.m3u8
|
||||
41,https://zo392.cdnedge.live/file/avple-images/hls/621e1c620b43873ee3783bf4/playlist.m3u8
|
||||
42,https://zo392.cdnedge.live/file/avple-images/hls/62230eb61fdb77263ccb3866/playlist.m3u8
|
||||
43,https://zo392.cdnedge.live/file/avple-images/hls/62230f6b1fdb77263ccb3868/playlist.m3u8
|
||||
44,https://zo392.cdnedge.live/file/avple-images/hls/62246d56c6370a74fa39c70c/playlist.m3u8
|
||||
45,https://zo392.cdnedge.live/file/avple-images/hls/62246e0ac6370a74fa39c70e/playlist.m3u8
|
||||
46,https://zo392.cdnedge.live/file/avple-images/hls/6224709ec6370a74fa39c715/playlist.m3u8
|
||||
47,https://zo392.cdnedge.live/file/avple-images/hls/62323c6a8cc9324f49436135/playlist.m3u8
|
||||
48,https://zo392.cdnedge.live/file/avple-images/hls/6233c882aefa78093f9ffdd0/playlist.m3u8
|
||||
49,https://zo392.cdnedge.live/file/avple-images/hls/623e746276b51e756d5edbfb/playlist.m3u8
|
||||
50,https://zo392.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c26/playlist.m3u8
|
||||
51,https://zo392.cdnedge.live/file/avple-images/hls/6242c7d80de0ad7cfd08f0bb/playlist.m3u8
|
||||
52,https://zo392.cdnedge.live/file/avple-images/hls/62458ff075952a3335b0c45b/playlist.m3u8
|
||||
53,https://zo392.cdnedge.live/file/avple-images/hls/6246e3c7abd4e014b3b11182/playlist.m3u8
|
||||
54,https://zo392.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb8/playlist.m3u8
|
||||
55,https://zo392.cdnedge.live/file/avple-images/hls/62503589f06f665330ec2bde/playlist.m3u8
|
||||
56,https://zo392.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957b/playlist.m3u8
|
||||
57,https://zo392.cdnedge.live/file/avple-images/hls/6252c0bf6b426e5b63529741/playlist.m3u8
|
||||
58,https://zo392.cdnedge.live/file/avple-images/hls/6252c0c06b426e5b63529746/playlist.m3u8
|
||||
59,https://zo392.cdnedge.live/file/avple-images/hls/62549ca33d5bac30b2603dc7/playlist.m3u8
|
||||
60,https://zo392.cdnedge.live/file/avple-images/hls/6256b0aebd35195668774556/playlist.m3u8
|
||||
61,https://zo392.cdnedge.live/file/avple-images/hls/626bd19420859323fc450d6b/playlist.m3u8
|
||||
62,https://zo392.cdnedge.live/file/avple-images/hls/626bd77020859323fc450d72/playlist.m3u8
|
||||
63,https://zo392.cdnedge.live/file/avple-images/hls/626f6f5a83c16c1b72ef8406/playlist.m3u8
|
||||
64,https://zo392.cdnedge.live/file/avple-images/hls/626fb3183ddea14c11aa4aaa/playlist.m3u8
|
||||
65,https://zo392.cdnedge.live/file/avple-images/hls/62722a464deadc023a8a0991/playlist.m3u8
|
||||
66,https://zo392.cdnedge.live/file/avple-images/hls/62722b334deadc023a8a0993/playlist.m3u8
|
||||
67,https://zo392.cdnedge.live/file/avple-images/hls/6274cead84b95e04c28dde2a/playlist.m3u8
|
||||
68,https://zo392.cdnedge.live/file/avple-images/hls/6274d05184b95e04c28dde2c/playlist.m3u8
|
||||
69,https://zo392.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1f/playlist.m3u8
|
||||
70,https://zo392.cdnedge.live/file/avple-images/hls/627a5ac11a1d9a347dd98540/playlist.m3u8
|
||||
71,https://zo392.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5b/playlist.m3u8
|
||||
72,https://zo392.cdnedge.live/file/avple-images/hls/627e6499c60346652e396c7d/playlist.m3u8
|
||||
73,https://zo392.cdnedge.live/file/avple-images/hls/627e6603c60346652e396c7e/playlist.m3u8
|
||||
74,https://zo392.cdnedge.live/file/avple-images/hls/6280b154fc27be165aeb81d2/playlist.m3u8
|
||||
75,https://zo392.cdnedge.live/file/avple-images/hls/6280b245fc27be165aeb81d4/playlist.m3u8
|
||||
76,https://zo392.cdnedge.live/file/avple-images/hls/6280d3c6ef039d550798916d/playlist.m3u8
|
||||
77,https://zo392.cdnedge.live/file/avple-images/hls/6284c1baef2c1c6dbc484243/playlist.m3u8
|
||||
78,https://zo392.cdnedge.live/file/avple-images/hls/6284e210c71b08247ee18e2e/playlist.m3u8
|
||||
79,https://zo392.cdnedge.live/file/avple-images/hls/6284e593c71b08247ee18e34/playlist.m3u8
|
||||
80,https://zo392.cdnedge.live/file/avple-images/hls/6284e5d0c71b08247ee18e35/playlist.m3u8
|
||||
81,https://zo392.cdnedge.live/file/avple-images/hls/6284e648c71b08247ee18e36/playlist.m3u8
|
||||
82,https://zo392.cdnedge.live/file/avple-images/hls/6284e827c71b08247ee18e39/playlist.m3u8
|
||||
83,https://zo392.cdnedge.live/file/avple-images/hls/62863d69ebf92063abd2f8b0/playlist.m3u8
|
||||
84,https://zo392.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac69050/playlist.m3u8
|
||||
85,https://zo392.cdnedge.live/file/avple-images/hls/628aaf87a1c1cd0b44683ef3/playlist.m3u8
|
||||
86,https://zo392.cdnedge.live/file/avple-images/hls/628ab384a1c1cd0b44683ef7/playlist.m3u8
|
||||
87,https://zo392.cdnedge.live/file/avple-images/hls/628cc4f6de01360ccb2f8e9a/playlist.m3u8
|
||||
88,https://zo392.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
89,https://zo392.cdnedge.live/file/avple-images/hls/62921765777f8769be5fdfa0/playlist.m3u8
|
||||
90,https://zo392.cdnedge.live/file/avple-images/hls/629246bc777f8769be5fdfa4/playlist.m3u8
|
||||
92,https://zo392.cdnedge.live/file/avple-images/hls/62a1cb2956220431fa6b0d83/playlist.m3u8
|
||||
93,https://zo392.cdnedge.live/file/avple-images/hls/62a1cbdf56220431fa6b0d84/playlist.m3u8
|
||||
94,https://zo392.cdnedge.live/file/avple-images/hls/62a5aa8d94b044303b9622d9/playlist.m3u8
|
||||
95,https://zo392.cdnedge.live/file/avple-images/hls/62a5aefe94b044303b9622de/playlist.m3u8
|
||||
96,https://zo392.cdnedge.live/file/avple-images/hls/62a5b37294b044303b9622e2/playlist.m3u8
|
||||
97,https://zo392.cdnedge.live/file/avple-images/hls/62aad51f21a7da2e6584bc8d/playlist.m3u8
|
||||
98,https://zo392.cdnedge.live/file/avple-images/hls/62aed19cc556631aff1378f3/playlist.m3u8
|
||||
99,https://zo392.cdnedge.live/file/avple-images/hls/62bb1bd1ea3d425e0a93b795/playlist.m3u8
|
||||
101,https://zo392.cdnedge.live/file/avple-images/hls/62bbee50ea3d425e0a93b79f/playlist.m3u8
|
||||
102,https://zo392.cdnedge.live/file/avple-images/hls/62bbeec8ea3d425e0a93b7a0/playlist.m3u8
|
||||
103,https://zo392.cdnedge.live/file/avple-images/hls/62bbef7cea3d425e0a93b7a2/playlist.m3u8
|
||||
104,https://zo392.cdnedge.live/file/avple-images/hls/62bbf33aea3d425e0a93b7a7/playlist.m3u8
|
||||
105,https://zo392.cdnedge.live/file/avple-images/hls/62bbf556ea3d425e0a93b7ac/playlist.m3u8
|
||||
106,https://zo392.cdnedge.live/file/avple-images/hls/62bd88f0d0fa6a48496bbf60/playlist.m3u8
|
||||
107,https://zo392.cdnedge.live/file/avple-images/hls/62c44398366b240e3b67be36/playlist.m3u8
|
||||
108,https://zo392.cdnedge.live/file/avple-images/hls/61f703a2d7d05308d12ef120/playlist.m3u8
|
||||
109,https://zo392.cdnedge.live/file/avple-images/hls/6256b2c8bd3519566877455b/playlist.m3u8
|
||||
110,https://zo392.cdnedge.live/file/avple-images/hls/62924a7c777f8769be5fdfaa/playlist.m3u8
|
||||
111,https://zo392.cdnedge.live/file/avple-images/hls/60ba6f55ecb87a1b5b8fa848/playlist.m3u8
|
||||
112,https://zo392.cdnedge.live/file/avple-images/hls/61584c9d4617d9667f1fa688/playlist.m3u8
|
||||
113,https://zo392.cdnedge.live/file/avple-images/hls/61730be116713849c8fc4708/playlist.m3u8
|
||||
114,https://zo392.cdnedge.live/file/avple-images/hls/61772041ad20e84f6e46a0b1/playlist.m3u8
|
||||
115,https://zo392.cdnedge.live/file/avple-images/hls/617e2625eb87aa24a1c4102a/playlist.m3u8
|
||||
116,https://zo392.cdnedge.live/file/avple-images/hls/617e2805eb87aa24a1c4102e/playlist.m3u8
|
||||
117,https://zo392.cdnedge.live/file/avple-images/hls/617e2e88928f5924a8a3069d/playlist.m3u8
|
||||
118,https://zo392.cdnedge.live/file/avple-images/hls/6183363d86d3713512d4ddb0/playlist.m3u8
|
||||
119,https://zo392.cdnedge.live/file/avple-images/hls/618462f1fddb3b0ce1f32685/playlist.m3u8
|
||||
120,https://zo392.cdnedge.live/file/avple-images/hls/61869cb58928100853d28992/playlist.m3u8
|
||||
|
||||
🔞传媒6,#genre#
|
||||
0,https://w9n76.cdnedge.live/file/avple-images/hls/6197ab1df1d93a199d1cf175/playlist.m3u8
|
||||
17,https://w9n76.cdnedge.live/file/avple-images/hls/61d62555f2772f49dcde1d4f/playlist.m3u8
|
||||
18,https://w9n76.cdnedge.live/file/avple-images/hls/61d8f951188cab78b243b40f/playlist.m3u8
|
||||
19,https://w9n76.cdnedge.live/file/avple-images/hls/61db6e255fb6a835028c9aef/playlist.m3u8
|
||||
20,https://w9n76.cdnedge.live/file/avple-images/hls/61e2499d9e31551b4fa3beac/playlist.m3u8
|
||||
21,https://w9n76.cdnedge.live/file/avple-images/hls/61e24ac99e31551b4fa3beaf/playlist.m3u8
|
||||
22,https://w9n76.cdnedge.live/file/avple-images/hls/61e3be46ec201f6b0a3a89a9/playlist.m3u8
|
||||
23,https://w9n76.cdnedge.live/file/avple-images/hls/61ecbc4f7580a3314beba2a4/playlist.m3u8
|
||||
24,https://w9n76.cdnedge.live/file/avple-images/hls/61ecbd027580a3314beba2a6/playlist.m3u8
|
||||
25,https://w9n76.cdnedge.live/file/avple-images/hls/61ecc00e7580a3314beba2ac/playlist.m3u8
|
||||
26,https://w9n76.cdnedge.live/file/avple-images/hls/61efa2565d579208810784f9/playlist.m3u8
|
||||
27,https://w9n76.cdnedge.live/file/avple-images/hls/61f70276d7d05308d12ef11d/playlist.m3u8
|
||||
28,https://w9n76.cdnedge.live/file/avple-images/hls/61f9a9369053272327957add/playlist.m3u8
|
||||
29,https://w9n76.cdnedge.live/file/avple-images/hls/61f9a9ae9053272327957ade/playlist.m3u8
|
||||
30,https://w9n76.cdnedge.live/file/avple-images/hls/61fb8929be50fb04df5de3f0/playlist.m3u8
|
||||
31,https://w9n76.cdnedge.live/file/avple-images/hls/61fd8f2ec68d7d11e015cd8b/playlist.m3u8
|
||||
32,https://w9n76.cdnedge.live/file/avple-images/hls/61ff165a99eb625f8e37e0a6/playlist.m3u8
|
||||
33,https://w9n76.cdnedge.live/file/avple-images/hls/62059f17d69d37216eb636d8/playlist.m3u8
|
||||
34,https://w9n76.cdnedge.live/file/avple-images/hls/6205a3c6d69d37216eb636dd/playlist.m3u8
|
||||
35,https://w9n76.cdnedge.live/file/avple-images/hls/6206efe3c6e4cd6e597c7185/playlist.m3u8
|
||||
36,https://w9n76.cdnedge.live/file/avple-images/hls/6209b3eef074eb1e0fe62717/playlist.m3u8
|
||||
37,https://w9n76.cdnedge.live/file/avple-images/hls/620b8746b9ba4c5adad0e27e/playlist.m3u8
|
||||
38,https://w9n76.cdnedge.live/file/avple-images/hls/62104d4e9d14d648884aa816/playlist.m3u8
|
||||
39,https://w9n76.cdnedge.live/file/avple-images/hls/6211ad925e73c82284228826/playlist.m3u8
|
||||
40,https://w9n76.cdnedge.live/file/avple-images/hls/621e133f0b43873ee3783be7/playlist.m3u8
|
||||
41,https://w9n76.cdnedge.live/file/avple-images/hls/621e146a0b43873ee3783be9/playlist.m3u8
|
||||
42,https://w9n76.cdnedge.live/file/avple-images/hls/621f6d2e532bec088eaa2e8a/playlist.m3u8
|
||||
43,https://w9n76.cdnedge.live/file/avple-images/hls/62246feac6370a74fa39c713/playlist.m3u8
|
||||
44,https://w9n76.cdnedge.live/file/avple-images/hls/62266e62c4dfd90d53d40fbf/playlist.m3u8
|
||||
45,https://w9n76.cdnedge.live/file/avple-images/hls/622b5de999043721e41f4766/playlist.m3u8
|
||||
46,https://w9n76.cdnedge.live/file/avple-images/hls/622b643b99043721e41f4770/playlist.m3u8
|
||||
47,https://w9n76.cdnedge.live/file/avple-images/hls/62323ac78cc9324f49436130/playlist.m3u8
|
||||
48,https://w9n76.cdnedge.live/file/avple-images/hls/6238236f3f90d26204d0e676/playlist.m3u8
|
||||
49,https://w9n76.cdnedge.live/file/avple-images/hls/623823aa3f90d26204d0e677/playlist.m3u8
|
||||
50,https://w9n76.cdnedge.live/file/avple-images/hls/623825123f90d26204d0e67b/playlist.m3u8
|
||||
51,https://w9n76.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c29/playlist.m3u8
|
||||
52,https://w9n76.cdnedge.live/file/avple-images/hls/6242c68a1226727c1d866b6b/playlist.m3u8
|
||||
53,https://w9n76.cdnedge.live/file/avple-images/hls/624426335b4805561493005a/playlist.m3u8
|
||||
54,https://w9n76.cdnedge.live/file/avple-images/hls/624590a38fe3f433a0be0548/playlist.m3u8
|
||||
55,https://w9n76.cdnedge.live/file/avple-images/hls/6246e3c7abd4e014b3b11183/playlist.m3u8
|
||||
56,https://w9n76.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb7/playlist.m3u8
|
||||
58,https://w9n76.cdnedge.live/file/avple-images/hls/62493d33cb995938b9053403/playlist.m3u8
|
||||
59,https://w9n76.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561613/playlist.m3u8
|
||||
60,https://w9n76.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
61,https://w9n76.cdnedge.live/file/avple-images/hls/626bd33820859323fc450d6d/playlist.m3u8
|
||||
62,https://w9n76.cdnedge.live/file/avple-images/hls/626bd4a020859323fc450d6f/playlist.m3u8
|
||||
63,https://w9n76.cdnedge.live/file/avple-images/hls/626faee23ddea14c11aa4aa6/playlist.m3u8
|
||||
64,https://w9n76.cdnedge.live/file/avple-images/hls/626fb69c3ddea14c11aa4aaf/playlist.m3u8
|
||||
65,https://w9n76.cdnedge.live/file/avple-images/hls/62722abd4deadc023a8a0992/playlist.m3u8
|
||||
66,https://w9n76.cdnedge.live/file/avple-images/hls/6273dcca84b95e04c28dde27/playlist.m3u8
|
||||
67,https://w9n76.cdnedge.live/file/avple-images/hls/627675043847697e5124b6d6/playlist.m3u8
|
||||
68,https://w9n76.cdnedge.live/file/avple-images/hls/6276766c3847697e5124b6d8/playlist.m3u8
|
||||
69,https://w9n76.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1e/playlist.m3u8
|
||||
70,https://w9n76.cdnedge.live/file/avple-images/hls/627a56c51a1d9a347dd98538/playlist.m3u8
|
||||
71,https://w9n76.cdnedge.live/file/avple-images/hls/627e66b5c60346652e396c81/playlist.m3u8
|
||||
72,https://w9n76.cdnedge.live/file/avple-images/hls/627ef081c60346652e396c84/playlist.m3u8
|
||||
73,https://w9n76.cdnedge.live/file/avple-images/hls/6280b897fc27be165aeb81db/playlist.m3u8
|
||||
74,https://w9n76.cdnedge.live/file/avple-images/hls/6280d9a2ef039d5507989171/playlist.m3u8
|
||||
75,https://w9n76.cdnedge.live/file/avple-images/hls/62825ac621f8de22adabf597/playlist.m3u8
|
||||
76,https://w9n76.cdnedge.live/file/avple-images/hls/62837472ef2c1c6dbc484240/playlist.m3u8
|
||||
77,https://w9n76.cdnedge.live/file/avple-images/hls/6284e33bc71b08247ee18e31/playlist.m3u8
|
||||
78,https://w9n76.cdnedge.live/file/avple-images/hls/6284e593c71b08247ee18e34/playlist.m3u8
|
||||
79,https://w9n76.cdnedge.live/file/avple-images/hls/6284e648c71b08247ee18e36/playlist.m3u8
|
||||
80,https://w9n76.cdnedge.live/file/avple-images/hls/6284e6bfc71b08247ee18e37/playlist.m3u8
|
||||
81,https://w9n76.cdnedge.live/file/avple-images/hls/6284f2fbc71b08247ee18e3c/playlist.m3u8
|
||||
82,https://w9n76.cdnedge.live/file/avple-images/hls/628798c1d28d4f134ac69049/playlist.m3u8
|
||||
83,https://w9n76.cdnedge.live/file/avple-images/hls/62879ae2d28d4f134ac69051/playlist.m3u8
|
||||
84,https://w9n76.cdnedge.live/file/avple-images/hls/6287b15cd28d4f134ac69053/playlist.m3u8
|
||||
85,https://w9n76.cdnedge.live/file/avple-images/hls/628ab384a1c1cd0b44683ef7/playlist.m3u8
|
||||
86,https://w9n76.cdnedge.live/file/avple-images/hls/628ab4eba1c1cd0b44683ef9/playlist.m3u8
|
||||
87,https://w9n76.cdnedge.live/file/avple-images/hls/628ab9d6a1c1cd0b44683f02/playlist.m3u8
|
||||
88,https://w9n76.cdnedge.live/file/avple-images/hls/628f7d10531f007e5ba30af5/playlist.m3u8
|
||||
90,https://w9n76.cdnedge.live/file/avple-images/hls/6290be2987412532ac7f4cfe/playlist.m3u8
|
||||
92,https://w9n76.cdnedge.live/file/avple-images/hls/62986aee23d5972db0bfc9a2/playlist.m3u8
|
||||
93,https://w9n76.cdnedge.live/file/avple-images/hls/629f660879f93b6e0966e237/playlist.m3u8
|
||||
94,https://w9n76.cdnedge.live/file/avple-images/hls/62a2b76356220431fa6b0d91/playlist.m3u8
|
||||
95,https://w9n76.cdnedge.live/file/avple-images/hls/62a32d8700bfe87ec988ccdc/playlist.m3u8
|
||||
96,https://w9n76.cdnedge.live/file/avple-images/hls/62a5abb794b044303b9622da/playlist.m3u8
|
||||
97,https://w9n76.cdnedge.live/file/avple-images/hls/62a5ae4a94b044303b9622dd/playlist.m3u8
|
||||
98,https://w9n76.cdnedge.live/file/avple-images/hls/62a5b68294b044303b9622e3/playlist.m3u8
|
||||
99,https://w9n76.cdnedge.live/file/avple-images/hls/62aad21a21a7da2e6584bc89/playlist.m3u8
|
||||
100,https://w9n76.cdnedge.live/file/avple-images/hls/62aad3b921a7da2e6584bc8a/playlist.m3u8
|
||||
101,https://w9n76.cdnedge.live/file/avple-images/hls/62aad64c21a7da2e6584bc90/playlist.m3u8
|
||||
102,https://w9n76.cdnedge.live/file/avple-images/hls/62aad86721a7da2e6584bc93/playlist.m3u8
|
||||
103,https://w9n76.cdnedge.live/file/avple-images/hls/62ac66d81ea6384bb6ca9f8b/playlist.m3u8
|
||||
104,https://w9n76.cdnedge.live/file/avple-images/hls/62aeccaec556631aff1378ed/playlist.m3u8
|
||||
105,https://w9n76.cdnedge.live/file/avple-images/hls/62b1b4d2eec8264ea0826f29/playlist.m3u8
|
||||
106,https://w9n76.cdnedge.live/file/avple-images/hls/62b2de3eeec8264ea0826f32/playlist.m3u8
|
||||
107,https://w9n76.cdnedge.live/file/avple-images/hls/62b4337fea01b50f6781dc5d/playlist.m3u8
|
||||
108,https://w9n76.cdnedge.live/file/avple-images/hls/62b433b8ea01b50f6781dc5e/playlist.m3u8
|
||||
109,https://w9n76.cdnedge.live/file/avple-images/hls/62bbf51aea3d425e0a93b7ab/playlist.m3u8
|
||||
110,https://w9n76.cdnedge.live/file/avple-images/hls/62bd84f5d0fa6a48496bbf59/playlist.m3u8
|
||||
111,https://w9n76.cdnedge.live/file/avple-images/hls/6173094d16713849c8fc4704/playlist.m3u8
|
||||
112,https://w9n76.cdnedge.live/file/avple-images/hls/61771cbdad20e84f6e46a0a9/playlist.m3u8
|
||||
113,https://w9n76.cdnedge.live/file/avple-images/hls/617c5165f0db60036839e94e/playlist.m3u8
|
||||
114,https://w9n76.cdnedge.live/file/avple-images/hls/618334d586d3713512d4ddad/playlist.m3u8
|
||||
115,https://w9n76.cdnedge.live/file/avple-images/hls/61846189fddb3b0ce1f32682/playlist.m3u8
|
||||
116,https://w9n76.cdnedge.live/file/avple-images/hls/61892c7d35829357ea3d3e9b/playlist.m3u8
|
||||
117,https://w9n76.cdnedge.live/file/avple-images/hls/618b9a4952fe307992e91592/playlist.m3u8
|
||||
118,https://w9n76.cdnedge.live/file/avple-images/hls/618e686af061a16282b2ee97/playlist.m3u8
|
||||
119,https://w9n76.cdnedge.live/file/avple-images/hls/618e69d1f061a16282b2ee9b/playlist.m3u8
|
||||
121,https://w9n76.cdnedge.live/file/avple-images/hls/61fd8ef3c68d7d11e015cd8a/playlist.m3u8
|
||||
122,https://w9n76.cdnedge.live/file/avple-images/hls/626bd24920859323fc450d6c/playlist.m3u8
|
||||
123,https://w9n76.cdnedge.live/file/avple-images/hls/62957788180f8c65c7d908af/playlist.m3u8
|
||||
124,https://w9n76.cdnedge.live/file/avple-images/hls/6171a855f8003d17dfd1a736/playlist.m3u8
|
||||
|
||||
🔞传媒7,#genre#
|
||||
|
||||
0,https://u89ey.cdnedge.live/file/avple-images/hls/61b8178197618e5cc644ad43/playlist.m3u8
|
||||
1,https://u89ey.cdnedge.live/file/avple-images/hls/61771b91ad20e84f6e46a0a7/playlist.m3u8
|
||||
2,https://u89ey.cdnedge.live/file/avple-images/hls/61771e9dad20e84f6e46a0ad/playlist.m3u8
|
||||
3,https://u89ey.cdnedge.live/file/avple-images/hls/61771f8dad20e84f6e46a0af/playlist.m3u8
|
||||
4,https://u89ey.cdnedge.live/file/avple-images/hls/617836ed6275b513e05eef0b/playlist.m3u8
|
||||
5,https://u89ey.cdnedge.live/file/avple-images/hls/617c4cf1f0db60036839e944/playlist.m3u8
|
||||
6,https://u89ey.cdnedge.live/file/avple-images/hls/617c4d69f0db60036839e945/playlist.m3u8
|
||||
7,https://u89ey.cdnedge.live/file/avple-images/hls/617c4f85f0db60036839e94a/playlist.m3u8
|
||||
8,https://u89ey.cdnedge.live/file/avple-images/hls/618073224d383b66797a6981/playlist.m3u8
|
||||
9,https://u89ey.cdnedge.live/file/avple-images/hls/6183333186d3713512d4ddaa/playlist.m3u8
|
||||
10,https://u89ey.cdnedge.live/file/avple-images/hls/618336f186d3713512d4ddb2/playlist.m3u8
|
||||
11,https://u89ey.cdnedge.live/file/avple-images/hls/61846279fddb3b0ce1f32684/playlist.m3u8
|
||||
13,https://u89ey.cdnedge.live/file/avple-images/hls/61869da58928100853d28994/playlist.m3u8
|
||||
14,https://u89ey.cdnedge.live/file/avple-images/hls/618b973d52fe307992e9158a/playlist.m3u8
|
||||
15,https://u89ey.cdnedge.live/file/avple-images/hls/618b98a552fe307992e9158e/playlist.m3u8
|
||||
16,https://u89ey.cdnedge.live/file/avple-images/hls/6190b7093e002b78fa02b86b/playlist.m3u8
|
||||
17,https://u89ey.cdnedge.live/file/avple-images/hls/6190b8353e002b78fa02b86e/playlist.m3u8
|
||||
18,https://u89ey.cdnedge.live/file/avple-images/hls/61994f884b40d33a86618952/playlist.m3u8
|
||||
19,https://u89ey.cdnedge.live/file/avple-images/hls/61994f954a94103a79bc9483/playlist.m3u8
|
||||
20,https://u89ey.cdnedge.live/file/avple-images/hls/619d55a944b3af0456c438aa/playlist.m3u8
|
||||
21,https://u89ey.cdnedge.live/file/avple-images/hls/61a0e7053006a4603929a38e/playlist.m3u8
|
||||
22,https://u89ey.cdnedge.live/file/avple-images/hls/61a0e7f53006a4603929a390/playlist.m3u8
|
||||
23,https://u89ey.cdnedge.live/file/avple-images/hls/61a526c1a992bd3d5c3eb61e/playlist.m3u8
|
||||
24,https://u89ey.cdnedge.live/file/avple-images/hls/61a7d53d7aac5d7ef57bda24/playlist.m3u8
|
||||
25,https://u89ey.cdnedge.live/file/avple-images/hls/61accd47779a324ef83699bf/playlist.m3u8
|
||||
26,https://u89ey.cdnedge.live/file/avple-images/hls/61adba9d779a324ef83699c5/playlist.m3u8
|
||||
27,https://u89ey.cdnedge.live/file/avple-images/hls/61aea3d102275f78f19d8f2c/playlist.m3u8
|
||||
28,https://u89ey.cdnedge.live/file/avple-images/hls/61b46fa5f91a1b0eecb6e534/playlist.m3u8
|
||||
29,https://u89ey.cdnedge.live/file/avple-images/hls/61b6ca751458462c26eadc86/playlist.m3u8
|
||||
30,https://u89ey.cdnedge.live/file/avple-images/hls/61b816ce97618e5cc644ad42/playlist.m3u8
|
||||
31,https://u89ey.cdnedge.live/file/avple-images/hls/61c028d2ad3e743fbb4f96ec/playlist.m3u8
|
||||
32,https://u89ey.cdnedge.live/file/avple-images/hls/61c02a39ad3e743fbb4f96f0/playlist.m3u8
|
||||
33,https://u89ey.cdnedge.live/file/avple-images/hls/61c6a612668fd93b4250a31c/playlist.m3u8
|
||||
34,https://u89ey.cdnedge.live/file/avple-images/hls/61c6a7f1668fd93b4250a320/playlist.m3u8
|
||||
35,https://u89ey.cdnedge.live/file/avple-images/hls/61c6ae45668fd93b4250a32a/playlist.m3u8
|
||||
36,https://u89ey.cdnedge.live/file/avple-images/hls/61cc3a1db192e6156087c941/playlist.m3u8
|
||||
37,https://u89ey.cdnedge.live/file/avple-images/hls/61ce1171b418404e15c81303/playlist.m3u8
|
||||
38,https://u89ey.cdnedge.live/file/avple-images/hls/61ce1225b418404e15c81305/playlist.m3u8
|
||||
39,https://u89ey.cdnedge.live/file/avple-images/hls/61d0bec18ec5397ce0e2cddc/playlist.m3u8
|
||||
40,https://u89ey.cdnedge.live/file/avple-images/hls/61d0c67d8ec5397ce0e2cdec/playlist.m3u8
|
||||
41,https://u89ey.cdnedge.live/file/avple-images/hls/61d62375f2772f49dcde1d4a/playlist.m3u8
|
||||
42,https://u89ey.cdnedge.live/file/avple-images/hls/61d626f9f2772f49dcde1d53/playlist.m3u8
|
||||
43,https://u89ey.cdnedge.live/file/avple-images/hls/61d8f828188cab78b243b40c/playlist.m3u8
|
||||
44,https://u89ey.cdnedge.live/file/avple-images/hls/61d8f8da188cab78b243b40e/playlist.m3u8
|
||||
45,https://u89ey.cdnedge.live/file/avple-images/hls/61df65753c31380dc7d79ada/playlist.m3u8
|
||||
46,https://u89ey.cdnedge.live/file/avple-images/hls/61e3bcdfec201f6b0a3a89a7/playlist.m3u8
|
||||
48,https://u89ey.cdnedge.live/file/avple-images/hls/61e927aac6ba7653ff36281f/playlist.m3u8
|
||||
49,https://u89ey.cdnedge.live/file/avple-images/hls/61ee46c24e82d1622de7f24d/playlist.m3u8
|
||||
50,https://u89ey.cdnedge.live/file/avple-images/hls/61efa1a25d579208810784f7/playlist.m3u8
|
||||
51,https://u89ey.cdnedge.live/file/avple-images/hls/61f701c2d7d05308d12ef11b/playlist.m3u8
|
||||
52,https://u89ey.cdnedge.live/file/avple-images/hls/61f9a6a29053272327957ad6/playlist.m3u8
|
||||
53,https://u89ey.cdnedge.live/file/avple-images/hls/61fb8a2611eff304d6e13799/playlist.m3u8
|
||||
54,https://u89ey.cdnedge.live/file/avple-images/hls/61fb8cf611eff304d6e1379f/playlist.m3u8
|
||||
55,https://u89ey.cdnedge.live/file/avple-images/hls/61ff169699eb625f8e37e0a7/playlist.m3u8
|
||||
56,https://u89ey.cdnedge.live/file/avple-images/hls/6202e37a152c48301ba2ac75/playlist.m3u8
|
||||
57,https://u89ey.cdnedge.live/file/avple-images/hls/6202e3f2152c48301ba2ac76/playlist.m3u8
|
||||
58,https://u89ey.cdnedge.live/file/avple-images/hls/6202e55a152c48301ba2ac7a/playlist.m3u8
|
||||
59,https://u89ey.cdnedge.live/file/avple-images/hls/6205a47ad69d37216eb636de/playlist.m3u8
|
||||
60,https://u89ey.cdnedge.live/file/avple-images/hls/620c662bd0ea7c7d841b2f3c/playlist.m3u8
|
||||
61,https://u89ey.cdnedge.live/file/avple-images/hls/6215b8cecef8321ac4bf99a9/playlist.m3u8
|
||||
62,https://u89ey.cdnedge.live/file/avple-images/hls/6219e6f5b9e8e9119a2f1fe1/playlist.m3u8
|
||||
63,https://u89ey.cdnedge.live/file/avple-images/hls/6219e76eb9e8e9119a2f1fe2/playlist.m3u8
|
||||
64,https://u89ey.cdnedge.live/file/avple-images/hls/621e160f0b43873ee3783bec/playlist.m3u8
|
||||
65,https://u89ey.cdnedge.live/file/avple-images/hls/62230dc61fdb77263ccb3864/playlist.m3u8
|
||||
66,https://u89ey.cdnedge.live/file/avple-images/hls/62246faec6370a74fa39c712/playlist.m3u8
|
||||
67,https://u89ey.cdnedge.live/file/avple-images/hls/62287a72ac9a2544846bbfaa/playlist.m3u8
|
||||
68,https://u89ey.cdnedge.live/file/avple-images/hls/622b612f99043721e41f476b/playlist.m3u8
|
||||
69,https://u89ey.cdnedge.live/file/avple-images/hls/622b61e299043721e41f476d/playlist.m3u8
|
||||
70,https://u89ey.cdnedge.live/file/avple-images/hls/622b656699043721e41f4771/playlist.m3u8
|
||||
71,https://u89ey.cdnedge.live/file/avple-images/hls/622d470ae5f4997685910d12/playlist.m3u8
|
||||
72,https://u89ey.cdnedge.live/file/avple-images/hls/622d4a52e5f4997685910d1b/playlist.m3u8
|
||||
73,https://u89ey.cdnedge.live/file/avple-images/hls/622fc66ae14ae771445e47f9/playlist.m3u8
|
||||
74,https://u89ey.cdnedge.live/file/avple-images/hls/62323bf28cc9324f49436134/playlist.m3u8
|
||||
75,https://u89ey.cdnedge.live/file/avple-images/hls/6233ca29aefa78093f9ffdd3/playlist.m3u8
|
||||
76,https://u89ey.cdnedge.live/file/avple-images/hls/6233cadaaefa78093f9ffdd5/playlist.m3u8
|
||||
77,https://u89ey.cdnedge.live/file/avple-images/hls/62350655ecafc64f34ef85bb/playlist.m3u8
|
||||
78,https://u89ey.cdnedge.live/file/avple-images/hls/6236b0a61222e41c629a9329/playlist.m3u8
|
||||
79,https://u89ey.cdnedge.live/file/avple-images/hls/6236b11e1222e41c629a932a/playlist.m3u8
|
||||
80,https://u89ey.cdnedge.live/file/avple-images/hls/6238245f3f90d26204d0e679/playlist.m3u8
|
||||
81,https://u89ey.cdnedge.live/file/avple-images/hls/6242c15681f80f77774148cd/playlist.m3u8
|
||||
82,https://u89ey.cdnedge.live/file/avple-images/hls/624426335b48055614930059/playlist.m3u8
|
||||
83,https://u89ey.cdnedge.live/file/avple-images/hls/6249a0afeb0b5f202d561603/playlist.m3u8
|
||||
84,https://u89ey.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d56161a/playlist.m3u8
|
||||
85,https://u89ey.cdnedge.live/file/avple-images/hls/624d7cc08d83843ab3a678c7/playlist.m3u8
|
||||
86,https://u89ey.cdnedge.live/file/avple-images/hls/6250349af06f665330ec2bdc/playlist.m3u8
|
||||
87,https://u89ey.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957c/playlist.m3u8
|
||||
88,https://u89ey.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957d/playlist.m3u8
|
||||
89,https://u89ey.cdnedge.live/file/avple-images/hls/6254986f3d5bac30b2603dc2/playlist.m3u8
|
||||
90,https://u89ey.cdnedge.live/file/avple-images/hls/6256b161bd35195668774558/playlist.m3u8
|
||||
92,https://u89ey.cdnedge.live/file/avple-images/hls/626fb4473ddea14c11aa4aac/playlist.m3u8
|
||||
93,https://u89ey.cdnedge.live/file/avple-images/hls/626fb8423ddea14c11aa4ab1/playlist.m3u8
|
||||
94,https://u89ey.cdnedge.live/file/avple-images/hls/627678103847697e5124b6dc/playlist.m3u8
|
||||
95,https://u89ey.cdnedge.live/file/avple-images/hls/627678c43847697e5124b6dd/playlist.m3u8
|
||||
96,https://u89ey.cdnedge.live/file/avple-images/hls/6276793c3847697e5124b6de/playlist.m3u8
|
||||
97,https://u89ey.cdnedge.live/file/avple-images/hls/627a5a0c1a1d9a347dd9853e/playlist.m3u8
|
||||
98,https://u89ey.cdnedge.live/file/avple-images/hls/627cdcf62568f9623a3e5421/playlist.m3u8
|
||||
99,https://u89ey.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8b/playlist.m3u8
|
||||
100,https://u89ey.cdnedge.live/file/avple-images/hls/627e66b4c60346652e396c80/playlist.m3u8
|
||||
101,https://u89ey.cdnedge.live/file/avple-images/hls/6280b154fc27be165aeb81d2/playlist.m3u8
|
||||
102,https://u89ey.cdnedge.live/file/avple-images/hls/6280b821fc27be165aeb81da/playlist.m3u8
|
||||
103,https://u89ey.cdnedge.live/file/avple-images/hls/6280bd0bfc27be165aeb81de/playlist.m3u8
|
||||
105,https://u89ey.cdnedge.live/file/avple-images/hls/6284e288c71b08247ee18e2f/playlist.m3u8
|
||||
106,https://u89ey.cdnedge.live/file/avple-images/hls/6284e33bc71b08247ee18e31/playlist.m3u8
|
||||
107,https://u89ey.cdnedge.live/file/avple-images/hls/628798c2d28d4f134ac6904a/playlist.m3u8
|
||||
108,https://u89ey.cdnedge.live/file/avple-images/hls/6288471dd28d4f134ac69054/playlist.m3u8
|
||||
109,https://u89ey.cdnedge.live/file/avple-images/hls/6289a97bb982a351108bf732/playlist.m3u8
|
||||
110,https://u89ey.cdnedge.live/file/avple-images/hls/62aad0ac21a7da2e6584bc88/playlist.m3u8
|
||||
111,https://u89ey.cdnedge.live/file/avple-images/hls/62ac63931ea6384bb6ca9f87/playlist.m3u8
|
||||
112,https://u89ey.cdnedge.live/file/avple-images/hls/62ac65ec1ea6384bb6ca9f89/playlist.m3u8
|
||||
113,https://u89ey.cdnedge.live/file/avple-images/hls/62aecbbdc556631aff1378eb/playlist.m3u8
|
||||
114,https://u89ey.cdnedge.live/file/avple-images/hls/62b1b8cceec8264ea0826f2e/playlist.m3u8
|
||||
115,https://u89ey.cdnedge.live/file/avple-images/hls/62bbed9fea3d425e0a93b79e/playlist.m3u8
|
||||
116,https://u89ey.cdnedge.live/file/avple-images/hls/62bee355e8dd79755d817bbb/playlist.m3u8
|
||||
117,https://u89ey.cdnedge.live/file/avple-images/hls/62c168c8b70f0f5e88542c50/playlist.m3u8
|
||||
118,https://u89ey.cdnedge.live/file/avple-images/hls/62c43a3c366b240e3b67be27/playlist.m3u8
|
||||
119,https://u89ey.cdnedge.live/file/avple-images/hls/62c4413f366b240e3b67be32/playlist.m3u8
|
||||
120,https://u89ey.cdnedge.live/file/avple-images/hls/628ab86ea1c1cd0b44683efe/playlist.m3u8
|
||||
121,https://u89ey.cdnedge.live/file/avple-images/hls/628ab95fa1c1cd0b44683f01/playlist.m3u8
|
||||
122,https://u89ey.cdnedge.live/file/avple-images/hls/628b5ed8478a7e4e23bce257/playlist.m3u8
|
||||
123,https://u89ey.cdnedge.live/file/avple-images/hls/628b5ed9478a7e4e23bce258/playlist.m3u8
|
||||
124,https://u89ey.cdnedge.live/file/avple-images/hls/628cc5adde01360ccb2f8e9c/playlist.m3u8
|
||||
125,https://u89ey.cdnedge.live/file/avple-images/hls/628cc65ede01360ccb2f8e9d/playlist.m3u8
|
||||
126,https://u89ey.cdnedge.live/file/avple-images/hls/628f6925531f007e5ba30af3/playlist.m3u8
|
||||
127,https://u89ey.cdnedge.live/file/avple-images/hls/628f8453531f007e5ba30afe/playlist.m3u8
|
||||
128,https://u89ey.cdnedge.live/file/avple-images/hls/628f84ca531f007e5ba30aff/playlist.m3u8
|
||||
129,https://u89ey.cdnedge.live/file/avple-images/hls/628f8543531f007e5ba30b00/playlist.m3u8
|
||||
130,https://u89ey.cdnedge.live/file/avple-images/hls/629578ef180f8c65c7d908b2/playlist.m3u8
|
||||
131,https://u89ey.cdnedge.live/file/avple-images/hls/62986ba123d5972db0bfc9a3/playlist.m3u8
|
||||
132,https://u89ey.cdnedge.live/file/avple-images/hls/62986bda23d5972db0bfc9a4/playlist.m3u8
|
||||
133,https://u89ey.cdnedge.live/file/avple-images/hls/62986df623d5972db0bfc9a7/playlist.m3u8
|
||||
134,https://u89ey.cdnedge.live/file/avple-images/hls/62a2a77456220431fa6b0d8c/playlist.m3u8
|
||||
135,https://u89ey.cdnedge.live/file/avple-images/hls/62a2a91856220431fa6b0d8e/playlist.m3u8
|
||||
136,https://u89ey.cdnedge.live/file/avple-images/hls/62a494d494b044303b9622cb/playlist.m3u8
|
||||
137,https://u89ey.cdnedge.live/file/avple-images/hls/62a4963b94b044303b9622cc/playlist.m3u8
|
||||
138,https://u89ey.cdnedge.live/file/avple-images/hls/62a5a4ee94b044303b9622d1/playlist.m3u8
|
||||
139,https://u89ey.cdnedge.live/file/avple-images/hls/62a5a99d94b044303b9622d8/playlist.m3u8
|
||||
140,https://u89ey.cdnedge.live/file/avple-images/hls/6257f50aa840bf2dd2ce4358/playlist.m3u8
|
||||
141,https://u89ey.cdnedge.live/file/avple-images/hls/62957b4a180f8c65c7d908b5/playlist.m3u8
|
||||
142,https://u89ey.cdnedge.live/file/avple-images/hls/62104c229d14d648884aa813/playlist.m3u8
|
||||
|
||||
🔞传媒8,#genre#
|
||||
1,https://47b61.cdnedge.live/file/avple-images/hls/608afb30d7fc804f2b42417a/playlist.m3u8
|
||||
2,https://47b61.cdnedge.live/file/avple-images/hls/608e46f341c89c0d103057e8/playlist.m3u8
|
||||
3,https://47b61.cdnedge.live/file/avple-images/hls/608f804ee460e77face48d70/playlist.m3u8
|
||||
4,https://47b61.cdnedge.live/file/avple-images/hls/6093b2e9caa9c843e1f9864f/playlist.m3u8
|
||||
5,https://47b61.cdnedge.live/file/avple-images/hls/6094dc19304e7c426071daa2/playlist.m3u8
|
||||
6,https://47b61.cdnedge.live/file/avple-images/hls/6095541abc2f671bb38f04a4/playlist.m3u8
|
||||
7,https://47b61.cdnedge.live/file/avple-images/hls/609ce87dee36da5bb9b5e4bd/playlist.m3u8
|
||||
8,https://47b61.cdnedge.live/file/avple-images/hls/60a2cbbd0865490a3d467a07/playlist.m3u8
|
||||
9,https://47b61.cdnedge.live/file/avple-images/hls/60a2cbbf0865490a3d467a09/playlist.m3u8
|
||||
10,https://47b61.cdnedge.live/file/avple-images/hls/60a35bee563d29258e8ffdcc/playlist.m3u8
|
||||
11,https://47b61.cdnedge.live/file/avple-images/hls/60a51d71e14ac8644b10c55c/playlist.m3u8
|
||||
12,https://47b61.cdnedge.live/file/avple-images/hls/60a60489e14ac8644b10c574/playlist.m3u8
|
||||
13,https://47b61.cdnedge.live/file/avple-images/hls/60a7b9e1a1402d273404d4dc/playlist.m3u8
|
||||
14,https://47b61.cdnedge.live/file/avple-images/hls/60a7ba59a1402d273404d4dd/playlist.m3u8
|
||||
15,https://47b61.cdnedge.live/file/avple-images/hls/60a97bd4a66747642ac6ec79/playlist.m3u8
|
||||
16,https://47b61.cdnedge.live/file/avple-images/hls/60ac1b213ed22a7758c5d22e/playlist.m3u8
|
||||
17,https://47b61.cdnedge.live/file/avple-images/hls/60ad187ec94500628692a9ad/playlist.m3u8
|
||||
18,https://47b61.cdnedge.live/file/avple-images/hls/60afb8e9f28fb17e7fa63a27/playlist.m3u8
|
||||
19,https://47b61.cdnedge.live/file/avple-images/hls/60b2bb4d1eca2e140e90d897/playlist.m3u8
|
||||
20,https://47b61.cdnedge.live/file/avple-images/hls/60b32e9d1eca2e140e90d8a9/playlist.m3u8
|
||||
21,https://47b61.cdnedge.live/file/avple-images/hls/60b71df6331213528e28e02e/playlist.m3u8
|
||||
22,https://47b61.cdnedge.live/file/avple-images/hls/60bdca8dd200710514482334/playlist.m3u8
|
||||
23,https://47b61.cdnedge.live/file/avple-images/hls/60c056591ada6b26dd8e77fb/playlist.m3u8
|
||||
24,https://47b61.cdnedge.live/file/avple-images/hls/60c8cf433390952ea99c2c36/playlist.m3u8
|
||||
25,https://47b61.cdnedge.live/file/avple-images/hls/60caf20d04790b6f2f50799f/playlist.m3u8
|
||||
26,https://47b61.cdnedge.live/file/avple-images/hls/60cef7e5a00dd64c728c99ae/playlist.m3u8
|
||||
27,https://47b61.cdnedge.live/file/avple-images/hls/60cefa3da00dd64c728c99b0/playlist.m3u8
|
||||
28,https://47b61.cdnedge.live/file/avple-images/hls/60d2009d9da678269738d258/playlist.m3u8
|
||||
29,https://47b61.cdnedge.live/file/avple-images/hls/60d6131d8ee6215db1a31d37/playlist.m3u8
|
||||
30,https://47b61.cdnedge.live/file/avple-images/hls/60d73582cbc532129465e285/playlist.m3u8
|
||||
41,https://47b61.cdnedge.live/file/avple-images/hls/60df0ff9e982005101367fcb/playlist.m3u8
|
||||
42,https://47b61.cdnedge.live/file/avple-images/hls/60e440690fcb11183bc80a17/playlist.m3u8
|
||||
43,https://47b61.cdnedge.live/file/avple-images/hls/60e630591cefd85c8cb9e38a/playlist.m3u8
|
||||
44,https://47b61.cdnedge.live/file/avple-images/hls/60e6f101295d6915521367be/playlist.m3u8
|
||||
45,https://47b61.cdnedge.live/file/avple-images/hls/60e94c85040dcf528937da80/playlist.m3u8
|
||||
46,https://47b61.cdnedge.live/file/avple-images/hls/60f1655f6c52ab4d84b6d15f/playlist.m3u8
|
||||
47,https://47b61.cdnedge.live/file/avple-images/hls/60f165ce6c52ab4d84b6d160/playlist.m3u8
|
||||
48,https://47b61.cdnedge.live/file/avple-images/hls/60f9478a3a83366a1cc4bea7/playlist.m3u8
|
||||
49,https://47b61.cdnedge.live/file/avple-images/hls/60f9aa363a83366a1cc4bea9/playlist.m3u8
|
||||
50,https://47b61.cdnedge.live/file/avple-images/hls/60faa31d9b30333e9899b7ea/playlist.m3u8
|
||||
51,https://47b61.cdnedge.live/file/avple-images/hls/60faefc29b30333e9899b7f6/playlist.m3u8
|
||||
52,https://47b61.cdnedge.live/file/avple-images/hls/60fe7bf68e44352980df95ec/playlist.m3u8
|
||||
53,https://47b61.cdnedge.live/file/avple-images/hls/6104439dc778956038fdd099/playlist.m3u8
|
||||
54,https://47b61.cdnedge.live/file/avple-images/hls/61048b0dc778956038fdd09a/playlist.m3u8
|
||||
55,https://47b61.cdnedge.live/file/avple-images/hls/610a696567e1cd7424668636/playlist.m3u8
|
||||
56,https://47b61.cdnedge.live/file/avple-images/hls/610ae7f567e1cd7424668638/playlist.m3u8
|
||||
57,https://47b61.cdnedge.live/file/avple-images/hls/611066adec861065e5d9a644/playlist.m3u8
|
||||
58,https://47b61.cdnedge.live/file/avple-images/hls/611271190a894b6aa570b3d0/playlist.m3u8
|
||||
59,https://47b61.cdnedge.live/file/avple-images/hls/6115ec6d7633411363f3e938/playlist.m3u8
|
||||
60,https://47b61.cdnedge.live/file/avple-images/hls/6116f6717dc0bd6385362f54/playlist.m3u8
|
||||
61,https://47b61.cdnedge.live/file/avple-images/hls/611a2d915821847403ed2e04/playlist.m3u8
|
||||
62,https://47b61.cdnedge.live/file/avple-images/hls/611cf12529c2f5753b2494e9/playlist.m3u8
|
||||
63,https://47b61.cdnedge.live/file/avple-images/hls/61225e49fd4e504c5a12afcc/playlist.m3u8
|
||||
64,https://47b61.cdnedge.live/file/avple-images/hls/61232905fd4e504c5a12afcd/playlist.m3u8
|
||||
65,https://47b61.cdnedge.live/file/avple-images/hls/61239151ab291c1c98ec95eb/playlist.m3u8
|
||||
66,https://47b61.cdnedge.live/file/avple-images/hls/612dce555e09c13c8be19702/playlist.m3u8
|
||||
67,https://47b61.cdnedge.live/file/avple-images/hls/6130cc093c01ab5b376b5469/playlist.m3u8
|
||||
68,https://47b61.cdnedge.live/file/avple-images/hls/61323661df22bb1346cfbdfa/playlist.m3u8
|
||||
69,https://47b61.cdnedge.live/file/avple-images/hls/6134691dab335a56e3948250/playlist.m3u8
|
||||
70,https://47b61.cdnedge.live/file/avple-images/hls/613b73ed43083352c84898e3/playlist.m3u8
|
||||
71,https://47b61.cdnedge.live/file/avple-images/hls/613b9b4d43083352c84898e5/playlist.m3u8
|
||||
72,https://47b61.cdnedge.live/file/avple-images/hls/613cd46dcbbf650a74d2f3e9/playlist.m3u8
|
||||
73,https://47b61.cdnedge.live/file/avple-images/hls/61410e899e64c05ed6d60c7d/playlist.m3u8
|
||||
74,https://47b61.cdnedge.live/file/avple-images/hls/6143a865df087a6d90ea5ca5/playlist.m3u8
|
||||
75,https://47b61.cdnedge.live/file/avple-images/hls/614d15c1246f4b08f7e8fcc1/playlist.m3u8
|
||||
76,https://47b61.cdnedge.live/file/avple-images/hls/61512ad5f81f3e3dad52310b/playlist.m3u8
|
||||
77,https://47b61.cdnedge.live/file/avple-images/hls/6151e1e1879b367cfc768631/playlist.m3u8
|
||||
78,https://47b61.cdnedge.live/file/avple-images/hls/6154761e3c35580e9946ea46/playlist.m3u8
|
||||
79,https://47b61.cdnedge.live/file/avple-images/hls/615661d50936024ada66722f/playlist.m3u8
|
||||
80,https://47b61.cdnedge.live/file/avple-images/hls/615741e59dda0e2db22a7f12/playlist.m3u8
|
||||
81,https://47b61.cdnedge.live/file/avple-images/hls/6157425d9dda0e2db22a7f13/playlist.m3u8
|
||||
82,https://47b61.cdnedge.live/file/avple-images/hls/6157443e9dda0e2db22a7f17/playlist.m3u8
|
||||
83,https://47b61.cdnedge.live/file/avple-images/hls/615b13b662da73610588de50/playlist.m3u8
|
||||
84,https://47b61.cdnedge.live/file/avple-images/hls/615b142d62da73610588de51/playlist.m3u8
|
||||
85,https://47b61.cdnedge.live/file/avple-images/hls/615c9c495753920a08945922/playlist.m3u8
|
||||
86,https://47b61.cdnedge.live/file/avple-images/hls/615c9cc15753920a08945923/playlist.m3u8
|
||||
87,https://47b61.cdnedge.live/file/avple-images/hls/615c9e295753920a08945926/playlist.m3u8
|
||||
88,https://47b61.cdnedge.live/file/avple-images/hls/615db90d6c85aa6afbe1e5fb/playlist.m3u8
|
||||
89,https://47b61.cdnedge.live/file/avple-images/hls/61630e49114a6a29b065cde9/playlist.m3u8
|
||||
90,https://47b61.cdnedge.live/file/avple-images/hls/61630f75114a6a29b065cdeb/playlist.m3u8
|
||||
92,https://47b61.cdnedge.live/file/avple-images/hls/6167163d51121708a790a1b7/playlist.m3u8
|
||||
93,https://47b61.cdnedge.live/file/avple-images/hls/6167172d51121708a790a1b9/playlist.m3u8
|
||||
94,https://47b61.cdnedge.live/file/avple-images/hls/6070548990160a18a06bac73/playlist.m3u8
|
||||
95,https://47b61.cdnedge.live/file/avple-images/hls/60705b9190160a18a06bac75/playlist.m3u8
|
||||
96,https://47b61.cdnedge.live/file/avple-images/hls/6072a580c029b66341324a8a/playlist.m3u8
|
||||
97,https://47b61.cdnedge.live/file/avple-images/hls/607b849893ee26394068f3a4/playlist.m3u8
|
||||
98,https://47b61.cdnedge.live/file/avple-images/hls/608150318cac6978b840e8e2/playlist.m3u8
|
||||
99,https://47b61.cdnedge.live/file/avple-images/hls/608188708cac6978b840e8e3/playlist.m3u8
|
||||
100,https://47b61.cdnedge.live/file/avple-images/hls/6082a660e00778504ee22c42/playlist.m3u8
|
||||
101,https://47b61.cdnedge.live/file/avple-images/hls/6083ee803b4c791bec2312a9/playlist.m3u8
|
||||
102,https://47b61.cdnedge.live/file/avple-images/hls/613b9b1143083352c84898e4/playlist.m3u8
|
||||
103,https://47b61.cdnedge.live/file/avple-images/hls/60dec5e941b32117d66a0b95/playlist.m3u8
|
||||
104,https://47b61.cdnedge.live/file/avple-images/hls/606eedf13d938869f8b4803e/playlist.m3u8
|
||||
|
||||
🔞传媒9,#genre#
|
||||
40,https://e2fa6.cdnedge.live/file/avple-images/hls/61ce10bdb418404e15c81301/playlist.m3u8
|
||||
41,https://e2fa6.cdnedge.live/file/avple-images/hls/61d8f89f188cab78b243b40d/playlist.m3u8
|
||||
42,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6c455fb6a835028c9ae9/playlist.m3u8
|
||||
43,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6cf95fb6a835028c9aeb/playlist.m3u8
|
||||
44,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6de95fb6a835028c9aee/playlist.m3u8
|
||||
45,https://e2fa6.cdnedge.live/file/avple-images/hls/61de116126bc6674a0936d1b/playlist.m3u8
|
||||
46,https://e2fa6.cdnedge.live/file/avple-images/hls/61e11929b12f2d3579c3423c/playlist.m3u8
|
||||
47,https://e2fa6.cdnedge.live/file/avple-images/hls/61e532eddc7fbb10cb2c4eda/playlist.m3u8
|
||||
48,https://e2fa6.cdnedge.live/file/avple-images/hls/61ea69eedabdc15a14562f7d/playlist.m3u8
|
||||
49,https://e2fa6.cdnedge.live/file/avple-images/hls/61ea6a66dabdc15a14562f7e/playlist.m3u8
|
||||
50,https://e2fa6.cdnedge.live/file/avple-images/hls/61ee473a4e82d1622de7f24e/playlist.m3u8
|
||||
51,https://e2fa6.cdnedge.live/file/avple-images/hls/61efa03b5d579208810784f5/playlist.m3u8
|
||||
52,https://e2fa6.cdnedge.live/file/avple-images/hls/61efa0b25d579208810784f6/playlist.m3u8
|
||||
53,https://e2fa6.cdnedge.live/file/avple-images/hls/61f392da23581479b901ae15/playlist.m3u8
|
||||
54,https://e2fa6.cdnedge.live/file/avple-images/hls/61f701fed7d05308d12ef11c/playlist.m3u8
|
||||
55,https://e2fa6.cdnedge.live/file/avple-images/hls/61f702efd7d05308d12ef11e/playlist.m3u8
|
||||
56,https://e2fa6.cdnedge.live/file/avple-images/hls/61f703ded7d05308d12ef121/playlist.m3u8
|
||||
57,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb893911eff304d6e13796/playlist.m3u8
|
||||
58,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb89a2be50fb04df5de3f7/playlist.m3u8
|
||||
59,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb8b8f11eff304d6e1379d/playlist.m3u8
|
||||
60,https://e2fa6.cdnedge.live/file/avple-images/hls/6202e42e152c48301ba2ac77/playlist.m3u8
|
||||
61,https://e2fa6.cdnedge.live/file/avple-images/hls/6202e4e3152c48301ba2ac79/playlist.m3u8
|
||||
62,https://e2fa6.cdnedge.live/file/avple-images/hls/6209b4def074eb1e0fe6271a/playlist.m3u8
|
||||
63,https://e2fa6.cdnedge.live/file/avple-images/hls/620b8836d0ea7c7d841b2f34/playlist.m3u8
|
||||
64,https://e2fa6.cdnedge.live/file/avple-images/hls/620c65b2d0ea7c7d841b2f3b/playlist.m3u8
|
||||
65,https://e2fa6.cdnedge.live/file/avple-images/hls/62104cd69d14d648884aa815/playlist.m3u8
|
||||
66,https://e2fa6.cdnedge.live/file/avple-images/hls/62104f2e9d14d648884aa81c/playlist.m3u8
|
||||
67,https://e2fa6.cdnedge.live/file/avple-images/hls/6211ad1a5e73c82284228825/playlist.m3u8
|
||||
68,https://e2fa6.cdnedge.live/file/avple-images/hls/6215ac63cef8321ac4bf99a0/playlist.m3u8
|
||||
69,https://e2fa6.cdnedge.live/file/avple-images/hls/6215b6eecef8321ac4bf99a4/playlist.m3u8
|
||||
70,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1c9e0b43873ee3783bf5/playlist.m3u8
|
||||
71,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1eba0b43873ee3783bf7/playlist.m3u8
|
||||
72,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1f320b43873ee3783bf8/playlist.m3u8
|
||||
73,https://e2fa6.cdnedge.live/file/avple-images/hls/622310d31fdb77263ccb386c/playlist.m3u8
|
||||
74,https://e2fa6.cdnedge.live/file/avple-images/hls/62266f52c4dfd90d53d40fc1/playlist.m3u8
|
||||
75,https://e2fa6.cdnedge.live/file/avple-images/hls/622879bfac9a2544846bbfa8/playlist.m3u8
|
||||
76,https://e2fa6.cdnedge.live/file/avple-images/hls/622fc8c1e14ae771445e47fd/playlist.m3u8
|
||||
77,https://e2fa6.cdnedge.live/file/avple-images/hls/62323a128cc9324f4943612e/playlist.m3u8
|
||||
78,https://e2fa6.cdnedge.live/file/avple-images/hls/6233c9aeaefa78093f9ffdd2/playlist.m3u8
|
||||
79,https://e2fa6.cdnedge.live/file/avple-images/hls/6236af021222e41c629a9324/playlist.m3u8
|
||||
80,https://e2fa6.cdnedge.live/file/avple-images/hls/6239257ba14fb341a31f13da/playlist.m3u8
|
||||
81,https://e2fa6.cdnedge.live/file/avple-images/hls/623926a6a14fb341a31f13dd/playlist.m3u8
|
||||
82,https://e2fa6.cdnedge.live/file/avple-images/hls/623aa21aa36ac22379912383/playlist.m3u8
|
||||
83,https://e2fa6.cdnedge.live/file/avple-images/hls/623aa30aa36ac22379912385/playlist.m3u8
|
||||
84,https://e2fa6.cdnedge.live/file/avple-images/hls/623e7be276b51e756d5edc07/playlist.m3u8
|
||||
85,https://e2fa6.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c2b/playlist.m3u8
|
||||
86,https://e2fa6.cdnedge.live/file/avple-images/hls/6242c11b81f80f77774148cc/playlist.m3u8
|
||||
87,https://e2fa6.cdnedge.live/file/avple-images/hls/624941a2cb995938b9053408/playlist.m3u8
|
||||
88,https://e2fa6.cdnedge.live/file/avple-images/hls/624d663b8d83843ab3a678c5/playlist.m3u8
|
||||
89,https://e2fa6.cdnedge.live/file/avple-images/hls/62518930b9fdae53fd99956f/playlist.m3u8
|
||||
90,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973bb9fdae53fd999570/playlist.m3u8
|
||||
92,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999579/playlist.m3u8
|
||||
93,https://e2fa6.cdnedge.live/file/avple-images/hls/6252c0bf6b426e5b63529743/playlist.m3u8
|
||||
94,https://e2fa6.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbd/playlist.m3u8
|
||||
95,https://e2fa6.cdnedge.live/file/avple-images/hls/62549c303d5bac30b2603dc6/playlist.m3u8
|
||||
96,https://e2fa6.cdnedge.live/file/avple-images/hls/626a9b433d701068e96b4fdb/playlist.m3u8
|
||||
97,https://e2fa6.cdnedge.live/file/avple-images/hls/626bcd5d20859323fc450d65/playlist.m3u8
|
||||
98,https://e2fa6.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
99,https://e2fa6.cdnedge.live/file/avple-images/hls/6274c11484b95e04c28dde28/playlist.m3u8
|
||||
100,https://e2fa6.cdnedge.live/file/avple-images/hls/6275225cefd05a44b0f87e97/playlist.m3u8
|
||||
101,https://e2fa6.cdnedge.live/file/avple-images/hls/62767ae33847697e5124b6e0/playlist.m3u8
|
||||
102,https://e2fa6.cdnedge.live/file/avple-images/hls/62767c843847697e5124b6e1/playlist.m3u8
|
||||
103,https://e2fa6.cdnedge.live/file/avple-images/hls/627a69161a1d9a347dd98541/playlist.m3u8
|
||||
104,https://e2fa6.cdnedge.live/file/avple-images/hls/6280b58dfc27be165aeb81d8/playlist.m3u8
|
||||
105,https://e2fa6.cdnedge.live/file/avple-images/hls/6280bd84fc27be165aeb81df/playlist.m3u8
|
||||
106,https://e2fa6.cdnedge.live/file/avple-images/hls/6280da2fef039d5507989172/playlist.m3u8
|
||||
107,https://e2fa6.cdnedge.live/file/avple-images/hls/6284ea06c71b08247ee18e3a/playlist.m3u8
|
||||
108,https://e2fa6.cdnedge.live/file/avple-images/hls/6287971dd28d4f134ac69046/playlist.m3u8
|
||||
109,https://e2fa6.cdnedge.live/file/avple-images/hls/6287980bd28d4f134ac69048/playlist.m3u8
|
||||
110,https://e2fa6.cdnedge.live/file/avple-images/hls/62a58b9e94b044303b9622cf/playlist.m3u8
|
||||
111,https://e2fa6.cdnedge.live/file/avple-images/hls/62a5afee94b044303b9622df/playlist.m3u8
|
||||
112,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad43121a7da2e6584bc8b/playlist.m3u8
|
||||
113,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad4a621a7da2e6584bc8c/playlist.m3u8
|
||||
114,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad60e21a7da2e6584bc8f/playlist.m3u8
|
||||
115,https://e2fa6.cdnedge.live/file/avple-images/hls/62b1b5feeec8264ea0826f2b/playlist.m3u8
|
||||
116,https://e2fa6.cdnedge.live/file/avple-images/hls/62b2dd12eec8264ea0826f30/playlist.m3u8
|
||||
117,https://e2fa6.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b52/playlist.m3u8
|
||||
118,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbe92aea3d425e0a93b797/playlist.m3u8
|
||||
119,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbea1aea3d425e0a93b799/playlist.m3u8
|
||||
120,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbeb0aea3d425e0a93b79b/playlist.m3u8
|
||||
121,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973cb9fdae53fd999575/playlist.m3u8
|
||||
122,https://e2fa6.cdnedge.live/file/avple-images/hls/62879ae2d28d4f134ac69051/playlist.m3u8
|
||||
123,https://e2fa6.cdnedge.live/file/avple-images/hls/628aafc4a1c1cd0b44683ef4/playlist.m3u8
|
||||
124,https://e2fa6.cdnedge.live/file/avple-images/hls/628ab95fa1c1cd0b44683f01/playlist.m3u8
|
||||
125,https://e2fa6.cdnedge.live/file/avple-images/hls/628cc69cde01360ccb2f8e9e/playlist.m3u8
|
||||
126,https://e2fa6.cdnedge.live/file/avple-images/hls/628f8239531f007e5ba30afb/playlist.m3u8
|
||||
127,https://e2fa6.cdnedge.live/file/avple-images/hls/628f84ca531f007e5ba30aff/playlist.m3u8
|
||||
128,https://e2fa6.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
129,https://e2fa6.cdnedge.live/file/avple-images/hls/62a1c429de0057366eb1159a/playlist.m3u8
|
||||
130,https://e2fa6.cdnedge.live/file/avple-images/hls/62a2a99256220431fa6b0d8f/playlist.m3u8
|
||||
131,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbf60aea3d425e0a93b7ae/playlist.m3u8
|
||||
132,https://e2fa6.cdnedge.live/file/avple-images/hls/62c4408b366b240e3b67be30/playlist.m3u8
|
||||
133,https://e2fa6.cdnedge.live/file/avple-images/hls/62c44485366b240e3b67be38/playlist.m3u8
|
||||
134,https://e2fa6.cdnedge.live/file/avple-images/hls/62879937d28d4f134ac6904b/playlist.m3u8
|
||||
135,https://e2fa6.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac6904f/playlist.m3u8
|
||||
|
||||
🔞传媒10,#genre#
|
||||
|
||||
0,https://1xp60.cdnedge.live/file/avple-images/hls/61846369fddb3b0ce1f32686/playlist.m3u8
|
||||
1,https://1xp60.cdnedge.live/file/avple-images/hls/618626d126bdd144b598cbd8/playlist.m3u8
|
||||
36,https://1xp60.cdnedge.live/file/avple-images/hls/6209b467f074eb1e0fe62719/playlist.m3u8
|
||||
37,https://1xp60.cdnedge.live/file/avple-images/hls/6209b51af074eb1e0fe6271b/playlist.m3u8
|
||||
38,https://1xp60.cdnedge.live/file/avple-images/hls/6209b63ac06a441e168f7d16/playlist.m3u8
|
||||
39,https://1xp60.cdnedge.live/file/avple-images/hls/62104eb79d14d648884aa81a/playlist.m3u8
|
||||
40,https://1xp60.cdnedge.live/file/avple-images/hls/6215ab72cef8321ac4bf999d/playlist.m3u8
|
||||
41,https://1xp60.cdnedge.live/file/avple-images/hls/621731ea336b5d6ff709b379/playlist.m3u8
|
||||
42,https://1xp60.cdnedge.live/file/avple-images/hls/62173262336b5d6ff709b37a/playlist.m3u8
|
||||
43,https://1xp60.cdnedge.live/file/avple-images/hls/621e173a0b43873ee3783bee/playlist.m3u8
|
||||
44,https://1xp60.cdnedge.live/file/avple-images/hls/621e18660b43873ee3783bf1/playlist.m3u8
|
||||
45,https://1xp60.cdnedge.live/file/avple-images/hls/62230d8a1fdb77263ccb3863/playlist.m3u8
|
||||
46,https://1xp60.cdnedge.live/file/avple-images/hls/622311861fdb77263ccb386d/playlist.m3u8
|
||||
47,https://1xp60.cdnedge.live/file/avple-images/hls/62247332c6370a74fa39c716/playlist.m3u8
|
||||
48,https://1xp60.cdnedge.live/file/avple-images/hls/62287aaeac9a2544846bbfab/playlist.m3u8
|
||||
49,https://1xp60.cdnedge.live/file/avple-images/hls/622b5dab99043721e41f4765/playlist.m3u8
|
||||
50,https://1xp60.cdnedge.live/file/avple-images/hls/622b661b99043721e41f4772/playlist.m3u8
|
||||
51,https://1xp60.cdnedge.live/file/avple-images/hls/622d4a16e5f4997685910d1a/playlist.m3u8
|
||||
52,https://1xp60.cdnedge.live/file/avple-images/hls/623239d98cc9324f4943612d/playlist.m3u8
|
||||
53,https://1xp60.cdnedge.live/file/avple-images/hls/62323b7a8cc9324f49436132/playlist.m3u8
|
||||
54,https://1xp60.cdnedge.live/file/avple-images/hls/6235062decafc64f34ef85ba/playlist.m3u8
|
||||
55,https://1xp60.cdnedge.live/file/avple-images/hls/62350706ecafc64f34ef85bd/playlist.m3u8
|
||||
56,https://1xp60.cdnedge.live/file/avple-images/hls/6236aff21222e41c629a9327/playlist.m3u8
|
||||
57,https://1xp60.cdnedge.live/file/avple-images/hls/623925f3a14fb341a31f13db/playlist.m3u8
|
||||
58,https://1xp60.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c25/playlist.m3u8
|
||||
59,https://1xp60.cdnedge.live/file/avple-images/hls/6242c20a81f80f77774148ce/playlist.m3u8
|
||||
60,https://1xp60.cdnedge.live/file/avple-images/hls/6242c6881226727c1d866b6a/playlist.m3u8
|
||||
61,https://1xp60.cdnedge.live/file/avple-images/hls/62458f4f9b1b3e33192a301e/playlist.m3u8
|
||||
62,https://1xp60.cdnedge.live/file/avple-images/hls/62492509ddaa1830ff7bacb5/playlist.m3u8
|
||||
63,https://1xp60.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacba/playlist.m3u8
|
||||
64,https://1xp60.cdnedge.live/file/avple-images/hls/62493da7cb995938b9053404/playlist.m3u8
|
||||
65,https://1xp60.cdnedge.live/file/avple-images/hls/62494437cb995938b9053409/playlist.m3u8
|
||||
66,https://1xp60.cdnedge.live/file/avple-images/hls/624bef7e528c292827c459d8/playlist.m3u8
|
||||
67,https://1xp60.cdnedge.live/file/avple-images/hls/624eea616d742407ed435443/playlist.m3u8
|
||||
68,https://1xp60.cdnedge.live/file/avple-images/hls/6250336ef06f665330ec2bda/playlist.m3u8
|
||||
69,https://1xp60.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999577/playlist.m3u8
|
||||
70,https://1xp60.cdnedge.live/file/avple-images/hls/6251a556b9fdae53fd99957a/playlist.m3u8
|
||||
71,https://1xp60.cdnedge.live/file/avple-images/hls/626fb3ce3ddea14c11aa4aab/playlist.m3u8
|
||||
72,https://1xp60.cdnedge.live/file/avple-images/hls/627229924deadc023a8a0990/playlist.m3u8
|
||||
73,https://1xp60.cdnedge.live/file/avple-images/hls/62722b724deadc023a8a0994/playlist.m3u8
|
||||
74,https://1xp60.cdnedge.live/file/avple-images/hls/627233694deadc023a8a0996/playlist.m3u8
|
||||
75,https://1xp60.cdnedge.live/file/avple-images/hls/62764bc63847697e5124b6d4/playlist.m3u8
|
||||
76,https://1xp60.cdnedge.live/file/avple-images/hls/62764bc73847697e5124b6d5/playlist.m3u8
|
||||
77,https://1xp60.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1d/playlist.m3u8
|
||||
78,https://1xp60.cdnedge.live/file/avple-images/hls/627a582c1a1d9a347dd9853b/playlist.m3u8
|
||||
79,https://1xp60.cdnedge.live/file/avple-images/hls/627a5a841a1d9a347dd9853f/playlist.m3u8
|
||||
80,https://1xp60.cdnedge.live/file/avple-images/hls/6280b3effc27be165aeb81d6/playlist.m3u8
|
||||
81,https://1xp60.cdnedge.live/file/avple-images/hls/6280b4d7fc27be165aeb81d7/playlist.m3u8
|
||||
82,https://1xp60.cdnedge.live/file/avple-images/hls/6280bd84fc27be165aeb81df/playlist.m3u8
|
||||
83,https://1xp60.cdnedge.live/file/avple-images/hls/6284e210c71b08247ee18e2e/playlist.m3u8
|
||||
84,https://1xp60.cdnedge.live/file/avple-images/hls/6284e301c71b08247ee18e30/playlist.m3u8
|
||||
85,https://1xp60.cdnedge.live/file/avple-images/hls/6284e4a4c71b08247ee18e33/playlist.m3u8
|
||||
86,https://1xp60.cdnedge.live/file/avple-images/hls/6284e7b1c71b08247ee18e38/playlist.m3u8
|
||||
87,https://1xp60.cdnedge.live/file/avple-images/hls/628798c2d28d4f134ac6904a/playlist.m3u8
|
||||
89,https://1xp60.cdnedge.live/file/avple-images/hls/62879b91d28d4f134ac69052/playlist.m3u8
|
||||
90,https://1xp60.cdnedge.live/file/avple-images/hls/6289a97bb982a351108bf732/playlist.m3u8
|
||||
92,https://1xp60.cdnedge.live/file/avple-images/hls/628cc69cde01360ccb2f8e9e/playlist.m3u8
|
||||
93,https://1xp60.cdnedge.live/file/avple-images/hls/628f7ef3531f007e5ba30af6/playlist.m3u8
|
||||
94,https://1xp60.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
95,https://1xp60.cdnedge.live/file/avple-images/hls/6292485f777f8769be5fdfa8/playlist.m3u8
|
||||
96,https://1xp60.cdnedge.live/file/avple-images/hls/629574f2180f8c65c7d908ab/playlist.m3u8
|
||||
97,https://1xp60.cdnedge.live/file/avple-images/hls/6295f5667ef42454a69c76d4/playlist.m3u8
|
||||
98,https://1xp60.cdnedge.live/file/avple-images/hls/6298690b23d5972db0bfc99f/playlist.m3u8
|
||||
100,https://1xp60.cdnedge.live/file/avple-images/hls/62a2a64a56220431fa6b0d89/playlist.m3u8
|
||||
101,https://1xp60.cdnedge.live/file/avple-images/hls/62a5a70894b044303b9622d4/playlist.m3u8
|
||||
102,https://1xp60.cdnedge.live/file/avple-images/hls/62aacb0c21a7da2e6584bc80/playlist.m3u8
|
||||
103,https://1xp60.cdnedge.live/file/avple-images/hls/62aece15c556631aff1378ee/playlist.m3u8
|
||||
104,https://1xp60.cdnedge.live/file/avple-images/hls/62b1b586eec8264ea0826f2a/playlist.m3u8
|
||||
108,https://1xp60.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b51/playlist.m3u8
|
||||
109,https://1xp60.cdnedge.live/file/avple-images/hls/62bbe9dfea3d425e0a93b798/playlist.m3u8
|
||||
110,https://1xp60.cdnedge.live/file/avple-images/hls/62bbf4a3ea3d425e0a93b7aa/playlist.m3u8
|
||||
111,https://1xp60.cdnedge.live/file/avple-images/hls/62bd8531d0fa6a48496bbf5a/playlist.m3u8
|
||||
112,https://1xp60.cdnedge.live/file/avple-images/hls/62bd878ad0fa6a48496bbf5c/playlist.m3u8
|
||||
114,https://1xp60.cdnedge.live/file/avple-images/hls/6171a909f8003d17dfd1a738/playlist.m3u8
|
||||
115,https://1xp60.cdnedge.live/file/avple-images/hls/6173098916713849c8fc4705/playlist.m3u8
|
||||
116,https://1xp60.cdnedge.live/file/avple-images/hls/6184614dfddb3b0ce1f32681/playlist.m3u8
|
||||
117,https://1xp60.cdnedge.live/file/avple-images/hls/61ecbf5a7580a3314beba2ab/playlist.m3u8
|
||||
118,https://1xp60.cdnedge.live/file/avple-images/hls/6242c68b1226727c1d866b6c/playlist.m3u8
|
||||
119,https://1xp60.cdnedge.live/file/avple-images/hls/628ab12ba1c1cd0b44683ef5/playlist.m3u8
|
||||
🔞一本道1,#genre#
|
||||
|
||||
一本道_1,https://vip4.ddyunbo.com/20210210/IjSENz6s/index.m3u8
|
||||
一本道_2,https://vip4.ddyunbo.com/20210209/dEzJjeSU/index.m3u8
|
||||
一本道_3,https://vip4.ddyunbo.com/20210208/6LaKp6lZ/index.m3u8
|
||||
一本道_4,https://vip4.ddyunbo.com/20210208/uWwFdRB7/index.m3u8
|
||||
一本道_5,https://vip4.ddyunbo.com/20210208/EZRbwZn4/index.m3u8
|
||||
一本道_6,https://vip4.ddyunbo.com/20210207/Lyhqjp3z/index.m3u8
|
||||
一本道_7,https://vip4.ddyunbo.com/20210203/DYtc79vE/index.m3u8
|
||||
一本道_8,https://vip4.ddyunbo.com/20210202/cy0urBhD/index.m3u8
|
||||
一本道_9,https://vip4.ddyunbo.com/20210202/cOf9FXgF/index.m3u8
|
||||
一本道_10,https://vip4.ddyunbo.com/20210202/jnSPf5L7/index.m3u8
|
||||
一本道_11,https://vip4.ddyunbo.com/20210202/6wLYbWPq/index.m3u8
|
||||
一本道_12,https://vip4.ddyunbo.com/20190904/HqGckgKl/index.m3u8
|
||||
一本道_13,https://vip4.ddyunbo.com/20190904/m94xaoPh/index.m3u8
|
||||
一本道_14,https://vip4.ddyunbo.com/20190908/1oZ5V2g2/index.m3u8
|
||||
一本道_15,https://vip4.ddyunbo.com/20190904/wJoZlwtT/index.m3u8
|
||||
一本道_16,https://vip4.ddyunbo.com/20190904/ZnGN7sEl/index.m3u8
|
||||
一本道_17,https://vip4.ddyunbo.com/20190908/qvYslaAx/index.m3u8
|
||||
一本道_18,https://vip4.ddyunbo.com/20190908/ETghLd5D/index.m3u8
|
||||
一本道_19,https://vip4.ddyunbo.com/20190908/nvueB1Az/index.m3u8
|
||||
一本道_20,https://vip4.ddyunbo.com/20190908/zSd2DI9R/index.m3u8
|
||||
一本道_21,https://vip4.ddyunbo.com/20190914/dSIYelxz/index.m3u8
|
||||
一本道_22,https://vip4.ddyunbo.com/20190914/TFWmOomT/index.m3u8
|
||||
一本道_23,https://vip4.ddyunbo.com/20190914/vL0TDJOa/index.m3u8
|
||||
一本道_24,https://vip4.ddyunbo.com/20190918/7mkn1AhN/index.m3u8
|
||||
一本道_25,https://vip4.ddyunbo.com/20190923/WebyDiop/index.m3u8
|
||||
一本道_26,https://vip4.ddyunbo.com/20191003/iRZV03AE/index.m3u8
|
||||
一本道_27,https://vip4.ddyunbo.com/20191003/EuwbmURX/index.m3u8
|
||||
一本道_28,https://vip4.ddyunbo.com/20191004/HjrnnnDD/index.m3u8
|
||||
一本道_29,https://vip4.ddyunbo.com/20191004/GKWK7Q5F/index.m3u8
|
||||
一本道_30,https://vip4.ddyunbo.com/20191004/3T6aTxbN/index.m3u8
|
||||
一本道_31,https://vip4.ddyunbo.com/20191004/FxbqgEFY/index.m3u8
|
||||
一本道_32,https://vip4.ddyunbo.com/20191004/rURK4pfY/index.m3u8
|
||||
一本道_33,https://vip4.ddyunbo.com/20191007/7G1CWNc8/index.m3u8
|
||||
一本道_34,https://vip4.ddyunbo.com/20191007/IFlq5eON/index.m3u8
|
||||
一本道_35,https://vip4.ddyunbo.com/20191007/qISqWik0/index.m3u8
|
||||
一本道_36,https://vip4.ddyunbo.com/20190907/PH1oGegu/index.m3u8
|
||||
一本道_37,https://vip4.ddyunbo.com/20191206/aIGd1S2S/index.m3u8
|
||||
一本道_39,https://vip4.ddyunbo.com/20191209/eOWqpnjK/index.m3u8
|
||||
一本道_40,https://vip4.ddyunbo.com/20191203/kT2Rfcof/index.m3u8
|
||||
一本道_41,https://vip4.ddyunbo.com/20191203/eKcaCDs1/index.m3u8
|
||||
一本道_42,https://vip4.ddyunbo.com/20191204/jouQzYVh/index.m3u8
|
||||
一本道_43,https://vip4.ddyunbo.com/20190824/InhHOPJz/index.m3u8
|
||||
一本道_44,https://vip4.ddyunbo.com/20191201/yKe6LATy/index.m3u8
|
||||
一本道_45,https://vip4.ddyunbo.com/20191128/b49owsxG/index.m3u8
|
||||
一本道_46,https://vip4.ddyunbo.com/20191104/NAZTGvOC/index.m3u8
|
||||
一本道_47,https://vip4.ddyunbo.com/20190724/fpVllSSA/index.m3u8
|
||||
一本道_48,https://vip4.ddyunbo.com/20191115/nz0OLAD7/index.m3u8
|
||||
一本道_49,https://vip4.ddyunbo.com/20191205/ZgkgLcVy/index.m3u8
|
||||
一本道_50,https://vip4.ddyunbo.com/20191111/YQ1Jvlo7/index.m3u8
|
||||
一本道_51,https://vip4.ddyunbo.com/20191203/mXPJeA8L/index.m3u8
|
||||
一本道_52,https://vip4.ddyunbo.com/20191201/aBIJI8XX/index.m3u8
|
||||
一本道_53,https://vip4.ddyunbo.com/20191209/nBF7mWF0/index.m3u8
|
||||
一本道_54,https://vip4.ddyunbo.com/20191211/EmnFBcTv/index.m3u8
|
||||
一本道_55,https://vip4.ddyunbo.com/20191203/tHSBAUjL/index.m3u8
|
||||
一本道_56,https://vip4.ddyunbo.com/20191207/3l1NKbd9/index.m3u8
|
||||
一本道_57,https://vip4.ddyunbo.com/20191128/6sgJpPs4/index.m3u8
|
||||
一本道_58,https://vip4.ddyunbo.com/20191121/NoBsuuFA/index.m3u8
|
||||
一本道_59,https://vip4.ddyunbo.com/20191206/SGNaCdAK/index.m3u8
|
||||
一本道_60,https://vip4.ddyunbo.com/20191112/aKyYPZ4O/index.m3u8
|
||||
一本道_61,https://vip4.ddyunbo.com/20191130/u0WbYaDT/index.m3u8
|
||||
一本道_62,https://vip4.ddyunbo.com/20191111/r5A7emIq/index.m3u8
|
||||
一本道_63,https://vip4.ddyunbo.com/20191102/PNo3bOxT/index.m3u8
|
||||
一本道_64,https://vip4.ddyunbo.com/20191210/cyck231P/index.m3u8
|
||||
一本道_65,https://vip4.ddyunbo.com/20191203/qg6ciKiI/index.m3u8
|
||||
一本道_66,https://vip4.ddyunbo.com/20191122/r7naPuig/index.m3u8
|
||||
一本道_67,https://vip4.ddyunbo.com/20191205/SIKrL2zv/index.m3u8
|
||||
一本道_68,https://vip4.ddyunbo.com/20191211/dFWVbgGO/index.m3u8
|
||||
一本道_69,https://vip4.ddyunbo.com/20191201/XNRFDngP/index.m3u8
|
||||
一本道_70,https://vip4.ddyunbo.com/20191203/ZRDWzUqf/index.m3u8
|
||||
一本道_71,https://vip4.ddyunbo.com/20191128/J5nWdwcz/index.m3u8
|
||||
一本道_72,https://vip4.ddyunbo.com/20191201/Rf4zb6hN/index.m3u8
|
||||
一本道_73,https://vip4.ddyunbo.com/20191201/CMNsuXH3/index.m3u8
|
||||
一本道_74,https://vip4.ddyunbo.com/20191203/vBvvarir/index.m3u8
|
||||
一本道_75,https://vip4.ddyunbo.com/20191211/nOiZ9PsG/index.m3u8
|
||||
一本道_76,https://vip4.ddyunbo.com/20191115/tLqC19DS/index.m3u8
|
||||
一本道_77,https://vip4.ddyunbo.com/20191104/5Br1zP28/index.m3u8
|
||||
一本道_78,https://vip4.ddyunbo.com/20190801/YErziN66/index.m3u8
|
||||
一本道_79,https://vip4.ddyunbo.com/20190729/Lv7KSuaP/index.m3u8
|
||||
一本道_80,https://vip4.ddyunbo.com/20191205/0oLr2jlQ/index.m3u8
|
||||
一本道_81,https://vip4.ddyunbo.com/20191110/Z3mWJbrz/index.m3u8
|
||||
一本道_82,https://vip4.ddyunbo.com/20190724/SRcabvNZ/index.m3u8
|
||||
一本道_83,https://vip4.ddyunbo.com/20191127/52rP822O/index.m3u8
|
||||
一本道_84,https://vip4.ddyunbo.com/20191207/p0zvtDBY/index.m3u8
|
||||
一本道_85,https://vip4.ddyunbo.com/20191208/dw94ieYl/index.m3u8
|
||||
一本道_86,https://vip4.ddyunbo.com/20190913/MA5Cn7rw/index.m3u8
|
||||
一本道_87,https://vip4.ddyunbo.com/20191210/tyN6I80q/index.m3u8
|
||||
一本道_88,https://vip4.ddyunbo.com/20191122/QMk66MvN/index.m3u8
|
||||
一本道_89,https://vip4.ddyunbo.com/20191206/trGVPzmt/index.m3u8
|
||||
一本道_90,https://vip4.ddyunbo.com/20191010/xcMAZOOw/index.m3u8
|
||||
一本道_91,https://vip4.ddyunbo.com/20191207/tBB5RkgE/index.m3u8
|
||||
一本道_92,https://vip4.ddyunbo.com/20191207/Le7BwZ7a/index.m3u8
|
||||
一本道_93,https://vip4.ddyunbo.com/20191115/XU1ZFXas/index.m3u8
|
||||
一本道_94,https://vip4.ddyunbo.com/20191205/VDovZ2mt/index.m3u8
|
||||
一本道_95,https://vip4.ddyunbo.com/20191203/N6QagWOF/index.m3u8
|
||||
一本道_96,https://vip4.ddyunbo.com/20191125/OqB6IP7s/index.m3u8
|
||||
一本道_97,https://vip4.ddyunbo.com/20191121/qFgFA0vx/index.m3u8
|
||||
一本道_98,https://vip4.ddyunbo.com/20191127/xnpQRfvD/index.m3u8
|
||||
一本道_99,https://vip4.ddyunbo.com/20191204/6UOQDpAF/index.m3u8
|
||||
一本道_100,https://vip4.ddyunbo.com/20191210/iClVJoQP/index.m3u8
|
||||
一本道_101,https://vip4.ddyunbo.com/20190801/68w4hmaH/index.m3u8
|
||||
一本道_102,https://vip4.ddyunbo.com/20191203/AdOtik4n/index.m3u8
|
||||
一本道_103,https://vip4.ddyunbo.com/20191207/Aawt3pa8/index.m3u8
|
||||
一本道_104,https://vip4.ddyunbo.com/20191118/cqj1PHFT/index.m3u8
|
||||
一本道_105,https://vip4.ddyunbo.com/20191203/lrQfHler/index.m3u8
|
||||
一本道_106,https://vip4.ddyunbo.com/20191203/5E24xFQu/index.m3u8
|
||||
一本道_107,https://vip4.ddyunbo.com/20191206/wElIhu09/index.m3u8
|
||||
一本道_108,https://vip4.ddyunbo.com/20191209/zpkqVbXG/index.m3u8
|
||||
一本道_109,https://vip4.ddyunbo.com/20191130/5D8rho9Y/index.m3u8
|
||||
一本道_110,https://vip4.ddyunbo.com/20191125/b7iK6Oay/index.m3u8
|
||||
一本道_111,https://vip4.ddyunbo.com/20191118/pa08NZI8/index.m3u8
|
||||
一本道_112,https://vip4.ddyunbo.com/20191209/ptaY4sdV/index.m3u8
|
||||
一本道_113,https://vip4.ddyunbo.com/20191208/YoOOpIoB/index.m3u8
|
||||
一本道_114,https://vip4.ddyunbo.com/20191206/KlOfpmXm/index.m3u8
|
||||
一本道_115,https://vip4.ddyunbo.com/20191128/bhlfixkB/index.m3u8
|
||||
一本道_116,https://vip4.ddyunbo.com/20191004/27dVXQbM/index.m3u8
|
||||
一本道_117,https://vip4.ddyunbo.com/20191130/opfnHxZs/index.m3u8
|
||||
一本道_118,https://vip4.ddyunbo.com/20191020/HFA1EICB/index.m3u8
|
||||
一本道_119,https://vip4.ddyunbo.com/20190725/QoR2tEMa/index.m3u8
|
||||
一本道_120,https://vip4.ddyunbo.com/20191203/a3QaDIMv/index.m3u8
|
||||
一本道_121,https://vip4.ddyunbo.com/20191104/j2LhlTOV/index.m3u8
|
||||
一本道_122,https://vip4.ddyunbo.com/20191008/zaPfpDWi/index.m3u8
|
||||
一本道_123,https://vip4.ddyunbo.com/20191206/beXglix7/index.m3u8
|
||||
一本道_124,https://vip4.ddyunbo.com/20191207/ywgZ4c11/index.m3u8
|
||||
一本道_125,https://vip4.ddyunbo.com/20191122/CTiWjkn3/index.m3u8
|
||||
一本道_126,https://vip4.ddyunbo.com/20191203/fo9gOCfd/index.m3u8
|
||||
一本道_127,https://vip4.ddyunbo.com/20191128/LfZiCMWd/index.m3u8
|
||||
一本道_128,https://vip4.ddyunbo.com/20191102/VMYrbDYq/index.m3u8
|
||||
一本道_129,https://vip4.ddyunbo.com/20191201/JkE6BitE/index.m3u8
|
||||
一本道_130,https://vip4.ddyunbo.com/20191121/tYZpFfYL/index.m3u8
|
||||
一本道_131,https://vip4.ddyunbo.com/20191102/k5XyaYgP/index.m3u8
|
||||
一本道_132,https://vip4.ddyunbo.com/20191008/aJt3osLQ/index.m3u8
|
||||
一本道_133,https://vip4.ddyunbo.com/20191206/W6K0WfDk/index.m3u8
|
||||
一本道_134,https://vip4.ddyunbo.com/20190712/AWmTfG0V/index.m3u8
|
||||
一本道_135,https://vip4.ddyunbo.com/20191203/2MAO7hnv/index.m3u8
|
||||
一本道_136,https://vip4.ddyunbo.com/20191122/XqkKvmTm/index.m3u8
|
||||
一本道_137,https://vip4.ddyunbo.com/20191205/ZhyfTfzD/index.m3u8
|
||||
一本道_138,https://vip4.ddyunbo.com/20191209/Cg46YFFD/index.m3u8
|
||||
一本道_139,https://vip4.ddyunbo.com/20191203/5sYrnUa8/index.m3u8
|
||||
一本道_140,https://vip4.ddyunbo.com/20191206/D2NceISA/index.m3u8
|
||||
一本道_141,https://vip4.ddyunbo.com/20190703/TS1mxp2x/index.m3u8
|
||||
一本道_142,https://vip4.ddyunbo.com/20191127/28kOylU9/index.m3u8
|
||||
一本道_143,https://vip4.ddyunbo.com/20190924/1r6n6c3u/index.m3u8
|
||||
一本道_144,https://vip4.ddyunbo.com/20191201/8UTueLDg/index.m3u8
|
||||
一本道_145,https://vip4.ddyunbo.com/20191011/eswYrYkE/index.m3u8
|
||||
一本道_146,https://vip4.ddyunbo.com/20191109/7zPRNKbZ/index.m3u8
|
||||
一本道_147,https://vip4.ddyunbo.com/20191208/0gSaR7IX/index.m3u8
|
||||
一本道_148,https://vip4.ddyunbo.com/20191203/B5DlB2Ib/index.m3u8
|
||||
一本道_149,https://vip4.ddyunbo.com/20191108/iI37Slwz/index.m3u8
|
||||
一本道_150,https://vip4.ddyunbo.com/20191115/nxekkiWv/index.m3u8
|
||||
一本道_151,https://vip4.ddyunbo.com/20191206/DRjLLulI/index.m3u8
|
||||
一本道_152,https://vip4.ddyunbo.com/20191208/F59kEATh/index.m3u8
|
||||
一本道_153,https://vip4.ddyunbo.com/20191205/u11PSJcw/index.m3u8
|
||||
一本道_154,https://vip4.ddyunbo.com/20191203/PldaO4lb/index.m3u8
|
||||
一本道_155,https://vip4.ddyunbo.com/20191206/AYu0BDSt/index.m3u8
|
||||
一本道_156,https://vip4.ddyunbo.com/20191211/M3q09qGG/index.m3u8
|
||||
一本道_157,https://vip4.ddyunbo.com/20191128/tZFK4HY2/index.m3u8
|
||||
一本道_158,https://vip4.ddyunbo.com/20191130/tZycHwv3/index.m3u8
|
||||
一本道_159,https://vip4.ddyunbo.com/20191111/1B9E9krC/index.m3u8
|
||||
一本道_160,https://vip4.ddyunbo.com/20190911/TkgRmCOM/index.m3u8
|
||||
一本道_161,https://vip4.ddyunbo.com/20191121/xcENj210/index.m3u8
|
||||
一本道_162,https://vip4.ddyunbo.com/20190821/N8XQWA19/index.m3u8
|
||||
一本道_163,https://vip4.ddyunbo.com/20191121/5fNyVOF0/index.m3u8
|
||||
一本道_164,https://vip4.ddyunbo.com/20191120/c3IW5efi/index.m3u8
|
||||
一本道_165,https://vip4.ddyunbo.com/20191208/bbjKax2R/index.m3u8
|
||||
一本道_166,https://vip4.ddyunbo.com/20191005/pXmIH9LF/index.m3u8
|
||||
一本道_167,https://vip4.ddyunbo.com/20191125/VWWVU5vF/index.m3u8
|
||||
一本道_168,https://vip4.ddyunbo.com/20191205/5JT6u3Ag/index.m3u8
|
||||
一本道_169,https://vip4.ddyunbo.com/20191206/jrpIh9qw/index.m3u8
|
||||
一本道_170,https://vip4.ddyunbo.com/20191206/mXdjz6j1/index.m3u8
|
||||
一本道_172,https://vip4.ddyunbo.com/20191130/iEZY20NL/index.m3u8
|
||||
一本道_173,https://vip4.ddyunbo.com/20191201/XJwjwidw/index.m3u8
|
||||
一本道_174,https://vip4.ddyunbo.com/20191110/YvQVLhAg/index.m3u8
|
||||
一本道_175,https://vip4.ddyunbo.com/20190918/dW0J9fzv/index.m3u8
|
||||
一本道_176,https://vip4.ddyunbo.com/20191125/vpMcTD6O/index.m3u8
|
||||
一本道_177,https://vip4.ddyunbo.com/20191203/q5YvttfY/index.m3u8
|
||||
一本道_178,https://vip4.ddyunbo.com/20191208/7se6brgf/index.m3u8
|
||||
一本道_179,https://vip4.ddyunbo.com/20191207/gJmk2Ml1/index.m3u8
|
||||
一本道_180,https://vip4.ddyunbo.com/20191103/HSJrGNbs/index.m3u8
|
||||
一本道_181,https://vip4.ddyunbo.com/20191110/YG00RmgF/index.m3u8
|
||||
一本道_182,https://vip4.ddyunbo.com/20191203/nYjY9u2u/index.m3u8
|
||||
一本道_183,https://vip4.ddyunbo.com/20191128/XyZVKafW/index.m3u8
|
||||
一本道_184,https://vip4.ddyunbo.com/20190907/j4Y1yHpk/index.m3u8
|
||||
一本道_185,https://vip4.ddyunbo.com/20191128/zrhWuPR1/index.m3u8
|
||||
一本道_186,https://vip4.ddyunbo.com/20191110/7bbcTr2N/index.m3u8
|
||||
一本道_187,https://vip4.ddyunbo.com/20191127/65PpXoMw/index.m3u8
|
||||
一本道_188,https://vip4.ddyunbo.com/20191203/0ir3uu6a/index.m3u8
|
||||
一本道_189,https://vip4.ddyunbo.com/20191029/iONkDOhp/index.m3u8
|
||||
一本道_190,https://vip4.ddyunbo.com/20191020/Ez8f8YXO/index.m3u8
|
||||
一本道_191,https://vip4.ddyunbo.com/20191121/EkloOcUP/index.m3u8
|
||||
一本道_192,https://vip4.ddyunbo.com/20191206/boYeS27U/index.m3u8
|
||||
一本道_193,https://vip4.ddyunbo.com/20191124/L8pKppVU/index.m3u8
|
||||
一本道_194,https://vip4.ddyunbo.com/20190929/0PhfynWn/index.m3u8
|
||||
一本道_195,https://vip4.ddyunbo.com/20191112/10y3MJVC/index.m3u8
|
||||
一本道_196,https://vip4.ddyunbo.com/20191130/akowH7sK/index.m3u8
|
||||
一本道_197,https://vip4.ddyunbo.com/20190924/cJ5trNUQ/index.m3u8
|
||||
一本道_198,https://vip4.ddyunbo.com/20191130/oR4CtFQl/index.m3u8
|
||||
一本道_199,https://vip4.ddyunbo.com/20191015/20mRMz60/index.m3u8
|
||||
一本道_200,https://vip4.ddyunbo.com/20191205/sTKpDkTR/index.m3u8
|
||||
一本道_201,https://vip4.ddyunbo.com/20191128/snyFis8F/index.m3u8
|
||||
一本道_202,https://vip4.ddyunbo.com/20191203/52ec89LM/index.m3u8
|
||||
一本道_203,https://vip4.ddyunbo.com/20191125/vweaBCJp/index.m3u8
|
||||
一本道_204,https://vip4.ddyunbo.com/20190902/yFCyAZkG/index.m3u8
|
||||
一本道_205,https://vip4.ddyunbo.com/20191203/ePyVUP8Y/index.m3u8
|
||||
一本道_206,https://vip4.ddyunbo.com/20191212/yREukvC1/index.m3u8
|
||||
一本道_207,https://vip4.ddyunbo.com/20191206/KcxaHKNK/index.m3u8
|
||||
一本道_208,https://vip4.ddyunbo.com/20191130/aACNUDUx/index.m3u8
|
||||
一本道_209,https://vip4.ddyunbo.com/20191110/ntzb9SWV/index.m3u8
|
||||
一本道_210,https://vip4.ddyunbo.com/20191207/IxGltUle/index.m3u8
|
||||
一本道_211,https://vip4.ddyunbo.com/20191110/NwogQedH/index.m3u8
|
||||
一本道_212,https://vip4.ddyunbo.com/20191025/ugrhYcjr/index.m3u8
|
||||
一本道_213,https://vip4.ddyunbo.com/20191127/EDyBe1NG/index.m3u8
|
||||
一本道_214,https://vip4.ddyunbo.com/20191207/kzgjv1Sj/index.m3u8
|
||||
一本道_215,https://vip4.ddyunbo.com/20191207/V8On9hi5/index.m3u8
|
||||
一本道_216,https://vip4.ddyunbo.com/20191111/yM2sIi6M/index.m3u8
|
||||
一本道_217,https://vip4.ddyunbo.com/20191111/8ps41QnU/index.m3u8
|
||||
一本道_218,https://vip4.ddyunbo.com/20191031/ZqY7BWDT/index.m3u8
|
||||
一本道_219,https://vip4.ddyunbo.com/20191201/Lwlr3Bkj/index.m3u8
|
||||
一本道_220,https://vip4.ddyunbo.com/20191121/xYprKCt3/index.m3u8
|
||||
一本道_221,https://vip4.ddyunbo.com/20191130/bxViB0PY/index.m3u8
|
||||
一本道_222,https://vip4.ddyunbo.com/20191128/iWncGfHM/index.m3u8
|
||||
一本道_223,https://vip4.ddyunbo.com/20191128/ZupzK8uN/index.m3u8
|
||||
一本道_224,https://vip4.ddyunbo.com/20191029/S6qqt8Mh/index.m3u8
|
||||
一本道_225,https://vip4.ddyunbo.com/20191124/pQu6kMjM/index.m3u8
|
||||
一本道_226,https://vip4.ddyunbo.com/20191130/OQCGGLU4/index.m3u8
|
||||
一本道_227,https://vip4.ddyunbo.com/20191201/K4Kv3dAa/index.m3u8
|
||||
一本道_228,https://vip4.ddyunbo.com/20191108/oIMSxrHo/index.m3u8
|
||||
一本道_229,https://vip4.ddyunbo.com/20191019/qYAR1H3v/index.m3u8
|
||||
一本道_230,https://vip4.ddyunbo.com/20191211/VzljMkkQ/index.m3u8
|
||||
一本道_231,https://vip4.ddyunbo.com/20191130/DKO396f2/index.m3u8
|
||||
一本道_232,https://vip4.ddyunbo.com/20191130/a659X1xA/index.m3u8
|
||||
一本道_233,https://vip4.ddyunbo.com/20191121/u8r59V60/index.m3u8
|
||||
一本道_234,https://vip4.ddyunbo.com/20191212/HePcXP5K/index.m3u8
|
||||
一本道_235,https://vip4.ddyunbo.com/20190728/DwIqgHeT/index.m3u8
|
||||
一本道_236,https://vip4.ddyunbo.com/20191118/Scm0EnRV/index.m3u8
|
||||
一本道_237,https://vip4.ddyunbo.com/20191128/ME2HqHFH/index.m3u8
|
||||
一本道_238,https://vip4.ddyunbo.com/20191023/soiNyMvv/index.m3u8
|
||||
一本道_239,https://vip4.ddyunbo.com/20191130/inbbYKzO/index.m3u8
|
||||
一本道_240,https://vip4.ddyunbo.com/20191207/yjExYb5t/index.m3u8
|
||||
一本道_241,https://vip4.ddyunbo.com/20191121/084gIuVz/index.m3u8
|
||||
一本道_242,https://vip4.ddyunbo.com/20191203/eBg5Mcqa/index.m3u8
|
||||
一本道_243,https://vip4.ddyunbo.com/20191028/bnoZp1dl/index.m3u8
|
||||
一本道_244,https://vip4.ddyunbo.com/20191211/tFdr7uBO/index.m3u8
|
||||
一本道_245,https://vip4.ddyunbo.com/20190722/i3pcddxz/index.m3u8
|
||||
一本道_246,https://vip4.ddyunbo.com/20191026/dZeD0hLR/index.m3u8
|
||||
一本道_247,https://vip4.ddyunbo.com/20191110/KRbTUVDE/index.m3u8
|
||||
一本道_248,https://vip4.ddyunbo.com/20191207/UkvaFQxt/index.m3u8
|
||||
一本道_249,https://vip4.ddyunbo.com/20191102/E6lR5iaR/index.m3u8
|
||||
一本道_250,https://vip4.ddyunbo.com/20190820/r53WGvGC/index.m3u8
|
||||
一本道_251,https://vip4.ddyunbo.com/20191212/P8ADFznS/index.m3u8
|
||||
一本道_252,https://vip4.ddyunbo.com/20191201/C0NIMhZQ/index.m3u8
|
||||
一本道_253,https://vip4.ddyunbo.com/20191203/pXGXXkXg/index.m3u8
|
||||
一本道_254,https://vip4.ddyunbo.com/20191206/Y5TgrZUy/index.m3u8
|
||||
一本道_255,https://vip4.ddyunbo.com/20191128/GmCOlAxE/index.m3u8
|
||||
一本道_256,https://vip4.ddyunbo.com/20191130/lDyoKDKc/index.m3u8
|
||||
一本道_257,https://vip4.ddyunbo.com/20191211/jstuOIyD/index.m3u8
|
||||
一本道_258,https://vip4.ddyunbo.com/20190810/RdevEXDi/index.m3u8
|
||||
一本道_259,https://vip4.ddyunbo.com/20191206/90tduWjm/index.m3u8
|
||||
一本道_260,https://vip4.ddyunbo.com/20191201/536eRGt7/index.m3u8
|
||||
一本道_261,https://vip4.ddyunbo.com/20190729/aN7GcbnY/index.m3u8
|
||||
一本道_262,https://vip4.ddyunbo.com/20191206/R61RAjBC/index.m3u8
|
||||
一本道_263,https://vip4.ddyunbo.com/20191122/kN2bDRaJ/index.m3u8
|
||||
一本道_264,https://vip4.ddyunbo.com/20191201/YEg5oWil/index.m3u8
|
||||
一本道_265,https://vip4.ddyunbo.com/20191127/jxrCEPud/index.m3u8
|
||||
一本道_266,https://vip4.ddyunbo.com/20190801/HsTzj1M0/index.m3u8
|
||||
一本道_267,https://vip4.ddyunbo.com/20190830/B57lK9fN/index.m3u8
|
||||
一本道_268,https://vip4.ddyunbo.com/20191208/BS0JwI5Z/index.m3u8
|
||||
一本道_269,https://vip4.ddyunbo.com/20191206/UJGFkoQP/index.m3u8
|
||||
一本道_270,https://vip4.ddyunbo.com/20191207/pOgUw8vR/index.m3u8
|
||||
一本道_271,https://vip4.ddyunbo.com/20191201/mIG17Z5S/index.m3u8
|
||||
一本道_272,https://vip4.ddyunbo.com/20190721/xUX3F0o1/index.m3u8
|
||||
一本道_273,https://vip4.ddyunbo.com/20191013/aM9bNES7/index.m3u8
|
||||
一本道_274,https://vip4.ddyunbo.com/20191102/thRqkr3J/index.m3u8
|
||||
一本道_275,https://vip4.ddyunbo.com/20191008/ONnuL7h3/index.m3u8
|
||||
一本道_276,https://vip4.ddyunbo.com/20190904/f9ADZ1CY/index.m3u8
|
||||
一本道_277,https://vip4.ddyunbo.com/20190904/UfqniQi1/index.m3u8
|
||||
一本道_278,https://vip4.ddyunbo.com/20191211/FFE0h29v/index.m3u8
|
||||
一本道_279,https://vip4.ddyunbo.com/20191203/nX7ffHF1/index.m3u8
|
||||
一本道_280,https://vip4.ddyunbo.com/20191121/VmpUGI2G/index.m3u8
|
||||
一本道_281,https://vip4.ddyunbo.com/20190909/jRVMH9sc/index.m3u8
|
||||
一本道_282,https://vip4.ddyunbo.com/20191209/cALP0OD4/index.m3u8
|
||||
一本道_283,https://vip4.ddyunbo.com/20191128/xrAM7jTH/index.m3u8
|
||||
一本道_284,https://vip4.ddyunbo.com/20191121/ChPdFva9/index.m3u8
|
||||
一本道_285,https://vip4.ddyunbo.com/20191121/AQ82xuGS/index.m3u8
|
||||
一本道_286,https://vip4.ddyunbo.com/20191121/0jjk6fKn/index.m3u8
|
||||
一本道_287,https://vip4.ddyunbo.com/20191201/XjqVWCLB/index.m3u8
|
||||
一本道_288,https://vip4.ddyunbo.com/20190815/I8xSVL3G/index.m3u8
|
||||
一本道_289,https://vip4.ddyunbo.com/20191121/V7KpEPJu/index.m3u8
|
||||
一本道_290,https://vip4.ddyunbo.com/20191203/37pJZBSc/index.m3u8
|
||||
一本道_291,https://vip4.ddyunbo.com/20191011/UUuK75ff/index.m3u8
|
||||
一本道_292,https://vip4.ddyunbo.com/20190810/henyVtws/index.m3u8
|
||||
一本道_293,https://vip4.ddyunbo.com/20191009/kdxiQUUj/index.m3u8
|
||||
一本道_294,https://vip4.ddyunbo.com/20191112/qEl4l9Wn/index.m3u8
|
||||
一本道_295,https://vip4.ddyunbo.com/20191203/T0WINSep/index.m3u8
|
||||
一本道_296,https://vip4.ddyunbo.com/20191130/8WzWvM7O/index.m3u8
|
||||
一本道_297,https://vip4.ddyunbo.com/20191025/sJo8DfKz/index.m3u8
|
||||
一本道_298,https://vip4.ddyunbo.com/20191023/hLjlU9Vt/index.m3u8
|
||||
一本道_299,https://vip4.ddyunbo.com/20191201/VqS0cJUT/index.m3u8
|
||||
一本道_300,https://vip4.ddyunbo.com/20191111/V2iWnNxU/index.m3u8
|
||||
一本道_301,https://vip4.ddyunbo.com/20191213/J6Cv9gPJ/index.m3u8
|
||||
一本道_302,https://vip4.ddyunbo.com/20191203/U2SNJ3X7/index.m3u8
|
||||
一本道_303,https://vip4.ddyunbo.com/20190916/nDbO6fKD/index.m3u8
|
||||
一本道_304,https://vip4.ddyunbo.com/20190918/PEhQHMj2/index.m3u8
|
||||
一本道_305,https://vip4.ddyunbo.com/20191128/dkDIOfQC/index.m3u8
|
||||
一本道_306,https://vip4.ddyunbo.com/20191130/c6PcG5MJ/index.m3u8
|
||||
一本道_307,https://vip4.ddyunbo.com/20191211/ch4KRvFi/index.m3u8
|
||||
一本道_308,https://vip4.ddyunbo.com/20191208/9twDrLY8/index.m3u8
|
||||
一本道_309,https://vip4.ddyunbo.com/20191111/DlyNFtz9/index.m3u8
|
||||
一本道_310,https://vip4.ddyunbo.com/20191106/yFE2T1bI/index.m3u8
|
||||
一本道_311,https://vip4.ddyunbo.com/20191128/0UFCYn1m/index.m3u8
|
||||
一本道_312,https://vip4.ddyunbo.com/20190724/6R2vmRcq/index.m3u8
|
||||
一本道_313,https://vip4.ddyunbo.com/20191208/2uX0tXFP/index.m3u8
|
||||
一本道_314,https://vip4.ddyunbo.com/20191112/xgfe7yP7/index.m3u8
|
||||
一本道_315,https://vip4.ddyunbo.com/20191204/vbdhMyr9/index.m3u8
|
||||
一本道_316,https://vip4.ddyunbo.com/20191201/QJW4E3Tf/index.m3u8
|
||||
一本道_317,https://vip4.ddyunbo.com/20191211/mKHj4MjF/index.m3u8
|
||||
一本道_318,https://vip4.ddyunbo.com/20191209/gOW71wsS/index.m3u8
|
||||
一本道_319,https://vip4.ddyunbo.com/20191001/LrwArd97/index.m3u8
|
||||
一本道_320,https://vip4.ddyunbo.com/20191206/HImhhVBD/index.m3u8
|
||||
一本道_321,https://vip4.ddyunbo.com/20191201/AYodI1bN/index.m3u8
|
||||
一本道_335,https://vip4.ddyunbo.com/20210626/UMA1e0H4/index.m3u8
|
||||
一本道_336,https://vip4.ddyunbo.com/20210626/A2dGVy5a/index.m3u8
|
||||
一本道_337,https://vip4.ddyunbo.com/20210626/I6HW1lPD/index.m3u8
|
||||
一本道_338,https://vip4.ddyunbo.com/20210626/sHREWYut/index.m3u8
|
||||
一本道_339,https://vip4.ddyunbo.com/20210626/L4c9Q0Mw/index.m3u8
|
||||
一本道_340,https://vip4.ddyunbo.com/20210523/adSLcr5u/index.m3u8
|
||||
一本道_341,https://vip4.ddyunbo.com/20210610/TGBrJEHJ/index.m3u8
|
||||
一本道_344,https://vip4.ddyunbo.com/20210619/3KvERjbU/index.m3u8
|
||||
一本道_345,https://vip4.ddyunbo.com/20210619/t7EOBSZb/index.m3u8
|
||||
一本道_354,https://vip4.ddyunbo.com/20210610/RrSUX6KV/index.m3u8
|
||||
一本道_359,https://vip4.ddyunbo.com/20210626/Z5K4lMMI/index.m3u8
|
||||
一本道_373,https://vip4.ddyunbo.com/20210626/JXkUNpq5/index.m3u8
|
||||
一本道_395,https://vip4.ddyunbo.com/20210626/yasWpN6k/index.m3u8
|
||||
一本道_396,https://vip4.ddyunbo.com/20210210/IjSENz6s/index.m3u8?skipl=1
|
||||
一本道_397,https://vip4.ddyunbo.com/20210209/dEzJjeSU/index.m3u8?skipl=1
|
||||
一本道_398,https://vip4.ddyunbo.com/20210208/6LaKp6lZ/index.m3u8?skipl=1
|
||||
一本道_399,https://vip4.ddyunbo.com/20210208/uWwFdRB7/index.m3u8?skipl=1
|
||||
一本道_400,https://vip4.ddyunbo.com/20210208/EZRbwZn4/index.m3u8?skipl=1
|
||||
一本道_401,https://vip4.ddyunbo.com/20210207/Lyhqjp3z/index.m3u8?skipl=1
|
||||
一本道_402,https://vip4.ddyunbo.com/20210203/DYtc79vE/index.m3u8?skipl=1
|
||||
一本道_403,https://vip4.ddyunbo.com/20210202/cy0urBhD/index.m3u8?skipl=1
|
||||
一本道_404,https://vip4.ddyunbo.com/20210202/cOf9FXgF/index.m3u8?skipl=1
|
||||
一本道_405,https://vip4.ddyunbo.com/20210202/jnSPf5L7/index.m3u8?skipl=1
|
||||
一本道_406,https://vip4.ddyunbo.com/20210202/6wLYbWPq/index.m3u8?skipl=1
|
||||
|
||||
🔞一本道2,#genre#
|
||||
|
||||
一本1[720*404],https://vip4.ddyunbo.com/20210223/lFsvEfoW/index.m3u8?skipl=1
|
||||
一本2[720*402],https://vip4.ddyunbo.com/20210223/irFKB3O3/index.m3u8?skipl=1
|
||||
一本4[720*404],https://vip4.ddyunbo.com/20210223/I28Qes3F/index.m3u8?skipl=1
|
||||
一本3[720*404],https://vip4.ddyunbo.com/20210223/dRyGiQT6/index.m3u8?skipl=1
|
||||
一本6[720*480],https://vip4.ddyunbo.com/20210219/2nbzl0Nn/index.m3u8?skipl=1
|
||||
一本9[720*404],https://vip4.ddyunbo.com/20210222/HkzYbN40/index.m3u8?skipl=1
|
||||
一本5[720*404],https://vip4.ddyunbo.com/20210219/gpUU8FL5/index.m3u8?skipl=1
|
||||
一本8[720*404],https://vip4.ddyunbo.com/20210222/OrpC8XMK/index.m3u8?skipl=1
|
||||
一本10[720*404],https://vip4.ddyunbo.com/20210222/T8jUItC4/index.m3u8?skipl=1
|
||||
一本11[720*480],https://vip4.ddyunbo.com/20210222/lnXXFURu/index.m3u8?skipl=1
|
||||
一本12[720*480],https://vip4.ddyunbo.com/20210222/vHNM8oLn/index.m3u8?skipl=1
|
||||
一本13[720*480],https://vip4.ddyunbo.com/20210219/aPLXlCHM/index.m3u8?skipl=1
|
||||
一本14[720*480],https://vip4.ddyunbo.com/20210219/hIvpPiyo/index.m3u8?skipl=1
|
||||
一本16[720*480],https://vip4.ddyunbo.com/20210219/tN5b3rGe/index.m3u8?skipl=1
|
||||
一本18[720*404],https://vip4.ddyunbo.com/20210222/4VY1cI3D/index.m3u8?skipl=1
|
||||
一本17[720*404],https://vip4.ddyunbo.com/20210222/870lSnog/index.m3u8?skipl=1
|
||||
一本15[720*480],https://vip4.ddyunbo.com/20210219/dZEd1c84/index.m3u8?skipl=1
|
||||
一本20[720*404],https://vip4.ddyunbo.com/20210222/CcCsroEI/index.m3u8?skipl=1
|
||||
一本22[720*404],https://vip4.ddyunbo.com/20210219/JXwjAkb1/index.m3u8?skipl=1
|
||||
一本24[720*404],https://vip4.ddyunbo.com/20210219/5stYxCko/index.m3u8?skipl=1
|
||||
一本29[720*478],https://vip4.ddyunbo.com/20210221/3me5KE6r/index.m3u8?skipl=1
|
||||
一本46[720*404],https://vip4.ddyunbo.com/20210216/0DU9kDRE/index.m3u8?skipl=1
|
||||
一本47[720*404],https://vip4.ddyunbo.com/20210216/DrOdfvSA/index.m3u8?skipl=1
|
||||
一本48[720*404],https://vip4.ddyunbo.com/20210216/Y1oRb06u/index.m3u8?skipl=1
|
||||
一本49[720*480],https://vip4.ddyunbo.com/20210216/lmfodqs0/index.m3u8?skipl=1
|
||||
一本50[720*404],https://vip4.ddyunbo.com/20210216/OCg2OAO1/index.m3u8?skipl=1
|
||||
一本51[720*404],https://vip4.ddyunbo.com/20210216/CzIxVZ1X/index.m3u8?skipl=1
|
||||
一本52[720*404],https://vip4.ddyunbo.com/20210215/avNWovfp/index.m3u8?skipl=1
|
||||
一本54[720*404],https://vip4.ddyunbo.com/20210215/kohhSqgj/index.m3u8?skipl=1
|
||||
一本55[720*404],https://vip4.ddyunbo.com/20210215/HJSKHyXd/index.m3u8?skipl=1
|
||||
一本58[720*404],https://vip4.ddyunbo.com/20210214/961oJ3gh/index.m3u8?skipl=1
|
||||
一本59[720*404],https://vip4.ddyunbo.com/20210214/MNWCvejn/index.m3u8?skipl=1
|
||||
一本56[720*404],https://vip4.ddyunbo.com/20210215/4dCj2jEo/index.m3u8?skipl=1
|
||||
一本60[720*404],https://vip4.ddyunbo.com/20210214/Kktq79f6/index.m3u8?skipl=1
|
||||
一本61[720*404],https://vip4.ddyunbo.com/20210214/k0e2Hiai/index.m3u8?skipl=1
|
||||
一本62[720*404],https://vip4.ddyunbo.com/20210214/R2AMPS7r/index.m3u8?skipl=1
|
||||
一本63[720*404],https://vip4.ddyunbo.com/20210214/HeAAGKRv/index.m3u8?skipl=1
|
||||
一本64[720*404],https://vip4.ddyunbo.com/20210214/uyVAfQoX/index.m3u8?skipl=1
|
||||
一本65[720*404],https://vip4.ddyunbo.com/20210214/sZVudN5P/index.m3u8?skipl=1
|
||||
一本67[720*404],https://vip4.ddyunbo.com/20210213/yLoP1vf5/index.m3u8?skipl=1
|
||||
一本68[720*404],https://vip4.ddyunbo.com/20210213/cRo6toFT/index.m3u8?skipl=1
|
||||
一本69[720*404],https://vip4.ddyunbo.com/20210213/HePIPa2F/index.m3u8?skipl=1
|
||||
一本66[720*404],https://vip4.ddyunbo.com/20210213/jyevrW8R/index.m3u8?skipl=1
|
||||
一本70[720*404],https://vip4.ddyunbo.com/20210213/0AJrpgJl/index.m3u8?skipl=1
|
||||
一本72[720*480],https://vip4.ddyunbo.com/20210213/CQB35BQP/index.m3u8?skipl=1
|
||||
一本74[720*404],https://vip4.ddyunbo.com/20210213/IsgfJe2w/index.m3u8?skipl=1
|
||||
一本75[720*404],https://vip4.ddyunbo.com/20210213/jeGSmRq1/index.m3u8?skipl=1
|
||||
一本77[720*404],https://vip4.ddyunbo.com/20210213/pp7cLp44/index.m3u8?skipl=1
|
||||
一本76[720*404],https://vip4.ddyunbo.com/20210213/yPii5NlP/index.m3u8?skipl=1
|
||||
一本79[720*404],https://vip4.ddyunbo.com/20210213/bWyAJv5M/index.m3u8?skipl=1
|
||||
一本78[720*480],https://vip4.ddyunbo.com/20210213/b7DcweSg/index.m3u8?skipl=1
|
||||
一本80[720*540],https://vip4.ddyunbo.com/20210213/ENM4zicX/index.m3u8?skipl=1
|
||||
一本71[720*404],https://vip4.ddyunbo.com/20210213/i03D14H9/index.m3u8?skipl=1
|
||||
一本81[720*540],https://vip4.ddyunbo.com/20210213/dsERtG8m/index.m3u8?skipl=1
|
||||
一本82[720*540],https://vip4.ddyunbo.com/20210213/I3UI5SqB/index.m3u8?skipl=1
|
||||
一本84[720*400],https://vip4.ddyunbo.com/20210212/2hVb694k/index.m3u8?skipl=1
|
||||
一本87[720*404],https://vip4.ddyunbo.com/20210212/kqFvWt7a/index.m3u8?skipl=1
|
||||
一本88[720*404],https://vip4.ddyunbo.com/20210212/XaOrROc9/index.m3u8?skipl=1
|
||||
一本92[720*404],https://vip4.ddyunbo.com/20210212/8gGUXokv/index.m3u8?skipl=1
|
||||
一本93[720*404],https://vip4.ddyunbo.com/20210212/GfWLULrp/index.m3u8?skipl=1
|
||||
一本94[720*404],https://vip4.ddyunbo.com/20210212/o98hhHfZ/index.m3u8?skipl=1
|
||||
一本95[720*404],https://vip4.ddyunbo.com/20210212/iBW4UZRR/index.m3u8?skipl=1
|
||||
一本97[720*404],https://vip4.ddyunbo.com/20210212/3c1c12WZ/index.m3u8?skipl=1
|
||||
一本96[720*404],https://vip4.ddyunbo.com/20210212/x4zgasWf/index.m3u8?skipl=1
|
||||
一本98[720*404],https://vip4.ddyunbo.com/20210212/lvGl3l08/index.m3u8?skipl=1
|
||||
一本99[720*540],https://vip4.ddyunbo.com/20210211/x8pJYD8l/index.m3u8?skipl=1
|
||||
一本100[720*404],https://vip4.ddyunbo.com/20210211/nMKLhIyw/index.m3u8?skipl=1
|
||||
一本101[720*404],https://vip4.ddyunbo.com/20210211/GcsvEahX/index.m3u8?skipl=1
|
||||
一本102[720*404],https://vip4.ddyunbo.com/20210211/zPoGNn7p/index.m3u8?skipl=1
|
||||
一本103[720*404],https://vip4.ddyunbo.com/20210211/UkRqKCzR/index.m3u8?skipl=1
|
||||
一本107[720*404],https://vip4.ddyunbo.com/20210210/tPXr8H8t/index.m3u8?skipl=1
|
||||
一本109[720*404],https://vip4.ddyunbo.com/20210210/gCN3KZ2B/index.m3u8?skipl=1
|
||||
一本110[720*404],https://vip4.ddyunbo.com/20210210/VLdQd3jy/index.m3u8?skipl=1
|
||||
一本112[720*404],https://vip4.ddyunbo.com/20210209/JbefRkqP/index.m3u8?skipl=1
|
||||
一本111[720*404],https://vip4.ddyunbo.com/20210209/jjSZD1eJ/index.m3u8?skipl=1
|
||||
一本113[720*404],https://vip4.ddyunbo.com/20210209/Ylut1XIY/index.m3u8?skipl=1
|
||||
一本114[720*404],https://vip4.ddyunbo.com/20210209/9lmAX6nC/index.m3u8?skipl=1
|
||||
一本115[720*404],https://vip4.ddyunbo.com/20210209/HS0ZHHMU/index.m3u8?skipl=1
|
||||
一本116[720*404],https://vip4.ddyunbo.com/20210209/YVuPkKA0/index.m3u8?skipl=1
|
||||
一本118[720*404],https://vip4.ddyunbo.com/20210208/B7fkp2Nt/index.m3u8?skipl=1
|
||||
一本119[720*480],https://vip4.ddyunbo.com/20210208/ZrSlrBEi/index.m3u8?skipl=1
|
||||
一本120[720*404],https://vip4.ddyunbo.com/20210208/ovCbizI7/index.m3u8?skipl=1
|
||||
一本121[720*404],https://vip4.ddyunbo.com/20210208/fMfsqgou/index.m3u8?skipl=1
|
||||
一本123[720*404],https://vip4.ddyunbo.com/20210207/OKmtrkDi/index.m3u8?skipl=1
|
||||
一本122[720*404],https://vip4.ddyunbo.com/20210207/i9Hv5TRt/index.m3u8?skipl=1
|
||||
一本124[720*404],https://vip4.ddyunbo.com/20210207/dzwj6lNY/index.m3u8?skipl=1
|
||||
一本128[720*404],https://vip4.ddyunbo.com/20210203/naZKao31/index.m3u8?skipl=1
|
||||
一本129[720*480],https://vip4.ddyunbo.com/20210203/qeP3V2YC/index.m3u8?skipl=1
|
||||
一本130[720*480],https://vip4.ddyunbo.com/20210203/1PVXgBlv/index.m3u8?skipl=1
|
||||
一本132[720*404],https://vip4.ddyunbo.com/20210203/h5FLtiCy/index.m3u8?skipl=1
|
||||
一本131[720*404],https://vip4.ddyunbo.com/20210203/UmJTgGy0/index.m3u8?skipl=1
|
||||
一本106[720*404],https://vip4.ddyunbo.com/20210210/uCXV7Fsx/index.m3u8?skipl=1
|
||||
一本136[720*404],https://vip4.ddyunbo.com/20210203/CHkVgFa3/index.m3u8?skipl=1
|
||||
一本138[720*404],https://vip4.ddyunbo.com/20210202/UxqQ0vuR/index.m3u8?skipl=1
|
||||
一本139[720*404],https://vip4.ddyunbo.com/20210202/d4SRSiyD/index.m3u8?skipl=1
|
||||
一本140[720*404],https://vip4.ddyunbo.com/20210202/5SGmmIDx/index.m3u8?skipl=1
|
||||
一本141[720*404],https://vip4.ddyunbo.com/20210202/NhEBcAp7/index.m3u8?skipl=1
|
||||
一本137[720*404],https://vip4.ddyunbo.com/20210203/Rs915orP/index.m3u8?skipl=1
|
||||
一本126[720*404],https://vip4.ddyunbo.com/20210203/z0V8HvxE/index.m3u8?skipl=1
|
||||
|
||||
🔞日媒无码1,#genre#
|
||||
|
||||
4,https://vip4.ddyunbo.com/20210208/uWwFdRB7/index.m3u8
|
||||
5,https://vip4.ddyunbo.com/20210208/EZRbwZn4/index.m3u8
|
||||
6,https://vip4.ddyunbo.com/20210207/Lyhqjp3z/index.m3u8
|
||||
7,https://vip4.ddyunbo.com/20210203/DYtc79vE/index.m3u8
|
||||
8,https://vip4.ddyunbo.com/20210202/cy0urBhD/index.m3u8
|
||||
9,https://vip4.ddyunbo.com/20210202/cOf9FXgF/index.m3u8
|
||||
10,https://vip4.ddyunbo.com/20210202/jnSPf5L7/index.m3u8
|
||||
11,https://vip4.ddyunbo.com/20210202/6wLYbWPq/index.m3u8
|
||||
12,https://vip4.ddyunbo.com/20190904/HqGckgKl/index.m3u8
|
||||
13,https://vip4.ddyunbo.com/20190904/m94xaoPh/index.m3u8
|
||||
14,https://vip4.ddyunbo.com/20190908/1oZ5V2g2/index.m3u8
|
||||
15,https://vip4.ddyunbo.com/20190904/wJoZlwtT/index.m3u8
|
||||
16,https://vip4.ddyunbo.com/20190904/ZnGN7sEl/index.m3u8
|
||||
17,https://vip4.ddyunbo.com/20190908/qvYslaAx/index.m3u8
|
||||
18,https://vip4.ddyunbo.com/20190908/ETghLd5D/index.m3u8
|
||||
19,https://vip4.ddyunbo.com/20190908/nvueB1Az/index.m3u8
|
||||
20,https://vip4.ddyunbo.com/20190908/zSd2DI9R/index.m3u8
|
||||
21,https://vip4.ddyunbo.com/20190914/dSIYelxz/index.m3u8
|
||||
22,https://vip4.ddyunbo.com/20190914/TFWmOomT/index.m3u8
|
||||
23,https://vip4.ddyunbo.com/20190914/vL0TDJOa/index.m3u8
|
||||
24,https://vip4.ddyunbo.com/20190918/7mkn1AhN/index.m3u8
|
||||
25,https://vip4.ddyunbo.com/20190923/WebyDiop/index.m3u8
|
||||
26,https://vip4.ddyunbo.com/20191003/iRZV03AE/index.m3u8
|
||||
27,https://vip4.ddyunbo.com/20191003/EuwbmURX/index.m3u8
|
||||
28,https://vip4.ddyunbo.com/20191004/HjrnnnDD/index.m3u8
|
||||
29,https://vip4.ddyunbo.com/20191004/GKWK7Q5F/index.m3u8
|
||||
30,https://vip4.ddyunbo.com/20191004/3T6aTxbN/index.m3u8
|
||||
31,https://vip4.ddyunbo.com/20191004/FxbqgEFY/index.m3u8
|
||||
32,https://vip4.ddyunbo.com/20191004/rURK4pfY/index.m3u8
|
||||
33,https://vip4.ddyunbo.com/20191007/7G1CWNc8/index.m3u8
|
||||
34,https://vip4.ddyunbo.com/20191007/IFlq5eON/index.m3u8
|
||||
35,https://vip4.ddyunbo.com/20191007/qISqWik0/index.m3u8
|
||||
36,https://vip4.ddyunbo.com/20190907/PH1oGegu/index.m3u8
|
||||
37,https://vip4.ddyunbo.com/20191206/aIGd1S2S/index.m3u8
|
||||
39,https://vip4.ddyunbo.com/20191209/eOWqpnjK/index.m3u8
|
||||
40,https://vip4.ddyunbo.com/20191203/kT2Rfcof/index.m3u8
|
||||
41,https://vip4.ddyunbo.com/20191203/eKcaCDs1/index.m3u8
|
||||
42,https://vip4.ddyunbo.com/20191204/jouQzYVh/index.m3u8
|
||||
43,https://vip4.ddyunbo.com/20190824/InhHOPJz/index.m3u8
|
||||
44,https://vip4.ddyunbo.com/20191201/yKe6LATy/index.m3u8
|
||||
45,https://vip4.ddyunbo.com/20191128/b49owsxG/index.m3u8
|
||||
46,https://vip4.ddyunbo.com/20191104/NAZTGvOC/index.m3u8
|
||||
47,https://vip4.ddyunbo.com/20190724/fpVllSSA/index.m3u8
|
||||
48,https://vip4.ddyunbo.com/20191115/nz0OLAD7/index.m3u8
|
||||
49,https://vip4.ddyunbo.com/20191205/ZgkgLcVy/index.m3u8
|
||||
50,https://vip4.ddyunbo.com/20191111/YQ1Jvlo7/index.m3u8
|
||||
51,https://vip4.ddyunbo.com/20191203/mXPJeA8L/index.m3u8
|
||||
52,https://vip4.ddyunbo.com/20191201/aBIJI8XX/index.m3u8
|
||||
53,https://vip4.ddyunbo.com/20191209/nBF7mWF0/index.m3u8
|
||||
54,https://vip4.ddyunbo.com/20191211/EmnFBcTv/index.m3u8
|
||||
55,https://vip4.ddyunbo.com/20191203/tHSBAUjL/index.m3u8
|
||||
56,https://vip4.ddyunbo.com/20191207/3l1NKbd9/index.m3u8
|
||||
57,https://vip4.ddyunbo.com/20191128/6sgJpPs4/index.m3u8
|
||||
58,https://vip4.ddyunbo.com/20191121/NoBsuuFA/index.m3u8
|
||||
59,https://vip4.ddyunbo.com/20191206/SGNaCdAK/index.m3u8
|
||||
60,https://vip4.ddyunbo.com/20191112/aKyYPZ4O/index.m3u8
|
||||
61,https://vip4.ddyunbo.com/20191130/u0WbYaDT/index.m3u8
|
||||
62,https://vip4.ddyunbo.com/20191111/r5A7emIq/index.m3u8
|
||||
63,https://vip4.ddyunbo.com/20191102/PNo3bOxT/index.m3u8
|
||||
64,https://vip4.ddyunbo.com/20191210/cyck231P/index.m3u8
|
||||
65,https://vip4.ddyunbo.com/20191203/qg6ciKiI/index.m3u8
|
||||
66,https://vip4.ddyunbo.com/20191122/r7naPuig/index.m3u8
|
||||
67,https://vip4.ddyunbo.com/20191205/SIKrL2zv/index.m3u8
|
||||
68,https://vip4.ddyunbo.com/20191211/dFWVbgGO/index.m3u8
|
||||
69,https://vip4.ddyunbo.com/20191201/XNRFDngP/index.m3u8
|
||||
70,https://vip4.ddyunbo.com/20191203/ZRDWzUqf/index.m3u8
|
||||
71,https://vip4.ddyunbo.com/20191128/J5nWdwcz/index.m3u8
|
||||
72,https://vip4.ddyunbo.com/20191201/Rf4zb6hN/index.m3u8
|
||||
73,https://vip4.ddyunbo.com/20191201/CMNsuXH3/index.m3u8
|
||||
74,https://vip4.ddyunbo.com/20191203/vBvvarir/index.m3u8
|
||||
75,https://vip4.ddyunbo.com/20191211/nOiZ9PsG/index.m3u8
|
||||
76,https://vip4.ddyunbo.com/20191115/tLqC19DS/index.m3u8
|
||||
77,https://vip4.ddyunbo.com/20191104/5Br1zP28/index.m3u8
|
||||
78,https://vip4.ddyunbo.com/20190801/YErziN66/index.m3u8
|
||||
79,https://vip4.ddyunbo.com/20190729/Lv7KSuaP/index.m3u8
|
||||
80,https://vip4.ddyunbo.com/20191205/0oLr2jlQ/index.m3u8
|
||||
81,https://vip4.ddyunbo.com/20191110/Z3mWJbrz/index.m3u8
|
||||
82,https://vip4.ddyunbo.com/20190724/SRcabvNZ/index.m3u8
|
||||
83,https://vip4.ddyunbo.com/20191127/52rP822O/index.m3u8
|
||||
84,https://vip4.ddyunbo.com/20191207/p0zvtDBY/index.m3u8
|
||||
85,https://vip4.ddyunbo.com/20191208/dw94ieYl/index.m3u8
|
||||
86,https://vip4.ddyunbo.com/20190913/MA5Cn7rw/index.m3u8
|
||||
87,https://vip4.ddyunbo.com/20191210/tyN6I80q/index.m3u8
|
||||
88,https://vip4.ddyunbo.com/20191122/QMk66MvN/index.m3u8
|
||||
89,https://vip4.ddyunbo.com/20191206/trGVPzmt/index.m3u8
|
||||
90,https://vip4.ddyunbo.com/20191010/xcMAZOOw/index.m3u8
|
||||
92,https://vip4.ddyunbo.com/20191207/Le7BwZ7a/index.m3u8
|
||||
93,https://vip4.ddyunbo.com/20191115/XU1ZFXas/index.m3u8
|
||||
94,https://vip4.ddyunbo.com/20191205/VDovZ2mt/index.m3u8
|
||||
95,https://vip4.ddyunbo.com/20191203/N6QagWOF/index.m3u8
|
||||
96,https://vip4.ddyunbo.com/20191125/OqB6IP7s/index.m3u8
|
||||
97,https://vip4.ddyunbo.com/20191121/qFgFA0vx/index.m3u8
|
||||
98,https://vip4.ddyunbo.com/20191127/xnpQRfvD/index.m3u8
|
||||
99,https://vip4.ddyunbo.com/20191204/6UOQDpAF/index.m3u8
|
||||
100,https://vip4.ddyunbo.com/20191210/iClVJoQP/index.m3u8
|
||||
101,https://vip4.ddyunbo.com/20190801/68w4hmaH/index.m3u8
|
||||
102,https://vip4.ddyunbo.com/20191203/AdOtik4n/index.m3u8
|
||||
103,https://vip4.ddyunbo.com/20191207/Aawt3pa8/index.m3u8
|
||||
104,https://vip4.ddyunbo.com/20191118/cqj1PHFT/index.m3u8
|
||||
105,https://vip4.ddyunbo.com/20191203/lrQfHler/index.m3u8
|
||||
106,https://vip4.ddyunbo.com/20191203/5E24xFQu/index.m3u8
|
||||
107,https://vip4.ddyunbo.com/20191206/wElIhu09/index.m3u8
|
||||
108,https://vip4.ddyunbo.com/20191209/zpkqVbXG/index.m3u8
|
||||
109,https://vip4.ddyunbo.com/20191130/5D8rho9Y/index.m3u8
|
||||
110,https://vip4.ddyunbo.com/20191125/b7iK6Oay/index.m3u8
|
||||
111,https://vip4.ddyunbo.com/20191118/pa08NZI8/index.m3u8
|
||||
112,https://vip4.ddyunbo.com/20191209/ptaY4sdV/index.m3u8
|
||||
113,https://vip4.ddyunbo.com/20191208/YoOOpIoB/index.m3u8
|
||||
114,https://vip4.ddyunbo.com/20191206/KlOfpmXm/index.m3u8
|
||||
115,https://vip4.ddyunbo.com/20191128/bhlfixkB/index.m3u8
|
||||
116,https://vip4.ddyunbo.com/20191004/27dVXQbM/index.m3u8
|
||||
117,https://vip4.ddyunbo.com/20191130/opfnHxZs/index.m3u8
|
||||
118,https://vip4.ddyunbo.com/20191020/HFA1EICB/index.m3u8
|
||||
119,https://vip4.ddyunbo.com/20190725/QoR2tEMa/index.m3u8
|
||||
120,https://vip4.ddyunbo.com/20191203/a3QaDIMv/index.m3u8
|
||||
121,https://vip4.ddyunbo.com/20191104/j2LhlTOV/index.m3u8
|
||||
122,https://vip4.ddyunbo.com/20191008/zaPfpDWi/index.m3u8
|
||||
123,https://vip4.ddyunbo.com/20191206/beXglix7/index.m3u8
|
||||
124,https://vip4.ddyunbo.com/20191207/ywgZ4c11/index.m3u8
|
||||
125,https://vip4.ddyunbo.com/20191122/CTiWjkn3/index.m3u8
|
||||
126,https://vip4.ddyunbo.com/20191203/fo9gOCfd/index.m3u8
|
||||
127,https://vip4.ddyunbo.com/20191128/LfZiCMWd/index.m3u8
|
||||
128,https://vip4.ddyunbo.com/20191102/VMYrbDYq/index.m3u8
|
||||
129,https://vip4.ddyunbo.com/20191201/JkE6BitE/index.m3u8
|
||||
130,https://vip4.ddyunbo.com/20191121/tYZpFfYL/index.m3u8
|
||||
131,https://vip4.ddyunbo.com/20191102/k5XyaYgP/index.m3u8
|
||||
132,https://vip4.ddyunbo.com/20191008/aJt3osLQ/index.m3u8
|
||||
133,https://vip4.ddyunbo.com/20191206/W6K0WfDk/index.m3u8
|
||||
134,https://vip4.ddyunbo.com/20190712/AWmTfG0V/index.m3u8
|
||||
135,https://vip4.ddyunbo.com/20191203/2MAO7hnv/index.m3u8
|
||||
136,https://vip4.ddyunbo.com/20191122/XqkKvmTm/index.m3u8
|
||||
137,https://vip4.ddyunbo.com/20191205/ZhyfTfzD/index.m3u8
|
||||
138,https://vip4.ddyunbo.com/20191209/Cg46YFFD/index.m3u8
|
||||
139,https://vip4.ddyunbo.com/20191203/5sYrnUa8/index.m3u8
|
||||
140,https://vip4.ddyunbo.com/20191206/D2NceISA/index.m3u8
|
||||
141,https://vip4.ddyunbo.com/20190703/TS1mxp2x/index.m3u8
|
||||
142,https://vip4.ddyunbo.com/20191127/28kOylU9/index.m3u8
|
||||
143,https://vip4.ddyunbo.com/20190924/1r6n6c3u/index.m3u8
|
||||
144,https://vip4.ddyunbo.com/20191201/8UTueLDg/index.m3u8
|
||||
145,https://vip4.ddyunbo.com/20191011/eswYrYkE/index.m3u8
|
||||
146,https://vip4.ddyunbo.com/20191109/7zPRNKbZ/index.m3u8
|
||||
147,https://vip4.ddyunbo.com/20191208/0gSaR7IX/index.m3u8
|
||||
148,https://vip4.ddyunbo.com/20191203/B5DlB2Ib/index.m3u8
|
||||
149,https://vip4.ddyunbo.com/20191108/iI37Slwz/index.m3u8
|
||||
150,https://vip4.ddyunbo.com/20191115/nxekkiWv/index.m3u8
|
||||
151,https://vip4.ddyunbo.com/20191206/DRjLLulI/index.m3u8
|
||||
152,https://vip4.ddyunbo.com/20191208/F59kEATh/index.m3u8
|
||||
153,https://vip4.ddyunbo.com/20191205/u11PSJcw/index.m3u8
|
||||
154,https://vip4.ddyunbo.com/20191203/PldaO4lb/index.m3u8
|
||||
155,https://vip4.ddyunbo.com/20191206/AYu0BDSt/index.m3u8
|
||||
156,https://vip4.ddyunbo.com/20191211/M3q09qGG/index.m3u8
|
||||
157,https://vip4.ddyunbo.com/20191128/tZFK4HY2/index.m3u8
|
||||
158,https://vip4.ddyunbo.com/20191130/tZycHwv3/index.m3u8
|
||||
159,https://vip4.ddyunbo.com/20191111/1B9E9krC/index.m3u8
|
||||
160,https://vip4.ddyunbo.com/20190911/TkgRmCOM/index.m3u8
|
||||
161,https://vip4.ddyunbo.com/20191121/xcENj210/index.m3u8
|
||||
162,https://vip4.ddyunbo.com/20190821/N8XQWA19/index.m3u8
|
||||
163,https://vip4.ddyunbo.com/20191121/5fNyVOF0/index.m3u8
|
||||
164,https://vip4.ddyunbo.com/20191120/c3IW5efi/index.m3u8
|
||||
165,https://vip4.ddyunbo.com/20191208/bbjKax2R/index.m3u8
|
||||
166,https://vip4.ddyunbo.com/20191005/pXmIH9LF/index.m3u8
|
||||
167,https://vip4.ddyunbo.com/20191125/VWWVU5vF/index.m3u8
|
||||
168,https://vip4.ddyunbo.com/20191205/5JT6u3Ag/index.m3u8
|
||||
169,https://vip4.ddyunbo.com/20191206/jrpIh9qw/index.m3u8
|
||||
170,https://vip4.ddyunbo.com/20191206/mXdjz6j1/index.m3u8
|
||||
172,https://vip4.ddyunbo.com/20191130/iEZY20NL/index.m3u8
|
||||
173,https://vip4.ddyunbo.com/20191201/XJwjwidw/index.m3u8
|
||||
174,https://vip4.ddyunbo.com/20191110/YvQVLhAg/index.m3u8
|
||||
175,https://vip4.ddyunbo.com/20190918/dW0J9fzv/index.m3u8
|
||||
176,https://vip4.ddyunbo.com/20191125/vpMcTD6O/index.m3u8
|
||||
177,https://vip4.ddyunbo.com/20191203/q5YvttfY/index.m3u8
|
||||
178,https://vip4.ddyunbo.com/20191208/7se6brgf/index.m3u8
|
||||
179,https://vip4.ddyunbo.com/20191207/gJmk2Ml1/index.m3u8
|
||||
180,https://vip4.ddyunbo.com/20191103/HSJrGNbs/index.m3u8
|
||||
181,https://vip4.ddyunbo.com/20191110/YG00RmgF/index.m3u8
|
||||
182,https://vip4.ddyunbo.com/20191203/nYjY9u2u/index.m3u8
|
||||
183,https://vip4.ddyunbo.com/20191128/XyZVKafW/index.m3u8
|
||||
184,https://vip4.ddyunbo.com/20190907/j4Y1yHpk/index.m3u8
|
||||
185,https://vip4.ddyunbo.com/20191128/zrhWuPR1/index.m3u8
|
||||
186,https://vip4.ddyunbo.com/20191110/7bbcTr2N/index.m3u8
|
||||
187,https://vip4.ddyunbo.com/20191127/65PpXoMw/index.m3u8
|
||||
188,https://vip4.ddyunbo.com/20191203/0ir3uu6a/index.m3u8
|
||||
189,https://vip4.ddyunbo.com/20191029/iONkDOhp/index.m3u8
|
||||
190,https://vip4.ddyunbo.com/20191020/Ez8f8YXO/index.m3u8
|
||||
192,https://vip4.ddyunbo.com/20191206/boYeS27U/index.m3u8
|
||||
193,https://vip4.ddyunbo.com/20191124/L8pKppVU/index.m3u8
|
||||
194,https://vip4.ddyunbo.com/20190929/0PhfynWn/index.m3u8
|
||||
195,https://vip4.ddyunbo.com/20191112/10y3MJVC/index.m3u8
|
||||
196,https://vip4.ddyunbo.com/20191130/akowH7sK/index.m3u8
|
||||
197,https://vip4.ddyunbo.com/20190924/cJ5trNUQ/index.m3u8
|
||||
198,https://vip4.ddyunbo.com/20191130/oR4CtFQl/index.m3u8
|
||||
199,https://vip4.ddyunbo.com/20191015/20mRMz60/index.m3u8
|
||||
200,https://vip4.ddyunbo.com/20191205/sTKpDkTR/index.m3u8
|
||||
|
||||
🔞日媒无码2,#genre#
|
||||
|
||||
201,https://vip4.ddyunbo.com/20191128/snyFis8F/index.m3u8
|
||||
202,https://vip4.ddyunbo.com/20191203/52ec89LM/index.m3u8
|
||||
203,https://vip4.ddyunbo.com/20191125/vweaBCJp/index.m3u8
|
||||
204,https://vip4.ddyunbo.com/20190902/yFCyAZkG/index.m3u8
|
||||
205,https://vip4.ddyunbo.com/20191203/ePyVUP8Y/index.m3u8
|
||||
206,https://vip4.ddyunbo.com/20191212/yREukvC1/index.m3u8
|
||||
207,https://vip4.ddyunbo.com/20191206/KcxaHKNK/index.m3u8
|
||||
208,https://vip4.ddyunbo.com/20191130/aACNUDUx/index.m3u8
|
||||
209,https://vip4.ddyunbo.com/20191110/ntzb9SWV/index.m3u8
|
||||
210,https://vip4.ddyunbo.com/20191207/IxGltUle/index.m3u8
|
||||
211,https://vip4.ddyunbo.com/20191110/NwogQedH/index.m3u8
|
||||
212,https://vip4.ddyunbo.com/20191025/ugrhYcjr/index.m3u8
|
||||
213,https://vip4.ddyunbo.com/20191127/EDyBe1NG/index.m3u8
|
||||
214,https://vip4.ddyunbo.com/20191207/kzgjv1Sj/index.m3u8
|
||||
215,https://vip4.ddyunbo.com/20191207/V8On9hi5/index.m3u8
|
||||
216,https://vip4.ddyunbo.com/20191111/yM2sIi6M/index.m3u8
|
||||
217,https://vip4.ddyunbo.com/20191111/8ps41QnU/index.m3u8
|
||||
218,https://vip4.ddyunbo.com/20191031/ZqY7BWDT/index.m3u8
|
||||
219,https://vip4.ddyunbo.com/20191201/Lwlr3Bkj/index.m3u8
|
||||
220,https://vip4.ddyunbo.com/20191121/xYprKCt3/index.m3u8
|
||||
221,https://vip4.ddyunbo.com/20191130/bxViB0PY/index.m3u8
|
||||
222,https://vip4.ddyunbo.com/20191128/iWncGfHM/index.m3u8
|
||||
223,https://vip4.ddyunbo.com/20191128/ZupzK8uN/index.m3u8
|
||||
224,https://vip4.ddyunbo.com/20191029/S6qqt8Mh/index.m3u8
|
||||
225,https://vip4.ddyunbo.com/20191124/pQu6kMjM/index.m3u8
|
||||
226,https://vip4.ddyunbo.com/20191130/OQCGGLU4/index.m3u8
|
||||
227,https://vip4.ddyunbo.com/20191201/K4Kv3dAa/index.m3u8
|
||||
228,https://vip4.ddyunbo.com/20191108/oIMSxrHo/index.m3u8
|
||||
229,https://vip4.ddyunbo.com/20191019/qYAR1H3v/index.m3u8
|
||||
230,https://vip4.ddyunbo.com/20191211/VzljMkkQ/index.m3u8
|
||||
231,https://vip4.ddyunbo.com/20191130/DKO396f2/index.m3u8
|
||||
232,https://vip4.ddyunbo.com/20191130/a659X1xA/index.m3u8
|
||||
233,https://vip4.ddyunbo.com/20191121/u8r59V60/index.m3u8
|
||||
234,https://vip4.ddyunbo.com/20191212/HePcXP5K/index.m3u8
|
||||
235,https://vip4.ddyunbo.com/20190728/DwIqgHeT/index.m3u8
|
||||
236,https://vip4.ddyunbo.com/20191118/Scm0EnRV/index.m3u8
|
||||
237,https://vip4.ddyunbo.com/20191128/ME2HqHFH/index.m3u8
|
||||
238,https://vip4.ddyunbo.com/20191023/soiNyMvv/index.m3u8
|
||||
239,https://vip4.ddyunbo.com/20191130/inbbYKzO/index.m3u8
|
||||
240,https://vip4.ddyunbo.com/20191207/yjExYb5t/index.m3u8
|
||||
241,https://vip4.ddyunbo.com/20191121/084gIuVz/index.m3u8
|
||||
242,https://vip4.ddyunbo.com/20191203/eBg5Mcqa/index.m3u8
|
||||
243,https://vip4.ddyunbo.com/20191028/bnoZp1dl/index.m3u8
|
||||
244,https://vip4.ddyunbo.com/20191211/tFdr7uBO/index.m3u8
|
||||
245,https://vip4.ddyunbo.com/20190722/i3pcddxz/index.m3u8
|
||||
246,https://vip4.ddyunbo.com/20191026/dZeD0hLR/index.m3u8
|
||||
247,https://vip4.ddyunbo.com/20191110/KRbTUVDE/index.m3u8
|
||||
248,https://vip4.ddyunbo.com/20191207/UkvaFQxt/index.m3u8
|
||||
249,https://vip4.ddyunbo.com/20191102/E6lR5iaR/index.m3u8
|
||||
250,https://vip4.ddyunbo.com/20190820/r53WGvGC/index.m3u8
|
||||
251,https://vip4.ddyunbo.com/20191212/P8ADFznS/index.m3u8
|
||||
252,https://vip4.ddyunbo.com/20191201/C0NIMhZQ/index.m3u8
|
||||
253,https://vip4.ddyunbo.com/20191203/pXGXXkXg/index.m3u8
|
||||
254,https://vip4.ddyunbo.com/20191206/Y5TgrZUy/index.m3u8
|
||||
255,https://vip4.ddyunbo.com/20191128/GmCOlAxE/index.m3u8
|
||||
256,https://vip4.ddyunbo.com/20191130/lDyoKDKc/index.m3u8
|
||||
257,https://vip4.ddyunbo.com/20191211/jstuOIyD/index.m3u8
|
||||
258,https://vip4.ddyunbo.com/20190810/RdevEXDi/index.m3u8
|
||||
259,https://vip4.ddyunbo.com/20191206/90tduWjm/index.m3u8
|
||||
260,https://vip4.ddyunbo.com/20191201/536eRGt7/index.m3u8
|
||||
261,https://vip4.ddyunbo.com/20190729/aN7GcbnY/index.m3u8
|
||||
262,https://vip4.ddyunbo.com/20191206/R61RAjBC/index.m3u8
|
||||
263,https://vip4.ddyunbo.com/20191122/kN2bDRaJ/index.m3u8
|
||||
264,https://vip4.ddyunbo.com/20191201/YEg5oWil/index.m3u8
|
||||
265,https://vip4.ddyunbo.com/20191127/jxrCEPud/index.m3u8
|
||||
266,https://vip4.ddyunbo.com/20190801/HsTzj1M0/index.m3u8
|
||||
267,https://vip4.ddyunbo.com/20190830/B57lK9fN/index.m3u8
|
||||
268,https://vip4.ddyunbo.com/20191208/BS0JwI5Z/index.m3u8
|
||||
269,https://vip4.ddyunbo.com/20191206/UJGFkoQP/index.m3u8
|
||||
270,https://vip4.ddyunbo.com/20191207/pOgUw8vR/index.m3u8
|
||||
271,https://vip4.ddyunbo.com/20191201/mIG17Z5S/index.m3u8
|
||||
272,https://vip4.ddyunbo.com/20190721/xUX3F0o1/index.m3u8
|
||||
273,https://vip4.ddyunbo.com/20191013/aM9bNES7/index.m3u8
|
||||
274,https://vip4.ddyunbo.com/20191102/thRqkr3J/index.m3u8
|
||||
275,https://vip4.ddyunbo.com/20191008/ONnuL7h3/index.m3u8
|
||||
276,https://vip4.ddyunbo.com/20190904/f9ADZ1CY/index.m3u8
|
||||
277,https://vip4.ddyunbo.com/20190904/UfqniQi1/index.m3u8
|
||||
278,https://vip4.ddyunbo.com/20191211/FFE0h29v/index.m3u8
|
||||
279,https://vip4.ddyunbo.com/20191203/nX7ffHF1/index.m3u8
|
||||
280,https://vip4.ddyunbo.com/20191121/VmpUGI2G/index.m3u8
|
||||
281,https://vip4.ddyunbo.com/20190909/jRVMH9sc/index.m3u8
|
||||
282,https://vip4.ddyunbo.com/20191209/cALP0OD4/index.m3u8
|
||||
283,https://vip4.ddyunbo.com/20191128/xrAM7jTH/index.m3u8
|
||||
284,https://vip4.ddyunbo.com/20191121/ChPdFva9/index.m3u8
|
||||
285,https://vip4.ddyunbo.com/20191121/AQ82xuGS/index.m3u8
|
||||
286,https://vip4.ddyunbo.com/20191121/0jjk6fKn/index.m3u8
|
||||
287,https://vip4.ddyunbo.com/20191201/XjqVWCLB/index.m3u8
|
||||
288,https://vip4.ddyunbo.com/20190815/I8xSVL3G/index.m3u8
|
||||
289,https://vip4.ddyunbo.com/20191121/V7KpEPJu/index.m3u8
|
||||
290,https://vip4.ddyunbo.com/20191203/37pJZBSc/index.m3u8
|
||||
292,https://vip4.ddyunbo.com/20190810/henyVtws/index.m3u8
|
||||
293,https://vip4.ddyunbo.com/20191009/kdxiQUUj/index.m3u8
|
||||
294,https://vip4.ddyunbo.com/20191112/qEl4l9Wn/index.m3u8
|
||||
295,https://vip4.ddyunbo.com/20191203/T0WINSep/index.m3u8
|
||||
296,https://vip4.ddyunbo.com/20191130/8WzWvM7O/index.m3u8
|
||||
297,https://vip4.ddyunbo.com/20191025/sJo8DfKz/index.m3u8
|
||||
298,https://vip4.ddyunbo.com/20191023/hLjlU9Vt/index.m3u8
|
||||
299,https://vip4.ddyunbo.com/20191201/VqS0cJUT/index.m3u8
|
||||
300,https://vip4.ddyunbo.com/20191111/V2iWnNxU/index.m3u8
|
||||
301,https://vip4.ddyunbo.com/20191213/J6Cv9gPJ/index.m3u8
|
||||
302,https://vip4.ddyunbo.com/20191203/U2SNJ3X7/index.m3u8
|
||||
303,https://vip4.ddyunbo.com/20190916/nDbO6fKD/index.m3u8
|
||||
304,https://vip4.ddyunbo.com/20190918/PEhQHMj2/index.m3u8
|
||||
305,https://vip4.ddyunbo.com/20191128/dkDIOfQC/index.m3u8
|
||||
306,https://vip4.ddyunbo.com/20191130/c6PcG5MJ/index.m3u8
|
||||
307,https://vip4.ddyunbo.com/20191211/ch4KRvFi/index.m3u8
|
||||
308,https://vip4.ddyunbo.com/20191208/9twDrLY8/index.m3u8
|
||||
309,https://vip4.ddyunbo.com/20191111/DlyNFtz9/index.m3u8
|
||||
310,https://vip4.ddyunbo.com/20191106/yFE2T1bI/index.m3u8
|
||||
311,https://vip4.ddyunbo.com/20191128/0UFCYn1m/index.m3u8
|
||||
312,https://vip4.ddyunbo.com/20190724/6R2vmRcq/index.m3u8
|
||||
313,https://vip4.ddyunbo.com/20191208/2uX0tXFP/index.m3u8
|
||||
314,https://vip4.ddyunbo.com/20191112/xgfe7yP7/index.m3u8
|
||||
315,https://vip4.ddyunbo.com/20191204/vbdhMyr9/index.m3u8
|
||||
316,https://vip4.ddyunbo.com/20191201/QJW4E3Tf/index.m3u8
|
||||
317,https://vip4.ddyunbo.com/20191211/mKHj4MjF/index.m3u8
|
||||
318,https://vip4.ddyunbo.com/20191209/gOW71wsS/index.m3u8
|
||||
319,https://vip4.ddyunbo.com/20191001/LrwArd97/index.m3u8
|
||||
320,https://vip4.ddyunbo.com/20191206/HImhhVBD/index.m3u8
|
||||
321,https://vip4.ddyunbo.com/20191201/AYodI1bN/index.m3u8
|
||||
335,https://vip4.ddyunbo.com/20210626/UMA1e0H4/index.m3u8
|
||||
336,https://vip4.ddyunbo.com/20210626/A2dGVy5a/index.m3u8
|
||||
337,https://vip4.ddyunbo.com/20210626/I6HW1lPD/index.m3u8
|
||||
338,https://vip4.ddyunbo.com/20210626/sHREWYut/index.m3u8
|
||||
339,https://vip4.ddyunbo.com/20210626/L4c9Q0Mw/index.m3u8
|
||||
340,https://vip4.ddyunbo.com/20210523/adSLcr5u/index.m3u8
|
||||
341,https://vip4.ddyunbo.com/20210610/TGBrJEHJ/index.m3u8
|
||||
344,https://vip4.ddyunbo.com/20210619/3KvERjbU/index.m3u8
|
||||
345,https://vip4.ddyunbo.com/20210619/t7EOBSZb/index.m3u8
|
||||
354,https://vip4.ddyunbo.com/20210610/RrSUX6KV/index.m3u8
|
||||
359,https://vip4.ddyunbo.com/20210626/Z5K4lMMI/index.m3u8
|
||||
373,https://vip4.ddyunbo.com/20210626/JXkUNpq5/index.m3u8
|
||||
395,https://vip4.ddyunbo.com/20210626/yasWpN6k/index.m3u8
|
||||
396,https://vip4.ddyunbo.com/20210210/IjSENz6s/index.m3u8?skipl=1
|
||||
397,https://vip4.ddyunbo.com/20210209/dEzJjeSU/index.m3u8?skipl=1
|
||||
398,https://vip4.ddyunbo.com/20210208/6LaKp6lZ/index.m3u8?skipl=1
|
||||
399,https://vip4.ddyunbo.com/20210208/uWwFdRB7/index.m3u8?skipl=1
|
||||
400,https://vip4.ddyunbo.com/20210208/EZRbwZn4/index.m3u8?skipl=1
|
||||
401,https://vip4.ddyunbo.com/20210207/Lyhqjp3z/index.m3u8?skipl=1
|
||||
402,https://vip4.ddyunbo.com/20210203/DYtc79vE/index.m3u8?skipl=1
|
||||
403,https://vip4.ddyunbo.com/20210202/cy0urBhD/index.m3u8?skipl=1
|
||||
404,https://vip4.ddyunbo.com/20210202/cOf9FXgF/index.m3u8?skipl=1
|
||||
405,https://vip4.ddyunbo.com/20210202/jnSPf5L7/index.m3u8?skipl=1
|
||||
406,https://vip4.ddyunbo.com/20210202/6wLYbWPq/index.m3u8?skipl=1
|
||||
|
||||
🔞日媒无码3,#genre#
|
||||
|
||||
FC2PPV-1226584,https://vip1.slbfsl.com/20220818/nLdvr4w2/index.m3u8
|
||||
FC2PPV-1226584,https://vod3.ttbfp5.com/20230403/6MEOTpkY/index.m3u8
|
||||
FC2PPV-1235209,https://vip1.slbfsl.com/20220818/XMCWmYIz/index.m3u8
|
||||
FC2PPV-1235209,https://vod3.ttbfp5.com/20230409/YH4NIVTh/index.m3u8
|
||||
Carib 041210-345,https://vip1.slbfsl.com/20220818/C9vACssS/index.m3u8
|
||||
Carib 041210-345,https://aosikazy12.com/20220929/iqUTZL9A/index.m3u8
|
||||
Carib 122819-001,https://vip1.slbfsl.com/20220818/muZFQwbr/index.m3u8
|
||||
Carib 122819-001,https://aosikazy12.com/20220929/7dcRQciZ/index.m3u8
|
||||
Carib 122819-001,https://vod3.ttbfp5.com/20230402/tfPSfZZ0/index.m3u8
|
||||
Caribpr 040710-341 ,https://vip1.slbfsl.com/20220818/CosC4oYf/index.m3u8
|
||||
Caribpr 040710-341 ,https://aosikazy12.com/20220929/AoUHqOJz/index.m3u8
|
||||
FC2PPV-1233512 ,https://vip1.slbfsl.com/20220818/TzDcD8Ah/index.m3u8
|
||||
FC2PPV-1233512 ,https://aosikazy12.com/20220929/cTOx9X8F/index.m3u8
|
||||
FC2PPV-1233512 ,https://vod3.ttbfp5.com/20230407/eJqn753A/index.m3u8
|
||||
FC2PPV-1226620,https://vip1.slbfsl.com/20220818/kBbmLn4y/index.m3u8
|
||||
FC2PPV-1226620,https://aosikazy12.com/20220929/RRvqSCzZ/index.m3u8
|
||||
FC2PPV-1234565,https://vip1.slbfsl.com/20220818/ZfYfH9C6/index.m3u8
|
||||
FC2PPV-1234565,https://aosikazy12.com/20220929/9wkupPdS/index.m3u8
|
||||
FC2PPV-1234565,https://vod3.ttbfp5.com/20230409/mBYj4GQf/index.m3u8
|
||||
Carib 050310-364,https://vip1.slbfsl.com/20220818/2pf4qhUP/index.m3u8
|
||||
Carib 050310-364 ,https://aosikazy12.com/20220929/4G1vjG8V/index.m3u8
|
||||
Carib 041010-344 ,https://vip1.slbfsl.com/20220818/G8xaGLd7/index.m3u8
|
||||
Carib 041010-344 ,https://aosikazy12.com/20220929/bNIV0MmE/index.m3u8
|
||||
FC2PPV-1244095,https://vip1.slbfsl.com/20220818/BN5TvwMw/index.m3u8
|
||||
FC2PPV-1244095,https://aosikazy12.com/20220929/CERN3y68/index.m3u8
|
||||
FC2PPV-1233604,https://vip1.slbfsl.com/20220818/jqKkWyyd/index.m3u8
|
||||
FC2PPV-1233604,https://vod3.ttbfp5.com/20230407/T4qAukhF/index.m3u8
|
||||
FC2PPV-1244176,https://vip1.slbfsl.com/20220818/7L5YqnLK/index.m3u8
|
||||
FC2PPV-1244083,https://vip1.slbfsl.com/20220818/iOoPY6MR/index.m3u8
|
||||
FC2PPV-1244083,https://aosikazy12.com/20220929/pXewETjV/index.m3u8
|
||||
FC2PPV-1244083,https://vod3.ttbfp5.com/20230411/bvixSHRz/index.m3u8
|
||||
FC2PPV-1233280,https://vip1.slbfsl.com/20220818/KgBwuuXd/index.m3u8
|
||||
FC2PPV-1233280,https://aosikazy12.com/20220929/B1EpeDn4/index.m3u8
|
||||
FC2PPV-1244053,https://vip1.slbfsl.com/20220818/OIBBm9oz/index.m3u8
|
||||
FC2PPV-1244053,https://aosikazy12.com/20220929/XyAe9nMa/index.m3u8
|
||||
FC2PPV-1243939,https://vip1.slbfsl.com/20220818/9imKQSIQ/index.m3u8
|
||||
FC2PPV-1243939,https://aosikazy12.com/20220929/Eh6SlwaI/index.m3u8
|
||||
Carib 040410-339 ,https://vip1.slbfsl.com/20220818/KWTP14NJ/index.m3u8
|
||||
Carib 040410-339 ,https://aosikazy12.com/20220929/L6edNzE1/index.m3u8
|
||||
FC2PPV-1233100 ,https://vip1.slbfsl.com/20220818/JIeBdXz6/index.m3u8
|
||||
FC2PPV-1233100 ,https://aosikazy12.com/20220929/91cycSZd/index.m3u8
|
||||
FC2PPV-1230185,https://vip1.slbfsl.com/20220818/cfLQAd1X/index.m3u8
|
||||
FC2PPV-1230185,https://aosikazy12.com/20220929/jcDj53ii/index.m3u8
|
||||
FC2PPV-1231059,https://vip1.slbfsl.com/20220818/AkHddzyu/index.m3u8
|
||||
FC2PPV-1231059,https://aosikazy12.com/20220929/43uZvTqd/index.m3u8
|
||||
FC2PPV-1230596,https://vip1.slbfsl.com/20220818/3GWCglie/index.m3u8
|
||||
FC2PPV-1230596,https://aosikazy12.com/20220929/btvSlCZQ/index.m3u8
|
||||
FC2PPV-1230596,https://vod3.ttbfp5.com/20230404/xcisdCXv/index.m3u8
|
||||
FC2PPV-1231680,https://vip1.slbfsl.com/20220818/4qBKIKl7/index.m3u8
|
||||
FC2PPV-1231680,https://aosikazy12.com/20220929/hLCWKAzS/index.m3u8
|
||||
FC2PPV-1243928,https://vip1.slbfsl.com/20220818/LiZyy6lS/index.m3u8
|
||||
FC2PPV-1243928,https://aosikazy12.com/20220929/tAFXpH7T/index.m3u8
|
||||
FC2PPV-1243463,https://vip1.slbfsl.com/20220818/P8Ff6BuK/index.m3u8
|
||||
FC2PPV-1243463,https://aosikazy12.com/20220929/jIcE7IJX/index.m3u8
|
||||
FC2PPV-1243463,https://vod3.ttbfp5.com/20230410/YbYuCKBO/index.m3u8
|
||||
FC2PPV-1209497,https://vip1.slbfsl.com/20220818/An4CkRkC/index.m3u8
|
||||
FC2PPV-1209497,https://aosikazy12.com/20220929/fZRAfak2/index.m3u8
|
||||
FC2PPV-1234159,https://vip1.slbfsl.com/20220818/z1FkVV7t/index.m3u8
|
||||
FC2PPV-1234159,https://aosikazy12.com/20220929/P1m6seTJ/index.m3u8
|
||||
FC2PPV-1235208,https://vip1.slbfsl.com/20220818/wKqrwRYW/index.m3u8
|
||||
FC2PPV-1235208,https://aosikazy12.com/20220929/rj4PbLyx/index.m3u8
|
||||
FC2PPV-1233127,https://vip1.slbfsl.com/20220818/eOBgHfNC/index.m3u8
|
||||
FC2PPV-1233127,https://aosikazy12.com/20220929/xzqHbBbx/index.m3u8
|
||||
FC2PPV-1244192,https://vip1.slbfsl.com/20220818/xJpsYKK4/index.m3u8
|
||||
FC2PPV-1244192,https://aosikazy12.com/20220929/WTtT2ICa/index.m3u8
|
||||
Carib 011320-001,https://vip1.slbfsl.com/20220818/896qr1Ca/index.m3u8
|
||||
Carib 011320-001,https://aosikazy12.com/20220929/qBfKIGlH/index.m3u8
|
||||
FC2PPV-1244023-B,https://vip1.slbfsl.com/20220818/iSqGqMOq/index.m3u8
|
||||
FC2PPV-1244023-B,https://aosikazy12.com/20220929/F0gsM3Hk/index.m3u8
|
||||
FC2PPV-1244888,https://vip1.slbfsl.com/20220818/6v5viS8G/index.m3u8
|
||||
FC2PPV-1244888,https://aosikazy12.com/20220929/mzDq7pSr/index.m3u8
|
||||
FC2PPV-1244023-A,https://vip1.slbfsl.com/20220818/DOyyD9vC/index.m3u8
|
||||
FC2PPV-1244023-A,https://aosikazy12.com/20220929/QfdZvXZs/index.m3u8
|
||||
FC2PPV-1244023-A,https://vod3.ttbfp5.com/20230410/9CcaVMO5/index.m3u8
|
||||
FC2PPV-1227537,https://vip1.slbfsl.com/20220818/wQaffIIT/index.m3u8
|
||||
FC2PPV-1227537,https://aosikazy12.com/20220929/99uaLZEd/index.m3u8
|
||||
Carib 041410-347 ,https://vip1.slbfsl.com/20220818/HLkXJd7o/index.m3u8
|
||||
Carib 041410-347 ,https://aosikazy12.com/20220929/jt2OURx0/index.m3u8
|
||||
FC2PPV-1245021,https://vip1.slbfsl.com/20220818/wvmfRxZw/index.m3u8
|
||||
FC2PPV-1245021,https://aosikazy12.com/20220929/poMR0VKC/index.m3u8
|
||||
FC2PPV-1233392,https://vip1.slbfsl.com/20220818/4sh8OxxN/index.m3u8
|
||||
FC2PPV-1233392,https://aosikazy12.com/20220929/rJT4uh5c/index.m3u8
|
||||
FC2PPV-1226815,https://vip1.slbfsl.com/20220818/0XTQOTRF/index.m3u8
|
||||
FC2PPV-1226815,https://aosikazy12.com/20220929/w5Xj9i4P/index.m3u8
|
||||
Carib 072310-434 ,https://vip1.slbfsl.com/20220818/dd2WHOoX/index.m3u8
|
||||
Carib 072310-434 ,https://aosikazy12.com/20221002/NpSBmjkm/index.m3u8
|
||||
HAMESAMURA ,https://vip1.slbfsl.com/20220818/MSCkJtkz/index.m3u8
|
||||
HAMESAMURA ,https://aosikazy12.com/20221002/9KpYlXnx/index.m3u8
|
||||
FC2PPV-1264353,https://vip1.slbfsl.com/20220818/C84H3d0W/index.m3u8
|
||||
FC2PPV-1264353,https://aosikazy12.com/20221002/wAKRUh2r/index.m3u8
|
||||
Carib 072410-435 ,https://vip1.slbfsl.com/20220818/WZxDkttg/index.m3u8
|
||||
Carib 072410-435 ,https://aosikazy12.com/20221002/lEhhYPMp/index.m3u8
|
||||
Carib 072610-436 ,https://vip1.slbfsl.com/20220818/Vt8HXiZQ/index.m3u8
|
||||
Carib 072610-436 ,https://aosikazy12.com/20221002/yDDTRArH/index.m3u8
|
||||
FC2PPV-1265930 ,https://vip1.slbfsl.com/20220818/Como3C0x/index.m3u8
|
||||
FC2PPV-1265930 ,https://aosikazy12.com/20221002/9JX0ZUul/index.m3u8
|
||||
FC2PPV-1260163 ,https://vip1.slbfsl.com/20220818/EwMuaeOp/index.m3u8
|
||||
FC2PPV-1260163 ,https://aosikazy12.com/20221002/RYtrwlCU/index.m3u8
|
||||
FC2PPV-1272414 ,https://vip1.slbfsl.com/20220818/tQPvvIKc/index.m3u8
|
||||
FC2PPV-1272414 ,https://aosikazy12.com/20221002/fPH12wYV/index.m3u8
|
||||
FC2PPV-1272414 ,https://vod3.ttbfp5.com/20230419/B6lvGpXo/index.m3u8
|
||||
FC2PPV-1273728,https://vip1.slbfsl.com/20220818/uKVgYOkP/index.m3u8
|
||||
FC2PPV-1273728,https://aosikazy12.com/20221002/Iicmd4ok/index.m3u8
|
||||
FC2PPV-1273699 ,https://vip1.slbfsl.com/20220818/1PfbFWpI/index.m3u8
|
||||
FC2PPV-1273699 ,https://aosikazy12.com/20221002/sFXVhLWH/index.m3u8
|
||||
FC2PPV-1271635 ,https://vip1.slbfsl.com/20220818/oMYV4pWn/index.m3u8
|
||||
FC2PPV-1271635 ,https://aosikazy12.com/20221002/F3VmmoMv/index.m3u8
|
||||
|
||||
🔞日媒无码4,#genre#
|
||||
|
||||
FC2PPV-1226584,https://vip1.slbfsl.com/20220818/nLdvr4w2/index.m3u8
|
||||
FC2PPV-1226584,https://aosikazy12.com/20220929/Y3kiFgyI/index.m3u8
|
||||
FC2PPV-1226584,https://vod3.ttbfp5.com/20230403/6MEOTpkY/index.m3u8
|
||||
FC2PPV-1235209,https://vip1.slbfsl.com/20220818/XMCWmYIz/index.m3u8
|
||||
FC2PPV-1235209,https://aosikazy12.com/20220929/cejBtTpH/index.m3u8
|
||||
FC2PPV-1235209,https://vod3.ttbfp5.com/20230409/YH4NIVTh/index.m3u8
|
||||
Carib 041210-345,https://vip1.slbfsl.com/20220818/C9vACssS/index.m3u8
|
||||
Carib 041210-345,https://aosikazy12.com/20220929/iqUTZL9A/index.m3u8
|
||||
Carib 122819-001,https://vip1.slbfsl.com/20220818/muZFQwbr/index.m3u8
|
||||
Carib 122819-001,https://aosikazy12.com/20220929/7dcRQciZ/index.m3u8
|
||||
Carib 122819-001,https://vod3.ttbfp5.com/20230402/tfPSfZZ0/index.m3u8
|
||||
Caribpr 040710-341 ,https://vip1.slbfsl.com/20220818/CosC4oYf/index.m3u8
|
||||
Caribpr 040710-341 ,https://aosikazy12.com/20220929/AoUHqOJz/index.m3u8
|
||||
Caribpr 040710-341 ,https://vod3.ttbfp5.com/20230402/kzgS7hPY/index.m3u8
|
||||
FC2PPV-1233512 ,https://vip1.slbfsl.com/20220818/TzDcD8Ah/index.m3u8
|
||||
FC2PPV-1233512 ,https://aosikazy12.com/20220929/cTOx9X8F/index.m3u8
|
||||
FC2PPV-1233512 ,https://vod3.ttbfp5.com/20230407/eJqn753A/index.m3u8
|
||||
FC2PPV-1226620,https://vip1.slbfsl.com/20220818/kBbmLn4y/index.m3u8
|
||||
FC2PPV-1226620,https://aosikazy12.com/20220929/RRvqSCzZ/index.m3u8
|
||||
FC2PPV-1234565,https://vip1.slbfsl.com/20220818/ZfYfH9C6/index.m3u8
|
||||
FC2PPV-1234565,https://aosikazy12.com/20220929/9wkupPdS/index.m3u8
|
||||
FC2PPV-1234565,https://vod3.ttbfp5.com/20230409/mBYj4GQf/index.m3u8
|
||||
Carib 050310-364 ,https://vip1.slbfsl.com/20220818/2pf4qhUP/index.m3u8
|
||||
Carib 050310-364 ,https://aosikazy12.com/20220929/4G1vjG8V/index.m3u8
|
||||
Carib 050310-364 ,https://vod3.ttbfp5.com/20230401/pAXS4bjX/index.m3u8
|
||||
Carib 041010-344 ,https://vip1.slbfsl.com/20220818/G8xaGLd7/index.m3u8
|
||||
Carib 041010-344 ,https://aosikazy12.com/20220929/bNIV0MmE/index.m3u8
|
||||
Carib 041010-344 ,https://vod3.ttbfp5.com/20230401/xTmzsMqb/index.m3u8
|
||||
FC2PPV-1244095,https://vip1.slbfsl.com/20220818/BN5TvwMw/index.m3u8
|
||||
FC2PPV-1244095,https://aosikazy12.com/20220929/CERN3y68/index.m3u8
|
||||
FC2PPV-1244095,https://vod3.ttbfp5.com/20230411/TLWNndza/index.m3u8
|
||||
FC2PPV-1233604,https://vip1.slbfsl.com/20220818/jqKkWyyd/index.m3u8
|
||||
FC2PPV-1233604,https://aosikazy12.com/20220929/t8ohaxz8/index.m3u8
|
||||
FC2PPV-1233604,https://vod3.ttbfp5.com/20230407/T4qAukhF/index.m3u8
|
||||
FC2PPV-1244176,https://vip1.slbfsl.com/20220818/7L5YqnLK/index.m3u8
|
||||
FC2PPV-1244176,https://vod3.ttbfp5.com/20230411/Y7V2ZBik/index.m3u8
|
||||
FC2PPV-1244083,https://vip1.slbfsl.com/20220818/iOoPY6MR/index.m3u8
|
||||
FC2PPV-1244083,https://aosikazy12.com/20220929/pXewETjV/index.m3u8
|
||||
FC2PPV-1244083,https://vod3.ttbfp5.com/20230411/bvixSHRz/index.m3u8
|
||||
FC2PPV-1233280,https://vip1.slbfsl.com/20220818/KgBwuuXd/index.m3u8
|
||||
FC2PPV-1233280,https://aosikazy12.com/20220929/B1EpeDn4/index.m3u8
|
||||
FC2PPV-1244053,https://vip1.slbfsl.com/20220818/OIBBm9oz/index.m3u8
|
||||
FC2PPV-1244053,https://aosikazy12.com/20220929/XyAe9nMa/index.m3u8
|
||||
FC2PPV-1244053,https://vod3.ttbfp5.com/20230410/SQ7l2Y4j/index.m3u8
|
||||
FC2PPV-1243939,https://vip1.slbfsl.com/20220818/9imKQSIQ/index.m3u8
|
||||
FC2PPV-1243939,https://aosikazy12.com/20220929/Eh6SlwaI/index.m3u8
|
||||
FC2PPV-1243939,https://vod3.ttbfp5.com/20230410/PGcoJQCS/index.m3u8
|
||||
Carib 040410-339 ,https://vip1.slbfsl.com/20220818/KWTP14NJ/index.m3u8
|
||||
Carib 040410-339 ,https://aosikazy12.com/20220929/L6edNzE1/index.m3u8
|
||||
Carib 040410-339 ,https://vod3.ttbfp5.com/20230330/vrHvB78Y/index.m3u8
|
||||
FC2PPV-1233100 ,https://vip1.slbfsl.com/20220818/JIeBdXz6/index.m3u8
|
||||
FC2PPV-1233100 ,https://aosikazy12.com/20220929/91cycSZd/index.m3u8
|
||||
FC2PPV-1233100 ,https://vod3.ttbfp5.com/20230406/t5izpsCg/index.m3u8
|
||||
FC2PPV-1230185,https://vip1.slbfsl.com/20220818/cfLQAd1X/index.m3u8
|
||||
FC2PPV-1230185,https://aosikazy12.com/20220929/jcDj53ii/index.m3u8
|
||||
FC2PPV-1230185,https://vod3.ttbfp5.com/20230404/s2ApKeVg/index.m3u8
|
||||
FC2PPV-1231059,https://vip1.slbfsl.com/20220818/AkHddzyu/index.m3u8
|
||||
FC2PPV-1231059,https://aosikazy12.com/20220929/43uZvTqd/index.m3u8
|
||||
FC2PPV-1230596,https://vip1.slbfsl.com/20220818/3GWCglie/index.m3u8
|
||||
FC2PPV-1230596,https://aosikazy12.com/20220929/btvSlCZQ/index.m3u8
|
||||
FC2PPV-1230596,https://vod3.ttbfp5.com/20230404/xcisdCXv/index.m3u8
|
||||
FC2PPV-1231680,https://vip1.slbfsl.com/20220818/4qBKIKl7/index.m3u8
|
||||
FC2PPV-1231680,https://aosikazy12.com/20220929/hLCWKAzS/index.m3u8
|
||||
FC2PPV-1231680,https://vod3.ttbfp5.com/20230406/J2VdAAlf/index.m3u8
|
||||
FC2PPV-1243928,https://vip1.slbfsl.com/20220818/LiZyy6lS/index.m3u8
|
||||
FC2PPV-1243928,https://aosikazy12.com/20220929/tAFXpH7T/index.m3u8
|
||||
FC2PPV-1243928,https://vod3.ttbfp5.com/20230410/JoeFKjnA/index.m3u8
|
||||
FC2PPV-1243463,https://vip1.slbfsl.com/20220818/P8Ff6BuK/index.m3u8
|
||||
FC2PPV-1243463,https://aosikazy12.com/20220929/jIcE7IJX/index.m3u8
|
||||
FC2PPV-1243463,https://vod3.ttbfp5.com/20230410/YbYuCKBO/index.m3u8
|
||||
FC2PPV-1209497,https://vip1.slbfsl.com/20220818/An4CkRkC/index.m3u8
|
||||
FC2PPV-1209497,https://aosikazy12.com/20220929/fZRAfak2/index.m3u8
|
||||
FC2PPV-1209497,https://vod3.ttbfp5.com/20230402/EUbfgV6c/index.m3u8
|
||||
FC2PPV-1234159,https://vip1.slbfsl.com/20220818/z1FkVV7t/index.m3u8
|
||||
FC2PPV-1234159,https://aosikazy12.com/20220929/P1m6seTJ/index.m3u8
|
||||
FC2PPV-1234159,https://vod3.ttbfp5.com/20230407/3NG1sXSc/index.m3u8
|
||||
FC2PPV-1235208,https://vip1.slbfsl.com/20220818/wKqrwRYW/index.m3u8
|
||||
FC2PPV-1235208,https://aosikazy12.com/20220929/rj4PbLyx/index.m3u8
|
||||
FC2PPV-1235208,https://vod3.ttbfp5.com/20230409/30J30YY5/index.m3u8
|
||||
FC2PPV-1233127,https://vip1.slbfsl.com/20220818/eOBgHfNC/index.m3u8
|
||||
FC2PPV-1233127,https://aosikazy12.com/20220929/xzqHbBbx/index.m3u8
|
||||
FC2PPV-1233127,https://vod3.ttbfp5.com/20230406/Xn7E2mh1/index.m3u8
|
||||
FC2PPV-1244192,https://vip1.slbfsl.com/20220818/xJpsYKK4/index.m3u8
|
||||
FC2PPV-1244192,https://aosikazy12.com/20220929/WTtT2ICa/index.m3u8
|
||||
FC2PPV-1244192,https://vod3.ttbfp5.com/20230411/OdUhWN5n/index.m3u8
|
||||
Carib 011320-001,https://vip1.slbfsl.com/20220818/896qr1Ca/index.m3u8
|
||||
Carib 011320-001,https://aosikazy12.com/20220929/qBfKIGlH/index.m3u8
|
||||
Carib 011320-001,https://vod3.ttbfp5.com/20230330/hxtmPwND/index.m3u8
|
||||
FC2PPV-1244023-B,https://vip1.slbfsl.com/20220818/iSqGqMOq/index.m3u8
|
||||
FC2PPV-1244023-B,https://aosikazy12.com/20220929/F0gsM3Hk/index.m3u8
|
||||
FC2PPV-1244023-B,https://vod3.ttbfp5.com/20230410/38Jr4L7V/index.m3u8
|
||||
FC2PPV-1244888,https://vip1.slbfsl.com/20220818/6v5viS8G/index.m3u8
|
||||
FC2PPV-1244888,https://aosikazy12.com/20220929/mzDq7pSr/index.m3u8
|
||||
FC2PPV-1244888,https://vod3.ttbfp5.com/20230412/taINLpXh/index.m3u8
|
||||
FC2PPV-1244023-A,https://vip1.slbfsl.com/20220818/DOyyD9vC/index.m3u8
|
||||
FC2PPV-1244023-A,https://aosikazy12.com/20220929/QfdZvXZs/index.m3u8
|
||||
FC2PPV-1244023-A,https://vod3.ttbfp5.com/20230410/9CcaVMO5/index.m3u8
|
||||
FC2PPV-1227537,https://vip1.slbfsl.com/20220818/wQaffIIT/index.m3u8
|
||||
FC2PPV-1227537,https://aosikazy12.com/20220929/99uaLZEd/index.m3u8
|
||||
FC2PPV-1227537,https://vod3.ttbfp5.com/20230403/9ZA11t0G/index.m3u8
|
||||
Carib 041410-347 ,https://vip1.slbfsl.com/20220818/HLkXJd7o/index.m3u8
|
||||
Carib 041410-347 ,https://aosikazy12.com/20220929/jt2OURx0/index.m3u8
|
||||
FC2PPV-1245021,https://vip1.slbfsl.com/20220818/wvmfRxZw/index.m3u8
|
||||
FC2PPV-1245021,https://aosikazy12.com/20220929/poMR0VKC/index.m3u8
|
||||
FC2PPV-1245021,https://vod3.ttbfp5.com/20230412/Y65pU30c/index.m3u8
|
||||
FC2PPV-1233392,https://vip1.slbfsl.com/20220818/4sh8OxxN/index.m3u8
|
||||
FC2PPV-1233392,https://aosikazy12.com/20220929/rJT4uh5c/index.m3u8
|
||||
FC2PPV-1226815,https://vip1.slbfsl.com/20220818/0XTQOTRF/index.m3u8
|
||||
FC2PPV-1226815,https://aosikazy12.com/20220929/w5Xj9i4P/index.m3u8
|
||||
Carib 072310-434 ,https://vip1.slbfsl.com/20220818/dd2WHOoX/index.m3u8
|
||||
Carib 072310-434 ,https://aosikazy12.com/20221002/NpSBmjkm/index.m3u8
|
||||
Carib 072310-434 ,https://vod3.ttbfp5.com/20230401/kmlhYsTX/index.m3u8
|
||||
HAMESAMURAI0210 ,https://vip1.slbfsl.com/20220818/MSCkJtkz/index.m3u8
|
||||
HAMESAMURAI0210 ,https://aosikazy12.com/20221002/9KpYlXnx/index.m3u8
|
||||
FC2PPV-1264353,https://vip1.slbfsl.com/20220818/C84H3d0W/index.m3u8
|
||||
FC2PPV-1264353,https://aosikazy12.com/20221002/wAKRUh2r/index.m3u8
|
||||
FC2PPV-1264353,https://vod3.ttbfp5.com/20230417/9Gx1I2Gg/index.m3u8
|
||||
Carib 072410-435 ,https://vip1.slbfsl.com/20220818/WZxDkttg/index.m3u8
|
||||
Carib 072410-435 ,https://aosikazy12.com/20221002/lEhhYPMp/index.m3u8
|
||||
Carib 072410-435 ,https://vod3.ttbfp5.com/20230401/0A0WXq8l/index.m3u8
|
||||
Carib 072610-436 ,https://vip1.slbfsl.com/20220818/Vt8HXiZQ/index.m3u8
|
||||
Carib 072610-436 ,https://aosikazy12.com/20221002/yDDTRArH/index.m3u8
|
||||
Carib 072610-436 ,https://vod3.ttbfp5.com/20230401/RZgvhty1/index.m3u8
|
||||
FC2PPV-1265930 ,https://vip1.slbfsl.com/20220818/Como3C0x/index.m3u8
|
||||
FC2PPV-1265930 ,https://aosikazy12.com/20221002/9JX0ZUul/index.m3u8
|
||||
FC2PPV-1260163 ,https://vip1.slbfsl.com/20220818/EwMuaeOp/index.m3u8
|
||||
FC2PPV-1260163 ,https://aosikazy12.com/20221002/RYtrwlCU/index.m3u8
|
||||
FC2PPV-1260163 ,https://vod3.ttbfp5.com/20230416/bA0bl2tg/index.m3u8
|
||||
FC2PPV-1272414 ,https://vip1.slbfsl.com/20220818/tQPvvIKc/index.m3u8
|
||||
FC2PPV-1272414 ,https://aosikazy12.com/20221002/fPH12wYV/index.m3u8
|
||||
FC2PPV-1272414 ,https://vod3.ttbfp5.com/20230419/B6lvGpXo/index.m3u8
|
||||
FC2PPV-1273728,https://vip1.slbfsl.com/20220818/uKVgYOkP/index.m3u8
|
||||
FC2PPV-1273728,https://aosikazy12.com/20221002/Iicmd4ok/index.m3u8
|
||||
FC2PPV-1273699 ,https://vip1.slbfsl.com/20220818/1PfbFWpI/index.m3u8
|
||||
FC2PPV-1273699 ,https://aosikazy12.com/20221002/sFXVhLWH/index.m3u8
|
||||
FC2PPV-1271635 ,https://vip1.slbfsl.com/20220818/oMYV4pWn/index.m3u8
|
||||
FC2PPV-1271635 ,https://aosikazy12.com/20221002/F3VmmoMv/index.m3u8
|
||||
FC2PPV-1271635 ,https://vod3.ttbfp5.com/20230418/YStovsjP/index.m3u8
|
||||
|
||||
🔞日媒无码5,#genre#
|
||||
|
||||
パパの言うことなら何でも聞くよ,https://vip2.slbfsl.com/20230330/cLTWN31a/index.m3u8
|
||||
ねっとりベロチュー、みっちりセックス~グチョグチョにしてほしい,https://vip2.slbfsl.com/20230331/2cHwPFn3/index.m3u8
|
||||
はいてる下着を買い取らせて下さい!,https://vip2.slbfsl.com/20230331/bNczsrvO/index.m3u8
|
||||
パシオン?アモローサ ~愛する情熱 9~,https://vip2.slbfsl.com/20230331/E4rKi9vD/index.m3u8
|
||||
ハロウィンコスでイカせてア?ゲ?ル!,https://vip2.slbfsl.com/20230331/MxKvyGTt/index.m3u8
|
||||
パシオン?アモローサ ?愛する情熱 7?,https://vip2.slbfsl.com/20230331/ggHwX8YL/index.m3u8
|
||||
パイパン娘が面接に来たから体験撮影で即ハメ生中出し,https://vip2.slbfsl.com/20230331/od4AUxII/index.m3u8
|
||||
もうっ!そんなにオッパイ攻められたらビクビクしちゃう,https://vip2.slbfsl.com/20230402/eBj27cKi/index.m3u8
|
||||
みことのオッパイを徹底的に責めてみました,https://vip2.slbfsl.com/20230402/YSHCoJtE/index.m3u8
|
||||
マン筋際立つぱっつぱつの競泳水着,https://vip2.slbfsl.com/20230402/5aJvcy0n/index.m3u8
|
||||
まんチラの誘惑 ~欲求不満な友達のママ~,https://vip2.slbfsl.com/20230402/IzNklLM6/index.m3u8
|
||||
まんチラの誘惑 ?寝顔がキュートな友達のママ?,https://vip2.slbfsl.com/20230402/r8L5uBWJ/index.m3u8
|
||||
ムチムチデカ尻奧様,https://vip2.slbfsl.com/20230402/nveODNqC/index.m3u8
|
||||
みっちりセックス~たくさんキスしてほしい!,https://vip2.slbfsl.com/20230402/7Iu6ZYUO/index.m3u8
|
||||
メガネ外したら更にロリカワユス!,https://vip2.slbfsl.com/20230402/KY9kzGCF/index.m3u8
|
||||
マシュマロのようなおっぱい,https://vip2.slbfsl.com/20230402/Xt7AZqdl/index.m3u8
|
||||
モデルコレクション ポップ,https://vip2.slbfsl.com/20230403/uuXu7K6p/index.m3u8
|
||||
りゅうを下品に調教!,https://vip2.slbfsl.com/20230403/DuA9FTph/index.m3u8
|
||||
モデルコレクション エレガンス,https://vip2.slbfsl.com/20230403/Wzkay0AH/index.m3u8
|
||||
もぞもぞ布団の中で,https://vip2.slbfsl.com/20230403/HtmCB1vy/index.m3u8
|
||||
モデルコレクション,https://vip2.slbfsl.com/20230403/K9biWwuH/index.m3u8
|
||||
リビアンコム スカイエンジェル 182 パート 1,https://vip2.slbfsl.com/20230403/lZjrvFLx/index.m3u8
|
||||
をオモチャ責め,https://vip2.slbfsl.com/20230404/01J7WImo/index.m3u8
|
||||
奥様は卑猥な共犯者,https://vip2.slbfsl.com/20230404/O6eHkyUR/index.m3u8
|
||||
奥さん、今はいてる下着を買い取らせて下さい,https://vip2.slbfsl.com/20230404/jbgF0EZ8/index.m3u8
|
||||
ロリ顔&ロリ体型の黒髪JD18歳が,https://vip2.slbfsl.com/20230404/EbL66Yke/index.m3u8
|
||||
本気汁垂れ流してガチイキに初老も感動中出し,https://vip2.slbfsl.com/20230405/0dpqkflL/index.m3u8
|
||||
変態セックス,https://vip2.slbfsl.com/20230406/qZGEo73G/index.m3u8
|
||||
不倫はダメだって世間は言うけど会いたかったから来ちゃった~,https://vip2.slbfsl.com/20230406/LWsowW9I/index.m3u8
|
||||
長舌?神テク!&騎乗位必見です,https://vip2.slbfsl.com/20230406/ACddnxUy/index.m3u8
|
||||
朝ゴミ出しする近所の遊び好きノーブラ奥さ,https://vip2.slbfsl.com/20230407/qOPkoxQK/index.m3u8
|
||||
朝と夜に隙間がある場合は、すぐに挿入してください?怒りの波がオリジナルスタイルのオリジナルモデルに継続的に挿入されます!,https://vip2.slbfsl.com/20230407/C66POgiT/index.m3u8
|
||||
恥じらいながらも SEXに興味深々洗ってからしよ.,https://vip2.slbfsl.com/20230407/RZUujrLx/index.m3u8
|
||||
車内はみんなに見られてる感じがして,https://vip2.slbfsl.com/20230407/Kp8gEHnm/index.m3u8
|
||||
大きな喘ぎ聲が特徴,https://vip2.slbfsl.com/20230408/2Hur94gF/index.m3u8
|
||||
初出勤の無知なデリヘル嬢に中出しまでしちゃいました ~,https://vip2.slbfsl.com/20230408/IbyZvvZu/index.m3u8
|
||||
初裏 Debut Vol.10,https://vip2.slbfsl.com/20230408/zAru6ULS/index.m3u8
|
||||
従順なスク水娘にイタズラしちゃお,https://vip2.slbfsl.com/20230408/QMfdBeAc/index.m3u8
|
||||
大興奮?びしょ濡れマンコに生ハメ中出し,https://vip2.slbfsl.com/20230409/rJXKmrjn/index.m3u8
|
||||
?誕生日はエッチな下着でお祝いしてアゲル?,https://vip2.slbfsl.com/20230409/TE7KaEXS/index.m3u8
|
||||
地雷系アニメ声のむっちり娘に目隠し手足拘束,https://vip2.slbfsl.com/20230409/gVklTNS7/index.m3u8
|
||||
當我看著他睡過頭時,真的很想做愛,https://vip2.slbfsl.com/20230409/41hncidD/index.m3u8
|
||||
旦那とのセックス不足で欲求不満炸裂,https://vip2.slbfsl.com/20230409/3beBTO3u/index.m3u8
|
||||
到東京熱,https://vip2.slbfsl.com/20230409/4A3yJtng/index.m3u8
|
||||
読者モデルのスケスケ水着調教,https://vip2.slbfsl.com/20230410/i6Zo4I8G/index.m3u8
|
||||
働きウーマン ~社長と密会アフター5,https://vip2.slbfsl.com/20230410/XqiMj5tm/index.m3u8
|
||||
放課後に、仕込んでください ?イキたい,https://vip2.slbfsl.com/20230411/mSBqhSqL/index.m3u8
|
||||
非常敏感的身體,https://vip2.slbfsl.com/20230411/5zn6VQlP/index.m3u8
|
||||
放尿大好きな変態娘,https://vip2.slbfsl.com/20230411/xc55hGfb/index.m3u8
|
||||
高身長のバドミントン部-part 2,https://vip2.slbfsl.com/20230412/Lm0rqIIO/index.m3u8
|
||||
関〇外〇大学3年生、海外留学のためパパ活,https://vip2.slbfsl.com/20230412/FzgiV8dL/index.m3u8
|
||||
何でも言うことを聞いちゃいます,https://vip2.slbfsl.com/20230413/Qs7eC5zZ/index.m3u8
|
||||
回春エステで僕の勃起が止まらない,https://vip2.slbfsl.com/20230414/QHF563G5/index.m3u8
|
||||
歡迎來到豪華香皂,https://vip2.slbfsl.com/20230414/0OaNQ0p0/index.m3u8
|
||||
極上泡姫物語 Vol.102 ~,https://vip2.slbfsl.com/20230414/jRXZrLwE/index.m3u8
|
||||
積極的なオンナ,https://vip2.slbfsl.com/20230414/V7I2GGJi/index.m3u8
|
||||
即ハメさせてもらいます!,https://vip2.slbfsl.com/20230414/aC4vPn2j/index.m3u8
|
||||
結婚生活はうまくいっているけれど、,https://vip2.slbfsl.com/20230415/RSp2pn9f/index.m3u8
|
||||
今日は俺の誕生日だからプレゼントに中出ししていい?,https://vip2.slbfsl.com/20230415/6lR5y7D0/index.m3u8
|
||||
今日のために綺麗に剃ってきました~,https://vip2.slbfsl.com/20230415/TV5VyE6L/index.m3u8
|
||||
結婚3年の真緒さんの、自他共に認めるいい,https://vip2.slbfsl.com/20230415/h95CMnNZ/index.m3u8
|
||||
今回のアマチュアハメ,https://vip2.slbfsl.com/20230415/W5LBMlYf/index.m3u8
|
||||
今日の体位をダーツで決める!,https://vip2.slbfsl.com/20230415/38qI6tGj/index.m3u8
|
||||
就活ストレスはセックスで解消!!,https://vip2.slbfsl.com/20230416/c1TaSLkv/index.m3u8
|
||||
就職活動,https://vip2.slbfsl.com/20230416/O0JpOhUs/index.m3u8
|
||||
精子は飲むものだと元カレに調教されま,https://vip2.slbfsl.com/20230416/OAIZYX2r/index.m3u8
|
||||
久しぶりのセックスで、抑えていた慾望が,https://vip2.slbfsl.com/20230416/vfnOnP1Q/index.m3u8
|
||||
可愛い笑顔とFカップが魅力,https://vip2.slbfsl.com/20230417/y0LpQcyL/index.m3u8
|
||||
可愛いアイドルフェイス再び降臨,https://vip2.slbfsl.com/20230417/Fcagl4Fn/index.m3u8
|
||||
可愛すぎるパイパンエンジェル,https://vip2.slbfsl.com/20230417/yPW2pC6I/index.m3u8
|
||||
看護師26歳-Part 3,https://vip2.slbfsl.com/20230417/ljzPgqGF/index.m3u8
|
||||
恐怖で震えながら強制連続中出し。,https://vip2.slbfsl.com/20230417/NVITp81V/index.m3u8
|
||||
可愛いママ友に魅かれて,https://vip2.slbfsl.com/20230417/IacWvSc8/index.m3u8
|
||||
流出版-いつでも挿れ放題な催眠,https://vip2.slbfsl.com/20230418/qGTTAU0e/index.m3u8
|
||||
流出版-川上奈々美無碼流出,https://vip2.slbfsl.com/20230418/uSGccKt7/index.m3u8
|
||||
令嬢と召使 ?舌をいっぱい出してワレメを舐めなさいよ?,https://vip2.slbfsl.com/20230418/wayddC9H/index.m3u8
|
||||
両穴を餌に誘惑してくる近所の奥さん,https://vip2.slbfsl.com/20230418/etJ7qYBw/index.m3u8
|
||||
流出版-大橋優子無碼流出,https://vip2.slbfsl.com/20230418/KXcOJc28/index.m3u8
|
||||
豊満ムラムラ美ボディガール,https://vip2.slbfsl.com/20230418/xYPhVUeJ/index.m3u8
|
||||
流出版-真正中出し12発!,https://vip2.slbfsl.com/20230418/otaGLKKn/index.m3u8
|
||||
流出版-南国から来たハーフの子,https://vip2.slbfsl.com/20230418/dSrOXNaS/index.m3u8
|
||||
流出版-神野はづき無碼流出,https://vip2.slbfsl.com/20230419/WDmd2iHy/index.m3u8
|
||||
流出版-土屋鈴無碼流出,https://vip2.slbfsl.com/20230419/DDaQtCFN/index.m3u8
|
||||
流出版-水無瀨優夏無碼流出,https://vip2.slbfsl.com/20230419/epdFbro2/index.m3u8
|
||||
炉輪カン校内暴行妊娠汁,https://vip2.slbfsl.com/20230419/ld5D7chj/index.m3u8
|
||||
流出版-小野寺梨紗無碼流出,https://vip2.slbfsl.com/20230419/X2DCy0vR/index.m3u8
|
||||
流出版-優希まこと無碼流出,https://vip2.slbfsl.com/20230419/9HiesmbU/index.m3u8
|
||||
流出版-芹沢つむぎ無碼流出,https://vip2.slbfsl.com/20230419/oMLOMApB/index.m3u8
|
||||
流出版-山本エリカ無碼流出,https://vip2.slbfsl.com/20230419/XVhP4IUJ/index.m3u8
|
||||
流出版-音梓無碼流出2,https://vip2.slbfsl.com/20230419/d9IWkwNA/index.m3u8
|
||||
流出版-吉澤明步無碼流出-Part 3,https://vip2.slbfsl.com/20230419/SPmxpGOs/index.m3u8
|
||||
流出版-音梓無碼流出1,https://vip2.slbfsl.com/20230419/rY7FxjsA/index.m3u8
|
||||
流出版-葵玲奈無碼流出,https://vip2.slbfsl.com/20230419/tViLtHa4/index.m3u8
|
||||
流出版-陽田まり無碼流出,https://vip2.slbfsl.com/20230419/vMdkUeLX/index.m3u8
|
||||
美麗的溫泉,https://vip2.slbfsl.com/20230420/BSMnagCs/index.m3u8
|
||||
美BODYに膣内暴発-Part 1,https://vip2.slbfsl.com/20230420/jTDzqNUh/index.m3u8
|
||||
美しいBODYを弄び生挿入でガン突き中出し,https://vip2.slbfsl.com/20230420/TZSq8mRX/index.m3u8
|
||||
美BODYに膣内暴発-Part 2,https://vip2.slbfsl.com/20230420/QxQzbTSd/index.m3u8
|
||||
秘蔵マンコセレクション2,https://vip2.slbfsl.com/20230421/lt11BPbq/index.m3u8
|
||||
奶牛位置,https://vip2.slbfsl.com/20230421/ddpHZ2A7/index.m3u8
|
||||
難波高額援助-part 1,https://vip2.slbfsl.com/20230421/9LvdoXEe/index.m3u8
|
||||
模型集合,https://vip2.slbfsl.com/20230421/FzB2ETjj/index.m3u8
|
||||
模特的集合,https://vip2.slbfsl.com/20230421/jXtbHqut/index.m3u8
|
||||
苗條的秀麗,https://vip2.slbfsl.com/20230421/ACRIKFyD/index.m3u8
|
||||
|
||||
|
||||
|
||||
🔞麻豆映画1,#genre#
|
||||
0,https://1xp60.cdnedge.live/file/avple-images/hls/61846369fddb3b0ce1f32686/playlist.m3u8
|
||||
1,https://1xp60.cdnedge.live/file/avple-images/hls/618626d126bdd144b598cbd8/playlist.m3u8
|
||||
2,https://1xp60.cdnedge.live/file/avple-images/hls/618b9a8552fe307992e91593/playlist.m3u8
|
||||
3,https://1xp60.cdnedge.live/file/avple-images/hls/618d1ae5608a75437203be00/playlist.m3u8
|
||||
4,https://1xp60.cdnedge.live/file/avple-images/hls/6190b6913e002b78fa02b86a/playlist.m3u8
|
||||
5,https://1xp60.cdnedge.live/file/avple-images/hls/6190bb413e002b78fa02b874/playlist.m3u8
|
||||
6,https://1xp60.cdnedge.live/file/avple-images/hls/61924c8189e9d231c0a0b0e4/playlist.m3u8
|
||||
7,https://1xp60.cdnedge.live/file/avple-images/hls/6193ba5e1ab2cd467ae53598/playlist.m3u8
|
||||
8,https://1xp60.cdnedge.live/file/avple-images/hls/619e96fd364f6c1f6030fe59/playlist.m3u8
|
||||
9,https://1xp60.cdnedge.live/file/avple-images/hls/61a0e86d3006a4603929a391/playlist.m3u8
|
||||
10,https://1xp60.cdnedge.live/file/avple-images/hls/61a289d9c4f43c7ba5009c29/playlist.m3u8
|
||||
11,https://1xp60.cdnedge.live/file/avple-images/hls/61a523f1a992bd3d5c3eb619/playlist.m3u8
|
||||
12,https://1xp60.cdnedge.live/file/avple-images/hls/61b05131cb1e9c2565068be5/playlist.m3u8
|
||||
13,https://1xp60.cdnedge.live/file/avple-images/hls/61b0529acb1e9c2565068be8/playlist.m3u8
|
||||
14,https://1xp60.cdnedge.live/file/avple-images/hls/61b1a2751b15f6408e9320e6/playlist.m3u8
|
||||
15,https://1xp60.cdnedge.live/file/avple-images/hls/61b46dc5f91a1b0eecb6e52f/playlist.m3u8
|
||||
16,https://1xp60.cdnedge.live/file/avple-images/hls/61b817f997618e5cc644ad44/playlist.m3u8
|
||||
17,https://1xp60.cdnedge.live/file/avple-images/hls/61b97d650d486a09e8730583/playlist.m3u8
|
||||
18,https://1xp60.cdnedge.live/file/avple-images/hls/61c189518ac9db578c18b7f0/playlist.m3u8
|
||||
19,https://1xp60.cdnedge.live/file/avple-images/hls/61c2cedd768c0b6e65877053/playlist.m3u8
|
||||
20,https://1xp60.cdnedge.live/file/avple-images/hls/61c6a701668fd93b4250a31e/playlist.m3u8
|
||||
21,https://1xp60.cdnedge.live/file/avple-images/hls/61c6b026668fd93b4250a32c/playlist.m3u8
|
||||
22,https://1xp60.cdnedge.live/file/avple-images/hls/61d0c11a8ec5397ce0e2cde1/playlist.m3u8
|
||||
23,https://1xp60.cdnedge.live/file/avple-images/hls/61d0c3ad8ec5397ce0e2cde7/playlist.m3u8
|
||||
24,https://1xp60.cdnedge.live/file/avple-images/hls/61d62646f2772f49dcde1d51/playlist.m3u8
|
||||
25,https://1xp60.cdnedge.live/file/avple-images/hls/61d8f735188cab78b243b40a/playlist.m3u8
|
||||
26,https://1xp60.cdnedge.live/file/avple-images/hls/61de14e526bc6674a0936d22/playlist.m3u8
|
||||
27,https://1xp60.cdnedge.live/file/avple-images/hls/61de152126bc6674a0936d23/playlist.m3u8
|
||||
28,https://1xp60.cdnedge.live/file/avple-images/hls/61e24bf59e31551b4fa3beb0/playlist.m3u8
|
||||
29,https://1xp60.cdnedge.live/file/avple-images/hls/61e53275dc7fbb10cb2c4ed9/playlist.m3u8
|
||||
30,https://1xp60.cdnedge.live/file/avple-images/hls/61ecbc127580a3314beba2a3/playlist.m3u8
|
||||
31,https://1xp60.cdnedge.live/file/avple-images/hls/61f9a7929053272327957ad8/playlist.m3u8
|
||||
32,https://1xp60.cdnedge.live/file/avple-images/hls/61fb884611eff304d6e13794/playlist.m3u8
|
||||
33,https://1xp60.cdnedge.live/file/avple-images/hls/61fb8ada11eff304d6e1379b/playlist.m3u8
|
||||
34,https://1xp60.cdnedge.live/file/avple-images/hls/61ff187899eb625f8e37e0ac/playlist.m3u8
|
||||
35,https://1xp60.cdnedge.live/file/avple-images/hls/6209b42bf074eb1e0fe62718/playlist.m3u8
|
||||
36,https://1xp60.cdnedge.live/file/avple-images/hls/6209b467f074eb1e0fe62719/playlist.m3u8
|
||||
37,https://1xp60.cdnedge.live/file/avple-images/hls/6209b51af074eb1e0fe6271b/playlist.m3u8
|
||||
38,https://1xp60.cdnedge.live/file/avple-images/hls/6209b63ac06a441e168f7d16/playlist.m3u8
|
||||
39,https://1xp60.cdnedge.live/file/avple-images/hls/62104eb79d14d648884aa81a/playlist.m3u8
|
||||
40,https://1xp60.cdnedge.live/file/avple-images/hls/6215ab72cef8321ac4bf999d/playlist.m3u8
|
||||
41,https://1xp60.cdnedge.live/file/avple-images/hls/621731ea336b5d6ff709b379/playlist.m3u8
|
||||
42,https://1xp60.cdnedge.live/file/avple-images/hls/62173262336b5d6ff709b37a/playlist.m3u8
|
||||
43,https://1xp60.cdnedge.live/file/avple-images/hls/621e173a0b43873ee3783bee/playlist.m3u8
|
||||
44,https://1xp60.cdnedge.live/file/avple-images/hls/621e18660b43873ee3783bf1/playlist.m3u8
|
||||
45,https://1xp60.cdnedge.live/file/avple-images/hls/62230d8a1fdb77263ccb3863/playlist.m3u8
|
||||
46,https://1xp60.cdnedge.live/file/avple-images/hls/622311861fdb77263ccb386d/playlist.m3u8
|
||||
47,https://1xp60.cdnedge.live/file/avple-images/hls/62247332c6370a74fa39c716/playlist.m3u8
|
||||
48,https://1xp60.cdnedge.live/file/avple-images/hls/62287aaeac9a2544846bbfab/playlist.m3u8
|
||||
49,https://1xp60.cdnedge.live/file/avple-images/hls/622b5dab99043721e41f4765/playlist.m3u8
|
||||
50,https://1xp60.cdnedge.live/file/avple-images/hls/622b661b99043721e41f4772/playlist.m3u8
|
||||
51,https://1xp60.cdnedge.live/file/avple-images/hls/622d4a16e5f4997685910d1a/playlist.m3u8
|
||||
52,https://1xp60.cdnedge.live/file/avple-images/hls/623239d98cc9324f4943612d/playlist.m3u8
|
||||
53,https://1xp60.cdnedge.live/file/avple-images/hls/62323b7a8cc9324f49436132/playlist.m3u8
|
||||
54,https://1xp60.cdnedge.live/file/avple-images/hls/6235062decafc64f34ef85ba/playlist.m3u8
|
||||
55,https://1xp60.cdnedge.live/file/avple-images/hls/62350706ecafc64f34ef85bd/playlist.m3u8
|
||||
56,https://1xp60.cdnedge.live/file/avple-images/hls/6236aff21222e41c629a9327/playlist.m3u8
|
||||
57,https://1xp60.cdnedge.live/file/avple-images/hls/623925f3a14fb341a31f13db/playlist.m3u8
|
||||
58,https://1xp60.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c25/playlist.m3u8
|
||||
59,https://1xp60.cdnedge.live/file/avple-images/hls/6242c20a81f80f77774148ce/playlist.m3u8
|
||||
60,https://1xp60.cdnedge.live/file/avple-images/hls/6242c6881226727c1d866b6a/playlist.m3u8
|
||||
61,https://1xp60.cdnedge.live/file/avple-images/hls/62458f4f9b1b3e33192a301e/playlist.m3u8
|
||||
62,https://1xp60.cdnedge.live/file/avple-images/hls/62492509ddaa1830ff7bacb5/playlist.m3u8
|
||||
63,https://1xp60.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacba/playlist.m3u8
|
||||
64,https://1xp60.cdnedge.live/file/avple-images/hls/62493da7cb995938b9053404/playlist.m3u8
|
||||
65,https://1xp60.cdnedge.live/file/avple-images/hls/62494437cb995938b9053409/playlist.m3u8
|
||||
66,https://1xp60.cdnedge.live/file/avple-images/hls/624bef7e528c292827c459d8/playlist.m3u8
|
||||
67,https://1xp60.cdnedge.live/file/avple-images/hls/624eea616d742407ed435443/playlist.m3u8
|
||||
68,https://1xp60.cdnedge.live/file/avple-images/hls/6250336ef06f665330ec2bda/playlist.m3u8
|
||||
69,https://1xp60.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999577/playlist.m3u8
|
||||
70,https://1xp60.cdnedge.live/file/avple-images/hls/6251a556b9fdae53fd99957a/playlist.m3u8
|
||||
71,https://1xp60.cdnedge.live/file/avple-images/hls/626fb3ce3ddea14c11aa4aab/playlist.m3u8
|
||||
72,https://1xp60.cdnedge.live/file/avple-images/hls/627229924deadc023a8a0990/playlist.m3u8
|
||||
73,https://1xp60.cdnedge.live/file/avple-images/hls/62722b724deadc023a8a0994/playlist.m3u8
|
||||
74,https://1xp60.cdnedge.live/file/avple-images/hls/627233694deadc023a8a0996/playlist.m3u8
|
||||
75,https://1xp60.cdnedge.live/file/avple-images/hls/62764bc63847697e5124b6d4/playlist.m3u8
|
||||
76,https://1xp60.cdnedge.live/file/avple-images/hls/62764bc73847697e5124b6d5/playlist.m3u8
|
||||
77,https://1xp60.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1d/playlist.m3u8
|
||||
78,https://1xp60.cdnedge.live/file/avple-images/hls/627a582c1a1d9a347dd9853b/playlist.m3u8
|
||||
79,https://1xp60.cdnedge.live/file/avple-images/hls/627a5a841a1d9a347dd9853f/playlist.m3u8
|
||||
80,https://1xp60.cdnedge.live/file/avple-images/hls/6280b3effc27be165aeb81d6/playlist.m3u8
|
||||
81,https://1xp60.cdnedge.live/file/avple-images/hls/6280b4d7fc27be165aeb81d7/playlist.m3u8
|
||||
82,https://1xp60.cdnedge.live/file/avple-images/hls/6280bd84fc27be165aeb81df/playlist.m3u8
|
||||
83,https://1xp60.cdnedge.live/file/avple-images/hls/6284e210c71b08247ee18e2e/playlist.m3u8
|
||||
84,https://1xp60.cdnedge.live/file/avple-images/hls/6284e301c71b08247ee18e30/playlist.m3u8
|
||||
85,https://1xp60.cdnedge.live/file/avple-images/hls/6284e4a4c71b08247ee18e33/playlist.m3u8
|
||||
86,https://1xp60.cdnedge.live/file/avple-images/hls/6284e7b1c71b08247ee18e38/playlist.m3u8
|
||||
87,https://1xp60.cdnedge.live/file/avple-images/hls/628798c2d28d4f134ac6904a/playlist.m3u8
|
||||
88,https://1xp60.cdnedge.live/file/avple-images/hls/62879937d28d4f134ac6904b/playlist.m3u8
|
||||
89,https://1xp60.cdnedge.live/file/avple-images/hls/62879b91d28d4f134ac69052/playlist.m3u8
|
||||
90,https://1xp60.cdnedge.live/file/avple-images/hls/6289a97bb982a351108bf732/playlist.m3u8
|
||||
91,https://1xp60.cdnedge.live/file/avple-images/hls/628cc4f6de01360ccb2f8e9a/playlist.m3u8
|
||||
92,https://1xp60.cdnedge.live/file/avple-images/hls/628cc69cde01360ccb2f8e9e/playlist.m3u8
|
||||
93,https://1xp60.cdnedge.live/file/avple-images/hls/628f7ef3531f007e5ba30af6/playlist.m3u8
|
||||
94,https://1xp60.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
95,https://1xp60.cdnedge.live/file/avple-images/hls/6292485f777f8769be5fdfa8/playlist.m3u8
|
||||
96,https://1xp60.cdnedge.live/file/avple-images/hls/629574f2180f8c65c7d908ab/playlist.m3u8
|
||||
97,https://1xp60.cdnedge.live/file/avple-images/hls/6295f5667ef42454a69c76d4/playlist.m3u8
|
||||
98,https://1xp60.cdnedge.live/file/avple-images/hls/6298690b23d5972db0bfc99f/playlist.m3u8
|
||||
99,https://1xp60.cdnedge.live/file/avple-images/hls/62a2a55956220431fa6b0d87/playlist.m3u8
|
||||
100,https://1xp60.cdnedge.live/file/avple-images/hls/62a2a64a56220431fa6b0d89/playlist.m3u8
|
||||
101,https://1xp60.cdnedge.live/file/avple-images/hls/62a5a70894b044303b9622d4/playlist.m3u8
|
||||
102,https://1xp60.cdnedge.live/file/avple-images/hls/62aacb0c21a7da2e6584bc80/playlist.m3u8
|
||||
103,https://1xp60.cdnedge.live/file/avple-images/hls/62aece15c556631aff1378ee/playlist.m3u8
|
||||
104,https://1xp60.cdnedge.live/file/avple-images/hls/62b1b586eec8264ea0826f2a/playlist.m3u8
|
||||
105,https://1xp60.cdnedge.live/file/avple-images/hls/62b4346cea01b50f6781dc5f/playlist.m3u8
|
||||
106,https://1xp60.cdnedge.live/file/avple-images/hls/62b64e19fcc60515a0303de6/playlist.m3u8
|
||||
107,https://1xp60.cdnedge.live/file/avple-images/hls/62b9b6b74cd7211d4f02180c/playlist.m3u8
|
||||
108,https://1xp60.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b51/playlist.m3u8
|
||||
109,https://1xp60.cdnedge.live/file/avple-images/hls/62bbe9dfea3d425e0a93b798/playlist.m3u8
|
||||
110,https://1xp60.cdnedge.live/file/avple-images/hls/62bbf4a3ea3d425e0a93b7aa/playlist.m3u8
|
||||
111,https://1xp60.cdnedge.live/file/avple-images/hls/62bd8531d0fa6a48496bbf5a/playlist.m3u8
|
||||
112,https://1xp60.cdnedge.live/file/avple-images/hls/62bd878ad0fa6a48496bbf5c/playlist.m3u8
|
||||
113,https://1xp60.cdnedge.ive/file/avple-images/hls/61628f7ec778383b6b882d05/playlist.m3u8
|
||||
114,https://1xp60.cdnedge.live/file/avple-images/hls/6171a909f8003d17dfd1a738/playlist.m3u8
|
||||
115,https://1xp60.cdnedge.live/file/avple-images/hls/6173098916713849c8fc4705/playlist.m3u8
|
||||
116,https://1xp60.cdnedge.live/file/avple-images/hls/6184614dfddb3b0ce1f32681/playlist.m3u8
|
||||
117,https://1xp60.cdnedge.live/file/avple-images/hls/61ecbf5a7580a3314beba2ab/playlist.m3u8
|
||||
118,https://1xp60.cdnedge.live/file/avple-images/hls/6242c68b1226727c1d866b6c/playlist.m3u8
|
||||
119,https://1xp60.cdnedge.live/file/avple-images/hls/628ab12ba1c1cd0b44683ef5/playlist.m3u8
|
||||
|
||||
🔞麻豆映画2,#genre#
|
||||
0,https://10j99.cdnedge.live/file/avple-images/hls/61703f29bc5c965ae4f56248/playlist.m3u8
|
||||
1,https://10j99.cdnedge.live/file/avple-images/hls/6171a981f8003d17dfd1a739/playlist.m3u8
|
||||
2,https://10j99.cdnedge.live/file/avple-images/hls/6173094d16713849c8fc4704/playlist.m3u8
|
||||
3,https://10j99.cdnedge.live/file/avple-images/hls/61771dadad20e84f6e46a0ab/playlist.m3u8
|
||||
4,https://10j99.cdnedge.live/file/avple-images/hls/617e28f5eb87aa24a1c41030/playlist.m3u8
|
||||
5,https://10j99.cdnedge.live/file/avple-images/hls/618071054d383b66797a697e/playlist.m3u8
|
||||
6,https://10j99.cdnedge.live/file/avple-images/hls/6183345d86d3713512d4ddac/playlist.m3u8
|
||||
7,https://10j99.cdnedge.live/file/avple-images/hls/6186240126bdd144b598cbd2/playlist.m3u8
|
||||
8,https://10j99.cdnedge.live/file/avple-images/hls/6186265a26bdd144b598cbd7/playlist.m3u8
|
||||
9,https://10j99.cdnedge.live/file/avple-images/hls/618e68e1f061a16282b2ee98/playlist.m3u8
|
||||
10,https://10j99.cdnedge.live/file/avple-images/hls/6190b9d93e002b78fa02b871/playlist.m3u8
|
||||
11,https://10j99.cdnedge.live/file/avple-images/hls/6193bb891ab2cd467ae5359a/playlist.m3u8
|
||||
12,https://10j99.cdnedge.live/file/avple-images/hls/6196ae3a647fa6021841bd52/playlist.m3u8
|
||||
13,https://10j99.cdnedge.live/file/avple-images/hls/6197aaa5f1d93a199d1cf174/playlist.m3u8
|
||||
14,https://10j99.cdnedge.live/file/avple-images/hls/6197ac85f1d93a199d1cf178/playlist.m3u8
|
||||
15,https://10j99.cdnedge.live/file/avple-images/hls/6199513a4a94103a79bc9485/playlist.m3u8
|
||||
16,https://10j99.cdnedge.live/file/avple-images/hls/619a42a28a9163545f3c8175/playlist.m3u8
|
||||
17,https://10j99.cdnedge.live/file/avple-images/hls/619d54f544b3af0456c438a8/playlist.m3u8
|
||||
18,https://10j99.cdnedge.live/file/avple-images/hls/619e9649364f6c1f6030fe57/playlist.m3u8
|
||||
19,https://10j99.cdnedge.live/file/avple-images/hls/61a288adc4f43c7ba5009c27/playlist.m3u8
|
||||
20,https://10j99.cdnedge.live/file/avple-images/hls/61a5260da992bd3d5c3eb61c/playlist.m3u8
|
||||
21,https://10j99.cdnedge.live/file/avple-images/hls/61a526fda992bd3d5c3eb61f/playlist.m3u8
|
||||
22,https://10j99.cdnedge.live/file/avple-images/hls/61a52775a992bd3d5c3eb620/playlist.m3u8
|
||||
23,https://10j99.cdnedge.live/file/avple-images/hls/61a7d5797aac5d7ef57bda25/playlist.m3u8
|
||||
24,https://10j99.cdnedge.live/file/avple-images/hls/61accd35779a324ef83699a5/playlist.m3u8
|
||||
25,https://10j99.cdnedge.live/file/avple-images/hls/61accd43779a324ef83699b9/playlist.m3u8
|
||||
26,https://10j99.cdnedge.live/file/avple-images/hls/61aea31d02275f78f19d8f2a/playlist.m3u8
|
||||
27,https://10j99.cdnedge.live/file/avple-images/hls/61b05222cb1e9c2565068be7/playlist.m3u8
|
||||
28,https://10j99.cdnedge.live/file/avple-images/hls/61b303a90f991b6812b80302/playlist.m3u8
|
||||
29,https://10j99.cdnedge.live/file/avple-images/hls/61b6c85a1458462c26eadc85/playlist.m3u8
|
||||
30,https://10j99.cdnedge.live/file/avple-images/hls/61bd97a28cc57113d487484a/playlist.m3u8
|
||||
31,https://10j99.cdnedge.live/file/avple-images/hls/61d0c3358ec5397ce0e2cde6/playlist.m3u8
|
||||
32,https://10j99.cdnedge.live/file/avple-images/hls/61d22ef5fc53091229805815/playlist.m3u8
|
||||
33,https://10j99.cdnedge.live/file/avple-images/hls/61d623edf2772f49dcde1d4b/playlist.m3u8
|
||||
34,https://10j99.cdnedge.live/file/avple-images/hls/61df66293c31380dc7d79adc/playlist.m3u8
|
||||
35,https://10j99.cdnedge.live/file/avple-images/hls/61e11a91b12f2d3579c3423f/playlist.m3u8
|
||||
36,https://10j99.cdnedge.live/file/avple-images/hls/61e249d99e31551b4fa3bead/playlist.m3u8
|
||||
37,https://10j99.cdnedge.live/file/avple-images/hls/61e927b2c6ba7653ff362824/playlist.m3u8
|
||||
38,https://10j99.cdnedge.live/file/avple-images/hls/61e927bac6ba7653ff362829/playlist.m3u8
|
||||
39,https://10j99.cdnedge.live/file/avple-images/hls/61f391b123581479b901ae12/playlist.m3u8
|
||||
40,https://10j99.cdnedge.live/file/avple-images/hls/61d0c0298ec5397ce0e2cddf/playlist.m3u8
|
||||
41,https://10j99.cdnedge.live/file/avple-images/hls/61f7041bd7d05308d12ef122/playlist.m3u8
|
||||
42,https://10j99.cdnedge.live/file/avple-images/hls/61f7050ad7d05308d12ef124/playlist.m3u8
|
||||
43,https://10j99.cdnedge.live/file/avple-images/hls/61f9a80a9053272327957ad9/playlist.m3u8
|
||||
44,https://10j99.cdnedge.live/file/avple-images/hls/61fb897211eff304d6e13797/playlist.m3u8
|
||||
45,https://10j99.cdnedge.live/file/avple-images/hls/61fb8d3211eff304d6e137a0/playlist.m3u8
|
||||
46,https://10j99.cdnedge.live/file/avple-images/hls/61ff17c299eb625f8e37e0aa/playlist.m3u8
|
||||
47,https://10j99.cdnedge.live/file/avple-images/hls/6202dd9e152c48301ba2ac6c/playlist.m3u8
|
||||
48,https://10j99.cdnedge.live/file/avple-images/hls/6202e33e152c48301ba2ac74/playlist.m3u8
|
||||
49,https://10j99.cdnedge.live/file/avple-images/hls/62059f8ed69d37216eb636d9/playlist.m3u8
|
||||
50,https://10j99.cdnedge.live/file/avple-images/hls/620b87fdd0ea7c7d841b2f33/playlist.m3u8
|
||||
51,https://10j99.cdnedge.live/file/avple-images/hls/620c63d2d0ea7c7d841b2f38/playlist.m3u8
|
||||
52,https://10j99.cdnedge.live/file/avple-images/hls/62104c9a9d14d648884aa814/playlist.m3u8
|
||||
53,https://10j99.cdnedge.live/file/avple-images/hls/62104ef39d14d648884aa81b/playlist.m3u8
|
||||
54,https://10j99.cdnedge.live/file/avple-images/hls/6219e85eb9e8e9119a2f1fe4/playlist.m3u8
|
||||
55,https://10j99.cdnedge.live/file/avple-images/hls/6219eaf2b9e8e9119a2f1feb/playlist.m3u8
|
||||
56,https://10j99.cdnedge.live/file/avple-images/hls/6219eb6ab9e8e9119a2f1fec/playlist.m3u8
|
||||
57,https://10j99.cdnedge.live/file/avple-images/hls/6219ebe2b9e8e9119a2f1fee/playlist.m3u8
|
||||
58,https://10j99.cdnedge.live/file/avple-images/hls/621e12c60b43873ee3783be6/playlist.m3u8
|
||||
59,https://10j99.cdnedge.live/file/avple-images/hls/621e13b70b43873ee3783be8/playlist.m3u8
|
||||
60,https://10j99.cdnedge.live/file/avple-images/hls/621e14e20b43873ee3783bea/playlist.m3u8
|
||||
61,https://10j99.cdnedge.live/file/avple-images/hls/61f3922623581479b901ae14/playlist.m3u8
|
||||
62,https://10j99.cdnedge.live/file/avple-images/hls/621f6da6532bec088eaa2e8b/playlist.m3u8
|
||||
63,https://10j99.cdnedge.live/file/avple-images/hls/62247026c6370a74fa39c714/playlist.m3u8
|
||||
64,https://10j99.cdnedge.live/file/avple-images/hls/62266d37c4dfd90d53d40fbc/playlist.m3u8
|
||||
65,https://10j99.cdnedge.live/file/avple-images/hls/622b62d399043721e41f476e/playlist.m3u8
|
||||
66,https://10j99.cdnedge.live/file/avple-images/hls/622d48eae5f4997685910d17/playlist.m3u8
|
||||
67,https://10j99.cdnedge.live/file/avple-images/hls/622fc62ee14ae771445e47f8/playlist.m3u8
|
||||
68,https://10j99.cdnedge.live/file/avple-images/hls/622fc6e2e14ae771445e47fa/playlist.m3u8
|
||||
69,https://10j99.cdnedge.live/file/avple-images/hls/62323b028cc9324f49436131/playlist.m3u8
|
||||
70,https://10j99.cdnedge.live/file/avple-images/hls/6233c80aaefa78093f9ffdcf/playlist.m3u8
|
||||
71,https://10j99.cdnedge.live/file/avple-images/hls/623506caecafc64f34ef85bc/playlist.m3u8
|
||||
72,https://10j99.cdnedge.live/file/avple-images/hls/6236afb61222e41c629a9326/playlist.m3u8
|
||||
73,https://10j99.cdnedge.live/file/avple-images/hls/623822bb3f90d26204d0e675/playlist.m3u8
|
||||
74,https://10j99.cdnedge.live/file/avple-images/hls/6238258a3f90d26204d0e67d/playlist.m3u8
|
||||
75,https://10j99.cdnedge.live/file/avple-images/hls/6242c3af81f80f77774148d0/playlist.m3u8
|
||||
76,https://10j99.cdnedge.live/file/avple-images/hls/6242c49f32e7237a7bdd24b8/playlist.m3u8
|
||||
77,https://10j99.cdnedge.live/file/avple-images/hls/62492b62ac4583340eae9cc1/playlist.m3u8
|
||||
78,https://10j99.cdnedge.live/file/avple-images/hls/6249a0afeb0b5f202d561606/playlist.m3u8
|
||||
79,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d56160c/playlist.m3u8
|
||||
80,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561612/playlist.m3u8
|
||||
81,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561616/playlist.m3u8
|
||||
82,https://10j99.cdnedge.live/file/avple-images/hls/624bedd5528c292827c459d5/playlist.m3u8
|
||||
83,https://10j99.cdnedge.live/file/avple-images/hls/624d663c8d83843ab3a678c6/playlist.m3u8
|
||||
84,https://10j99.cdnedge.live/file/avple-images/hls/6250345df06f665330ec2bdb/playlist.m3u8
|
||||
85,https://10j99.cdnedge.live/file/avple-images/hls/62503512f06f665330ec2bdd/playlist.m3u8
|
||||
86,https://10j99.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957e/playlist.m3u8
|
||||
87,https://10j99.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbb/playlist.m3u8
|
||||
88,https://10j99.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbe/playlist.m3u8
|
||||
89,https://10j99.cdnedge.live/file/avple-images/hls/6256af80bd35195668774554/playlist.m3u8
|
||||
90,https://10j99.cdnedge.live/file/avple-images/hls/6256b124bd35195668774557/playlist.m3u8
|
||||
91,https://10j99.cdnedge.live/file/avple-images/hls/6256da62bd3519566877455d/playlist.m3u8
|
||||
92,https://10j99.cdnedge.live/file/avple-images/hls/626a9b433d701068e96b4fdc/playlist.m3u8
|
||||
93,https://10j99.cdnedge.live/file/avple-images/hls/626bcd9920859323fc450d66/playlist.m3u8
|
||||
94,https://10j99.cdnedge.live/file/avple-images/hls/626fb78f3ddea14c11aa4ab0/playlist.m3u8
|
||||
95,https://10j99.cdnedge.live/file/avple-images/hls/6270a7893ddea14c11aa4ab5/playlist.m3u8
|
||||
96,https://10j99.cdnedge.live/file/avple-images/hls/627677203847697e5124b6da/playlist.m3u8
|
||||
97,https://10j99.cdnedge.live/file/avple-images/hls/627a30d336b3e104a6145865/playlist.m3u8
|
||||
98,https://10j99.cdnedge.live/file/avple-images/hls/627a40801a1d9a347dd98534/playlist.m3u8
|
||||
99,https://10j99.cdnedge.live/file/avple-images/hls/627a595a1a1d9a347dd9853c/playlist.m3u8
|
||||
100,https://10j99.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5a/playlist.m3u8
|
||||
101,https://10j99.cdnedge.live/file/avple-images/hls/6280b1cefc27be165aeb81d3/playlist.m3u8
|
||||
102,https://10j99.cdnedge.live/file/avple-images/hls/6280b245fc27be165aeb81d4/playlist.m3u8
|
||||
103,https://10j99.cdnedge.live/file/avple-images/hls/6280bd0bfc27be165aeb81de/playlist.m3u8
|
||||
104,https://10j99.cdnedge.live/file/avple-images/hls/6280da2fef039d5507989172/playlist.m3u8
|
||||
105,https://10j99.cdnedge.live/file/avple-images/hls/6284dfb7c71b08247ee18e2c/playlist.m3u8
|
||||
106,https://10j99.cdnedge.live/file/avple-images/hls/6284e030c71b08247ee18e2d/playlist.m3u8
|
||||
107,https://10j99.cdnedge.live/file/avple-images/hls/6284ea06c71b08247ee18e3a/playlist.m3u8
|
||||
108,https://10j99.cdnedge.live/file/avple-images/hls/6284ea43c71b08247ee18e3b/playlist.m3u8
|
||||
109,https://10j99.cdnedge.live/file/avple-images/hls/628637caebf92063abd2f8af/playlist.m3u8
|
||||
110,https://10j99.cdnedge.live/file/avple-images/hls/62863d69ebf92063abd2f8b0/playlist.m3u8
|
||||
111,https://10j99.cdnedge.live/file/avple-images/hls/62879794d28d4f134ac69047/playlist.m3u8
|
||||
112,https://10j99.cdnedge.live/file/avple-images/hls/628799b1d28d4f134ac6904c/playlist.m3u8
|
||||
113,https://10j99.cdnedge.live/file/avple-images/hls/62879b91d28d4f134ac69052/playlist.m3u8
|
||||
114,https://10j99.cdnedge.live/file/avple-images/hls/628a3b0aa1c1cd0b44683ef2/playlist.m3u8
|
||||
115,https://10j99.cdnedge.live/file/avple-images/hls/628aaf87a1c1cd0b44683ef3/playlist.m3u8
|
||||
116,https://10j99.cdnedge.live/file/avple-images/hls/628ab3fba1c1cd0b44683ef8/playlist.m3u8
|
||||
117,https://10j99.cdnedge.live/file/avple-images/hls/628ab923a1c1cd0b44683f00/playlist.m3u8
|
||||
118,https://10j99.cdnedge.live/file/avple-images/hls/628b5ed9478a7e4e23bce258/playlist.m3u8
|
||||
119,https://10j99.cdnedge.live/file/avple-images/hls/628f69da531f007e5ba30af4/playlist.m3u8
|
||||
120,https://10j99.cdnedge.live/file/avple-images/hls/628f7d10531f007e5ba30af5/playlist.m3u8
|
||||
121,https://10j99.cdnedge.live/file/avple-images/hls/628f8327531f007e5ba30afc/playlist.m3u8
|
||||
122,https://10j99.cdnedge.live/file/avple-images/hls/629218cc777f8769be5fdfa1/playlist.m3u8
|
||||
123,https://10j99.cdnedge.live/file/avple-images/hls/62924950777f8769be5fdfa9/playlist.m3u8
|
||||
124,https://10j99.cdnedge.live/file/avple-images/hls/6294dcd9180f8c65c7d908a7/playlist.m3u8
|
||||
125,https://10j99.cdnedge.live/file/avple-images/hls/62955c19180f8c65c7d908a9/playlist.m3u8
|
||||
126,https://10j99.cdnedge.live/file/avple-images/hls/62957a56180f8c65c7d908b4/playlist.m3u8
|
||||
127,https://10j99.cdnedge.live/file/avple-images/hls/62957b83180f8c65c7d908b6/playlist.m3u8
|
||||
128,https://10j99.cdnedge.live/file/avple-images/hls/6295806f180f8c65c7d908bb/playlist.m3u8
|
||||
129,https://10j99.cdnedge.live/file/avple-images/hls/62986a7523d5972db0bfc9a1/playlist.m3u8
|
||||
130,https://10j99.cdnedge.live/file/avple-images/hls/62986d8123d5972db0bfc9a6/playlist.m3u8
|
||||
131,https://10j99.cdnedge.live/file/avple-images/hls/6298bad914bfa15d01c0842d/playlist.m3u8
|
||||
132,https://10j99.cdnedge.live/file/avple-images/hls/62a2a82856220431fa6b0d8d/playlist.m3u8
|
||||
133,https://10j99.cdnedge.live/file/avple-images/hls/62aacddb21a7da2e6584bc83/playlist.m3u8
|
||||
134,https://10j99.cdnedge.live/file/avple-images/hls/62ac64491ea6384bb6ca9f88/playlist.m3u8
|
||||
135,https://10j99.cdnedge.live/file/avple-images/hls/62b1b45aeec8264ea0826f28/playlist.m3u8
|
||||
136,https://10j99.cdnedge.live/file/avple-images/hls/62b1b6eceec8264ea0826f2c/playlist.m3u8
|
||||
137,https://10j99.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b4f/playlist.m3u8
|
||||
138,https://10j99.cdnedge.live/file/avple-images/hls/62bb0a7aea3d425e0a93b791/playlist.m3u8
|
||||
139,https://10j99.cdnedge.live/file/avple-images/hls/62bbec72ea3d425e0a93b79c/playlist.m3u8
|
||||
140,https://10j99.cdnedge.live/file/avple-images/hls/62bbefb8ea3d425e0a93b7a3/playlist.m3u8
|
||||
141,https://10j99.cdnedge.live/file/avple-images/hls/62bbf06cea3d425e0a93b7a5/playlist.m3u8
|
||||
142,https://10j99.cdnedge.live/file/avple-images/hls/62bbf378ea3d425e0a93b7a8/playlist.m3u8
|
||||
143,https://10j99.cdnedge.live/file/avple-images/hls/62bd8879d0fa6a48496bbf5e/playlist.m3u8
|
||||
144,https://10j99.cdnedge.live/file/avple-images/hls/62c44359366b240e3b67be35/playlist.m3u8
|
||||
145,https://10j99.cdnedge.live/file/avple-images/hls/62c4444a366b240e3b67be37/playlist.m3u8
|
||||
146,https://10j99.cdnedge.live/file/avple-images/hls/62c44575366b240e3b67be3a/playlist.m3u8
|
||||
147,https://10j99.cdnedge.live/file/avple-images/hls/621e15960b43873ee3783beb/playlist.m3u8
|
||||
148,https://10j99.cdnedge.live/file/avple-images/hls/621e16860b43873ee3783bed/playlist.m3u8
|
||||
149,https://10j99.cdnedge.live/file/avple-images/hls/6256b1d8bd35195668774559/playlist.m3u8
|
||||
150,https://10j99.cdnedge.live/file/avple-images/hls/628f8239531f007e5ba30afb/playlist.m3u8
|
||||
|
||||
🔞麻豆映画3,#genre#
|
||||
1,https://47b61.cdnedge.live/file/avple-images/hls/608afb30d7fc804f2b42417a/playlist.m3u8
|
||||
2,https://47b61.cdnedge.live/file/avple-images/hls/608e46f341c89c0d103057e8/playlist.m3u8
|
||||
3,https://47b61.cdnedge.live/file/avple-images/hls/608f804ee460e77face48d70/playlist.m3u8
|
||||
4,https://47b61.cdnedge.live/file/avple-images/hls/6093b2e9caa9c843e1f9864f/playlist.m3u8
|
||||
5,https://47b61.cdnedge.live/file/avple-images/hls/6094dc19304e7c426071daa2/playlist.m3u8
|
||||
6,https://47b61.cdnedge.live/file/avple-images/hls/6095541abc2f671bb38f04a4/playlist.m3u8
|
||||
7,https://47b61.cdnedge.live/file/avple-images/hls/609ce87dee36da5bb9b5e4bd/playlist.m3u8
|
||||
8,https://47b61.cdnedge.live/file/avple-images/hls/60a2cbbd0865490a3d467a07/playlist.m3u8
|
||||
9,https://47b61.cdnedge.live/file/avple-images/hls/60a2cbbf0865490a3d467a09/playlist.m3u8
|
||||
10,https://47b61.cdnedge.live/file/avple-images/hls/60a35bee563d29258e8ffdcc/playlist.m3u8
|
||||
11,https://47b61.cdnedge.live/file/avple-images/hls/60a51d71e14ac8644b10c55c/playlist.m3u8
|
||||
12,https://47b61.cdnedge.live/file/avple-images/hls/60a60489e14ac8644b10c574/playlist.m3u8
|
||||
13,https://47b61.cdnedge.live/file/avple-images/hls/60a7b9e1a1402d273404d4dc/playlist.m3u8
|
||||
14,https://47b61.cdnedge.live/file/avple-images/hls/60a7ba59a1402d273404d4dd/playlist.m3u8
|
||||
15,https://47b61.cdnedge.live/file/avple-images/hls/60a97bd4a66747642ac6ec79/playlist.m3u8
|
||||
16,https://47b61.cdnedge.live/file/avple-images/hls/60ac1b213ed22a7758c5d22e/playlist.m3u8
|
||||
17,https://47b61.cdnedge.live/file/avple-images/hls/60ad187ec94500628692a9ad/playlist.m3u8
|
||||
18,https://47b61.cdnedge.live/file/avple-images/hls/60afb8e9f28fb17e7fa63a27/playlist.m3u8
|
||||
19,https://47b61.cdnedge.live/file/avple-images/hls/60b2bb4d1eca2e140e90d897/playlist.m3u8
|
||||
20,https://47b61.cdnedge.live/file/avple-images/hls/60b32e9d1eca2e140e90d8a9/playlist.m3u8
|
||||
21,https://47b61.cdnedge.live/file/avple-images/hls/60b71df6331213528e28e02e/playlist.m3u8
|
||||
22,https://47b61.cdnedge.live/file/avple-images/hls/60bdca8dd200710514482334/playlist.m3u8
|
||||
23,https://47b61.cdnedge.live/file/avple-images/hls/60c056591ada6b26dd8e77fb/playlist.m3u8
|
||||
24,https://47b61.cdnedge.live/file/avple-images/hls/60c8cf433390952ea99c2c36/playlist.m3u8
|
||||
25,https://47b61.cdnedge.live/file/avple-images/hls/60caf20d04790b6f2f50799f/playlist.m3u8
|
||||
26,https://47b61.cdnedge.live/file/avple-images/hls/60cef7e5a00dd64c728c99ae/playlist.m3u8
|
||||
27,https://47b61.cdnedge.live/file/avple-images/hls/60cefa3da00dd64c728c99b0/playlist.m3u8
|
||||
28,https://47b61.cdnedge.live/file/avple-images/hls/60d2009d9da678269738d258/playlist.m3u8
|
||||
29,https://47b61.cdnedge.live/file/avple-images/hls/60d6131d8ee6215db1a31d37/playlist.m3u8
|
||||
30,https://47b61.cdnedge.live/file/avple-images/hls/60d73582cbc532129465e285/playlist.m3u8
|
||||
41,https://47b61.cdnedge.live/file/avple-images/hls/60df0ff9e982005101367fcb/playlist.m3u8
|
||||
42,https://47b61.cdnedge.live/file/avple-images/hls/60e440690fcb11183bc80a17/playlist.m3u8
|
||||
43,https://47b61.cdnedge.live/file/avple-images/hls/60e630591cefd85c8cb9e38a/playlist.m3u8
|
||||
44,https://47b61.cdnedge.live/file/avple-images/hls/60e6f101295d6915521367be/playlist.m3u8
|
||||
45,https://47b61.cdnedge.live/file/avple-images/hls/60e94c85040dcf528937da80/playlist.m3u8
|
||||
46,https://47b61.cdnedge.live/file/avple-images/hls/60f1655f6c52ab4d84b6d15f/playlist.m3u8
|
||||
47,https://47b61.cdnedge.live/file/avple-images/hls/60f165ce6c52ab4d84b6d160/playlist.m3u8
|
||||
48,https://47b61.cdnedge.live/file/avple-images/hls/60f9478a3a83366a1cc4bea7/playlist.m3u8
|
||||
49,https://47b61.cdnedge.live/file/avple-images/hls/60f9aa363a83366a1cc4bea9/playlist.m3u8
|
||||
50,https://47b61.cdnedge.live/file/avple-images/hls/60faa31d9b30333e9899b7ea/playlist.m3u8
|
||||
51,https://47b61.cdnedge.live/file/avple-images/hls/60faefc29b30333e9899b7f6/playlist.m3u8
|
||||
52,https://47b61.cdnedge.live/file/avple-images/hls/60fe7bf68e44352980df95ec/playlist.m3u8
|
||||
53,https://47b61.cdnedge.live/file/avple-images/hls/6104439dc778956038fdd099/playlist.m3u8
|
||||
54,https://47b61.cdnedge.live/file/avple-images/hls/61048b0dc778956038fdd09a/playlist.m3u8
|
||||
55,https://47b61.cdnedge.live/file/avple-images/hls/610a696567e1cd7424668636/playlist.m3u8
|
||||
56,https://47b61.cdnedge.live/file/avple-images/hls/610ae7f567e1cd7424668638/playlist.m3u8
|
||||
57,https://47b61.cdnedge.live/file/avple-images/hls/611066adec861065e5d9a644/playlist.m3u8
|
||||
58,https://47b61.cdnedge.live/file/avple-images/hls/611271190a894b6aa570b3d0/playlist.m3u8
|
||||
59,https://47b61.cdnedge.live/file/avple-images/hls/6115ec6d7633411363f3e938/playlist.m3u8
|
||||
60,https://47b61.cdnedge.live/file/avple-images/hls/6116f6717dc0bd6385362f54/playlist.m3u8
|
||||
61,https://47b61.cdnedge.live/file/avple-images/hls/611a2d915821847403ed2e04/playlist.m3u8
|
||||
62,https://47b61.cdnedge.live/file/avple-images/hls/611cf12529c2f5753b2494e9/playlist.m3u8
|
||||
63,https://47b61.cdnedge.live/file/avple-images/hls/61225e49fd4e504c5a12afcc/playlist.m3u8
|
||||
64,https://47b61.cdnedge.live/file/avple-images/hls/61232905fd4e504c5a12afcd/playlist.m3u8
|
||||
65,https://47b61.cdnedge.live/file/avple-images/hls/61239151ab291c1c98ec95eb/playlist.m3u8
|
||||
66,https://47b61.cdnedge.live/file/avple-images/hls/612dce555e09c13c8be19702/playlist.m3u8
|
||||
67,https://47b61.cdnedge.live/file/avple-images/hls/6130cc093c01ab5b376b5469/playlist.m3u8
|
||||
68,https://47b61.cdnedge.live/file/avple-images/hls/61323661df22bb1346cfbdfa/playlist.m3u8
|
||||
69,https://47b61.cdnedge.live/file/avple-images/hls/6134691dab335a56e3948250/playlist.m3u8
|
||||
70,https://47b61.cdnedge.live/file/avple-images/hls/613b73ed43083352c84898e3/playlist.m3u8
|
||||
71,https://47b61.cdnedge.live/file/avple-images/hls/613b9b4d43083352c84898e5/playlist.m3u8
|
||||
72,https://47b61.cdnedge.live/file/avple-images/hls/613cd46dcbbf650a74d2f3e9/playlist.m3u8
|
||||
73,https://47b61.cdnedge.live/file/avple-images/hls/61410e899e64c05ed6d60c7d/playlist.m3u8
|
||||
74,https://47b61.cdnedge.live/file/avple-images/hls/6143a865df087a6d90ea5ca5/playlist.m3u8
|
||||
75,https://47b61.cdnedge.live/file/avple-images/hls/614d15c1246f4b08f7e8fcc1/playlist.m3u8
|
||||
76,https://47b61.cdnedge.live/file/avple-images/hls/61512ad5f81f3e3dad52310b/playlist.m3u8
|
||||
77,https://47b61.cdnedge.live/file/avple-images/hls/6151e1e1879b367cfc768631/playlist.m3u8
|
||||
78,https://47b61.cdnedge.live/file/avple-images/hls/6154761e3c35580e9946ea46/playlist.m3u8
|
||||
79,https://47b61.cdnedge.live/file/avple-images/hls/615661d50936024ada66722f/playlist.m3u8
|
||||
80,https://47b61.cdnedge.live/file/avple-images/hls/615741e59dda0e2db22a7f12/playlist.m3u8
|
||||
81,https://47b61.cdnedge.live/file/avple-images/hls/6157425d9dda0e2db22a7f13/playlist.m3u8
|
||||
82,https://47b61.cdnedge.live/file/avple-images/hls/6157443e9dda0e2db22a7f17/playlist.m3u8
|
||||
83,https://47b61.cdnedge.live/file/avple-images/hls/615b13b662da73610588de50/playlist.m3u8
|
||||
84,https://47b61.cdnedge.live/file/avple-images/hls/615b142d62da73610588de51/playlist.m3u8
|
||||
85,https://47b61.cdnedge.live/file/avple-images/hls/615c9c495753920a08945922/playlist.m3u8
|
||||
86,https://47b61.cdnedge.live/file/avple-images/hls/615c9cc15753920a08945923/playlist.m3u8
|
||||
87,https://47b61.cdnedge.live/file/avple-images/hls/615c9e295753920a08945926/playlist.m3u8
|
||||
88,https://47b61.cdnedge.live/file/avple-images/hls/615db90d6c85aa6afbe1e5fb/playlist.m3u8
|
||||
89,https://47b61.cdnedge.live/file/avple-images/hls/61630e49114a6a29b065cde9/playlist.m3u8
|
||||
90,https://47b61.cdnedge.live/file/avple-images/hls/61630f75114a6a29b065cdeb/playlist.m3u8
|
||||
91,https://47b61.cdnedge.live/file/avple-images/hls/6167160151121708a790a1b6/playlist.m3u8
|
||||
92,https://47b61.cdnedge.live/file/avple-images/hls/6167163d51121708a790a1b7/playlist.m3u8
|
||||
93,https://47b61.cdnedge.live/file/avple-images/hls/6167172d51121708a790a1b9/playlist.m3u8
|
||||
94,https://47b61.cdnedge.live/file/avple-images/hls/6070548990160a18a06bac73/playlist.m3u8
|
||||
95,https://47b61.cdnedge.live/file/avple-images/hls/60705b9190160a18a06bac75/playlist.m3u8
|
||||
96,https://47b61.cdnedge.live/file/avple-images/hls/6072a580c029b66341324a8a/playlist.m3u8
|
||||
97,https://47b61.cdnedge.live/file/avple-images/hls/607b849893ee26394068f3a4/playlist.m3u8
|
||||
98,https://47b61.cdnedge.live/file/avple-images/hls/608150318cac6978b840e8e2/playlist.m3u8
|
||||
99,https://47b61.cdnedge.live/file/avple-images/hls/608188708cac6978b840e8e3/playlist.m3u8
|
||||
100,https://47b61.cdnedge.live/file/avple-images/hls/6082a660e00778504ee22c42/playlist.m3u8
|
||||
101,https://47b61.cdnedge.live/file/avple-images/hls/6083ee803b4c791bec2312a9/playlist.m3u8
|
||||
102,https://47b61.cdnedge.live/file/avple-images/hls/613b9b1143083352c84898e4/playlist.m3u8
|
||||
103,https://47b61.cdnedge.live/file/avple-images/hls/60dec5e941b32117d66a0b95/playlist.m3u8
|
||||
104,https://47b61.cdnedge.live/file/avple-images/hls/606eedf13d938869f8b4803e/playlist.m3u8
|
||||
|
||||
🔞麻豆映画4,#genre#
|
||||
0,https://8bb88.cdnedge.live/file/avple-images/hls/617c5075f0db60036839e94c/playlist.m3u8
|
||||
1,https://8bb88.cdnedge.live/file/avple-images/hls/618070514d383b66797a697c/playlist.m3u8
|
||||
2,https://8bb88.cdnedge.live/file/avple-images/hls/618074134d383b66797a6982/playlist.m3u8
|
||||
3,https://8bb88.cdnedge.live/file/avple-images/hls/618627fd26bdd144b598cbda/playlist.m3u8
|
||||
4,https://8bb88.cdnedge.live/file/avple-images/hls/618d1a31608a75437203bdfe/playlist.m3u8
|
||||
5,https://8bb88.cdnedge.live/file/avple-images/hls/618d1df1608a75437203be01/playlist.m3u8
|
||||
6,https://8bb88.cdnedge.live/file/avple-images/hls/618e691df061a16282b2ee99/playlist.m3u8
|
||||
7,https://8bb88.cdnedge.live/file/avple-images/hls/6193b96d1ab2cd467ae53596/playlist.m3u8
|
||||
8,https://8bb88.cdnedge.live/file/avple-images/hls/6193bc011ab2cd467ae5359b/playlist.m3u8
|
||||
9,https://8bb88.cdnedge.live/file/avple-images/hls/619508d2416cf262e9444a28/playlist.m3u8
|
||||
10,https://8bb88.cdnedge.live/file/avple-images/hls/6197ac0df1d93a199d1cf177/playlist.m3u8
|
||||
11,https://8bb88.cdnedge.live/file/avple-images/hls/6197fbbdf1d93a199d1cf17b/playlist.m3u8
|
||||
12,https://8bb88.cdnedge.live/file/avple-images/hls/619c02fdf0d6ad68f95a08ab/playlist.m3u8
|
||||
13,https://8bb88.cdnedge.live/file/avple-images/hls/619c0375f0d6ad68f95a08ac/playlist.m3u8
|
||||
14,https://8bb88.cdnedge.live/file/avple-images/hls/619e95d1364f6c1f6030fe56/playlist.m3u8
|
||||
15,https://8bb88.cdnedge.live/file/avple-images/hls/61a52649a992bd3d5c3eb61d/playlist.m3u8
|
||||
16,https://8bb88.cdnedge.live/file/avple-images/hls/61accd38779a324ef83699a9/playlist.m3u8
|
||||
17,https://8bb88.cdnedge.live/file/avple-images/hls/61accf7e609ef7155b3678df/playlist.m3u8
|
||||
18,https://8bb88.cdnedge.live/file/avple-images/hls/61b46ef1f91a1b0eecb6e532/playlist.m3u8
|
||||
19,https://8bb88.cdnedge.live/file/avple-images/hls/61b6cb291458462c26eadc87/playlist.m3u8
|
||||
20,https://8bb88.cdnedge.live/file/avple-images/hls/61b6cccd1458462c26eadc8b/playlist.m3u8
|
||||
21,https://8bb88.cdnedge.live/file/avple-images/hls/61bad40ed56b7626e975d4ec/playlist.m3u8
|
||||
22,https://8bb88.cdnedge.live/file/avple-images/hls/61c02769ad3e743fbb4f96eb/playlist.m3u8
|
||||
23,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a4e5668fd93b4250a319/playlist.m3u8
|
||||
24,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a91d668fd93b4250a321/playlist.m3u8
|
||||
25,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a95a668fd93b4250a322/playlist.m3u8
|
||||
26,https://8bb88.cdnedge.live/file/avple-images/hls/61c6aa85668fd93b4250a325/playlist.m3u8
|
||||
27,https://8bb88.cdnedge.live/file/avple-images/hls/61c843f92beaee4e833a9d66/playlist.m3u8
|
||||
28,https://8bb88.cdnedge.live/file/avple-images/hls/61c849992beaee4e833a9d6c/playlist.m3u8
|
||||
29,https://8bb88.cdnedge.live/file/avple-images/hls/61c84bb587883b68401d1b31/playlist.m3u8
|
||||
30,https://8bb88.cdnedge.live/file/avple-images/hls/61cace99b4a41e7b51c24d4c/playlist.m3u8
|
||||
31,https://8bb88.cdnedge.live/file/avple-images/hls/61ce1315b418404e15c81308/playlist.m3u8
|
||||
32,https://8bb88.cdnedge.live/file/avple-images/hls/61d0c0a18ec5397ce0e2cde0/playlist.m3u8
|
||||
33,https://8bb88.cdnedge.live/file/avple-images/hls/61d0c2bd8ec5397ce0e2cde4/playlist.m3u8
|
||||
34,https://8bb88.cdnedge.live/file/avple-images/hls/61d22e41fc53091229805814/playlist.m3u8
|
||||
35,https://8bb88.cdnedge.live/file/avple-images/hls/61d627adf2772f49dcde1d55/playlist.m3u8
|
||||
36,https://8bb88.cdnedge.live/file/avple-images/hls/61d8f98d188cab78b243b410/playlist.m3u8
|
||||
37,https://8bb88.cdnedge.live/file/avple-images/hls/61db6bcd5fb6a835028c9ae8/playlist.m3u8
|
||||
38,https://8bb88.cdnedge.live/file/avple-images/hls/61de119d26bc6674a0936d1c/playlist.m3u8
|
||||
39,https://8bb88.cdnedge.live/file/avple-images/hls/61e1183ab12f2d3579c3423a/playlist.m3u8
|
||||
40,https://8bb88.cdnedge.live/file/avple-images/hls/61e3bd56ec201f6b0a3a89a8/playlist.m3u8
|
||||
41,https://8bb88.cdnedge.live/file/avple-images/hls/61e927b0c6ba7653ff362823/playlist.m3u8
|
||||
42,https://8bb88.cdnedge.live/file/avple-images/hls/61e927b3c6ba7653ff362825/playlist.m3u8
|
||||
43,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbb9a7580a3314beba2a2/playlist.m3u8
|
||||
44,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbcc67580a3314beba2a5/playlist.m3u8
|
||||
45,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbd7a7580a3314beba2a7/playlist.m3u8
|
||||
46,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbdf37580a3314beba2a8/playlist.m3u8
|
||||
47,https://8bb88.cdnedge.live/file/avple-images/hls/61f70493d7d05308d12ef123/playlist.m3u8
|
||||
48,https://8bb88.cdnedge.live/file/avple-images/hls/61fd8e3ec68d7d11e015cd88/playlist.m3u8
|
||||
49,https://8bb88.cdnedge.live/file/avple-images/hls/61fd8f6ac68d7d11e015cd8c/playlist.m3u8
|
||||
50,https://8bb88.cdnedge.live/file/avple-images/hls/6202ddda152c48301ba2ac6d/playlist.m3u8
|
||||
51,https://8bb88.cdnedge.live/file/avple-images/hls/6202de16152c48301ba2ac6e/playlist.m3u8
|
||||
52,https://8bb88.cdnedge.live/file/avple-images/hls/62059fcbd69d37216eb636da/playlist.m3u8
|
||||
53,https://8bb88.cdnedge.live/file/avple-images/hls/6211adce5e73c82284228827/playlist.m3u8
|
||||
54,https://8bb88.cdnedge.live/file/avple-images/hls/6215b6b3cef8321ac4bf99a3/playlist.m3u8
|
||||
55,https://8bb88.cdnedge.live/file/avple-images/hls/621e17b40b43873ee3783bef/playlist.m3u8
|
||||
56,https://8bb88.cdnedge.live/file/avple-images/hls/622310611fdb77263ccb386b/playlist.m3u8
|
||||
57,https://8bb88.cdnedge.live/file/avple-images/hls/62246d92c6370a74fa39c70d/playlist.m3u8
|
||||
58,https://8bb88.cdnedge.live/file/avple-images/hls/62246f36c6370a74fa39c711/playlist.m3u8
|
||||
59,https://8bb88.cdnedge.live/file/avple-images/hls/62266e26c4dfd90d53d40fbe/playlist.m3u8
|
||||
60,https://8bb88.cdnedge.live/file/avple-images/hls/62266edac4dfd90d53d40fc0/playlist.m3u8
|
||||
61,https://8bb88.cdnedge.live/file/avple-images/hls/622b603e99043721e41f476a/playlist.m3u8
|
||||
62,https://8bb88.cdnedge.live/file/avple-images/hls/622d4836e5f4997685910d15/playlist.m3u8
|
||||
63,https://8bb88.cdnedge.live/file/avple-images/hls/622d4872e5f4997685910d16/playlist.m3u8
|
||||
64,https://8bb88.cdnedge.live/file/avple-images/hls/622fc84ae14ae771445e47fc/playlist.m3u8
|
||||
65,https://8bb88.cdnedge.live/file/avple-images/hls/62323a8b8cc9324f4943612f/playlist.m3u8
|
||||
66,https://8bb88.cdnedge.live/file/avple-images/hls/6233c791aefa78093f9ffdce/playlist.m3u8
|
||||
67,https://8bb88.cdnedge.live/file/avple-images/hls/6236af7a1222e41c629a9325/playlist.m3u8
|
||||
68,https://8bb88.cdnedge.live/file/avple-images/hls/623824223f90d26204d0e678/playlist.m3u8
|
||||
69,https://8bb88.cdnedge.live/file/avple-images/hls/6238249a3f90d26204d0e67a/playlist.m3u8
|
||||
70,https://8bb88.cdnedge.live/file/avple-images/hls/6238254e3f90d26204d0e67c/playlist.m3u8
|
||||
71,https://8bb88.cdnedge.live/file/avple-images/hls/623926e2a14fb341a31f13de/playlist.m3u8
|
||||
72,https://8bb88.cdnedge.live/file/avple-images/hls/623e755276b51e756d5edbfd/playlist.m3u8
|
||||
73,https://8bb88.cdnedge.live/file/avple-images/hls/623e77aa76b51e756d5edc03/playlist.m3u8
|
||||
74,https://8bb88.cdnedge.live/file/avple-images/hls/6242c24981f80f77774148cf/playlist.m3u8
|
||||
75,https://8bb88.cdnedge.live/file/avple-images/hls/6242fdf2e092281092d3775a/playlist.m3u8
|
||||
76,https://8bb88.cdnedge.live/file/avple-images/hls/624591930ea8e533f480f47a/playlist.m3u8
|
||||
77,https://8bb88.cdnedge.live/file/avple-images/hls/62492509ddaa1830ff7bacb4/playlist.m3u8
|
||||
78,https://8bb88.cdnedge.live/file/avple-images/hls/624be925528c292827c459d2/playlist.m3u8
|
||||
79,https://8bb88.cdnedge.live/file/avple-images/hls/624bea18528c292827c459d4/playlist.m3u8
|
||||
80,https://8bb88.cdnedge.live/file/avple-images/hls/624eea246d742407ed435442/playlist.m3u8
|
||||
81,https://8bb88.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999576/playlist.m3u8
|
||||
82,https://8bb88.cdnedge.live/file/avple-images/hls/625494363d5bac30b2603dbf/playlist.m3u8
|
||||
83,https://8bb88.cdnedge.live/file/avple-images/hls/625494ae3d5bac30b2603dc0/playlist.m3u8
|
||||
84,https://8bb88.cdnedge.live/file/avple-images/hls/626bd0e020859323fc450d69/playlist.m3u8
|
||||
85,https://8bb88.cdnedge.live/file/avple-images/hls/626faf1c3ddea14c11aa4aa7/playlist.m3u8
|
||||
86,https://8bb88.cdnedge.live/file/avple-images/hls/626fb4bc3ddea14c11aa4aad/playlist.m3u8
|
||||
87,https://8bb88.cdnedge.live/file/avple-images/hls/626fc4703ddea14c11aa4ab4/playlist.m3u8
|
||||
88,https://8bb88.cdnedge.live/file/avple-images/hls/6274d26c84b95e04c28dde2e/playlist.m3u8
|
||||
89,https://8bb88.cdnedge.live/file/avple-images/hls/62767aa53847697e5124b6df/playlist.m3u8
|
||||
90,https://8bb88.cdnedge.live/file/avple-images/hls/62767dee3847697e5124b6e2/playlist.m3u8
|
||||
91,https://8bb88.cdnedge.live/file/avple-images/hls/627a577a1a1d9a347dd9853a/playlist.m3u8
|
||||
92,https://8bb88.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5c/playlist.m3u8
|
||||
93,https://8bb88.cdnedge.live/file/avple-images/hls/627d15332568f9623a3e5423/playlist.m3u8
|
||||
94,https://8bb88.cdnedge.live/file/avple-images/hls/627e6330c60346652e396c7c/playlist.m3u8
|
||||
95,https://8bb88.cdnedge.live/file/avple-images/hls/627eefcbc60346652e396c83/playlist.m3u8
|
||||
96,https://8bb88.cdnedge.live/file/avple-images/hls/627ef135c60346652e396c85/playlist.m3u8
|
||||
97,https://8bb88.cdnedge.live/file/avple-images/hls/627ef1e7c60346652e396c86/playlist.m3u8
|
||||
98,https://8bb88.cdnedge.live/file/avple-images/hls/6280b2fbfc27be165aeb81d5/playlist.m3u8
|
||||
99,https://8bb88.cdnedge.live/file/avple-images/hls/6280b3effc27be165aeb81d6/playlist.m3u8
|
||||
100,https://8bb88.cdnedge.live/file/avple-images/hls/6280be37fc27be165aeb81e0/playlist.m3u8
|
||||
101,https://8bb88.cdnedge.live/file/avple-images/hls/6280d34eef039d550798916c/playlist.m3u8
|
||||
102,https://8bb88.cdnedge.live/file/avple-images/hls/6280d697ef039d550798916e/playlist.m3u8
|
||||
103,https://8bb88.cdnedge.live/file/avple-images/hls/6280d8b2ef039d5507989170/playlist.m3u8
|
||||
104,https://8bb88.cdnedge.live/file/avple-images/hls/628259c987e86122ac281eb4/playlist.m3u8
|
||||
105,https://8bb88.cdnedge.live/file/avple-images/hls/6284dfb7c71b08247ee18e2c/playlist.m3u8
|
||||
106,https://8bb88.cdnedge.live/file/avple-images/hls/6284e288c71b08247ee18e2f/playlist.m3u8
|
||||
107,https://8bb88.cdnedge.live/file/avple-images/hls/628799b1d28d4f134ac6904c/playlist.m3u8
|
||||
108,https://8bb88.cdnedge.live/file/avple-images/hls/6288c9e7b982a351108bf731/playlist.m3u8
|
||||
109,https://8bb88.cdnedge.live/file/avple-images/hls/628ab3fba1c1cd0b44683ef8/playlist.m3u8
|
||||
110,https://8bb88.cdnedge.live/file/avple-images/hls/628ab564a1c1cd0b44683efa/playlist.m3u8
|
||||
111,https://8bb88.cdnedge.live/file/avple-images/hls/628ab68ea1c1cd0b44683efb/playlist.m3u8
|
||||
112,https://8bb88.cdnedge.live/file/avple-images/hls/628b5d6f478a7e4e23bce256/playlist.m3u8
|
||||
113,https://8bb88.cdnedge.live/file/avple-images/hls/628b61a7478a7e4e23bce25a/playlist.m3u8
|
||||
114,https://8bb88.cdnedge.live/file/avple-images/hls/628cd91fde01360ccb2f8e9f/playlist.m3u8
|
||||
115,https://8bb88.cdnedge.live/file/avple-images/hls/628f7f67531f007e5ba30af7/playlist.m3u8
|
||||
116,https://8bb88.cdnedge.live/file/avple-images/hls/6290bf9287412532ac7f4cff/playlist.m3u8
|
||||
117,https://8bb88.cdnedge.live/file/avple-images/hls/62957ecc180f8c65c7d908b8/playlist.m3u8
|
||||
118,https://8bb88.cdnedge.live/file/avple-images/hls/6295806f180f8c65c7d908bc/playlist.m3u8
|
||||
119,https://8bb88.cdnedge.live/file/avple-images/hls/6295f53721a63954baad12c8/playlist.m3u8
|
||||
120,https://8bb88.cdnedge.live/file/avple-images/hls/6295fb067ef42454a69c76d6/playlist.m3u8
|
||||
121,https://8bb88.cdnedge.live/file/avple-images/hls/62a1c90c56220431fa6b0d80/playlist.m3u8
|
||||
122,https://8bb88.cdnedge.live/file/avple-images/hls/62a497a394b044303b9622ce/playlist.m3u8
|
||||
123,https://8bb88.cdnedge.live/file/avple-images/hls/62a5b0a294b044303b9622e0/playlist.m3u8
|
||||
124,https://8bb88.cdnedge.live/file/avple-images/hls/62aad7b221a7da2e6584bc92/playlist.m3u8
|
||||
125,https://8bb88.cdnedge.live/file/avple-images/hls/62ac66641ea6384bb6ca9f8a/playlist.m3u8
|
||||
126,https://8bb88.cdnedge.live/file/avple-images/hls/62ac68051ea6384bb6ca9f8e/playlist.m3u8
|
||||
127,https://8bb88.cdnedge.live/file/avple-images/hls/62aecb0ac556631aff1378ea/playlist.m3u8
|
||||
128,https://8bb88.cdnedge.live/file/avple-images/hls/62aecf05c556631aff1378ef/playlist.m3u8
|
||||
129,https://8bb88.cdnedge.live/file/avple-images/hls/62aed1d5c556631aff1378f4/playlist.m3u8
|
||||
130,https://8bb88.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b50/playlist.m3u8
|
||||
131,https://8bb88.cdnedge.live/file/avple-images/hls/62bbea91ea3d425e0a93b79a/playlist.m3u8
|
||||
132,https://8bb88.cdnedge.live/file/avple-images/hls/62bbf3efea3d425e0a93b7a9/playlist.m3u8
|
||||
133,https://8bb88.cdnedge.live/file/avple-images/hls/62bd8968d0fa6a48496bbf61/playlist.m3u8
|
||||
134,https://8bb88.cdnedge.live/file/avple-images/hls/62c440c8366b240e3b67be31/playlist.m3u8
|
||||
135,https://8bb88.cdnedge.live/file/avple-images/hls/62c44c81366b240e3b67be3c/playlist.m3u8
|
||||
134,https://8bb88.cdnedge.live/file/avple-images/hls/6171a7ddf8003d17dfd1a735/playlist.m3u8
|
||||
135,https://8bb88.cdnedge.live/file/avple-images/hls/61730ba516713849c8fc4707/playlist.m3u8
|
||||
136,https://8bb88.cdnedge.live/file/avple-images/hls/61730c5916713849c8fc4709/playlist.m3u8
|
||||
137,https://8bb88.cdnedge.live/file/avple-images/hls/61771ed9ad20e84f6e46a0ae/playlist.m3u8
|
||||
138,https://8bb88.cdnedge.live/file/avple-images/hls/61772005ad20e84f6e46a0b0/playlist.m3u8
|
||||
139,https://8bb88.cdnedge.live/file/avple-images/hls/617c4da5f0db60036839e946/playlist.m3u8
|
||||
140,https://8bb88.cdnedge.live/file/avple-images/hls/617c4e59f0db60036839e948/playlist.m3u8
|
||||
141,https://8bb88.cdnedge.live/file/avple-images/hls/61ce10f9b418404e15c81302/playlist.m3u8
|
||||
142,https://8bb88.cdnedge.live/file/avple-images/hls/622b5fc699043721e41f4769/playlist.m3u8
|
||||
143,https://8bb88.cdnedge.live/file/avple-images/hls/627a573c1a1d9a347dd98539/playlist.m3u8
|
||||
144,https://8bb88.cdnedge.live/file/avple-images/hls/6298685823d5972db0bfc99d/playlist.m3u8
|
||||
|
||||
🔞麻豆映画5,#genre#
|
||||
0,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e6ca3006a4603929a38d/playlist.m3u8
|
||||
1,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e77d3006a4603929a38f/playlist.m3u8
|
||||
2,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e8e53006a4603929a392/playlist.m3u8
|
||||
3,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e9213006a4603929a393/playlist.m3u8
|
||||
4,https://d862cp.cdnedge.live/file/avple-images/hls/61a28828fe8a567bb90ec280/playlist.m3u8
|
||||
5,https://d862cp.cdnedge.live/file/avple-images/hls/61a52595a992bd3d5c3eb61b/playlist.m3u8
|
||||
6,https://d862cp.cdnedge.live/file/avple-images/hls/61a67c79a04cdb55de21fe92/playlist.m3u8
|
||||
7,https://d862cp.cdnedge.live/file/avple-images/hls/61adb9e9779a324ef83699c3/playlist.m3u8
|
||||
8,https://d862cp.cdnedge.live/file/avple-images/hls/61b1a2391b15f6408e9320e5/playlist.m3u8
|
||||
9,https://d862cp.cdnedge.live/file/avple-images/hls/61b8169197618e5cc644ad41/playlist.m3u8
|
||||
10,https://d862cp.cdnedge.live/file/avple-images/hls/61bad13dd56b7626e975d4e8/playlist.m3u8
|
||||
11,https://d862cp.cdnedge.live/file/avple-images/hls/61bad4fdd56b7626e975d4ee/playlist.m3u8
|
||||
12,https://d862cp.cdnedge.live/file/avple-images/hls/61bd950e8cc57113d4874846/playlist.m3u8
|
||||
13,https://d862cp.cdnedge.live/file/avple-images/hls/61bd95fe8cc57113d4874847/playlist.m3u8
|
||||
14,https://d862cp.cdnedge.live/file/avple-images/hls/61bd9ae98cc57113d487484c/playlist.m3u8
|
||||
15,https://d862cp.cdnedge.live/file/avple-images/hls/61c189c98ac9db578c18b7f1/playlist.m3u8
|
||||
16,https://d862cp.cdnedge.live/file/avple-images/hls/61c2d009768c0b6e65877056/playlist.m3u8
|
||||
17,https://d862cp.cdnedge.live/file/avple-images/hls/61cacf8ab4a41e7b51c24d4f/playlist.m3u8
|
||||
18,https://d862cp.cdnedge.live/file/avple-images/hls/61ce0f55b418404e15c812fe/playlist.m3u8
|
||||
19,https://d862cp.cdnedge.live/file/avple-images/hls/61ce1082b418404e15c81300/playlist.m3u8
|
||||
20,https://d862cp.cdnedge.live/file/avple-images/hls/61ce1261b418404e15c81306/playlist.m3u8
|
||||
21,https://d862cp.cdnedge.live/file/avple-images/hls/61d0c1918ec5397ce0e2cde2/playlist.m3u8
|
||||
22,https://d862cp.cdnedge.live/file/avple-images/hls/61d0c2098ec5397ce0e2cde3/playlist.m3u8
|
||||
23,https://d862cp.cdnedge.live/file/avple-images/hls/61d22fa9fc53091229805817/playlist.m3u8
|
||||
24,https://d862cp.cdnedge.live/file/avple-images/hls/61d62465f2772f49dcde1d4c/playlist.m3u8
|
||||
25,https://d862cp.cdnedge.live/file/avple-images/hls/61d8f7ea188cab78b243b40b/playlist.m3u8
|
||||
26,https://d862cp.cdnedge.live/file/avple-images/hls/61db6d725fb6a835028c9aec/playlist.m3u8
|
||||
27,https://d862cp.cdnedge.live/file/avple-images/hls/61db6dad5fb6a835028c9aed/playlist.m3u8
|
||||
28,https://d862cp.cdnedge.live/file/avple-images/hls/61df67193c31380dc7d79ade/playlist.m3u8
|
||||
29,https://d862cp.cdnedge.live/file/avple-images/hls/61e11a19b12f2d3579c3423e/playlist.m3u8
|
||||
30,https://d862cp.cdnedge.live/file/avple-images/hls/61e3beefe6eb656b1d2d857e/playlist.m3u8
|
||||
31,https://d862cp.cdnedge.live/file/avple-images/hls/61f7014ad7d05308d12ef11a/playlist.m3u8
|
||||
32,https://d862cp.cdnedge.live/file/avple-images/hls/61f9a7c1d23b882331bc3a8c/playlist.m3u8
|
||||
33,https://d862cp.cdnedge.live/file/avple-images/hls/61f9a8fa9053272327957adc/playlist.m3u8
|
||||
34,https://d862cp.cdnedge.live/file/avple-images/hls/6202e032152c48301ba2ac70/playlist.m3u8
|
||||
35,https://d862cp.cdnedge.live/file/avple-images/hls/6202e0aa152c48301ba2ac71/playlist.m3u8
|
||||
36,https://d862cp.cdnedge.live/file/avple-images/hls/6202e0e6152c48301ba2ac72/playlist.m3u8
|
||||
37,https://d862cp.cdnedge.live/file/avple-images/hls/620b88afd0ea7c7d841b2f35/playlist.m3u8
|
||||
38,https://d862cp.cdnedge.live/file/avple-images/hls/620c6397d0ea7c7d841b2f37/playlist.m3u8
|
||||
39,https://d862cp.cdnedge.live/file/avple-images/hls/620c64c2d0ea7c7d841b2f39/playlist.m3u8
|
||||
40,https://d862cp.cdnedge.live/file/avple-images/hls/62104fa69d14d648884aa81d/playlist.m3u8
|
||||
41,https://d862cp.cdnedge.live/file/avple-images/hls/6211ae465e73c82284228828/playlist.m3u8
|
||||
42,https://d862cp.cdnedge.live/file/avple-images/hls/6215b81bcef8321ac4bf99a7/playlist.m3u8
|
||||
43,https://d862cp.cdnedge.live/file/avple-images/hls/621731ae336b5d6ff709b378/playlist.m3u8
|
||||
44,https://d862cp.cdnedge.live/file/avple-images/hls/6219e7e6b9e8e9119a2f1fe3/playlist.m3u8
|
||||
45,https://d862cp.cdnedge.live/file/avple-images/hls/6219e9c6b9e8e9119a2f1fe8/playlist.m3u8
|
||||
46,https://d862cp.cdnedge.live/file/avple-images/hls/621e17ee0b43873ee3783bf0/playlist.m3u8
|
||||
47,https://d862cp.cdnedge.live/file/avple-images/hls/621e1b360b43873ee3783bf2/playlist.m3u8
|
||||
48,https://d862cp.cdnedge.live/file/avple-images/hls/621f6c7a532bec088eaa2e88/playlist.m3u8
|
||||
49,https://d862cp.cdnedge.live/file/avple-images/hls/62246efac6370a74fa39c710/playlist.m3u8
|
||||
50,https://d862cp.cdnedge.live/file/avple-images/hls/622b616c99043721e41f476c/playlist.m3u8
|
||||
51,https://d862cp.cdnedge.live/file/avple-images/hls/622b634a99043721e41f476f/playlist.m3u8
|
||||
52,https://d862cp.cdnedge.live/file/avple-images/hls/622d4746e5f4997685910d13/playlist.m3u8
|
||||
53,https://d862cp.cdnedge.live/file/avple-images/hls/622fc71ee14ae771445e47fb/playlist.m3u8
|
||||
54,https://d862cp.cdnedge.live/file/avple-images/hls/622fca68e14ae771445e4800/playlist.m3u8
|
||||
55,https://d862cp.cdnedge.live/file/avple-images/hls/623aa076a36ac22379912382/playlist.m3u8
|
||||
56,https://d862cp.cdnedge.live/file/avple-images/hls/623aa346a36ac22379912386/playlist.m3u8
|
||||
57,https://d862cp.cdnedge.live/file/avple-images/hls/623e751676b51e756d5edbfc/playlist.m3u8
|
||||
58,https://d862cp.cdnedge.live/file/avple-images/hls/623e773276b51e756d5edc01/playlist.m3u8
|
||||
59,https://d862cp.cdnedge.live/file/avple-images/hls/623e7c9676b51e756d5edc09/playlist.m3u8
|
||||
60,https://d862cp.cdnedge.live/file/avple-images/hls/624908e9ecadf8296558c708/playlist.m3u8
|
||||
61,https://d862cp.cdnedge.live/file/avple-images/hls/62493cf3cb995938b9053402/playlist.m3u8
|
||||
62,https://d862cp.cdnedge.live/file/avple-images/hls/6249963dcf66f04e1354bd2e/playlist.m3u8
|
||||
63,https://d862cp.cdnedge.live/file/avple-images/hls/6249a0afeb0b5f202d561608/playlist.m3u8
|
||||
64,https://d862cp.cdnedge.live/file/avple-images/hls/624bef3d528c292827c459d7/playlist.m3u8
|
||||
65,https://d862cp.cdnedge.live/file/avple-images/hls/6251973cb9fdae53fd999573/playlist.m3u8
|
||||
66,https://d862cp.cdnedge.live/file/avple-images/hls/625406493d5bac30b2603dba/playlist.m3u8
|
||||
67,https://d862cp.cdnedge.live/file/avple-images/hls/6256afbebd35195668774555/playlist.m3u8
|
||||
68,https://d862cp.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
69,https://d862cp.cdnedge.live/file/avple-images/hls/626bd15b20859323fc450d6a/playlist.m3u8
|
||||
70,https://d862cp.cdnedge.live/file/avple-images/hls/626bd60920859323fc450d71/playlist.m3u8
|
||||
71,https://d862cp.cdnedge.live/file/avple-images/hls/626bd86220859323fc450d73/playlist.m3u8
|
||||
72,https://d862cp.cdnedge.live/file/avple-images/hls/62715fc34deadc023a8a098e/playlist.m3u8
|
||||
73,https://d862cp.cdnedge.live/file/avple-images/hls/6276757c3847697e5124b6d7/playlist.m3u8
|
||||
74,https://d862cp.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8c/playlist.m3u8
|
||||
75,https://d862cp.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8d/playlist.m3u8
|
||||
76,https://d862cp.cdnedge.live/file/avple-images/hls/627e6603c60346652e396c7f/playlist.m3u8
|
||||
77,https://d862cp.cdnedge.live/file/avple-images/hls/6280b2fbfc27be165aeb81d5/playlist.m3u8
|
||||
78,https://d862cp.cdnedge.live/file/avple-images/hls/6280b7a8fc27be165aeb81d9/playlist.m3u8
|
||||
79,https://d862cp.cdnedge.live/file/avple-images/hls/6280bc92fc27be165aeb81dd/playlist.m3u8
|
||||
80,https://d862cp.cdnedge.live/file/avple-images/hls/628375d8ef2c1c6dbc484241/playlist.m3u8
|
||||
81,https://d862cp.cdnedge.live/file/avple-images/hls/6284c1baef2c1c6dbc484243/playlist.m3u8
|
||||
82,https://d862cp.cdnedge.live/file/avple-images/hls/6284e42bc71b08247ee18e32/playlist.m3u8
|
||||
83,https://d862cp.cdnedge.live/file/avple-images/hls/6284e5d0c71b08247ee18e35/playlist.m3u8
|
||||
84,https://d862cp.cdnedge.live/file/avple-images/hls/6284ea43c71b08247ee18e3b/playlist.m3u8
|
||||
85,https://d862cp.cdnedge.live/file/avple-images/hls/628ab86ea1c1cd0b44683efe/playlist.m3u8
|
||||
86,https://d862cp.cdnedge.live/file/avple-images/hls/628ab8aaa1c1cd0b44683eff/playlist.m3u8
|
||||
87,https://d862cp.cdnedge.live/file/avple-images/hls/628b5d6f478a7e4e23bce256/playlist.m3u8
|
||||
88,https://d862cp.cdnedge.live/file/avple-images/hls/628b6013c27a514e3ebcb9b6/playlist.m3u8
|
||||
89,https://d862cp.cdnedge.live/file/avple-images/hls/628b60f3478a7e4e23bce259/playlist.m3u8
|
||||
90,https://d862cp.cdnedge.live/file/avple-images/hls/628b61a7478a7e4e23bce25a/playlist.m3u8
|
||||
91,https://d862cp.cdnedge.live/file/avple-images/hls/628cc532de01360ccb2f8e9b/playlist.m3u8
|
||||
92,https://d862cp.cdnedge.live/file/avple-images/hls/628cc65ede01360ccb2f8e9d/playlist.m3u8
|
||||
93,https://d862cp.cdnedge.live/file/avple-images/hls/628f6925531f007e5ba30af3/playlist.m3u8
|
||||
94,https://d862cp.cdnedge.live/file/avple-images/hls/628f7f67531f007e5ba30af7/playlist.m3u8
|
||||
95,https://d862cp.cdnedge.live/file/avple-images/hls/628f8543531f007e5ba30b00/playlist.m3u8
|
||||
96,https://d862cp.cdnedge.live/file/avple-images/hls/629247ae777f8769be5fdfa7/playlist.m3u8
|
||||
97,https://d862cp.cdnedge.live/file/avple-images/hls/62924b6e777f8769be5fdfab/playlist.m3u8
|
||||
98,https://d862cp.cdnedge.live/file/avple-images/hls/6294de40180f8c65c7d908a8/playlist.m3u8
|
||||
99,https://d862cp.cdnedge.live/file/avple-images/hls/6295761e180f8c65c7d908ac/playlist.m3u8
|
||||
100,https://d862cp.cdnedge.live/file/avple-images/hls/62957f08180f8c65c7d908b9/playlist.m3u8
|
||||
101,https://d862cp.cdnedge.live/file/avple-images/hls/6295f4087ef42454a69c76d3/playlist.m3u8
|
||||
102,https://d862cp.cdnedge.live/file/avple-images/hls/62a2a5d356220431fa6b0d88/playlist.m3u8
|
||||
103,https://d862cp.cdnedge.live/file/avple-images/hls/62a496f094b044303b9622cd/playlist.m3u8
|
||||
104,https://d862cp.cdnedge.live/file/avple-images/hls/62a5a56594b044303b9622d2/playlist.m3u8
|
||||
105,https://d862cp.cdnedge.live/file/avple-images/hls/62a5ac6b94b044303b9622db/playlist.m3u8
|
||||
106,https://d862cp.cdnedge.live/file/avple-images/hls/62aacc3a21a7da2e6584bc81/playlist.m3u8
|
||||
107,https://d862cp.cdnedge.live/file/avple-images/hls/62aacecb21a7da2e6584bc85/playlist.m3u8
|
||||
108,https://d862cp.cdnedge.live/file/avple-images/hls/62aad03321a7da2e6584bc87/playlist.m3u8
|
||||
109,https://d862cp.cdnedge.live/file/avple-images/hls/62ac60491ea6384bb6ca9f86/playlist.m3u8
|
||||
110,https://d862cp.cdnedge.live/file/avple-images/hls/62ac67541ea6384bb6ca9f8c/playlist.m3u8
|
||||
111,https://d862cp.cdnedge.live/file/avple-images/hls/62aed0a9c556631aff1378f1/playlist.m3u8
|
||||
112,https://d862cp.cdnedge.live/file/avple-images/hls/62aed121c556631aff1378f2/playlist.m3u8
|
||||
113,https://d862cp.cdnedge.live/file/avple-images/hls/62b1b7a2eec8264ea0826f2d/playlist.m3u8
|
||||
114,https://d862cp.cdnedge.live/file/avple-images/hls/62b431daea01b50f6781dc58/playlist.m3u8
|
||||
115,https://d862cp.cdnedge.live/file/avple-images/hls/62b43214ea01b50f6781dc59/playlist.m3u8
|
||||
116,https://d862cp.cdnedge.live/file/avple-images/hls/62b43253ea01b50f6781dc5a/playlist.m3u8
|
||||
117,https://d862cp.cdnedge.live/file/avple-images/hls/62b432ccea01b50f6781dc5b/playlist.m3u8
|
||||
118,https://d862cp.cdnedge.live/file/avple-images/hls/62b43341ea01b50f6781dc5c/playlist.m3u8
|
||||
119,https://d862cp.cdnedge.live/file/avple-images/hls/62bbed25ea3d425e0a93b79d/playlist.m3u8
|
||||
120,https://d862cp.cdnedge.live/file/avple-images/hls/62bd8531d0fa6a48496bbf5a/playlist.m3u8
|
||||
121,https://d862cp.cdnedge.live/file/avple-images/hls/62bd883dd0fa6a48496bbf5d/playlist.m3u8
|
||||
122,https://d862cp.cdnedge.live/file/avple-images/hls/618071b94d383b66797a697f/playlist.m3u8
|
||||
123,https://d862cp.cdnedge.live/file/avple-images/hls/618336b586d3713512d4ddb1/playlist.m3u8
|
||||
124,https://d862cp.cdnedge.live/file/avple-images/hls/618b97b552fe307992e9158b/playlist.m3u8
|
||||
125,https://d862cp.cdnedge.live/file/avple-images/hls/6190b7813e002b78fa02b86c/playlist.m3u8
|
||||
126,https://d862cp.cdnedge.live/file/avple-images/hls/6193bc3d1ab2cd467ae5359c/playlist.m3u8
|
||||
127,https://d862cp.cdnedge.live/file/avple-images/hls/61965529647fa6021841bd50/playlist.m3u8
|
||||
128,https://d862cp.cdnedge.live/file/avple-images/hls/619951b14a94103a79bc9486/playlist.m3u8
|
||||
129,https://d862cp.cdnedge.live/file/avple-images/hls/619a41ed8a9163545f3c8173/playlist.m3u8
|
||||
130,https://d862cp.cdnedge.live/file/avple-images/hls/619e96c1364f6c1f6030fe58/playlist.m3u8
|
||||
131,https://d862cp.cdnedge.live/file/avple-images/hls/62c049e68a72962dc53aa5a2/playlist.m3u8
|
||||
132,https://d862cp.cdnedge.live/file/avple-images/hls/61703f29bc5c965ae4f56248/playlist.m3u8
|
||||
133,https://d862cp.cdnedge.live/file/avple-images/hls/61730a0116713849c8fc4706/playlist.m3u8
|
||||
134,https://d862cp.cdnedge.live/file/avple-images/hls/617835fd6275b513e05eef0a/playlist.m3u8
|
||||
135,https://d862cp.cdnedge.live/file/avple-images/hls/617a0469933dae5425d49b8e/playlist.m3u8
|
||||
136,https://d862cp.cdnedge.live/file/avple-images/hls/617c4ed1f0db60036839e949/playlist.m3u8
|
||||
137,https://d862cp.cdnedge.live/file/avple-images/hls/617e2661eb87aa24a1c4102b/playlist.m3u8
|
||||
138,https://d862cp.cdnedge.live/file/avple-images/hls/628cad88de01360ccb2f8e97/playlist.m3u8
|
||||
139,https://d862cp.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb9/playlist.m3u8
|
||||
140,https://d862cp.cdnedge.live/file/avple-images/hls/61e927b7c6ba7653ff362827/playlist.m3u8
|
||||
|
||||
🔞麻豆映画6,#genre#
|
||||
0,https://e2fa6.cdnedge.live/file/avple-images/hls/6202e4a6152c48301ba2ac78/playlist.m3u8
|
||||
1,https://e2fa6.cdnedge.live/file/avple-images/hls/61accd44779a324ef83699bb/playlist.m3u8
|
||||
2,https://e2fa6.cdnedge.live/file/avple-images/hls/6157416d9dda0e2db22a7f11/playlist.m3u8
|
||||
3,https://e2fa6.cdnedge.live/file/avple-images/hls/61703dc1bc5c965ae4f56245/playlist.m3u8
|
||||
4,https://e2fa6.cdnedge.live/file/avple-images/hls/61771d35ad20e84f6e46a0aa/playlist.m3u8
|
||||
5,https://e2fa6.cdnedge.live/file/avple-images/hls/61771e25ad20e84f6e46a0ac/playlist.m3u8
|
||||
6,https://e2fa6.cdnedge.live/file/avple-images/hls/6177207dad20e84f6e46a0b2/playlist.m3u8
|
||||
7,https://e2fa6.cdnedge.live/file/avple-images/hls/617837656275b513e05eef0c/playlist.m3u8
|
||||
8,https://e2fa6.cdnedge.live/file/avple-images/hls/617a051e933dae5425d49b90/playlist.m3u8
|
||||
9,https://e2fa6.cdnedge.live/file/avple-images/hls/617c51a1f0db60036839e94f/playlist.m3u8
|
||||
10,https://e2fa6.cdnedge.live/file/avple-images/hls/617e287deb87aa24a1c4102f/playlist.m3u8
|
||||
11,https://e2fa6.cdnedge.live/file/avple-images/hls/618072314d383b66797a6980/playlist.m3u8
|
||||
12,https://e2fa6.cdnedge.live/file/avple-images/hls/618335c586d3713512d4ddaf/playlist.m3u8
|
||||
13,https://e2fa6.cdnedge.live/file/avple-images/hls/61869d2d8928100853d28993/playlist.m3u8
|
||||
14,https://e2fa6.cdnedge.live/file/avple-images/hls/61892c4135829357ea3d3e9a/playlist.m3u8
|
||||
15,https://e2fa6.cdnedge.live/file/avple-images/hls/618b96c552fe307992e91589/playlist.m3u8
|
||||
16,https://e2fa6.cdnedge.live/file/avple-images/hls/6190b7eed11a877902683210/playlist.m3u8
|
||||
17,https://e2fa6.cdnedge.live/file/avple-images/hls/6190b7f93e002b78fa02b86d/playlist.m3u8
|
||||
18,https://e2fa6.cdnedge.live/file/avple-images/hls/6190b8713e002b78fa02b86f/playlist.m3u8
|
||||
19,https://e2fa6.cdnedge.live/file/avple-images/hls/6197acc2f1d93a199d1cf179/playlist.m3u8
|
||||
20,https://e2fa6.cdnedge.live/file/avple-images/hls/6197af56f1d93a199d1cf17a/playlist.m3u8
|
||||
21,https://e2fa6.cdnedge.live/file/avple-images/hls/619952654a94103a79bc9488/playlist.m3u8
|
||||
22,https://e2fa6.cdnedge.live/file/avple-images/hls/61a28745c4f43c7ba5009c24/playlist.m3u8
|
||||
23,https://e2fa6.cdnedge.live/file/avple-images/hls/61a28961c4f43c7ba5009c28/playlist.m3u8
|
||||
24,https://e2fa6.cdnedge.live/file/avple-images/hls/61a67da5a04cdb55de21fe94/playlist.m3u8
|
||||
25,https://e2fa6.cdnedge.live/file/avple-images/hls/61a7d3d57aac5d7ef57bda21/playlist.m3u8
|
||||
26,https://e2fa6.cdnedge.live/file/avple-images/hls/61a7d4117aac5d7ef57bda22/playlist.m3u8
|
||||
27,https://e2fa6.cdnedge.live/file/avple-images/hls/61a940fd0791fe25b65cea19/playlist.m3u8
|
||||
28,https://e2fa6.cdnedge.live/file/avple-images/hls/61accd32779a324ef83699a0/playlist.m3u8
|
||||
29,https://e2fa6.cdnedge.live/file/avple-images/hls/61accd3d779a324ef83699b1/playlist.m3u8
|
||||
30,https://e2fa6.cdnedge.live/file/avple-images/hls/61accd41779a324ef83699b7/playlist.m3u8
|
||||
31,https://e2fa6.cdnedge.live/file/avple-images/hls/61adba25779a324ef83699c4/playlist.m3u8
|
||||
32,https://e2fa6.cdnedge.live/file/avple-images/hls/61b05311cb1e9c2565068be9/playlist.m3u8
|
||||
33,https://e2fa6.cdnedge.live/file/avple-images/hls/61b6cc191458462c26eadc89/playlist.m3u8
|
||||
34,https://e2fa6.cdnedge.live/file/avple-images/hls/61bad1f1d56b7626e975d4ea/playlist.m3u8
|
||||
35,https://e2fa6.cdnedge.live/file/avple-images/hls/61bd96b28cc57113d4874849/playlist.m3u8
|
||||
36,https://e2fa6.cdnedge.live/file/avple-images/hls/61c6a55e668fd93b4250a31a/playlist.m3u8
|
||||
37,https://e2fa6.cdnedge.live/file/avple-images/hls/61c6a779668fd93b4250a31f/playlist.m3u8
|
||||
38,https://e2fa6.cdnedge.live/file/avple-images/hls/61c6b09d668fd93b4250a32d/playlist.m3u8
|
||||
39,https://e2fa6.cdnedge.live/file/avple-images/hls/61c847f52beaee4e833a9d68/playlist.m3u8
|
||||
40,https://e2fa6.cdnedge.live/file/avple-images/hls/61ce10bdb418404e15c81301/playlist.m3u8
|
||||
41,https://e2fa6.cdnedge.live/file/avple-images/hls/61d8f89f188cab78b243b40d/playlist.m3u8
|
||||
42,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6c455fb6a835028c9ae9/playlist.m3u8
|
||||
43,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6cf95fb6a835028c9aeb/playlist.m3u8
|
||||
44,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6de95fb6a835028c9aee/playlist.m3u8
|
||||
45,https://e2fa6.cdnedge.live/file/avple-images/hls/61de116126bc6674a0936d1b/playlist.m3u8
|
||||
46,https://e2fa6.cdnedge.live/file/avple-images/hls/61e11929b12f2d3579c3423c/playlist.m3u8
|
||||
47,https://e2fa6.cdnedge.live/file/avple-images/hls/61e532eddc7fbb10cb2c4eda/playlist.m3u8
|
||||
48,https://e2fa6.cdnedge.live/file/avple-images/hls/61ea69eedabdc15a14562f7d/playlist.m3u8
|
||||
49,https://e2fa6.cdnedge.live/file/avple-images/hls/61ea6a66dabdc15a14562f7e/playlist.m3u8
|
||||
50,https://e2fa6.cdnedge.live/file/avple-images/hls/61ee473a4e82d1622de7f24e/playlist.m3u8
|
||||
51,https://e2fa6.cdnedge.live/file/avple-images/hls/61efa03b5d579208810784f5/playlist.m3u8
|
||||
52,https://e2fa6.cdnedge.live/file/avple-images/hls/61efa0b25d579208810784f6/playlist.m3u8
|
||||
53,https://e2fa6.cdnedge.live/file/avple-images/hls/61f392da23581479b901ae15/playlist.m3u8
|
||||
54,https://e2fa6.cdnedge.live/file/avple-images/hls/61f701fed7d05308d12ef11c/playlist.m3u8
|
||||
55,https://e2fa6.cdnedge.live/file/avple-images/hls/61f702efd7d05308d12ef11e/playlist.m3u8
|
||||
56,https://e2fa6.cdnedge.live/file/avple-images/hls/61f703ded7d05308d12ef121/playlist.m3u8
|
||||
57,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb893911eff304d6e13796/playlist.m3u8
|
||||
58,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb89a2be50fb04df5de3f7/playlist.m3u8
|
||||
59,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb8b8f11eff304d6e1379d/playlist.m3u8
|
||||
60,https://e2fa6.cdnedge.live/file/avple-images/hls/6202e42e152c48301ba2ac77/playlist.m3u8
|
||||
61,https://e2fa6.cdnedge.live/file/avple-images/hls/6202e4e3152c48301ba2ac79/playlist.m3u8
|
||||
62,https://e2fa6.cdnedge.live/file/avple-images/hls/6209b4def074eb1e0fe6271a/playlist.m3u8
|
||||
63,https://e2fa6.cdnedge.live/file/avple-images/hls/620b8836d0ea7c7d841b2f34/playlist.m3u8
|
||||
64,https://e2fa6.cdnedge.live/file/avple-images/hls/620c65b2d0ea7c7d841b2f3b/playlist.m3u8
|
||||
65,https://e2fa6.cdnedge.live/file/avple-images/hls/62104cd69d14d648884aa815/playlist.m3u8
|
||||
66,https://e2fa6.cdnedge.live/file/avple-images/hls/62104f2e9d14d648884aa81c/playlist.m3u8
|
||||
67,https://e2fa6.cdnedge.live/file/avple-images/hls/6211ad1a5e73c82284228825/playlist.m3u8
|
||||
68,https://e2fa6.cdnedge.live/file/avple-images/hls/6215ac63cef8321ac4bf99a0/playlist.m3u8
|
||||
69,https://e2fa6.cdnedge.live/file/avple-images/hls/6215b6eecef8321ac4bf99a4/playlist.m3u8
|
||||
70,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1c9e0b43873ee3783bf5/playlist.m3u8
|
||||
71,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1eba0b43873ee3783bf7/playlist.m3u8
|
||||
72,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1f320b43873ee3783bf8/playlist.m3u8
|
||||
73,https://e2fa6.cdnedge.live/file/avple-images/hls/622310d31fdb77263ccb386c/playlist.m3u8
|
||||
74,https://e2fa6.cdnedge.live/file/avple-images/hls/62266f52c4dfd90d53d40fc1/playlist.m3u8
|
||||
75,https://e2fa6.cdnedge.live/file/avple-images/hls/622879bfac9a2544846bbfa8/playlist.m3u8
|
||||
76,https://e2fa6.cdnedge.live/file/avple-images/hls/622fc8c1e14ae771445e47fd/playlist.m3u8
|
||||
77,https://e2fa6.cdnedge.live/file/avple-images/hls/62323a128cc9324f4943612e/playlist.m3u8
|
||||
78,https://e2fa6.cdnedge.live/file/avple-images/hls/6233c9aeaefa78093f9ffdd2/playlist.m3u8
|
||||
79,https://e2fa6.cdnedge.live/file/avple-images/hls/6236af021222e41c629a9324/playlist.m3u8
|
||||
80,https://e2fa6.cdnedge.live/file/avple-images/hls/6239257ba14fb341a31f13da/playlist.m3u8
|
||||
81,https://e2fa6.cdnedge.live/file/avple-images/hls/623926a6a14fb341a31f13dd/playlist.m3u8
|
||||
82,https://e2fa6.cdnedge.live/file/avple-images/hls/623aa21aa36ac22379912383/playlist.m3u8
|
||||
83,https://e2fa6.cdnedge.live/file/avple-images/hls/623aa30aa36ac22379912385/playlist.m3u8
|
||||
84,https://e2fa6.cdnedge.live/file/avple-images/hls/623e7be276b51e756d5edc07/playlist.m3u8
|
||||
85,https://e2fa6.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c2b/playlist.m3u8
|
||||
86,https://e2fa6.cdnedge.live/file/avple-images/hls/6242c11b81f80f77774148cc/playlist.m3u8
|
||||
87,https://e2fa6.cdnedge.live/file/avple-images/hls/624941a2cb995938b9053408/playlist.m3u8
|
||||
88,https://e2fa6.cdnedge.live/file/avple-images/hls/624d663b8d83843ab3a678c5/playlist.m3u8
|
||||
89,https://e2fa6.cdnedge.live/file/avple-images/hls/62518930b9fdae53fd99956f/playlist.m3u8
|
||||
90,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973bb9fdae53fd999570/playlist.m3u8
|
||||
91,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999578/playlist.m3u8
|
||||
92,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999579/playlist.m3u8
|
||||
93,https://e2fa6.cdnedge.live/file/avple-images/hls/6252c0bf6b426e5b63529743/playlist.m3u8
|
||||
94,https://e2fa6.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbd/playlist.m3u8
|
||||
95,https://e2fa6.cdnedge.live/file/avple-images/hls/62549c303d5bac30b2603dc6/playlist.m3u8
|
||||
96,https://e2fa6.cdnedge.live/file/avple-images/hls/626a9b433d701068e96b4fdb/playlist.m3u8
|
||||
97,https://e2fa6.cdnedge.live/file/avple-images/hls/626bcd5d20859323fc450d65/playlist.m3u8
|
||||
98,https://e2fa6.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
99,https://e2fa6.cdnedge.live/file/avple-images/hls/6274c11484b95e04c28dde28/playlist.m3u8
|
||||
100,https://e2fa6.cdnedge.live/file/avple-images/hls/6275225cefd05a44b0f87e97/playlist.m3u8
|
||||
101,https://e2fa6.cdnedge.live/file/avple-images/hls/62767ae33847697e5124b6e0/playlist.m3u8
|
||||
102,https://e2fa6.cdnedge.live/file/avple-images/hls/62767c843847697e5124b6e1/playlist.m3u8
|
||||
103,https://e2fa6.cdnedge.live/file/avple-images/hls/627a69161a1d9a347dd98541/playlist.m3u8
|
||||
104,https://e2fa6.cdnedge.live/file/avple-images/hls/6280b58dfc27be165aeb81d8/playlist.m3u8
|
||||
105,https://e2fa6.cdnedge.live/file/avple-images/hls/6280bd84fc27be165aeb81df/playlist.m3u8
|
||||
106,https://e2fa6.cdnedge.live/file/avple-images/hls/6280da2fef039d5507989172/playlist.m3u8
|
||||
107,https://e2fa6.cdnedge.live/file/avple-images/hls/6284ea06c71b08247ee18e3a/playlist.m3u8
|
||||
108,https://e2fa6.cdnedge.live/file/avple-images/hls/6287971dd28d4f134ac69046/playlist.m3u8
|
||||
109,https://e2fa6.cdnedge.live/file/avple-images/hls/6287980bd28d4f134ac69048/playlist.m3u8
|
||||
110,https://e2fa6.cdnedge.live/file/avple-images/hls/62a58b9e94b044303b9622cf/playlist.m3u8
|
||||
111,https://e2fa6.cdnedge.live/file/avple-images/hls/62a5afee94b044303b9622df/playlist.m3u8
|
||||
112,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad43121a7da2e6584bc8b/playlist.m3u8
|
||||
113,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad4a621a7da2e6584bc8c/playlist.m3u8
|
||||
114,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad60e21a7da2e6584bc8f/playlist.m3u8
|
||||
115,https://e2fa6.cdnedge.live/file/avple-images/hls/62b1b5feeec8264ea0826f2b/playlist.m3u8
|
||||
116,https://e2fa6.cdnedge.live/file/avple-images/hls/62b2dd12eec8264ea0826f30/playlist.m3u8
|
||||
117,https://e2fa6.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b52/playlist.m3u8
|
||||
118,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbe92aea3d425e0a93b797/playlist.m3u8
|
||||
119,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbea1aea3d425e0a93b799/playlist.m3u8
|
||||
120,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbeb0aea3d425e0a93b79b/playlist.m3u8
|
||||
121,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973cb9fdae53fd999575/playlist.m3u8
|
||||
122,https://e2fa6.cdnedge.live/file/avple-images/hls/62879ae2d28d4f134ac69051/playlist.m3u8
|
||||
123,https://e2fa6.cdnedge.live/file/avple-images/hls/628aafc4a1c1cd0b44683ef4/playlist.m3u8
|
||||
124,https://e2fa6.cdnedge.live/file/avple-images/hls/628ab95fa1c1cd0b44683f01/playlist.m3u8
|
||||
125,https://e2fa6.cdnedge.live/file/avple-images/hls/628cc69cde01360ccb2f8e9e/playlist.m3u8
|
||||
126,https://e2fa6.cdnedge.live/file/avple-images/hls/628f8239531f007e5ba30afb/playlist.m3u8
|
||||
127,https://e2fa6.cdnedge.live/file/avple-images/hls/628f84ca531f007e5ba30aff/playlist.m3u8
|
||||
128,https://e2fa6.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
129,https://e2fa6.cdnedge.live/file/avple-images/hls/62a1c429de0057366eb1159a/playlist.m3u8
|
||||
130,https://e2fa6.cdnedge.live/file/avple-images/hls/62a2a99256220431fa6b0d8f/playlist.m3u8
|
||||
131,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbf60aea3d425e0a93b7ae/playlist.m3u8
|
||||
132,https://e2fa6.cdnedge.live/file/avple-images/hls/62c4408b366b240e3b67be30/playlist.m3u8
|
||||
133,https://e2fa6.cdnedge.live/file/avple-images/hls/62c44485366b240e3b67be38/playlist.m3u8
|
||||
134,https://e2fa6.cdnedge.live/file/avple-images/hls/62879937d28d4f134ac6904b/playlist.m3u8
|
||||
135,https://e2fa6.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac6904f/playlist.m3u8
|
||||
|
||||
🔞麻豆映画7,#genre#
|
||||
0,https://je40u.cdnedge.live/file/avple-images/hls/6193b9e61ab2cd467ae53597/playlist.m3u8
|
||||
1,https://je40u.cdnedge.live/file/avple-images/hls/619654b1647fa6021841bd4f/playlist.m3u8
|
||||
2,https://je40u.cdnedge.live/file/avple-images/hls/619655a1647fa6021841bd51/playlist.m3u8
|
||||
3,https://je40u.cdnedge.live/file/avple-images/hls/61994e2d4a94103a79bc9481/playlist.m3u8
|
||||
4,https://je40u.cdnedge.live/file/avple-images/hls/619c024af0d6ad68f95a08a9/playlist.m3u8
|
||||
5,https://je40u.cdnedge.live/file/avple-images/hls/619e9595364f6c1f6030fe55/playlist.m3u8
|
||||
6,https://je40u.cdnedge.live/file/avple-images/hls/61a285a1c4f43c7ba5009c21/playlist.m3u8
|
||||
7,https://je40u.cdnedge.live/file/avple-images/hls/61a28691c4f43c7ba5009c23/playlist.m3u8
|
||||
8,https://je40u.cdnedge.live/file/avple-images/hls/61a52379a992bd3d5c3eb618/playlist.m3u8
|
||||
9,https://je40u.cdnedge.live/file/avple-images/hls/61a67d2da04cdb55de21fe93/playlist.m3u8
|
||||
10,https://je40u.cdnedge.live/file/avple-images/hls/61a7d4c57aac5d7ef57bda23/playlist.m3u8
|
||||
11,https://je40u.cdnedge.live/file/avple-images/hls/61b1a1491b15f6408e9320e3/playlist.m3u8
|
||||
12,https://je40u.cdnedge.live/file/avple-images/hls/61b304210f991b6812b80303/playlist.m3u8
|
||||
13,https://je40u.cdnedge.live/file/avple-images/hls/61b46e79f91a1b0eecb6e531/playlist.m3u8
|
||||
14,https://je40u.cdnedge.live/file/avple-images/hls/61b97d650d486a09e8730583/playlist.m3u8
|
||||
15,https://je40u.cdnedge.live/file/avple-images/hls/61c026f1ad3e743fbb4f96ea/playlist.m3u8
|
||||
16,https://je40u.cdnedge.live/file/avple-images/hls/61c02985ad3e743fbb4f96ee/playlist.m3u8
|
||||
17,https://je40u.cdnedge.live/file/avple-images/hls/61c18a428ac9db578c18b7f2/playlist.m3u8
|
||||
18,https://je40u.cdnedge.live/file/avple-images/hls/61c2cf19768c0b6e65877054/playlist.m3u8
|
||||
19,https://je40u.cdnedge.live/file/avple-images/hls/61c6a689668fd93b4250a31d/playlist.m3u8
|
||||
20,https://je40u.cdnedge.live/file/avple-images/hls/61c9980d87883b68401d1b33/playlist.m3u8
|
||||
21,https://je40u.cdnedge.live/file/avple-images/hls/61cc3a95b192e6156087c942/playlist.m3u8
|
||||
22,https://je40u.cdnedge.live/file/avple-images/hls/61d0bfed8ec5397ce0e2cdde/playlist.m3u8
|
||||
23,https://je40u.cdnedge.live/file/avple-images/hls/61d0c5518ec5397ce0e2cde9/playlist.m3u8
|
||||
24,https://je40u.cdnedge.live/file/avple-images/hls/61d0c5c98ec5397ce0e2cdea/playlist.m3u8
|
||||
25,https://je40u.cdnedge.live/file/avple-images/hls/61d22f33fc53091229805816/playlist.m3u8
|
||||
26,https://je40u.cdnedge.live/file/avple-images/hls/61d62519f2772f49dcde1d4e/playlist.m3u8
|
||||
27,https://je40u.cdnedge.live/file/avple-images/hls/61d62735f2772f49dcde1d54/playlist.m3u8
|
||||
28,https://je40u.cdnedge.live/file/avple-images/hls/61d8f6fa188cab78b243b409/playlist.m3u8
|
||||
29,https://je40u.cdnedge.live/file/avple-images/hls/61db6cbd5fb6a835028c9aea/playlist.m3u8
|
||||
30,https://je40u.cdnedge.live/file/avple-images/hls/61de13b926bc6674a0936d1f/playlist.m3u8
|
||||
31,https://je40u.cdnedge.live/file/avple-images/hls/61de159926bc6674a0936d24/playlist.m3u8
|
||||
32,https://je40u.cdnedge.live/file/avple-images/hls/61e3bbedec201f6b0a3a89a5/playlist.m3u8
|
||||
33,https://je40u.cdnedge.live/file/avple-images/hls/61e927bbc6ba7653ff36282a/playlist.m3u8
|
||||
34,https://je40u.cdnedge.live/file/avple-images/hls/61ecc04a7580a3314beba2ad/playlist.m3u8
|
||||
35,https://je40u.cdnedge.live/file/avple-images/hls/61f70366d7d05308d12ef11f/playlist.m3u8
|
||||
36,https://je40u.cdnedge.live/file/avple-images/hls/61f9a8be9053272327957adb/playlist.m3u8
|
||||
37,https://je40u.cdnedge.live/file/avple-images/hls/61fb89ea11eff304d6e13798/playlist.m3u8
|
||||
38,https://je40u.cdnedge.live/file/avple-images/hls/61ff18ee99eb625f8e37e0ad/playlist.m3u8
|
||||
39,https://je40u.cdnedge.live/file/avple-images/hls/6206efa6c6e4cd6e597c7184/playlist.m3u8
|
||||
40,https://je40u.cdnedge.live/file/avple-images/hls/6215b72acef8321ac4bf99a5/playlist.m3u8
|
||||
41,https://je40u.cdnedge.live/file/avple-images/hls/6215b7a2cef8321ac4bf99a6/playlist.m3u8
|
||||
42,https://je40u.cdnedge.live/file/avple-images/hls/6219eab6b9e8e9119a2f1fea/playlist.m3u8
|
||||
43,https://je40u.cdnedge.live/file/avple-images/hls/62230e3e1fdb77263ccb3865/playlist.m3u8
|
||||
44,https://je40u.cdnedge.live/file/avple-images/hls/62230f2e1fdb77263ccb3867/playlist.m3u8
|
||||
45,https://je40u.cdnedge.live/file/avple-images/hls/6223101e1fdb77263ccb386a/playlist.m3u8
|
||||
46,https://je40u.cdnedge.live/file/avple-images/hls/62246e82c6370a74fa39c70f/playlist.m3u8
|
||||
47,https://je40u.cdnedge.live/file/avple-images/hls/6224736ec6370a74fa39c717/playlist.m3u8
|
||||
48,https://je40u.cdnedge.live/file/avple-images/hls/62266cfac4dfd90d53d40fbb/playlist.m3u8
|
||||
49,https://je40u.cdnedge.live/file/avple-images/hls/62266daec4dfd90d53d40fbd/playlist.m3u8
|
||||
50,https://je40u.cdnedge.live/file/avple-images/hls/62266f8ec4dfd90d53d40fc2/playlist.m3u8
|
||||
51,https://je40u.cdnedge.live/file/avple-images/hls/6233c8faaefa78093f9ffdd1/playlist.m3u8
|
||||
52,https://je40u.cdnedge.live/file/avple-images/hls/62350561ecafc64f34ef85b8/playlist.m3u8
|
||||
53,https://je40u.cdnedge.live/file/avple-images/hls/623aa3bea36ac22379912387/playlist.m3u8
|
||||
54,https://je40u.cdnedge.live/file/avple-images/hls/623e776e76b51e756d5edc02/playlist.m3u8
|
||||
55,https://je40u.cdnedge.live/file/avple-images/hls/623e789a76b51e756d5edc05/playlist.m3u8
|
||||
56,https://je40u.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c24/playlist.m3u8
|
||||
57,https://je40u.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c2a/playlist.m3u8
|
||||
58,https://je40u.cdnedge.live/file/avple-images/hls/6242c0df81f80f77774148cb/playlist.m3u8
|
||||
59,https://je40u.cdnedge.live/file/avple-images/hls/62492ae9ac4583340eae9cc0/playlist.m3u8
|
||||
60,https://je40u.cdnedge.live/file/avple-images/hls/624beec5528c292827c459d6/playlist.m3u8
|
||||
61,https://je40u.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbc/playlist.m3u8
|
||||
62,https://je40u.cdnedge.live/file/avple-images/hls/626bd3ec20859323fc450d6e/playlist.m3u8
|
||||
63,https://je40u.cdnedge.live/file/avple-images/hls/626bd8d820859323fc450d74/playlist.m3u8
|
||||
64,https://je40u.cdnedge.live/file/avple-images/hls/626fb5ac3ddea14c11aa4aae/playlist.m3u8
|
||||
65,https://je40u.cdnedge.live/file/avple-images/hls/626fb8b93ddea14c11aa4ab2/playlist.m3u8
|
||||
66,https://je40u.cdnedge.live/file/avple-images/hls/62722e804deadc023a8a0995/playlist.m3u8
|
||||
67,https://je40u.cdnedge.live/file/avple-images/hls/6274cf9d84b95e04c28dde2b/playlist.m3u8
|
||||
68,https://je40u.cdnedge.live/file/avple-images/hls/6274d2aa84b95e04c28dde2f/playlist.m3u8
|
||||
69,https://je40u.cdnedge.live/file/avple-images/hls/627676e63847697e5124b6d9/playlist.m3u8
|
||||
70,https://je40u.cdnedge.live/file/avple-images/hls/6276838a3847697e5124b6e3/playlist.m3u8
|
||||
71,https://je40u.cdnedge.live/file/avple-images/hls/627a564b1a1d9a347dd98537/playlist.m3u8
|
||||
72,https://je40u.cdnedge.live/file/avple-images/hls/6280b4d7fc27be165aeb81d7/playlist.m3u8
|
||||
73,https://je40u.cdnedge.live/file/avple-images/hls/6280b58dfc27be165aeb81d8/playlist.m3u8
|
||||
74,https://je40u.cdnedge.live/file/avple-images/hls/6280b821fc27be165aeb81da/playlist.m3u8
|
||||
75,https://je40u.cdnedge.live/file/avple-images/hls/6280d8b2ef039d5507989170/playlist.m3u8
|
||||
76,https://je40u.cdnedge.live/file/avple-images/hls/6280d9a2ef039d5507989171/playlist.m3u8
|
||||
77,https://je40u.cdnedge.live/file/avple-images/hls/6280d9a2ef039d5507989172/playlist.m3u8
|
||||
78,https://je40u.cdnedge.live/file/avple-images/hls/6284e030c71b08247ee18e2d/playlist.m3u8
|
||||
79,https://je40u.cdnedge.live/file/avple-images/hls/6284e301c71b08247ee18e30/playlist.m3u8
|
||||
80,https://je40u.cdnedge.live/file/avple-images/hls/628637caebf92063abd2f8af/playlist.m3u8
|
||||
81,https://je40u.cdnedge.live/file/avple-images/hls/62879668d28d4f134ac69045/playlist.m3u8
|
||||
82,https://je40u.cdnedge.live/file/avple-images/hls/6287980bd28d4f134ac69048/playlist.m3u8
|
||||
83,https://je40u.cdnedge.live/file/avple-images/hls/628798c1d28d4f134ac69049/playlist.m3u8
|
||||
84,https://je40u.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac6904f/playlist.m3u8
|
||||
85,https://je40u.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac69050/playlist.m3u8
|
||||
86,https://je40u.cdnedge.live/file/avple-images/hls/6287b15cd28d4f134ac69053/playlist.m3u8
|
||||
87,https://je40u.cdnedge.live/file/avple-images/hls/628a3b0aa1c1cd0b44683ef2/playlist.m3u8
|
||||
88,https://je40u.cdnedge.live/file/avple-images/hls/628ab68ea1c1cd0b44683efb/playlist.m3u8
|
||||
89,https://je40u.cdnedge.live/file/avple-images/hls/628ab706a1c1cd0b44683efc/playlist.m3u8
|
||||
90,https://je40u.cdnedge.live/file/avple-images/hls/628cc5adde01360ccb2f8e9c/playlist.m3u8
|
||||
91,https://je40u.cdnedge.live/file/avple-images/hls/628f7ef3531f007e5ba30af6/playlist.m3u8
|
||||
92,https://je40u.cdnedge.live/file/avple-images/hls/628f8183531f007e5ba30afa/playlist.m3u8
|
||||
93,https://je40u.cdnedge.live/file/avple-images/hls/628f8453531f007e5ba30afe/playlist.m3u8
|
||||
94,https://je40u.cdnedge.live/file/avple-images/hls/6290be2987412532ac7f4cfe/playlist.m3u8
|
||||
95,https://je40u.cdnedge.live/file/avple-images/hls/629215fc777f8769be5fdf9f/playlist.m3u8
|
||||
96,https://je40u.cdnedge.live/file/avple-images/hls/62924646777f8769be5fdfa3/playlist.m3u8
|
||||
97,https://je40u.cdnedge.live/file/avple-images/hls/629246f9777f8769be5fdfa5/playlist.m3u8
|
||||
98,https://je40u.cdnedge.live/file/avple-images/hls/62924770777f8769be5fdfa6/playlist.m3u8
|
||||
99,https://je40u.cdnedge.live/file/avple-images/hls/62957876180f8c65c7d908b1/playlist.m3u8
|
||||
100,https://je40u.cdnedge.live/file/avple-images/hls/62a1c9bf56220431fa6b0d81/playlist.m3u8
|
||||
101,https://je40u.cdnedge.live/file/avple-images/hls/62a1ca7556220431fa6b0d82/playlist.m3u8
|
||||
102,https://je40u.cdnedge.live/file/avple-images/hls/62a58dbd94b044303b9622d0/playlist.m3u8
|
||||
103,https://je40u.cdnedge.live/file/avple-images/hls/62a5ace294b044303b9622dc/playlist.m3u8
|
||||
104,https://je40u.cdnedge.live/file/avple-images/hls/62a5b24894b044303b9622e1/playlist.m3u8
|
||||
105,https://je40u.cdnedge.live/file/avple-images/hls/62aaca9721a7da2e6584bc7f/playlist.m3u8
|
||||
106,https://je40u.cdnedge.live/file/avple-images/hls/62aace5621a7da2e6584bc84/playlist.m3u8
|
||||
107,https://je40u.cdnedge.live/file/avple-images/hls/62ac67c91ea6384bb6ca9f8d/playlist.m3u8
|
||||
108,https://je40u.cdnedge.live/file/avple-images/hls/62bbef03ea3d425e0a93b7a1/playlist.m3u8
|
||||
109,https://je40u.cdnedge.live/file/avple-images/hls/62bbf02fea3d425e0a93b7a4/playlist.m3u8
|
||||
110,https://je40u.cdnedge.live/file/avple-images/hls/62bbf592ea3d425e0a93b7ad/playlist.m3u8
|
||||
111,https://je40u.cdnedge.live/file/avple-images/hls/62bd84f5d0fa6a48496bbf59/playlist.m3u8
|
||||
112,https://je40u.cdnedge.live/file/avple-images/hls/62bd88b4d0fa6a48496bbf5f/playlist.m3u8
|
||||
113,https://je40u.cdnedge.live/file/avple-images/hls/62c43af1366b240e3b67be29/playlist.m3u8
|
||||
114,https://je40u.cdnedge.live/file/avple-images/hls/62c4426c366b240e3b67be34/playlist.m3u8
|
||||
114,https://je40u.cdnedge.live/file/avple-images/hls/61703eedbc5c965ae4f56247/playlist.m3u8
|
||||
115,https://je40u.cdnedge.live/file/avple-images/hls/6171a891f8003d17dfd1a737/playlist.m3u8
|
||||
116,https://je40u.cdnedge.live/file/avple-images/hls/6173085d16713849c8fc4703/playlist.m3u8
|
||||
117,https://je40u.cdnedge.live/file/avple-images/hls/61771a65ad20e84f6e46a0a5/playlist.m3u8
|
||||
118,https://je40u.cdnedge.live/file/avple-images/hls/617789ac4835757d4271a1ec/playlist.m3u8
|
||||
119,https://je40u.cdnedge.live/file/avple-images/hls/617c4e1df0db60036839e947/playlist.m3u8
|
||||
120,https://je40u.cdnedge.live/file/avple-images/hls/617c50edf0db60036839e94d/playlist.m3u8
|
||||
121,https://je40u.cdnedge.live/file/avple-images/hls/617e2716eb87aa24a1c4102c/playlist.m3u8
|
||||
122,https://je40u.cdnedge.live/file/avple-images/hls/61806fda4d383b66797a697b/playlist.m3u8
|
||||
123,https://je40u.cdnedge.live/file/avple-images/hls/6183354d86d3713512d4ddae/playlist.m3u8
|
||||
124,https://je40u.cdnedge.live/file/avple-images/hls/618463a6fddb3b0ce1f32687/playlist.m3u8
|
||||
125,https://je40u.cdnedge.live/file/avple-images/hls/6186261e26bdd144b598cbd6/playlist.m3u8
|
||||
126,https://je40u.cdnedge.live/file/avple-images/hls/6186274926bdd144b598cbd9/playlist.m3u8
|
||||
127,https://je40u.cdnedge.live/file/avple-images/hls/61869e1d8928100853d28995/playlist.m3u8
|
||||
128,https://je40u.cdnedge.live/file/avple-images/hls/618b991e52fe307992e9158f/playlist.m3u8
|
||||
129,https://je40u.cdnedge.live/file/avple-images/hls/618e6959f061a16282b2ee9a/playlist.m3u8
|
||||
130,https://je40u.cdnedge.live/file/avple-images/hls/6190bac93e002b78fa02b873/playlist.m3u8
|
||||
131,https://je40u.cdnedge.live/file/avple-images/hls/61de143126bc6674a0936d20/playlist.m3u8
|
||||
132,https://je40u.cdnedge.live/file/avple-images/hls/624eec006d742407ed435446/playlist.m3u8
|
||||
133,https://je40u.cdnedge.live/file/avple-images/hls/628cd91fde01360ccb2f8e9f/playlist.m3u8
|
||||
|
||||
🔞麻豆映画8,#genre#
|
||||
0,https://q2cyl7.cdnedge.live/file/avple-images/hls/61846201fddb3b0ce1f32683/playlist.m3u8
|
||||
1,https://q2cyl7.cdnedge.live/file/avple-images/hls/618624b526bdd144b598cbd3/playlist.m3u8
|
||||
2,https://q2cyl7.cdnedge.live/file/avple-images/hls/61869c018928100853d28991/playlist.m3u8
|
||||
3,https://q2cyl7.cdnedge.live/file/avple-images/hls/61892bc935829357ea3d3e99/playlist.m3u8
|
||||
4,https://q2cyl7.cdnedge.live/file/avple-images/hls/618b999552fe307992e91590/playlist.m3u8
|
||||
5,https://q2cyl7.cdnedge.live/file/avple-images/hls/6190b9613e002b78fa02b870/playlist.m3u8
|
||||
6,https://q2cyl7.cdnedge.live/file/avple-images/hls/61924e2689e9d231c0a0b0e7/playlist.m3u8
|
||||
7,https://q2cyl7.cdnedge.live/file/avple-images/hls/6192bae589e9d231c0a0b0e8/playlist.m3u8
|
||||
8,https://q2cyl7.cdnedge.live/file/avple-images/hls/619a42298a9163545f3c8174/playlist.m3u8
|
||||
9,https://q2cyl7.cdnedge.live/file/avple-images/hls/619c0286f0d6ad68f95a08aa/playlist.m3u8
|
||||
10,https://q2cyl7.cdnedge.live/file/avple-images/hls/619d547d44b3af0456c438a7/playlist.m3u8
|
||||
11,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a287f9c4f43c7ba5009c26/playlist.m3u8
|
||||
12,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a5251da992bd3d5c3eb61a/playlist.m3u8
|
||||
13,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a940490791fe25b65cea17/playlist.m3u8
|
||||
14,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a940c10791fe25b65cea18/playlist.m3u8
|
||||
15,https://q2cyl7.cdnedge.live/file/avple-images/hls/61accd46779a324ef83699bd/playlist.m3u8
|
||||
16,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b051aacb1e9c2565068be6/playlist.m3u8
|
||||
17,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b46f69f91a1b0eecb6e533/playlist.m3u8
|
||||
18,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b6cc551458462c26eadc8a/playlist.m3u8
|
||||
19,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b6cd091458462c26eadc8c/playlist.m3u8
|
||||
20,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b8183597618e5cc644ad45/playlist.m3u8
|
||||
21,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bc3cfe942b586818e33e80/playlist.m3u8
|
||||
22,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bc3d3a942b586818e33e81/playlist.m3u8
|
||||
23,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bd94958cc57113d4874845/playlist.m3u8
|
||||
24,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c6aef9668fd93b4250a32b/playlist.m3u8
|
||||
25,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c848a92beaee4e833a9d6a/playlist.m3u8
|
||||
26,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c849212beaee4e833a9d6b/playlist.m3u8
|
||||
27,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c998c287883b68401d1b35/playlist.m3u8
|
||||
28,https://q2cyl7.cdnedge.live/file/avple-images/hls/61cacf4db4a41e7b51c24d4e/playlist.m3u8
|
||||
29,https://q2cyl7.cdnedge.live/file/avple-images/hls/61cc39e1b192e6156087c940/playlist.m3u8
|
||||
30,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ce129db418404e15c81307/playlist.m3u8
|
||||
31,https://q2cyl7.cdnedge.live/file/avple-images/hls/61d624a1f2772f49dcde1d4d/playlist.m3u8
|
||||
32,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e24c319e31551b4fa3beb1/playlist.m3u8
|
||||
33,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e3bc66ec201f6b0a3a89a6/playlist.m3u8
|
||||
34,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927adc6ba7653ff362821/playlist.m3u8
|
||||
35,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927b5c6ba7653ff362826/playlist.m3u8
|
||||
36,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927b8c6ba7653ff362828/playlist.m3u8
|
||||
37,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927bec6ba7653ff36282c/playlist.m3u8
|
||||
38,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ea6977dabdc15a14562f7c/playlist.m3u8
|
||||
39,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ecbd32b900ea3153ca96f0/playlist.m3u8
|
||||
40,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ecbe6a7580a3314beba2a9/playlist.m3u8
|
||||
41,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ee46864e82d1622de7f24c/playlist.m3u8
|
||||
42,https://q2cyl7.cdnedge.live/file/avple-images/hls/61efa21b5d579208810784f8/playlist.m3u8
|
||||
43,https://q2cyl7.cdnedge.live/file/avple-images/hls/61f9a8479053272327957ada/playlist.m3u8
|
||||
44,https://q2cyl7.cdnedge.live/file/avple-images/hls/61fb8a9e11eff304d6e1379a/playlist.m3u8
|
||||
45,https://q2cyl7.cdnedge.live/file/avple-images/hls/61fb8c0611eff304d6e1379e/playlist.m3u8
|
||||
46,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ff17ff99eb625f8e37e0ab/playlist.m3u8
|
||||
47,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ff192a99eb625f8e37e0ae/playlist.m3u8
|
||||
48,https://q2cyl7.cdnedge.live/file/avple-images/hls/62059e64d69d37216eb636d7/playlist.m3u8
|
||||
49,https://q2cyl7.cdnedge.live/file/avple-images/hls/6205a006d69d37216eb636db/playlist.m3u8
|
||||
50,https://q2cyl7.cdnedge.live/file/avple-images/hls/620b87fcd0ea7c7d841b2f32/playlist.m3u8
|
||||
51,https://q2cyl7.cdnedge.live/file/avple-images/hls/62104e029d14d648884aa818/playlist.m3u8
|
||||
52,https://q2cyl7.cdnedge.live/file/avple-images/hls/62104e7c9d14d648884aa819/playlist.m3u8
|
||||
53,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215abafcef8321ac4bf999e/playlist.m3u8
|
||||
54,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215b63acef8321ac4bf99a2/playlist.m3u8
|
||||
55,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215b892cef8321ac4bf99a8/playlist.m3u8
|
||||
56,https://q2cyl7.cdnedge.live/file/avple-images/hls/6219e98ab9e8e9119a2f1fe7/playlist.m3u8
|
||||
57,https://q2cyl7.cdnedge.live/file/avple-images/hls/6219ea7ab9e8e9119a2f1fe9/playlist.m3u8
|
||||
58,https://q2cyl7.cdnedge.live/file/avple-images/hls/622d47bee5f4997685910d14/playlist.m3u8
|
||||
59,https://q2cyl7.cdnedge.live/file/avple-images/hls/62323bb68cc9324f49436133/playlist.m3u8
|
||||
60,https://q2cyl7.cdnedge.live/file/avple-images/hls/6233ca63aefa78093f9ffdd4/playlist.m3u8
|
||||
61,https://q2cyl7.cdnedge.live/file/avple-images/hls/6236ae8a1222e41c629a9323/playlist.m3u8
|
||||
62,https://q2cyl7.cdnedge.live/file/avple-images/hls/6236b06a1222e41c629a9328/playlist.m3u8
|
||||
63,https://q2cyl7.cdnedge.live/file/avple-images/hls/6239262ea14fb341a31f13dc/playlist.m3u8
|
||||
64,https://q2cyl7.cdnedge.live/file/avple-images/hls/623aa292a36ac22379912384/playlist.m3u8
|
||||
65,https://q2cyl7.cdnedge.live/file/avple-images/hls/623aa436a36ac22379912388/playlist.m3u8
|
||||
66,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e76bb76b51e756d5edc00/playlist.m3u8
|
||||
67,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e785e76b51e756d5edc04/playlist.m3u8
|
||||
68,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e78d776b51e756d5edc06/playlist.m3u8
|
||||
69,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e7c1e76b51e756d5edc08/playlist.m3u8
|
||||
70,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c23/playlist.m3u8
|
||||
71,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c27/playlist.m3u8
|
||||
72,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c28/playlist.m3u8
|
||||
73,https://q2cyl7.cdnedge.live/file/avple-images/hls/6242c580f371357b01d05a0d/playlist.m3u8
|
||||
74,https://q2cyl7.cdnedge.live/file/avple-images/hls/62493f0fcb995938b9053405/playlist.m3u8
|
||||
75,https://q2cyl7.cdnedge.live/file/avple-images/hls/624eeb896d742407ed435445/playlist.m3u8
|
||||
76,https://q2cyl7.cdnedge.live/file/avple-images/hls/6251892fb9fdae53fd99956c/playlist.m3u8
|
||||
77,https://q2cyl7.cdnedge.live/file/avple-images/hls/62518930b9fdae53fd99956e/playlist.m3u8
|
||||
78,https://q2cyl7.cdnedge.live/file/avple-images/hls/6251973bb9fdae53fd999571/playlist.m3u8
|
||||
79,https://q2cyl7.cdnedge.live/file/avple-images/hls/6252c0c06b426e5b63529745/playlist.m3u8
|
||||
80,https://q2cyl7.cdnedge.live/file/avple-images/hls/625497f53d5bac30b2603dc1/playlist.m3u8
|
||||
81,https://q2cyl7.cdnedge.live/file/avple-images/hls/62555b368fabfe03b7ab4be5/playlist.m3u8
|
||||
82,https://q2cyl7.cdnedge.live/file/avple-images/hls/6256b304bd3519566877455c/playlist.m3u8
|
||||
83,https://q2cyl7.cdnedge.live/file/avple-images/hls/626bd15b20859323fc450d6a/playlist.m3u8
|
||||
84,https://q2cyl7.cdnedge.live/file/avple-images/hls/6272341e4deadc023a8a0998/playlist.m3u8
|
||||
85,https://q2cyl7.cdnedge.live/file/avple-images/hls/6272350d4deadc023a8a0999/playlist.m3u8
|
||||
86,https://q2cyl7.cdnedge.live/file/avple-images/hls/6274cccf84b95e04c28dde29/playlist.m3u8
|
||||
87,https://q2cyl7.cdnedge.live/file/avple-images/hls/6274d1b984b95e04c28dde2d/playlist.m3u8
|
||||
88,https://q2cyl7.cdnedge.live/file/avple-images/hls/627a41341a1d9a347dd98536/playlist.m3u8
|
||||
89,https://q2cyl7.cdnedge.live/file/avple-images/hls/627a59cf1a1d9a347dd9853d/playlist.m3u8
|
||||
90,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280b7a8fc27be165aeb81d9/playlist.m3u8
|
||||
91,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280d34eef039d550798916c/playlist.m3u8
|
||||
92,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280d3c6ef039d550798916d/playlist.m3u8
|
||||
93,https://q2cyl7.cdnedge.live/file/avple-images/hls/62837472ef2c1c6dbc484240/playlist.m3u8
|
||||
94,https://q2cyl7.cdnedge.live/file/avple-images/hls/6284e42bc71b08247ee18e32/playlist.m3u8
|
||||
95,https://q2cyl7.cdnedge.live/file/avple-images/hls/6284e7b1c71b08247ee18e38/playlist.m3u8
|
||||
96,https://q2cyl7.cdnedge.live/file/avple-images/hls/62879a28d28d4f134ac6904d/playlist.m3u8
|
||||
97,https://q2cyl7.cdnedge.live/file/avple-images/hls/628aafc4a1c1cd0b44683ef4/playlist.m3u8
|
||||
98,https://q2cyl7.cdnedge.live/file/avple-images/hls/628ab167a1c1cd0b44683ef6/playlist.m3u8
|
||||
99,https://q2cyl7.cdnedge.live/file/avple-images/hls/628cad88de01360ccb2f8e97/playlist.m3u8
|
||||
100,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f69da531f007e5ba30af4/playlist.m3u8
|
||||
101,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f8327531f007e5ba30afc/playlist.m3u8
|
||||
102,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f83a3531f007e5ba30afd/playlist.m3u8
|
||||
103,https://q2cyl7.cdnedge.live/file/avple-images/hls/6292197f777f8769be5fdfa2/playlist.m3u8
|
||||
104,https://q2cyl7.cdnedge.live/file/avple-images/hls/629574b7180f8c65c7d908aa/playlist.m3u8
|
||||
105,https://q2cyl7.cdnedge.live/file/avple-images/hls/62957968180f8c65c7d908b3/playlist.m3u8
|
||||
106,https://q2cyl7.cdnedge.live/file/avple-images/hls/62957fbb180f8c65c7d908ba/playlist.m3u8
|
||||
107,https://q2cyl7.cdnedge.live/file/avple-images/hls/62986d4223d5972db0bfc9a5/playlist.m3u8
|
||||
108,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f652a1b03d86e173f7d3c/playlist.m3u8
|
||||
109,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f652a1b03d86e173f7d3d/playlist.m3u8
|
||||
110,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a1c7a456220431fa6b0d7e/playlist.m3u8
|
||||
111,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a2a68556220431fa6b0d8a/playlist.m3u8
|
||||
112,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a5a65594b044303b9622d3/playlist.m3u8
|
||||
113,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a9bc9d21a7da2e6584bc7e/playlist.m3u8
|
||||
114,https://q2cyl7.cdnedge.live/file/avple-images/hls/62aacf8121a7da2e6584bc86/playlist.m3u8
|
||||
115,https://q2cyl7.cdnedge.live/file/avple-images/hls/62aecff5c556631aff1378f0/playlist.m3u8
|
||||
116,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b2dbadeec8264ea0826f2f/playlist.m3u8
|
||||
117,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b2dd89eec8264ea0826f31/playlist.m3u8
|
||||
118,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b4e/playlist.m3u8
|
||||
119,https://q2cyl7.cdnedge.live/file/avple-images/hls/62bd8710d0fa6a48496bbf5b/playlist.m3u8
|
||||
120,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c047ca8a72962dc53aa5a0/playlist.m3u8
|
||||
121,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c44231366b240e3b67be33/playlist.m3u8
|
||||
122,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280bc92fc27be165aeb81dd/playlist.m3u8
|
||||
123,https://q2cyl7.cdnedge.live/file/avple-images/hls/6235059eecafc64f34ef85b9/playlist.m3u8
|
||||
124,https://q2cyl7.cdnedge.live/file/avple-images/hls/61d0c2f98ec5397ce0e2cde5/playlist.m3u8
|
||||
125,https://q2cyl7.cdnedge.live/file/avple-images/hls/61771c09ad20e84f6e46a0a8/playlist.m3u8
|
||||
126,https://q2cyl7.cdnedge.live/file/avple-images/hls/617a033d933dae5425d49b8c/playlist.m3u8
|
||||
127,https://q2cyl7.cdnedge.live/file/avple-images/hls/617a04a5933dae5425d49b8f/playlist.m3u8
|
||||
128,https://q2cyl7.cdnedge.live/file/avple-images/hls/617c4ffdf0db60036839e94b/playlist.m3u8
|
||||
129,https://q2cyl7.cdnedge.live/file/avple-images/hls/617c5219f0db60036839e950/playlist.m3u8
|
||||
130,https://q2cyl7.cdnedge.live/file/avple-images/hls/61806f254d383b66797a697a/playlist.m3u8
|
||||
|
||||
🔞麻豆映画9,#genre#
|
||||
0,https://u89ey.cdnedge.live/file/avple-images/hls/61b8178197618e5cc644ad43/playlist.m3u8
|
||||
1,https://u89ey.cdnedge.live/file/avple-images/hls/61771b91ad20e84f6e46a0a7/playlist.m3u8
|
||||
2,https://u89ey.cdnedge.live/file/avple-images/hls/61771e9dad20e84f6e46a0ad/playlist.m3u8
|
||||
3,https://u89ey.cdnedge.live/file/avple-images/hls/61771f8dad20e84f6e46a0af/playlist.m3u8
|
||||
4,https://u89ey.cdnedge.live/file/avple-images/hls/617836ed6275b513e05eef0b/playlist.m3u8
|
||||
5,https://u89ey.cdnedge.live/file/avple-images/hls/617c4cf1f0db60036839e944/playlist.m3u8
|
||||
6,https://u89ey.cdnedge.live/file/avple-images/hls/617c4d69f0db60036839e945/playlist.m3u8
|
||||
7,https://u89ey.cdnedge.live/file/avple-images/hls/617c4f85f0db60036839e94a/playlist.m3u8
|
||||
8,https://u89ey.cdnedge.live/file/avple-images/hls/618073224d383b66797a6981/playlist.m3u8
|
||||
9,https://u89ey.cdnedge.live/file/avple-images/hls/6183333186d3713512d4ddaa/playlist.m3u8
|
||||
10,https://u89ey.cdnedge.live/file/avple-images/hls/618336f186d3713512d4ddb2/playlist.m3u8
|
||||
11,https://u89ey.cdnedge.live/file/avple-images/hls/61846279fddb3b0ce1f32684/playlist.m3u8
|
||||
12,https://u89ey.cdnedge.live/file/avple-images/hls/618624f126bdd144b598cbd4/playlist.m3u8
|
||||
13,https://u89ey.cdnedge.live/file/avple-images/hls/61869da58928100853d28994/playlist.m3u8
|
||||
14,https://u89ey.cdnedge.live/file/avple-images/hls/618b973d52fe307992e9158a/playlist.m3u8
|
||||
15,https://u89ey.cdnedge.live/file/avple-images/hls/618b98a552fe307992e9158e/playlist.m3u8
|
||||
16,https://u89ey.cdnedge.live/file/avple-images/hls/6190b7093e002b78fa02b86b/playlist.m3u8
|
||||
17,https://u89ey.cdnedge.live/file/avple-images/hls/6190b8353e002b78fa02b86e/playlist.m3u8
|
||||
18,https://u89ey.cdnedge.live/file/avple-images/hls/61994f884b40d33a86618952/playlist.m3u8
|
||||
19,https://u89ey.cdnedge.live/file/avple-images/hls/61994f954a94103a79bc9483/playlist.m3u8
|
||||
20,https://u89ey.cdnedge.live/file/avple-images/hls/619d55a944b3af0456c438aa/playlist.m3u8
|
||||
21,https://u89ey.cdnedge.live/file/avple-images/hls/61a0e7053006a4603929a38e/playlist.m3u8
|
||||
22,https://u89ey.cdnedge.live/file/avple-images/hls/61a0e7f53006a4603929a390/playlist.m3u8
|
||||
23,https://u89ey.cdnedge.live/file/avple-images/hls/61a526c1a992bd3d5c3eb61e/playlist.m3u8
|
||||
24,https://u89ey.cdnedge.live/file/avple-images/hls/61a7d53d7aac5d7ef57bda24/playlist.m3u8
|
||||
25,https://u89ey.cdnedge.live/file/avple-images/hls/61accd47779a324ef83699bf/playlist.m3u8
|
||||
26,https://u89ey.cdnedge.live/file/avple-images/hls/61adba9d779a324ef83699c5/playlist.m3u8
|
||||
27,https://u89ey.cdnedge.live/file/avple-images/hls/61aea3d102275f78f19d8f2c/playlist.m3u8
|
||||
28,https://u89ey.cdnedge.live/file/avple-images/hls/61b46fa5f91a1b0eecb6e534/playlist.m3u8
|
||||
29,https://u89ey.cdnedge.live/file/avple-images/hls/61b6ca751458462c26eadc86/playlist.m3u8
|
||||
30,https://u89ey.cdnedge.live/file/avple-images/hls/61b816ce97618e5cc644ad42/playlist.m3u8
|
||||
31,https://u89ey.cdnedge.live/file/avple-images/hls/61c028d2ad3e743fbb4f96ec/playlist.m3u8
|
||||
32,https://u89ey.cdnedge.live/file/avple-images/hls/61c02a39ad3e743fbb4f96f0/playlist.m3u8
|
||||
33,https://u89ey.cdnedge.live/file/avple-images/hls/61c6a612668fd93b4250a31c/playlist.m3u8
|
||||
34,https://u89ey.cdnedge.live/file/avple-images/hls/61c6a7f1668fd93b4250a320/playlist.m3u8
|
||||
35,https://u89ey.cdnedge.live/file/avple-images/hls/61c6ae45668fd93b4250a32a/playlist.m3u8
|
||||
36,https://u89ey.cdnedge.live/file/avple-images/hls/61cc3a1db192e6156087c941/playlist.m3u8
|
||||
37,https://u89ey.cdnedge.live/file/avple-images/hls/61ce1171b418404e15c81303/playlist.m3u8
|
||||
38,https://u89ey.cdnedge.live/file/avple-images/hls/61ce1225b418404e15c81305/playlist.m3u8
|
||||
39,https://u89ey.cdnedge.live/file/avple-images/hls/61d0bec18ec5397ce0e2cddc/playlist.m3u8
|
||||
40,https://u89ey.cdnedge.live/file/avple-images/hls/61d0c67d8ec5397ce0e2cdec/playlist.m3u8
|
||||
41,https://u89ey.cdnedge.live/file/avple-images/hls/61d62375f2772f49dcde1d4a/playlist.m3u8
|
||||
42,https://u89ey.cdnedge.live/file/avple-images/hls/61d626f9f2772f49dcde1d53/playlist.m3u8
|
||||
43,https://u89ey.cdnedge.live/file/avple-images/hls/61d8f828188cab78b243b40c/playlist.m3u8
|
||||
44,https://u89ey.cdnedge.live/file/avple-images/hls/61d8f8da188cab78b243b40e/playlist.m3u8
|
||||
45,https://u89ey.cdnedge.live/file/avple-images/hls/61df65753c31380dc7d79ada/playlist.m3u8
|
||||
46,https://u89ey.cdnedge.live/file/avple-images/hls/61e3bcdfec201f6b0a3a89a7/playlist.m3u8
|
||||
47,https://u89ey.cdnedge.live/file/avple-images/hls/61e5332adc7fbb10cb2c4edb/playlist.m3u8
|
||||
48,https://u89ey.cdnedge.live/file/avple-images/hls/61e927aac6ba7653ff36281f/playlist.m3u8
|
||||
49,https://u89ey.cdnedge.live/file/avple-images/hls/61ee46c24e82d1622de7f24d/playlist.m3u8
|
||||
50,https://u89ey.cdnedge.live/file/avple-images/hls/61efa1a25d579208810784f7/playlist.m3u8
|
||||
51,https://u89ey.cdnedge.live/file/avple-images/hls/61f701c2d7d05308d12ef11b/playlist.m3u8
|
||||
52,https://u89ey.cdnedge.live/file/avple-images/hls/61f9a6a29053272327957ad6/playlist.m3u8
|
||||
53,https://u89ey.cdnedge.live/file/avple-images/hls/61fb8a2611eff304d6e13799/playlist.m3u8
|
||||
54,https://u89ey.cdnedge.live/file/avple-images/hls/61fb8cf611eff304d6e1379f/playlist.m3u8
|
||||
55,https://u89ey.cdnedge.live/file/avple-images/hls/61ff169699eb625f8e37e0a7/playlist.m3u8
|
||||
56,https://u89ey.cdnedge.live/file/avple-images/hls/6202e37a152c48301ba2ac75/playlist.m3u8
|
||||
57,https://u89ey.cdnedge.live/file/avple-images/hls/6202e3f2152c48301ba2ac76/playlist.m3u8
|
||||
58,https://u89ey.cdnedge.live/file/avple-images/hls/6202e55a152c48301ba2ac7a/playlist.m3u8
|
||||
59,https://u89ey.cdnedge.live/file/avple-images/hls/6205a47ad69d37216eb636de/playlist.m3u8
|
||||
60,https://u89ey.cdnedge.live/file/avple-images/hls/620c662bd0ea7c7d841b2f3c/playlist.m3u8
|
||||
61,https://u89ey.cdnedge.live/file/avple-images/hls/6215b8cecef8321ac4bf99a9/playlist.m3u8
|
||||
62,https://u89ey.cdnedge.live/file/avple-images/hls/6219e6f5b9e8e9119a2f1fe1/playlist.m3u8
|
||||
63,https://u89ey.cdnedge.live/file/avple-images/hls/6219e76eb9e8e9119a2f1fe2/playlist.m3u8
|
||||
64,https://u89ey.cdnedge.live/file/avple-images/hls/621e160f0b43873ee3783bec/playlist.m3u8
|
||||
65,https://u89ey.cdnedge.live/file/avple-images/hls/62230dc61fdb77263ccb3864/playlist.m3u8
|
||||
66,https://u89ey.cdnedge.live/file/avple-images/hls/62246faec6370a74fa39c712/playlist.m3u8
|
||||
67,https://u89ey.cdnedge.live/file/avple-images/hls/62287a72ac9a2544846bbfaa/playlist.m3u8
|
||||
68,https://u89ey.cdnedge.live/file/avple-images/hls/622b612f99043721e41f476b/playlist.m3u8
|
||||
69,https://u89ey.cdnedge.live/file/avple-images/hls/622b61e299043721e41f476d/playlist.m3u8
|
||||
70,https://u89ey.cdnedge.live/file/avple-images/hls/622b656699043721e41f4771/playlist.m3u8
|
||||
71,https://u89ey.cdnedge.live/file/avple-images/hls/622d470ae5f4997685910d12/playlist.m3u8
|
||||
72,https://u89ey.cdnedge.live/file/avple-images/hls/622d4a52e5f4997685910d1b/playlist.m3u8
|
||||
73,https://u89ey.cdnedge.live/file/avple-images/hls/622fc66ae14ae771445e47f9/playlist.m3u8
|
||||
74,https://u89ey.cdnedge.live/file/avple-images/hls/62323bf28cc9324f49436134/playlist.m3u8
|
||||
75,https://u89ey.cdnedge.live/file/avple-images/hls/6233ca29aefa78093f9ffdd3/playlist.m3u8
|
||||
76,https://u89ey.cdnedge.live/file/avple-images/hls/6233cadaaefa78093f9ffdd5/playlist.m3u8
|
||||
77,https://u89ey.cdnedge.live/file/avple-images/hls/62350655ecafc64f34ef85bb/playlist.m3u8
|
||||
78,https://u89ey.cdnedge.live/file/avple-images/hls/6236b0a61222e41c629a9329/playlist.m3u8
|
||||
79,https://u89ey.cdnedge.live/file/avple-images/hls/6236b11e1222e41c629a932a/playlist.m3u8
|
||||
80,https://u89ey.cdnedge.live/file/avple-images/hls/6238245f3f90d26204d0e679/playlist.m3u8
|
||||
81,https://u89ey.cdnedge.live/file/avple-images/hls/6242c15681f80f77774148cd/playlist.m3u8
|
||||
82,https://u89ey.cdnedge.live/file/avple-images/hls/624426335b48055614930059/playlist.m3u8
|
||||
83,https://u89ey.cdnedge.live/file/avple-images/hls/6249a0afeb0b5f202d561603/playlist.m3u8
|
||||
84,https://u89ey.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d56161a/playlist.m3u8
|
||||
85,https://u89ey.cdnedge.live/file/avple-images/hls/624d7cc08d83843ab3a678c7/playlist.m3u8
|
||||
86,https://u89ey.cdnedge.live/file/avple-images/hls/6250349af06f665330ec2bdc/playlist.m3u8
|
||||
87,https://u89ey.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957c/playlist.m3u8
|
||||
88,https://u89ey.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957d/playlist.m3u8
|
||||
89,https://u89ey.cdnedge.live/file/avple-images/hls/6254986f3d5bac30b2603dc2/playlist.m3u8
|
||||
90,https://u89ey.cdnedge.live/file/avple-images/hls/6256b161bd35195668774558/playlist.m3u8
|
||||
91,https://u89ey.cdnedge.live/file/avple-images/hls/626bd95120859323fc450d75/playlist.m3u8
|
||||
92,https://u89ey.cdnedge.live/file/avple-images/hls/626fb4473ddea14c11aa4aac/playlist.m3u8
|
||||
93,https://u89ey.cdnedge.live/file/avple-images/hls/626fb8423ddea14c11aa4ab1/playlist.m3u8
|
||||
94,https://u89ey.cdnedge.live/file/avple-images/hls/627678103847697e5124b6dc/playlist.m3u8
|
||||
95,https://u89ey.cdnedge.live/file/avple-images/hls/627678c43847697e5124b6dd/playlist.m3u8
|
||||
96,https://u89ey.cdnedge.live/file/avple-images/hls/6276793c3847697e5124b6de/playlist.m3u8
|
||||
97,https://u89ey.cdnedge.live/file/avple-images/hls/627a5a0c1a1d9a347dd9853e/playlist.m3u8
|
||||
98,https://u89ey.cdnedge.live/file/avple-images/hls/627cdcf62568f9623a3e5421/playlist.m3u8
|
||||
99,https://u89ey.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8b/playlist.m3u8
|
||||
100,https://u89ey.cdnedge.live/file/avple-images/hls/627e66b4c60346652e396c80/playlist.m3u8
|
||||
101,https://u89ey.cdnedge.live/file/avple-images/hls/6280b154fc27be165aeb81d2/playlist.m3u8
|
||||
102,https://u89ey.cdnedge.live/file/avple-images/hls/6280b821fc27be165aeb81da/playlist.m3u8
|
||||
103,https://u89ey.cdnedge.live/file/avple-images/hls/6280bd0bfc27be165aeb81de/playlist.m3u8
|
||||
104,https://u89ey.cdnedge.live/file/avple-images/hls/6280be37fc27be165aeb81e0/playlist.m3u8
|
||||
105,https://u89ey.cdnedge.live/file/avple-images/hls/6284e288c71b08247ee18e2f/playlist.m3u8
|
||||
106,https://u89ey.cdnedge.live/file/avple-images/hls/6284e33bc71b08247ee18e31/playlist.m3u8
|
||||
107,https://u89ey.cdnedge.live/file/avple-images/hls/628798c2d28d4f134ac6904a/playlist.m3u8
|
||||
108,https://u89ey.cdnedge.live/file/avple-images/hls/6288471dd28d4f134ac69054/playlist.m3u8
|
||||
109,https://u89ey.cdnedge.live/file/avple-images/hls/6289a97bb982a351108bf732/playlist.m3u8
|
||||
110,https://u89ey.cdnedge.live/file/avple-images/hls/62aad0ac21a7da2e6584bc88/playlist.m3u8
|
||||
111,https://u89ey.cdnedge.live/file/avple-images/hls/62ac63931ea6384bb6ca9f87/playlist.m3u8
|
||||
112,https://u89ey.cdnedge.live/file/avple-images/hls/62ac65ec1ea6384bb6ca9f89/playlist.m3u8
|
||||
113,https://u89ey.cdnedge.live/file/avple-images/hls/62aecbbdc556631aff1378eb/playlist.m3u8
|
||||
114,https://u89ey.cdnedge.live/file/avple-images/hls/62b1b8cceec8264ea0826f2e/playlist.m3u8
|
||||
115,https://u89ey.cdnedge.live/file/avple-images/hls/62bbed9fea3d425e0a93b79e/playlist.m3u8
|
||||
116,https://u89ey.cdnedge.live/file/avple-images/hls/62bee355e8dd79755d817bbb/playlist.m3u8
|
||||
117,https://u89ey.cdnedge.live/file/avple-images/hls/62c168c8b70f0f5e88542c50/playlist.m3u8
|
||||
118,https://u89ey.cdnedge.live/file/avple-images/hls/62c43a3c366b240e3b67be27/playlist.m3u8
|
||||
119,https://u89ey.cdnedge.live/file/avple-images/hls/62c4413f366b240e3b67be32/playlist.m3u8
|
||||
120,https://u89ey.cdnedge.live/file/avple-images/hls/628ab86ea1c1cd0b44683efe/playlist.m3u8
|
||||
121,https://u89ey.cdnedge.live/file/avple-images/hls/628ab95fa1c1cd0b44683f01/playlist.m3u8
|
||||
122,https://u89ey.cdnedge.live/file/avple-images/hls/628b5ed8478a7e4e23bce257/playlist.m3u8
|
||||
123,https://u89ey.cdnedge.live/file/avple-images/hls/628b5ed9478a7e4e23bce258/playlist.m3u8
|
||||
124,https://u89ey.cdnedge.live/file/avple-images/hls/628cc5adde01360ccb2f8e9c/playlist.m3u8
|
||||
125,https://u89ey.cdnedge.live/file/avple-images/hls/628cc65ede01360ccb2f8e9d/playlist.m3u8
|
||||
126,https://u89ey.cdnedge.live/file/avple-images/hls/628f6925531f007e5ba30af3/playlist.m3u8
|
||||
127,https://u89ey.cdnedge.live/file/avple-images/hls/628f8453531f007e5ba30afe/playlist.m3u8
|
||||
128,https://u89ey.cdnedge.live/file/avple-images/hls/628f84ca531f007e5ba30aff/playlist.m3u8
|
||||
129,https://u89ey.cdnedge.live/file/avple-images/hls/628f8543531f007e5ba30b00/playlist.m3u8
|
||||
130,https://u89ey.cdnedge.live/file/avple-images/hls/629578ef180f8c65c7d908b2/playlist.m3u8
|
||||
131,https://u89ey.cdnedge.live/file/avple-images/hls/62986ba123d5972db0bfc9a3/playlist.m3u8
|
||||
132,https://u89ey.cdnedge.live/file/avple-images/hls/62986bda23d5972db0bfc9a4/playlist.m3u8
|
||||
133,https://u89ey.cdnedge.live/file/avple-images/hls/62986df623d5972db0bfc9a7/playlist.m3u8
|
||||
134,https://u89ey.cdnedge.live/file/avple-images/hls/62a2a77456220431fa6b0d8c/playlist.m3u8
|
||||
135,https://u89ey.cdnedge.live/file/avple-images/hls/62a2a91856220431fa6b0d8e/playlist.m3u8
|
||||
136,https://u89ey.cdnedge.live/file/avple-images/hls/62a494d494b044303b9622cb/playlist.m3u8
|
||||
137,https://u89ey.cdnedge.live/file/avple-images/hls/62a4963b94b044303b9622cc/playlist.m3u8
|
||||
138,https://u89ey.cdnedge.live/file/avple-images/hls/62a5a4ee94b044303b9622d1/playlist.m3u8
|
||||
139,https://u89ey.cdnedge.live/file/avple-images/hls/62a5a99d94b044303b9622d8/playlist.m3u8
|
||||
140,https://u89ey.cdnedge.live/file/avple-images/hls/6257f50aa840bf2dd2ce4358/playlist.m3u8
|
||||
141,https://u89ey.cdnedge.live/file/avple-images/hls/62957b4a180f8c65c7d908b5/playlist.m3u8
|
||||
142,https://u89ey.cdnedge.live/file/avple-images/hls/62104c229d14d648884aa813/playlist.m3u8
|
||||
|
||||
🔞麻豆映画10,#genre#
|
||||
0,https://w9n76.cdnedge.live/file/avple-images/hls/6197ab1df1d93a199d1cf175/playlist.m3u8
|
||||
1,https://w9n76.cdnedge.live/file/avple-images/hls/6199500d4a94103a79bc9484/playlist.m3u8
|
||||
2,https://w9n76.cdnedge.live/file/avple-images/hls/619952294a94103a79bc9487/playlist.m3u8
|
||||
3,https://w9n76.cdnedge.live/file/avple-images/hls/61a28a15c4f43c7ba5009c2a/playlist.m3u8
|
||||
4,https://w9n76.cdnedge.live/file/avple-images/hls/61accd3a779a324ef83699ab/playlist.m3u8
|
||||
5,https://w9n76.cdnedge.live/file/avple-images/hls/61aea35902275f78f19d8f2b/playlist.m3u8
|
||||
6,https://w9n76.cdnedge.live/file/avple-images/hls/61b6cba11458462c26eadc88/playlist.m3u8
|
||||
7,https://w9n76.cdnedge.live/file/avple-images/hls/61bd96758cc57113d4874848/playlist.m3u8
|
||||
8,https://w9n76.cdnedge.live/file/avple-images/hls/61bd99098cc57113d487484b/playlist.m3u8
|
||||
9,https://w9n76.cdnedge.live/file/avple-images/hls/61c6aafd668fd93b4250a326/playlist.m3u8
|
||||
10,https://w9n76.cdnedge.live/file/avple-images/hls/61c84a112beaee4e833a9d6d/playlist.m3u8
|
||||
11,https://w9n76.cdnedge.live/file/avple-images/hls/61c997d187883b68401d1b32/playlist.m3u8
|
||||
12,https://w9n76.cdnedge.live/file/avple-images/hls/61c9984a87883b68401d1b34/playlist.m3u8
|
||||
13,https://w9n76.cdnedge.live/file/avple-images/hls/61caced5b4a41e7b51c24d4d/playlist.m3u8
|
||||
14,https://w9n76.cdnedge.live/file/avple-images/hls/61cacfc5b4a41e7b51c24d50/playlist.m3u8
|
||||
15,https://w9n76.cdnedge.live/file/avple-images/hls/61d62286f2772f49dcde1d48/playlist.m3u8
|
||||
16,https://w9n76.cdnedge.live/file/avple-images/hls/61d622fdf2772f49dcde1d49/playlist.m3u8
|
||||
17,https://w9n76.cdnedge.live/file/avple-images/hls/61d62555f2772f49dcde1d4f/playlist.m3u8
|
||||
18,https://w9n76.cdnedge.live/file/avple-images/hls/61d8f951188cab78b243b40f/playlist.m3u8
|
||||
19,https://w9n76.cdnedge.live/file/avple-images/hls/61db6e255fb6a835028c9aef/playlist.m3u8
|
||||
20,https://w9n76.cdnedge.live/file/avple-images/hls/61e2499d9e31551b4fa3beac/playlist.m3u8
|
||||
21,https://w9n76.cdnedge.live/file/avple-images/hls/61e24ac99e31551b4fa3beaf/playlist.m3u8
|
||||
22,https://w9n76.cdnedge.live/file/avple-images/hls/61e3be46ec201f6b0a3a89a9/playlist.m3u8
|
||||
23,https://w9n76.cdnedge.live/file/avple-images/hls/61ecbc4f7580a3314beba2a4/playlist.m3u8
|
||||
24,https://w9n76.cdnedge.live/file/avple-images/hls/61ecbd027580a3314beba2a6/playlist.m3u8
|
||||
25,https://w9n76.cdnedge.live/file/avple-images/hls/61ecc00e7580a3314beba2ac/playlist.m3u8
|
||||
26,https://w9n76.cdnedge.live/file/avple-images/hls/61efa2565d579208810784f9/playlist.m3u8
|
||||
27,https://w9n76.cdnedge.live/file/avple-images/hls/61f70276d7d05308d12ef11d/playlist.m3u8
|
||||
28,https://w9n76.cdnedge.live/file/avple-images/hls/61f9a9369053272327957add/playlist.m3u8
|
||||
29,https://w9n76.cdnedge.live/file/avple-images/hls/61f9a9ae9053272327957ade/playlist.m3u8
|
||||
30,https://w9n76.cdnedge.live/file/avple-images/hls/61fb8929be50fb04df5de3f0/playlist.m3u8
|
||||
31,https://w9n76.cdnedge.live/file/avple-images/hls/61fd8f2ec68d7d11e015cd8b/playlist.m3u8
|
||||
32,https://w9n76.cdnedge.live/file/avple-images/hls/61ff165a99eb625f8e37e0a6/playlist.m3u8
|
||||
33,https://w9n76.cdnedge.live/file/avple-images/hls/62059f17d69d37216eb636d8/playlist.m3u8
|
||||
34,https://w9n76.cdnedge.live/file/avple-images/hls/6205a3c6d69d37216eb636dd/playlist.m3u8
|
||||
35,https://w9n76.cdnedge.live/file/avple-images/hls/6206efe3c6e4cd6e597c7185/playlist.m3u8
|
||||
36,https://w9n76.cdnedge.live/file/avple-images/hls/6209b3eef074eb1e0fe62717/playlist.m3u8
|
||||
37,https://w9n76.cdnedge.live/file/avple-images/hls/620b8746b9ba4c5adad0e27e/playlist.m3u8
|
||||
38,https://w9n76.cdnedge.live/file/avple-images/hls/62104d4e9d14d648884aa816/playlist.m3u8
|
||||
39,https://w9n76.cdnedge.live/file/avple-images/hls/6211ad925e73c82284228826/playlist.m3u8
|
||||
40,https://w9n76.cdnedge.live/file/avple-images/hls/621e133f0b43873ee3783be7/playlist.m3u8
|
||||
41,https://w9n76.cdnedge.live/file/avple-images/hls/621e146a0b43873ee3783be9/playlist.m3u8
|
||||
42,https://w9n76.cdnedge.live/file/avple-images/hls/621f6d2e532bec088eaa2e8a/playlist.m3u8
|
||||
43,https://w9n76.cdnedge.live/file/avple-images/hls/62246feac6370a74fa39c713/playlist.m3u8
|
||||
44,https://w9n76.cdnedge.live/file/avple-images/hls/62266e62c4dfd90d53d40fbf/playlist.m3u8
|
||||
45,https://w9n76.cdnedge.live/file/avple-images/hls/622b5de999043721e41f4766/playlist.m3u8
|
||||
46,https://w9n76.cdnedge.live/file/avple-images/hls/622b643b99043721e41f4770/playlist.m3u8
|
||||
47,https://w9n76.cdnedge.live/file/avple-images/hls/62323ac78cc9324f49436130/playlist.m3u8
|
||||
48,https://w9n76.cdnedge.live/file/avple-images/hls/6238236f3f90d26204d0e676/playlist.m3u8
|
||||
49,https://w9n76.cdnedge.live/file/avple-images/hls/623823aa3f90d26204d0e677/playlist.m3u8
|
||||
50,https://w9n76.cdnedge.live/file/avple-images/hls/623825123f90d26204d0e67b/playlist.m3u8
|
||||
51,https://w9n76.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c29/playlist.m3u8
|
||||
52,https://w9n76.cdnedge.live/file/avple-images/hls/6242c68a1226727c1d866b6b/playlist.m3u8
|
||||
53,https://w9n76.cdnedge.live/file/avple-images/hls/624426335b4805561493005a/playlist.m3u8
|
||||
54,https://w9n76.cdnedge.live/file/avple-images/hls/624590a38fe3f433a0be0548/playlist.m3u8
|
||||
55,https://w9n76.cdnedge.live/file/avple-images/hls/6246e3c7abd4e014b3b11183/playlist.m3u8
|
||||
56,https://w9n76.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb7/playlist.m3u8
|
||||
57,https://w9n76.cdnedge.live/file/avple-images/hls/62493c7bcb995938b9053401/playlist.m3u8
|
||||
58,https://w9n76.cdnedge.live/file/avple-images/hls/62493d33cb995938b9053403/playlist.m3u8
|
||||
59,https://w9n76.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561613/playlist.m3u8
|
||||
60,https://w9n76.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
61,https://w9n76.cdnedge.live/file/avple-images/hls/626bd33820859323fc450d6d/playlist.m3u8
|
||||
62,https://w9n76.cdnedge.live/file/avple-images/hls/626bd4a020859323fc450d6f/playlist.m3u8
|
||||
63,https://w9n76.cdnedge.live/file/avple-images/hls/626faee23ddea14c11aa4aa6/playlist.m3u8
|
||||
64,https://w9n76.cdnedge.live/file/avple-images/hls/626fb69c3ddea14c11aa4aaf/playlist.m3u8
|
||||
65,https://w9n76.cdnedge.live/file/avple-images/hls/62722abd4deadc023a8a0992/playlist.m3u8
|
||||
66,https://w9n76.cdnedge.live/file/avple-images/hls/6273dcca84b95e04c28dde27/playlist.m3u8
|
||||
67,https://w9n76.cdnedge.live/file/avple-images/hls/627675043847697e5124b6d6/playlist.m3u8
|
||||
68,https://w9n76.cdnedge.live/file/avple-images/hls/6276766c3847697e5124b6d8/playlist.m3u8
|
||||
69,https://w9n76.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1e/playlist.m3u8
|
||||
70,https://w9n76.cdnedge.live/file/avple-images/hls/627a56c51a1d9a347dd98538/playlist.m3u8
|
||||
71,https://w9n76.cdnedge.live/file/avple-images/hls/627e66b5c60346652e396c81/playlist.m3u8
|
||||
72,https://w9n76.cdnedge.live/file/avple-images/hls/627ef081c60346652e396c84/playlist.m3u8
|
||||
73,https://w9n76.cdnedge.live/file/avple-images/hls/6280b897fc27be165aeb81db/playlist.m3u8
|
||||
74,https://w9n76.cdnedge.live/file/avple-images/hls/6280d9a2ef039d5507989171/playlist.m3u8
|
||||
75,https://w9n76.cdnedge.live/file/avple-images/hls/62825ac621f8de22adabf597/playlist.m3u8
|
||||
76,https://w9n76.cdnedge.live/file/avple-images/hls/62837472ef2c1c6dbc484240/playlist.m3u8
|
||||
77,https://w9n76.cdnedge.live/file/avple-images/hls/6284e33bc71b08247ee18e31/playlist.m3u8
|
||||
78,https://w9n76.cdnedge.live/file/avple-images/hls/6284e593c71b08247ee18e34/playlist.m3u8
|
||||
79,https://w9n76.cdnedge.live/file/avple-images/hls/6284e648c71b08247ee18e36/playlist.m3u8
|
||||
80,https://w9n76.cdnedge.live/file/avple-images/hls/6284e6bfc71b08247ee18e37/playlist.m3u8
|
||||
81,https://w9n76.cdnedge.live/file/avple-images/hls/6284f2fbc71b08247ee18e3c/playlist.m3u8
|
||||
82,https://w9n76.cdnedge.live/file/avple-images/hls/628798c1d28d4f134ac69049/playlist.m3u8
|
||||
83,https://w9n76.cdnedge.live/file/avple-images/hls/62879ae2d28d4f134ac69051/playlist.m3u8
|
||||
84,https://w9n76.cdnedge.live/file/avple-images/hls/6287b15cd28d4f134ac69053/playlist.m3u8
|
||||
85,https://w9n76.cdnedge.live/file/avple-images/hls/628ab384a1c1cd0b44683ef7/playlist.m3u8
|
||||
86,https://w9n76.cdnedge.live/file/avple-images/hls/628ab4eba1c1cd0b44683ef9/playlist.m3u8
|
||||
87,https://w9n76.cdnedge.live/file/avple-images/hls/628ab9d6a1c1cd0b44683f02/playlist.m3u8
|
||||
88,https://w9n76.cdnedge.live/file/avple-images/hls/628f7d10531f007e5ba30af5/playlist.m3u8
|
||||
89,https://w9n76.cdnedge.live/file/avple-images/hls/628f8183531f007e5ba30afa/playlist.m3u8
|
||||
90,https://w9n76.cdnedge.live/file/avple-images/hls/6290be2987412532ac7f4cfe/playlist.m3u8
|
||||
91,https://w9n76.cdnedge.live/file/avple-images/hls/6298698323d5972db0bfc9a0/playlist.m3u8
|
||||
92,https://w9n76.cdnedge.live/file/avple-images/hls/62986aee23d5972db0bfc9a2/playlist.m3u8
|
||||
93,https://w9n76.cdnedge.live/file/avple-images/hls/629f660879f93b6e0966e237/playlist.m3u8
|
||||
94,https://w9n76.cdnedge.live/file/avple-images/hls/62a2b76356220431fa6b0d91/playlist.m3u8
|
||||
95,https://w9n76.cdnedge.live/file/avple-images/hls/62a32d8700bfe87ec988ccdc/playlist.m3u8
|
||||
96,https://w9n76.cdnedge.live/file/avple-images/hls/62a5abb794b044303b9622da/playlist.m3u8
|
||||
97,https://w9n76.cdnedge.live/file/avple-images/hls/62a5ae4a94b044303b9622dd/playlist.m3u8
|
||||
98,https://w9n76.cdnedge.live/file/avple-images/hls/62a5b68294b044303b9622e3/playlist.m3u8
|
||||
99,https://w9n76.cdnedge.live/file/avple-images/hls/62aad21a21a7da2e6584bc89/playlist.m3u8
|
||||
100,https://w9n76.cdnedge.live/file/avple-images/hls/62aad3b921a7da2e6584bc8a/playlist.m3u8
|
||||
101,https://w9n76.cdnedge.live/file/avple-images/hls/62aad64c21a7da2e6584bc90/playlist.m3u8
|
||||
102,https://w9n76.cdnedge.live/file/avple-images/hls/62aad86721a7da2e6584bc93/playlist.m3u8
|
||||
103,https://w9n76.cdnedge.live/file/avple-images/hls/62ac66d81ea6384bb6ca9f8b/playlist.m3u8
|
||||
104,https://w9n76.cdnedge.live/file/avple-images/hls/62aeccaec556631aff1378ed/playlist.m3u8
|
||||
105,https://w9n76.cdnedge.live/file/avple-images/hls/62b1b4d2eec8264ea0826f29/playlist.m3u8
|
||||
106,https://w9n76.cdnedge.live/file/avple-images/hls/62b2de3eeec8264ea0826f32/playlist.m3u8
|
||||
107,https://w9n76.cdnedge.live/file/avple-images/hls/62b4337fea01b50f6781dc5d/playlist.m3u8
|
||||
108,https://w9n76.cdnedge.live/file/avple-images/hls/62b433b8ea01b50f6781dc5e/playlist.m3u8
|
||||
109,https://w9n76.cdnedge.live/file/avple-images/hls/62bbf51aea3d425e0a93b7ab/playlist.m3u8
|
||||
110,https://w9n76.cdnedge.live/file/avple-images/hls/62bd84f5d0fa6a48496bbf59/playlist.m3u8
|
||||
111,https://w9n76.cdnedge.live/file/avple-images/hls/6173094d16713849c8fc4704/playlist.m3u8
|
||||
112,https://w9n76.cdnedge.live/file/avple-images/hls/61771cbdad20e84f6e46a0a9/playlist.m3u8
|
||||
113,https://w9n76.cdnedge.live/file/avple-images/hls/617c5165f0db60036839e94e/playlist.m3u8
|
||||
114,https://w9n76.cdnedge.live/file/avple-images/hls/618334d586d3713512d4ddad/playlist.m3u8
|
||||
115,https://w9n76.cdnedge.live/file/avple-images/hls/61846189fddb3b0ce1f32682/playlist.m3u8
|
||||
116,https://w9n76.cdnedge.live/file/avple-images/hls/61892c7d35829357ea3d3e9b/playlist.m3u8
|
||||
117,https://w9n76.cdnedge.live/file/avple-images/hls/618b9a4952fe307992e91592/playlist.m3u8
|
||||
118,https://w9n76.cdnedge.live/file/avple-images/hls/618e686af061a16282b2ee97/playlist.m3u8
|
||||
119,https://w9n76.cdnedge.live/file/avple-images/hls/618e69d1f061a16282b2ee9b/playlist.m3u8
|
||||
120,https://w9n76.cdnedge.live/file/avple-images/hls/6195090d416cf262e9444a2a/playlist.m3u8
|
||||
121,https://w9n76.cdnedge.live/file/avple-images/hls/61fd8ef3c68d7d11e015cd8a/playlist.m3u8
|
||||
122,https://w9n76.cdnedge.live/file/avple-images/hls/626bd24920859323fc450d6c/playlist.m3u8
|
||||
123,https://w9n76.cdnedge.live/file/avple-images/hls/62957788180f8c65c7d908af/playlist.m3u8
|
||||
124,https://w9n76.cdnedge.live/file/avple-images/hls/6171a855f8003d17dfd1a736/playlist.m3u8
|
||||
|
||||
🔞麻豆映画11,#genre#
|
||||
0,https://zo392.cdnedge.live/file/avple-images/hls/61892cf535829357ea3d3e9c/playlist.m3u8
|
||||
1,https://zo392.cdnedge.live/file/avple-images/hls/618d1a6d608a75437203bdff/playlist.m3u8
|
||||
2,https://zo392.cdnedge.live/file/avple-images/hls/618d1e30608a75437203be02/playlist.m3u8
|
||||
3,https://zo392.cdnedge.live/file/avple-images/hls/6190ba513e002b78fa02b872/playlist.m3u8
|
||||
4,https://zo392.cdnedge.live/file/avple-images/hls/61924dad89e9d231c0a0b0e6/playlist.m3u8
|
||||
5,https://zo392.cdnedge.live/file/avple-images/hls/6193bcf11ab2cd467ae5359d/playlist.m3u8
|
||||
6,https://zo392.cdnedge.live/file/avple-images/hls/6197abd1f1d93a199d1cf176/playlist.m3u8
|
||||
7,https://zo392.cdnedge.live/file/avple-images/hls/619c01d1f0d6ad68f95a08a8/playlist.m3u8
|
||||
8,https://zo392.cdnedge.live/file/avple-images/hls/61a287bec4f43c7ba5009c25/playlist.m3u8
|
||||
9,https://zo392.cdnedge.live/file/avple-images/hls/61accd33779a324ef83699a3/playlist.m3u8
|
||||
10,https://zo392.cdnedge.live/file/avple-images/hls/61accd37779a324ef83699a7/playlist.m3u8
|
||||
11,https://zo392.cdnedge.live/file/avple-images/hls/61accd3b779a324ef83699ae/playlist.m3u8
|
||||
12,https://zo392.cdnedge.live/file/avple-images/hls/61b46e3ef91a1b0eecb6e530/playlist.m3u8
|
||||
13,https://zo392.cdnedge.live/file/avple-images/hls/61bad2a5d56b7626e975d4eb/playlist.m3u8
|
||||
14,https://zo392.cdnedge.live/file/avple-images/hls/61c0290dad3e743fbb4f96ed/playlist.m3u8
|
||||
15,https://zo392.cdnedge.live/file/avple-images/hls/61c029c1ad3e743fbb4f96ef/playlist.m3u8
|
||||
16,https://zo392.cdnedge.live/file/avple-images/hls/61c18a7d8ac9db578c18b7f3/playlist.m3u8
|
||||
17,https://zo392.cdnedge.live/file/avple-images/hls/61c6a599668fd93b4250a31b/playlist.m3u8
|
||||
18,https://zo392.cdnedge.live/file/avple-images/hls/61c6abed668fd93b4250a327/playlist.m3u8
|
||||
19,https://zo392.cdnedge.live/file/avple-images/hls/61c84a892beaee4e833a9d6e/playlist.m3u8
|
||||
20,https://zo392.cdnedge.live/file/avple-images/hls/61d0befd8ec5397ce0e2cddd/playlist.m3u8
|
||||
21,https://zo392.cdnedge.live/file/avple-images/hls/61d62681f2772f49dcde1d52/playlist.m3u8
|
||||
22,https://zo392.cdnedge.live/file/avple-images/hls/61d627e9f2772f49dcde1d56/playlist.m3u8
|
||||
23,https://zo392.cdnedge.live/file/avple-images/hls/61de125126bc6674a0936d1e/playlist.m3u8
|
||||
24,https://zo392.cdnedge.live/file/avple-images/hls/61de146d26bc6674a0936d21/playlist.m3u8
|
||||
25,https://zo392.cdnedge.live/file/avple-images/hls/61e118b2b12f2d3579c3423b/playlist.m3u8
|
||||
26,https://zo392.cdnedge.live/file/avple-images/hls/61e11965b12f2d3579c3423d/playlist.m3u8
|
||||
27,https://zo392.cdnedge.live/file/avple-images/hls/61e249259e31551b4fa3beab/playlist.m3u8
|
||||
28,https://zo392.cdnedge.live/file/avple-images/hls/61e24a8d9e31551b4fa3beae/playlist.m3u8
|
||||
29,https://zo392.cdnedge.live/file/avple-images/hls/61ecbee27580a3314beba2aa/playlist.m3u8
|
||||
30,https://zo392.cdnedge.live/file/avple-images/hls/61f391ea23581479b901ae13/playlist.m3u8
|
||||
31,https://zo392.cdnedge.live/file/avple-images/hls/61f9a7569053272327957ad7/playlist.m3u8
|
||||
32,https://zo392.cdnedge.live/file/avple-images/hls/61fb88be11eff304d6e13795/playlist.m3u8
|
||||
33,https://zo392.cdnedge.live/file/avple-images/hls/61fb8b1711eff304d6e1379c/playlist.m3u8
|
||||
34,https://zo392.cdnedge.live/file/avple-images/hls/61fd8e7ac68d7d11e015cd89/playlist.m3u8
|
||||
35,https://zo392.cdnedge.live/file/avple-images/hls/6205a34fd69d37216eb636dc/playlist.m3u8
|
||||
36,https://zo392.cdnedge.live/file/avple-images/hls/620c6576d0ea7c7d841b2f3a/playlist.m3u8
|
||||
37,https://zo392.cdnedge.live/file/avple-images/hls/6211ae3ab0d135228b7be61a/playlist.m3u8
|
||||
38,https://zo392.cdnedge.live/file/avple-images/hls/6215ac26cef8321ac4bf999f/playlist.m3u8
|
||||
39,https://zo392.cdnedge.live/file/avple-images/hls/6219eba7b9e8e9119a2f1fed/playlist.m3u8
|
||||
40,https://zo392.cdnedge.live/file/avple-images/hls/621e189a833cfd3eefe736a3/playlist.m3u8
|
||||
41,https://zo392.cdnedge.live/file/avple-images/hls/621e1c620b43873ee3783bf4/playlist.m3u8
|
||||
42,https://zo392.cdnedge.live/file/avple-images/hls/62230eb61fdb77263ccb3866/playlist.m3u8
|
||||
43,https://zo392.cdnedge.live/file/avple-images/hls/62230f6b1fdb77263ccb3868/playlist.m3u8
|
||||
44,https://zo392.cdnedge.live/file/avple-images/hls/62246d56c6370a74fa39c70c/playlist.m3u8
|
||||
45,https://zo392.cdnedge.live/file/avple-images/hls/62246e0ac6370a74fa39c70e/playlist.m3u8
|
||||
46,https://zo392.cdnedge.live/file/avple-images/hls/6224709ec6370a74fa39c715/playlist.m3u8
|
||||
47,https://zo392.cdnedge.live/file/avple-images/hls/62323c6a8cc9324f49436135/playlist.m3u8
|
||||
48,https://zo392.cdnedge.live/file/avple-images/hls/6233c882aefa78093f9ffdd0/playlist.m3u8
|
||||
49,https://zo392.cdnedge.live/file/avple-images/hls/623e746276b51e756d5edbfb/playlist.m3u8
|
||||
50,https://zo392.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c26/playlist.m3u8
|
||||
51,https://zo392.cdnedge.live/file/avple-images/hls/6242c7d80de0ad7cfd08f0bb/playlist.m3u8
|
||||
52,https://zo392.cdnedge.live/file/avple-images/hls/62458ff075952a3335b0c45b/playlist.m3u8
|
||||
53,https://zo392.cdnedge.live/file/avple-images/hls/6246e3c7abd4e014b3b11182/playlist.m3u8
|
||||
54,https://zo392.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb8/playlist.m3u8
|
||||
55,https://zo392.cdnedge.live/file/avple-images/hls/62503589f06f665330ec2bde/playlist.m3u8
|
||||
56,https://zo392.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957b/playlist.m3u8
|
||||
57,https://zo392.cdnedge.live/file/avple-images/hls/6252c0bf6b426e5b63529741/playlist.m3u8
|
||||
58,https://zo392.cdnedge.live/file/avple-images/hls/6252c0c06b426e5b63529746/playlist.m3u8
|
||||
59,https://zo392.cdnedge.live/file/avple-images/hls/62549ca33d5bac30b2603dc7/playlist.m3u8
|
||||
60,https://zo392.cdnedge.live/file/avple-images/hls/6256b0aebd35195668774556/playlist.m3u8
|
||||
61,https://zo392.cdnedge.live/file/avple-images/hls/626bd19420859323fc450d6b/playlist.m3u8
|
||||
62,https://zo392.cdnedge.live/file/avple-images/hls/626bd77020859323fc450d72/playlist.m3u8
|
||||
63,https://zo392.cdnedge.live/file/avple-images/hls/626f6f5a83c16c1b72ef8406/playlist.m3u8
|
||||
64,https://zo392.cdnedge.live/file/avple-images/hls/626fb3183ddea14c11aa4aaa/playlist.m3u8
|
||||
65,https://zo392.cdnedge.live/file/avple-images/hls/62722a464deadc023a8a0991/playlist.m3u8
|
||||
66,https://zo392.cdnedge.live/file/avple-images/hls/62722b334deadc023a8a0993/playlist.m3u8
|
||||
67,https://zo392.cdnedge.live/file/avple-images/hls/6274cead84b95e04c28dde2a/playlist.m3u8
|
||||
68,https://zo392.cdnedge.live/file/avple-images/hls/6274d05184b95e04c28dde2c/playlist.m3u8
|
||||
69,https://zo392.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1f/playlist.m3u8
|
||||
70,https://zo392.cdnedge.live/file/avple-images/hls/627a5ac11a1d9a347dd98540/playlist.m3u8
|
||||
71,https://zo392.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5b/playlist.m3u8
|
||||
72,https://zo392.cdnedge.live/file/avple-images/hls/627e6499c60346652e396c7d/playlist.m3u8
|
||||
73,https://zo392.cdnedge.live/file/avple-images/hls/627e6603c60346652e396c7e/playlist.m3u8
|
||||
74,https://zo392.cdnedge.live/file/avple-images/hls/6280b154fc27be165aeb81d2/playlist.m3u8
|
||||
75,https://zo392.cdnedge.live/file/avple-images/hls/6280b245fc27be165aeb81d4/playlist.m3u8
|
||||
76,https://zo392.cdnedge.live/file/avple-images/hls/6280d3c6ef039d550798916d/playlist.m3u8
|
||||
77,https://zo392.cdnedge.live/file/avple-images/hls/6284c1baef2c1c6dbc484243/playlist.m3u8
|
||||
78,https://zo392.cdnedge.live/file/avple-images/hls/6284e210c71b08247ee18e2e/playlist.m3u8
|
||||
79,https://zo392.cdnedge.live/file/avple-images/hls/6284e593c71b08247ee18e34/playlist.m3u8
|
||||
80,https://zo392.cdnedge.live/file/avple-images/hls/6284e5d0c71b08247ee18e35/playlist.m3u8
|
||||
81,https://zo392.cdnedge.live/file/avple-images/hls/6284e648c71b08247ee18e36/playlist.m3u8
|
||||
82,https://zo392.cdnedge.live/file/avple-images/hls/6284e827c71b08247ee18e39/playlist.m3u8
|
||||
83,https://zo392.cdnedge.live/file/avple-images/hls/62863d69ebf92063abd2f8b0/playlist.m3u8
|
||||
84,https://zo392.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac69050/playlist.m3u8
|
||||
85,https://zo392.cdnedge.live/file/avple-images/hls/628aaf87a1c1cd0b44683ef3/playlist.m3u8
|
||||
86,https://zo392.cdnedge.live/file/avple-images/hls/628ab384a1c1cd0b44683ef7/playlist.m3u8
|
||||
87,https://zo392.cdnedge.live/file/avple-images/hls/628cc4f6de01360ccb2f8e9a/playlist.m3u8
|
||||
88,https://zo392.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
89,https://zo392.cdnedge.live/file/avple-images/hls/62921765777f8769be5fdfa0/playlist.m3u8
|
||||
90,https://zo392.cdnedge.live/file/avple-images/hls/629246bc777f8769be5fdfa4/playlist.m3u8
|
||||
91,https://zo392.cdnedge.live/file/avple-images/hls/6298681b23d5972db0bfc99c/playlist.m3u8
|
||||
92,https://zo392.cdnedge.live/file/avple-images/hls/62a1cb2956220431fa6b0d83/playlist.m3u8
|
||||
93,https://zo392.cdnedge.live/file/avple-images/hls/62a1cbdf56220431fa6b0d84/playlist.m3u8
|
||||
94,https://zo392.cdnedge.live/file/avple-images/hls/62a5aa8d94b044303b9622d9/playlist.m3u8
|
||||
95,https://zo392.cdnedge.live/file/avple-images/hls/62a5aefe94b044303b9622de/playlist.m3u8
|
||||
96,https://zo392.cdnedge.live/file/avple-images/hls/62a5b37294b044303b9622e2/playlist.m3u8
|
||||
97,https://zo392.cdnedge.live/file/avple-images/hls/62aad51f21a7da2e6584bc8d/playlist.m3u8
|
||||
98,https://zo392.cdnedge.live/file/avple-images/hls/62aed19cc556631aff1378f3/playlist.m3u8
|
||||
99,https://zo392.cdnedge.live/file/avple-images/hls/62bb1bd1ea3d425e0a93b795/playlist.m3u8
|
||||
100,https://zo392.cdnedge.live/file/avple-images/hls/62bb2046ea3d425e0a93b796/playlist.m3u8
|
||||
101,https://zo392.cdnedge.live/file/avple-images/hls/62bbee50ea3d425e0a93b79f/playlist.m3u8
|
||||
102,https://zo392.cdnedge.live/file/avple-images/hls/62bbeec8ea3d425e0a93b7a0/playlist.m3u8
|
||||
103,https://zo392.cdnedge.live/file/avple-images/hls/62bbef7cea3d425e0a93b7a2/playlist.m3u8
|
||||
104,https://zo392.cdnedge.live/file/avple-images/hls/62bbf33aea3d425e0a93b7a7/playlist.m3u8
|
||||
105,https://zo392.cdnedge.live/file/avple-images/hls/62bbf556ea3d425e0a93b7ac/playlist.m3u8
|
||||
106,https://zo392.cdnedge.live/file/avple-images/hls/62bd88f0d0fa6a48496bbf60/playlist.m3u8
|
||||
107,https://zo392.cdnedge.live/file/avple-images/hls/62c44398366b240e3b67be36/playlist.m3u8
|
||||
108,https://zo392.cdnedge.live/file/avple-images/hls/61f703a2d7d05308d12ef120/playlist.m3u8
|
||||
109,https://zo392.cdnedge.live/file/avple-images/hls/6256b2c8bd3519566877455b/playlist.m3u8
|
||||
110,https://zo392.cdnedge.live/file/avple-images/hls/62924a7c777f8769be5fdfaa/playlist.m3u8
|
||||
111,https://zo392.cdnedge.live/file/avple-images/hls/60ba6f55ecb87a1b5b8fa848/playlist.m3u8
|
||||
112,https://zo392.cdnedge.live/file/avple-images/hls/61584c9d4617d9667f1fa688/playlist.m3u8
|
||||
113,https://zo392.cdnedge.live/file/avple-images/hls/61730be116713849c8fc4708/playlist.m3u8
|
||||
114,https://zo392.cdnedge.live/file/avple-images/hls/61772041ad20e84f6e46a0b1/playlist.m3u8
|
||||
115,https://zo392.cdnedge.live/file/avple-images/hls/617e2625eb87aa24a1c4102a/playlist.m3u8
|
||||
116,https://zo392.cdnedge.live/file/avple-images/hls/617e2805eb87aa24a1c4102e/playlist.m3u8
|
||||
117,https://zo392.cdnedge.live/file/avple-images/hls/617e2e88928f5924a8a3069d/playlist.m3u8
|
||||
118,https://zo392.cdnedge.live/file/avple-images/hls/6183363d86d3713512d4ddb0/playlist.m3u8
|
||||
119,https://zo392.cdnedge.live/file/avple-images/hls/618462f1fddb3b0ce1f32685/playlist.m3u8
|
||||
120,https://zo392.cdnedge.live/file/avple-images/hls/61869cb58928100853d28992/playlist.m3u8
|
||||
|
||||
|
||||
🔞欧美频道1,#genre#
|
||||
Girl & Girl 1,http://87.98.184.123/vidshd/56ea912c4df934c216c352fa8d623af3/3599.mp4
|
||||
Girl & Girl 2,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/1191.mp4
|
||||
Girl & Girl 3,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/5858.mp4
|
||||
Girl & Girl 4,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/15301.mp4
|
||||
Girl & Girl 5,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/597.mp4
|
||||
Girl & Girl 6,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/9443.mp4
|
||||
Girl & Girl 7,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/11738.mp4
|
||||
Girl & Girl 8,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/7991.mp4
|
||||
Girl & Girl 9,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/17353.mp4
|
||||
Girl & Girl 10,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/15803.mp4
|
||||
Girl & Girl 11,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/4147.mp4
|
||||
Girl & Girl 12,http://87.98.184.134/vidshd/56ea912c4df934c216c352fa8d623af3/14958.mp4
|
||||
Girl & Girl 13,http://87.98.184.123/vidshd/56ea912c4df934c216c352fa8d623af3/5028.mp4
|
||||
Girl & Girl 14,http://87.98.184.83/vidshd/56ea912c4df934c216c352fa8d623af3/7244.mp4
|
||||
Girl & Girl 15,http://87.98.136.118/vidshd/56ea912c4df934c216c352fa8d623af3/10334.mp4
|
||||
Girl & Girl 16,http://87.98.136.118/vidshd/56ea912c4df934c216c352fa8d623af3/1110.mp4
|
||||
Girl & Girl 17,http://87.98.136.118/vidshd/56ea912c4df934c216c352fa8d623af3/6892.mp4
|
||||
Girl & Girl 18,http://188.165.53.164/vidshd/56ea912c4df934c216c352fa8d623af3/18160.mp4
|
||||
Girl & Girl 19,http://87.98.136.118/vidshd/56ea912c4df934c216c352fa8d623af3/23621.mp4
|
||||
Girl & Girl 20,http://188.165.53.164/vidshd/56ea912c4df934c216c352fa8d623af3/460.mp4
|
||||
Girl & Girl 21,http://87.98.184.83/vidshd/56ea912c4df934c216c352fa8d623af3/1516.mp4
|
||||
Girl & Girl 22,http://188.165.53.164/vidshd/56ea912c4df934c216c352fa8d623af3/4507.mp4
|
||||
Girl & Girl 23,http://87.98.184.83/vidshd/56ea912c4df934c216c352fa8d623af3/963.mp4
|
||||
Girl & Girl 24,http://87.98.184.83/vidshd/56ea912c4df934c216c352fa8d623af3/12646.mp4
|
||||
Girl & Girl 24,http://87.98.184.83/vidshd/56ea912c4df934c216c352fa8d623af3/12646.mp4
|
||||
Girl & Girl 25,http://188.165.53.164/vidshd/56ea912c4df934c216c352fa8d623af3/3108.mp4
|
||||
Girl & Girl 26,http://87.98.136.118/vidshd/56ea912c4df934c216c352fa8d623af3/16443.mp4
|
||||
Girl & Girl 27,http://188.165.53.164/vidshd/56ea912c4df934c216c352fa8d623af3/14002.mp4
|
||||
Girl & Girl 28,http://87.98.184.83/vidshd/56ea912c4df934c216c352fa8d623af3/1285.mp4
|
||||
Girl & Girl 29,http://87.98.184.83/vidshd/56ea912c4df934c216c352fa8d623af3/4972.mp4
|
||||
Girl & Girl 30,http://87.98.136.118/vidshd/56ea912c4df934c216c352fa8d623af3/20606.mp4
|
||||
MyCamTV XXX Vod 1,https://vod.mycamtv.net/1.m3u8
|
||||
MyCamTV XXX Vod 2,https://vod.mycamtv.net/2.m3u8
|
||||
MyCamTV XXX Vod 3,https://vod.mycamtv.net/3.m3u8
|
||||
MyCamTV XXX Vod 4,https://vod.mycamtv.net/4.m3u8
|
||||
MyCamTV XXX Vod 5,https://vod.mycamtv.net/5.m3u8
|
||||
MyCamTV XXX Vod 6,https://vod.mycamtv.net/6.m3u8
|
||||
MyCamTV XXX Vod 7,https://vod.mycamtv.net/7.m3u8
|
||||
MyCamTV XXX Vod 8,https://vod.mycamtv.net/8.m3u8
|
||||
MyCamTV XXX Vod 9,https://vod.mycamtv.net/9.m3u8
|
||||
MyCamTV XXX Vod 10,https://vod.mycamtv.net/10.m3u8
|
||||
MyCamTV XXX Vod 11,https://vod.mycamtv.net/11.m3u8
|
||||
MyCamTV XXX Vod 12,https://vod.mycamtv.net/12.m3u8
|
||||
MyCamTV XXX Vod 13,https://vod.mycamtv.net/13.m3u8
|
||||
MyCamTV XXX Vod 14,https://vod.mycamtv.net/14.m3u8
|
||||
MyCamTV XXX Vod 15,https://vod.mycamtv.net/15.m3u8
|
||||
MyCamTV XXX Vod 16,https://vod.mycamtv.net/16.m3u8
|
||||
MyCamTV XXX Vod 17,https://vod.mycamtv.net/17.m3u8
|
||||
MyCamTV XXX Vod 18,https://vod.mycamtv.net/18.m3u8
|
||||
MyCamTV XXX Vod 19,https://vod.mycamtv.net/19.m3u8
|
||||
MyCamTV XXX Vod 20,https://vod.mycamtv.net/20.m3u8
|
||||
MyCamTV XXX Vod 21,https://vod.mycamtv.net/21.m3u8
|
||||
MyCamTV XXX Vod 22,https://vod.mycamtv.net/22.m3u8
|
||||
MyCamTV XXX Vod 23,https://vod.mycamtv.net/23.m3u8
|
||||
MyCamTV XXX Vod 24,https://vod.mycamtv.net/24.m3u8
|
||||
MyCamTV XXX Vod 25,https://vod.mycamtv.net/25.m3u8
|
||||
MyCamTV XXX Vod 26,https://vod.mycamtv.net/26.m3u8
|
||||
MyCamTV XXX Vod 27,https://vod.mycamtv.net/27.m3u8
|
||||
MyCamTV XXX Vod 28,https://vod.mycamtv.net/28.m3u8
|
||||
MyCamTV XXX Vod 29,https://vod.mycamtv.net/29.m3u8
|
||||
MyCamTV XXX Vod 30,https://vod.mycamtv.net/30.m3u8
|
||||
MyCamTV XXX Vod 31,https://vod.mycamtv.net/31.m3u8
|
||||
MyCamTV XXX Vod 32,https://vod.mycamtv.net/32.m3u8
|
||||
MyCamTV XXX Vod 33,https://vod.mycamtv.net/33.m3u8
|
||||
MyCamTV XXX Vod 34,https://vod.mycamtv.net/34.m3u8
|
||||
MyCamTV XXX Vod 35,https://vod.mycamtv.net/35.m3u8
|
||||
MyCamTV XXX Vod 36,https://vod.mycamtv.net/36.m3u8
|
||||
MyCamTV XXX Vod 37,https://vod.mycamtv.net/37.m3u8
|
||||
MyCamTV XXX Vod 38,https://vod.mycamtv.net/38.m3u8
|
||||
MyCamTV XXX Vod 39,https://vod.mycamtv.net/39.m3u8
|
||||
MyCamTV XXX Vod 40,https://vod.mycamtv.net/40.m3u8
|
||||
MyCamTV XXX Vod 41,https://vod.mycamtv.net/41.m3u8
|
||||
MyCamTV XXX Vod 42,https://vod.mycamtv.net/42.m3u8
|
||||
MyCamTV XXX Vod 43,https://vod.mycamtv.net/43.m3u8
|
||||
MyCamTV XXX Vod 44,https://vod.mycamtv.net/44.m3u8
|
||||
MyCamTV XXX Vod 45,https://vod.mycamtv.net/45.m3u8
|
||||
MyCamTV XXX Vod 46,https://vod.mycamtv.net/46.m3u8
|
||||
MyCamTV XXX Vod 47,https://vod.mycamtv.net/47.m3u8
|
||||
MyCamTV XXX Vod 48,https://vod.mycamtv.net/48.m3u8
|
||||
MyCamTV XXX Vod 49,https://vod.mycamtv.net/49.m3u8
|
||||
MyCamTV XXX Vod 50,https://vod.mycamtv.net/50.m3u8
|
||||
MyCamTV XXX Vod 51,https://vod.mycamtv.net/51.m3u8
|
||||
MyCamTV XXX Vod 52,https://vod.mycamtv.net/52.m3u8
|
||||
MyCamTV XXX Vod 53,https://vod.mycamtv.net/53.m3u8
|
||||
MyCamTV XXX Vod 54,https://vod.mycamtv.net/54.m3u8
|
||||
MyCamTV XXX Vod 55,https://vod.mycamtv.net/55.m3u8
|
||||
MyCamTV XXX Vod 56,https://vod.mycamtv.net/56.m3u8
|
||||
MyCamTV XXX Vod 57,https://vod.mycamtv.net/57.m3u8
|
||||
MyCamTV XXX Vod 58,https://vod.mycamtv.net/58.m3u8
|
||||
MyCamTV XXX Vod 59,https://vod.mycamtv.net/59.m3u8
|
||||
MyCamTV XXX Vod 60,https://vod.mycamtv.net/60.m3u8
|
||||
MyCamTV XXX Vod 61,https://vod.mycamtv.net/61.m3u8
|
||||
MyCamTV XXX Vod 62,https://vod.mycamtv.net/62.m3u8
|
||||
MyCamTV XXX Vod 63,https://vod.mycamtv.net/63.m3u8
|
||||
MyCamTV XXX Vod 64,https://vod.mycamtv.net/64.m3u8
|
||||
MyCamTV XXX Vod 65,https://vod.mycamtv.net/65.m3u8
|
||||
MyCamTV XXX Vod 66,https://vod.mycamtv.net/66.m3u8
|
||||
MyCamTV XXX Vod 67,https://vod.mycamtv.net/67.m3u8
|
||||
MyCamTV XXX Vod 68,https://vod.mycamtv.net/68.m3u8
|
||||
MyCamTV XXX Vod 69,https://vod.mycamtv.net/69.m3u8
|
||||
MyCamTV XXX Vod 70,https://vod.mycamtv.net/70.m3u8
|
||||
MyCamTV XXX Vod 71,https://vod.mycamtv.net/71.m3u8
|
||||
MyCamTV XXX Vod 72,https://vod.mycamtv.net/72.m3u8
|
||||
MyCamTV XXX Vod 73,https://vod.mycamtv.net/73.m3u8
|
||||
MyCamTV XXX Vod 74,https://vod.mycamtv.net/74.m3u8
|
||||
MyCamTV XXX Vod 75,https://vod.mycamtv.net/75.m3u8
|
||||
MyCamTV XXX Vod 76,https://vod.mycamtv.net/76.m3u8
|
||||
MyCamTV XXX Vod 77,https://vod.mycamtv.net/77.m3u8
|
||||
MyCamTV XXX Vod 78,https://vod.mycamtv.net/78.m3u8
|
||||
MyCamTV XXX Vod 79,https://vod.mycamtv.net/79.m3u8
|
||||
MyCamTV XXX Vod 80,https://vod.mycamtv.net/80.m3u8
|
||||
MyCamTV XXX Vod 81,https://vod.mycamtv.net/81.m3u8
|
||||
MyCamTV XXX Vod 82,https://vod.mycamtv.net/82.m3u8
|
||||
MyCamTV XXX Vod 83,https://vod.mycamtv.net/83.m3u8
|
||||
MyCamTV XXX Vod 84,https://vod.mycamtv.net/84.m3u8
|
||||
MyCamTV XXX Vod 85,https://vod.mycamtv.net/85.m3u8
|
||||
MyCamTV XXX Vod 86,https://vod.mycamtv.net/86.m3u8
|
||||
MyCamTV XXX Vod 87,https://vod.mycamtv.net/87.m3u8
|
||||
MyCamTV XXX Vod 88,https://vod.mycamtv.net/88.m3u8
|
||||
MyCamTV XXX Vod 89,https://vod.mycamtv.net/89.m3u8
|
||||
MyCamTV XXX Vod 90,https://vod.mycamtv.net/90.m3u8
|
||||
MyCamTV XXX Vod 92,https://vod.mycamtv.net/92.m3u8
|
||||
MyCamTV XXX Vod 93,https://vod.mycamtv.net/93.m3u8
|
||||
MyCamTV XXX Vod 94,https://vod.mycamtv.net/94.m3u8
|
||||
MyCamTV XXX Vod 95,https://vod.mycamtv.net/95.m3u8
|
||||
MyCamTV XXX Vod 96,https://vod.mycamtv.net/96.m3u8
|
||||
MyCamTV XXX Vod 100,https://vod.mycamtv.net/100.m3u8
|
||||
MyCamTV XXX Vod 101,https://vod.mycamtv.net/101.m3u8
|
||||
MyCamTV XXX Vod 102,https://vod.mycamtv.net/102.m3u8
|
||||
MyCamTV XXX Vod 103,https://vod.mycamtv.net/103.m3u8
|
||||
MyCamTV XXX Vod 104,https://vod.mycamtv.net/104.m3u8
|
||||
MyCamTV XXX Vod 105,https://vod.mycamtv.net/105.m3u8
|
||||
MyCamTV XXX Vod 106,https://vod.mycamtv.net/106.m3u8
|
||||
MyCamTV XXX Vod 107,https://vod.mycamtv.net/107.m3u8
|
||||
MyCamTV XXX Vod 108,https://vod.mycamtv.net/108.m3u8
|
||||
MyCamTV XXX Vod 109,https://vod.mycamtv.net/109.m3u8
|
||||
MyCamTV XXX Vod 110,https://vod.mycamtv.net/110.m3u8
|
||||
MyCamTV XXX Vod 111,https://vod.mycamtv.net/111.m3u8
|
||||
MyCamTV XXX Vod 112,https://vod.mycamtv.net/112.m3u8
|
||||
MyCamTV XXX Vod 113,https://vod.mycamtv.net/113.m3u8
|
||||
MyCamTV XXX Vod 114,https://vod.mycamtv.net/114.m3u8
|
||||
MyCamTV XXX Vod 115,https://vod.mycamtv.net/115.m3u8
|
||||
MyCamTV XXX Vod 116,https://vod.mycamtv.net/116.m3u8
|
||||
MyCamTV XXX Vod 117,https://vod.mycamtv.net/117.m3u8
|
||||
MyCamTV XXX Vod 118,https://vod.mycamtv.net/118.m3u8
|
||||
MyCamTV XXX Vod 119,https://vod.mycamtv.net/119.m3u8
|
||||
MyCamTV XXX Vod 120,https://vod.mycamtv.net/120.m3u8
|
||||
MyCamTV XXX Vod 121,https://vod.mycamtv.net/121.m3u8
|
||||
MyCamTV XXX Vod 122,https://vod.mycamtv.net/122.m3u8
|
||||
MyCamTV XXX Vod 123,https://vod.mycamtv.net/123.m3u8
|
||||
MyCamTV XXX Vod 124,https://vod.mycamtv.net/124.m3u8
|
||||
MyCamTV XXX Vod 125,https://vod.mycamtv.net/125.m3u8
|
||||
MyCamTV XXX Vod 126,https://vod.mycamtv.net/126.m3u8
|
||||
MyCamTV XXX Vod 127,https://vod.mycamtv.net/127.m3u8
|
||||
MyCamTV XXX Vod 128,https://vod.mycamtv.net/128.m3u8
|
||||
MyCamTV XXX Vod 129,https://vod.mycamtv.net/129.m3u8
|
||||
MyCamTV XXX Vod 130,https://vod.mycamtv.net/130.m3u8
|
||||
MyCamTV XXX Vod 131,https://vod.mycamtv.net/131.m3u8
|
||||
MyCamTV XXX Vod 132,https://vod.mycamtv.net/132.m3u8
|
||||
MyCamTV XXX Vod 133,https://vod.mycamtv.net/133.m3u8
|
||||
MyCamTV XXX Vod 134,https://vod.mycamtv.net/134.m3u8
|
||||
MyCamTV XXX Vod 135,https://vod.mycamtv.net/135.m3u8
|
||||
MyCamTV XXX Vod 136,https://vod.mycamtv.net/136.m3u8
|
||||
MyCamTV XXX Vod 137,https://vod.mycamtv.net/137.m3u8
|
||||
MyCamTV XXX Vod 138,https://vod.mycamtv.net/138.m3u8
|
||||
MyCamTV XXX Vod 139,https://vod.mycamtv.net/139.m3u8
|
||||
MyCamTV XXX Vod 140,https://vod.mycamtv.net/140.m3u8
|
||||
MyCamTV XXX Vod 141,https://vod.mycamtv.net/141.m3u8
|
||||
MyCamTV XXX Vod 142,https://vod.mycamtv.net/142.m3u8
|
||||
MyCamTV XXX Vod 143,https://vod.mycamtv.net/143.m3u8
|
||||
MyCamTV XXX Vod 144,https://vod.mycamtv.net/144.m3u8
|
||||
MyCamTV XXX Vod 145,https://vod.mycamtv.net/145.m3u8
|
||||
MyCamTV XXX Vod 146,https://vod.mycamtv.net/146.m3u8
|
||||
MyCamTV XXX Vod 147,https://vod.mycamtv.net/147.m3u8
|
||||
MyCamTV XXX Vod 148,https://vod.mycamtv.net/148.m3u8
|
||||
MyCamTV XXX Vod 149,https://vod.mycamtv.net/149.m3u8
|
||||
MyCamTV XXX Vod 150,https://vod.mycamtv.net/150.m3u8
|
||||
MyCamTV XXX Vod 151,https://vod.mycamtv.net/151.m3u8
|
||||
MyCamTV XXX Vod 152,https://vod.mycamtv.net/152.m3u8
|
||||
MyCamTV XXX Vod 153,https://vod.mycamtv.net/153.m3u8
|
||||
MyCamTV XXX Vod 154,https://vod.mycamtv.net/154.m3u8
|
||||
MyCamTV XXX Vod 155,https://vod.mycamtv.net/155.m3u8
|
||||
MyCamTV XXX Vod 156,https://vod.mycamtv.net/156.m3u8
|
||||
MyCamTV XXX Vod 157,https://vod.mycamtv.net/157.m3u8
|
||||
MyCamTV XXX Vod 158,https://vod.mycamtv.net/158.m3u8
|
||||
MyCamTV XXX Vod 159,https://vod.mycamtv.net/159.m3u8
|
||||
MyCamTV XXX Vod 160,https://vod.mycamtv.net/160.m3u8
|
||||
MyCamTV XXX Vod 161,https://vod.mycamtv.net/161.m3u8
|
||||
MyCamTV XXX Vod 162,https://vod.mycamtv.net/162.m3u8
|
||||
MyCamTV XXX Vod 163,https://vod.mycamtv.net/163.m3u8
|
||||
MyCamTV XXX Vod 164,https://vod.mycamtv.net/164.m3u8
|
||||
MyCamTV XXX Vod 165,https://vod.mycamtv.net/165.m3u8
|
||||
MyCamTV XXX Vod 166,https://vod.mycamtv.net/166.m3u8
|
||||
MyCamTV XXX Vod 167,https://vod.mycamtv.net/167.m3u8
|
||||
MyCamTV XXX Vod 168,https://vod.mycamtv.net/168.m3u8
|
||||
MyCamTV XXX Vod 169,https://vod.mycamtv.net/169.m3u8
|
||||
MyCamTV XXX Vod 170,https://vod.mycamtv.net/170.m3u8
|
||||
MyCamTV XXX Vod 171,https://vod.mycamtv.net/171.m3u8
|
||||
MyCamTV XXX Vod 172,https://vod.mycamtv.net/172.m3u8
|
||||
MyCamTV XXX Vod 173,https://vod.mycamtv.net/173.m3u8
|
||||
MyCamTV XXX Vod 174,https://vod.mycamtv.net/174.m3u8
|
||||
MyCamTV XXX Vod 175,https://vod.mycamtv.net/175.m3u8
|
||||
MyCamTV XXX Vod 176,https://vod.mycamtv.net/176.m3u8
|
||||
MyCamTV XXX Vod 177,https://vod.mycamtv.net/177.m3u8
|
||||
MyCamTV XXX Vod 178,https://vod.mycamtv.net/178.m3u8
|
||||
MyCamTV XXX Vod 179,https://vod.mycamtv.net/179.m3u8
|
||||
MyCamTV XXX Vod 180,https://vod.mycamtv.net/180.m3u8
|
||||
MyCamTV XXX Vod 181,https://vod.mycamtv.net/181.m3u8
|
||||
MyCamTV XXX Vod 182,https://vod.mycamtv.net/182.m3u8
|
||||
MyCamTV XXX Vod 183,https://vod.mycamtv.net/183.m3u8
|
||||
MyCamTV XXX Vod 184,https://vod.mycamtv.net/184.m3u8
|
||||
MyCamTV XXX Vod 185,https://vod.mycamtv.net/185.m3u8
|
||||
MyCamTV XXX Vod 186,https://vod.mycamtv.net/186.m3u8
|
||||
MyCamTV XXX Vod 187,https://vod.mycamtv.net/187.m3u8
|
||||
MyCamTV XXX Vod 188,https://vod.mycamtv.net/188.m3u8
|
||||
MyCamTV XXX Vod 189,https://vod.mycamtv.net/189.m3u8
|
||||
MyCamTV XXX Vod 190,https://vod.mycamtv.net/190.m3u8
|
||||
MyCamTV XXX Vod 192,https://vod.mycamtv.net/192.m3u8
|
||||
MyCamTV XXX Vod 193,https://vod.mycamtv.net/193.m3u8
|
||||
MyCamTV XXX Vod 194,https://vod.mycamtv.net/194.m3u8
|
||||
MyCamTV XXX Vod 195,https://vod.mycamtv.net/195.m3u8
|
||||
MyCamTV XXX Vod 196,https://vod.mycamtv.net/196.m3u8
|
||||
MyCamTV XXX Vod 197,https://vod.mycamtv.net/197.m3u8
|
||||
MyCamTV XXX Vod 198,https://vod.mycamtv.net/198.m3u8
|
||||
MyCamTV XXX Vod 199,https://vod.mycamtv.net/199.m3u8
|
||||
MyCamTV XXX Vod 200,https://vod.mycamtv.net/200.m3u8
|
||||
MyCamTV XXX Vod 201,https://vod.mycamtv.net/201.m3u8
|
||||
MyCamTV XXX Vod 202,https://vod.mycamtv.net/202.m3u8
|
||||
MyCamTV XXX Vod 203,https://vod.mycamtv.net/203.m3u8
|
||||
MyCamTV XXX Vod 204,https://vod.mycamtv.net/204.m3u8
|
||||
MyCamTV XXX Vod 205,https://vod.mycamtv.net/205.m3u8
|
||||
MyCamTV XXX Vod 206,https://vod.mycamtv.net/206.m3u8
|
||||
MyCamTV XXX Vod 207,https://vod.mycamtv.net/207.m3u8
|
||||
MyCamTV XXX Vod 208,https://vod.mycamtv.net/208.m3u8
|
||||
MyCamTV XXX Vod 209,https://vod.mycamtv.net/209.m3u8
|
||||
MyCamTV XXX Vod 210,https://vod.mycamtv.net/210.m3u8
|
||||
MyCamTV XXX Vod 211,https://vod.mycamtv.net/211.m3u8
|
||||
MyCamTV XXX Vod 212,https://vod.mycamtv.net/212.m3u8
|
||||
MyCamTV XXX Vod 213,https://vod.mycamtv.net/213.m3u8
|
||||
MyCamTV XXX Vod 214,https://vod.mycamtv.net/214.m3u8
|
||||
MyCamTV XXX Vod 215,https://vod.mycamtv.net/215.m3u8
|
||||
MyCamTV XXX Vod 216,https://vod.mycamtv.net/216.m3u8
|
||||
MyCamTV XXX Vod 217,https://vod.mycamtv.net/217.m3u8
|
||||
MyCamTV XXX Vod 218,https://vod.mycamtv.net/218.m3u8
|
||||
MyCamTV XXX Vod 219,https://vod.mycamtv.net/219.m3u8
|
||||
MyCamTV XXX Vod 220,https://vod.mycamtv.net/220.m3u8
|
||||
MyCamTV XXX Vod 221,https://vod.mycamtv.net/221.m3u8
|
||||
MyCamTV XXX Vod 222,https://vod.mycamtv.net/222.m3u8
|
||||
MyCamTV XXX Vod 223,https://vod.mycamtv.net/223.m3u8
|
||||
MyCamTV XXX Vod 224,https://vod.mycamtv.net/224.m3u8
|
||||
MyCamTV XXX Vod 225,https://vod.mycamtv.net/225.m3u8
|
||||
MyCamTV XXX Vod 226,https://vod.mycamtv.net/226.m3u8
|
||||
MyCamTV XXX Vod 227,https://vod.mycamtv.net/227.m3u8
|
||||
MyCamTV XXX Vod 228,https://vod.mycamtv.net/228.m3u8
|
||||
MyCamTV XXX Vod 229,https://vod.mycamtv.net/229.m3u8
|
||||
MyCamTV XXX Vod 230,https://vod.mycamtv.net/230.m3u8
|
||||
MyCamTV XXX Vod 231,https://vod.mycamtv.net/231.m3u8
|
||||
MyCamTV XXX Vod 232,https://vod.mycamtv.net/232.m3u8
|
||||
MyCamTV XXX Vod 233,https://vod.mycamtv.net/233.m3u8
|
||||
MyCamTV XXX Vod 234,https://vod.mycamtv.net/234.m3u8
|
||||
MyCamTV XXX Vod 235,https://vod.mycamtv.net/235.m3u8
|
||||
MyCamTV XXX Vod 236,https://vod.mycamtv.net/236.m3u8
|
||||
MyCamTV XXX Vod 237,https://vod.mycamtv.net/237.m3u8
|
||||
MyCamTV XXX Vod 238,https://vod.mycamtv.net/238.m3u8
|
||||
MyCamTV XXX Vod 239,https://vod.mycamtv.net/239.m3u8
|
||||
MyCamTV XXX Vod 240,https://vod.mycamtv.net/240.m3u8
|
||||
MyCamTV XXX Vod 241,https://vod.mycamtv.net/241.m3u8
|
||||
MyCamTV XXX Vod 242,https://vod.mycamtv.net/242.m3u8
|
||||
MyCamTV XXX Vod 243,https://vod.mycamtv.net/243.m3u8
|
||||
MyCamTV XXX Vod 244,https://vod.mycamtv.net/244.m3u8
|
||||
MyCamTV XXX Vod 245,https://vod.mycamtv.net/245.m3u8
|
||||
MyCamTV XXX Vod 246,https://vod.mycamtv.net/246.m3u8
|
||||
MyCamTV XXX Vod 247,https://vod.mycamtv.net/247.m3u8
|
||||
MyCamTV XXX Vod 248,https://vod.mycamtv.net/248.m3u8
|
||||
MyCamTV XXX Vod 249,https://vod.mycamtv.net/249.m3u8
|
||||
MyCamTV XXX Vod 250,https://vod.mycamtv.net/250.m3u8
|
||||
MyCamTV XXX Vod 251,https://vod.mycamtv.net/251.m3u8
|
||||
MyCamTV XXX Vod 252,https://vod.mycamtv.net/252.m3u8
|
||||
MyCamTV XXX Vod 253,https://vod.mycamtv.net/253.m3u8
|
||||
MyCamTV XXX Vod 254,https://vod.mycamtv.net/254.m3u8
|
||||
MyCamTV XXX Vod 255,https://vod.mycamtv.net/255.m3u8
|
||||
MyCamTV XXX Vod 256,https://vod.mycamtv.net/256.m3u8
|
||||
MyCamTV XXX Vod 257,https://vod.mycamtv.net/257.m3u8
|
||||
MyCamTV XXX Vod 258,https://vod.mycamtv.net/258.m3u8
|
||||
MyCamTV XXX Vod 259,https://vod.mycamtv.net/259.m3u8
|
||||
MyCamTV XXX Vod 260,https://vod.mycamtv.net/260.m3u8
|
||||
MyCamTV XXX Vod 261,https://vod.mycamtv.net/261.m3u8
|
||||
MyCamTV XXX Vod 262,https://vod.mycamtv.net/262.m3u8
|
||||
MyCamTV XXX Vod 263,https://vod.mycamtv.net/263.m3u8
|
||||
MyCamTV XXX Vod 264,https://vod.mycamtv.net/264.m3u8
|
||||
MyCamTV XXX Vod 265,https://vod.mycamtv.net/265.m3u8
|
||||
MyCamTV XXX Vod 266,https://vod.mycamtv.net/266.m3u8
|
||||
MyCamTV XXX Vod 267,https://vod.mycamtv.net/267.m3u8
|
||||
MyCamTV XXX Vod 268,https://vod.mycamtv.net/268.m3u8
|
||||
MyCamTV XXX Vod 269,https://vod.mycamtv.net/269.m3u8
|
||||
MyCamTV XXX Vod 270,https://vod.mycamtv.net/270.m3u8
|
||||
MyCamTV XXX Vod 271,https://vod.mycamtv.net/271.m3u8
|
||||
MyCamTV XXX Vod 272,https://vod.mycamtv.net/272.m3u8
|
||||
MyCamTV XXX Vod 273,https://vod.mycamtv.net/273.m3u8
|
||||
MyCamTV XXX Vod 274,https://vod.mycamtv.net/274.m3u8
|
||||
MyCamTV XXX Vod 275,https://vod.mycamtv.net/275.m3u8
|
||||
MyCamTV XXX Vod 276,https://vod.mycamtv.net/276.m3u8
|
||||
MyCamTV XXX Vod 277,https://vod.mycamtv.net/277.m3u8
|
||||
MyCamTV XXX Vod 278,https://vod.mycamtv.net/278.m3u8
|
||||
MyCamTV XXX Vod 279,https://vod.mycamtv.net/279.m3u8
|
||||
MyCamTV XXX Vod 280,https://vod.mycamtv.net/280.m3u8
|
||||
MyCamTV XXX Vod 281,https://vod.mycamtv.net/281.m3u8
|
||||
MyCamTV XXX Vod 282,https://vod.mycamtv.net/282.m3u8
|
||||
MyCamTV XXX Vod 283,https://vod.mycamtv.net/283.m3u8
|
||||
MyCamTV XXX Vod 284,https://vod.mycamtv.net/284.m3u8
|
||||
MyCamTV XXX Vod 285,https://vod.mycamtv.net/285.m3u8
|
||||
MyCamTV XXX Vod 286,https://vod.mycamtv.net/286.m3u8
|
||||
MyCamTV XXX Vod 287,https://vod.mycamtv.net/287.m3u8
|
||||
MyCamTV XXX Vod 288,https://vod.mycamtv.net/288.m3u8
|
||||
MyCamTV XXX Vod 289,https://vod.mycamtv.net/289.m3u8
|
||||
MyCamTV XXX Vod 290,https://vod.mycamtv.net/290.m3u8
|
||||
MyCamTV XXX Vod 292,https://vod.mycamtv.net/292.m3u8
|
||||
MyCamTV XXX Vod 293,https://vod.mycamtv.net/293.m3u8
|
||||
MyCamTV XXX Vod 294,https://vod.mycamtv.net/294.m3u8
|
||||
MyCamTV XXX Vod 295,https://vod.mycamtv.net/295.m3u8
|
||||
MyCamTV XXX Vod 296,https://vod.mycamtv.net/296.m3u8
|
||||
MyCamTV XXX Vod 297,https://vod.mycamtv.net/297.m3u8
|
||||
MyCamTV XXX Vod 298,https://vod.mycamtv.net/298.m3u8
|
||||
MyCamTV XXX Vod 299,https://vod.mycamtv.net/299.m3u8
|
||||
MyCamTV XXX Vod 300,https://vod.mycamtv.net/300.m3u8
|
||||
MyCamTV XXX Vod 301,https://vod.mycamtv.net/301.m3u8
|
||||
MyCamTV XXX Vod 302,https://vod.mycamtv.net/302.m3u8
|
||||
MyCamTV XXX Vod 303,https://vod.mycamtv.net/303.m3u8
|
||||
MyCamTV XXX Vod 304,https://vod.mycamtv.net/304.m3u8
|
||||
MyCamTV XXX Vod 305,https://vod.mycamtv.net/305.m3u8
|
||||
MyCamTV XXX Vod 306,https://vod.mycamtv.net/306.m3u8
|
||||
MyCamTV XXX Vod 307,https://vod.mycamtv.net/307.m3u8
|
||||
MyCamTV XXX Vod 308,https://vod.mycamtv.net/308.m3u8
|
||||
MyCamTV XXX Vod 309,https://vod.mycamtv.net/309.m3u8
|
||||
MyCamTV XXX Vod 310,https://vod.mycamtv.net/310.m3u8
|
||||
MyCamTV XXX Vod 311,https://vod.mycamtv.net/311.m3u8
|
||||
MyCamTV XXX Vod 312,https://vod.mycamtv.net/312.m3u8
|
||||
MyCamTV XXX Vod 313,https://vod.mycamtv.net/313.m3u8
|
||||
MyCamTV XXX Vod 314,https://vod.mycamtv.net/314.m3u8
|
||||
MyCamTV XXX Vod 315,https://vod.mycamtv.net/315.m3u8
|
||||
MyCamTV XXX Vod 316,https://vod.mycamtv.net/316.m3u8
|
||||
MyCamTV XXX Vod 317,https://vod.mycamtv.net/317.m3u8
|
||||
MyCamTV XXX Vod 318,https://vod.mycamtv.net/318.m3u8
|
||||
MyCamTV XXX Vod 319,https://vod.mycamtv.net/319.m3u8
|
||||
MyCamTV XXX Vod 320,https://vod.mycamtv.net/320.m3u8
|
||||
MyCamTV XXX Vod 321,https://vod.mycamtv.net/321.m3u8
|
||||
MyCamTV XXX Vod 322,https://vod.mycamtv.net/322.m3u8
|
||||
MyCamTV XXX Vod 323,https://vod.mycamtv.net/323.m3u8
|
||||
MyCamTV XXX Vod 324,https://vod.mycamtv.net/324.m3u8
|
||||
MyCamTV XXX Vod 325,https://vod.mycamtv.net/325.m3u8
|
||||
MyCamTV XXX Vod 326,https://vod.mycamtv.net/326.m3u8
|
||||
MyCamTV XXX Vod 327,https://vod.mycamtv.net/327.m3u8
|
||||
MyCamTV XXX Vod 328,https://vod.mycamtv.net/328.m3u8
|
||||
MyCamTV XXX Vod 329,https://vod.mycamtv.net/329.m3u8
|
||||
MyCamTV XXX Vod 330,https://vod.mycamtv.net/330.m3u8
|
||||
MyCamTV XXX Vod 331,https://vod.mycamtv.net/331.m3u8
|
||||
MyCamTV XXX Vod 332,https://vod.mycamtv.net/332.m3u8
|
||||
MyCamTV XXX Vod 333,https://vod.mycamtv.net/333.m3u8
|
||||
MyCamTV XXX Vod 334,https://vod.mycamtv.net/334.m3u8
|
||||
MyCamTV XXX Vod 335,https://vod.mycamtv.net/335.m3u8
|
||||
MyCamTV XXX Vod 336,https://vod.mycamtv.net/336.m3u8
|
||||
MyCamTV XXX Vod 337,https://vod.mycamtv.net/337.m3u8
|
||||
MyCamTV XXX Vod 338,https://vod.mycamtv.net/338.m3u8
|
||||
MyCamTV XXX Vod 339,https://vod.mycamtv.net/339.m3u8
|
||||
MyCamTV XXX Vod 340,https://vod.mycamtv.net/340.m3u8
|
||||
MyCamTV XXX Vod 341,https://vod.mycamtv.net/341.m3u8
|
||||
MyCamTV XXX Vod 342,https://vod.mycamtv.net/342.m3u8
|
||||
MyCamTV XXX Vod 343,https://vod.mycamtv.net/343.m3u8
|
||||
MyCamTV XXX Vod 344,https://vod.mycamtv.net/344.m3u8
|
||||
MyCamTV XXX Vod 345,https://vod.mycamtv.net/345.m3u8
|
||||
MyCamTV XXX Vod 346,https://vod.mycamtv.net/346.m3u8
|
||||
MyCamTV XXX Vod 347,https://vod.mycamtv.net/347.m3u8
|
||||
MyCamTV XXX Vod 348,https://vod.mycamtv.net/348.m3u8
|
||||
MyCamTV XXX Vod 349,https://vod.mycamtv.net/349.m3u8
|
||||
MyCamTV XXX Vod 350,https://vod.mycamtv.net/350.m3u8
|
||||
MyCamTV XXX Vod 351,https://vod.mycamtv.net/351.m3u8
|
||||
MyCamTV XXX Vod 352,https://vod.mycamtv.net/352.m3u8
|
||||
MyCamTV XXX Vod 353,https://vod.mycamtv.net/353.m3u8
|
||||
MyCamTV XXX Vod 354,https://vod.mycamtv.net/354.m3u8
|
||||
MyCamTV XXX Vod 355,https://vod.mycamtv.net/355.m3u8
|
||||
MyCamTV XXX Vod 356,https://vod.mycamtv.net/356.m3u8
|
||||
MyCamTV XXX Vod 357,https://vod.mycamtv.net/357.m3u8
|
||||
MyCamTV XXX Vod 358,https://vod.mycamtv.net/358.m3u8
|
||||
MyCamTV XXX Vod 359,https://vod.mycamtv.net/359.m3u8
|
||||
MyCamTV XXX Vod 360,https://vod.mycamtv.net/360.m3u8
|
||||
MyCamTV XXX Vod 361,https://vod.mycamtv.net/361.m3u8
|
||||
MyCamTV XXX Vod 362,https://vod.mycamtv.net/362.m3u8
|
||||
MyCamTV XXX Vod 363,https://vod.mycamtv.net/363.m3u8
|
||||
MyCamTV XXX Vod 364,https://vod.mycamtv.net/364.m3u8
|
||||
MyCamTV XXX Vod 365,https://vod.mycamtv.net/365.m3u8
|
||||
MyCamTV XXX Vod 366,https://vod.mycamtv.net/366.m3u8
|
||||
MyCamTV XXX Vod 367,https://vod.mycamtv.net/367.m3u8
|
||||
MyCamTV XXX Vod 368,https://vod.mycamtv.net/368.m3u8
|
||||
MyCamTV XXX Vod 369,https://vod.mycamtv.net/369.m3u8
|
||||
MyCamTV XXX Vod 370,https://vod.mycamtv.net/370.m3u8
|
||||
MyCamTV XXX Vod 371,https://vod.mycamtv.net/371.m3u8
|
||||
MyCamTV XXX Vod 372,https://vod.mycamtv.net/372.m3u8
|
||||
MyCamTV XXX Vod 373,https://vod.mycamtv.net/373.m3u8
|
||||
MyCamTV XXX Vod 374,https://vod.mycamtv.net/374.m3u8
|
||||
MyCamTV XXX Vod 375,https://vod.mycamtv.net/375.m3u8
|
||||
MyCamTV XXX Vod 376,https://vod.mycamtv.net/376.m3u8
|
||||
MyCamTV XXX Vod 377,https://vod.mycamtv.net/377.m3u8
|
||||
MyCamTV XXX Vod 378,https://vod.mycamtv.net/378.m3u8
|
||||
MyCamTV XXX Vod 379,https://vod.mycamtv.net/379.m3u8
|
||||
MyCamTV XXX Vod 380,https://vod.mycamtv.net/380.m3u8
|
||||
MyCamTV XXX Vod 381,https://vod.mycamtv.net/381.m3u8
|
||||
MyCamTV XXX Vod 382,https://vod.mycamtv.net/382.m3u8
|
||||
MyCamTV XXX Vod 383,https://vod.mycamtv.net/383.m3u8
|
||||
MyCamTV XXX Vod 384,https://vod.mycamtv.net/384.m3u8
|
||||
MyCamTV XXX Vod 385,https://vod.mycamtv.net/385.m3u8
|
||||
MyCamTV XXX Vod 386,https://vod.mycamtv.net/386.m3u8
|
||||
MyCamTV XXX Vod 387,https://vod.mycamtv.net/387.m3u8
|
||||
MyCamTV XXX Vod 388,https://vod.mycamtv.net/388.m3u8
|
||||
MyCamTV XXX Vod 389,https://vod.mycamtv.net/389.m3u8
|
||||
MyCamTV XXX Vod 390,https://vod.mycamtv.net/390.m3u8
|
||||
MyCamTV XXX Vod 392,https://vod.mycamtv.net/392.m3u8
|
||||
MyCamTV XXX Vod 393,https://vod.mycamtv.net/393.m3u8
|
||||
MyCamTV XXX Vod 394,https://vod.mycamtv.net/394.m3u8
|
||||
MyCamTV XXX Vod 395,https://vod.mycamtv.net/395.m3u8
|
||||
MyCamTV XXX Vod 396,https://vod.mycamtv.net/396.m3u8
|
||||
MyCamTV XXX Vod 397,https://vod.mycamtv.net/397.m3u8
|
||||
MyCamTV XXX Vod 398,https://vod.mycamtv.net/398.m3u8
|
||||
MyCamTV XXX Vod 399,https://vod.mycamtv.net/399.m3u8
|
||||
MyCamTV XXX Vod 400,https://vod.mycamtv.net/400.m3u8
|
||||
MyCamTV XXX Vod 401,https://vod.mycamtv.net/401.m3u8
|
||||
MyCamTV XXX Vod 402,https://vod.mycamtv.net/402.m3u8
|
||||
MyCamTV XXX Vod 403,https://vod.mycamtv.net/403.m3u8
|
||||
MyCamTV XXX Vod 404,https://vod.mycamtv.net/404.m3u8
|
||||
MyCamTV XXX Vod 405,https://vod.mycamtv.net/405.m3u8
|
||||
MyCamTV XXX Vod 406,https://vod.mycamtv.net/406.m3u8
|
||||
MyCamTV XXX Vod 407,https://vod.mycamtv.net/407.m3u8
|
||||
MyCamTV XXX Vod 408,https://vod.mycamtv.net/408.m3u8
|
||||
MyCamTV XXX Vod 409,https://vod.mycamtv.net/409.m3u8
|
||||
MyCamTV XXX Vod 410,https://vod.mycamtv.net/410.m3u8
|
||||
MyCamTV XXX Vod 411,https://vod.mycamtv.net/411.m3u8
|
||||
MyCamTV XXX Vod 412,https://vod.mycamtv.net/412.m3u8
|
||||
MyCamTV XXX Vod 413,https://vod.mycamtv.net/413.m3u8
|
||||
MyCamTV XXX Vod 414,https://vod.mycamtv.net/414.m3u8
|
||||
MyCamTV XXX Vod 415,https://vod.mycamtv.net/415.m3u8
|
||||
MyCamTV XXX Vod 416,https://vod.mycamtv.net/416.m3u8
|
||||
MyCamTV XXX Vod 417,https://vod.mycamtv.net/417.m3u8
|
||||
MyCamTV XXX Vod 418,https://vod.mycamtv.net/418.m3u8
|
||||
MyCamTV XXX Vod 419,https://vod.mycamtv.net/419.m3u8
|
||||
MyCamTV XXX Vod 420,https://vod.mycamtv.net/420.m3u8
|
||||
MyCamTV XXX Vod 421,https://vod.mycamtv.net/421.m3u8
|
||||
MyCamTV XXX Vod 422,https://vod.mycamtv.net/422.m3u8
|
||||
MyCamTV XXX Vod 423,https://vod.mycamtv.net/423.m3u8
|
||||
MyCamTV XXX Vod 424,https://vod.mycamtv.net/424.m3u8
|
||||
MyCamTV XXX Vod 425,https://vod.mycamtv.net/425.m3u8
|
||||
MyCamTV XXX Vod 426,https://vod.mycamtv.net/426.m3u8
|
||||
MyCamTV XXX Vod 427,https://vod.mycamtv.net/427.m3u8
|
||||
MyCamTV XXX Vod 428,https://vod.mycamtv.net/428.m3u8
|
||||
MyCamTV XXX Vod 429,https://vod.mycamtv.net/429.m3u8
|
||||
MyCamTV XXX Vod 430,https://vod.mycamtv.net/430.m3u8
|
||||
MyCamTV XXX Vod 431,https://vod.mycamtv.net/431.m3u8
|
||||
MyCamTV XXX Vod 432,https://vod.mycamtv.net/432.m3u8
|
||||
MyCamTV XXX Vod 433,https://vod.mycamtv.net/433.m3u8
|
||||
MyCamTV XXX Vod 434,https://vod.mycamtv.net/434.m3u8
|
||||
MyCamTV XXX Vod 435,https://vod.mycamtv.net/435.m3u8
|
||||
MyCamTV XXX Vod 436,https://vod.mycamtv.net/436.m3u8
|
||||
MyCamTV XXX Vod 437,https://vod.mycamtv.net/437.m3u8
|
||||
MyCamTV XXX Vod 438,https://vod.mycamtv.net/438.m3u8
|
||||
MyCamTV XXX Vod 439,https://vod.mycamtv.net/439.m3u8
|
||||
MyCamTV XXX Vod 440,https://vod.mycamtv.net/440.m3u8
|
||||
MyCamTV XXX Vod 441,https://vod.mycamtv.net/441.m3u8
|
||||
MyCamTV XXX Vod 442,https://vod.mycamtv.net/442.m3u8
|
||||
MyCamTV XXX Vod 443,https://vod.mycamtv.net/443.m3u8
|
||||
MyCamTV XXX Vod 444,https://vod.mycamtv.net/444.m3u8
|
||||
MyCamTV XXX Vod 445,https://vod.mycamtv.net/445.m3u8
|
||||
MyCamTV XXX Vod 446,https://vod.mycamtv.net/446.m3u8
|
||||
MyCamTV XXX Vod 447,https://vod.mycamtv.net/447.m3u8
|
||||
MyCamTV XXX Vod 448,https://vod.mycamtv.net/448.m3u8
|
||||
MyCamTV XXX Vod 449,https://vod.mycamtv.net/449.m3u8
|
||||
MyCamTV XXX Vod 450,https://vod.mycamtv.net/450.m3u8
|
||||
MyCamTV XXX Vod 451,https://vod.mycamtv.net/451.m3u8
|
||||
MyCamTV XXX Vod 452,https://vod.mycamtv.net/452.m3u8
|
||||
MyCamTV XXX Vod 453,https://vod.mycamtv.net/453.m3u8
|
||||
MyCamTV XXX Vod 454,https://vod.mycamtv.net/454.m3u8
|
||||
MyCamTV XXX Vod 455,https://vod.mycamtv.net/455.m3u8
|
||||
MyCamTV XXX Vod 456,https://vod.mycamtv.net/456.m3u8
|
||||
MyCamTV XXX Vod 457,https://vod.mycamtv.net/457.m3u8
|
||||
MyCamTV XXX Vod 458,https://vod.mycamtv.net/458.m3u8
|
||||
MyCamTV XXX Vod 459,https://vod.mycamtv.net/459.m3u8
|
||||
MyCamTV XXX Vod 460,https://vod.mycamtv.net/460.m3u8
|
||||
MyCamTV XXX Vod 461,https://vod.mycamtv.net/461.m3u8
|
||||
MyCamTV XXX Vod 462,https://vod.mycamtv.net/462.m3u8
|
||||
MyCamTV XXX Vod 463,https://vod.mycamtv.net/463.m3u8
|
||||
MyCamTV XXX Vod 464,https://vod.mycamtv.net/464.m3u8
|
||||
MyCamTV XXX Vod 465,https://vod.mycamtv.net/465.m3u8
|
||||
MyCamTV XXX Vod 466,https://vod.mycamtv.net/466.m3u8
|
||||
MyCamTV XXX Vod 467,https://vod.mycamtv.net/467.m3u8
|
||||
MyCamTV XXX Vod 468,https://vod.mycamtv.net/468.m3u8
|
||||
MyCamTV XXX Vod 469,https://vod.mycamtv.net/469.m3u8
|
||||
MyCamTV XXX Vod 470,https://vod.mycamtv.net/470.m3u8
|
||||
MyCamTV XXX Vod 471,https://vod.mycamtv.net/471.m3u8
|
||||
MyCamTV XXX Vod 472,https://vod.mycamtv.net/472.m3u8
|
||||
MyCamTV XXX Vod 473,https://vod.mycamtv.net/473.m3u8
|
||||
MyCamTV XXX Vod 474,https://vod.mycamtv.net/474.m3u8
|
||||
MyCamTV XXX Vod 475,https://vod.mycamtv.net/475.m3u8
|
||||
MyCamTV XXX Vod 476,https://vod.mycamtv.net/476.m3u8
|
||||
MyCamTV XXX Vod 477,https://vod.mycamtv.net/477.m3u8
|
||||
MyCamTV XXX Vod 478,https://vod.mycamtv.net/478.m3u8
|
||||
MyCamTV XXX Vod 479,https://vod.mycamtv.net/479.m3u8
|
||||
MyCamTV XXX Vod 480,https://vod.mycamtv.net/480.m3u8
|
||||
MyCamTV XXX Vod 481,https://vod.mycamtv.net/481.m3u8
|
||||
MyCamTV XXX Vod 482,https://vod.mycamtv.net/482.m3u8
|
||||
MyCamTV XXX Vod 483,https://vod.mycamtv.net/483.m3u8
|
||||
MyCamTV XXX Vod 484,https://vod.mycamtv.net/484.m3u8
|
||||
MyCamTV XXX Vod 485,https://vod.mycamtv.net/485.m3u8
|
||||
MyCamTV XXX Vod 486,https://vod.mycamtv.net/486.m3u8
|
||||
MyCamTV XXX Vod 487,https://vod.mycamtv.net/487.m3u8
|
||||
MyCamTV XXX Vod 488,https://vod.mycamtv.net/488.m3u8
|
||||
MyCamTV XXX Vod 489,https://vod.mycamtv.net/489.m3u8
|
||||
MyCamTV XXX Vod 490,https://vod.mycamtv.net/490.m3u8
|
||||
MyCamTV XXX Vod 492,https://vod.mycamtv.net/492.m3u8
|
||||
MyCamTV XXX Vod 493,https://vod.mycamtv.net/493.m3u8
|
||||
MyCamTV XXX Vod 494,https://vod.mycamtv.net/494.m3u8
|
||||
MyCamTV XXX Vod 495,https://vod.mycamtv.net/495.m3u8
|
||||
MyCamTV XXX Vod 496,https://vod.mycamtv.net/496.m3u8
|
||||
MyCamTV XXX Vod 497,https://vod.mycamtv.net/497.m3u8
|
||||
MyCamTV XXX Vod 498,https://vod.mycamtv.net/498.m3u8
|
||||
MyCamTV XXX Vod 499,https://vod.mycamtv.net/499.m3u8
|
||||
MyCamTV XXX Vod 500,https://vod.mycamtv.net/500.m3u8
|
||||
|
||||
🔞欧美频道2,#genre#
|
||||
|
||||
MyCamTV XXX Vod 501,https://vod.mycamtv.net/501.m3u8
|
||||
MyCamTV XXX Vod 502,https://vod.mycamtv.net/502.m3u8
|
||||
MyCamTV XXX Vod 503,https://vod.mycamtv.net/503.m3u8
|
||||
MyCamTV XXX Vod 504,https://vod.mycamtv.net/504.m3u8
|
||||
MyCamTV XXX Vod 505,https://vod.mycamtv.net/505.m3u8
|
||||
MyCamTV XXX Vod 506,https://vod.mycamtv.net/506.m3u8
|
||||
MyCamTV XXX Vod 507,https://vod.mycamtv.net/507.m3u8
|
||||
MyCamTV XXX Vod 508,https://vod.mycamtv.net/508.m3u8
|
||||
MyCamTV XXX Vod 509,https://vod.mycamtv.net/509.m3u8
|
||||
MyCamTV XXX Vod 510,https://vod.mycamtv.net/510.m3u8
|
||||
MyCamTV XXX Vod 511,https://vod.mycamtv.net/511.m3u8
|
||||
MyCamTV XXX Vod 512,https://vod.mycamtv.net/512.m3u8
|
||||
MyCamTV XXX Vod 513,https://vod.mycamtv.net/513.m3u8
|
||||
MyCamTV XXX Vod 514,https://vod.mycamtv.net/514.m3u8
|
||||
MyCamTV XXX Vod 515,https://vod.mycamtv.net/515.m3u8
|
||||
MyCamTV XXX Vod 516,https://vod.mycamtv.net/516.m3u8
|
||||
MyCamTV XXX Vod 517,https://vod.mycamtv.net/517.m3u8
|
||||
MyCamTV XXX Vod 518,https://vod.mycamtv.net/518.m3u8
|
||||
MyCamTV XXX Vod 519,https://vod.mycamtv.net/519.m3u8
|
||||
MyCamTV XXX Vod 520,https://vod.mycamtv.net/520.m3u8
|
||||
MyCamTV XXX Vod 521,https://vod.mycamtv.net/521.m3u8
|
||||
MyCamTV XXX Vod 522,https://vod.mycamtv.net/522.m3u8
|
||||
MyCamTV XXX Vod 523,https://vod.mycamtv.net/523.m3u8
|
||||
MyCamTV XXX Vod 524,https://vod.mycamtv.net/524.m3u8
|
||||
MyCamTV XXX Vod 525,https://vod.mycamtv.net/525.m3u8
|
||||
MyCamTV XXX Vod 526,https://vod.mycamtv.net/526.m3u8
|
||||
MyCamTV XXX Vod 527,https://vod.mycamtv.net/527.m3u8
|
||||
MyCamTV XXX Vod 528,https://vod.mycamtv.net/528.m3u8
|
||||
MyCamTV XXX Vod 529,https://vod.mycamtv.net/529.m3u8
|
||||
MyCamTV XXX Vod 530,https://vod.mycamtv.net/530.m3u8
|
||||
MyCamTV XXX Vod 531,https://vod.mycamtv.net/531.m3u8
|
||||
MyCamTV XXX Vod 532,https://vod.mycamtv.net/532.m3u8
|
||||
MyCamTV XXX Vod 533,https://vod.mycamtv.net/533.m3u8
|
||||
MyCamTV XXX Vod 534,https://vod.mycamtv.net/534.m3u8
|
||||
MyCamTV XXX Vod 535,https://vod.mycamtv.net/535.m3u8
|
||||
MyCamTV XXX Vod 536,https://vod.mycamtv.net/536.m3u8
|
||||
MyCamTV XXX Vod 537,https://vod.mycamtv.net/537.m3u8
|
||||
MyCamTV XXX Vod 538,https://vod.mycamtv.net/538.m3u8
|
||||
MyCamTV XXX Vod 539,https://vod.mycamtv.net/539.m3u8
|
||||
MyCamTV XXX Vod 540,https://vod.mycamtv.net/540.m3u8
|
||||
MyCamTV XXX Vod 541,https://vod.mycamtv.net/541.m3u8
|
||||
MyCamTV XXX Vod 542,https://vod.mycamtv.net/542.m3u8
|
||||
MyCamTV XXX Vod 543,https://vod.mycamtv.net/543.m3u8
|
||||
MyCamTV XXX Vod 544,https://vod.mycamtv.net/544.m3u8
|
||||
MyCamTV XXX Vod 545,https://vod.mycamtv.net/545.m3u8
|
||||
MyCamTV XXX Vod 546,https://vod.mycamtv.net/546.m3u8
|
||||
MyCamTV XXX Vod 547,https://vod.mycamtv.net/547.m3u8
|
||||
MyCamTV XXX Vod 548,https://vod.mycamtv.net/548.m3u8
|
||||
MyCamTV XXX Vod 549,https://vod.mycamtv.net/549.m3u8
|
||||
MyCamTV XXX Vod 550,https://vod.mycamtv.net/550.m3u8
|
||||
MyCamTV XXX Vod 551,https://vod.mycamtv.net/551.m3u8
|
||||
MyCamTV XXX Vod 552,https://vod.mycamtv.net/552.m3u8
|
||||
MyCamTV XXX Vod 553,https://vod.mycamtv.net/553.m3u8
|
||||
MyCamTV XXX Vod 554,https://vod.mycamtv.net/554.m3u8
|
||||
MyCamTV XXX Vod 555,https://vod.mycamtv.net/555.m3u8
|
||||
MyCamTV XXX Vod 556,https://vod.mycamtv.net/556.m3u8
|
||||
MyCamTV XXX Vod 557,https://vod.mycamtv.net/557.m3u8
|
||||
MyCamTV XXX Vod 558,https://vod.mycamtv.net/558.m3u8
|
||||
MyCamTV XXX Vod 559,https://vod.mycamtv.net/559.m3u8
|
||||
MyCamTV XXX Vod 560,https://vod.mycamtv.net/560.m3u8
|
||||
MyCamTV XXX Vod 561,https://vod.mycamtv.net/561.m3u8
|
||||
MyCamTV XXX Vod 562,https://vod.mycamtv.net/562.m3u8
|
||||
MyCamTV XXX Vod 563,https://vod.mycamtv.net/563.m3u8
|
||||
MyCamTV XXX Vod 564,https://vod.mycamtv.net/564.m3u8
|
||||
MyCamTV XXX Vod 565,https://vod.mycamtv.net/565.m3u8
|
||||
MyCamTV XXX Vod 566,https://vod.mycamtv.net/566.m3u8
|
||||
MyCamTV XXX Vod 567,https://vod.mycamtv.net/567.m3u8
|
||||
MyCamTV XXX Vod 568,https://vod.mycamtv.net/568.m3u8
|
||||
MyCamTV XXX Vod 569,https://vod.mycamtv.net/569.m3u8
|
||||
MyCamTV XXX Vod 570,https://vod.mycamtv.net/570.m3u8
|
||||
MyCamTV XXX Vod 571,https://vod.mycamtv.net/571.m3u8
|
||||
MyCamTV XXX Vod 572,https://vod.mycamtv.net/572.m3u8
|
||||
MyCamTV XXX Vod 573,https://vod.mycamtv.net/573.m3u8
|
||||
MyCamTV XXX Vod 574,https://vod.mycamtv.net/574.m3u8
|
||||
MyCamTV XXX Vod 575,https://vod.mycamtv.net/575.m3u8
|
||||
MyCamTV XXX Vod 576,https://vod.mycamtv.net/576.m3u8
|
||||
MyCamTV XXX Vod 577,https://vod.mycamtv.net/577.m3u8
|
||||
MyCamTV XXX Vod 578,https://vod.mycamtv.net/578.m3u8
|
||||
MyCamTV XXX Vod 579,https://vod.mycamtv.net/579.m3u8
|
||||
MyCamTV XXX Vod 580,https://vod.mycamtv.net/580.m3u8
|
||||
MyCamTV XXX Vod 581,https://vod.mycamtv.net/581.m3u8
|
||||
MyCamTV XXX Vod 582,https://vod.mycamtv.net/582.m3u8
|
||||
MyCamTV XXX Vod 583,https://vod.mycamtv.net/583.m3u8
|
||||
MyCamTV XXX Vod 584,https://vod.mycamtv.net/584.m3u8
|
||||
MyCamTV XXX Vod 585,https://vod.mycamtv.net/585.m3u8
|
||||
MyCamTV XXX Vod 586,https://vod.mycamtv.net/586.m3u8
|
||||
MyCamTV XXX Vod 587,https://vod.mycamtv.net/587.m3u8
|
||||
MyCamTV XXX Vod 588,https://vod.mycamtv.net/588.m3u8
|
||||
MyCamTV XXX Vod 589,https://vod.mycamtv.net/589.m3u8
|
||||
MyCamTV XXX Vod 590,https://vod.mycamtv.net/590.m3u8
|
||||
MyCamTV XXX Vod 591,https://vod.mycamtv.net/591.m3u8
|
||||
MyCamTV XXX Vod 592,https://vod.mycamtv.net/592.m3u8
|
||||
MyCamTV XXX Vod 593,https://vod.mycamtv.net/593.m3u8
|
||||
MyCamTV XXX Vod 594,https://vod.mycamtv.net/594.m3u8
|
||||
MyCamTV XXX Vod 595,https://vod.mycamtv.net/595.m3u8
|
||||
MyCamTV XXX Vod 596,https://vod.mycamtv.net/596.m3u8
|
||||
MyCamTV XXX Vod 597,https://vod.mycamtv.net/597.m3u8
|
||||
MyCamTV XXX Vod 598,https://vod.mycamtv.net/598.m3u8
|
||||
MyCamTV XXX Vod 599,https://vod.mycamtv.net/599.m3u8
|
||||
MyCamTV XXX Vod 600,https://vod.mycamtv.net/600.m3u8
|
||||
MyCamTV XXX Vod 601,https://vod.mycamtv.net/601.m3u8
|
||||
MyCamTV XXX Vod 602,https://vod.mycamtv.net/602.m3u8
|
||||
MyCamTV XXX Vod 603,https://vod.mycamtv.net/603.m3u8
|
||||
MyCamTV XXX Vod 604,https://vod.mycamtv.net/604.m3u8
|
||||
MyCamTV XXX Vod 605,https://vod.mycamtv.net/605.m3u8
|
||||
MyCamTV XXX Vod 606,https://vod.mycamtv.net/606.m3u8
|
||||
MyCamTV XXX Vod 607,https://vod.mycamtv.net/607.m3u8
|
||||
MyCamTV XXX Vod 608,https://vod.mycamtv.net/608.m3u8
|
||||
MyCamTV XXX Vod 609,https://vod.mycamtv.net/609.m3u8
|
||||
MyCamTV XXX Vod 610,https://vod.mycamtv.net/610.m3u8
|
||||
MyCamTV XXX Vod 611,https://vod.mycamtv.net/611.m3u8
|
||||
MyCamTV XXX Vod 612,https://vod.mycamtv.net/612.m3u8
|
||||
MyCamTV XXX Vod 613,https://vod.mycamtv.net/613.m3u8
|
||||
MyCamTV XXX Vod 614,https://vod.mycamtv.net/614.m3u8
|
||||
MyCamTV XXX Vod 615,https://vod.mycamtv.net/615.m3u8
|
||||
MyCamTV XXX Vod 616,https://vod.mycamtv.net/616.m3u8
|
||||
MyCamTV XXX Vod 617,https://vod.mycamtv.net/617.m3u8
|
||||
MyCamTV XXX Vod 618,https://vod.mycamtv.net/618.m3u8
|
||||
MyCamTV XXX Vod 619,https://vod.mycamtv.net/619.m3u8
|
||||
MyCamTV XXX Vod 620,https://vod.mycamtv.net/620.m3u8
|
||||
MyCamTV XXX Vod 621,https://vod.mycamtv.net/621.m3u8
|
||||
MyCamTV XXX Vod 622,https://vod.mycamtv.net/622.m3u8
|
||||
MyCamTV XXX Vod 623,https://vod.mycamtv.net/623.m3u8
|
||||
MyCamTV XXX Vod 624,https://vod.mycamtv.net/624.m3u8
|
||||
MyCamTV XXX Vod 625,https://vod.mycamtv.net/625.m3u8
|
||||
MyCamTV XXX Vod 626,https://vod.mycamtv.net/626.m3u8
|
||||
MyCamTV XXX Vod 627,https://vod.mycamtv.net/627.m3u8
|
||||
MyCamTV XXX Vod 628,https://vod.mycamtv.net/628.m3u8
|
||||
MyCamTV XXX Vod 629,https://vod.mycamtv.net/629.m3u8
|
||||
MyCamTV XXX Vod 630,https://vod.mycamtv.net/630.m3u8
|
||||
MyCamTV XXX Vod 631,https://vod.mycamtv.net/631.m3u8
|
||||
MyCamTV XXX Vod 632,https://vod.mycamtv.net/632.m3u8
|
||||
MyCamTV XXX Vod 633,https://vod.mycamtv.net/633.m3u8
|
||||
MyCamTV XXX Vod 634,https://vod.mycamtv.net/634.m3u8
|
||||
MyCamTV XXX Vod 635,https://vod.mycamtv.net/635.m3u8
|
||||
MyCamTV XXX Vod 636,https://vod.mycamtv.net/636.m3u8
|
||||
MyCamTV XXX Vod 637,https://vod.mycamtv.net/637.m3u8
|
||||
MyCamTV XXX Vod 638,https://vod.mycamtv.net/638.m3u8
|
||||
MyCamTV XXX Vod 639,https://vod.mycamtv.net/639.m3u8
|
||||
MyCamTV XXX Vod 640,https://vod.mycamtv.net/640.m3u8
|
||||
MyCamTV XXX Vod 641,https://vod.mycamtv.net/641.m3u8
|
||||
MyCamTV XXX Vod 642,https://vod.mycamtv.net/642.m3u8
|
||||
MyCamTV XXX Vod 643,https://vod.mycamtv.net/643.m3u8
|
||||
MyCamTV XXX Vod 644,https://vod.mycamtv.net/644.m3u8
|
||||
MyCamTV XXX Vod 645,https://vod.mycamtv.net/645.m3u8
|
||||
MyCamTV XXX Vod 646,https://vod.mycamtv.net/646.m3u8
|
||||
MyCamTV XXX Vod 647,https://vod.mycamtv.net/647.m3u8
|
||||
MyCamTV XXX Vod 648,https://vod.mycamtv.net/648.m3u8
|
||||
MyCamTV XXX Vod 649,https://vod.mycamtv.net/649.m3u8
|
||||
MyCamTV XXX Vod 650,https://vod.mycamtv.net/650.m3u8
|
||||
MyCamTV XXX Vod 651,https://vod.mycamtv.net/651.m3u8
|
||||
MyCamTV XXX Vod 652,https://vod.mycamtv.net/652.m3u8
|
||||
MyCamTV XXX Vod 653,https://vod.mycamtv.net/653.m3u8
|
||||
MyCamTV XXX Vod 654,https://vod.mycamtv.net/654.m3u8
|
||||
MyCamTV XXX Vod 655,https://vod.mycamtv.net/655.m3u8
|
||||
MyCamTV XXX Vod 656,https://vod.mycamtv.net/656.m3u8
|
||||
MyCamTV XXX Vod 657,https://vod.mycamtv.net/657.m3u8
|
||||
MyCamTV XXX Vod 658,https://vod.mycamtv.net/658.m3u8
|
||||
MyCamTV XXX Vod 659,https://vod.mycamtv.net/659.m3u8
|
||||
MyCamTV XXX Vod 660,https://vod.mycamtv.net/660.m3u8
|
||||
MyCamTV XXX Vod 661,https://vod.mycamtv.net/661.m3u8
|
||||
MyCamTV XXX Vod 662,https://vod.mycamtv.net/662.m3u8
|
||||
MyCamTV XXX Vod 663,https://vod.mycamtv.net/663.m3u8
|
||||
MyCamTV XXX Vod 664,https://vod.mycamtv.net/664.m3u8
|
||||
MyCamTV XXX Vod 665,https://vod.mycamtv.net/665.m3u8
|
||||
MyCamTV XXX Vod 666,https://vod.mycamtv.net/666.m3u8
|
||||
MyCamTV XXX Vod 667,https://vod.mycamtv.net/667.m3u8
|
||||
MyCamTV XXX Vod 668,https://vod.mycamtv.net/668.m3u8
|
||||
MyCamTV XXX Vod 669,https://vod.mycamtv.net/669.m3u8
|
||||
MyCamTV XXX Vod 670,https://vod.mycamtv.net/670.m3u8
|
||||
MyCamTV XXX Vod 671,https://vod.mycamtv.net/671.m3u8
|
||||
MyCamTV XXX Vod 672,https://vod.mycamtv.net/672.m3u8
|
||||
MyCamTV XXX Vod 673,https://vod.mycamtv.net/673.m3u8
|
||||
MyCamTV XXX Vod 674,https://vod.mycamtv.net/674.m3u8
|
||||
MyCamTV XXX Vod 675,https://vod.mycamtv.net/675.m3u8
|
||||
MyCamTV XXX Vod 676,https://vod.mycamtv.net/676.m3u8
|
||||
MyCamTV XXX Vod 677,https://vod.mycamtv.net/677.m3u8
|
||||
MyCamTV XXX Vod 678,https://vod.mycamtv.net/678.m3u8
|
||||
MyCamTV XXX Vod 679,https://vod.mycamtv.net/679.m3u8
|
||||
MyCamTV XXX Vod 680,https://vod.mycamtv.net/680.m3u8
|
||||
MyCamTV XXX Vod 681,https://vod.mycamtv.net/681.m3u8
|
||||
MyCamTV XXX Vod 682,https://vod.mycamtv.net/682.m3u8
|
||||
MyCamTV XXX Vod 683,https://vod.mycamtv.net/683.m3u8
|
||||
MyCamTV XXX Vod 684,https://vod.mycamtv.net/684.m3u8
|
||||
MyCamTV XXX Vod 685,https://vod.mycamtv.net/685.m3u8
|
||||
MyCamTV XXX Vod 686,https://vod.mycamtv.net/686.m3u8
|
||||
MyCamTV XXX Vod 687,https://vod.mycamtv.net/687.m3u8
|
||||
MyCamTV XXX Vod 688,https://vod.mycamtv.net/688.m3u8
|
||||
MyCamTV XXX Vod 689,https://vod.mycamtv.net/689.m3u8
|
||||
MyCamTV XXX Vod 690,https://vod.mycamtv.net/690.m3u8
|
||||
MyCamTV XXX Vod 691,https://vod.mycamtv.net/691.m3u8
|
||||
MyCamTV XXX Vod 692,https://vod.mycamtv.net/692.m3u8
|
||||
MyCamTV XXX Vod 693,https://vod.mycamtv.net/693.m3u8
|
||||
MyCamTV XXX Vod 694,https://vod.mycamtv.net/694.m3u8
|
||||
MyCamTV XXX Vod 695,https://vod.mycamtv.net/695.m3u8
|
||||
MyCamTV XXX Vod 696,https://vod.mycamtv.net/696.m3u8
|
||||
MyCamTV XXX Vod 697,https://vod.mycamtv.net/697.m3u8
|
||||
MyCamTV XXX Vod 698,https://vod.mycamtv.net/698.m3u8
|
||||
MyCamTV XXX Vod 699,https://vod.mycamtv.net/699.m3u8
|
||||
MyCamTV XXX Vod 700,https://vod.mycamtv.net/700.m3u8
|
||||
MyCamTV XXX Vod 701,https://vod.mycamtv.net/701.m3u8
|
||||
MyCamTV XXX Vod 702,https://vod.mycamtv.net/702.m3u8
|
||||
MyCamTV XXX Vod 703,https://vod.mycamtv.net/703.m3u8
|
||||
MyCamTV XXX Vod 704,https://vod.mycamtv.net/704.m3u8
|
||||
MyCamTV XXX Vod 705,https://vod.mycamtv.net/705.m3u8
|
||||
MyCamTV XXX Vod 706,https://vod.mycamtv.net/706.m3u8
|
||||
MyCamTV XXX Vod 707,https://vod.mycamtv.net/707.m3u8
|
||||
MyCamTV XXX Vod 708,https://vod.mycamtv.net/708.m3u8
|
||||
MyCamTV XXX Vod 709,https://vod.mycamtv.net/709.m3u8
|
||||
MyCamTV XXX Vod 710,https://vod.mycamtv.net/710.m3u8
|
||||
MyCamTV XXX Vod 711,https://vod.mycamtv.net/711.m3u8
|
||||
MyCamTV XXX Vod 712,https://vod.mycamtv.net/712.m3u8
|
||||
MyCamTV XXX Vod 713,https://vod.mycamtv.net/713.m3u8
|
||||
MyCamTV XXX Vod 714,https://vod.mycamtv.net/714.m3u8
|
||||
MyCamTV XXX Vod 715,https://vod.mycamtv.net/715.m3u8
|
||||
MyCamTV XXX Vod 716,https://vod.mycamtv.net/716.m3u8
|
||||
MyCamTV XXX Vod 717,https://vod.mycamtv.net/717.m3u8
|
||||
MyCamTV XXX Vod 718,https://vod.mycamtv.net/718.m3u8
|
||||
MyCamTV XXX Vod 719,https://vod.mycamtv.net/719.m3u8
|
||||
MyCamTV XXX Vod 720,https://vod.mycamtv.net/720.m3u8
|
||||
MyCamTV XXX Vod 721,https://vod.mycamtv.net/721.m3u8
|
||||
MyCamTV XXX Vod 722,https://vod.mycamtv.net/722.m3u8
|
||||
MyCamTV XXX Vod 723,https://vod.mycamtv.net/723.m3u8
|
||||
MyCamTV XXX Vod 724,https://vod.mycamtv.net/724.m3u8
|
||||
MyCamTV XXX Vod 725,https://vod.mycamtv.net/725.m3u8
|
||||
MyCamTV XXX Vod 726,https://vod.mycamtv.net/726.m3u8
|
||||
MyCamTV XXX Vod 727,https://vod.mycamtv.net/727.m3u8
|
||||
MyCamTV XXX Vod 728,https://vod.mycamtv.net/728.m3u8
|
||||
MyCamTV XXX Vod 729,https://vod.mycamtv.net/729.m3u8
|
||||
MyCamTV XXX Vod 730,https://vod.mycamtv.net/730.m3u8
|
||||
MyCamTV XXX Vod 731,https://vod.mycamtv.net/731.m3u8
|
||||
MyCamTV XXX Vod 732,https://vod.mycamtv.net/732.m3u8
|
||||
MyCamTV XXX Vod 733,https://vod.mycamtv.net/733.m3u8
|
||||
MyCamTV XXX Vod 734,https://vod.mycamtv.net/734.m3u8
|
||||
MyCamTV XXX Vod 735,https://vod.mycamtv.net/735.m3u8
|
||||
MyCamTV XXX Vod 736,https://vod.mycamtv.net/736.m3u8
|
||||
MyCamTV XXX Vod 737,https://vod.mycamtv.net/737.m3u8
|
||||
MyCamTV XXX Vod 738,https://vod.mycamtv.net/738.m3u8
|
||||
MyCamTV XXX Vod 739,https://vod.mycamtv.net/739.m3u8
|
||||
MyCamTV XXX Vod 740,https://vod.mycamtv.net/740.m3u8
|
||||
MyCamTV XXX Vod 741,https://vod.mycamtv.net/741.m3u8
|
||||
MyCamTV XXX Vod 742,https://vod.mycamtv.net/742.m3u8
|
||||
MyCamTV XXX Vod 743,https://vod.mycamtv.net/743.m3u8
|
||||
MyCamTV XXX Vod 744,https://vod.mycamtv.net/744.m3u8
|
||||
MyCamTV XXX Vod 745,https://vod.mycamtv.net/745.m3u8
|
||||
MyCamTV XXX Vod 746,https://vod.mycamtv.net/746.m3u8
|
||||
MyCamTV XXX Vod 747,https://vod.mycamtv.net/747.m3u8
|
||||
MyCamTV XXX Vod 748,https://vod.mycamtv.net/748.m3u8
|
||||
MyCamTV XXX Vod 749,https://vod.mycamtv.net/749.m3u8
|
||||
MyCamTV XXX Vod 750,https://vod.mycamtv.net/750.m3u8
|
||||
MyCamTV XXX Vod 751,https://vod.mycamtv.net/751.m3u8
|
||||
MyCamTV XXX Vod 752,https://vod.mycamtv.net/752.m3u8
|
||||
MyCamTV XXX Vod 753,https://vod.mycamtv.net/753.m3u8
|
||||
MyCamTV XXX Vod 754,https://vod.mycamtv.net/754.m3u8
|
||||
MyCamTV XXX Vod 755,https://vod.mycamtv.net/755.m3u8
|
||||
MyCamTV XXX Vod 756,https://vod.mycamtv.net/756.m3u8
|
||||
MyCamTV XXX Vod 757,https://vod.mycamtv.net/757.m3u8
|
||||
MyCamTV XXX Vod 758,https://vod.mycamtv.net/758.m3u8
|
||||
MyCamTV XXX Vod 759,https://vod.mycamtv.net/759.m3u8
|
||||
MyCamTV XXX Vod 760,https://vod.mycamtv.net/760.m3u8
|
||||
MyCamTV XXX Vod 761,https://vod.mycamtv.net/761.m3u8
|
||||
MyCamTV XXX Vod 762,https://vod.mycamtv.net/762.m3u8
|
||||
MyCamTV XXX Vod 763,https://vod.mycamtv.net/763.m3u8
|
||||
MyCamTV XXX Vod 764,https://vod.mycamtv.net/764.m3u8
|
||||
MyCamTV XXX Vod 765,https://vod.mycamtv.net/765.m3u8
|
||||
MyCamTV XXX Vod 766,https://vod.mycamtv.net/766.m3u8
|
||||
MyCamTV XXX Vod 767,https://vod.mycamtv.net/767.m3u8
|
||||
MyCamTV XXX Vod 768,https://vod.mycamtv.net/768.m3u8
|
||||
MyCamTV XXX Vod 769,https://vod.mycamtv.net/769.m3u8
|
||||
MyCamTV XXX Vod 770,https://vod.mycamtv.net/770.m3u8
|
||||
MyCamTV XXX Vod 771,https://vod.mycamtv.net/771.m3u8
|
||||
MyCamTV XXX Vod 772,https://vod.mycamtv.net/772.m3u8
|
||||
MyCamTV XXX Vod 773,https://vod.mycamtv.net/773.m3u8
|
||||
MyCamTV XXX Vod 774,https://vod.mycamtv.net/774.m3u8
|
||||
MyCamTV XXX Vod 775,https://vod.mycamtv.net/775.m3u8
|
||||
MyCamTV XXX Vod 776,https://vod.mycamtv.net/776.m3u8
|
||||
MyCamTV XXX Vod 777,https://vod.mycamtv.net/777.m3u8
|
||||
MyCamTV XXX Vod 778,https://vod.mycamtv.net/778.m3u8
|
||||
MyCamTV XXX Vod 779,https://vod.mycamtv.net/779.m3u8
|
||||
MyCamTV XXX Vod 780,https://vod.mycamtv.net/780.m3u8
|
||||
MyCamTV XXX Vod 781,https://vod.mycamtv.net/781.m3u8
|
||||
MyCamTV XXX Vod 782,https://vod.mycamtv.net/782.m3u8
|
||||
MyCamTV XXX Vod 783,https://vod.mycamtv.net/783.m3u8
|
||||
MyCamTV XXX Vod 784,https://vod.mycamtv.net/784.m3u8
|
||||
MyCamTV XXX Vod 785,https://vod.mycamtv.net/785.m3u8
|
||||
MyCamTV XXX Vod 786,https://vod.mycamtv.net/786.m3u8
|
||||
MyCamTV XXX Vod 787,https://vod.mycamtv.net/787.m3u8
|
||||
MyCamTV XXX Vod 788,https://vod.mycamtv.net/788.m3u8
|
||||
MyCamTV XXX Vod 789,https://vod.mycamtv.net/789.m3u8
|
||||
MyCamTV XXX Vod 790,https://vod.mycamtv.net/790.m3u8
|
||||
MyCamTV XXX Vod 791,https://vod.mycamtv.net/791.m3u8
|
||||
MyCamTV XXX Vod 792,https://vod.mycamtv.net/792.m3u8
|
||||
MyCamTV XXX Vod 793,https://vod.mycamtv.net/793.m3u8
|
||||
MyCamTV XXX Vod 794,https://vod.mycamtv.net/794.m3u8
|
||||
MyCamTV XXX Vod 795,https://vod.mycamtv.net/795.m3u8
|
||||
MyCamTV XXX Vod 796,https://vod.mycamtv.net/796.m3u8
|
||||
MyCamTV XXX Vod 797,https://vod.mycamtv.net/797.m3u8
|
||||
MyCamTV XXX Vod 798,https://vod.mycamtv.net/798.m3u8
|
||||
MyCamTV XXX Vod 799,https://vod.mycamtv.net/799.m3u8
|
||||
MyCamTV XXX Vod 800,https://vod.mycamtv.net/800.m3u8
|
||||
@@ -0,0 +1,1811 @@
|
||||
|
||||
亚洲情色1线,#genre#
|
||||
|
||||
ピンサロの面接現場に潜入!本来無いはずの???,https://vip1.slbfsl.com/20220818/C9vACssS/index.m3u8
|
||||
ピンサロの面接現場に潜入!本来無いはずの???,https://aosikazy12.com/20220929/iqUTZL9A/index.m3u8
|
||||
白杞りり ピタパン美巨尻家政婦の年末大掃除2,https://vip1.slbfsl.com/20220818/muZFQwbr/index.m3u8
|
||||
白杞りり ピタパン美巨尻家政婦の年末大掃除2,https://aosikazy12.com/20220929/7dcRQciZ/index.m3u8
|
||||
草凪純 ハメタク3?特別編集版?,https://vip1.slbfsl.com/20220818/CosC4oYf/index.m3u8
|
||||
アンダーヘアサロン File.1,https://vip1.slbfsl.com/20220818/2pf4qhUP/index.m3u8
|
||||
アンダーヘアサロン File.1,https://aosikazy12.com/20220929/4G1vjG8V/index.m3u8
|
||||
青山ゆい 着ハメキャンディ File.016,https://vip1.slbfsl.com/20220818/G8xaGLd7/index.m3u8
|
||||
しされたグチョグチョまんこ何,https://vip1.slbfsl.com/20220818/jqKkWyyd/index.m3u8
|
||||
おま○こから溢れる白い本気汁 購入特典は高画質,https://vip1.slbfsl.com/20220818/KgBwuuXd/index.m3u8
|
||||
鈴木ありさ THE 未公開,https://vip1.slbfsl.com/20220818/KWTP14NJ/index.m3u8
|
||||
鈴木ありさ THE 未公開,https://aosikazy12.com/20220929/L6edNzE1/index.m3u8
|
||||
FC2PPV-1234159,https://vip1.slbfsl.com/20220818/z1FkVV7t/index.m3u8
|
||||
めての生ハ,https://vip1.slbfsl.com/20220818/eOBgHfNC/index.m3u8
|
||||
ナイロン質感に感動w直穿きパンスト越し,https://vip1.slbfsl.com/20220818/xJpsYKK4/index.m3u8
|
||||
ドキドキ初めての生ハメ初撮り流出w,https://vip1.slbfsl.com/20220818/6v5viS8G/index.m3u8
|
||||
沢井真帆 THE 未公開,https://vip1.slbfsl.com/20220818/HLkXJd7o/index.m3u8
|
||||
沢井真帆 THE 未公開,https://aosikazy12.com/20220929/jt2OURx0/index.m3u8
|
||||
乙井なずな 僕のペットは,https://vip1.slbfsl.com/20220818/dd2WHOoX/index.m3u8
|
||||
乙井なずな 僕のペットは,https://aosikazy12.com/20221002/NpSBmjkm/index.m3u8
|
||||
神崎るな カリビアンキューティー Vol.14,https://vip1.slbfsl.com/20220818/WZxDkttg/index.m3u8
|
||||
神崎るな カリビアンキューティー Vol.14,https://aosikazy12.com/20221002/lEhhYPMp/index.m3u8
|
||||
高瀬沙耶香 熟,https://vip1.slbfsl.com/20220818/Vt8HXiZQ/index.m3u8
|
||||
Carib 072610-436 高瀬沙耶香 熟,https://aosikazy12.com/20221002/yDDTRArH/index.m3u8
|
||||
イキツルマンもなちゃんと生ハメSEX,https://vip1.slbfsl.com/20220818/Como3C0x/index.m3u8
|
||||
ムッチリGカップ 即イキツルマンもなちゃんと生ハメSEX,https://aosikazy12.com/20221002/9JX0ZUul/index.m3u8
|
||||
ぷりおま○こ汚してあげました!【ZIP付】,https://vip1.slbfsl.com/20220818/EwMuaeOp/index.m3u8
|
||||
FC2PPV-1272414 結構有名なところでやってしまったためか,https://vip1.slbfsl.com/20220818/tQPvvIKc/index.m3u8
|
||||
FC2PPV-1272414 結構有名なところでやってしまったためか,https://aosikazy12.com/20221002/fPH12wYV/index.m3u8
|
||||
FC2PPV-1273699 貸出し,https://vip1.slbfsl.com/20220818/1PfbFWpI/index.m3u8
|
||||
FC2PPV-1273699 貸出し,https://aosikazy12.com/20221002/sFXVhLWH/index.m3u8
|
||||
慢して本気汁ダク生ハメ2連発!!,https://vip1.slbfsl.com/20220818/oMYV4pWn/index.m3u8
|
||||
我慢して本気汁ダク生ハメ2連発!!,https://aosikazy12.com/20221002/F3VmmoMv/index.m3u8
|
||||
パパの言うことなら何でも聞くよ,https://vip2.slbfsl.com/20230330/cLTWN31a/index.m3u8
|
||||
みっちりセックス~グチョグチョにしてほしい,https://vip2.slbfsl.com/20230331/2cHwPFn3/index.m3u8
|
||||
はいてる下着を買い取らせて下さい!,https://vip2.slbfsl.com/20230331/bNczsrvO/index.m3u8
|
||||
パシオン?アモローサ ~愛する情熱 9~,https://vip2.slbfsl.com/20230331/E4rKi9vD/index.m3u8
|
||||
ハロウィンコスでイカせてア?ゲ?ル!,https://vip2.slbfsl.com/20230331/MxKvyGTt/index.m3u8
|
||||
パシオン?アモローサ ?愛する情熱 7?,https://vip2.slbfsl.com/20230331/ggHwX8YL/index.m3u8
|
||||
娘が面接に来たから体験撮影で即ハメ生中出し,https://vip2.slbfsl.com/20230331/od4AUxII/index.m3u8
|
||||
なにオッパイ攻められたらビクビクしちゃう,https://vip2.slbfsl.com/20230402/eBj27cKi/index.m3u8
|
||||
みことのオッパイを徹底的に責めてみました,https://vip2.slbfsl.com/20230402/YSHCoJtE/index.m3u8
|
||||
マン筋際立つぱっつぱつの競泳水着,https://vip2.slbfsl.com/20230402/5aJvcy0n/index.m3u8
|
||||
まんチラの誘惑 ~欲求不満な友達のママ~,https://vip2.slbfsl.com/20230402/IzNklLM6/index.m3u8
|
||||
まんチラの誘惑 ?寝顔がキュートな友達のママ?,https://vip2.slbfsl.com/20230402/r8L5uBWJ/index.m3u8
|
||||
ムチムチデカ尻奧様,https://vip2.slbfsl.com/20230402/nveODNqC/index.m3u8
|
||||
みっちりセックス~たくさんキスしてほしい!,https://vip2.slbfsl.com/20230402/7Iu6ZYUO/index.m3u8
|
||||
メガネ外したら更にロリカワユス!,https://vip2.slbfsl.com/20230402/KY9kzGCF/index.m3u8
|
||||
マシュマロのようなおっぱい,https://vip2.slbfsl.com/20230402/Xt7AZqdl/index.m3u8
|
||||
モデルコレクション ポップ,https://vip2.slbfsl.com/20230403/uuXu7K6p/index.m3u8
|
||||
りゅうを下品に調教!,https://vip2.slbfsl.com/20230403/DuA9FTph/index.m3u8
|
||||
モデルコレクション エレガンス,https://vip2.slbfsl.com/20230403/Wzkay0AH/index.m3u8
|
||||
もぞもぞ布団の中で,https://vip2.slbfsl.com/20230403/HtmCB1vy/index.m3u8
|
||||
モデルコレクション,https://vip2.slbfsl.com/20230403/K9biWwuH/index.m3u8
|
||||
リビアンコム スカイエンジェル 182 パート 1,https://vip2.slbfsl.com/20230403/lZjrvFLx/index.m3u8
|
||||
をオモチャ責め,https://vip2.slbfsl.com/20230404/01J7WImo/index.m3u8
|
||||
奥様は卑猥な共犯者,https://vip2.slbfsl.com/20230404/O6eHkyUR/index.m3u8
|
||||
奥さん、今はいてる下着を買い取らせて下さい,https://vip2.slbfsl.com/20230404/jbgF0EZ8/index.m3u8
|
||||
ロリ顔&ロリ体型の黒髪JD18歳が,https://vip2.slbfsl.com/20230404/EbL66Yke/index.m3u8
|
||||
本気汁垂れ流してガチイキに初老も感動中出し,https://vip2.slbfsl.com/20230405/0dpqkflL/index.m3u8
|
||||
変態セックス,https://vip2.slbfsl.com/20230406/qZGEo73G/index.m3u8
|
||||
不倫はダメだって世間は言うけど会いたかったから来ちゃった~,https://vip2.slbfsl.com/20230406/LWsowW9I/index.m3u8
|
||||
長舌?神テク!&騎乗位必見です,https://vip2.slbfsl.com/20230406/ACddnxUy/index.m3u8
|
||||
朝ゴミ出しする近所の遊び好きノーブラ奥さ,https://vip2.slbfsl.com/20230407/qOPkoxQK/index.m3u8
|
||||
朝と夜に隙間がある場合は、すぐに挿入してください?怒りの波がオリジナルスタイルのオリジナルモデルに継続的に挿入されます!,https://vip2.slbfsl.com/20230407/C66POgiT/index.m3u8
|
||||
恥じらいながらも SEXに興味深々洗ってからしよ.,https://vip2.slbfsl.com/20230407/RZUujrLx/index.m3u8
|
||||
車内はみんなに見られてる感じがして,https://vip2.slbfsl.com/20230407/Kp8gEHnm/index.m3u8
|
||||
大きな喘ぎ聲が特徴,https://vip2.slbfsl.com/20230408/2Hur94gF/index.m3u8
|
||||
初出勤の無知なデリヘル嬢に中出しまでしちゃいました ~,https://vip2.slbfsl.com/20230408/IbyZvvZu/index.m3u8
|
||||
初裏 Debut Vol.10,https://vip2.slbfsl.com/20230408/zAru6ULS/index.m3u8
|
||||
従順なスク水娘にイタズラしちゃお,https://vip2.slbfsl.com/20230408/QMfdBeAc/index.m3u8
|
||||
大興奮?びしょ濡れマンコに生ハメ中出し,https://vip2.slbfsl.com/20230409/rJXKmrjn/index.m3u8
|
||||
?誕生日はエッチな下着でお祝いしてアゲル?,https://vip2.slbfsl.com/20230409/TE7KaEXS/index.m3u8
|
||||
地雷系アニメ声のむっちり娘に目隠し手足拘束,https://vip2.slbfsl.com/20230409/gVklTNS7/index.m3u8
|
||||
當我看著他睡過頭時,真的很想做愛,https://vip2.slbfsl.com/20230409/41hncidD/index.m3u8
|
||||
旦那とのセックス不足で欲求不満炸裂,https://vip2.slbfsl.com/20230409/3beBTO3u/index.m3u8
|
||||
到東京熱,https://vip2.slbfsl.com/20230409/4A3yJtng/index.m3u8
|
||||
読者モデルのスケスケ水着調教,https://vip2.slbfsl.com/20230410/i6Zo4I8G/index.m3u8
|
||||
働きウーマン ~社長と密会アフター5,https://vip2.slbfsl.com/20230410/XqiMj5tm/index.m3u8
|
||||
放課後に、仕込んでください ?イキたい,https://vip2.slbfsl.com/20230411/mSBqhSqL/index.m3u8
|
||||
非常敏感的身體,https://vip2.slbfsl.com/20230411/5zn6VQlP/index.m3u8
|
||||
放尿大好きな変態娘,https://vip2.slbfsl.com/20230411/xc55hGfb/index.m3u8
|
||||
高身長のバドミントン部-part 2,https://vip2.slbfsl.com/20230412/Lm0rqIIO/index.m3u8
|
||||
関〇外〇大学3年生、海外留学のためパパ活,https://vip2.slbfsl.com/20230412/FzgiV8dL/index.m3u8
|
||||
何でも言うことを聞いちゃいます,https://vip2.slbfsl.com/20230413/Qs7eC5zZ/index.m3u8
|
||||
回春エステで僕の勃起が止まらない,https://vip2.slbfsl.com/20230414/QHF563G5/index.m3u8
|
||||
歡迎來到豪華香皂,https://vip2.slbfsl.com/20230414/0OaNQ0p0/index.m3u8
|
||||
極上泡姫物語 Vol.102 ~,https://vip2.slbfsl.com/20230414/jRXZrLwE/index.m3u8
|
||||
積極的なオンナ,https://vip2.slbfsl.com/20230414/V7I2GGJi/index.m3u8
|
||||
即ハメさせてもらいます!,https://vip2.slbfsl.com/20230414/aC4vPn2j/index.m3u8
|
||||
結婚生活はうまくいっているけれど、,https://vip2.slbfsl.com/20230415/RSp2pn9f/index.m3u8
|
||||
今日は俺の誕生日だからプレゼントに中出ししていい?,https://vip2.slbfsl.com/20230415/6lR5y7D0/index.m3u8
|
||||
今日のために綺麗に剃ってきました~,https://vip2.slbfsl.com/20230415/TV5VyE6L/index.m3u8
|
||||
結婚3年の真緒さんの、自他共に認めるいい,https://vip2.slbfsl.com/20230415/h95CMnNZ/index.m3u8
|
||||
今回のアマチュアハメ,https://vip2.slbfsl.com/20230415/W5LBMlYf/index.m3u8
|
||||
今日の体位をダーツで決める!,https://vip2.slbfsl.com/20230415/38qI6tGj/index.m3u8
|
||||
就活ストレスはセックスで解消!!,https://vip2.slbfsl.com/20230416/c1TaSLkv/index.m3u8
|
||||
就職活動,https://vip2.slbfsl.com/20230416/O0JpOhUs/index.m3u8
|
||||
精子は飲むものだと元カレに調教されま,https://vip2.slbfsl.com/20230416/OAIZYX2r/index.m3u8
|
||||
久しぶりのセックスで、抑えていた慾望が,https://vip2.slbfsl.com/20230416/vfnOnP1Q/index.m3u8
|
||||
可愛い笑顔とFカップが魅力,https://vip2.slbfsl.com/20230417/y0LpQcyL/index.m3u8
|
||||
可愛いアイドルフェイス再び降臨,https://vip2.slbfsl.com/20230417/Fcagl4Fn/index.m3u8
|
||||
可愛すぎるパイパンエンジェル,https://vip2.slbfsl.com/20230417/yPW2pC6I/index.m3u8
|
||||
看護師26歳-Part 3,https://vip2.slbfsl.com/20230417/ljzPgqGF/index.m3u8
|
||||
恐怖で震えながら強制連続中出し。,https://vip2.slbfsl.com/20230417/NVITp81V/index.m3u8
|
||||
可愛いママ友に魅かれて,https://vip2.slbfsl.com/20230417/IacWvSc8/index.m3u8
|
||||
流出版-いつでも挿れ放題な催眠,https://vip2.slbfsl.com/20230418/qGTTAU0e/index.m3u8
|
||||
流出版-川上奈々美無碼流出,https://vip2.slbfsl.com/20230418/uSGccKt7/index.m3u8
|
||||
令嬢と召使 ?舌をいっぱい出してワレメを舐めなさいよ?,https://vip2.slbfsl.com/20230418/wayddC9H/index.m3u8
|
||||
両穴を餌に誘惑してくる近所の奥さん,https://vip2.slbfsl.com/20230418/etJ7qYBw/index.m3u8
|
||||
流出版-大橋優子無碼流出,https://vip2.slbfsl.com/20230418/KXcOJc28/index.m3u8
|
||||
豊満ムラムラ美ボディガール,https://vip2.slbfsl.com/20230418/xYPhVUeJ/index.m3u8
|
||||
真正中出し12発!,https://vip2.slbfsl.com/20230418/otaGLKKn/index.m3u8
|
||||
南国から来たハーフの子,https://vip2.slbfsl.com/20230418/dSrOXNaS/index.m3u8
|
||||
神野はづき無碼流出,https://vip2.slbfsl.com/20230419/WDmd2iHy/index.m3u8
|
||||
土屋鈴無碼流出,https://vip2.slbfsl.com/20230419/DDaQtCFN/index.m3u8
|
||||
水無瀨優夏無碼流出,https://vip2.slbfsl.com/20230419/epdFbro2/index.m3u8
|
||||
炉輪カン校内暴行妊娠汁,https://vip2.slbfsl.com/20230419/ld5D7chj/index.m3u8
|
||||
小野寺梨紗無碼流出,https://vip2.slbfsl.com/20230419/X2DCy0vR/index.m3u8
|
||||
-優希まこと無碼流出,https://vip2.slbfsl.com/20230419/9HiesmbU/index.m3u8
|
||||
芹沢つむぎ無碼流出,https://vip2.slbfsl.com/20230419/oMLOMApB/index.m3u8
|
||||
山本エリカ無碼流出,https://vip2.slbfsl.com/20230419/XVhP4IUJ/index.m3u8
|
||||
音梓無碼流出2,https://vip2.slbfsl.com/20230419/d9IWkwNA/index.m3u8
|
||||
吉澤明步無碼流出-Part 3,https://vip2.slbfsl.com/20230419/SPmxpGOs/index.m3u8
|
||||
音梓無碼流出1,https://vip2.slbfsl.com/20230419/rY7FxjsA/index.m3u8
|
||||
-葵玲奈無碼流出,https://vip2.slbfsl.com/20230419/tViLtHa4/index.m3u8
|
||||
-陽田まり無碼流出,https://vip2.slbfsl.com/20230419/vMdkUeLX/index.m3u8
|
||||
美麗的溫泉,https://vip2.slbfsl.com/20230420/BSMnagCs/index.m3u8
|
||||
美BODYに膣内暴発-Part 1,https://vip2.slbfsl.com/20230420/jTDzqNUh/index.m3u8
|
||||
美しいBODYを弄び生挿入でガン突き中出し,https://vip2.slbfsl.com/20230420/TZSq8mRX/index.m3u8
|
||||
美BODYに膣内暴発-Part 2,https://vip2.slbfsl.com/20230420/QxQzbTSd/index.m3u8
|
||||
秘蔵マンコセレクション2,https://vip2.slbfsl.com/20230421/lt11BPbq/index.m3u8
|
||||
奶牛位置,https://vip2.slbfsl.com/20230421/ddpHZ2A7/index.m3u8
|
||||
難波高額援助-part 1,https://vip2.slbfsl.com/20230421/9LvdoXEe/index.m3u8
|
||||
模型集合,https://vip2.slbfsl.com/20230421/FzB2ETjj/index.m3u8
|
||||
模特的集合,https://vip2.slbfsl.com/20230421/jXtbHqut/index.m3u8
|
||||
苗條的秀麗,https://vip2.slbfsl.com/20230421/ACRIKFyD/index.m3u8
|
||||
讓我使出全力協助您自慰 深田詠美,https://vip2.slbfsl.com/20230325/g69AmNYa/index.m3u8
|
||||
被醜陋絶倫大叔搞到持續高潮的我。 初音實,https://vip2.slbfsl.com/20230325/lMITx6TV/index.m3u8
|
||||
素股摩擦防御力降為零的高潮風俗嬢 希島愛理,https://vip2.slbfsl.com/20230325/18GBc5Le/index.m3u8
|
||||
母さんの友達の普段づかいの地味下着 萩野美佳子,https://vip2.slbfsl.com/20230326/VM4dJ1Ff/index.m3u8
|
||||
なりきりナンパの職業どうでしょう フィットネス編,https://vip2.slbfsl.com/20230326/EVRTWYAT/index.m3u8
|
||||
いいなり温泉旅行 安娜,https://vip2.slbfsl.com/20230206/hoSm3wil/index.m3u8
|
||||
童貞卒業させちゃいましたspecial!!! 本庄鈴,https://vip2.slbfsl.com/20230206/mIc96opQ/index.m3u8
|
||||
過剰過ぎて本番までサセちゃう風俗嬢 千鶴惠麻,https://vip2.slbfsl.com/20230207/rd0GNPqY/index.m3u8
|
||||
オナホ洗脳 清楚なCAが使い捨てオナホールにシンクロさせられる Lauren花戀,https://vip2.slbfsl.com/20230207/6L87NSEH/index.m3u8
|
||||
轉生到紗倉真菜身上! 紗倉真菜,https://vip2.slbfsl.com/20230207/YRaN3cNp/index.m3u8
|
||||
游泳競技選手團 遠征巴士NTR 青木桃,https://vip2.slbfsl.com/20230207/8ItCYo9i/index.m3u8
|
||||
沒有工作時整天呆在酒店 隱藏的CA婊子 鈴原美蘭,https://vip2.slbfsl.com/20230207/SeTtUBql/index.m3u8
|
||||
泊2日の筆おろし旅! 青空光,https://vip2.slbfsl.com/20230207/nHWjFtJx/index.m3u8
|
||||
おまけ映像付きだよ! 東條夏,https://vip2.slbfsl.com/20230207/8wXUq9sR/index.m3u8
|
||||
親族相姦 漂亮的叔母 市川愛茉,https://vip2.slbfsl.com/20230208/YvwU8LUo/index.m3u8
|
||||
潮吹中出真實SEX 新井里真,https://vip2.slbfsl.com/20230208/wYgwaErh/index.m3u8
|
||||
每天被侵犯 揉捏胸部 優里奈央,https://vip2.slbfsl.com/20230208/lFpFRDE0/index.m3u8
|
||||
毎朝ゴミ出し場ですれ違う浮きブラ,https://vip2.slbfsl.com/20230224/68BySmUo/index.m3u8
|
||||
母愛,https://vip2.slbfsl.com/20230225/Pb4nyw0E/index.m3u8
|
||||
母子交尾,https://vip2.slbfsl.com/20230225/WqBLfTLQ/index.m3u8
|
||||
しくと頼まれたので母×娘まとめて中出し,https://vip2.slbfsl.com/20230301/f2WrVUUk/index.m3u8
|
||||
鉄拘束アナル拷問,https://vip2.slbfsl.com/20230301/HeXRkljQ/index.m3u8
|
||||
欲情して危険日狙って中出し逆夜,https://vip2.slbfsl.com/20230301/IaWyfKBs/index.m3u8
|
||||
完全炉利校内集団暴行汁,https://vip2.slbfsl.com/20230301/0tsMsR2K/index.m3u8
|
||||
飲み姿エロイイGP ?酒トーークで盛り上がったあとのH,https://vip2.slbfsl.com/20230303/IJn5DDc7/index.m3u8
|
||||
音量注意!アヘ聲デカすぎ!GカップJD 潮吹き痙攣,https://vip2.slbfsl.com/20230303/kLkNvZT0/index.m3u8
|
||||
一刀兩段的錄像,https://vip2.slbfsl.com/20230303/4gPlkm9v/index.m3u8
|
||||
制服狩り エステティシャン編1,https://vip2.slbfsl.com/20230304/clgRWGEP/index.m3u8
|
||||
日間ザーメン溜めた禁欲絶倫オヤジを満足させる中出し無制限,https://vip2.slbfsl.com/20230305/v1QYHqce/index.m3u8
|
||||
家庭教師に利尿剤と唾液促進剤入,https://vip2.slbfsl.com/20230306/GjHx1fbT/index.m3u8
|
||||
がセクシーで大量潮吹,https://vip2.slbfsl.com/20230306/Vdv6vLif/index.m3u8
|
||||
黒巨尻ギャルデリバリー バックも中出し,https://vip2.slbfsl.com/20230306/t3KflPxx/index.m3u8
|
||||
グぅーカワ金髪GAL×中出し3P4連発,https://vip2.slbfsl.com/20230306/8BeTmJzn/index.m3u8
|
||||
鬼畜義父に犯●れる地獄の温泉旅行,https://vip2.slbfsl.com/20230307/XTbpF0Fe/index.m3u8
|
||||
存在になって最後は自分から仕返し中出し,https://vip2.slbfsl.com/20230307/XSSPOTk8/index.m3u8
|
||||
筆下ろし自宅訪問,https://vip2.slbfsl.com/20230307/VcfX2e6h/index.m3u8
|
||||
る絶頂マタガリータ母のえっぐい騎乗位セックス,https://vip2.slbfsl.com/20230307/5wI4ymqi/index.m3u8
|
||||
-飛びっこ散歩 ?やばい、めっちゃ動いて歩けない!,https://vip2.slbfsl.com/20230308/2isFqPEb/index.m3u8
|
||||
-夫非公認の濃密一泊二日!,https://vip2.slbfsl.com/20230308/cPmXUGTV/index.m3u8
|
||||
-即ハメできちゃうオレ専用メイド!,https://vip2.slbfsl.com/20230309/gYyFb8C5/index.m3u8
|
||||
-可愛い笑顔が快感に!,https://vip2.slbfsl.com/20230310/03tYqSFB/index.m3u8
|
||||
-流出版-いつでも挿れ放題な催眠!,https://vip2.slbfsl.com/20230310/TF4lfl2J/index.m3u8
|
||||
-ィの水著ギャルを即パコナンパ!!,https://vip2.slbfsl.com/20230311/EaJinavU/index.m3u8
|
||||
-配合度超棒砲友!,https://vip2.slbfsl.com/20230312/DYIEQ16b/index.m3u8
|
||||
-全身敏感体質のキャンギャルEカップ!,https://vip2.slbfsl.com/20230312/6BLBfjQU/index.m3u8
|
||||
-視線を感じるコンプレックスの大きなお尻!,https://vip2.slbfsl.com/20230314/VmweGZ9C/index.m3u8
|
||||
SHK-D-523 美畜同好会 強姦標的 List.01 製薬会社セールスレディ編 仁美まどか,https://vip2.slbfsl.com/20230318/k0h0fFPg/index.m3u8
|
||||
21歳..潮吹きイキ?ハメながら連続イキする鉄マン,https://vip2.slbfsl.com/20230321/rDKNoVcV/index.m3u8
|
||||
「突撃訪問!自宅で緊急撮影!!,https://vip2.slbfsl.com/20230321/P1Fhzo5x/index.m3u8
|
||||
を携えて面接に来てくれたまこちゃん,https://vip2.slbfsl.com/20230322/PFhoBdSu/index.m3u8
|
||||
グッドモーニング!,https://vip2.slbfsl.com/20230326/n0JqctuN/index.m3u8
|
||||
先輩たちに寝取られた時の話です,https://vip2.slbfsl.com/20230326/XKXNgLk0/index.m3u8
|
||||
コンドームが破れてまさかの生ハメ!,https://vip2.slbfsl.com/20230327/U45py0OW/index.m3u8
|
||||
これ、きみだよね,https://vip2.slbfsl.com/20230327/I3EMoudA/index.m3u8
|
||||
コタツの中でこっそり誘惑NTR中出しSEX,https://vip2.slbfsl.com/20230327/7gaWXbSs/index.m3u8
|
||||
シロウトTV×PRESTIGE PREMIUM,https://vip2.slbfsl.com/20230328/8meg7meZ/index.m3u8
|
||||
シャレにならんドッキリ引退作品,https://vip2.slbfsl.com/20230328/bNTGpdkk/index.m3u8
|
||||
ズコバコごっくん超乱交 つぼみ,https://vip2.slbfsl.com/20230328/MNTfIN6q/index.m3u8
|
||||
学生時代の先輩に寝取られ続けていた,https://vip2.slbfsl.com/20230328/k5J292qx/index.m3u8
|
||||
ぜ~んぶ初?体?験めちゃイキ3本番,https://vip2.slbfsl.com/20230328/2cTIfGBH/index.m3u8
|
||||
ちょっとお前、何してるんだよ!!挿ってるよ!どいてくれよ!,https://vip2.slbfsl.com/20230329/hjjeTUev/index.m3u8
|
||||
ドラレコNTR11 車載カメラは見ていたねとられの一部始終を,https://vip2.slbfsl.com/20230330/dOEhQtE9/index.m3u8
|
||||
と入れ替わった俺は社内でヤリたい放題!,https://vip2.slbfsl.com/20230330/pKSxCZgs/index.m3u8
|
||||
ナマイキ美尻パリピGAL昇天!,https://vip2.slbfsl.com/20230330/OLZD4TEj/index.m3u8
|
||||
にレズ解禁されちゃったSPECIAL!,https://vip2.slbfsl.com/20230330/WTY3cUNz/index.m3u8
|
||||
と僕の鼠径部を執拗にマッサージ…その後とんでもない施術が!!,https://vip2.slbfsl.com/20230330/iIVQ18f3/index.m3u8
|
||||
には言えない白昼の不倫調教,https://vip2.slbfsl.com/20230330/kfmDWc68/index.m3u8
|
||||
ハメハメ温泉で中出しOKだぜぇぃの旅,https://vip2.slbfsl.com/20230331/4ucN8sHp/index.m3u8
|
||||
マジ軟派、初撮。,https://vip2.slbfsl.com/20230402/gobphEnE/index.m3u8
|
||||
脱ぎパンティで優しく包んで搾り取,https://vip2.slbfsl.com/20230403/zvKsNJ2O/index.m3u8
|
||||
よだれを垂らしながらその快楽に酔い痴れる姿は必見!,https://vip2.slbfsl.com/20230403/T3FremsZ/index.m3u8
|
||||
旦那不在の2日間、本能のまま不倫セックスに明け暮れた不実な週末,https://vip2.slbfsl.com/20230409/GAw46Onk/index.m3u8
|
||||
短髮俏麗的按摩師有特別手法,https://vip2.slbfsl.com/20230410/MP7Vhkua/index.m3u8
|
||||
黑名單的鬼畜親父投稿動畫,https://vip2.slbfsl.com/20230410/S3l0JdBA/index.m3u8
|
||||
もしも…「伊織涼子」が○○だったら…。,https://vip2.slbfsl.com/20230411/W82iW9K9/index.m3u8
|
||||
息子の嫁に恋をした義父 赤瀬尚子,https://vip2.slbfsl.com/20230411/p4a69ghf/index.m3u8
|
||||
もしも&amp;hellip;「篠田ゆう」が○○だったら&amp;hellip;。,https://vip2.slbfsl.com/20230411/tR8NPEFd/index.m3u8
|
||||
好きでもない中年オヤジと結婚させられ,https://vip2.slbfsl.com/20230413/ZHWmNwNq/index.m3u8
|
||||
許して…この婿の子供が欲しい,https://vip2.slbfsl.com/20230413/0lu3hi9u/index.m3u8
|
||||
嫁の母 爛れた欲情交配,https://vip2.slbfsl.com/20230414/DbPL81X0/index.m3u8
|
||||
蜜愛,https://vip2.slbfsl.com/20230414/yQn2Yd8n/index.m3u8
|
||||
苦しい家計を体で補填 七瀬ひな,https://vip2.slbfsl.com/20230414/Gp4lLcni/index.m3u8
|
||||
結婚式直前に俺のオヤジからの種付けレ×プ被害を告白されました,https://vip2.slbfsl.com/20230415/6PnUP9hD/index.m3u8
|
||||
剣道全国大会準優勝!,https://vip2.slbfsl.com/20230415/QnNEF29A/index.m3u8
|
||||
郊外ラブホテルは変態の巣窟,https://vip2.slbfsl.com/20230415/y5qNr3hf/index.m3u8
|
||||
今夜、僕は童貞を捨てられるかもしれない―,https://vip2.slbfsl.com/20230415/OfWSNAEz/index.m3u8
|
||||
今日は孕むまでナカに出して,https://vip2.slbfsl.com/20230415/1VP22Iaq/index.m3u8
|
||||
交通事故示談NTR 配偶者が起こした交通事故…,https://vip2.slbfsl.com/20230415/4yZvlSho/index.m3u8
|
||||
酒グセの悪い姉,https://vip2.slbfsl.com/20230416/qMfB4Ewt/index.m3u8
|
||||
驚愕の絶倫10コーナー!,https://vip2.slbfsl.com/20230416/JCVqewth/index.m3u8
|
||||
絶対妊娠!ガン反り生チ○ポで孕ませ中出しSEX!,https://vip2.slbfsl.com/20230416/pJEZyxvt/index.m3u8
|
||||
妹に欲望剥き出しでハメまくった中出し記録,https://vip2.slbfsl.com/20230420/bIRLVu8B/index.m3u8
|
||||
息子の友達に欲情してしまった私は…,https://vip2.slbfsl.com/20230301/igjOezFw/index.m3u8
|
||||
五感を奪う超高級旅館,https://vip2.slbfsl.com/20230301/7oVOnrWB/index.m3u8
|
||||
完全主観で楽しむとの新婚生活,https://vip2.slbfsl.com/20230301/0OY4empe/index.m3u8
|
||||
新設小悪魔マッサージで感じちゃった僕,https://vip2.slbfsl.com/20230302/wAiNBqp5/index.m3u8
|
||||
友達の奥さん,https://vip2.slbfsl.com/20230303/dJSObngM/index.m3u8
|
||||
レムワゴン ダサいオンナとSEX,https://vip2.slbfsl.com/20230306/vDdmYdqV/index.m3u8
|
||||
大量お漏らしハメしょんスペシャル,https://vip2.slbfsl.com/20230306/8NoPLhPP/index.m3u8
|
||||
オフィスレディの湿ったパンスト,https://vip2.slbfsl.com/20230306/rHMqXHvJ/index.m3u8
|
||||
ガンギマリ露出調教 4時間,https://vip2.slbfsl.com/20230306/I90mdyyE/index.m3u8
|
||||
抱き心地100点満点 どんな無茶にも神対応,https://vip2.slbfsl.com/20230307/RtGu7twW/index.m3u8
|
||||
-東熱無断中出し!,https://vip2.slbfsl.com/20230308/0m4hOgD5/index.m3u8
|
||||
-恩師と朝まで!,https://vip2.slbfsl.com/20230308/5XzILfkw/index.m3u8
|
||||
-鬼逝 – 125回!,https://vip2.slbfsl.com/20230309/MSVdCsi0/index.m3u8
|
||||
-好奇心に負けてSEXしてしまう!!!,https://vip2.slbfsl.com/20230309/o1W4PhdO/index.m3u8
|
||||
-海ナンパ本気勢が撮-Part 1!,https://vip2.slbfsl.com/20230309/fr6Pp3OM/index.m3u8
|
||||
-悶絶姦 ~狂気の絶頂に堕ちて~!,https://vip2.slbfsl.com/20230311/BbMVbd6E/index.m3u8
|
||||
-派遣マッサージ師にきわどい秘部を触られすぎて!,https://vip2.slbfsl.com/20230312/ewpHOu2b/index.m3u8
|
||||
-強姦標的List.07!,https://vip2.slbfsl.com/20230312/l6GWg1Ry/index.m3u8
|
||||
-其實我還是繼續被老公的上司侵犯!,https://vip2.slbfsl.com/20230312/AxbF0wNR/index.m3u8
|
||||
EBO-D-274 148cmメガマラSEX 奥田咲,https://vip2.slbfsl.com/20230316/QcjHckzU/index.m3u8
|
||||
JBD--156 ~むすんで、ひらいて~ 遥めぐみ,https://vip2.slbfsl.com/20230316/6CiOsTJc/index.m3u8
|
||||
TCS-K-004 しみけんの逆3P王国vol.04 ももか&ゆめ あおい&ことな,https://vip2.slbfsl.com/20230318/ierszkr7/index.m3u8
|
||||
10.18新- Karen Yuzuriha 送到 M Man Kun 的家,https://vip2.slbfsl.com/20230319/V8fVwRRv/index.m3u8
|
||||
2穴同時責めはどれだけ気持ち良いのか?,https://vip2.slbfsl.com/20230321/ZR6lVUgz/index.m3u8
|
||||
8頭身でGカップでウエスト56cm?究極の美ボディで抜けSP,https://vip2.slbfsl.com/20230321/F8O2CgqX/index.m3u8
|
||||
10発中出しするまで勃起させちゃうお姉様SEXテクニック,https://vip2.slbfsl.com/20230321/twX0pZtz/index.m3u8
|
||||
10発セックスしてました。,https://vip2.slbfsl.com/20230321/uMWF3H8d/index.m3u8
|
||||
HOTENTERTAINMENT-Part 2,https://vip2.slbfsl.com/20230322/ri2L3k5g/index.m3u8
|
||||
Ma○ko Device BondageV 鉄拘束マ○コ拷問,https://vip2.slbfsl.com/20230322/In0ZzSWV/index.m3u8
|
||||
Gカップ過剰輪カン過多孕汁,https://vip2.slbfsl.com/20230322/6m66C3wI/index.m3u8
|
||||
Hカップ娘のブルガリア流SEX,https://vip2.slbfsl.com/20230322/DSn2ZD2h/index.m3u8
|
||||
SEX中ず???っとビクビク痙攣絶頂,https://vip2.slbfsl.com/20230323/X30f5tl2/index.m3u8
|
||||
アイツが買ったゴムのサイズは俺のよりデカかった,https://vip2.slbfsl.com/20230323/NpMJe9rK/index.m3u8
|
||||
Maria Worldwide nudist,https://vip2.slbfsl.com/20230323/ldCJGLiX/index.m3u8
|
||||
Yura7 ふたり浪漫,https://vip2.slbfsl.com/20230323/rEx6Ra2F/index.m3u8
|
||||
Ririko2 完熟果実を抱きしめて,https://vip2.slbfsl.com/20230323/i949Q5Y5/index.m3u8
|
||||
W雙姦姊妹,https://vip2.slbfsl.com/20230323/3NvBd8hx/index.m3u8
|
||||
あなた、許して…。 愛欲の沼,https://vip2.slbfsl.com/20230324/c7FX47wR/index.m3u8
|
||||
ありったけのザーメンを吸い取ってあげる,https://vip2.slbfsl.com/20230324/9lmzCu2A/index.m3u8
|
||||
あなた、許して…,https://vip2.slbfsl.com/20230324/prvUkHuG/index.m3u8
|
||||
イラマなでしこ,https://vip2.slbfsl.com/20230324/2ErIMWHJ/index.m3u8
|
||||
あなた、許して…。 年の差婚の落とし穴2,https://vip2.slbfsl.com/20230324/pW0b2d69/index.m3u8
|
||||
あなた、許して…。 官能小説のように2,https://vip2.slbfsl.com/20230324/jlvRUUse/index.m3u8
|
||||
お母さんなのに!,https://vip2.slbfsl.com/20230325/BoDHn7EQ/index.m3u8
|
||||
お話ししてただけなのに、いっぱい濡れちゃってます,https://vip2.slbfsl.com/20230325/qTniRnrm/index.m3u8
|
||||
エロさS級脚長スレンダーギャル ひまり,https://vip2.slbfsl.com/20230325/nwsD3MGy/index.m3u8
|
||||
お店には秘密のナマ本番連続中出し,https://vip2.slbfsl.com/20230325/nCDFEOgZ/index.m3u8
|
||||
ザーメンが枯渇するほど搾られた僕,https://vip2.slbfsl.com/20230327/DxrphvhC/index.m3u8
|
||||
ザ?筆おろし,https://vip2.slbfsl.com/20230327/6ATM6oEN/index.m3u8
|
||||
不当解雇した年下上司の奥さんへ仕返しの復讐中出し,https://vip2.slbfsl.com/20230406/S6z94qKp/index.m3u8
|
||||
喫茶店の裏事情、売られたメイドと汚れる日常,https://vip2.slbfsl.com/20230406/D9Hnpd7Q/index.m3u8
|
||||
恥ずかしくて旦那になかなかエッチしてとは,https://vip2.slbfsl.com/20230407/2LgUdEIJ/index.m3u8
|
||||
初體験も早かったし長く付き合,https://vip2.slbfsl.com/20230408/ILCb3JTj/index.m3u8
|
||||
旦那とのセックスは少しマンネリ気味で,https://vip2.slbfsl.com/20230409/POiuD0mo/index.m3u8
|
||||
飛びっこ散歩 ?やばい、めっちゃ動いて歩けない,https://vip2.slbfsl.com/20230409/I2E1TksP/index.m3u8
|
||||
風俗いくなら私がしてあげる,https://vip2.slbfsl.com/20230409/NQuN1xK0/index.m3u8
|
||||
風俗イクほどセックス好きだったんだ?,https://vip2.slbfsl.com/20230409/ueRiNXJE/index.m3u8
|
||||
風呂に入っていた叔母さんと再び入浴…,https://vip2.slbfsl.com/20230409/vRTe6EE2/index.m3u8
|
||||
浮気經驗しのアンコはヌレヌレ,https://vip2.slbfsl.com/20230410/DEs9cUwG/index.m3u8
|
||||
父が出かけて2秒でセックスする母と息子,https://vip2.slbfsl.com/20230410/4nkgKN5f/index.m3u8
|
||||
福島から上京した嫁の母の微笑みがたまらない…,https://vip2.slbfsl.com/20230410/cvB7oecw/index.m3u8
|
||||
高級現役キャバ嬢をハメ撮っちゃいます,https://vip2.slbfsl.com/20230412/JM8TLtEn/index.m3u8
|
||||
露出温泉不倫旅行,https://vip2.slbfsl.com/20230419/cFME5Dfi/index.m3u8
|
||||
-夫の上司に犯され続けて7日目!,https://vip2.slbfsl.com/20230308/K28buMUF/index.m3u8
|
||||
-東京熱茶!,https://vip2.slbfsl.com/20230308/b7YUwQLu/index.m3u8
|
||||
-快楽に耐え切れず寝取られました!,https://vip2.slbfsl.com/20230310/DuJCWvJC/index.m3u8
|
||||
-娘の彼氏に抱かれた私!,https://vip2.slbfsl.com/20230311/P27pf0gH/index.m3u8
|
||||
-寿退社を祝う温泉旅行で、私は上司に中出しされ続けて―!,https://vip2.slbfsl.com/20230314/NXm8SxVW/index.m3u8
|
||||
-受付嬢in(脅迫スイートルーム)!,https://vip2.slbfsl.com/20230314/CsUGr70Z/index.m3u8
|
||||
~マシュマロ3d+が歌ってオナってヤラレちゃう!,https://vip2.slbfsl.com/20230315/bsIQutKn/index.m3u8
|
||||
地獄のレディアタッカーズ 訓練と調教の日々,https://vip2.slbfsl.com/20230318/bkDBkU6M/index.m3u8
|
||||
15秒立刻插入立刻高潮,https://vip2.slbfsl.com/20230319/x78iMJ5e/index.m3u8
|
||||
3穴的尖叫聲,https://vip2.slbfsl.com/20230321/uWeJOMjP/index.m3u8
|
||||
大事な恩師とデリヘルバイトで再開。,https://vip2.slbfsl.com/20230321/TlR2nROW/index.m3u8
|
||||
「私、小さい頃から脳イキが出来るんです。」,https://vip2.slbfsl.com/20230321/q7eLR6eV/index.m3u8
|
||||
お母さんの再婚相手が狙っていたのは私でした,https://vip2.slbfsl.com/20230325/yU3oxP6R/index.m3u8
|
||||
お掃除フェラまでしてくれるナースコスのデリヘル嬢,https://vip2.slbfsl.com/20230325/H5AHHVtW/index.m3u8
|
||||
お義父さん、私を料理してください,https://vip2.slbfsl.com/20230326/YbJ62pqf/index.m3u8
|
||||
お義姉さんの美尻がエロすぎるから,https://vip2.slbfsl.com/20230326/isY3ZKr2/index.m3u8
|
||||
お義父さんに孕ませられたなんて…,https://vip2.slbfsl.com/20230326/GXOZ4FfI/index.m3u8
|
||||
ソープで働くことになった母ちゃんの練習台になった息子,https://vip2.slbfsl.com/20230327/p3f3mj2A/index.m3u8
|
||||
キスからはじまる母と息子の愛情、密着、濃厚セックス,https://vip2.slbfsl.com/20230327/43R0C70r/index.m3u8
|
||||
ハンサムな先生が母親を誘惑する,https://vip2.slbfsl.com/20230328/MiODR8vf/index.m3u8
|
||||
トーカーが母の再婚相手に…,https://vip2.slbfsl.com/20230328/5cx4Qekq/index.m3u8
|
||||
パイパン保母さんは欲求不満,https://vip2.slbfsl.com/20230328/GVrYlKg0/index.m3u8
|
||||
ナガサレ― 義兄に犯●れ初めての絶頂を知った嫁,https://vip2.slbfsl.com/20230328/nVUP0Vzh/index.m3u8
|
||||
デカ尻お義母さんにイカされる奇妙な共同生活,https://vip2.slbfsl.com/20230328/akrk3XK0/index.m3u8
|
||||
背徳の契り義父と,https://vip2.slbfsl.com/20230329/oJyFAhSJ/index.m3u8
|
||||
ボケたフリした独り身のお義父さんは,https://vip2.slbfsl.com/20230329/iHmn9yd0/index.m3u8
|
||||
彼氏が出来た義姉がヤリチンの弟とSEXの練習,https://vip2.slbfsl.com/20230330/23i1vMsO/index.m3u8
|
||||
超本格官能近親エロ絵巻 お義母さん,https://vip2.slbfsl.com/20230331/u7zuS8Dq/index.m3u8
|
||||
恥知らずな義姉さん,https://vip2.slbfsl.com/20230331/TXzjBgzg/index.m3u8
|
||||
超真面目でタヌキたれ目の地味メガネ義姉が実は小悪魔!,https://vip2.slbfsl.com/20230331/rNOz9P19/index.m3u8
|
||||
大嫌いな絶倫義父に危険日狙って孕むまで何度も何度も中出しされて…,https://vip2.slbfsl.com/20230401/VlCQdkYj/index.m3u8
|
||||
大嫌いな義父と抜かずの中出し孫作り,https://vip2.slbfsl.com/20230401/hOMHOqEJ/index.m3u8
|
||||
雌奴●を喰む母娘,https://vip2.slbfsl.com/20230401/yVnmRhvP/index.m3u8
|
||||
働く地方のお母さん ?栃木の風俗嬢編?,https://vip2.slbfsl.com/20230402/xhur1lO0/index.m3u8
|
||||
旦那への罪悪感を覚えつつ今日も義父の濃密,https://vip2.slbfsl.com/20230402/BH97NBHw/index.m3u8
|
||||
背徳の情事,https://vip2.slbfsl.com/20230405/RIrSXyzx/index.m3u8
|
||||
夫には言えない。クレーム係という仕事,https://vip2.slbfsl.com/20230407/geu5pPQx/index.m3u8
|
||||
夫がいない間の里帰り,https://vip2.slbfsl.com/20230407/ZwrMK8aQ/index.m3u8
|
||||
夫にバレても構わない…,https://vip2.slbfsl.com/20230407/3oggig7u/index.m3u8
|
||||
反抗期の息子ですら愛おしい母は,https://vip2.slbfsl.com/20230408/RojOrxnz/index.m3u8
|
||||
反復被禁止的快感,https://vip2.slbfsl.com/20230408/tgNXCDam/index.m3u8
|
||||
反応が激マジで本当に価値あり,https://vip2.slbfsl.com/20230408/cqntIiic/index.m3u8
|
||||
髪ヤリマン白ギャルをハメ倒す,https://vip2.slbfsl.com/20230408/SLOlhFCC/index.m3u8
|
||||
姐姐的舌頭情有獨鍾的弟弟是無法控制的,https://vip2.slbfsl.com/20230409/pV4XhEgx/index.m3u8
|
||||
夫に初めて嘘をついた日 ~背徳のエイプリルフール,https://vip2.slbfsl.com/20230409/ePZhFzsk/index.m3u8
|
||||
夫の弟と私の秘密の不妊治療,https://vip2.slbfsl.com/20230409/pz5bSXZ8/index.m3u8
|
||||
夫のよりずっといいわ,https://vip2.slbfsl.com/20230409/N2fpb8p4/index.m3u8
|
||||
夫に内緒で義父に頼んだ妊活,https://vip2.slbfsl.com/20230409/wqHB7SH4/index.m3u8
|
||||
夫には言えない秘密-義理の息子に弄ばれ続けている私,https://vip2.slbfsl.com/20230409/FoCZdjdw/index.m3u8
|
||||
東熱CA大乱交2009 Part2,https://vip2.slbfsl.com/20230410/GzEaohLW/index.m3u8
|
||||
東熱鬼畜汁逝,https://vip2.slbfsl.com/20230410/RSvP22Jr/index.m3u8
|
||||
東熱極中出し,https://vip2.slbfsl.com/20230410/1jOvIX88/index.m3u8
|
||||
東熱流3穴破壊カン,https://vip2.slbfsl.com/20230410/PAAI6GFt/index.m3u8
|
||||
夫の目の前で犯-Part 2,https://vip2.slbfsl.com/20230410/Or4ehxLt/index.m3u8
|
||||
夫の目の前で犯●れて― 君と一緒になる,https://vip2.slbfsl.com/20230410/3xQ7EdH9/index.m3u8
|
||||
夫の緊縛欲望の前で犯される,https://vip2.slbfsl.com/20230410/AKHkEuiV/index.m3u8
|
||||
夫の目の前で犯●れて― 好々爺の裏の顔,https://vip2.slbfsl.com/20230410/m9UmYMaW/index.m3u8
|
||||
夫の目の前で犯●れて―円満夫婦の落日,https://vip2.slbfsl.com/20230410/tNplYIjQ/index.m3u8
|
||||
夫よりも義父を愛して,https://vip2.slbfsl.com/20230411/Cynu8LNM/index.m3u8
|
||||
義姉さんにこっそり中出しした僕,https://vip2.slbfsl.com/20230411/yObxpEFC/index.m3u8
|
||||
夫の目の前で犯されて― 外伝あなた噓よ、信じないで!,https://vip2.slbfsl.com/20230411/C8GgX3lJ/index.m3u8
|
||||
夫の兄とNTR家庭内不倫,https://vip2.slbfsl.com/20230411/VpKier6f/index.m3u8
|
||||
夫の目の前で犯されて― 危険な欲情,https://vip2.slbfsl.com/20230411/wtL8rIBH/index.m3u8
|
||||
勾引發情的姐妹,https://vip2.slbfsl.com/20230412/uWtw72Aq/index.m3u8
|
||||
高慢読者モデル輪カン汁天誅,https://vip2.slbfsl.com/20230412/g0TZBDOK/index.m3u8
|
||||
帰宅困難の生徒と教師が一線を越えて乱れ狂う台風の夜,https://vip2.slbfsl.com/20230412/KJelUl9C/index.m3u8
|
||||
極品巨奶辣妹,https://vip2.slbfsl.com/20230413/KAoyQxR2/index.m3u8
|
||||
和服姿のヤバい近所,https://vip2.slbfsl.com/20230413/3b1jXkZt/index.m3u8
|
||||
家キャバ ボクに突然できた義姉は現役キャバ嬢,https://vip2.slbfsl.com/20230414/8UosLWbR/index.m3u8
|
||||
近親相姦 ごめんね、お母さんを許して,https://vip2.slbfsl.com/20230416/LmsRpSQH/index.m3u8
|
||||
近所で可愛いと有名な子を飼ってます,https://vip2.slbfsl.com/20230416/qsQTauNX/index.m3u8
|
||||
近所のお姉さん達が階段で超ミニスカパンチラ誘惑してくるので,https://vip2.slbfsl.com/20230416/Gau5qk4v/index.m3u8
|
||||
近親相姦 五十路のお母さんに膣中出し,https://vip2.slbfsl.com/20230416/fvGVYu9x/index.m3u8
|
||||
近親相姦SM,https://vip2.slbfsl.com/20230416/oORzF61N/index.m3u8
|
||||
狙われた母娘 娘の同級生に私も犯●れました,https://vip2.slbfsl.com/20230417/iFOY0wWt/index.m3u8
|
||||
兩天一夜的溫泉旅行 過於忘我而中出的我,https://vip2.slbfsl.com/20230418/iZWlBTH1/index.m3u8
|
||||
另一個故事?與我丈夫的關係扭曲,https://vip2.slbfsl.com/20230418/SdmxqEbj/index.m3u8
|
||||
輪姦校園,https://vip2.slbfsl.com/20230419/oMHIxeUF/index.m3u8
|
||||
輪姦餌食,https://vip2.slbfsl.com/20230419/sqmL1LPF/index.m3u8
|
||||
毎晩お義父さんに中出しされています,https://vip2.slbfsl.com/20230419/Rq6ALCnR/index.m3u8
|
||||
妹の事が好きすぎて義兄は家庭内ストーカーに,https://vip2.slbfsl.com/20230420/WgvYO1MU/index.m3u8
|
||||
妹の婚約者と背徳ファック,https://vip2.slbfsl.com/20230420/fXo613O1/index.m3u8
|
||||
母親が絶頂50回突破するエロス極限トランス中出し,https://vip2.slbfsl.com/20230421/lfeFynGa/index.m3u8
|
||||
母をイジメっ子の同級生にNTRれたいじめ,https://vip2.slbfsl.com/20230421/udtZewD7/index.m3u8
|
||||
食奴尻,https://vip2.slbfsl.com/20230227/XuBpN6Pt/index.m3u8
|
||||
日雇い派遣で食いつなぐ孤独な初老中年,https://vip2.slbfsl.com/20230227/v3WFthwy/index.m3u8
|
||||
束縛與束縛→SyncopemaxBakuiki昏厥,https://vip2.slbfsl.com/20230228/K8jnlSSP/index.m3u8
|
||||
私、実は夫の上司に犯●れ続けてます…,https://vip2.slbfsl.com/20230228/xG0pRnux/index.m3u8
|
||||
所有作品完成8小時,https://vip2.slbfsl.com/20230228/dVpWjPBq/index.m3u8
|
||||
先生の就職紹介に来るように言われました…,https://vip2.slbfsl.com/20230301/nxGoAM6e/index.m3u8
|
||||
学生デリ呼んだらボーイッシュだった件,https://vip2.slbfsl.com/20230302/bvBMDo6p/index.m3u8
|
||||
義兄に毎日10発以上中出し,https://vip2.slbfsl.com/20230303/W9PvaDIp/index.m3u8
|
||||
再開発計画,https://vip2.slbfsl.com/20230303/CXBK7Dit/index.m3u8
|
||||
中に出すまで逃さない!1,https://vip2.slbfsl.com/20230304/w3U5PLjp/index.m3u8
|
||||
日本-俺の命令は絶対!,https://vip2.slbfsl.com/20230307/GkJ8ndbu/index.m3u8
|
||||
日本-保險員工作中被中出,https://vip2.slbfsl.com/20230307/pqNU42Te/index.m3u8
|
||||
-反復被禁止的快感!,https://vip2.slbfsl.com/20230308/njhNm6LH/index.m3u8
|
||||
-夫の目を盗んで自宅不倫!,https://vip2.slbfsl.com/20230308/x93kTZfy/index.m3u8
|
||||
-父と妹のヤバすぎる関係!,https://vip2.slbfsl.com/20230308/UNaX2kRz/index.m3u8
|
||||
-浣腸する側の看護師さんにカンチョーを注ぎ込んだ7200ml!,https://vip2.slbfsl.com/20230309/RasD67Nj/index.m3u8
|
||||
-鬼逝き118回!,https://vip2.slbfsl.com/20230309/hlfTLzNf/index.m3u8
|
||||
-流出版-木下柚花無碼流出3!,https://vip2.slbfsl.com/20230310/2xzvDZ6G/index.m3u8
|
||||
-連哄帶騙終於初次登場!,https://vip2.slbfsl.com/20230310/9l7sbVP4/index.m3u8
|
||||
-目隠し拘束されながら生ハメ中出しをも許容してしまう体たらく!,https://vip2.slbfsl.com/20230311/KtaFXY7a/index.m3u8
|
||||
-秘書在…(威脅套房)!,https://vip2.slbfsl.com/20230311/or8zMTnE/index.m3u8
|
||||
-奇跡のパーフェクトボディを誇る長身美脚ファッションモデルが本能で欲しがる潮吹き連続絶頂!,https://vip2.slbfsl.com/20230312/Oq8RO18e/index.m3u8
|
||||
-僕を守るため地元で有名なヤンキーに犯!,https://vip2.slbfsl.com/20230312/zvXV3slx/index.m3u8
|
||||
-妊娠危険日にムリヤリ義父に種付け中出しされています!,https://vip2.slbfsl.com/20230313/X5GY55FC/index.m3u8
|
||||
-忍受不了學生的誘惑!,https://vip2.slbfsl.com/20230313/1ORlgRsa/index.m3u8
|
||||
麻薬捜査官、堕ちるまで… ―屈服せず― 亜希菜,https://vip2.slbfsl.com/20230315/ypT94LjD/index.m3u8
|
||||
上司に犯され続けてます… 中尾芽衣子,https://vip2.slbfsl.com/20230316/z4cVPTwd/index.m3u8
|
||||
毎晩犯されイカされ続けています… 琴井しほり,https://vip2.slbfsl.com/20230318/IovtWXur/index.m3u8
|
||||
3个大胸荡妇举办的中出狂欢派对,https://vip2.slbfsl.com/20230319/naySVoz9/index.m3u8
|
||||
13天沒有丈夫的恶魔,誰将成为她的猎物,https://vip2.slbfsl.com/20230319/5g2rK9ce/index.m3u8
|
||||
『先っちょだけでいいから入れさせてください!』おマ○コの入り口でチ○ポ挿入を焦らし続けるいぢわるお姉さま,https://vip2.slbfsl.com/20230321/PXMAh58u/index.m3u8
|
||||
鉄拘束マ○コ拷問,https://vip2.slbfsl.com/20230322/uCnUGCIc/index.m3u8
|
||||
143cm○リ娘。中出し、潮吹きセックス,https://vip2.slbfsl.com/20230322/4TQNGw9e/index.m3u8
|
||||
Dogma 2019上半場作品,https://vip2.slbfsl.com/20230322/5qoFjSqQ/index.m3u8
|
||||
CFNM 着衣の極意,https://vip2.slbfsl.com/20230322/4x81IGGR/index.m3u8
|
||||
Mは目を開けますか,https://vip2.slbfsl.com/20230323/8YoiYdFt/index.m3u8
|
||||
―ナガサレ― 義弟に犯●れ初めての絶頂を知った嫁,https://vip2.slbfsl.com/20230323/yGXNApUx/index.m3u8
|
||||
エアロビクサーのいやらしい誘惑ティア,https://vip2.slbfsl.com/20230324/Vt3UwscY/index.m3u8
|
||||
あなた、許して…。濡れ堕ちた同情2,https://vip2.slbfsl.com/20230324/G16dYCXD/index.m3u8
|
||||
アナタの五感を刺激する安齋ららのシコシコサポートラグジュアリ,https://vip2.slbfsl.com/20230324/o4PmQ5KM/index.m3u8
|
||||
お前が大好きな義父(ワシ)とのベロキスはどうだ?,https://vip2.slbfsl.com/20230325/lCkrdqK9/index.m3u8
|
||||
オモチャプレイが大好きな変態娘,https://vip2.slbfsl.com/20230325/iknwyKy8/index.m3u8
|
||||
おま○こで誘惑,https://vip2.slbfsl.com/20230325/G2hTIY84/index.m3u8
|
||||
カラオケ店勤務の超かわいい19歳,https://vip2.slbfsl.com/20230326/xI6VM5Ho/index.m3u8
|
||||
お薬飲ませて睡眠ハメ!,https://vip2.slbfsl.com/20230326/vB7yae1p/index.m3u8
|
||||
このカラダで私は生きていく!引きこもり神クビレBODY 初めてのナマ中出し,https://vip2.slbfsl.com/20230327/zViZzTRV/index.m3u8
|
||||
さくらちゃんプライベートSEX最終章?,https://vip2.slbfsl.com/20230327/jLbW3fnq/index.m3u8
|
||||
こんなにエッチが上手いなんて聞いてない,https://vip2.slbfsl.com/20230327/6658p03J/index.m3u8
|
||||
スーツ姿のアイドル顔新任教師,https://vip2.slbfsl.com/20230328/SV5bBKYM/index.m3u8
|
||||
しずく,https://vip2.slbfsl.com/20230328/3yazll7p/index.m3u8
|
||||
超ロリスジパイパン,https://vip2.slbfsl.com/20230406/z82dNnOz/index.m3u8
|
||||
可愛度滿點的大學生,https://vip2.slbfsl.com/20230417/apZChcgM/index.m3u8
|
||||
永井瑪麗亞的POWER PLAY逆NTR 永井瑪麗亞,https://vip1.slbfsl.com/20230103/RZXJB3ZZ/index.m3u8
|
||||
エゲツない大☆絶☆頂SPECIAL!!!(※ほぼノーカットVersion) のんちゃん 小花暖,https://vip1.slbfsl.com/20230104/HPUNr86x/index.m3u8
|
||||
決定和最喜歡的母親在七天內肆意墮落 10年來 一直懷有的禁斷感情 水野優香,https://vip2.slbfsl.com/20230201/DXXFz0yv/index.m3u8
|
||||
激ピストン限定即ハメ筋トレジム ~痙攣するまでイカされ体内から美しいカラダを作る~ 今井夏帆 辻井穗乃果 寶田亞梨沙,https://vip2.slbfsl.com/20230202/b7fZLCEO/index.m3u8
|
||||
中丸未来のウキウキハメ撮り夏の1泊2日 Fカップのプルプルボディで感じまくった真夏のテンションMAXワンデー休暇 中丸未來,https://vip2.slbfsl.com/20230202/NKXcdbcE/index.m3u8
|
||||
たった千円で超ペロペロに…?!早い?安い?上手いで話題の即尺ヌキ有りセンペロ酒場に密着!サクッとフェラ抜き神対応!飲みながらヌける新業態! 藍芽水月 星仲心美 綾瀨日葵,https://vip2.slbfsl.com/20230202/hayRH6PH/index.m3u8
|
||||
S騙しナンパ輪● 希代亞美,https://vip2.slbfsl.com/20230203/I2SbQbp7/index.m3u8
|
||||
貴方様 私が発情する前にマ◎コの媚薬栓抜いてください… 丹羽蓳,https://vip2.slbfsl.com/20230203/IcvIZbMK/index.m3u8
|
||||
SQIS-031 LESBIAN 愛的危險地帶 美咲結衣 葵千恵,https://vip2.slbfsl.com/20230203/gCcn2Fhw/index.m3u8
|
||||
天音真日奈的SEX CHANNEL 天音真比奈,https://vip2.slbfsl.com/20230204/VNu32AqT/index.m3u8
|
||||
不懂拒絕 最喜歡口交的優等生 潮美舞,https://vip2.slbfsl.com/20230204/XTOMJa5M/index.m3u8
|
||||
溫泉過夜的出軌旅行 夢乃愛華,https://vip2.slbfsl.com/20230205/JE52CyQ7/index.m3u8
|
||||
曾是偶像的我 用嘴和小屄滿足你哦! 川村由衣,https://vip2.slbfsl.com/20230206/vV9PrjWX/index.m3u8
|
||||
母親的好朋友 長谷川茉優,https://vip2.slbfsl.com/20230208/JIZS5ksR/index.m3u8
|
||||
禁欲の果て、汗と絶頂汁まみれで交わりまくった3日間,https://vip2.slbfsl.com/20230223/NuznwvWM/index.m3u8
|
||||
可愛いが過ぎるミニマム極嬢,https://vip2.slbfsl.com/20230223/PCrlWhAc/index.m3u8
|
||||
禁欲10日目の媚薬,https://vip2.slbfsl.com/20230223/o64jYBQP/index.m3u8
|
||||
連衣裙凸顯的美尻誤以為是撩撥即刻插入!,https://vip2.slbfsl.com/20230224/0KV98H0k/index.m3u8
|
||||
塚田詩織無碼流出,https://vip2.slbfsl.com/20230224/K8UH4EdM/index.m3u8
|
||||
麻宮玲無碼流出,https://vip2.slbfsl.com/20230224/xsWUsZ0K/index.m3u8
|
||||
上野 菜穂無碼流出,https://vip2.slbfsl.com/20230224/AEeGGxhW/index.m3u8
|
||||
娘の童貞彼氏を筆下ろすはずが…,https://vip2.slbfsl.com/20230225/EjMFtFEe/index.m3u8
|
||||
魅惑のおっぱい奴隷 06 欲情マ○コにたっぷり中出し,https://vip2.slbfsl.com/20230225/MrHFGs1q/index.m3u8
|
||||
娘婿のデカチ○ポが欲しくて堪らない義母の誘い,https://vip2.slbfsl.com/20230225/HmZ3av8k/index.m3u8
|
||||
去日光浴床的姐姐幫我抹油,https://vip2.slbfsl.com/20230226/T5Ke50mX/index.m3u8
|
||||
舌でチロチロ焦らしてグッポグッポ咥え込む,https://vip2.slbfsl.com/20230227/sfhLtiaj/index.m3u8
|
||||
事後のザーメンを愛でる,https://vip2.slbfsl.com/20230228/4lYzHlvJ/index.m3u8
|
||||
事件被洗腦的豐滿偶像在討厭時是個討厭的婊子,https://vip2.slbfsl.com/20230228/FxQXhXWw/index.m3u8
|
||||
視線に気づいて、私のおっぱいでいいの?と聞かれた件。,https://vip2.slbfsl.com/20230228/glyjZz90/index.m3u8
|
||||
死ぬほど嫌いだったセクハラ教師とデリヘルで再会,https://vip2.slbfsl.com/20230228/minR7xYh/index.m3u8
|
||||
同窓会の後は…,https://vip2.slbfsl.com/20230301/AgLizsbL/index.m3u8
|
||||
無話說中出地獄,https://vip2.slbfsl.com/20230301/VQQvgEvD/index.m3u8
|
||||
完熟プロポーションを貴方に,https://vip2.slbfsl.com/20230301/Ja852KIN/index.m3u8
|
||||
一個貞操逆轉應用程序,https://vip2.slbfsl.com/20230303/Jv68JUKD/index.m3u8
|
||||
専属 一ヶ月の禁欲の果てに…1,https://vip2.slbfsl.com/20230304/BgCBUQRJ/index.m3u8
|
||||
噂の裏風俗体験し-part 11,https://vip2.slbfsl.com/20230304/0wFLqWI5/index.m3u8
|
||||
何度も求め合った一泊二日温泉旅行1,https://vip2.slbfsl.com/20230304/O0wVziZX/index.m3u8
|
||||
-夫婦げんかで家出してきた妊活中の義姉さんにこっそり中出しした僕!,https://vip2.slbfsl.com/20230308/Sj8o62yM/index.m3u8
|
||||
-法力櫻花治愈!,https://vip2.slbfsl.com/20230308/kSs4i0Bk/index.m3u8
|
||||
-即ハメ即ナメ ヤリヤリギャルのエスコート逆ナンSEX!,https://vip2.slbfsl.com/20230309/wTfY6oHw/index.m3u8
|
||||
-汗ダク/スパンキング/郊外住み/素直で純粋!,https://vip2.slbfsl.com/20230309/3oMOITcB/index.m3u8
|
||||
-汗.唾液.愛液.潮.SEX!,https://vip2.slbfsl.com/20230309/95qLDIQa/index.m3u8
|
||||
-奴役亂倫鄉下的婦!,https://vip2.slbfsl.com/20230311/3CgGVQex/index.m3u8
|
||||
-奴隷城6!,https://vip2.slbfsl.com/20230311/xXoFpxxP/index.m3u8
|
||||
-秘の温泉旅行でイチャイチャのSEX記録動画!,https://vip2.slbfsl.com/20230311/d2B5RZSz/index.m3u8
|
||||
-母姦中出し 息子に初めて中出しされた母!,https://vip2.slbfsl.com/20230311/bQIZnzxu/index.m3u8
|
||||
-死ぬほど大嫌いな上司と出張先の温泉旅館でまさかの相部屋に…!,https://vip2.slbfsl.com/20230314/VSTfFLe8/index.m3u8
|
||||
-体育会系ドM競泳水着から美脚があらわ。!,https://vip2.slbfsl.com/20230314/OOBZpxDD/index.m3u8
|
||||
-天然ビッチなムッチリボディを持つ現役OL!,https://vip2.slbfsl.com/20230314/VWzpi2Qo/index.m3u8
|
||||
潜入捜査官、堕ちるまで… 白咲舞,https://vip2.slbfsl.com/20230315/gjLvcwuH/index.m3u8
|
||||
僕だけの真奈美先生 西真奈美,https://vip2.slbfsl.com/20230316/nAbWMlvn/index.m3u8
|
||||
「お父さん、コキコキしてほしいの?」 奏音かのん,https://vip2.slbfsl.com/20230316/0nEp47t3/index.m3u8
|
||||
同級生たちに酔わされ輪姦された金髪喪服ギャル,https://vip2.slbfsl.com/20230317/UZI4ycaU/index.m3u8
|
||||
リたくなる お掃除フェラ 吉沢明歩,https://vip2.slbfsl.com/20230317/EW7MsrA5/index.m3u8
|
||||
出張相部屋逆NTR 既婚上司に一晩14発中出しさせても求め続けるモンスターSEX 春風ひかる,https://vip2.slbfsl.com/20230317/88qPlAvo/index.m3u8
|
||||
蟻地獄 かすみ果穂 児島奈央,https://vip2.slbfsl.com/20230318/GVxCVd1e/index.m3u8
|
||||
20歳のお祝いに乾杯SEX,https://vip2.slbfsl.com/20230321/QzxFzwRs/index.m3u8
|
||||
24時間体制でチ○ポを狙われ精子まみれの中出し乱交,https://vip2.slbfsl.com/20230321/C9DUjJk1/index.m3u8
|
||||
10本をガニ股騎乗位で連続即ヌキに大挑戦,https://vip2.slbfsl.com/20230321/DZfik1Rp/index.m3u8
|
||||
3天的中年員工和應屆畢業生OL被單獨留在辦公室中,https://vip2.slbfsl.com/20230321/v25Tkecw/index.m3u8
|
||||
J●週末奴●,https://vip2.slbfsl.com/20230322/g0dyTocH/index.m3u8
|
||||
FIRST IMPRESSION 148cmなのにスタイル抜群Eカップ!思わずギュッとしたくなるあざと可愛いお姉さん,https://vip2.slbfsl.com/20230322/BBbXt6wu/index.m3u8
|
||||
H杯現役保育員,https://vip2.slbfsl.com/20230322/aFRVaaWa/index.m3u8
|
||||
Ma○ko Device BondageIX 鉄拘束マ○コ拷問,https://vip2.slbfsl.com/20230322/r5F1XGWM/index.m3u8
|
||||
M髒話面具,https://vip2.slbfsl.com/20230323/NB0yo3qS/index.m3u8
|
||||
あ~もしもし俺俺w俺だけどw今よお前んとこの嫁さんと、SEXしてるから,https://vip2.slbfsl.com/20230323/T7Hu6uw9/index.m3u8
|
||||
あの時のセフレは,https://vip2.slbfsl.com/20230324/0Nqi20S8/index.m3u8
|
||||
イキそうになっても責めるの止めないよ?,https://vip2.slbfsl.com/20230324/TZDbcqDt/index.m3u8
|
||||
|
||||
亚洲情色2线,#genre#
|
||||
|
||||
极品网红辛尤里被金手指刺激挑逗爽到表情都控制不了~,https://vip1.slbfsl.com/20230102/bFMn4Etd/index.m3u8
|
||||
姐姐用身体给弟弟上生理知识课~,https://vip1.slbfsl.com/20230103/b0Ox7RgT/index.m3u8
|
||||
卷发小野猫各种姿势道具玩弄粉嫩逼逼玩得白浆直流!,https://vip1.slbfsl.com/20230106/OsQc9POm/index.m3u8
|
||||
老公出差和炮友偷情的丽江夫妇,https://vip1.slbfsl.com/20230108/ezUk1DH4/index.m3u8
|
||||
愧疚的哥哥酒后强奸了妹妹!,https://vip1.slbfsl.com/20230108/elyKEKti/index.m3u8
|
||||
美丽善良的家政妇被迫沦为富家少爷的玩物!,https://vip1.slbfsl.com/20230109/ufnXOXcE/index.m3u8
|
||||
柚子猫Yuzukitty-足交,https://vip2.slbfsl.com/20230114/JO0ltISZ/index.m3u8
|
||||
我與上司的不倫之戀,https://vip2.slbfsl.com/20230119/smCZKP2i/index.m3u8
|
||||
怦然心動的小姐姐,https://vip2.slbfsl.com/20230119/CH6kYcxV/index.m3u8
|
||||
縱欲小姑強上快遞員到高潮,https://vip2.slbfsl.com/20230120/IqvGFBgV/index.m3u8
|
||||
母子愉悅亂倫-蘭心潔,https://vip2.slbfsl.com/20230122/nMEGNNnv/index.m3u8
|
||||
約啪搞上高冷黑絲秘書,https://vip2.slbfsl.com/20230123/hDsPvs6l/index.m3u8
|
||||
無良公公設計強上親兒媳-香菱,https://vip2.slbfsl.com/20230124/iocGokF2/index.m3u8
|
||||
婚紗之戀-琳達,https://vip2.slbfsl.com/20230124/dOWoaVWS/index.m3u8
|
||||
讓我欲罷不能的小姨-椿芽,https://vip2.slbfsl.com/20230125/nOSJUwW1/index.m3u8
|
||||
穿着白丝诱惑 被就地正法!,https://vip2.slbfsl.com/20230129/FUYLnKgp/index.m3u8
|
||||
粉丝大作战,https://vip2.slbfsl.com/20230130/q9763iKS/index.m3u8
|
||||
黄瓜招待所自拍新片-按摩桑拿篇,https://vip2.slbfsl.com/20230201/593R2o2j/index.m3u8
|
||||
黑丝御姐献祭 榨精召唤,https://vip2.slbfsl.com/20230201/Pdy5kRG3/index.m3u8
|
||||
黑丝美足瓦弄润滑油,https://vip2.slbfsl.com/20230201/nZ9DCe7n/index.m3u8
|
||||
酒店浴室被真假粗屌前后夹击 干的高潮不断,https://vip2.slbfsl.com/20230203/rsJtfx0P/index.m3u8
|
||||
同学会上遇旧情,https://vip2.slbfsl.com/20230205/qG1KAGM4/index.m3u8
|
||||
刘玥最好的一次口交,https://vip2.slbfsl.com/20230206/1W7jG1Gx/index.m3u8
|
||||
玩偶姐姐 晨钟 暮鼓,https://vip2.slbfsl.com/20230226/urqMfWXJ/index.m3u8
|
||||
热恋小情侣自拍,手机丢失外泄,清纯校花被操的表情痛苦,https://vip2.slbfsl.com/20230322/zSyO8lVy/index.m3u8
|
||||
援交的妹子咋都这么有颜值又漂亮啊 我咋没遇到过这么漂亮的,https://vip2.slbfsl.com/20230323/TGDipN58/index.m3u8
|
||||
探花系列-约个高档外围打一炮,https://vip2.slbfsl.com/20230407/JFICSrAn/index.m3u8
|
||||
顔值不錯妹子,舌吻逼摸後入抽插上位騎乘猛操,https://vip2.slbfsl.com/20230413/heNRuagt/index.m3u8
|
||||
情趣红娘自慰成癮,https://vip1.slbfsl.com/20221214/pAVqCU4s/index.m3u8
|
||||
精油胴体的妹子被炮机不停抽插强制高潮,https://vip1.slbfsl.com/20221214/zrrSG5jC/index.m3u8
|
||||
安娜貝干用純愛愛來打破詛咒part-2,https://vip1.slbfsl.com/20221214/3639yVto/index.m3u8
|
||||
开操黑丝极品白虎鲍鱼!bb紧嫩又好操!,https://vip1.slbfsl.com/20230106/VweJ1E8U/index.m3u8
|
||||
妹妹分手了姐姐替补上了妹夫的床,https://vip1.slbfsl.com/20230111/JPilfmkl/index.m3u8
|
||||
18岁高三学妹口交合集必撸精品,https://vip2.slbfsl.com/20230115/S570RS5N/index.m3u8
|
||||
貼身秘書-小芳,https://vip2.slbfsl.com/20230115/8nKcn1fX/index.m3u8
|
||||
莞式服務-黃仙仙,https://vip2.slbfsl.com/20230115/KslmkJtn/index.m3u8
|
||||
綠帽殺手-馮雪,https://vip2.slbfsl.com/20230115/BIkMDDkC/index.m3u8
|
||||
我在微信撩妹妹-蘇婧薇,https://vip2.slbfsl.com/20230115/Bk13iTIa/index.m3u8
|
||||
别样的健身操-茉莉白英,https://vip2.slbfsl.com/20230118/sFXyww5f/index.m3u8
|
||||
都是疫情惹的祸-茉莉王玥,https://vip2.slbfsl.com/20230118/1BsggQPV/index.m3u8
|
||||
黑道大姐心2,https://vip2.slbfsl.com/20230119/1SHEGYO7/index.m3u8
|
||||
憨厚老哥被勾引狂操縱欲表妹,https://vip2.slbfsl.com/20230120/CM9yd6gH/index.m3u8
|
||||
約啪HOT到家part7,https://vip2.slbfsl.com/20230121/zJLlCJX3/index.m3u8
|
||||
敘舊表妹約啪兼職,https://vip2.slbfsl.com/20230121/5lvrz6L1/index.m3u8
|
||||
大白特烦恼之白菜换炮3,https://vip2.slbfsl.com/20230122/3JvhjN4a/index.m3u8
|
||||
金牌销售的秘密-兰心洁,https://vip2.slbfsl.com/20230122/f5cf5nxo/index.m3u8
|
||||
公公雙飛二兒媳,https://vip2.slbfsl.com/20230123/3yYLEi4v/index.m3u8
|
||||
爱丝袜的Vivian姐_芭蕾舞小姐姐,https://vip2.slbfsl.com/20230125/lJ8JtXJK/index.m3u8
|
||||
白领OL下班后想冷靜一下,https://vip2.slbfsl.com/20230126/w4rBjnbs/index.m3u8
|
||||
白丝体操服的诱惑,https://vip2.slbfsl.com/20230126/hwoUteei/index.m3u8
|
||||
白丝粉鲍jk学生妹初次开苞,https://vip2.slbfsl.com/20230126/205dJigP/index.m3u8
|
||||
邦妮和铁粉的22分钟做爱实录,https://vip2.slbfsl.com/20230126/1O7BOtL2/index.m3u8
|
||||
在丈夫旁邊被強行掠奪 紫月由香里,https://vip2.slbfsl.com/20230128/8eHUFJBO/index.m3u8
|
||||
秘書美麗家畜俱樂部鋼棒目標情報落到了地上,https://vip2.slbfsl.com/20230421/b7VDouA4/index.m3u8
|
||||
秘書在…(威脅套房),https://vip2.slbfsl.com/20230421/vktodFcC/index.m3u8
|
||||
小哥哥用器具玩弄完小穴后抽插做爱,https://vip1.slbfsl.com/20221213/ZTKXAAol/index.m3u8
|
||||
《极乐按摩湿》屁眼不可以掰开!,https://vip1.slbfsl.com/20221214/WsjyDepT/index.m3u8
|
||||
极品甜美短发小姐姐和蜘蛛侠炮友激情做爱!,https://vip1.slbfsl.com/20230101/BnjNShbR/index.m3u8
|
||||
害我忍不住的帮她扣逼 再抱起来用力操!,https://vip1.slbfsl.com/20230103/jaRPxyvI/index.m3u8
|
||||
可爱妹子在沙发上自慰后和小哥哥在床上抽插做爱!,https://vip1.slbfsl.com/20230106/1yaT5kzG/index.m3u8
|
||||
来自房东偷窥的爱《桃依依》,https://vip1.slbfsl.com/20230108/PVX7NQ3g/index.m3u8
|
||||
刘玥-青少年尝试新玩具-第1部分-Pornhub玩具拆箱!,https://vip1.slbfsl.com/20230109/pFr1Jk7f/index.m3u8
|
||||
旅馆偷拍身材很棒的大奶炮友,https://vip1.slbfsl.com/20230109/nTaSwVrl/index.m3u8
|
||||
妹子自带振动棒手扣bb振动棒刺激阴蒂!被干虚脱~,https://vip1.slbfsl.com/20230110/QSTJEf0S/index.m3u8
|
||||
爱丝袜Vivian姐永久会员定制版流出,https://vip1.slbfsl.com/20230111/1nfOwzoy/index.m3u8
|
||||
诱惑我的家庭教师,https://vip2.slbfsl.com/20230114/hE0xvBYn/index.m3u8
|
||||
乖巧順從的表妹,https://vip2.slbfsl.com/20230116/zyxaE6TJ/index.m3u8
|
||||
周末宅家插妹妹,https://vip2.slbfsl.com/20230116/PQbDrctt/index.m3u8
|
||||
署假來我家玩的表妹,https://vip2.slbfsl.com/20230116/KDF1tDJ8/index.m3u8
|
||||
咖啡廳的放蕩,https://vip2.slbfsl.com/20230118/fshMtWWs/index.m3u8
|
||||
咖啡廳的放蕩(下),https://vip2.slbfsl.com/20230118/bsAYboHh/index.m3u8
|
||||
雨夜裡出軌鄰居,https://vip2.slbfsl.com/20230118/TlKVtym4/index.m3u8
|
||||
美麗的繼母,https://vip2.slbfsl.com/20230119/s0ZdlzPY/index.m3u8
|
||||
黑道大姐心,https://vip2.slbfsl.com/20230119/1AIKbrjS/index.m3u8
|
||||
顱內高潮,https://vip2.slbfsl.com/20230119/K9VelWK1/index.m3u8
|
||||
我是綠帽奴,https://vip2.slbfsl.com/20230119/Cf9fUd6S/index.m3u8
|
||||
貨車司機強上年輕小姨子,https://vip2.slbfsl.com/20230120/cvNg4AJu/index.m3u8
|
||||
异形玩具1 初次蜜穴扩张(下),https://vip2.slbfsl.com/20230121/EqA9ns27/index.m3u8
|
||||
慾望之旅欲火x海灘x露營車,https://vip2.slbfsl.com/20230122/rXTTrmeS/index.m3u8
|
||||
爱丝袜的Vivian姐_最新小护士情趣打闹,骑乘叫床声妖艳又有一丝清纯!,https://vip2.slbfsl.com/20230125/2RMUrxul/index.m3u8
|
||||
下海援交日記之墮落的網紅,https://vip2.slbfsl.com/20230125/eIo8P4fC/index.m3u8
|
||||
白虎校花让我无套玩弄 振动器调情,https://vip2.slbfsl.com/20230126/soTEHcxl/index.m3u8
|
||||
超美网红模特自慰了解一下?,https://vip2.slbfsl.com/20230128/m7SxYkn9/index.m3u8
|
||||
孕奸肥美岳母,https://vip2.slbfsl.com/20230128/HlkV4zpK/index.m3u8
|
||||
单亲妈妈与儿子的不伦爱恋,https://vip2.slbfsl.com/20230129/GMR4WD5W/index.m3u8
|
||||
刚认识的极品空姐约到酒店交欢,https://vip2.slbfsl.com/20230130/PRiVebRB/index.m3u8
|
||||
黑丝美脚大量润滑足交,https://vip2.slbfsl.com/20230131/hbzzVwEr/index.m3u8
|
||||
护士小姐姐的取精服务,https://vip2.slbfsl.com/20230201/cbJ4QSzm/index.m3u8
|
||||
湖南某高校师生门第一部,https://vip2.slbfsl.com/20230201/vJmB1DD5/index.m3u8
|
||||
黑丝诱惑萝莉道具自慰,https://vip2.slbfsl.com/20230201/euD4C3Uj/index.m3u8
|
||||
极品车模身材超好,逼还很紧真爽,https://vip2.slbfsl.com/20230202/0grsyEA2/index.m3u8
|
||||
街头搭讪到车上试用炮机情趣用品,https://vip2.slbfsl.com/20230203/PRJeWLSb/index.m3u8
|
||||
酒店经理溜进房间帮你释放,https://vip2.slbfsl.com/20230203/6Qs7lDFk/index.m3u8
|
||||
可爱少年在B中乱搞假阳具,https://vip2.slbfsl.com/20230204/eVtWAp3w/index.m3u8
|
||||
看到洗完澡的妹子欲火焚身,妹子口活不错,https://vip2.slbfsl.com/20230204/dYzklLVM/index.m3u8
|
||||
老婆老婆妳要乖1,https://vip2.slbfsl.com/20230205/73ZVt4Qn/index.m3u8
|
||||
辣妹炮机插入后大屌速插,https://vip2.slbfsl.com/20230205/H0CrdQqO/index.m3u8
|
||||
楼道里的激情,https://vip2.slbfsl.com/20230206/HyylA0p5/index.m3u8
|
||||
没有大屌用水瓶代替,双脚轻抚似足交,https://vip2.slbfsl.com/20230207/P3HYkkHi/index.m3u8
|
||||
秘书的呻吟,https://vip2.slbfsl.com/20230208/uLOLkrIU/index.m3u8
|
||||
珍娜直播打蜡起阴毛,https://vip2.slbfsl.com/20230225/So0W485a/index.m3u8
|
||||
操年轻极品大奶妹 穿上牛仔裤屁股很翘!,https://vip2.slbfsl.com/20230227/tYkuphUy/index.m3u8
|
||||
酒吧搭讪漂亮小姐姐约到酒店调情口交啪啪!,https://vip2.slbfsl.com/20230302/a7rIqa3b/index.m3u8
|
||||
双马尾黄发妹和粉丝约炮被狂插,https://vip2.slbfsl.com/20230310/BjHV9qDF/index.m3u8
|
||||
深夜户外野战,https://vip2.slbfsl.com/20230315/gTH9uRCD/index.m3u8
|
||||
割破牛仔裤直接操 3,https://vip2.slbfsl.com/20230318/Rt2Fn12f/index.m3u8
|
||||
割破牛仔裤直接操1,https://vip2.slbfsl.com/20230318/MupvQSo7/index.m3u8
|
||||
高端车模私会土豪自拍外泄,激烈碰撞,高潮迭起,https://vip2.slbfsl.com/20230322/ysPXROTu/index.m3u8
|
||||
高三学妹手机丢失自拍外泄小穴粉嫩阴毛超多,https://vip2.slbfsl.com/20230322/Fzd1SFRO/index.m3u8
|
||||
探花系列-酒店约操外围妹子,https://vip2.slbfsl.com/20230407/H3SRdDcX/index.m3u8
|
||||
撕开紧身裤强上李秋月,她居然念起了诗?(下),https://vip2.slbfsl.com/20230410/KL4QMPNR/index.m3u8
|
||||
小情侣上完课直接回宿舍开~,https://vip2.slbfsl.com/20230411/d2rcQgGq/index.m3u8
|
||||
约了个黑帽长相甜美妹子啪啪抽插侧入猛操,https://vip2.slbfsl.com/20230415/EHDntr72/index.m3u8
|
||||
这奶又大又圆,配合度也挺高,https://vip2.slbfsl.com/20230417/d1YZLSEV/index.m3u8
|
||||
3000网约大一兼职学生妹!,https://vip2.slbfsl.com/20230422/m3h1ziwF/index.m3u8
|
||||
两小伙破处找老鸡,https://vip1.slbfsl.com/20221031/KkvDZamG/index.m3u8
|
||||
萌白酱史上最美白虎,https://vip1.slbfsl.com/20221101/mRCNWNJB/index.m3u8
|
||||
萌白酱(甜味弥漫)之小熊套装,https://vip1.slbfsl.com/20221101/DzK6wTJE/index.m3u8
|
||||
萌鹿鹿跳脱衣舞小伙忍不住直接中出了她,https://vip1.slbfsl.com/20221101/gGKqQkJ5/index.m3u8
|
||||
山西布政司跟有夫之妇约聊天,https://vip1.slbfsl.com/20221104/7tPob7E2/index.m3u8
|
||||
上门服务的大学生援交妹被操到受不了,https://vip1.slbfsl.com/20221104/JXHJRaOT/index.m3u8
|
||||
上半身在窗外下半身在做爱,https://vip1.slbfsl.com/20221104/dQRlHgTc/index.m3u8
|
||||
台湾学生妹成绩不及格用身体换分数,https://vip1.slbfsl.com/20221105/vBz92gz8/index.m3u8
|
||||
微博嫩妹的牛仔裤迷情,https://vip1.slbfsl.com/20221107/Dwo18Gbi/index.m3u8
|
||||
微博网红萌兰酱大尺度自拍黑丝电动水晶棒插穴,https://vip1.slbfsl.com/20221107/r4PeHZAo/index.m3u8
|
||||
小姐姐啪啪秀用筷子插B鸡蛋塞菊花,https://vip1.slbfsl.com/20221108/n56qYL4K/index.m3u8
|
||||
喷汗体育妹全力开干,https://vip1.slbfsl.com/20221113/iNBtSuGc/index.m3u8
|
||||
撸管口交后入猛操抱起来操 很是诱惑喜欢不要错过,https://vip1.slbfsl.com/20221203/JSeC69qX/index.m3u8
|
||||
强推漂亮大一嫩妹,https://vip1.slbfsl.com/20221204/VMXM0Dxu/index.m3u8
|
||||
从进来电影院就一直在弄我 台上刘亦菲杀敌!,https://vip2.slbfsl.com/20230422/TXWMkqOp/index.m3u8
|
||||
丰满的Suzuna深喉无码,https://vip1.slbfsl.com/20221031/QR6nSy9j/index.m3u8
|
||||
服从你的小底底让他完全喷发,https://vip1.slbfsl.com/20221031/RBISynUg/index.m3u8
|
||||
夫妇交换温泉之旅,https://vip1.slbfsl.com/20221031/Vdq38qOe/index.m3u8
|
||||
奉献身体的介护士考试波多野结衣,https://vip1.slbfsl.com/20221031/EyTiqx9G/index.m3u8
|
||||
高潮不断的逼最后喷尿,https://vip1.slbfsl.com/20221101/wRhZJkcz/index.m3u8
|
||||
韩三级穿越古今,https://vip1.slbfsl.com/20221102/GcfqkPP3/index.m3u8
|
||||
和妹妹搞得翻天覆地,https://vip1.slbfsl.com/20221102/eHIDrj21/index.m3u8
|
||||
喝酒喝得多越好操弄,https://vip1.slbfsl.com/20221102/FUn72wRV/index.m3u8
|
||||
娇喘的诱惑声,https://vip1.slbfsl.com/20221103/p40AVST1/index.m3u8
|
||||
禁忌的欲情在丈夫眼前被侵犯,https://vip1.slbfsl.com/20221105/PBboo9Wv/index.m3u8
|
||||
紧缚研究所,https://vip1.slbfsl.com/20221105/Z1zlHxVg/index.m3u8
|
||||
禁欲10デイズヤリたい衝動MAXセックス3,https://vip1.slbfsl.com/20221105/8LCfwOeX/index.m3u8
|
||||
解开束缚的我,https://vip1.slbfsl.com/20221105/ZpKOuzdm/index.m3u8
|
||||
口交传奇,https://vip1.slbfsl.com/20221106/njyOoj7c/index.m3u8
|
||||
口交的极致艺术,https://vip1.slbfsl.com/20221106/ScaO4DXr/index.m3u8
|
||||
裤子一脱准备榨干,https://vip1.slbfsl.com/20221106/cpA19kbV/index.m3u8
|
||||
口交的训练课程,https://vip1.slbfsl.com/20221106/LIuP0f8H/index.m3u8
|
||||
蕾丝边激情秘密抚摸浪舔敏感处,https://vip1.slbfsl.com/20221108/Vm1zIOhB/index.m3u8
|
||||
老公打来了不要在插进来了,https://vip1.slbfsl.com/20221108/TN0YOpnO/index.m3u8
|
||||
两只蝴蝶穴,https://vip1.slbfsl.com/20221109/53S8McUT/index.m3u8
|
||||
路边搭讪马上就上,https://vip1.slbfsl.com/20221110/mUFyTZls/index.m3u8
|
||||
买保险就让你干,https://vip1.slbfsl.com/20221110/YWCEpgNa/index.m3u8
|
||||
美丽黑发保育员来照顾你,https://vip1.slbfsl.com/20221110/FTX5eALM/index.m3u8
|
||||
美丽蕾丝边体交,https://vip1.slbfsl.com/20221110/sKkKUb4a/index.m3u8
|
||||
美胸敏感地带开发让她不自觉叫出来,https://vip1.slbfsl.com/20221112/Ru0oV7iT/index.m3u8
|
||||
梦想荡妇3姐妹,https://vip1.slbfsl.com/20221113/btrEeFaW/index.m3u8
|
||||
妹子小穴图鉴01,https://vip1.slbfsl.com/20221113/Q2VzWBYs/index.m3u8
|
||||
妹子小穴图鉴02,https://vip1.slbfsl.com/20221113/xXIgUdOs/index.m3u8
|
||||
夢なら覚めないで ?最高のシチュエーションでななみゆいとエッチ?,https://vip1.slbfsl.com/20221113/rriNcwSb/index.m3u8
|
||||
前后双穴猛插,https://vip1.slbfsl.com/20221114/t0LeF4G0/index.m3u8
|
||||
欠了债只能用身体偿还,https://vip1.slbfsl.com/20221114/fNTYEcSS/index.m3u8
|
||||
青梅竹马在我面前被轮奸,https://vip1.slbfsl.com/20221114/rofILHBA/index.m3u8
|
||||
请让我吃你的精液,https://vip1.slbfsl.com/20221115/AXK3DlG1/index.m3u8
|
||||
日本流氓肏与Honoka原,https://vip1.slbfsl.com/20221116/yowKFUG2/index.m3u8
|
||||
三上悠亚唯一无码片,https://vip1.slbfsl.com/20221117/U4OZT7Zr/index.m3u8
|
||||
三上悠亚唯一破坏版无码片,https://vip1.slbfsl.com/20221117/ABcKIKd0/index.m3u8
|
||||
上原亚衣无码私处特写加勒比,https://vip1.slbfsl.com/20221117/6slDk34m/index.m3u8
|
||||
神棍占卜如果你不做爱你会不开心的,https://vip1.slbfsl.com/20221117/6s3ucljL/index.m3u8
|
||||
慎入SM远赴东赢圣水调教日本胖狗,https://vip1.slbfsl.com/20221117/uHH7o7aU/index.m3u8
|
||||
私处亲密清洁,https://vip1.slbfsl.com/20221120/mr0jpLXo/index.m3u8
|
||||
跳蛋按摩棒高潮下的严刑逼问,https://vip1.slbfsl.com/20221121/C7dSBFkt/index.m3u8
|
||||
天生的荡妇与大叔们的连续中出,https://vip1.slbfsl.com/20221121/tEULSMdb/index.m3u8
|
||||
秘書in… 脅迫,https://vip2.slbfsl.com/20230225/6dbSPpOv/index.m3u8
|
||||
親友に贈る意味深な失恋ソング 初恋,https://vip2.slbfsl.com/20230226/vC1DTnAU/index.m3u8
|
||||
晩中ヤリまくった,https://vip2.slbfsl.com/20230302/w1xrtzgD/index.m3u8
|
||||
卒業したて純まんこに極ヤバちんぽブチ込み中出し1,https://vip2.slbfsl.com/20230304/MC8mESUu/index.m3u8
|
||||
☆LUNA☆ 天使と悪魔 ?my both side? Vol.2,https://vip2.slbfsl.com/20230305/zhlMMzte/index.m3u8
|
||||
9頭身P活ギャル_超絶モデルボディを舐り回し生ハメ中出し,https://vip2.slbfsl.com/20230305/Os1XFyQj/index.m3u8
|
||||
-感度抜群ビンビンガール!,https://vip2.slbfsl.com/20230308/3PJC7wYO/index.m3u8
|
||||
-流出版-吉澤明步無碼流出2!,https://vip2.slbfsl.com/20230310/dsDE7Ml0/index.m3u8
|
||||
SVO-KS-085 ミミちゃん,https://vip2.slbfsl.com/20230318/333M4sHu/index.m3u8
|
||||
Suppin業餘?De S的Suppin娘?,https://vip2.slbfsl.com/20230323/EkfjYnqH/index.m3u8
|
||||
ンテージコスでいじめてあげるね,https://vip1.slbfsl.com/20221027/sz3V1Nbq/index.m3u8
|
||||
未公開 尻コキ尻コキ尻コキ,https://vip1.slbfsl.com/20221027/RgiiDtOz/index.m3u8
|
||||
高級ソープへようこそ柴田さつき,https://vip1.slbfsl.com/20221101/l1vvWYYR/index.m3u8
|
||||
高級ソープへようこそ美星るか,https://vip1.slbfsl.com/20221101/hMktP1ir/index.m3u8
|
||||
「キミだけに見て欲しいの…」勝負下着姿を見られたあの日から、妹の絶倫彼氏とこっそり何度も中出しセックスをしているワタシ…。 月乃露娜,https://vip2.slbfsl.com/20230129/SSjj6p7Q/index.m3u8
|
||||
悪質クレーマー親父に謝罪失禁しながら何度も中出しされたワタシ… 月乃露娜,https://vip2.slbfsl.com/20230130/aArtIKto/index.m3u8
|
||||
每天被母親的再婚對象強姦 水原美園,https://vip2.slbfsl.com/20230131/n1x6y4nv/index.m3u8
|
||||
密室完全監禁 黑川紗里奈,https://vip2.slbfsl.com/20230203/NrKzHe1X/index.m3u8
|
||||
潜入捜査官、堕ちるまで… 被験体?コードネームサクラ 白鳥南,https://vip2.slbfsl.com/20230203/HEm9SiWZ/index.m3u8
|
||||
絕對不能出聲的情況下 被天音真比奈逆痴漢?應該想更激烈才對吧? 天音真比奈,https://vip2.slbfsl.com/20230205/qEyOj3TY/index.m3u8
|
||||
0年間ずっと片想いしていたクラスメイトを同窓会の今日キメセクで堕としてみせる miru,https://vip2.slbfsl.com/20230205/SZZYTZF5/index.m3u8
|
||||
變得漂亮得比以前完全不一樣 唯井真尋,https://vip2.slbfsl.com/20230207/4G6gG0wg/index.m3u8
|
||||
J○中出しのの。極太ディルドでJ○ウブマン貫通!1cm1万円チャレンジ!撮って出しマジックミラー号 前乃菜菜,https://vip2.slbfsl.com/20230208/hiz8iiKz/index.m3u8
|
||||
潜入!!噂のリンパマッサージ店 12「裏オプション、いかがなさいますか?」 水川楓 吉根柚莉愛 兒玉玲奈,https://vip2.slbfsl.com/20230208/rQZhTXwn/index.m3u8
|
||||
おっぱい道 姫咲華,https://vip2.slbfsl.com/20230210/3Ik08OfG/index.m3u8
|
||||
前回から日にちが経って、また寂しくなった,https://vip2.slbfsl.com/20230226/mIqqKX1v/index.m3u8
|
||||
奇跡の五十路-part 2,https://vip2.slbfsl.com/20230226/hLqRNExy/index.m3u8
|
||||
言わんばかりの出来事が今夜繰り広げられていきます,https://vip2.slbfsl.com/20230302/JY2aFSQF/index.m3u8
|
||||
義母奴隷-Part 3,https://vip2.slbfsl.com/20230303/vxY5Rnq4/index.m3u8
|
||||
中に出された精子は膣圧で最後の一滴まで搾り取ります!1,https://vip2.slbfsl.com/20230304/xN9WFg3a/index.m3u8
|
||||
日本-を我慢できたら生中出し,https://vip2.slbfsl.com/20230307/bw2uDrIL/index.m3u8
|
||||
-東京熱激情串起專刊!,https://vip2.slbfsl.com/20230308/1UZH5fQD/index.m3u8
|
||||
-横浜の指名No.1メンズエステ嬢とハメたい!,https://vip2.slbfsl.com/20230309/caex2DSV/index.m3u8
|
||||
-會っていきなりハメられちゃったは!,https://vip2.slbfsl.com/20230309/itiqxAFm/index.m3u8
|
||||
-両穴を餌に誘惑してくる近所の奥さん!,https://vip2.slbfsl.com/20230310/EeUdiBWz/index.m3u8
|
||||
-敏感パイパンスレンダーギャルと中出し3P!,https://vip2.slbfsl.com/20230311/FaGRxRsE/index.m3u8
|
||||
-生ハメ中出し!,https://vip2.slbfsl.com/20230313/xpDnFvp8/index.m3u8
|
||||
-生ハメ!中イキ!!連続昇天!,https://vip2.slbfsl.com/20230313/BKFPRFah/index.m3u8
|
||||
-KS-084 べに,https://vip2.slbfsl.com/20230318/m4whdQhe/index.m3u8
|
||||
60分で3発抜けたら賞金ゲット!,https://vip2.slbfsl.com/20230322/vKJRBtpg/index.m3u8
|
||||
Momokarin,https://vip2.slbfsl.com/20230323/aGI6L5nw/index.m3u8
|
||||
W 地獄相姦,https://vip2.slbfsl.com/20230323/VvTMOaJ7/index.m3u8
|
||||
SOD酒吧轉移,https://vip2.slbfsl.com/20230323/2XUueN7k/index.m3u8
|
||||
いちゃいちゃプレイが好きという,https://vip2.slbfsl.com/20230324/xhF4q5VN/index.m3u8
|
||||
おもちゃで責められていやらしいお汁は大洪水,https://vip2.slbfsl.com/20230325/rMvZ7Cza/index.m3u8
|
||||
この誘惑に負けて担任の僕は教え子とゴムなしSEXしてしまった,https://vip2.slbfsl.com/20230327/MaiJHiPG/index.m3u8
|
||||
まい スペシャル版~,https://vip2.slbfsl.com/20230402/3T4dQRcR/index.m3u8
|
||||
ラグジュアリー&リッチ,https://vip2.slbfsl.com/20230403/PiOaq4XV/index.m3u8
|
||||
愛する夫の為に、私は彼の上司と寝ます,https://vip2.slbfsl.com/20230404/fzMzFF8Q/index.m3u8
|
||||
耳かきリフレ #裏オプ #J系5名 #02,https://vip2.slbfsl.com/20230405/xdfGABK7/index.m3u8
|
||||
超加速するピストンで何度も中出し!,https://vip2.slbfsl.com/20230406/Reg54yes/index.m3u8
|
||||
出張先が記録的豪雨で童貞部下と突然相部屋に…,https://vip2.slbfsl.com/20230407/Kt4P1Fft/index.m3u8
|
||||
打開腿的空姐,https://vip2.slbfsl.com/20230408/t6ohBcw9/index.m3u8
|
||||
大嫌いな上司だったのに…,https://vip2.slbfsl.com/20230409/Q5NHHM1U/index.m3u8
|
||||
教え子に脅され犯●れて…,https://vip2.slbfsl.com/20230415/nshNeC4A/index.m3u8
|
||||
禁欲後の絶頂3本番エッチッチ,https://vip2.slbfsl.com/20230416/hsxaa8ZH/index.m3u8
|
||||
拘束アンソロジー,https://vip2.slbfsl.com/20230416/ooYlhhnk/index.m3u8
|
||||
拷問地獄,https://vip2.slbfsl.com/20230416/OfMKq0b0/index.m3u8
|
||||
夢のドライオーガズム開発!,https://vip2.slbfsl.com/20230421/hwA8uLB8/index.m3u8
|
||||
絶倫親父と中出ししまくって何度も中イキ昇天しまくっていた,https://vip2.slbfsl.com/20230324/BYqmgo97/index.m3u8
|
||||
アブノーマルカップルによる変態NTRプレイの一部始終,https://vip2.slbfsl.com/20230324/0gMA2gxh/index.m3u8
|
||||
あなたの為なら一晩だけ上司に抱かれてきます,https://vip2.slbfsl.com/20230324/7ye0nuSs/index.m3u8
|
||||
お嬢様学校 お仕置き倶楽部レズビアン,https://vip2.slbfsl.com/20230325/LDUBaSao/index.m3u8
|
||||
お釣り渡す時に手をぎゅっと握ってくれるコンビニ店員の子が,https://vip2.slbfsl.com/20230325/AijPBr8B/index.m3u8
|
||||
エロス覚醒 はじめての大?痙?攣&大洪水,https://vip2.slbfsl.com/20230325/u0LEM9YA/index.m3u8
|
||||
エロ過ぎる美尻に極上パイパンと気持ちよすぎてなんでもしちゃうエロ盛り沢山SEX,https://vip2.slbfsl.com/20230325/W6G432ez/index.m3u8
|
||||
えない大嫌いな部下と出張先の温泉旅館,https://vip2.slbfsl.com/20230325/sNJ1wZDu/index.m3u8
|
||||
おじさんってみんなドMなんでしょ,https://vip2.slbfsl.com/20230325/t1QKaXsB/index.m3u8
|
||||
これは永久保存版!,https://vip2.slbfsl.com/20230327/B4CoUkSB/index.m3u8
|
||||
ゴールドエンジェル Vol.17,https://vip2.slbfsl.com/20230327/3AAv9T2w/index.m3u8
|
||||
この動画で抜く度に、心の中で私を思い出してね,https://vip2.slbfsl.com/20230327/olwpJRoC/index.m3u8
|
||||
セフレを持ち寄りスワッピング会を開催!,https://vip2.slbfsl.com/20230329/v5Uwsjlj/index.m3u8
|
||||
ちんぽ大好き即尺おしゃぶり,https://vip2.slbfsl.com/20230329/BxD5wbjB/index.m3u8
|
||||
保育士を夢見る清楚な大学生,https://vip2.slbfsl.com/20230404/3Jq6kB4o/index.m3u8
|
||||
本◎望◎ 風な雰囲気,https://vip2.slbfsl.com/20230405/WoqnGZws/index.m3u8
|
||||
楚系に見えてもの淒くド変態娘が我を忘れてイキまくるッ!,https://vip2.slbfsl.com/20230408/bRUVrGyW/index.m3u8
|
||||
從今以後這就是愛的巢穴,https://vip2.slbfsl.com/20230408/fLPdf5h9/index.m3u8
|
||||
大量潮吹きで失神寸前!!,https://vip2.slbfsl.com/20230408/j3d2GQih/index.m3u8
|
||||
大好きたっぷり濡らされて準備は萬端,https://vip2.slbfsl.com/20230408/1kx0XrPA/index.m3u8
|
||||
終始楽しそう 気持ちよさそうなエッチ,https://vip2.slbfsl.com/20230409/hgwElV3Z/index.m3u8
|
||||
大興奮たまらずリアル暴発,https://vip2.slbfsl.com/20230409/iiyG1ou7/index.m3u8
|
||||
国際線CA勤続2年目 #彼氏あり #フェラ #豊満尻,https://vip2.slbfsl.com/20230412/SxQiTCt5/index.m3u8
|
||||
教師としてあってはならない、純愛,https://vip2.slbfsl.com/20230415/Qdnrc8nD/index.m3u8
|
||||
流出版-笹倉杏無碼流出,https://vip2.slbfsl.com/20230224/R13Kv5f1/index.m3u8
|
||||
流出版-藤原ひとみ無碼流出,https://vip2.slbfsl.com/20230224/ooUT2a8X/index.m3u8
|
||||
乱行大好き娘x2と子作り4P天国,https://vip2.slbfsl.com/20230224/5O6H6G2v/index.m3u8
|
||||
強制深喉嚨,https://vip2.slbfsl.com/20230226/uYLUrLda/index.m3u8
|
||||
全国統一小悪魔検定No.1,https://vip2.slbfsl.com/20230226/FhHRQHSm/index.m3u8
|
||||
偶像一起滑雪,https://vip2.slbfsl.com/20230226/VgFgEyRQ/index.m3u8
|
||||
入院中にオナニーしようとしたらナースが邪魔しに来る,https://vip2.slbfsl.com/20230227/oKqadTFv/index.m3u8
|
||||
四六時中、娘婿のデカチ○ポが欲しくて堪らない義母の誘い,https://vip2.slbfsl.com/20230228/mtxwdh3p/index.m3u8
|
||||
体液で交感する絶え間ない官能セックス,https://vip2.slbfsl.com/20230228/PuC2esWT/index.m3u8
|
||||
-東熱大乱交2013 Part3!,https://vip2.slbfsl.com/20230308/hMYDqZDX/index.m3u8
|
||||
-夫には言えない… 義父に犯●れ続けていることを…!,https://vip2.slbfsl.com/20230308/ul112MXE/index.m3u8
|
||||
-東熱流3穴破壊カン!,https://vip2.slbfsl.com/20230308/gagzlQzc/index.m3u8
|
||||
-何でも出来るって思われる!,https://vip2.slbfsl.com/20230309/GdySTP6c/index.m3u8
|
||||
-喉と口の馬にイラ硫黄トレーニングを共同で実施させる!,https://vip2.slbfsl.com/20230309/DbZpDbW5/index.m3u8
|
||||
-黒猫スミス原作 禁断の寝込み相姦コミック続編!,https://vip2.slbfsl.com/20230309/ZzH6ze7y/index.m3u8
|
||||
-何か鈴って、リア充でセレブでムカつくから好き放題レ×プしてもらったんだ!,https://vip2.slbfsl.com/20230309/j17nny4t/index.m3u8
|
||||
-帰省先の田舎はヤルことない…!,https://vip2.slbfsl.com/20230309/kVrjtNS5/index.m3u8
|
||||
-母娘強制懐妊 絶望実況配信!,https://vip2.slbfsl.com/20230311/1hmnhaqN/index.m3u8
|
||||
妹とのギリギリ相姦未満生活 奏音かのん,https://vip2.slbfsl.com/20230315/dFKV7dyV/index.m3u8
|
||||
冷たいディープキス ヴァレンタリッチ,https://vip2.slbfsl.com/20230317/W1jdeaxE/index.m3u8
|
||||
欲求不満の兄嫁と家庭内不倫… JULIA,https://vip2.slbfsl.com/20230317/DegIqmCG/index.m3u8
|
||||
完全ノーカットスペシャル 新名あみん,https://vip2.slbfsl.com/20230318/ndQhur9K/index.m3u8
|
||||
11P大乱交…最も過激な引退作,https://vip2.slbfsl.com/20230320/O9lMrx9g/index.m3u8
|
||||
大痙攣超大量潮吹き3本番,https://vip2.slbfsl.com/20230322/PgFZs5eu/index.m3u8
|
||||
DQN達に全身固定され失禁マグナムピストンFUCK,https://vip2.slbfsl.com/20230322/Yae5E91d/index.m3u8
|
||||
SUPER BEST,https://vip2.slbfsl.com/20230323/t1rPcIXP/index.m3u8
|
||||
OLを会社帰りに鬼中出し,https://vip2.slbfsl.com/20230323/Vk23ZbOZ/index.m3u8
|
||||
Sクラスレンドンホットフロー嬲kan徹底トレーニング,https://vip2.slbfsl.com/20230323/eaJTGWlk/index.m3u8
|
||||
いつでもどこでもシコシコピュッピュッ!,https://vip2.slbfsl.com/20230324/xLazGnXV/index.m3u8
|
||||
あべみかこ 解体新書,https://vip2.slbfsl.com/20230324/ZbA7Qfd2/index.m3u8
|
||||
アタッカーズ全面監修 夫の目の前で犯されて,https://vip2.slbfsl.com/20230324/90GKDPIo/index.m3u8
|
||||
エリートOL調教日誌 アナルの快感に奴隷堕ち,https://vip2.slbfsl.com/20230325/b06Fk0zU/index.m3u8
|
||||
エロみのあるハメ撮り盗撮-part 1,https://vip2.slbfsl.com/20230325/4pSGV5S4/index.m3u8
|
||||
エスワン解禁,https://vip2.slbfsl.com/20230325/xDPMMUga/index.m3u8
|
||||
オレ専用家政婦,https://vip2.slbfsl.com/20230325/tTrmE09j/index.m3u8
|
||||
ギネス級!何されても笑顔!雌鳴き笑點,https://vip2.slbfsl.com/20230326/CdGbZcTZ/index.m3u8
|
||||
くちびるにチェリー 童貞くん筆下ろしバンザイ,https://vip2.slbfsl.com/20230326/wPoqxKnj/index.m3u8
|
||||
カフェ娘連鎖痴●2 営業中の店内でイキ堕ちた言いなり店員を利用する数珠つなぎ痴●計画,https://vip2.slbfsl.com/20230326/B6FJ5g2M/index.m3u8
|
||||
クロニクル Vol.3,https://vip2.slbfsl.com/20230326/ueauzOhd/index.m3u8
|
||||
この子ヤバイ!!顔面最強ガールの密着セックス,https://vip2.slbfsl.com/20230327/I7OGhdIq/index.m3u8
|
||||
サマーヌード ?温泉旅行で潮吹き三昧?,https://vip2.slbfsl.com/20230327/BMquSPKj/index.m3u8
|
||||
スカイエンジェル Vol.176,https://vip2.slbfsl.com/20230328/GWYgKKB3/index.m3u8
|
||||
ジュルジュルといやらしく音を立てるヨダレまみれの濃密全身リップ,https://vip2.slbfsl.com/20230328/Tzx56vxb/index.m3u8
|
||||
スーパーモデルメディア,https://vip2.slbfsl.com/20230328/Az2ABQqK/index.m3u8
|
||||
ジュニア○○ンピッ○背泳ぎ100m金メダリスト 奇跡のかわいさ奇跡の肢体,https://vip2.slbfsl.com/20230328/DrMKGxVT/index.m3u8
|
||||
ちょっとした衝撃で折れてしまいそうな程に華奢な極細スレンダーボディのキレイなお姉さん!,https://vip2.slbfsl.com/20230329/7yAZSaxN/index.m3u8
|
||||
そらちゃんラストセックス&童貞筆おろし,https://vip2.slbfsl.com/20230329/RSbj5ghn/index.m3u8
|
||||
とろっとろに糸引くスケベな匂いの唾液をたっぷり飲ませてくれて,https://vip2.slbfsl.com/20230330/lf9ROizq/index.m3u8
|
||||
ねっとり長舌でチ○ポ吸いっぱなし 顔に出すまでフェラさせて,https://vip2.slbfsl.com/20230331/1gDas1Tt/index.m3u8
|
||||
パラダイス?キララ,https://vip2.slbfsl.com/20230331/e89p8lWS/index.m3u8
|
||||
パパ活で会えた!元アイドル,https://vip2.slbfsl.com/20230331/h8Q40Po7/index.m3u8
|
||||
めてのハメ撮りに緊張の60分,https://vip2.slbfsl.com/20230402/PnCdf8ix/index.m3u8
|
||||
みさちゃん 垢抜けない地方出身の地味子2回目の登場!,https://vip2.slbfsl.com/20230402/OxxSAgjt/index.m3u8
|
||||
また出ちゃった、いろんな意味で。,https://vip2.slbfsl.com/20230402/MYuz2VRo/index.m3u8
|
||||
ほろ酔い姿が可愛すぎる!,https://vip2.slbfsl.com/20230402/JiGeHhAS/index.m3u8
|
||||
もっともっとエッチしたい!,https://vip2.slbfsl.com/20230403/5OPLwiHN/index.m3u8
|
||||
レッドホットフェティッシュコレクション – The 四十八手,https://vip2.slbfsl.com/20230403/AumExP7L/index.m3u8
|
||||
ル舐め手コキお風呂プレイ,https://vip2.slbfsl.com/20230403/WasMHdIG/index.m3u8
|
||||
ローションエロダンス Vol.3,https://vip2.slbfsl.com/20230404/kwwyRz7l/index.m3u8
|
||||
ロリコン専用ソープらんど4,https://vip2.slbfsl.com/20230404/hnt5LdCX/index.m3u8
|
||||
本気の中出しセックスをするための最後の旅に出ませんか?,https://vip2.slbfsl.com/20230405/lOd7XeDd/index.m3u8
|
||||
挿入する瞬間が好き…,https://vip2.slbfsl.com/20230405/bKcycw3V/index.m3u8
|
||||
部活日誌 ?剣道部?,https://vip2.slbfsl.com/20230406/rlWgaJXy/index.m3u8
|
||||
出会い系サイトで出会ったユミちゃん!,https://vip2.slbfsl.com/20230407/IFCOVv1J/index.m3u8
|
||||
催●エロテロ大炎上!暴走したリスナーと中出し,https://vip2.slbfsl.com/20230408/57EAPJun/index.m3u8
|
||||
大嫌いなセクハラ巨漢上司に種付プレスで孕ませレ,https://vip2.slbfsl.com/20230408/tx7nIOxU/index.m3u8
|
||||
得意で優しいむちむちお姉さんソープ嬢,https://vip2.slbfsl.com/20230409/fSWYAriG/index.m3u8
|
||||
地元で有名な超絶ヤリマンギャルに何発も精子を搾り取,https://vip2.slbfsl.com/20230409/W4qumNML/index.m3u8
|
||||
電車癡漢跟蹤..入侵自宅,https://vip2.slbfsl.com/20230409/nIp1HmRR/index.m3u8
|
||||
東熱流汁治療,https://vip2.slbfsl.com/20230410/isRQj64n/index.m3u8
|
||||
東京ホット輪姦2013パート1,https://vip2.slbfsl.com/20230410/AItFaYor/index.m3u8
|
||||
東熱無限嬲カン汁,https://vip2.slbfsl.com/20230410/tkw2WdYw/index.m3u8
|
||||
東京熱Gachiwakan,https://vip2.slbfsl.com/20230410/Hovn0UcH/index.m3u8
|
||||
高級ソープへようこそ,https://vip2.slbfsl.com/20230411/3YITXNqK/index.m3u8
|
||||
感度良し、フェラテク良し!ギャルの絶頂イキまくりSEX見逃すな!,https://vip2.slbfsl.com/20230411/mWhTe8xl/index.m3u8
|
||||
感度200%の敏感スペシャルEカップスレンダー再び,https://vip2.slbfsl.com/20230411/VPN3BBJJ/index.m3u8
|
||||
給餌、投獄、脱出,https://vip2.slbfsl.com/20230412/C6bOgBeN/index.m3u8
|
||||
鬼フェラ鬼ピストン汗だくぶっかけ体液まみれSEX,https://vip2.slbfsl.com/20230412/zIAddmOE/index.m3u8
|
||||
行列が出来るチ○ポ‐実写版,https://vip2.slbfsl.com/20230413/08fDbivb/index.m3u8
|
||||
汗.唾液.愛液.潮.SEX,https://vip2.slbfsl.com/20230413/OlBLQDsv/index.m3u8
|
||||
汗と唾液の臭いに塗れて、彼氏の前で何度も子宮に注がれる濃厚精液…あゝ中が熱い…妊娠しちゃう…。,https://vip2.slbfsl.com/20230413/G6P2V9Z7/index.m3u8
|
||||
極上泡姫物語,https://vip2.slbfsl.com/20230414/eq7AIMkD/index.m3u8
|
||||
激烈ハードに3穴責め!!Vol.2,https://vip2.slbfsl.com/20230414/4bQnoC5j/index.m3u8
|
||||
極上泡姫物語 Vol.99,https://vip2.slbfsl.com/20230414/etQiQNFP/index.m3u8
|
||||
巨根でポルチオ開発 オーガズムヴァギナを追撃ピストン潮吹き覚醒アクメ,https://vip2.slbfsl.com/20230416/wp5UjJV6/index.m3u8
|
||||
口止めの代償に無茶苦茶に潮を吹かされた私,https://vip2.slbfsl.com/20230416/PaPjvpLR/index.m3u8
|
||||
絕望罐,https://vip2.slbfsl.com/20230416/d3nkUPV5/index.m3u8
|
||||
連續18汁,https://vip2.slbfsl.com/20230418/tdYKSdt4/index.m3u8
|
||||
流出版-本多成実無碼流出,https://vip2.slbfsl.com/20230418/caPz8G0b/index.m3u8
|
||||
溜池ゴロー15周年YEARコラボ第8弾,https://vip2.slbfsl.com/20230418/NnQLZMf5/index.m3u8
|
||||
露出デート?アウトドアで潮吹き放題?,https://vip2.slbfsl.com/20230419/d3H2pKTn/index.m3u8
|
||||
毎日中出しされていたなんて知らなかった。,https://vip2.slbfsl.com/20230419/b4pnJAl3/index.m3u8
|
||||
炉利系U155㎝ちびっ娘特集part2,https://vip2.slbfsl.com/20230419/vKmsn6Sv/index.m3u8
|
||||
流出版-中裡美穂無碼流出,https://vip2.slbfsl.com/20230419/WqMCcFvP/index.m3u8
|
||||
露出温泉不倫旅行 11 後編,https://vip2.slbfsl.com/20230419/LWLKVlB0/index.m3u8
|
||||
美貌も愛嬌も満點奧様,https://vip2.slbfsl.com/20230420/4FyGcvKe/index.m3u8
|
||||
南部デートパート1のSEX,https://vip2.slbfsl.com/20230421/1erMFhLl/index.m3u8
|
||||
秘蔵マンコセレクション ~梢のオマンコ見てください~,https://vip2.slbfsl.com/20230421/upy0gUiS/index.m3u8
|
||||
面接メンエス盗撮 リンカさん,https://vip2.slbfsl.com/20230421/73goiTqA/index.m3u8
|
||||
濃厚、密着、セックス,https://vip2.slbfsl.com/20230422/Mn78CI75/index.m3u8
|
||||
泥酔ハンター vol.01,https://vip2.slbfsl.com/20230422/qckIS9oT/index.m3u8
|
||||
を脱ぎます 野本裕子,https://vip1.slbfsl.com/20221026/3n6fUe0p/index.m3u8
|
||||
近所の遊び好きノーブラ奥さん 杉山千佳,https://vip1.slbfsl.com/20221026/HYFuJL5Q/index.m3u8
|
||||
息子の友達の制御不能な絶倫交尾でイカされ続けて…,https://vip1.slbfsl.com/20220928/3HcUdYoJ/index.m3u8
|
||||
破壞版- ゆうちゃんといっしょに、エロDVDを作りました。 3,https://vip2.slbfsl.com/20230226/mpFmZiJB/index.m3u8
|
||||
束縛訓練文件,https://vip2.slbfsl.com/20230228/qoM3Jqme/index.m3u8
|
||||
熟袋,https://vip2.slbfsl.com/20230228/08DEY4Lw/index.m3u8
|
||||
日本-超過剰サービスで疲労も精子もぶっ飛ぶ,https://vip2.slbfsl.com/20230307/sx6Wr9k0/index.m3u8
|
||||
-東熱完全破壊カン!,https://vip2.slbfsl.com/20230308/p1RU5Cv7/index.m3u8
|
||||
-夫の目の前で犯されて!,https://vip2.slbfsl.com/20230308/PtS82nxU/index.m3u8
|
||||
-夫の存在を感じながら義父と途方もなく密着し濃厚に求め合った7日間!,https://vip2.slbfsl.com/20230308/hNb05kJ8/index.m3u8
|
||||
-絶対的鉄板シチュエーション20!,https://vip2.slbfsl.com/20230310/KhCMgg0n/index.m3u8
|
||||
-離婚覚悟の不倫旅行でずっとSEX!,https://vip2.slbfsl.com/20230310/pYwkXEvQ/index.m3u8
|
||||
-絶対的下から目線 おもてなし庵!,https://vip2.slbfsl.com/20230310/z5v4GcED/index.m3u8
|
||||
-敏感に感じてとろけたような表情が美しい妖艶SEXを見逃すな!!!,https://vip2.slbfsl.com/20230311/XF1SM1Ml/index.m3u8
|
||||
-凄テクを我慢できれば生★中出しSEX!,https://vip2.slbfsl.com/20230312/ZjFBaj5T/index.m3u8
|
||||
-気絶するくらいイカせて!!,https://vip2.slbfsl.com/20230312/OFSefjQy/index.m3u8
|
||||
-私が追い込まれ続けるセックス!,https://vip2.slbfsl.com/20230314/sEsjd8jz/index.m3u8
|
||||
おいしいカラダ,https://vip2.slbfsl.com/20230315/Z0zwKUjk/index.m3u8
|
||||
なんか出るまでイラマチオ4,https://vip2.slbfsl.com/20230317/Hb5mcabJ/index.m3u8
|
||||
Friendship Slave,https://vip2.slbfsl.com/20230322/zKOkQdpI/index.m3u8
|
||||
Gカップ以上限定!,https://vip2.slbfsl.com/20230322/PnX3rgDj/index.m3u8
|
||||
TREASURE-Part 3,https://vip2.slbfsl.com/20230323/BJtGZyPF/index.m3u8
|
||||
て ここまでの潮吹きドマゾ雌犬に…,https://vip2.slbfsl.com/20230323/FM9PhhZH/index.m3u8
|
||||
NTR調教の名手,https://vip2.slbfsl.com/20230323/GETeH0vt/index.m3u8
|
||||
いじわるご奉仕 癒しの巨尻ソープ嬢,https://vip2.slbfsl.com/20230324/tKNGuoUm/index.m3u8
|
||||
アナタは黙って寝てなさい!,https://vip2.slbfsl.com/20230324/jka1kzg1/index.m3u8
|
||||
究極のオナサポ作品を作りました,https://vip2.slbfsl.com/20230324/IqzcrfXJ/index.m3u8
|
||||
咥え暴発確定おしゃぶり天国!,https://vip2.slbfsl.com/20230325/H6Ph3Q45/index.m3u8
|
||||
お待たせしました。中出し解禁,https://vip2.slbfsl.com/20230325/jvdoC9MK/index.m3u8
|
||||
嫁の連れ子4姉妹を固定バイブ調教,https://vip2.slbfsl.com/20230325/gsQaBgUn/index.m3u8
|
||||
グラマーミッシーのストーカー,https://vip2.slbfsl.com/20230326/oJJvSJS2/index.m3u8
|
||||
コロナ自粛応援2本入りサービスパックVol.5,https://vip2.slbfsl.com/20230327/fYnea5tp/index.m3u8
|
||||
この春K大学卒業 就職前にパコ三昧,https://vip2.slbfsl.com/20230327/BqOYNJ58/index.m3u8
|
||||
スポコス汗だくSEX4本番! 体育会系,https://vip2.slbfsl.com/20230328/dsFkEzQZ/index.m3u8
|
||||
じゅな(25) Gカップのパイパインマ○コに中出し,https://vip2.slbfsl.com/20230328/6pVBawew/index.m3u8
|
||||
ツンデレ妹が無防備に毎日パンチラ誘惑してくる,https://vip2.slbfsl.com/20230329/wGtJceve/index.m3u8
|
||||
そのまま內部に中出しです,https://vip2.slbfsl.com/20230329/Vm73up3u/index.m3u8
|
||||
たっぷりのベロチューで愛のあるスローセックス,https://vip2.slbfsl.com/20230329/u49b4tir/index.m3u8
|
||||
だった事に気づかずそのまま即挿入!,https://vip2.slbfsl.com/20230329/wneOjXdB/index.m3u8
|
||||
ナチュラルハイ年末スペシャル 忘年会痴●,https://vip2.slbfsl.com/20230329/ZoNC9r6J/index.m3u8
|
||||
キ過ぎたサービスが話題の神風俗,https://vip2.slbfsl.com/20230330/lcIu8MxE/index.m3u8
|
||||
ドMだからわかる痛みのその先にある非日常の快楽!,https://vip2.slbfsl.com/20230330/ufvHIDZU/index.m3u8
|
||||
どっきり!!,https://vip2.slbfsl.com/20230330/Cumhd1Au/index.m3u8
|
||||
なく..私のコスプレとHな身体を見てほしい,https://vip2.slbfsl.com/20230330/JmVPhvx6/index.m3u8
|
||||
ドジだけど可愛いインターンをハメまくる,https://vip2.slbfsl.com/20230330/VIzHhXfO/index.m3u8
|
||||
ハロウィンはコスプレしてパコりたい。あいみ Hカップ,https://vip2.slbfsl.com/20230330/gwTyZEmE/index.m3u8
|
||||
ハメ撮り面接,https://vip2.slbfsl.com/20230330/zWEeijwb/index.m3u8
|
||||
ハロウィンはコスプレしてパコりたい。つばさ Eカップ,https://vip2.slbfsl.com/20230330/Tr2O1qum/index.m3u8
|
||||
ネトラレーゼ 部下とまさか…,https://vip2.slbfsl.com/20230331/IHiP8uAF/index.m3u8
|
||||
虜になり旦那が壊れるまで,https://vip2.slbfsl.com/20230331/twfipFnn/index.m3u8
|
||||
パイパン隠れビッチに中出し,https://vip2.slbfsl.com/20230331/fVaCGPtI/index.m3u8
|
||||
ムチムチ誘惑パンチラ 従妹ちゃん,https://vip2.slbfsl.com/20230402/tnxMnBAf/index.m3u8
|
||||
まんぐり中出しセックス,https://vip2.slbfsl.com/20230402/9HmMf7pT/index.m3u8
|
||||
マックスエー全作品コンプリートBEST4時間,https://vip2.slbfsl.com/20230402/y4Yivn9w/index.m3u8
|
||||
ロリっ娘天国サンドイッチ 自慢のカラダで仲良くチ,https://vip2.slbfsl.com/20230404/ZBLaylUf/index.m3u8
|
||||
ヲタサーの姫は転生したい,https://vip2.slbfsl.com/20230404/qUdV0BFv/index.m3u8
|
||||
を輩を使って犯しまくってヤッた。,https://vip2.slbfsl.com/20230404/w7RYXWCK/index.m3u8
|
||||
?抜ける映像ダラケ! スペシャル版?,https://vip2.slbfsl.com/20230404/7cZhw0rr/index.m3u8
|
||||
抜ける映像ダラケ2 スペシャル版?,https://vip2.slbfsl.com/20230404/MZFA7vot/index.m3u8
|
||||
親戚全員集めて復讐種付け孕ませ輪●,https://vip2.slbfsl.com/20230404/MwlgPEeU/index.m3u8
|
||||
ロングヘアー4Pレズビアン!,https://vip2.slbfsl.com/20230404/RIgcEFOk/index.m3u8
|
||||
安シェアハウスの入居審査はチ○コ,https://vip2.slbfsl.com/20230403/1XAmnHvt/index.m3u8
|
||||
白ギャル☆媚薬キメセク☆アヘ顔ロンパリーノ,https://vip2.slbfsl.com/20230404/aoLok0PE/index.m3u8
|
||||
俺だけの尻コス娘あやみ,https://vip2.slbfsl.com/20230404/y53xII2C/index.m3u8
|
||||
を寢取ってください 82,https://vip2.slbfsl.com/20230404/5Bm6BKp7/index.m3u8
|
||||
慢できればソーププレイで完全ご奉仕します!,https://vip2.slbfsl.com/20230404/WxzVzmqK/index.m3u8
|
||||
被濃厚的汁液覆蓋,https://vip2.slbfsl.com/20230404/BvSuDPiX/index.m3u8
|
||||
超!透け透けスケベ学園,https://vip2.slbfsl.com/20230405/v1r1nGGI/index.m3u8
|
||||
超高級中出し専門ソープ リリー,https://vip2.slbfsl.com/20230405/ZJZOXM43/index.m3u8
|
||||
超高級風俗100名店-Part 2,https://vip2.slbfsl.com/20230405/krqwIbkg/index.m3u8
|
||||
変態娘たちのエロエロSEX-Part 1,https://vip2.slbfsl.com/20230405/D1jEKFUT/index.m3u8
|
||||
超豪華ハーレム大亂交同窓會夢,https://vip2.slbfsl.com/20230405/OW8dR3QY/index.m3u8
|
||||
赤熱戀物癖集合Vol.106,https://vip2.slbfsl.com/20230407/COIBibsK/index.m3u8
|
||||
出張先の溫泉接待でムリやり相部屋濃厚神宮寺ナオ,https://vip2.slbfsl.com/20230407/M5nf57iM/index.m3u8
|
||||
出張先で軽蔑している中年セクハラ上司とまさかの相部屋に,https://vip2.slbfsl.com/20230407/nZasgBFh/index.m3u8
|
||||
痴●夏祭り2021 中出しスペシャル,https://vip2.slbfsl.com/20230406/qXmvvx4L/index.m3u8
|
||||
恥ずかしいカラダ 黒い太陽,https://vip2.slbfsl.com/20230406/ygkyY9gR/index.m3u8
|
||||
春まで待てない決意の卒業大乱交,https://vip2.slbfsl.com/20230408/wwDLcX1C/index.m3u8
|
||||
大嫌いなセクハラ上司に出張先で無理ヤリ相部屋にさせられた私,https://vip2.slbfsl.com/20230408/ptpYnXKo/index.m3u8
|
||||
從那天起,我就成了一隻順從的寵物,https://vip2.slbfsl.com/20230408/X9CgSq7z/index.m3u8
|
||||
從北海道帶來特別伴手禮的19歲北海道馬,https://vip2.slbfsl.com/20230408/9QtP4G7E/index.m3u8
|
||||
初中出し解禁,https://vip2.slbfsl.com/20230408/mYncTbug/index.m3u8
|
||||
初めてのお泊りデート 手を繋いで、,https://vip2.slbfsl.com/20230408/yeeRUuTi/index.m3u8
|
||||
初めての喉奥貫通,https://vip2.slbfsl.com/20230408/ddAwwXkW/index.m3u8
|
||||
東京は情熱的で素晴らしいです,https://vip2.slbfsl.com/20230409/wxoD5ukC/index.m3u8
|
||||
旦那の事はとりあええ置いときます,https://vip2.slbfsl.com/20230409/S22BULh6/index.m3u8
|
||||
旦那には内緒でチェリーボーイの筆おろしVol.6,https://vip2.slbfsl.com/20230409/bpnjEvoM/index.m3u8
|
||||
東熱大乱交Part1,https://vip2.slbfsl.com/20230409/i4mgaDP2/index.m3u8
|
||||
東京熱釜山果汁,https://vip2.slbfsl.com/20230409/lPrKF7Tk/index.m3u8
|
||||
毒キノコのような亀頭を持つ部長編,https://vip2.slbfsl.com/20230409/0r5n3K1W/index.m3u8
|
||||
都合の良い高級ランジェリーモデル クライアントの要求を断れない言いなりMオナホ,https://vip2.slbfsl.com/20230409/5Sn8iwRz/index.m3u8
|
||||
東熱20連中出し,https://vip2.slbfsl.com/20230409/Nss80OPQ/index.m3u8
|
||||
好きだった家庭教師のお姉さんが俺の親父に寝取られ種付けプレスされていた,https://vip2.slbfsl.com/20230413/QPOw6cor/index.m3u8
|
||||
激揉み!激突き!激いじり!,https://vip2.slbfsl.com/20230413/1AVKSWQQ/index.m3u8
|
||||
幻のドライブデート,https://vip2.slbfsl.com/20230413/C2xcWhRq/index.m3u8
|
||||
飢えた喉奥 念願の口内蹂躙,https://vip2.slbfsl.com/20230413/D5XBpMOV/index.m3u8
|
||||
激ヤバ!! スケベ中出し露出3,https://vip2.slbfsl.com/20230413/gBg0K3xt/index.m3u8
|
||||
極限尻穴調教,https://vip2.slbfsl.com/20230413/kjYXaT0L/index.m3u8
|
||||
ス愛撫で止まらない潮吹,https://vip2.slbfsl.com/20230413/jnmy0DjD/index.m3u8
|
||||
激しい責めで、飾りたてた私を壊してください,https://vip2.slbfsl.com/20230413/7njmBeb9/index.m3u8
|
||||
ス覚醒 はじめての大?痙?攣スペシャル,https://vip2.slbfsl.com/20230413/sR753CPB/index.m3u8
|
||||
混浴痴漢-Part 1,https://vip2.slbfsl.com/20230413/cKakDoK6/index.m3u8
|
||||
教育実習生が巨根と聞きつけ校内中どこでも求愛,https://vip2.slbfsl.com/20230415/Ic2MnyFN/index.m3u8
|
||||
今日、ハメちゃいました。19~,https://vip2.slbfsl.com/20230415/DDEHfxPx/index.m3u8
|
||||
脚フェチSEX!-Part 1,https://vip2.slbfsl.com/20230415/iQogPVnZ/index.m3u8
|
||||
結婚式帰りナンパ -Part 1,https://vip2.slbfsl.com/20230415/RU8I2xxa/index.m3u8
|
||||
服従のメイド孕ませ輪姦,https://vip2.slbfsl.com/20230415/WqMfueAx/index.m3u8
|
||||
家族思いの優しい子,https://vip2.slbfsl.com/20230415/Pi8Yk9La/index.m3u8
|
||||
完全ノーカットスペシャル 香水じゅん,https://vip2.slbfsl.com/20230415/o1ebABE1/index.m3u8
|
||||
教室で何してんの?キャンプ?ウチらもやっちゃう,https://vip2.slbfsl.com/20230415/Q667yeEj/index.m3u8
|
||||
解禁中出し エビ反りギュイン!痙攣ビクビク!,https://vip2.slbfsl.com/20230415/lXdXbkzP/index.m3u8
|
||||
焦らし寸止め絶頂セックス ACT.02,https://vip2.slbfsl.com/20230415/2rrVXDkg/index.m3u8
|
||||
教師資格喪失墮落設想的小便池2?,https://vip2.slbfsl.com/20230415/lVQJgNBm/index.m3u8
|
||||
禁忌BEST VOL.15,https://vip2.slbfsl.com/20230415/xA5ENAxM/index.m3u8
|
||||
禁断の超密着サンドイッチ逆3P,https://vip2.slbfsl.com/20230415/MA45xOuz/index.m3u8
|
||||
尽きない快楽、愛液にまみれて,https://vip2.slbfsl.com/20230415/MWdItvIi/index.m3u8
|
||||
絶倫オヤジに脅迫され来る日も来る日も不潔チ,https://vip2.slbfsl.com/20230416/X7LdShVv/index.m3u8
|
||||
絶倫おじさんによる2日間ぶっ通しM開発,https://vip2.slbfsl.com/20230416/iXoplr6D/index.m3u8
|
||||
空を飛べるほど気持ちいいセックスをしてみたい,https://vip2.slbfsl.com/20230416/fPKu3yT8/index.m3u8
|
||||
絶倫弟のデカチンで初めてのポルチオ失禁連続アクメ,https://vip2.slbfsl.com/20230416/VXGAWdZG/index.m3u8
|
||||
絶対領域 むっちり太もも制服チラリズム 生脚アイドルの究極挑発,https://vip2.slbfsl.com/20230416/2NeUR96i/index.m3u8
|
||||
可愛フェイスに助平ちゃんがかくれんぼ墮天使,https://vip2.slbfsl.com/20230416/SfxoBzOm/index.m3u8
|
||||
絶対服従奴僕,https://vip2.slbfsl.com/20230416/6YXhmB4Y/index.m3u8
|
||||
涙のノンストップ激イカせSEX,https://vip2.slbfsl.com/20230418/67Ijea4v/index.m3u8
|
||||
流出版-みひろ無碼流出,https://vip2.slbfsl.com/20230418/v74q14bQ/index.m3u8
|
||||
豊かな海より雄大なHcup沖縄,https://vip2.slbfsl.com/20230418/SQC0p33z/index.m3u8
|
||||
イキっぱなし痺れっぱなし限界突破限界突破ピストン,https://vip2.slbfsl.com/20230418/Xg86g7ec/index.m3u8
|
||||
SODstar 11 SEX,https://vip2.slbfsl.com/20230418/VQ6EjOwt/index.m3u8
|
||||
矢野沙紀無碼流出1,https://vip2.slbfsl.com/20230419/9u2cKYCy/index.m3u8
|
||||
美雪艾莉絲無碼流出,https://vip2.slbfsl.com/20230419/dEYPZ68k/index.m3u8
|
||||
尻伝説,https://vip2.slbfsl.com/20230419/yPt01XFI/index.m3u8
|
||||
吉澤明步無碼流出-Part 1,https://vip2.slbfsl.com/20230419/e9Hg48kB/index.m3u8
|
||||
-佳山三花無碼流出,https://vip2.slbfsl.com/20230419/Or1aVhlB/index.m3u8
|
||||
美先生の学べる授業付き,https://vip2.slbfsl.com/20230420/SEtAJkpE/index.m3u8
|
||||
美しく交わり合う 汗だくレズビアン,https://vip2.slbfsl.com/20230420/vyuhL8El/index.m3u8
|
||||
美尻×美脚、パンストフェティシズム,https://vip2.slbfsl.com/20230420/9ZnJoCL9/index.m3u8
|
||||
美腿連褲襪蕩婦,https://vip2.slbfsl.com/20230420/I2Jhl4GX/index.m3u8
|
||||
尻を徹底的に責めつくす汗だくSEX,https://vip2.slbfsl.com/20230420/gCPPB46L/index.m3u8
|
||||
美しいお姉さんのネバスペ,https://vip2.slbfsl.com/20230420/YZF1MoZu/index.m3u8
|
||||
美しきスーパーボディ捜査官,https://vip2.slbfsl.com/20230420/8bocLMgM/index.m3u8
|
||||
美脚OL秘部異物混入謝罪カン,https://vip2.slbfsl.com/20230420/t3tAixjk/index.m3u8
|
||||
魅惑のおっぱい奴隷 07 欲情マ○コにたっぷり中出し,https://vip2.slbfsl.com/20230421/DyvPHQwO/index.m3u8
|
||||
夢のデカチン大乱交 超連撃ピストンSpecial,https://vip2.slbfsl.com/20230421/prdDT7jT/index.m3u8
|
||||
敏腕オンナ上司を犯ル!,https://vip2.slbfsl.com/20230421/6Y79OX54/index.m3u8
|
||||
夢の共演Wパイパン中出し-Part 1,https://vip2.slbfsl.com/20230421/OmmrixP5/index.m3u8
|
||||
密室監禁調教,https://vip2.slbfsl.com/20230421/Kr6dMiDi/index.m3u8
|
||||
悶絶サンドイッチ輪姦 お尻はらめぇ,https://vip2.slbfsl.com/20230421/Y7cjjeZF/index.m3u8
|
||||
みを吐き出す不貞交尾,https://vip2.slbfsl.com/20230421/57qfprhk/index.m3u8
|
||||
密著ドキュメントFILE.06 元アイドルにして、未だ成長中のセックスモンスター,https://vip2.slbfsl.com/20230421/LUAqOfDp/index.m3u8
|
||||
奴隷宣告,https://vip2.slbfsl.com/20230422/OFUBCBht/index.m3u8
|
||||
濃厚オヤジ達に朝まで中出しされた私,https://vip2.slbfsl.com/20230422/Ln5C78Ap/index.m3u8
|
||||
娘の進学のために、喉ボコごっくんイラマチオを受け入れた母親の私,https://vip2.slbfsl.com/20230422/NpoLG38q/index.m3u8
|
||||
逆バニーでボクを誘惑 杭打ち騎乗位中出しプレス,https://vip2.slbfsl.com/20230422/iO2NqAiF/index.m3u8
|
||||
奴●メイドの館 ~主従のレズビアンお嬢様~,https://vip2.slbfsl.com/20230422/qq5whUxX/index.m3u8
|
||||
逆転マジックミラー号 自慢のムチ尻,https://vip2.slbfsl.com/20230422/Vl1sxkKb/index.m3u8
|
||||
怒涛の5名全員中出し達成!,https://vip2.slbfsl.com/20230422/luWnKQhM/index.m3u8
|
||||
|
||||
亚洲情色3线,#genre#
|
||||
|
||||
いっぱい触って!お潮吹くまでイキたいの!,https://vip2.slbfsl.com/20230324/M3YyQYrL/index.m3u8
|
||||
アナル中出し乱交ファック,https://vip2.slbfsl.com/20230324/WRHJzorm/index.m3u8
|
||||
エリートOLのド下品ハメ撮り★鬼バッ,https://vip2.slbfsl.com/20230325/b3utelTa/index.m3u8
|
||||
おじさんに調教されまくる浴衣乱れる温泉デート,https://vip2.slbfsl.com/20230325/DNWGjmhO/index.m3u8
|
||||
おんなのこのしくみ ~いつもチンコすすった後はラーメン,https://vip2.slbfsl.com/20230325/D2AeLWl0/index.m3u8
|
||||
ゲームと精子が大好きです,https://vip2.slbfsl.com/20230326/7l8gdPGC/index.m3u8
|
||||
すっぴんメガネ地味子-Part 2,https://vip2.slbfsl.com/20230328/XcwIlysl/index.m3u8
|
||||
スカイエンジェル 169 PLUS,https://vip2.slbfsl.com/20230328/bnpfxBex/index.m3u8
|
||||
ソープ嬢ももさんと絶倫中出しセックスにドハマりしたボク,https://vip2.slbfsl.com/20230329/zLAewDC5/index.m3u8
|
||||
デカサン ~親にバレたくないのでサングラスは絶対外さないでください,https://vip2.slbfsl.com/20230329/suyq5jzJ/index.m3u8
|
||||
ダチのチッパイ姉ちゃんとセフレ関係に,https://vip2.slbfsl.com/20230329/zBqsPgRm/index.m3u8
|
||||
なまなかだし,https://vip2.slbfsl.com/20230330/B6nZhU3q/index.m3u8
|
||||
ノリノリ野外露出でおマ○コ濡れ濡れ?スリルで感じるメチャかわメイドとゴム無し連続アクメSEX,https://vip2.slbfsl.com/20230331/Ef0aSK0B/index.m3u8
|
||||
まるっと!,https://vip2.slbfsl.com/20230402/UCsmNKIr/index.m3u8
|
||||
まーいつもナンパしてますね,https://vip2.slbfsl.com/20230402/4yZ0AeqQ/index.m3u8
|
||||
ホテル忍び込み生ハメSEX隠し撮り,https://vip2.slbfsl.com/20230402/wZUyhkA3/index.m3u8
|
||||
リラ豪雨で帰宅不能になった介護ヘルパーが朝まで絶倫高齢者とセックスした全記録,https://vip2.slbfsl.com/20230403/nYuP0UAd/index.m3u8
|
||||
モチモチおっぱいの初接客シングルマザー回春エステ嬢,https://vip2.slbfsl.com/20230403/ArjGvIOI/index.m3u8
|
||||
愛液が溢れ出す敏感娘-Part 1,https://vip2.slbfsl.com/20230404/97M7j5JM/index.m3u8
|
||||
変態むすめのカラダに落書きしちゃいました!!,https://vip2.slbfsl.com/20230406/TzbhOCZx/index.m3u8
|
||||
朝ゴミ出しする近所の遊び好きノーブラ奥,https://vip2.slbfsl.com/20230407/5bbbmvUR/index.m3u8
|
||||
初キス×初SEX×初中出し,https://vip2.slbfsl.com/20230408/oQVgIAah/index.m3u8
|
||||
大學生情侶上情趣酒店,https://vip2.slbfsl.com/20230409/DftpQcfN/index.m3u8
|
||||
旦那に嘘をついて残業しています…,https://vip2.slbfsl.com/20230409/N5i9kuQj/index.m3u8
|
||||
瘋狂盛開的蕩婦,https://vip2.slbfsl.com/20230411/hjc7upvs/index.m3u8
|
||||
高身長169cm超絶エロいい體,https://vip2.slbfsl.com/20230412/cLTnw7Ir/index.m3u8
|
||||
激しいピストン大好きな茶道部J系!,https://vip2.slbfsl.com/20230414/3vLneTKh/index.m3u8
|
||||
極上のキャバ嬢-Part 3,https://vip2.slbfsl.com/20230414/eM3KuIs4/index.m3u8
|
||||
浣腸魔,https://vip2.slbfsl.com/20230414/K5o9vBim/index.m3u8
|
||||
結婚二十年目の四十八歳熟膣大量中出しみき,https://vip2.slbfsl.com/20230415/p4e6SVks/index.m3u8
|
||||
看護師26歳-Part 2,https://vip2.slbfsl.com/20230417/LRY2Mvth/index.m3u8
|
||||
隷ソープに堕とされたCA,https://vip2.slbfsl.com/20230418/80Kpjwkq/index.m3u8
|
||||
臉和搖頭,https://vip2.slbfsl.com/20230418/OTH8Fzt5/index.m3u8
|
||||
満足度95%以上の家事代行サービスはここが違う,https://vip2.slbfsl.com/20230419/rJIrVujF/index.m3u8
|
||||
逆3Pハーレム同窓会,https://vip2.slbfsl.com/20230422/Y6uS4uQ0/index.m3u8
|
||||
目の肥えた視聴者が選んだ,https://vip2.slbfsl.com/20230225/Az07cNsV/index.m3u8
|
||||
清純を装って喰い散らかしにきただけの腰かけヤリマン新入社員,https://vip2.slbfsl.com/20230226/qfjQ8zDH/index.m3u8
|
||||
我一直想見你,https://vip2.slbfsl.com/20230301/R724AzbN/index.m3u8
|
||||
Hカップ恵体グラドル 安位カヲル エロス覚醒はじめての大?痙?攣スペシャル,https://vip2.slbfsl.com/20230305/oPyUMMKr/index.m3u8
|
||||
★★★★★ 五ツ星ch 美脚OLナンパSP ch.40,https://vip2.slbfsl.com/20230305/ETkdJv9r/index.m3u8
|
||||
8時間TREASURE~PART 2,https://vip2.slbfsl.com/20230305/fDkjeaC6/index.m3u8
|
||||
日本-いじめて、ください,https://vip2.slbfsl.com/20230306/vvSpNjqM/index.m3u8
|
||||
-国際線CA勤続2年目 #彼氏あり #フェラ #豊満尻!,https://vip2.slbfsl.com/20230309/QijXo5a8/index.m3u8
|
||||
-流出版-瀧本梨絵 ③無碼流出!,https://vip2.slbfsl.com/20230310/kZ1VWjGW/index.m3u8
|
||||
-天然由來120%!,https://vip2.slbfsl.com/20230314/hq3mcRyZ/index.m3u8
|
||||
CJO-D-220 おっさん、奥歯ガタガタするまでシャブってやるから覚悟しな 望月あられ,https://vip2.slbfsl.com/20230315/B5YJWTY1/index.m3u8
|
||||
18歲2次插入和旋轉,https://vip2.slbfsl.com/20230321/p5UHC1K5/index.m3u8
|
||||
Belochu Slut的傻瓜,https://vip2.slbfsl.com/20230322/5WXOPE42/index.m3u8
|
||||
エンジェルシークレットアナル,https://vip2.slbfsl.com/20230325/rjEjvo3q/index.m3u8
|
||||
おんなのこのしくみ ~Ecupの豊満なおっぱいを測ってください,https://vip2.slbfsl.com/20230325/ToOrBdLJ/index.m3u8
|
||||
クロニクルVol.3-Part 2,https://vip2.slbfsl.com/20230326/0dFDhvmC/index.m3u8
|
||||
お願いされてもヤめない最狂咽頭責め 喉奥縦断凹調教,https://vip2.slbfsl.com/20230326/kqlHzoqW/index.m3u8
|
||||
クロニクルVol.3-Part 1,https://vip2.slbfsl.com/20230326/V3uJqN0v/index.m3u8
|
||||
デカ尻スキャンダル セックスアイドル,https://vip2.slbfsl.com/20230329/LKL3Jy9a/index.m3u8
|
||||
ちっぱいめいと叔父さんと夏休みのおるすばん,https://vip2.slbfsl.com/20230329/mkPpuGj7/index.m3u8
|
||||
ハメ撮り堕天録 No.023,https://vip2.slbfsl.com/20230331/k3n1PKQX/index.m3u8
|
||||
マニアの生贄,https://vip2.slbfsl.com/20230402/KLP3KhI1/index.m3u8
|
||||
みさきちゃんJD19歳,https://vip2.slbfsl.com/20230402/9RxGm5zH/index.m3u8
|
||||
もっと、いじめて、ください,https://vip2.slbfsl.com/20230403/HaefbA0D/index.m3u8
|
||||
ラブホで內緒の密會,https://vip2.slbfsl.com/20230403/B9tJAHVv/index.m3u8
|
||||
変態令嬢調教,https://vip2.slbfsl.com/20230406/CwwsWttB/index.m3u8
|
||||
変態M清楚系,https://vip2.slbfsl.com/20230406/fxdlBKFE/index.m3u8
|
||||
変態デMニートビッチ,https://vip2.slbfsl.com/20230406/CVQrhjLJ/index.m3u8
|
||||
出張先の相部屋で絶倫上司に何度も挿入されて…,https://vip2.slbfsl.com/20230408/1q4joxwz/index.m3u8
|
||||
従順雌犬調教鬼畜残酷,https://vip2.slbfsl.com/20230408/9QlSR91w/index.m3u8
|
||||
大屁股婆婆的公共生活很奇怪,https://vip2.slbfsl.com/20230408/XyjJT4b4/index.m3u8
|
||||
答無用カン,https://vip2.slbfsl.com/20230408/9VWKttnK/index.m3u8
|
||||
東熱流膨満孕汁,https://vip2.slbfsl.com/20230410/1VwjTdaH/index.m3u8
|
||||
東熱流汁殺輪カン,https://vip2.slbfsl.com/20230410/Ste16G6L/index.m3u8
|
||||
東熱流ガチ中出し,https://vip2.slbfsl.com/20230410/1wuMOXeu/index.m3u8
|
||||
高潮快樂雜技演員昏厥罐,https://vip2.slbfsl.com/20230411/A09kKysq/index.m3u8
|
||||
縛られた時の食い込み感が忘れられないイケナイ娘,https://vip2.slbfsl.com/20230411/SQqo5fAi/index.m3u8
|
||||
鬼逝 – 絕叫,https://vip2.slbfsl.com/20230412/KB7iJ7VF/index.m3u8
|
||||
鬼逝 83回,https://vip2.slbfsl.com/20230412/rqdwcCcy/index.m3u8
|
||||
鬼逝 – 82,https://vip2.slbfsl.com/20230412/Lnmpkfzj/index.m3u8
|
||||
鬼逝 – 78,https://vip2.slbfsl.com/20230412/gXFTYvm0/index.m3u8
|
||||
鬼逝 – 決悶,https://vip2.slbfsl.com/20230412/1usMIlkd/index.m3u8
|
||||
鬼逝 – 67,https://vip2.slbfsl.com/20230412/n3vCipMP/index.m3u8
|
||||
鬼逝 110回,https://vip2.slbfsl.com/20230412/5Dl10uvg/index.m3u8
|
||||
鬼逝 – 65回,https://vip2.slbfsl.com/20230412/2zHaqTwN/index.m3u8
|
||||
鬼逝 72回,https://vip2.slbfsl.com/20230412/dt3Wec6O/index.m3u8
|
||||
鬼逝 – 40發,https://vip2.slbfsl.com/20230412/LUpb2w3Q/index.m3u8
|
||||
鬼逝125回,https://vip2.slbfsl.com/20230412/kyPvblIB/index.m3u8
|
||||
鬼逝 – 66,https://vip2.slbfsl.com/20230412/ljtACzt2/index.m3u8
|
||||
鬼處,https://vip2.slbfsl.com/20230412/LwCcVdd9/index.m3u8
|
||||
鬼畜集団輪受精地獄,https://vip2.slbfsl.com/20230412/A8kqkW2M/index.m3u8
|
||||
喉と口の馬にイラ硫黄トレーニングを共同で実施させる,https://vip2.slbfsl.com/20230413/0JioC0A5/index.m3u8
|
||||
呼べば速攻チ○ポをしゃぶりに来てくれる舐めマンフェラビッチ,https://vip2.slbfsl.com/20230413/6iclpkRa/index.m3u8
|
||||
行列のできる変態クラブ 前編,https://vip2.slbfsl.com/20230413/nFnMSqQH/index.m3u8
|
||||
繼續受到約束,直到腋毛長大,https://vip2.slbfsl.com/20230414/ni9ZiPN9/index.m3u8
|
||||
激イキ181回!痙攣6012回!イキ潮8706cc!,https://vip2.slbfsl.com/20230414/FJJaVfJN/index.m3u8
|
||||
家事はしてくれないけれど,https://vip2.slbfsl.com/20230414/I2GFwxzv/index.m3u8
|
||||
即勃たせてくれるアゲまん,https://vip2.slbfsl.com/20230414/oAauH4mH/index.m3u8
|
||||
即ホ?生ハメ上等ッ!,https://vip2.slbfsl.com/20230414/xE1WcVIw/index.m3u8
|
||||
恍惚ザーメンまみれ,https://vip2.slbfsl.com/20230414/WkRLqrUU/index.m3u8
|
||||
激イキ!初めての大絶頂3本番スペシャル,https://vip2.slbfsl.com/20230414/lmIhHFC5/index.m3u8
|
||||
今日、私を縛ってください。,https://vip2.slbfsl.com/20230415/DOA89MCC/index.m3u8
|
||||
舐め尽くして精子まみれ追撃お掃除フェラチオ,https://vip2.slbfsl.com/20230415/MFHGPD1s/index.m3u8
|
||||
監禁オイルマッサージ 鬼イカせ中出しレ×プ,https://vip2.slbfsl.com/20230415/0JdYa7Kt/index.m3u8
|
||||
監禁拘束ギャルアナル拷問,https://vip2.slbfsl.com/20230415/N7sZEjki/index.m3u8
|
||||
見習い捜査官スパンキングOUT,https://vip2.slbfsl.com/20230415/8bBtVA9Q/index.m3u8
|
||||
拘束クラッシュ M覚醒,https://vip2.slbfsl.com/20230416/PhJTe7L4/index.m3u8
|
||||
哭泣的東京熱門,https://vip2.slbfsl.com/20230416/XaAbnj9V/index.m3u8
|
||||
綑綁奴隸OL,https://vip2.slbfsl.com/20230416/AOrc4xXn/index.m3u8
|
||||
捆棒調教的愛慾,https://vip2.slbfsl.com/20230417/67TqjZDD/index.m3u8
|
||||
路線バス逆痴漢,https://vip2.slbfsl.com/20230419/XzukOuFf/index.m3u8
|
||||
麻薬捜査官ヤク漬け膣痙攣,https://vip2.slbfsl.com/20230419/r6j5LnAQ/index.m3u8
|
||||
麻薬捜査官拷問 FILE 38,https://vip2.slbfsl.com/20230419/8Wu47Hqg/index.m3u8
|
||||
美しいキャスターを生放送できます,https://vip2.slbfsl.com/20230420/JxUIyseX/index.m3u8
|
||||
悩殺ビキニ,https://vip2.slbfsl.com/20230421/0ij8o6cf/index.m3u8
|
||||
密閉壁櫥,https://vip2.slbfsl.com/20230421/FOykwo9A/index.m3u8
|
||||
勉強やめてキスの練習しない?,https://vip2.slbfsl.com/20230421/I9ULuokC/index.m3u8
|
||||
嬢様調教集,https://vip2.slbfsl.com/20230422/erdsewGf/index.m3u8
|
||||
逆回春ハネ腰痙攣エステサロン,https://vip2.slbfsl.com/20230422/dwhHxVf8/index.m3u8
|
||||
牛仔褲Vol.21,https://vip2.slbfsl.com/20230422/HWUpWwmw/index.m3u8
|
||||
前回のSEXが気持ちよかったので、また遊び,https://vip2.slbfsl.com/20230226/GNE0IEJO/index.m3u8
|
||||
舞ワイフ ~セレブ倶楽部~ 161,https://vip2.slbfsl.com/20230301/2D5K00b5/index.m3u8
|
||||
我受到威脅,https://vip2.slbfsl.com/20230301/65QFxUjP/index.m3u8
|
||||
店長に好意抱く私はわざと終電逃し…,https://vip2.slbfsl.com/20230303/Ty0cc2DY/index.m3u8
|
||||
異常興奮的中出,https://vip2.slbfsl.com/20230303/bLubJzPH/index.m3u8
|
||||
Big Cock Zubozubo,https://vip2.slbfsl.com/20230305/X5MDaH69/index.m3u8
|
||||
?アニメ聲で小動物の英語講師,https://vip2.slbfsl.com/20230305/4w2r0XuN/index.m3u8
|
||||
170cm完璧プロポーション,https://vip2.slbfsl.com/20230305/7Fdfi7Aw/index.m3u8
|
||||
が右往左往に揺れまくる衝,https://vip2.slbfsl.com/20230305/BimWhM6l/index.m3u8
|
||||
Hカップヲタクまどかに中出しセックス,https://vip2.slbfsl.com/20230305/I6pHWgY3/index.m3u8
|
||||
3穴串刺逝地獄,https://vip2.slbfsl.com/20230305/PKnbDcDe/index.m3u8
|
||||
抜群お姉さんが動かなくてもイカせてア,https://vip2.slbfsl.com/20230305/0eOEw1Pq/index.m3u8
|
||||
日本-お掃除フェラから始,https://vip2.slbfsl.com/20230306/swXOJhzc/index.m3u8
|
||||
-拿走精液,大火!,https://vip2.slbfsl.com/20230311/kKhhnEIP/index.m3u8
|
||||
3P連続ナマ中出し!20歳☆マン毛スケベLoli清純娘,https://vip2.slbfsl.com/20230321/IIAhQK3X/index.m3u8
|
||||
Cutie Ruka,https://vip2.slbfsl.com/20230322/D9ZO9XzJ/index.m3u8
|
||||
Hinata Tachibana Hinata,https://vip2.slbfsl.com/20230322/6JcnYu2C/index.m3u8
|
||||
Mで豊満で欲求不満な若奥様,https://vip2.slbfsl.com/20230323/yamhIEiq/index.m3u8
|
||||
Minami5 はっつ!ふぁいなる!,https://vip2.slbfsl.com/20230323/7rqvbuXY/index.m3u8
|
||||
アノ娘の初體験を完全再現!?塾の先生?,https://vip2.slbfsl.com/20230324/sAYbFqe4/index.m3u8
|
||||
インモラルな関係に…同僚の奥さんと,https://vip2.slbfsl.com/20230324/1rMNgZAk/index.m3u8
|
||||
えりかちゃんと1泊2日の関西旅行,https://vip2.slbfsl.com/20230325/8Jp1RLNk/index.m3u8
|
||||
この笑顔を何度でもリピートしたい癒しのエステティシャン,https://vip2.slbfsl.com/20230327/1nUHhpFt/index.m3u8
|
||||
こっそりお姉ちゃんの彼氏を奪っては排卵日に時短中出,https://vip2.slbfsl.com/20230327/ljethVtT/index.m3u8
|
||||
しちゃうぞ?突いて突いて突きまくって限界突破覚醒,https://vip2.slbfsl.com/20230328/bqfpLvL2/index.m3u8
|
||||
デカマラ4,https://vip2.slbfsl.com/20230329/viydKeKs/index.m3u8
|
||||
セックスはダイエット効果抜群と謳い中出しまでしちゃう悪徳マッサージ師,https://vip2.slbfsl.com/20230329/MO5rESqy/index.m3u8
|
||||
セックス依存症のマゾアイドル,https://vip2.slbfsl.com/20230329/1XBbL8JH/index.m3u8
|
||||
チンポをしっかり挾み込む名器,https://vip2.slbfsl.com/20230329/WGZG6Ych/index.m3u8
|
||||
チンポの扱い方を実践で教えてアゲル!,https://vip2.slbfsl.com/20230329/WqysdEwi/index.m3u8
|
||||
ドM店長って呼んでいい?,https://vip2.slbfsl.com/20230330/PJZQnGtQ/index.m3u8
|
||||
ならどんなポーズでも、何を撮ってもいいんだよね,https://vip2.slbfsl.com/20230330/8gPfaH6C/index.m3u8
|
||||
パイズリしながら潮吹きするス,https://vip2.slbfsl.com/20230330/XDzFWFoN/index.m3u8
|
||||
ネットカフェで寢泊まりして-part 1,https://vip2.slbfsl.com/20230330/X0Lnqp4u/index.m3u8
|
||||
ハメ潮吹いちゃうパイパンむちむち保育士,https://vip2.slbfsl.com/20230330/X56zTUWz/index.m3u8
|
||||
ノーブラノーパンで挑発してくるスケベ奥さんが隣に引っ越してきた!,https://vip2.slbfsl.com/20230331/w48bWnWc/index.m3u8
|
||||
ハワイアンメンズエステ ロミロミマッサージ店3,https://vip2.slbfsl.com/20230331/hHQl029B/index.m3u8
|
||||
パイパンと最上美尻でおもてなし,https://vip2.slbfsl.com/20230331/sJWLZ0GT/index.m3u8
|
||||
ノルマの為に枕営業する保険レディー,https://vip2.slbfsl.com/20230330/tISiWoo4/index.m3u8
|
||||
ママシ●タ実話,https://vip2.slbfsl.com/20230402/cuqQhzHJ/index.m3u8
|
||||
ボンテージコスで興奮しなさいッ,https://vip2.slbfsl.com/20230402/8OvJIH9A/index.m3u8
|
||||
ホントは本番禁止なのに生で中出しSEXしちゃうデリヘル嬢,https://vip2.slbfsl.com/20230402/uBBV4x5x/index.m3u8
|
||||
りなの一日花嫁修業,https://vip2.slbfsl.com/20230403/QSRRBY4x/index.m3u8
|
||||
ヤンキー兄嫁のTバック姿がシコすぎて,https://vip2.slbfsl.com/20230403/toBpcwyj/index.m3u8
|
||||
ゆきずりの温泉不倫 ~貴方が見てくれないから…私,https://vip2.slbfsl.com/20230403/lI19VFDG/index.m3u8
|
||||
挨拶もしてくれない無口で地味なお隣さんは僕,https://vip2.slbfsl.com/20230404/DccxWLpe/index.m3u8
|
||||
ワタシを中イキさせてください,https://vip2.slbfsl.com/20230404/nj7n9xwa/index.m3u8
|
||||
抱かれてはいけなかった夫の部下と裏切りの逢瀬,https://vip2.slbfsl.com/20230404/FimqAWPG/index.m3u8
|
||||
本能のまま乱れ狂う濃厚すぎる鉄板SEX 篠田ゆう,https://vip2.slbfsl.com/20230405/seSXwPZS/index.m3u8
|
||||
表參道高級美容沙龍工作四年 現役HCUP沙龍店員,https://vip2.slbfsl.com/20230406/5gvmMg41/index.m3u8
|
||||
布団の中で隠れて汗だく舐め合い密着中出しSEX,https://vip2.slbfsl.com/20230406/vMnXQubZ/index.m3u8
|
||||
彼氏に無斷で中出し!,https://vip2.slbfsl.com/20230406/1nHKc6gv/index.m3u8
|
||||
痴漢映画館10 こんな所で…なのに,https://vip2.slbfsl.com/20230407/fluu5Ghr/index.m3u8
|
||||
巣ごもり生活 懐妊までの2ヶ月間,https://vip2.slbfsl.com/20230407/Q4WcOWMx/index.m3u8
|
||||
恥じらいのお漏らし,https://vip2.slbfsl.com/20230407/p9eXkbRk/index.m3u8
|
||||
潮吹くマ●コにズッポリ挿入!,https://vip2.slbfsl.com/20230407/uK2usFqq/index.m3u8
|
||||
大嫌いな担任に媚薬でキメセク監禁 汗だくでアクメ潮をビジャビジャ漏らす中出し,https://vip2.slbfsl.com/20230408/YY6AaYMq/index.m3u8
|
||||
雌奴●化極限調教!,https://vip2.slbfsl.com/20230408/F6HQMFCV/index.m3u8
|
||||
川の字レイプ 吐息をこらえて犯されて… 字レイプ 吐息をこらえて犯されて…,https://vip2.slbfsl.com/20230408/NS5gPCfg/index.m3u8
|
||||
大量潮吹きするほどピストンバイブでイカされて,https://vip2.slbfsl.com/20230408/1tTCCZBo/index.m3u8
|
||||
初めてが私でいいの,https://vip2.slbfsl.com/20230408/pePvVMo2/index.m3u8
|
||||
倒下的學生會主席M的版畫,https://vip2.slbfsl.com/20230409/2JAVPd3W/index.m3u8
|
||||
東京で修学旅行-Part 2,https://vip2.slbfsl.com/20230409/7pT5yVBC/index.m3u8
|
||||
訂婚後,Moto kare團聚。 我無法忘記那些我曾經愛過的日子。三天的痛苦訴求,https://vip2.slbfsl.com/20230409/ephFZTjT/index.m3u8
|
||||
東熱初裏ガチ,https://vip2.slbfsl.com/20230410/hJd0xwSd/index.m3u8
|
||||
働きウーマン ~セクハラなんかに負けません!~,https://vip2.slbfsl.com/20230410/8oDP48RP/index.m3u8
|
||||
東京熱茶,https://vip2.slbfsl.com/20230410/EPprNjVc/index.m3u8
|
||||
放課後に、仕込んでください ?おじさんといる方が楽しいし?,https://vip2.slbfsl.com/20230411/XQBURCUE/index.m3u8
|
||||
鳳凰の入れ墨,https://vip2.slbfsl.com/20230411/KaG9EeW2/index.m3u8
|
||||
感度は良好!これが理想の豊満ボディ!,https://vip2.slbfsl.com/20230411/mTZ0Q5qJ/index.m3u8
|
||||
放課後のエッチな出来事,https://vip2.slbfsl.com/20230411/zIY9yJ8s/index.m3u8
|
||||
黒大蛇の虜囚になった純白モデル,https://vip2.slbfsl.com/20230413/vdJpWMNK/index.m3u8
|
||||
華麗花嫁3穴串刺しマジ逝カン,https://vip2.slbfsl.com/20230413/FnLaS73c/index.m3u8
|
||||
黒い棒力,https://vip2.slbfsl.com/20230413/8TGkGk9R/index.m3u8
|
||||
即シャク公衆便所 ?喉奥で舐めてあげるね,https://vip2.slbfsl.com/20230414/B3Fndobu/index.m3u8
|
||||
婚約者に隠れて元彼と会うようになってしまいました,https://vip2.slbfsl.com/20230414/LVZ6kat8/index.m3u8
|
||||
?今天一整天都在蝕刻?,https://vip2.slbfsl.com/20230415/r4tEJkrP/index.m3u8
|
||||
?今天蝕刻一整天?,https://vip2.slbfsl.com/20230415/yeahjKmU/index.m3u8
|
||||
絶対的下から目線 おもてなし庵,https://vip2.slbfsl.com/20230416/idyXceBZ/index.m3u8
|
||||
精飲學級,https://vip2.slbfsl.com/20230416/9K6wpIEL/index.m3u8
|
||||
拘束トレーニングファイル,https://vip2.slbfsl.com/20230416/nYQMPAjc/index.m3u8
|
||||
老公請原諒我,https://vip2.slbfsl.com/20230416/iA3oeYkS/index.m3u8
|
||||
老公不在家的危險日36小時,https://vip2.slbfsl.com/20230416/bACYm8g9/index.m3u8
|
||||
絶対地獄,https://vip2.slbfsl.com/20230416/xORlP3VC/index.m3u8
|
||||
流ガチ中出し,https://vip2.slbfsl.com/20230418/UWsxXfG6/index.m3u8
|
||||
愛沢有紗無碼流出,https://vip2.slbfsl.com/20230418/lkxDpTxp/index.m3u8
|
||||
水元優奈無碼流出,https://vip2.slbfsl.com/20230419/Fj3kc9da/index.m3u8
|
||||
園田美櫻無碼流出,https://vip2.slbfsl.com/20230419/UOmCPkUe/index.m3u8
|
||||
桐谷美穂無碼流出,https://vip2.slbfsl.com/20230419/PHSnms3J/index.m3u8
|
||||
美尻でじっく-Part 1,https://vip2.slbfsl.com/20230420/oyFRz1xn/index.m3u8
|
||||
美形の上、とってもエロい、申し分ない極上,https://vip2.slbfsl.com/20230420/vMzVVTCf/index.m3u8
|
||||
牧場的桃尻飼養員,https://vip2.slbfsl.com/20230421/8ah7d1Rt/index.m3u8
|
||||
某有名企業のOLとの生ハメ映像流出,https://vip2.slbfsl.com/20230421/tMrF8D3s/index.m3u8
|
||||
媚薬キメセク相部屋NTR 身を滅ぼすまでひたすらメス堕ち,https://vip2.slbfsl.com/20230421/Eet9JNFl/index.m3u8
|
||||
逆3Pで中出ししまくれる夢の1日体感企画!!,https://vip2.slbfsl.com/20230422/WtoxfHT7/index.m3u8
|
||||
娘の友達から突然の誘惑に負けた日,https://vip2.slbfsl.com/20230422/hRgyix4i/index.m3u8
|
||||
逆らう言葉さえ唇で塞がれた僕は身動きできずに童貞を奪われて―,https://vip2.slbfsl.com/20230422/grpCSAmW/index.m3u8
|
||||
精子をいつも横取りする義姉,https://vip2.slbfsl.com/20230226/c5wUfdvP/index.m3u8
|
||||
経営悪化で借金まみれに,https://vip2.slbfsl.com/20230413/puMnkkh3/index.m3u8
|
||||
感激の生パコに孕ませ覚悟の大量中出し,https://vip2.slbfsl.com/20230420/h9RSnCWl/index.m3u8
|
||||
|
||||
|
||||
日本片商,#genre#
|
||||
|
||||
|
||||
[日本片商]予約半年待ちリピ率100% 某メンズエステ店 密室×密着 イキ過ぎた禁断サービス 4,https://lsbbf2.com/20240426/xErPyfnx/index.m3u8
|
||||
[日本片商]2 『結局、私で童貞卒業しちゃったね我慢できなかったんだね?』『しかも中に出しちゃったね!』童貞的!,https://lsbbf2.com/20240319/EONdXr2b/index.m3u8
|
||||
[日本片商]2 『えっまだするの?何回、私の中に出すつもり?もう無理!イキ過ぎて頭おかしくなっちゃう!』童貞的!,https://lsbbf2.com/20240319/WmLOnPge/index.m3u8
|
||||
[日本片商]2 「いいんです!学校でイジメられても。だって家に帰ればイジメっ子たちが絶対してない濃厚なセック的!,https://lsbbf2.com/20240319/mVyh1DpE/index.m3u8
|
||||
[日本片商]1 知らないうちに家族が増えた!「初めまして!私はこれからあなたのお姉さんです」家族になったばか的!,https://lsbbf2.com/20240319/9HQo2BC1/index.m3u8
|
||||
[日本片商]2 「もっと仲良くなりたい…その為だったら一緒にお風呂も入るし、おち○ちんも触ってあげる」ボクの的!,https://lsbbf2.com/20240319/9C6dlRi8/index.m3u8
|
||||
[日本片商]1 真面目な姉がボクのオナホを発見!使い方を何度も聞いてくるので、実演するからオカズになるよう要的!,https://lsbbf2.com/20240319/tskTdZZm/index.m3u8
|
||||
[日本片商]1 義妹にノーピストンSEX!義妹が寝ている隙にバレない様にゆっくり挿入。動かさなくても気持ち良的!,https://lsbbf2.com/20240319/54c061yF/index.m3u8
|
||||
[日本片商]4 「私がシテあげよっか?」いつも外でタバコをふかしている隣のお姉さんと目が合う。童貞のボクには的!,https://lsbbf2.com/20240320/Z0Bt4jiF/index.m3u8
|
||||
[日本片商]4 「先生、エッチなお勉強教えてください」家庭教師を誘惑してこっそり生ハメ要求!親のそばでバレな的!,https://lsbbf2.com/20240320/hckl2csK/index.m3u8
|
||||
[日本片商]4 「ちゃんと洗わなきゃダメだよ!」ボクの事をいつまでも子供扱いする年の離れた従姉がボクの包茎チ的!,https://lsbbf2.com/20240320/im6MaG1H/index.m3u8
|
||||
[日本片商]3 緊急アンケート この状況アナタならどうする?当然触るorそっと布団をかける。目を開けたら胸や的!,https://lsbbf2.com/20240320/r4BN3VJb/index.m3u8
|
||||
[日本片商]『泳げる様になりたい!』スク水姿の妹と素股してたら…。水泳の授業が嫌いな妹に泳ぎを教える事に的!,https://lsbbf2.com/20240321/mQSj0XBS/index.m3u8
|
||||
[日本片商]『恥ずかしいからバックでいい?これ本当にエッチにならない?』『パンツ越しに1cmくらい挿れる的!,https://lsbbf2.com/20240321/RYQFHAEr/index.m3u8
|
||||
[日本片商]0 やることなすこと完全合意の即ハメおねだりメイド的!,https://lsbbf2.com/20240321/7WZJ80rY/index.m3u8
|
||||
[日本片商]00cmヒップ北野未奈の卑猥な尻コス5シチュで 精子ぶっこ抜き中出し誘導する至高のデカ尻オナニ的!,https://lsbbf2.com/20240321/d7xhEErM/index.m3u8
|
||||
[日本片商]『あっダメ!激しく突いたらバレちゃう…』義妹がロングスカートの中でこっそり即ハメ要求!親の目的!,https://lsbbf2.com/20240321/f3OQkDh1/index.m3u8
|
||||
[日本片商]2 『先生わたしのこと遊びじゃないならゴム無しでイッて』遊びで不倫していた教え子に妊娠SEXを的!,https://lsbbf2.com/20240321/bgc6unEk/index.m3u8
|
||||
[日本片商]『ダメ!そんなに激しく突いたら声が出ちゃうよ…』彼が寝ている横で彼の親友と布団の中でバレない的!,https://lsbbf2.com/20240321/S4UOzV09/index.m3u8
|
||||
[日本片商]1 【数量限定】アルバイト先で教育係のウブすぎる誘惑に負けた僕。秘密の初貫通してからセックスに的!,https://lsbbf2.com/20240321/8dBjy2Nz/index.m3u8
|
||||
[日本片商]2 【数量限定】まさか、私が不倫するなんて…。 誘惑 抑えきれない火遊び 奥井楓 パンティと生写真付き的!,https://lsbbf2.com/20240321/UAicInwS/index.m3u8
|
||||
[日本片商]2 シン·浜崎真緒的!,https://lsbbf2.com/20240321/7LGTbA8J/index.m3u8
|
||||
[日本片商]夜勤ナース病院抜け出しショートタイム密会,https://lsbbf2.com/20240425/qk10z18f/index.m3u8
|
||||
[日本片商]夜明けの頃#東雲みお,https://lsbbf2.com/20240425/2QfcCHHo/index.m3u8
|
||||
[日本片商]新章始まる。電撃専属 ダスッ!&本中ダブル専属 松本いちか禁欲大解放。ドロくちゃSEX3本番s,https://lsbbf2.com/20240425/BjE8WUuy/index.m3u8
|
||||
[日本片商]寝ている姪っ子のキツキツアナルを毎晩こっそりいじっていたら叔父のデカチンが根元まで入るほどガバ,https://lsbbf2.com/20240424/cGdkyarP/index.m3u8
|
||||
[日本片商]奇跡の再会。大きくなったね。私は生き別れた息子に知らず知らずのうちにレイプされてました。,https://lsbbf2.com/20240424/fKnGfIax/index.m3u8
|
||||
[日本片商]派遣マッサージ師にきわどい秘部を触られすぎて、快楽に耐え切れず寝取られました。,https://lsbbf2.com/20240424/x3VLXIej/index.m3u8
|
||||
[日本片商]勉強が手に付かなくなるほど、童貞を誘惑する家庭教師。,https://lsbbf2.com/20240424/ySJNnB8b/index.m3u8
|
||||
[日本片商]出張インストラクター盗撮 Vol.01,https://lsbbf2.com/20240423/SXDb7OiE/index.m3u8
|
||||
[日本片商]出張メンズエステ盗撮Vol.3,https://lsbbf2.com/20240423/VAHkswxI/index.m3u8
|
||||
[日本片商]久しぶりの帰郷。三年前のバイトの同僚と酔った勢いで朝陽が昇るまで何度も中出ししまくった。,https://lsbbf2.com/20240423/WBgGsw4A/index.m3u8
|
||||
[日本片商]街角尻穴 いじいじのち、ずぽずぽデート,https://lsbbf2.com/20240423/UneDkWha/index.m3u8
|
||||
[日本片商]黒チ●ポヤバッ!! No.1,https://lsbbf2.com/20240423/HMquLgRk/index.m3u8
|
||||
[日本片商]喉姦面接,https://lsbbf2.com/20240423/Ohs60ygs/index.m3u8
|
||||
[日本片商]剛毛とにかくチューチュー頭がトロける程舐めまくる!ねっちぃ吸いにもう無理!アクメぐっちょぐちょ,https://lsbbf2.com/20240423/fLugLy3T/index.m3u8
|
||||
[日本片商]レギンス狂,https://lsbbf2.com/20240422/gSDdYn5R/index.m3u8
|
||||
[日本片商]マル秘隠し撮り映像流出!! 同じマンションのママ友を連れ込んで絶対内緒の不倫SEX 4時間ベスト,https://lsbbf2.com/20240422/itdn03Ga/index.m3u8
|
||||
[日本片商]ラクして稼ごうと治験バイト行ったら怪しい精力剤のモニターで…エロ胡散くさい看護師蘭華さんにアノ,https://lsbbf2.com/20240422/rtnqdFRb/index.m3u8
|
||||
[日本片商]レースクイーンラバーズ,https://lsbbf2.com/20240422/vVnHBFyr/index.m3u8
|
||||
[日本片商]みんな大好きメスガキッ!! ひなた,https://lsbbf2.com/20240422/6r88Z7bK/index.m3u8
|
||||
[日本片商]マル秘隠し撮り映像流出!! オイルマッサージ体験で連れ込んで特別コースでイキまくり!中年おばさ,https://lsbbf2.com/20240422/TBnz3oXr/index.m3u8
|
||||
[日本片商]みんな大好きメスガキッ!! ひかる,https://lsbbf2.com/20240422/uf97boGj/index.m3u8
|
||||
[日本片商]マル秘隠し撮り映像流出!! 同じマンションのママ友を連れ込んで絶対内緒の不倫SEX 8,https://lsbbf2.com/20240422/xxWj2YXD/index.m3u8
|
||||
[日本片商]みんな大好きメスガキッ!! かな,https://lsbbf2.com/20240422/lrcYuUuj/index.m3u8
|
||||
[日本片商]ツキマトイ盗撮痴漢5,https://lsbbf2.com/20240421/2g5YcsWd/index.m3u8
|
||||
[日本片商]ななパイ#松岡奈々,https://lsbbf2.com/20240421/VppC0iWZ/index.m3u8
|
||||
[日本片商]パコ撮りNo.102 快感を求めて円光はじめた日焼けあと残る美ボディギャル れなちゃん,https://lsbbf2.com/20240421/cE6Rbse3/index.m3u8
|
||||
[日本片商]パコ撮りNo.105 勉強の気晴らしに円光はじめたふわふわボディギャル れなちゃん,https://lsbbf2.com/20240421/jhPObEdg/index.m3u8
|
||||
[日本片商]おバカだけど、エロ偏差値は天才級。えっちが大好きギャルあみりちゃん。,https://lsbbf2.com/20240420/14lbYGtA/index.m3u8
|
||||
[日本片商]アパート大家の娘はクッソ生意気な思春期メスガキ「ざぁこざぁこ♪ソーローよわよわち○ちん♪」僕の,https://lsbbf2.com/20240420/IWF6cBOA/index.m3u8
|
||||
[日本片商]あざと可愛い小悪魔な後輩に身も心も寝取られ、雌イキまでさせられたボク。,https://lsbbf2.com/20240420/IJ0Hs1eO/index.m3u8
|
||||
[日本片商]【4K】コスプレ×イチジョウミオ,https://lsbbf2.com/20240420/EMUP6apv/index.m3u8
|
||||
[日本片商]Fresh Smile#芹沢のえる,https://lsbbf2.com/20240420/Qr9CImQh/index.m3u8
|
||||
[日本片商]SEXという言葉も知らなかった頃1か月だけ同じ学校にいてヤリまくった転校生と今日、10年ぶりに,https://lsbbf2.com/20240420/wrItr7GU/index.m3u8
|
||||
[日本片商]Z世代ギャルJ系はMメンズにしか興味がない,https://lsbbf2.com/20240420/iPfGHYzw/index.m3u8
|
||||
[日本片商]ザ·マジックミラー特別編!旦那の寝取られ願望実現企画 in MM号『メモリアルヌード』撮影中に,https://lsbbf2.com/20240419/oU4bv1of/index.m3u8
|
||||
[日本片商]剛毛が見えるほどだらしない部屋着で無意識誘惑する妹にムラムラしちゃった俺,https://lsbbf2.com/20240419/Ez0UCvpr/index.m3u8
|
||||
[日本片商]【25周年SP】シン·SEXのハードルが異常に低い世界,https://lsbbf2.com/20240419/K392npuG/index.m3u8
|
||||
[日本片商]ブラック企業戦士が離職しない理由は、残業中ムラついたら即ヤラせてくれる経理担当綾瀬さんの都合の,https://lsbbf2.com/20240419/9lyqhYBs/index.m3u8
|
||||
[日本片商]軟派の神髄。 9,https://lsbbf2.com/20240419/ZuHSXwtB/index.m3u8
|
||||
[日本片商]軟派の神髄。 8,https://lsbbf2.com/20240419/f4xAGBie/index.m3u8
|
||||
[日本片商]声の出せない図書室で弄られ中出しされる恥●のサイレント●●●,https://lsbbf2.com/20240419/nm1C04XG/index.m3u8
|
||||
[日本片商]8 初めての週末不倫温泉 年上の上司と密会し、隠れてキスをして、欲望に溺れ、本能剥き出しで貪り合,https://lsbbf2.com/20240418/8TVRqR5U/index.m3u8
|
||||
[日本片商]5 生アナル舐められ予備校生~flavors×マジックミラー便コラボ企画~ 授業帰りのむ-cd2,https://lsbbf2.com/20240418/0DrOxpc1/index.m3u8
|
||||
[日本片商]3 いろいろなデニール数の黒タイツに挟まれたい…踏まれたい…絞められたい… 黒タイツOL脚ロック逆3P,https://lsbbf2.com/20240418/RXszLmMT/index.m3u8
|
||||
[日本片商]4 顔出し解禁!! マジックミラー便 一流企業で働くパンツスーツのピタパン尻OL編 vo-cd1,https://lsbbf2.com/20240418/QXLxzhaK/index.m3u8
|
||||
[日本片商]理系ギャル パイパン妊娠,https://lsbbf2.com/20240418/M5fHqsbQ/index.m3u8
|
||||
[日本片商]科学特装隊バードソルジャー 狙われたバードホワイト,https://lsbbf2.com/20240417/k8j0VzUe/index.m3u8
|
||||
[日本片商]空想科学巨大ヒロイン ソフィール2023,https://lsbbf2.com/20240417/mYcngJ75/index.m3u8
|
||||
[日本片商]健全店で生殺されてアンアン言ってアピールしてたら…,https://lsbbf2.com/20240417/NsDgjqpH/index.m3u8
|
||||
[日本片商]接吻コントロール,https://lsbbf2.com/20240417/fS81O9ld/index.m3u8
|
||||
[日本片商]真夏のケツ穴しゃぶられ娘~flavors×MM便コラボ企画~むせるようなプリ尻アナルを嗅がれ舐,https://lsbbf2.com/20240416/0xmPU95b/index.m3u8
|
||||
[日本片商]中出しブルマん娘 美月,https://lsbbf2.com/20240416/W2qDmQLj/index.m3u8
|
||||
[日本片商]中出しブルマん娘 かな,https://lsbbf2.com/20240416/yhxWZlkZ/index.m3u8
|
||||
[日本片商]蒸れ臭美脚濃厚接触レズ,https://lsbbf2.com/20240416/KZd2TWIi/index.m3u8
|
||||
[日本片商]膣穴掻きまわしピストンオナニー,https://lsbbf2.com/20240416/Se0dDR3T/index.m3u8
|
||||
[日本片商]粘膜密着レズベロキス,https://lsbbf2.com/20240416/aBAbCdIi/index.m3u8
|
||||
[日本片商]元気ハツラツみんなのアイドル♪…なマネージャーがアナタ専属で連続中出しオナサポ,https://lsbbf2.com/20240416/2NoNlL32/index.m3u8
|
||||
[日本片商]痰唾ぶっかけ顔面舐めレズ,https://lsbbf2.com/20240415/WvZDgNTs/index.m3u8
|
||||
[日本片商]挑発的小悪魔ブルマ娘 なるみ,https://lsbbf2.com/20240415/3FLtcGCi/index.m3u8
|
||||
[日本片商]唾液·マン汁混ぜエロクサ汁絡み付く バキバキ勃起ディルドガン突きオナニー2,https://lsbbf2.com/20240415/aKeVpm99/index.m3u8
|
||||
[日本片商]唾液汁ぶっかけ顔面舐めレズ,https://lsbbf2.com/20240415/qbIi6ZMu/index.m3u8
|
||||
[日本片商]完全主観JOI 花狩まいのせんずり管理,https://lsbbf2.com/20240415/rJPA7WHg/index.m3u8
|
||||
[日本片商]完全主観で楽しむ高瀬りなとの新婚生活,https://lsbbf2.com/20240415/XUliL86p/index.m3u8
|
||||
[日本片商]完全主観で楽しむ姫咲はなとの新婚生活,https://lsbbf2.com/20240415/cFeSkkRx/index.m3u8
|
||||
[日本片商]完全主観JOI 新村あかりのせんずり管理,https://lsbbf2.com/20240415/RYmszWWR/index.m3u8
|
||||
[日本片商]顔出しMM号 真夏のビキニギャル限定 ザ·マジックミラー Wデート中の仲良しカップル交換企画!,https://lsbbf2.com/20240415/wChYoN8W/index.m3u8
|
||||
[日本片商]絶頂オイルレズエステ,https://lsbbf2.com/20240413/EGtgOJKH/index.m3u8
|
||||
[日本片商]毒宴会四周年記念愛蔵版 濃縮交尾4時間,https://lsbbf2.com/20240413/xTh5p5nm/index.m3u8
|
||||
[日本片商]毒宴会三周年記念愛蔵版 濃縮交尾4時間,https://lsbbf2.com/20240413/MnUnNdQM/index.m3u8
|
||||
[日本片商]バチボコされたい体液大好き絶対ナマ派のビッチギャルすみれちゃん 発情マ●コ使い倒し無制限生中出し的!,https://lsbbf2.com/20240411/PMgmwIZb/index.m3u8
|
||||
[日本片商]バーチャルディープベロキス的!,https://lsbbf2.com/20240411/yEP8tJXe/index.m3u8
|
||||
[日本片商]パンティフェチ愛好会 茜的!,https://lsbbf2.com/20240411/rIgu3CYY/index.m3u8
|
||||
[日本片商]ゴム無しでバチボコされたい破壊力ハンパないパリピぎゃる はぴまるちゃん どこでもハメられたい願的!,https://lsbbf2.com/20240411/0nBcjKjP/index.m3u8
|
||||
[日本片商]にやにやデカ尻挑発娘 育ったデカ尻で僕を翻弄してくる従妹的!,https://lsbbf2.com/20240411/Uw5RI8tx/index.m3u8
|
||||
[日本片商]デブから始めるステキな日常 ~実写版~ デブの俺がエロをご褒美にダイエットさせられ高身長ギャル的!,https://lsbbf2.com/20240411/giBWkZX4/index.m3u8
|
||||
[日本片商]デカ尻顔騎コキ的!,https://lsbbf2.com/20240411/4PIC6y5n/index.m3u8
|
||||
[日本片商]ちっちゃくて(身長145cm)でちょいぽちゃ(ウエスト65cm)だけど…チアで全国優勝した栄光的!,https://lsbbf2.com/20240411/FjTUqr1J/index.m3u8
|
||||
[日本片商]HYPER FETISH ハイレグいやらしクィーン的!,https://lsbbf2.com/20240410/4HPskryG/index.m3u8
|
||||
[日本片商]18歳、はじめての中出し。生チ●ポよすぎて痙攣ビクビク初イキ3本番 大きなおっぱいロリロリ劇団員的!,https://lsbbf2.com/20240410/78td6IF6/index.m3u8
|
||||
[日本片商]【全員中出し5P乱交SEX】コス●リ行列レイヤー様の小さなワレメがイキすぎぶっ壊れて失禁オシッ的!,https://lsbbf2.com/20240410/ETl1haxJ/index.m3u8
|
||||
[日本片商]【妄想主観】可愛すぎる推しアイドルとエッチしよ AOI的!,https://lsbbf2.com/20240410/HNFnwolm/index.m3u8
|
||||
[日本片商]【妄想主観】可愛すぎる推しアイドルとエッチしよ YURI的!,https://lsbbf2.com/20240410/AcQLidbm/index.m3u8
|
||||
[日本片商]54 【数量限定】恋のスキャンダル#阿部有紀 チェキ付き的!,https://lsbbf2.com/20240409/srYK24Pn/index.m3u8
|
||||
[日本片商]GDRD-003 Red Dragon,https://lsbbf2.com/20240409/xA9zJgok/index.m3u8
|
||||
[日本片商]GDRD-002 Red Dragon,https://lsbbf2.com/20240409/niM1na8f/index.m3u8
|
||||
[日本片商]GDRD-004 Red Dragon,https://lsbbf2.com/20240409/R1KTSacu/index.m3u8
|
||||
[日本片商]GDRD-007 Red Dragon,https://lsbbf2.com/20240409/uarGXZPg/index.m3u8
|
||||
[日本片商]GDRD-006 Red Dragon,https://lsbbf2.com/20240409/S8Cg7JWf/index.m3u8
|
||||
[日本片商]9 整体師の容赦ないワイセツ施術で快楽罠にハメられた早漏娘。的!,https://lsbbf2.com/20240409/VBru2MGX/index.m3u8
|
||||
[日本片商]6 日常のレ●プ 私、この後…レ●プされました…。強制事件×8件220分的!,https://lsbbf2.com/20240408/51x8rBTQ/index.m3u8
|
||||
[日本片商]6 アクメ100~122分連続痙攣絶頂~いちか先生的!,https://lsbbf2.com/20240408/u5hAmgEM/index.m3u8
|
||||
[日本片商]6 ずっとヤりたいと思っていた…友達のカノジョに媚薬を●ませて2日間に渡るキメセク完堕ちNTR…の記録的!,https://lsbbf2.com/20240408/XI6vTKEy/index.m3u8
|
||||
[日本片商]3 FALENO TUBE SUPER BEST チ○ポに餌付く!喉奥で理解らせる!!イラマ大好的!,https://lsbbf2.com/20240407/h9lfZ8c5/index.m3u8
|
||||
[日本片商]3 オナニー見てもらえますか?手コキして欲しいんでしょ 5時間 56名 Episode1 fea的!,https://lsbbf2.com/20240407/6i7jedKQ/index.m3u8
|
||||
[日本片商]2 暴走ちゃんを応援します! Episode4 feat.FALENOTUBE的!,https://lsbbf2.com/20240407/baH0V4ss/index.m3u8
|
||||
[日本片商]3 兄のコトを好きすぎる妹が媚薬漬け誘惑 親の留守中にガンギマリ近親相姦する兄妹的!,https://lsbbf2.com/20240407/uMxXNOjL/index.m3u8
|
||||
[日本片商]気持ち良すぎて溢れちゃう 玩具激責め!ガン突き激ピストン!潮吹き アヘ顔晒して痙攣しながらハメ的!,https://lsbbf2.com/20240406/8hQqPL1U/index.m3u8
|
||||
[日本片商]山ガール 野ションしてたら 見られてた!!的!,https://lsbbf2.com/20240406/InB6ezSF/index.m3u8
|
||||
[日本片商]0 眠剤混入悪徳エステ 拘束開発鬼イカセ的!,https://lsbbf2.com/20240406/7f8TSQoN/index.m3u8
|
||||
[日本片商]魅惑のハプニングバー的!,https://lsbbf2.com/20240405/iRFTu29s/index.m3u8
|
||||
[日本片商]魅惑のハプニングバー ニューハーフ編的!,https://lsbbf2.com/20240405/EaMk7EUD/index.m3u8
|
||||
[日本片商]狂気拷問研究所 Tattoo Queen Super Horny Pleasure Rhaps的!,https://lsbbf2.com/20240405/jI632PsI/index.m3u8
|
||||
[日本片商]口唇ま○こ、卑猥な舌でしゃぶり尽くす7神フェラ的!,https://lsbbf2.com/20240405/N3mXhV5h/index.m3u8
|
||||
[日本片商]介護の授業中にむっちりボディで誘惑するデカ尻ギャルJ○に杭打ち騎乗位で種搾りプレスされ精子残ら的!,https://lsbbf2.com/20240405/uj5maY2f/index.m3u8
|
||||
[日本片商]黒パンストJ●絶頂おマ○コ遊び2 9名245分的!,https://lsbbf2.com/20240405/vS3MmqoT/index.m3u8
|
||||
[日本片商]友達の前でガチエッチ!! 親友の目の前で悶絶&絶頂イキまくり!!20名的!,https://lsbbf2.com/20240403/DzRkCrpr/index.m3u8
|
||||
[日本片商]自撮り 不倫ドキュメント的!,https://lsbbf2.com/20240403/UWuYC8qT/index.m3u8
|
||||
[日本片商]優等生調教 中出し合宿でイキ狂う懐妊学級委員長的!,https://lsbbf2.com/20240403/U0VzlatD/index.m3u8
|
||||
[日本片商]厳選!北区·足立区·板橋区·荒川区の募集おばちゃん! 11 (愛している)夫に内緒でSEXする事的!,https://lsbbf2.com/20240403/P1nsFus8/index.m3u8
|
||||
[日本片商]優等生調教 卑猥な夏休み汗だく中出し妊娠夏合宿的!,https://lsbbf2.com/20240403/H5zFymMX/index.m3u8
|
||||
[日本片商]意識高い系一流の奥さま新製品の下着モニターをお願いできませんでしょうか?ローター入り仕込みパンテ的!,https://lsbbf2.com/20240403/gQ8U46u5/index.m3u8
|
||||
[日本片商]優等生調教 汗まみれ潮まみれの妊娠夏合宿的!,https://lsbbf2.com/20240403/tOIK3Pz2/index.m3u8
|
||||
[日本片商]「私、ドMなんです」可愛すぎるマゾッ娘たちのびしょ濡れセックス!12名的!,https://lsbbf2.com/20240401/gtGxUvFX/index.m3u8
|
||||
[日本片商]「先生、勃起しとるやん!フニャチンになるまで勉強しないっ!」小悪魔年下教え子にうっかり勃起した僕的!,https://lsbbf2.com/20240401/VYfKkeVY/index.m3u8
|
||||
[日本片商]1泊2発の予定だったけど…8回もSEXしちゃった 台本一切無し、スタッフ無し、何でもあり! ガチ的!,https://lsbbf2.com/20240401/vvgqrxrT/index.m3u8
|
||||
[日本片商]2 いやらしい接吻 同棲レズカップル 愛し求めイカセ合うマジのレズセックス的!,https://lsbbf2.com/20240401/L0s09Gkv/index.m3u8
|
||||
[日本片商]3 我慢できない濃厚接吻 発情グショ濡れ姉妹レズビアン的!,https://lsbbf2.com/20240401/hayWDaUg/index.m3u8
|
||||
[日本片商]GTJ-129 拘束レズフィスト,https://lsbbf2.com/20240401/P8DuhxwX/index.m3u8
|
||||
[日本片商]ボイン大好きしょう太くんのHなイタズラ的!,https://lsbbf2.com/20240331/BPlA9rWy/index.m3u8
|
||||
[日本片商]ペロペロGAL 堀北わんをキステクで満足させられたらご褒美中出しSEX的!,https://lsbbf2.com/20240331/w00dGGXE/index.m3u8
|
||||
[日本片商]パイズリ専用よだれの滝的!,https://lsbbf2.com/20240331/mWb2BQ7s/index.m3u8
|
||||
[日本片商]セレブ奥様ナンパS COMPLETE BEST「ちょっとお願い!」でどこまで許してもらえるか!?的!,https://lsbbf2.com/20240331/ATBo4PHY/index.m3u8
|
||||
[日本片商]ノーブラノーパンで挑発してくるスケベ奥さんが隣に引っ越してきた!的!,https://lsbbf2.com/20240331/aBYer53n/index.m3u8
|
||||
[日本片商]セレブ奥様の非日常シ○タ遊戯的!,https://lsbbf2.com/20240331/Gc6SCuUW/index.m3u8
|
||||
[日本片商]ムッチリボディのネイティブイングリッシュ家庭教師の体がエロ過ぎて勉強に集中できません ジューン的!,https://lsbbf2.com/20240330/eorEsiFL/index.m3u8
|
||||
[日本片商]ママ友喰い無限ループ vol.29 きょうか デカチン丸飲みショートボブ的!,https://lsbbf2.com/20240330/NJU4EXWT/index.m3u8
|
||||
[日本片商]ママ友喰い無限ループ vol.28 みずき リアルな陰毛が素敵です的!,https://lsbbf2.com/20240330/9LPgO3vd/index.m3u8
|
||||
[日本片商]ママ友喰い無限ループ vol.26 友美 上京する度に…浮気癖は治りません的!,https://lsbbf2.com/20240330/ur1Gr7mK/index.m3u8
|
||||
[日本片商]欲のままにわがままに僕は君だけでヌキまくる ゆうきちゃん的!,https://lsbbf2.com/20240326/iTYfqekn/index.m3u8
|
||||
[日本片商]玄関開けたら即激ピス!何度イっても終わらない無限中出し激ピスリレー的!,https://lsbbf2.com/20240326/fdRWqFUK/index.m3u8
|
||||
[日本片商]一億と二千年にひとりのサセコギャル あかりん的!,https://lsbbf2.com/20240326/HdFEEUUE/index.m3u8
|
||||
[日本片商]一万年と二千年にひとりのサセコギャル まいりん的!,https://lsbbf2.com/20240326/giiEvtqX/index.m3u8
|
||||
[日本片商]妹と当たり前のようにヤッているオレ。的!,https://lsbbf2.com/20240325/tF05JQrT/index.m3u8
|
||||
[日本片商]妹レ×プ シスコンマニア趣味の記録 かわいい妹2名的!,https://lsbbf2.com/20240325/7tKJEhM2/index.m3u8
|
||||
[日本片商]媚薬ガンギマリ!エビ反り絶頂スプラッシュエステ的!,https://lsbbf2.com/20240325/z7P42n8N/index.m3u8
|
||||
[日本片商]海ちかん湘南ビキニハンターはしゃぎ疲れたベロベロ水着ギャルおま○こに生チ○ポ挿し込み喰いあさる的!,https://lsbbf2.com/20240325/llfIKBJi/index.m3u8
|
||||
[日本片商]裏切りの数珠繋ぎレ×プ!「逃げたかったら誰か呼べ!」ギャルを倉庫に監禁!ビンタ!イラマ!中出的!,https://lsbbf2.com/20240325/m8EUTShq/index.m3u8
|
||||
[日本片商]今からキミの親友を片っ端からレ×プします。的!,https://lsbbf2.com/20240325/05xGwvZq/index.m3u8
|
||||
[日本片商]接吻堕ち NTR キスが上手すぎる夫の上司、 誘惑に堕ちて唾液だらだら中出しセックスを求めるワタシ的!,https://lsbbf2.com/20240325/IZ1EGoUP/index.m3u8
|
||||
[日本片商]接吻堕ちNTR キスが上手すぎる夫の上司、誘惑に堕ちて唾液だらだら中出しセックスを求めるワタシ的!,https://lsbbf2.com/20240325/YPCm7BIS/index.m3u8
|
||||
[日本片商]脚CAの受難 連絡先をきいてきたけど、冷たくあしらったエコノミー客にデリヘルで働いていた過去の的!,https://lsbbf2.com/20240325/oUofc373/index.m3u8
|
||||
[日本片商]エグいほど下品な生徒に成長した僕の教え子たちを見てください 大阪府某私立●校勤務56歳教諭より的!,https://lsbbf2.com/20240324/266mvia0/index.m3u8
|
||||
[日本片商]アパレルスタッフ粘着盗撮 強襲生ちん串刺しチカン的!,https://lsbbf2.com/20240324/pHmBLsoB/index.m3u8
|
||||
[日本片商]うぶ 初撮り的!,https://lsbbf2.com/20240324/GPkLxaIQ/index.m3u8
|
||||
[日本片商]イン討伐Vol.107 ~マグナピンク桃木愛奈 孤高の戦い~的!,https://lsbbf2.com/20240324/6tRd1eox/index.m3u8
|
||||
[日本片商]いまの彼氏と婚約中なの的!,https://lsbbf2.com/20240324/xAI3abWY/index.m3u8
|
||||
[日本片商]イン討伐Vol.105 刑捜戦隊セキュアレンジャー的!,https://lsbbf2.com/20240324/wKF7amA1/index.m3u8
|
||||
[日本片商]アイドルユニット キメセクW堕ち的!,https://lsbbf2.com/20240324/KRVOqyJD/index.m3u8
|
||||
[日本片商]8 「そんなに気持ちいいなら、もっとしましょうか?」延長されるとご奉仕が止まらない!?地方旅館の的!,https://lsbbf2.com/20240322/PTukU3JP/index.m3u8
|
||||
[日本片商]8 「お兄ちゃん、おち○ちん…こうすればいいんだよね」地味妹がボクのチ○コで予行練習!?家族以外的!,https://lsbbf2.com/20240322/8Z6mr2fu/index.m3u8
|
||||
[日本片商]8 「コドモの体じゃ興奮しないんだよね?w」ボクを誘惑するデカ尻ロリっ娘は絶対に手を出してはいけ的!,https://lsbbf2.com/20240322/nvnTadue/index.m3u8
|
||||
[日本片商]8 「お願い!今日も慰めてほしいんだけど!」彼氏を作ってはすぐにフラれ、その度に愚痴って泣いて慰的!,https://lsbbf2.com/20240322/9KHahaMn/index.m3u8
|
||||
[日本片商]7 玄関開けたら秒で顔騎!学校から帰って玄関を開けたら常に欲求不満な義姉にいきなり押し倒され顔騎的!,https://lsbbf2.com/20240322/fY1iEQGU/index.m3u8
|
||||
[日本片商]7 超ラッキー!もう死ぬかもしれない!いや、もう多分死んでいる。神ってるエロハプニングの連続で巻的!,https://lsbbf2.com/20240322/Kzz7E9Oa/index.m3u8
|
||||
[日本片商]7 セックスしかさせてくれない義姉。新しく一緒に暮らす事になった義姉とは会話もない。目も合わせて的!,https://lsbbf2.com/20240322/NrqwPBk3/index.m3u8
|
||||
[日本片商]7 夫婦円満の秘訣はスワッピング!?結婚生活も長くセックスレスになってしまった倦怠期の夫婦が仲良的!,https://lsbbf2.com/20240322/HemGIDj5/index.m3u8
|
||||
[日本片商]3 息子の嫁は元ギャル!?エロ尻!エロ谷間!エロい腰つき!に義父とはいえ我慢の限界!息子がいない的!,https://lsbbf2.com/20240320/wRhjEn06/index.m3u8
|
||||
[日本片商]ニョキニョキ飛び出る敏感な剥き出しクリ勃起責め!2,https://lsbbf2.com/20240417/Bk6o5Prc/index.m3u8
|
||||
[日本片商]5 という訳で、話題沸騰必至の「Layers;Gate」はブルーレイソフトも同日発売決定です的!,https://lsbbf2.com/20240401/0UiI9BG2/index.m3u8
|
||||
|
||||
日本有码,#genre#
|
||||
|
||||
[日本有码]0 「私みたいなおばさんで勃起しちゃったの?」地方旅館で呼んだマッサージ師のおばさんに思い切って的!,https://lsbbf2.com/20240319/UWt5pMr8/index.m3u8
|
||||
[日本有码]0 「先生が何でも教えてあげるね」勉強とエロの偏差値をブチ上げてくれる最強の家庭教師!おっぱい&的!,https://lsbbf2.com/20240319/gyCfIyk4/index.m3u8
|
||||
[日本有码]0 ぐにぐにズボ!「あれ…挿っちゃいました?」布1ミリの壁を突破!紙パンツからハミ出た勃起チ○ポ的!,https://lsbbf2.com/20240319/N99wh0cN/index.m3u8
|
||||
[日本有码]0 「こんな大きいの挿れられたら、もう他のおち○ちん挿らない…」デカチン義兄のチ○ポにハマって彼的!,https://lsbbf2.com/20240319/uIDeN6PJ/index.m3u8
|
||||
[日本有码]0 「パンスト越しならいいよ!」童貞卒業を必死に頼み込むボクに義姉がしぶしぶパンスト越しエッチの的!,https://lsbbf2.com/20240319/hyYqnC0f/index.m3u8
|
||||
[日本有码]6 『何を期待して勃起したの?』お触り厳禁のメンエスでお触りしたら激しく拒否られるも黙々とキワキ的!,https://lsbbf2.com/20240320/meKTRPnJ/index.m3u8
|
||||
[日本有码]6 だれとでも定額挿れ放題 銀行編2 その地方銀行はお金以外に、おち○ちんも銀行内の職員なら営業的!,https://lsbbf2.com/20240320/hLugvebA/index.m3u8
|
||||
[日本有码]6 『私たちでSEXの練習しちゃいなよ!何度失敗してもいいよ!エッチして元気出して』ホスピタリテ的!,https://lsbbf2.com/20240320/UDb3m33v/index.m3u8
|
||||
[日本有码]6 『お願いもう止めて!限界!』ハードピストンでデカ尻がぴくぴく痙攣する程イキまくり!超デカ尻出的!,https://lsbbf2.com/20240320/c8uNfSfl/index.m3u8
|
||||
[日本有码]6 「ラップ越しならエッチにならないよね?」生意気な妹がボクでラップ越しのキス、手コキ、フェラと的!,https://lsbbf2.com/20240320/8UpRCT0T/index.m3u8
|
||||
[日本有码]6 「おっぱいで洗ってあげるね!」「じゃあ私はお尻で洗ってあげるね!」「だってもっとお兄ちゃんと的!,https://lsbbf2.com/20240320/k5WikIpZ/index.m3u8
|
||||
[日本有码]6 「鍵失くしちゃったからおじさんの部屋入れて!」隣に住む鍵っ子姉妹とまさかの神3P!お隣さんは的!,https://lsbbf2.com/20240320/215GPlul/index.m3u8
|
||||
[日本有码]6 『これはわざとか偶然か?』目を開けたら浴衣がはだけて大きな胸やお尻がボクの目の前3センチ!親的!,https://lsbbf2.com/20240320/PjdvlvLx/index.m3u8
|
||||
[日本有码]6 「ぶっちゃけエッチの方が得意なんだよね」掃除は苦手だけどセックスは出来るギャルメイド家政婦が的!,https://lsbbf2.com/20240320/FeXoxASd/index.m3u8
|
||||
[日本有码]6 「おち○ちんの皮を剥いてちゃんと洗わなきゃダメだよ!」6ボクの事をいつまでも子供扱いする年の的!,https://lsbbf2.com/20240320/Xxp6ehwE/index.m3u8
|
||||
[日本有码]「おち○ちんの皮を剥いてちゃんと洗わなきゃダメだよ!」5 ボクの事をいつまでも子供扱いする年的!,https://lsbbf2.com/20240321/PWAdPtfy/index.m3u8
|
||||
[日本有码]「絶対に目を開けちゃダメだよ」「開けなければずっとここで生活できるからね」義父は私に初めて売的!,https://lsbbf2.com/20240321/GPfXj3JM/index.m3u8
|
||||
[日本有码]「お兄ちゃん…コレって悪い事じゃないの?」「しっかり皮も剥いて洗えよ」「なんか大きくなってる的!,https://lsbbf2.com/20240321/I81FGP7n/index.m3u8
|
||||
[日本有码]「今までボクが受けた苦しみ、味わわせてあげるよ…」ボクをいじめるクソギャルどもに報復デカチン的!,https://lsbbf2.com/20240321/qLjTtP1V/index.m3u8
|
||||
[日本有码]「妊娠したくないだろ?早く吸い出さないと」姉妹にザーメン吸い取りクンニを教える義父。いつも好的!,https://lsbbf2.com/20240321/DXtgX7qB/index.m3u8
|
||||
[日本有码]「お兄ちゃんのこと気持ち良くするバイト始めました」バイトを禁止されている私がお兄ちゃんに相談的!,https://lsbbf2.com/20240321/klDGOfby/index.m3u8
|
||||
[日本有码]「やめてください!」→「もっと犯して…(心の声)」悪徳エステ師のセクハラマッサージに実は興奮的!,https://lsbbf2.com/20240321/gODXpXeO/index.m3u8
|
||||
[日本有码]「私の言う事聞いてくれるよね?じゃないと…」兄嫁の復讐!姑にイジメられ我慢の限界に達した兄嫁的!,https://lsbbf2.com/20240321/sAyzARl6/index.m3u8
|
||||
[日本有码]「生徒に手を出すなんて教師失格だね。これ以上はダメ…わたし本気になっちゃう…」年齢差や立場を的!,https://lsbbf2.com/20240321/gIknCcHF/index.m3u8
|
||||
[日本有码]「今、私のパンツ見たよね?」見せつけてるようにしか思えない脚の開き方でボクの勃起を誘発してく的!,https://lsbbf2.com/20240321/X5FhSb6k/index.m3u8
|
||||
[日本有码]はだかの主婦 杉並区在住吉根ゆりあ(27)的!,https://lsbbf2.com/20240330/RbFnf1OO/index.m3u8
|
||||
[日本有码]はだかの主婦 千代田区在住新村あかり(28)的!,https://lsbbf2.com/20240330/uXmlR6wy/index.m3u8
|
||||
[日本有码]はだかの主婦 大田区在住推川ゆうり(31)的!,https://lsbbf2.com/20240330/1A2rUErA/index.m3u8
|
||||
[日本有码]はだかの主婦 目黒区在住穂高由歩(28)的!,https://lsbbf2.com/20240330/pQjFD3Jv/index.m3u8
|
||||
[日本有码]はだかのバレエ講師的!,https://lsbbf2.com/20240330/i2CUqwVi/index.m3u8
|
||||
[日本有码]はだかの主婦 板橋区在住市河明日菜(38)的!,https://lsbbf2.com/20240330/HGHiiD2u/index.m3u8
|
||||
[日本有码]はだかのパーソナルトレーナー的!,https://lsbbf2.com/20240330/nFpQcKKh/index.m3u8
|
||||
[日本有码]イっても終わらない追撃ハードピストンでカラダが弓なりぎゅーん!エビ反り痙攣絶頂SEXベスト4時間的!,https://lsbbf2.com/20240330/Lgnww7SL/index.m3u8
|
||||
[日本有码]さよなら#宮城ゆら的!,https://lsbbf2.com/20240330/gIgjVoJp/index.m3u8
|
||||
[日本有码]コスフェラ!!的!,https://lsbbf2.com/20240330/mx145grN/index.m3u8
|
||||
[日本有码]エロくて下品なお隣のお姉さんがシコい体で誘惑してくる的!,https://lsbbf2.com/20240330/IojsDgum/index.m3u8
|
||||
[日本有码]イチャKISS好きでフェラが凄い!!セフレOLとオフィスラブ的!,https://lsbbf2.com/20240330/Lh0wXU3I/index.m3u8
|
||||
[日本有码]M寄りなカリブト変態彼氏の要望に何でもヘラヘラ応えちゃうカノジョ的!,https://lsbbf2.com/20240330/R632GPoH/index.m3u8
|
||||
[日本有码]Princess#姫崎あむ的!,https://lsbbf2.com/20240330/BUGjRJ8H/index.m3u8
|
||||
[日本有码]Hは生派…イチャラブ生活 れなたん的!,https://lsbbf2.com/20240330/yPUjIa2b/index.m3u8
|
||||
[日本有码]Princess 02#姫崎あむ的!,https://lsbbf2.com/20240330/xJ62ICTO/index.m3u8
|
||||
[日本有码]「ゼッタイ感じちゃダメッ!」 固定バイブ生アクメ電話チャレンジ 夫にバレないようイキ我慢!イタ的!,https://lsbbf2.com/20240330/NMdcLrST/index.m3u8
|
||||
[日本有码]【オジサン夢中】異国からやってきた留学生をナンパしてSEXスカウティング的!,https://lsbbf2.com/20240330/T6cfx2jE/index.m3u8
|
||||
[日本有码]「失神するほど気持ちいぃ」セルフ拘束固定バイブオナニーで手枷が外れず無限イキ!助けに来たハズの的!,https://lsbbf2.com/20240330/atysGwRh/index.m3u8
|
||||
[日本有码]学生時代の電車痴漢オヤジが母親と再婚ー。 その日から来る日も来る日も言いなり制服中出しペットにさ的!,https://lsbbf2.com/20240328/3tBBj1VM/index.m3u8
|
||||
[日本有码]私のコト…好きじゃないなら足でしかしてあげないッ! 足コキ焦らしデートでセフレ卒業ハッピーイチャ的!,https://lsbbf2.com/20240328/UiLoxRCi/index.m3u8
|
||||
[日本有码]田舎でちくび好きな事を隠してきた私は、上京してBBライフを謳歌する 今日、田舎から上京して都会ボ的!,https://lsbbf2.com/20240328/vGHaordB/index.m3u8
|
||||
[日本有码]受験生拘束スーパースローピストン的!,https://lsbbf2.com/20240328/nvWXSSU8/index.m3u8
|
||||
[日本有码]新入社員種付け計画 温泉旅行で敏感ぶっとびお漏らしH的!,https://lsbbf2.com/20240329/wmGVsrpz/index.m3u8
|
||||
[日本有码]瞳が語る背徳の情事 罪悪感で濡れる嫁と嫉妬で萌える旦那的!,https://lsbbf2.com/20240329/2Ojd1OVs/index.m3u8
|
||||
[日本有码]生活に困り自宅でメンズエステを始めた近所のシングルマザーと中出しSEX …的!,https://lsbbf2.com/20240329/Fn9gdllM/index.m3u8
|
||||
[日本有码]私の妄想#石森みずほ的!,https://lsbbf2.com/20240329/hQ9bd3Pr/index.m3u8
|
||||
[日本有码]神肌 現役保育士さんとイチャラブ体験的!,https://lsbbf2.com/20240329/XC7GUKwC/index.m3u8
|
||||
[日本有码]立ちバック鬼反り74連発 止まらないポルチオ突き膝ガックガク絶叫BEST!的!,https://lsbbf2.com/20240329/zbiNZDCR/index.m3u8
|
||||
[日本有码]黒パンストデカ尻CAの固定ディルド当てゲーム 利き竿イッポン勝負!見事当てたら賞金100万円,https://lsbbf2.com/20240329/xstfOsYb/index.m3u8
|
||||
[日本有码]息子がこっそり匿っていた家出娘を息子にバレないようにやりまくった的!,https://lsbbf2.com/20240329/glyGEfgi/index.m3u8
|
||||
[日本有码]固定バイブだるまさんが転んだ25的!,https://lsbbf2.com/20240329/zG2MgjsJ/index.m3u8
|
||||
[日本有码]激カワ細すぎパパ活JDりおちゃん デカチンに撃沈的!,https://lsbbf2.com/20240329/WJRseYvz/index.m3u8
|
||||
[日本有码]極太固定ディルドにデカ尻を何度も打ち付けて絶叫するガニ股騎乗位BEST!
|
||||
的!,https://lsbbf2.com/20240329/AEzz0vie/index.m3u8
|
||||
[日本有码]腰くねアクメ姿が最高!ブッ刺し固定バイブで膝ガクガクで失禁痙攣4時間BEST!的!,https://lsbbf2.com/20240329/Nt1neXLj/index.m3u8
|
||||
[日本有码]時間停止レ●プ的!,https://lsbbf2.com/20240328/OJRGWizq/index.m3u8
|
||||
[日本有码]実験ドキュメント!!24時間監視軟禁SEX! 丸1日ぶっ通しで加美ちゃんとヤリまくったらどうなっ的的!,https://lsbbf2.com/20240328/JZAnZScn/index.m3u8
|
||||
[日本有码]舎から帰省したら昔は地味だった学級委員長のあの娘が豹変してた! 1泊2日で10発中出しするまで的!,https://lsbbf2.com/20240328/dSqXdt2o/index.m3u8
|
||||
[日本有码]舎にはラブホなんてねえだから青姦が当たり前だわさ的!,https://lsbbf2.com/20240328/vFzGAqtH/index.m3u8
|
||||
[日本有码]若干二十歳のぎゃるママ的!,https://lsbbf2.com/20240328/V8hXZNou/index.m3u8
|
||||
[日本有码]日中の死角 真昼の暴行魔的!,https://lsbbf2.com/20240328/tIEiu3gO/index.m3u8
|
||||
[日本有码]電撃専属 見つめ合ってイキ顔を見せ合うイクイク濃密中出し3本番スペシャル的!,https://lsbbf2.com/20240327/gdNsTD6o/index.m3u8
|
||||
[日本有码]タンパク質(ザーメン)欲求の止まらないデカ尻トレーナーに杭打ち騎乗位で何発も搾りとられる連続中出的!,https://lsbbf2.com/20240327/ACKhJDFf/index.m3u8
|
||||
[日本有码]ぐちょぐちょ~ねちょねちょ~唾液·ヨダレ·体液が絡み合う濃厚な接吻と中出し的!,https://lsbbf2.com/20240327/3wZACipV/index.m3u8
|
||||
[日本有码]あざと可愛い甘えん坊な姪っ子J●とキスいっぱい中出し同棲生活的!,https://lsbbf2.com/20240327/8rijl0I5/index.m3u8
|
||||
[日本有码]お客さんがいるのに… コンビニバイト中に精液倍増の媚薬を飲んだ大嫌いなゲス店長にショートタイム時的!,https://lsbbf2.com/20240327/38sZL6Xt/index.m3u8
|
||||
[日本有码]2時間前まで僕を熱心に指導していたマネージャーが、絶倫OBに飲まされて僕の目の前でヘロヘロで輪姦的!,https://lsbbf2.com/20240327/nmoDpD1j/index.m3u8
|
||||
[日本有码]旦那が不在の日中、 義父と町内会のオヤジたちに中出し輪姦されています的!,https://lsbbf2.com/20240327/S29LCXED/index.m3u8
|
||||
[日本有码]大好きな彼氏はいるけど… キミのチ●ポが一番丁度良い 絶対にイカせるUb●●ち〇ぽに選ばれて中出的!,https://lsbbf2.com/20240327/MCLHkJ2J/index.m3u8
|
||||
[日本有码]不倫している担任教師を3日間、逆バニー奴隷にしてやった…!的!,https://lsbbf2.com/20240327/h7WKWQA0/index.m3u8
|
||||
[日本有码]北野未奈と互いの変態を曝け出すデカ尻圧殺中出し温泉旅行 ~休むヒマなく圧迫されて勃たされて、精子的!,https://lsbbf2.com/20240327/dNDdFQuY/index.m3u8
|
||||
[日本有码]半年付き合っているのに…全然セックスしてくれない彼氏との 初めての中出しお泊りデート的!,https://lsbbf2.com/20240327/ew7sBrIg/index.m3u8
|
||||
[日本有码]五感ビンビン制圧<<完全ヴァーチャル>>包み込むASMR シコシコ凄テクオナサポ 「最高のオナニ的的!,https://lsbbf2.com/20240326/DqHwI5rV/index.m3u8
|
||||
[日本有码]夏休みの黒ギャルとホテル撮影会的!,https://lsbbf2.com/20240326/fDUdBJdQ/index.m3u8
|
||||
[日本有码]細身×金髪ギャル×実はうぶ 発育途中下車の旅 スレンダーな刺青黒ギャルなぎさちゃんはまん毛が意外と自然的!,https://lsbbf2.com/20240326/Ek9XzY2U/index.m3u8
|
||||
[日本有码]田舎の嫁さんの夫婦生活-cd47的的!,https://lsbbf2.com/20240326/li0dazoY/index.m3u8
|
||||
[日本有码]田舎の嫁さんの夫婦生活2的的!,https://lsbbf2.com/20240326/BwKfcKtk/index.m3u8
|
||||
[日本有码]太陽が凍り付いても僕と君だけはヤリまくる ももちゃん的!,https://lsbbf2.com/20240326/vfD6g7Xh/index.m3u8
|
||||
[日本有码]死ぬほど大嫌いな上司と出張先の温泉旅館でまさかの相部屋に… 醜い絶倫おやじに何度も何度もイカされ的的!,https://lsbbf2.com/20240326/pWorauxA/index.m3u8
|
||||
[日本有码]初めての撮影で緊張したよ せいちゃろ的!,https://lsbbf2.com/20240325/gi58SfWi/index.m3u8
|
||||
[日本有码]ロペロGAL 七瀬アリスをキステクで満足させられたらご褒美中出しSEX的!,https://lsbbf2.com/20240325/jcanuy8V/index.m3u8
|
||||
[日本有码]朝まで生SEX 若者#もも的!,https://lsbbf2.com/20240325/g0tSKgor/index.m3u8
|
||||
[日本有码]ら…みんなに情けない声聞かせてごらん? 綺麗なお姉さんに狭い密室に連れて行かれて、わざと外に声的!,https://lsbbf2.com/20240325/VKoDiIss/index.m3u8
|
||||
[日本有码]めっこの息子の友達を自宅エステサロンに呼び出して 超絶品BODYママのパイズリ&膣圧施術でチ●的!,https://lsbbf2.com/20240325/ERkQ2DJN/index.m3u8
|
||||
[日本有码]メンエスでエッチできそうな雰囲気を出すくせにいざとなったら嫌がるから頭にきて思いっきりお尻叩的!,https://lsbbf2.com/20240325/3Uu22JA2/index.m3u8
|
||||
[日本有码]ラウンジ嬢お持ち帰り本指の客との濃厚セックス。的!,https://lsbbf2.com/20240325/FVmtxN4P/index.m3u8
|
||||
[日本有码]ヤリ捨て 昏●拉致·W睡眠●的!,https://lsbbf2.com/20240325/aAuRELiG/index.m3u8
|
||||
[日本有码]HRSM-016 盗撮、睡眠輪姦、襲撃中出しレ×プ、集団わいせつ…狙われた現役アイドル。悲惨すぎる握手会イベント,https://lsbbf2.com/20240324/F57arojz/index.m3u8
|
||||
[日本有码]9 義姉に【マイクロビキニでお風呂生配信!】の撮影を手伝わされた!するとオッパイがポロリしまくっ的!,https://lsbbf2.com/20240324/Lj1depgR/index.m3u8
|
||||
[日本有码]CHIYUのキメセクHOWTO的!,https://lsbbf2.com/20240324/04anrz7A/index.m3u8
|
||||
[日本有码]9 全員ビショ濡れで制服からブラ透けまくり!下校中に突然の豪雨で雨宿りにやってきた義妹と友達のビ的!,https://lsbbf2.com/20240324/lOrnORAN/index.m3u8
|
||||
[日本有码]18禁 03的!,https://lsbbf2.com/20240324/Y0zGvczd/index.m3u8
|
||||
[日本有码]9 夫が出掛けて2秒後即NTR!「あなた、ごめんなさい…」夫が出張に出掛けた直後、夫の弟とヤリま的!,https://lsbbf2.com/20240324/1MGwIArJ/index.m3u8
|
||||
[日本有码]9 【衝撃!盗撮映像】東京都中野区にある超過激で有名なメンズエステに潜入して隠し撮りしたらとんで的!,https://lsbbf2.com/20240324/RHvmOIou/index.m3u8
|
||||
[日本有码]9 「私でよかったら童貞卒業してみる?」一度の優しさが命取り!「お願いもうヤメテ!壊れちゃう!」的!,https://lsbbf2.com/20240324/J0zUAQmJ/index.m3u8
|
||||
[日本有码]9 『これ見ても私たちとエッチしたいと思わないの?本当は我慢してるんでしょう?』ボクとエッチした的!,https://lsbbf2.com/20240324/1zVS6HFq/index.m3u8
|
||||
[日本有码]7 だれとでも定額挿れ放題!地下アイドル編ライブ会場でグッズを一定額購入すると特典として、その場的!,https://lsbbf2.com/20240322/pa7E0az7/index.m3u8
|
||||
[日本有码]7 「先生お願い学校には言わないで!もう辞めるから…その代わり最後のお客さんになって」裏オプあり的!,https://lsbbf2.com/20240322/Tw6lZgEC/index.m3u8
|
||||
[日本有码]7 げーみんぐはーれむ実写版的!,https://lsbbf2.com/20240322/z1SU6GIi/index.m3u8
|
||||
[日本有码]7 「今日こそイカせてください」ギリギリイカせない寸止めセクハラオイルマッサージで焦らされまくっ的!,https://lsbbf2.com/20240322/L5TmsyWR/index.m3u8
|
||||
[日本有码]7 『そんな声出したら彼氏にバレちゃうよ』甘えた声で彼氏と電話中の義姉に怒りの寝バック鬼ピストン的!,https://lsbbf2.com/20240322/cNk1PdXf/index.m3u8
|
||||
[日本有码]7 『それどうやって使うの?使う所見せて!』『だったらお前がオカズになってよ!』童貞のボクがオナ的!,https://lsbbf2.com/20240322/FJ7EM1L2/index.m3u8
|
||||
[日本有码]7 「手でしてあげるから1日1回にして!」義妹と相部屋なのに毎日8回もオナニーしてたらバレた!怒的!,https://lsbbf2.com/20240322/yYiQU5PN/index.m3u8
|
||||
[日本有码]6 奥井楓の、すてきな逆痴漢的!,https://lsbbf2.com/20240322/7hlOf3Xj/index.m3u8
|
||||
[日本有码]6 【絶対バラさないで下さい】僕のセフレ紹介します。的!,https://lsbbf2.com/20240322/qPMcdOwY/index.m3u8
|
||||
[日本有码]飲んでGO!ハメてGO!新歓コンパで中出氏いやほい!,https://lsbbf2.com/20240426/GePashrI/index.m3u8
|
||||
[日本有码]3 令和で一番エロい学園祭!廃校寸前の学校で逆バニー·逆レースクイーン·逆チャイナ·逆ナースで密,https://lsbbf2.com/20240426/2BN1sTDU/index.m3u8
|
||||
[日本有码]一言一句、僕の言う通り調教ごっこ。,https://lsbbf2.com/20240426/727DqhQQ/index.m3u8
|
||||
[日本有码]3 エッチなサービスがある銭湯の看板娘美乃すずめ,https://lsbbf2.com/20240426/ieeZgsFl/index.m3u8
|
||||
[日本有码]3 「あなた、ごめんなさい…。」大っ嫌いな上司のチ〇ポがGスポット直撃気持ち良すぎて謝りながら腰,https://lsbbf2.com/20240426/OZHeDeOK/index.m3u8
|
||||
[日本有码]2 絶倫の童貞大学生宅にコンドームを一つだけ渡された友田彩也香が一泊したら…,https://lsbbf2.com/20240426/f818QZL2/index.m3u8
|
||||
[日本有码]【4Kリマスター版】ぶっかけくぱぁ,https://lsbbf2.com/20240426/ZkRod03l/index.m3u8
|
||||
[日本有码]0 一切休憩なし!連続イカセ!撮影スタジオに着いた瞬間からノンストップ撮影で最大覚醒!!柊木里音,https://lsbbf2.com/20240426/EZ2dmIXE/index.m3u8
|
||||
[日本有码]0 大嫌いなプロデューサーとロケ先の温泉旅館でまさか相部屋に…絶倫おやじチ〇ポに何度も何度もイカ,https://lsbbf2.com/20240426/ZkvmUr7c/index.m3u8
|
||||
[日本有码]先っぽ3cmまでは挿入させてくれる姉とのギリギリ相姦未満生活,https://lsbbf2.com/20240425/6M0zXBHC/index.m3u8
|
||||
[日本有码]童貞弟のお願いを断れない。パンツ越し先っちょ1cmだけなら…えっ…ちょっと挿入ってるってばぁ!,https://lsbbf2.com/20240425/4nuCmy3h/index.m3u8
|
||||
[日本有码]唾液が糸引く濃厚接吻とSEX ツバだく汗だく3本番スペシャル,https://lsbbf2.com/20240425/hOk2cTzF/index.m3u8
|
||||
[日本有码]間,https://lsbbf2.com/20240425/5A2uxxDj/index.m3u8#https://lsbbf2.com/20240425/3CNDQ7Jj/index.m3u8
|
||||
[日本有码]私達は子供を保育園に預けている間、互いのパートナーを裏切り、肌を重ね続けました。,https://lsbbf2.com/20240425/c8DK1ufm/index.m3u8
|
||||
[日本有码]聖水ファミリーへようこそ! 飲尿中毒な義父たちとの恥ずかしお漏らし生活,https://lsbbf2.com/20240425/nftHy9PK/index.m3u8
|
||||
[日本有码]生姦Queen,https://lsbbf2.com/20240425/wZY9d2gk/index.m3u8
|
||||
[日本有码]世界一、平和で幸せなずーっと見つめ合いちゅちゅタイム。ちなみに、僕は、見つめられただけでカウパ,https://lsbbf2.com/20240425/eAO8Hwhx/index.m3u8
|
||||
[日本有码]美脚がすぎるOLの誘惑黒パンティストッキング,https://lsbbf2.com/20240424/WLSa3e3c/index.m3u8
|
||||
[日本有码]美尻お漏らし顔面騎乗(DOKS-589),https://lsbbf2.com/20240424/Uls6mE8A/index.m3u8
|
||||
[日本有码]両親がいない二日間、妹に欲望剥き出しでハメまくった中出し記録。,https://lsbbf2.com/20240424/XyjBegiB/index.m3u8
|
||||
[日本有码]某激辛ラーメン屋店員(みっちゃん)発掘。辛さ10越え当たり前!刺激を求める変態M子ちゃん。,https://lsbbf2.com/20240424/t3AEU8U8/index.m3u8
|
||||
[日本有码]拘束スローピストンでゆっくりチ○ポを抜き挿しされてイヤがる顔が次第にアヘアヘして中出し快楽堕ち,https://lsbbf2.com/20240424/GtMZVJWl/index.m3u8
|
||||
[日本有码]出張先で集中豪雨 嫌いな上司の前でまさか酔い潰れ…突然の相部屋 夜が明けても唾液を濃厚に絡ませ,https://lsbbf2.com/20240423/MmIUEnGr/index.m3u8
|
||||
[日本有码]常に規則正しいテンポでチソポが欲しいの!一定リズムでマソコかき乱してグチャあとまらない絶頂病み,https://lsbbf2.com/20240423/nWXM4tTa/index.m3u8
|
||||
[日本有码]潮!潮!潮吹きジャバジャバ黒ギャル,https://lsbbf2.com/20240423/Ge1n5KDj/index.m3u8
|
||||
[日本有码]ぺろぺろシャブシャブじゅっぽじゅぽ!新歓コンパのフェラティオンヌちゃん,https://lsbbf2.com/20240422/ABHP7fIZ/index.m3u8
|
||||
[日本有码]プレミアヒップハイレグクイーン,https://lsbbf2.com/20240422/6kstfhfs/index.m3u8
|
||||
[日本有码]ぶっつけ本番!誰でもいいからパコっちゃうゥ!?あおいれなと松本いちかのいきなり逆ナン!ゴー!ゴ,https://lsbbf2.com/20240422/JGi0yAVG/index.m3u8
|
||||
[日本有码]ぶっつけ本番!誰でもいいからパコっちゃうゥ!?あおいれなと森日向子のいきなり逆ナン!ゴー!ゴー,https://lsbbf2.com/20240422/6EPoB9fR/index.m3u8
|
||||
[日本有码]ふくらみかけ。銭湯で見つけた発育途中の天使たち。,https://lsbbf2.com/20240422/kRCCraXb/index.m3u8
|
||||
[日本有码]パンスト美脚をキモオヤジ校長に汚され堕ちた美尻スレンダー教師,https://lsbbf2.com/20240422/GT5kvFbd/index.m3u8
|
||||
[日本有码]パンチラで誘ってくる生意気生徒にキレた家庭教師が勉強机に押し付け拡張無しのわからせ即アナルで絶,https://lsbbf2.com/20240422/28TjZGfI/index.m3u8
|
||||
[日本有码]パンスト妄想脚,https://lsbbf2.com/20240422/RuOjmO29/index.m3u8
|
||||
[日本有码]ビッチM ブラックアクメ,https://lsbbf2.com/20240422/L0pfJJbL/index.m3u8
|
||||
[日本有码]ふぇらかふぇ常連確定じゅっぽり下品フェラで搾り取る小悪魔コンカフェ嬢,https://lsbbf2.com/20240422/uXzujDif/index.m3u8
|
||||
[日本有码]パコ撮りNo.108 バックで突かれるのが大好きなデカ尻むっちり炉利J系,https://lsbbf2.com/20240422/fKt7lbkW/index.m3u8
|
||||
[日本有码]ナマハメされるの期待しすぎて撮影中にオマ○コグッチョリ銀髪スケベコスパコレイヤーみのりちゃん。,https://lsbbf2.com/20240421/qlKUEiff/index.m3u8
|
||||
[日本有码]デカ尻見せつけ誘惑メンズエステW,https://lsbbf2.com/20240421/FzsGN1JC/index.m3u8
|
||||
[日本有码]クレイジーアナルMAX!,https://lsbbf2.com/20240421/omTocCmG/index.m3u8
|
||||
[日本有码]ダッサい嫁で精子無駄撃ちするぐらいなら ウチらがパコって全部ごっきゅん丸呑みしてあげる メスガ,https://lsbbf2.com/20240421/71tSS21C/index.m3u8
|
||||
[日本有码]サウナでイキたい。ととのった後のセックスはエクスタシー8000倍の絶頂体験,https://lsbbf2.com/20240421/buXiZDm4/index.m3u8
|
||||
[日本有码]セクシーヒップアタック 悶絶尻嫐り,https://lsbbf2.com/20240421/o92X7YyN/index.m3u8
|
||||
[日本有码]すぐヤレそうなオンナ,https://lsbbf2.com/20240421/XGvMtMgt/index.m3u8
|
||||
[日本有码]けつあなくぱぁ,https://lsbbf2.com/20240421/qMzy8Cg9/index.m3u8
|
||||
[日本有码]カラオケで友達が●いつぶれたからその場で生パコ!! 超至近距離でバレないようにSEXするのが気,https://lsbbf2.com/20240421/XiigFIGZ/index.m3u8
|
||||
[日本有码]キャンギャル狂想脚,https://lsbbf2.com/20240421/l4E1iUgu/index.m3u8
|
||||
[日本有码]ギャルっ娘天国サンドイッチ 姉妹の体で仲良くチ●ポをぱっくんちょ,https://lsbbf2.com/20240421/WK2kbGo7/index.m3u8
|
||||
[日本有码]ギャルズカフェ,https://lsbbf2.com/20240421/UM2WVMPQ/index.m3u8
|
||||
[日本有码]『予約半年待ちリピ率100% 某メンズエステ店 密室×密着 イキ過ぎた禁断サービス 8』,https://lsbbf2.com/20240420/6BwkdNmm/index.m3u8
|
||||
[日本有码]「私のヨダレが欲しいんでしょ」唾液トロトロ接吻で溺愛されるオクチ封じSEX,https://lsbbf2.com/20240420/2kclCZIn/index.m3u8
|
||||
[日本有码]実録·近親遊戯 田舎の近親相姦 義父の悪戯 種付けプレスされた嫁 パート1,https://lsbbf2.com/20240419/6mmEJ5o8/index.m3u8
|
||||
[日本有码]細マッチョのガン突きに身悶える可愛いおばさん隠し撮りvol.8,https://lsbbf2.com/20240419/Pfvu8n28/index.m3u8
|
||||
[日本有码]田舎の近親相姦 ひとつ屋根の下で暮らす義父が嫁を●す瞬間 大槻ひびき 後編,https://lsbbf2.com/20240419/HCu1RhYq/index.m3u8
|
||||
[日本有码]田舎の近親相姦 ひとつ屋根の下で暮らす義父が嫁を●す瞬間 水野朝陽 後編,https://lsbbf2.com/20240419/2jQMPVbk/index.m3u8
|
||||
[日本有码]県営団地エレベーター痴漢 密室強制映像,https://lsbbf2.com/20240419/lh2JI4BL/index.m3u8
|
||||
[日本有码]田舎の近親相姦 ひとつ屋根の下で暮らす義父が嫁を●す瞬間 水野朝陽 前編,https://lsbbf2.com/20240419/eu715GRs/index.m3u8
|
||||
[日本有码]田舎の近親相姦 ひとつ屋根の下で暮らす義父が嫁を●す瞬間 大槻ひびき 前編,https://lsbbf2.com/20240419/pFQnuqHC/index.m3u8
|
||||
[日本有码]細マッチョのガン突きに身悶える可愛いおばさん隠し撮りvol.9,https://lsbbf2.com/20240419/okt50PFb/index.m3u8
|
||||
[日本有码]田舎の近親相姦 ひとつ屋根の下で暮らす義父が嫁を●す瞬間 佐々木あき 後編,https://lsbbf2.com/20240419/7Xbeitrf/index.m3u8
|
||||
[日本有码]田舎の近親相姦 ひとつ屋根の下で暮らす義父が嫁を●す瞬間 佐々木あき 前編,https://lsbbf2.com/20240419/6NKT4tjf/index.m3u8
|
||||
[日本有码]未熟なワレメのメスガキ姪っ子と甘サド生活,https://lsbbf2.com/20240419/Z5seYv86/index.m3u8
|
||||
[日本有码]星海戦隊カイザーファイブ ~戦隊崩壊!最後の獲物はカイザーイエロー~,https://lsbbf2.com/20240419/rWXjWc53/index.m3u8
|
||||
[日本有码]銀河特捜デイトナピンク ~囚われの五ヶ月間~,https://lsbbf2.com/20240419/AF5L4HM0/index.m3u8
|
||||
[日本有码]顔出し解禁!!マジックミラー便 一流百貨店に勤務する清楚で品格漂う美容部員さん 初めてのじゅぼ,https://lsbbf2.com/20240418/CWYNeLtW/index.m3u8
|
||||
[日本有码]情けないオヤジに恋するJ○の誘惑セックス,https://lsbbf2.com/20240418/rwHs3JHJ/index.m3u8
|
||||
[日本有码]胸元からタトゥーが覗く隣のシングルマザーと安アパートで何度もハメまくった3日間,https://lsbbf2.com/20240418/cXsMzJiT/index.m3u8
|
||||
[日本有码]120%リアルガチ軟派伝説 vol.124【MGSだけのおまけ映像付き+10分】,https://lsbbf2.com/20240416/zWUJueBI/index.m3u8
|
||||
[日本有码]120%リアルガチ軟派伝説 vol.123,https://lsbbf2.com/20240416/JHmPpllx/index.m3u8
|
||||
[日本有码]120%リアルガチ軟派伝説 vol.120【MGSだけのおまけ映像付き+10分】,https://lsbbf2.com/20240416/13ko0KoD/index.m3u8
|
||||
[日本有码]120%リアルガチ軟派伝説 vol.122【MGSだけのおまけ映像付き+10分】,https://lsbbf2.com/20240416/WJrkbz3r/index.m3u8
|
||||
[日本有码]120%リアルガチ軟派伝説 vol.119【MGSだけのおまけ映像付き+10分】,https://lsbbf2.com/20240416/Fm4lsySd/index.m3u8
|
||||
[日本有码]0 ザーメン搾取!!FALENOガールズ超ノンストップ騎乗位BEST8時間【イキ狂い編】,https://lsbbf2.com/20240416/UojOWQkR/index.m3u8
|
||||
[日本有码]5 【数量限定】飛翔#橋村依里南 チェキ付き,https://lsbbf2.com/20240416/XdSWVjLW/index.m3u8
|
||||
[日本有码]9 【数量限定】覚醒#水越しおり チェキ付き,https://lsbbf2.com/20240416/mn0S0OCy/index.m3u8
|
||||
[日本有码]3 禁断のひめごと,https://lsbbf2.com/20240416/xPwJtBEh/index.m3u8
|
||||
[日本有码]2 東野羽海#羽衣,https://lsbbf2.com/20240416/DE7F2bB3/index.m3u8
|
||||
[日本有码]★★★★★ 五ツ星ch 連れ込みSEX隠し撮りSP ch.68,https://lsbbf2.com/20240416/DG9HSbEb/index.m3u8
|
||||
[日本有码]野外露出調教レズ,https://lsbbf2.com/20240415/72vx2HXn/index.m3u8
|
||||
[日本有码]滅茶苦茶にヤラれたい!!ドMな奥さんをマゾ調教4時間,https://lsbbf2.com/20240414/lfJLKGsx/index.m3u8
|
||||
[日本有码]娘(18)に○年間、精子を飲ませてます。,https://lsbbf2.com/20240414/p7bpBOKj/index.m3u8
|
||||
[日本有码]濃厚口臭鼻舐めレズ EVIS-489,https://lsbbf2.com/20240414/EANyz0Md/index.m3u8
|
||||
[日本有码]美波汐里がエロカワ過ぎるコスプレで気持ち良く抜いてくれる絶品風俗フルコース!,https://lsbbf2.com/20240414/ubYPtjPw/index.m3u8
|
||||
[日本有码]美脚パンストレズ,https://lsbbf2.com/20240414/AG9LofZM/index.m3u8
|
||||
[日本有码]見つかったオナニー,https://lsbbf2.com/20240413/yCSmf95h/index.m3u8
|
||||
[日本有码]高速ピストン絶頂オナニー,https://lsbbf2.com/20240413/iZufYHaE/index.m3u8
|
||||
[日本有码]高速ガシマンピストンマン汁垂れオナニー,https://lsbbf2.com/20240413/kVlfNTps/index.m3u8
|
||||
[日本有码]高速ピストン潮吹きオナニー,https://lsbbf2.com/20240413/8Z4MzChT/index.m3u8
|
||||
[日本有码]抵抗も虚しく鬼●に●●れる高杉麻里 4時間,https://lsbbf2.com/20240413/bWxJfzZ5/index.m3u8
|
||||
[日本有码]仮たいとる 地下アイドル くるみ 枕営業狂騒曲,https://lsbbf2.com/20240413/mEjL9PlJ/index.m3u8
|
||||
[日本有码]大量唾液顔面舐めレズ,https://lsbbf2.com/20240413/dZMChuPs/index.m3u8
|
||||
[日本有码]旦那の目の前でSEXする嫁 ガチなやつ,https://lsbbf2.com/20240413/eKKHpZqp/index.m3u8
|
||||
[日本有码]アナル舐められ大槻ひびき 撮影前の発酵ケツ穴を嗅がれ舐めほじられリアル赤面イキ!!尻穴ヒクヒク的!,https://lsbbf2.com/20240411/nKj2klsO/index.m3u8
|
||||
[日本有码]アカスリサウナ店のムチムチおばさんに勃起チ○ポを露出したら…4時間的!,https://lsbbf2.com/20240411/K9uBB3aK/index.m3u8
|
||||
[日本有码]フラダンス歴15年!ステージ経験もある本物フラダンサーだから騎乗位の腰使いが超凄い!むっちり豊的!,https://lsbbf2.com/20240413/g5zP3Vv0/index.m3u8
|
||||
[日本有码]ミニスカパンチラショタコン家政婦 悪ガキにイタズラされながらムラムラするお姉さん的!,https://lsbbf2.com/20240413/8yBPpjYc/index.m3u8
|
||||
[日本有码]ベロ圧迫唾液顔面パックレズ的!,https://lsbbf2.com/20240413/Ype5MRXz/index.m3u8
|
||||
[日本有码]ムレムレブルちら挑発 ブルちらなんか気にしない!ブルマが超絶似合う娘たち的!,https://lsbbf2.com/20240413/yu4gwFro/index.m3u8
|
||||
[日本有码]アダルトグッズ会社に配属された私。 最高のおっぱい型オナホを開発するために、自分のJcupを駆的!,https://lsbbf2.com/20240411/BkA32NQf/index.m3u8
|
||||
[日本有码]Wコスプレイヤーがラブホで中出し撮影会!友達の前で互いのメス顔披露!スワッピング4P中出し大乱的!,https://lsbbf2.com/20240411/xYUe8QUm/index.m3u8
|
||||
[日本有码]Wナンパで清楚系ビッチGETだぜッ! 大乱交!中出しスワップパーティ!! 久留木玲×花狩まい的!,https://lsbbf2.com/20240411/Mjd8Sa8h/index.m3u8
|
||||
[日本有码]Tバックアナル誘惑 際どいTバックから覗くアナルのシワで誘うお姉さんをピストンバック連続突き!的!,https://lsbbf2.com/20240411/6GHNnKfY/index.m3u8
|
||||
[日本有码]SMレズビアン的!,https://lsbbf2.com/20240411/RDjGDOjN/index.m3u8
|
||||
[日本有码]【妄想主観】可愛すぎる推しアイドルとエッチしよ AKARI ()的!,https://lsbbf2.com/20240410/Q722Z7Jq/index.m3u8
|
||||
[日本有码]ケツの穴串刺し拷問的!,https://lsbbf2.com/20240331/IZY9OiQB/index.m3u8
|
||||
[日本有码]えっ!ママとヤリたいの!!? 旦那の単身赴任中にチ●ポビンビンでお願いしてくる絶倫早漏息子の挑発的!,https://lsbbf2.com/20240331/OZviQACu/index.m3u8
|
||||
[日本有码]お尻大好きしょう太くんのHなイタズラ的!,https://lsbbf2.com/20240331/tQVpjEda/index.m3u8
|
||||
[日本有码]おっぱい丸出し衣装限定 中出し逆バニー風俗店へようこそ的!,https://lsbbf2.com/20240331/2TXUW4hY/index.m3u8
|
||||
[日本有码]あの頃手を出さなかった発育おっぱいJ系教え子に再会し、「私の胸、もっと大きくなったよ!でも触っち的!,https://lsbbf2.com/20240331/y7UUVQs2/index.m3u8
|
||||
[日本有码]いけないおもらしごっこ的!,https://lsbbf2.com/20240331/R3LXLWTH/index.m3u8
|
||||
[日本有码]いなか者馬鹿ギャル孕ませ子宮中出し的!,https://lsbbf2.com/20240331/cEEz2Owv/index.m3u8
|
||||
[日本有码]アナルバニー的!,https://lsbbf2.com/20240331/JSGF01Ls/index.m3u8
|
||||
[日本有码]SUPER HEROINE アクションウォーズ26 サイバー守備隊ジュレル的!,https://lsbbf2.com/20240331/FvEIFRDE/index.m3u8
|
||||
[日本有码]【○wi○ter応募童貞参加】とにかく顔がカワイイ最強レイヤー様が【イチャラブHOWTOセック的!,https://lsbbf2.com/20240410/Ixs23LJo/index.m3u8
|
||||
[日本有码]「私の娘を捧げます…」 孕ませ調教 両親の目の前で種付けSEX的!,https://lsbbf2.com/20240410/Qm1sSPeT/index.m3u8
|
||||
[日本有码]GDRD-005 Red Dragon,https://lsbbf2.com/20240409/3OaODiVz/index.m3u8
|
||||
[日本有码]GDRD-012 Red Dragon,https://lsbbf2.com/20240409/K4jLB6ge/index.m3u8
|
||||
[日本有码]FRD-005 未熟なワレメのメスガキ姪っ子と甘サド生活,https://lsbbf2.com/20240409/1lwKXGLL/index.m3u8
|
||||
[日本有码]GDRD-010 Red Dragon,https://lsbbf2.com/20240409/0aYjoTnS/index.m3u8
|
||||
[日本有码]GDRD-009 Red Dragon,https://lsbbf2.com/20240409/s8L96d4O/index.m3u8
|
||||
[日本有码]GDRD-008 Red Dragon,https://lsbbf2.com/20240409/SV629mhw/index.m3u8
|
||||
[日本有码]GDRD-011 Red Dragon,https://lsbbf2.com/20240409/4cZ9OutU/index.m3u8
|
||||
[日本有码]GDRD-013 Red Dragon,https://lsbbf2.com/20240409/3kQp4Xcg/index.m3u8
|
||||
[日本有码]GHAP-009 魅惑のハプニングバー,https://lsbbf2.com/20240409/VehBmzEZ/index.m3u8
|
||||
[日本有码]GONE-063 エロ黒姉さん,https://lsbbf2.com/20240409/eZEJ99EB/index.m3u8
|
||||
[日本有码]パイズリスター誕生 有岡みうのパイズリがパワーアップしたってよ!的!,https://lsbbf2.com/20240409/cuZo5e5q/index.m3u8
|
||||
[日本有码]おしゃぶりみたいな恋がしたい。的!,https://lsbbf2.com/20240409/fvBm3KuB/index.m3u8
|
||||
[日本有码]不倫の果てにTheBest 2020.Mar-2022.Dec的!,https://lsbbf2.com/20240409/yqEGPjHO/index.m3u8
|
||||
[日本有码]SPANDEXER4 ~三姉妹壊滅編~ 後編 三姉妹全滅!潰れた最後の希望!!的!,https://lsbbf2.com/20240409/grZ0AYXV/index.m3u8
|
||||
[日本有码]スーパーヒロインドミネーション地獄54 アートガーディアン蘭的!,https://lsbbf2.com/20240409/n9aHERpd/index.m3u8
|
||||
[日本有码]ヒロイン蹂躙システム破光戦隊ブレイクレンジャー ~抗えないブレイクピンク~的!,https://lsbbf2.com/20240409/vU2u19Lu/index.m3u8
|
||||
[日本有码]マイティーナイト·アルテミス3 ~蝕む正邪のクリスタル~的!,https://lsbbf2.com/20240409/3nw1j6uY/index.m3u8
|
||||
[日本有码]ヒロインピンチ11~ラバーヒロインと閉じた空間~的!,https://lsbbf2.com/20240409/wKJ3Lwcv/index.m3u8
|
||||
[日本有码]7 もっとキミを好きになった… デートして触れ合う手、重ねた唇、ココロとカラダで感じた恋焦がれセックス的!,https://lsbbf2.com/20240408/znvkI5DV/index.m3u8
|
||||
[日本有码]7 向かい部屋のむっつりスケベな絶倫OLに窓越し挑発され馬乗り騎乗位で童貞を奪われたボク吉高寧々的!,https://lsbbf2.com/20240408/2KWPegHa/index.m3u8
|
||||
[日本有码]7 舐めて咥えて時々あどけないフェラチオ的!,https://lsbbf2.com/20240408/4fDDHQAt/index.m3u8
|
||||
[日本有码]8 傑作厳選!J系裏垢ハメ撮り FALENO TUBE THE BEST!!的!,https://lsbbf2.com/20240408/78iFjqeb/index.m3u8
|
||||
[日本有码]8 「君は見るだけ。触っちゃダメだから。」 憧れの同級生にセックスを見せつけられた僕は今日もおあ的!,https://lsbbf2.com/20240408/Arg85rrg/index.m3u8
|
||||
[日本有码]8 ねっとりオイルで睾丸揉みほぐしマッサージエステ的!,https://lsbbf2.com/20240408/2QE6pu8E/index.m3u8
|
||||
[日本有码]8 友達の前でどこまでエッチなことできますか? Episode5 feat.FALENOTUBE的!,https://lsbbf2.com/20240408/jKX9yvtH/index.m3u8
|
||||
[日本有码]8 悪臭漂う絶倫こどおじニートに逆らう事もできず犯され続けた美尻家政婦的!,https://lsbbf2.com/20240408/jNhNha2D/index.m3u8
|
||||
[日本有码]8 深田えいみのモザイクの向こう側的!,https://lsbbf2.com/20240408/OaKqAPsa/index.m3u8
|
||||
[日本有码]8 体液で交感する絶え間ない官能セックス藤井蘭々的!,https://lsbbf2.com/20240408/hcGHmHGg/index.m3u8
|
||||
[日本有码]2 図書室での陰湿痴漢から逃れるためにはただ静かに愛液を漏らしながらイキ続けるしかなかった敏感優等生的!,https://lsbbf2.com/20240407/X1M9bVSY/index.m3u8
|
||||
[日本有码]2 体液で交感する絶え間ない官能セックス的!,https://lsbbf2.com/20240407/1v7RVJmX/index.m3u8
|
||||
[日本有码]2 泥●GALハンター in 渋谷的!,https://lsbbf2.com/20240407/FafizHk7/index.m3u8
|
||||
[日本有码]2 これが噂の香港エロティカルスパ的!,https://lsbbf2.com/20240407/wgBCFwCz/index.m3u8
|
||||
[日本有码]2 「暇やから、またしようか?」ワンルームの一室で同棲中…ただの日常 SEX をひたすら撮ったリ的!,https://lsbbf2.com/20240407/DcejirMW/index.m3u8
|
||||
[日本有码]2 ゴミ部屋に住む隣のキモ中年に悪臭チ○ポで寝取られアクメ交尾され続けた私。五十嵐なつ的!,https://lsbbf2.com/20240407/eeA7Akx8/index.m3u8
|
||||
[日本有码]2 おチ〇ポの味が大好きいきなり即尺いいなりメイド神木蘭的!,https://lsbbf2.com/20240407/qxaTrzCj/index.m3u8
|
||||
[日本有码]0 友達の前でどこまでエッチなことできますか? Episode4 feat.FALENOTUBE的!,https://lsbbf2.com/20240407/jI0p2IXX/index.m3u8
|
||||
[日本有码]1 深イキ覚醒のけぞりオーガズム 子宮揉みほぐし追撃ポルチオSEX3本番的!,https://lsbbf2.com/20240407/kf7t7URf/index.m3u8
|
||||
[日本有码]1 可愛い笑顔からの容赦ない焦らしヌキ!金玉をゼロにする凄テクコスプレメンズエステ戸田真琴的!,https://lsbbf2.com/20240407/3IT702Lg/index.m3u8
|
||||
[日本有码]1 体液で交感する絶え間ない官能セックス的!,https://lsbbf2.com/20240407/DPeRd5Lg/index.m3u8
|
||||
[日本有码]0 体液で交感する絶え間ない官能セックス的!,https://lsbbf2.com/20240407/fIAYBmMd/index.m3u8
|
||||
[日本有码]0 体液で交感する絶え間ない官能セックス 中出し解禁SPECIAL!的!,https://lsbbf2.com/20240407/5ntrR0wp/index.m3u8
|
||||
[日本有码]1 1ヶ月超えの禁欲生活…その果てに到達した三葉ちはるの圧倒的オーガズム3本番的!,https://lsbbf2.com/20240407/mvBZGxT9/index.m3u8
|
||||
[日本有码]1 「私ってこんなにエッチだったんだ…」初体験、絶頂を重ねる3本番的!,https://lsbbf2.com/20240407/jXwkc2eT/index.m3u8
|
||||
[日本有码]1 「チ○ポがとろけるまでシャブっちゃう♥」フェラチオ猛特訓!的!,https://lsbbf2.com/20240407/VEJyC3hB/index.m3u8
|
||||
[日本有码]0 翼のゆくえ的!,https://lsbbf2.com/20240407/iwmlTlsE/index.m3u8
|
||||
[日本有码]0 ドキドキ初体験全力ご奉仕ソープランド的!,https://lsbbf2.com/20240406/kO3NncO8/index.m3u8
|
||||
[日本有码]0 ぷるぷるおっぱい洗いで下半身を癒してくれる銭湯の看板娘八蜜凛的!,https://lsbbf2.com/20240406/IM3URgYG/index.m3u8
|
||||
[日本有码]0 「終電ないならウチ来なよ!」なんて言わなければよかった…夜が明けていくにつれ増していく後悔と的!,https://lsbbf2.com/20240406/rcLEj4gy/index.m3u8
|
||||
[日本有码]【投稿】サークル(大学生)遠征合宿 OB の忍び込み昏●●●●映像 2的!,https://lsbbf2.com/20240406/6FTXT8to/index.m3u8
|
||||
[日本有码]出張ソープ中出しぬるぬる7本番的!,https://lsbbf2.com/20240405/ZG695N4S/index.m3u8
|
||||
[日本有码]串刺し種付け追姦レ●プ 密室で汁まみれになり救いを求める銀座の高級クラブホステス的!,https://lsbbf2.com/20240405/XWwErLDa/index.m3u8
|
||||
[日本有码]潮騒Glamorous的!,https://lsbbf2.com/20240405/Djvu45ey/index.m3u8
|
||||
[日本有码]朝から晩まで迫ってくる妹に中出し的!,https://lsbbf2.com/20240405/Pnx93eEH/index.m3u8
|
||||
[日本有码]潮吹きジョバジョバ奥様in五反田 麻乃さん45歳的!,https://lsbbf2.com/20240405/csUbTOAu/index.m3u8
|
||||
[日本有码]潮吹きジョバジョバ奥様in巣鴨 美沙さん50歳的!,https://lsbbf2.com/20240405/uklvb7jA/index.m3u8
|
||||
[日本有码]潮吹きジョバジョバ奥様 in 世田谷 清香さん50歳的!,https://lsbbf2.com/20240405/OdXPA3Jc/index.m3u8
|
||||
[日本有码]ド田舎のヤリマンメスガキJ○に誘惑される陰キャなボク 連日のエッチなイタズラ·挑発に耐えかねた的!,https://lsbbf2.com/20240404/4Nc0vTw8/index.m3u8
|
||||
[日本有码]カラダも気持ちも温まる お風呂エッチ2 20名240分的!,https://lsbbf2.com/20240404/UHWmBQRI/index.m3u8
|
||||
[日本有码]オレを見下した生意気JDを汚部屋に拉致監禁して報復レ×プ 気が狂うまで媚薬漬けにしてキメセク孕的!,https://lsbbf2.com/20240404/iPXZmqMZ/index.m3u8
|
||||
[日本有码]エロ黒姉さん 彩乃ゆかり的!,https://lsbbf2.com/20240404/Noph1Tfl/index.m3u8
|
||||
[日本有码]イチャラブ身内喰い 姉貴編的!,https://lsbbf2.com/20240404/owG8rgb5/index.m3u8
|
||||
[日本有码]イチャラブ身内喰い 嫁の妹編的!,https://lsbbf2.com/20240404/OQiYDXtH/index.m3u8
|
||||
[日本有码]Red Dragon的!,https://lsbbf2.com/20240404/GwXwusEL/index.m3u8
|
||||
[日本有码]Hとお小遣いに興味のあるタイトワンピ奥さん大集合 リモバイを着けたままお散歩してお小遣い稼ぎす的!,https://lsbbf2.com/20240404/D0Ltdm3g/index.m3u8
|
||||
[日本有码]J系媚薬オイルエステ エビ反りキメセク絶頂的!,https://lsbbf2.com/20240404/i3dpUPt9/index.m3u8
|
||||
[日本有码]Laborn的!,https://lsbbf2.com/20240404/4dyCYkQM/index.m3u8
|
||||
[日本有码]●っぱらいOLお持ち帰り朦朧姦的!,https://lsbbf2.com/20240404/a3fc0HHA/index.m3u8
|
||||
[日本有码]●っぱらいOLお持ち帰り朦朧姦2的!,https://lsbbf2.com/20240404/V5L0ZdRU/index.m3u8
|
||||
[日本有码]「この精子すっごくおいしい」ある日突然家族になった年上姉妹 陽キャ妹がボクのチ○ポをおもちゃに的!,https://lsbbf2.com/20240404/hFOUNARU/index.m3u8
|
||||
[日本有码]孫の身体の虜になりました的!,https://lsbbf2.com/20240403/DHbQD9mA/index.m3u8
|
||||
[日本有码]生姦中出し裏バイト27的!,https://lsbbf2.com/20240403/1Mn8KSPb/index.m3u8
|
||||
[日本有码]軟派の神髄。 11的!,https://lsbbf2.com/20240403/sQzdwUTU/index.m3u8
|
||||
[日本有码]唾液と精子とボールギャグ2的!,https://lsbbf2.com/20240403/oqr0gfDK/index.m3u8
|
||||
[日本有码]生姦中出し裏バイト20 瑞野れな的!,https://lsbbf2.com/20240403/30St79J5/index.m3u8
|
||||
[日本有码]生姦中出し裏バイト18 佐々木まこ的!,https://lsbbf2.com/20240403/n567jnjN/index.m3u8
|
||||
[日本有码]生姦中出し裏バイト19 渋谷あやか的!,https://lsbbf2.com/20240403/7Wg9nqG5/index.m3u8
|
||||
[日本有码]生姦中出し裏バイト17的!,https://lsbbf2.com/20240403/JpMX49Mv/index.m3u8
|
||||
[日本有码]生姦妊娠裏バイト26的!,https://lsbbf2.com/20240403/caLe99gv/index.m3u8
|
||||
[日本有码]生姦妊娠裏バイト25 大咲まゆあ的!,https://lsbbf2.com/20240403/NR9myqD4/index.m3u8
|
||||
[日本有码]生姦妊娠裏バイト21的!,https://lsbbf2.com/20240403/a78iuq7s/index.m3u8
|
||||
[日本有码]生姦妊娠裏バイト23的!,https://lsbbf2.com/20240403/dzGUVyGB/index.m3u8
|
||||
[日本有码]生姦妊娠裏バイト24的!,https://lsbbf2.com/20240403/z3zRTeEz/index.m3u8
|
||||
[日本有码]縛る的!,https://lsbbf2.com/20240402/MaFuwy1K/index.m3u8
|
||||
[日本有码]大嫌いなキモおじファンに囲まれて…崖っぷち地底アイドルの病みオフパコ枕営業的!,https://lsbbf2.com/20240402/VYC0rDOO/index.m3u8
|
||||
[日本有码]出張マッサージのおばちゃんイカセ4 勃起チ●コを武器に強引に迫って逝かす!14名的!,https://lsbbf2.com/20240402/kp9EKAUT/index.m3u8
|
||||
[日本有码]拘束レズフィスト的!,https://lsbbf2.com/20240402/cssjat9i/index.m3u8
|
||||
[日本有码]母子奸 本真ゆり的!,https://lsbbf2.com/20240402/FFFR2twv/index.m3u8
|
||||
[日本有码]可愛い友達の妹にウザイほど愛されすぎて···学校でこっそり中出しし続けるサイレント子作り生活的!,https://lsbbf2.com/20240402/4dFy9jKZ/index.m3u8
|
||||
[日本有码]禁断介護的!,https://lsbbf2.com/20240402/IejlqFpl/index.m3u8
|
||||
[日本有码]母子姦的!,https://lsbbf2.com/20240402/1HGF7bwR/index.m3u8
|
||||
[日本有码]隣の地味なお姉さんの無自覚デカ尻透けパン誘惑に負けてバックで犯して中出ししたら、 久しぶりのチ〇的!,https://lsbbf2.com/20240402/Giv2qFRN/index.m3u8
|
||||
[日本有码]親友みたいな仲良し母娘ナンパ ビキビキにいきり立ったチ○ポを見せつけ欲望に負けた母親とそれを見て的!,https://lsbbf2.com/20240402/L8PyJzBt/index.m3u8
|
||||
[日本有码]撃体験!秘技回春メンズエステを自宅に呼んだら勃起しすぎてブッ壊れるまでヤリまくり!!金玉をオイル的!,https://lsbbf2.com/20240402/gGITUVoS/index.m3u8
|
||||
[日本有码]妊娠専用ギャル子宮中出し 空山みく的!,https://lsbbf2.com/20240402/VkKTpDLg/index.m3u8
|
||||
[日本有码]禁断介護-cd1的!,https://lsbbf2.com/20240402/0sRfG8Y4/index.m3u8
|
||||
[日本有码]豊島区大塚のお店で見つけた天然デカ尻酔いどれビッチに生挿入!生中出し!酔っ払ったノリでハメまくり的!,https://lsbbf2.com/20240402/L8zQ0ZjK/index.m3u8
|
||||
[日本有码]GVH-582 禁断介護,https://lsbbf2.com/20240401/r6xO8xvd/index.m3u8
|
||||
[日本有码]GVH-570 禁断介護,https://lsbbf2.com/20240401/6hkDjX4z/index.m3u8
|
||||
[日本有码]GVH-593 禁断介護,https://lsbbf2.com/20240401/4qiooDjc/index.m3u8
|
||||
[日本有码]GVH-601 禁断介護,https://lsbbf2.com/20240401/FTmF7Dfa/index.m3u8
|
||||
[日本有码]GVH-609 禁断介護,https://lsbbf2.com/20240401/HKuKWDH7/index.m3u8
|
||||
[日本有码]HDKA-290 はだかのバレエ講師,https://lsbbf2.com/20240401/S6wJZM3m/index.m3u8
|
||||
[日本有码]HJMO-614 黒パンストデカ尻CAの固定ディルド当てゲーム 利き竿イッポン勝負!見事当てたら賞金100万円!,https://lsbbf2.com/20240401/XJkFWw1M/index.m3u8
|
||||
[日本有码]真面目な看護学生のみなさん! 実習では学べない異常絶倫チ●ポを1発10万円で連続搾精チャレンジ的!,https://lsbbf2.com/20240401/1jOsfapZ/index.m3u8
|
||||
[日本有码]月物語#星那美月的!,https://lsbbf2.com/20240401/8ihphL1Y/index.m3u8
|
||||
[日本有码]シロウトさんに素股のお願い!感じてきたところに一撃!ズボッと入れちゃいました!!12名的!,https://lsbbf2.com/20240331/mCWCzwdT/index.m3u8
|
||||
[日本有码]しゅら-縄の姉妹的!,https://lsbbf2.com/20240331/TMcJ1h5O/index.m3u8
|
||||
[日本有码]SEX,https://lsbbf2.com/20240414/K7fxtUU2/index.m3u8
|
||||
[日本有码]体すぎて… いろんな体位でナマ中出し イカされちゃった的!,https://lsbbf2.com/20240326/woQr5YOb/index.m3u8
|
||||
[日本有码]エロ黒姉さん的!,https://lsbbf2.com/20240404/dm9Pyrab/index.m3u8
|
||||
|
||||
|
||||
强奸乱伦,#genre#
|
||||
|
||||
[强奸乱伦]ぶっかけ専用絶対領域。母が家事している10分間に…毎日大嫌いな義父に時短ザー汁痴漢で汚されています…,https://lsbbf2.com/20240422/rPEPiIhN/index.m3u8
|
||||
[强奸乱伦]ヤりたい盛りの息子がいる家庭は要注意!?息子が母を●す瞬間!! パート1的!,https://lsbbf2.com/20240409/YCtK0WP0/index.m3u8
|
||||
[强奸乱伦]4 母娘をナンパしてデカチンセンズリ見せつけたらご無沙汰チ○ポに発情エスカレートして娘の目の前で的!,https://lsbbf2.com/20240408/a9ituhGr/index.m3u8
|
||||
[强奸乱伦]5 童貞君にお母さんお貸しします的!,https://lsbbf2.com/20240408/v5jissYL/index.m3u8
|
||||
[强奸乱伦]2 母娘ナンパ デカチン見せて興奮した母と触発発情した娘で中出し親子丼SEX的!,https://lsbbf2.com/20240407/4VLcn6ZD/index.m3u8
|
||||
[强奸乱伦]母娘繚乱!熟々なお母さんとピチピチな娘さんではどちらにします?う~んできれば親子丼で! 4時間B,https://lsbbf2.com/20240419/DQV9VdeS/index.m3u8
|
||||
[强奸乱伦]連日の夫婦喧嘩に疲れた僕は、義母の優しさに甘えて何度も何度も中出ししまくった,https://lsbbf2.com/20240424/ocgcyoM3/index.m3u8
|
||||
[强奸乱伦]実録·近親相姦 特選「高橋浩一 母親寝取り」篇,https://lsbbf2.com/20240419/YOasJCME/index.m3u8
|
||||
[强奸乱伦]実録·近親相姦 特選「母親と息子」篇【二】,https://lsbbf2.com/20240419/8o9gY0CT/index.m3u8
|
||||
[强奸乱伦]9 寝ている息子のムスコをこっそり頂戴する母,https://lsbbf2.com/20240418/EhH8PG0T/index.m3u8
|
||||
[强奸乱伦]FERA-151 一回だけならセックスしても良いわよね…のつもりが息子にイカされ続けて沼堕ちした母親,https://lsbbf2.com/20240417/Z9ymjzIF/index.m3u8
|
||||
[强奸乱伦]義母となった美脚お姉さんはミニスカパンチラで僕を誘惑しながらも寸止めばかりでイカせてくれないんです…,https://lsbbf2.com/20240416/nuw7BP5J/index.m3u8
|
||||
[强奸乱伦]一回だけならセックスしても良いわよね…のつもりが息子にイカされ続けて沼堕ちした母親,https://lsbbf2.com/20240415/1NyIjUa8/index.m3u8
|
||||
[强奸乱伦]家庭訪問にやってきた担任教師に発情した母親のねっとり腰振り騎乗位セックス,https://lsbbf2.com/20240413/S9hySMIF/index.m3u8
|
||||
[强奸乱伦]「お母さんで、勃起しちゃダメでしょ…」母は●っ払いながらも濡れていたので…4時間的!,https://lsbbf2.com/20240410/PVWDuvif/index.m3u8
|
||||
[强奸乱伦]「こんなおばさんのカラダで勃起しちゃうの?」母は拒みつつも濡れていたので…4時間的!,https://lsbbf2.com/20240410/hMe81yOb/index.m3u8
|
||||
[强奸乱伦]GHZ-018 母娘繚乱!熟々なお母さんとピチピチな娘さんではどちらにします?う~んできれば親子丼で! 4時間B,https://lsbbf2.com/20240409/Tp3VZzX9/index.m3u8
|
||||
[强奸乱伦]ヤりたい盛りの息子がいる家庭は要注意!?息子が母を●す瞬間!! パート2的!,https://lsbbf2.com/20240409/MzYYOsaa/index.m3u8
|
||||
[强奸乱伦]禁断の情事 息子に恋した五十路母的!,https://lsbbf2.com/20240405/Tg0gTmCE/index.m3u8
|
||||
[强奸乱伦]従順ドマゾで剛毛マ○コの保母さんに変態インストール覚醒ダッチワイフ的!,https://lsbbf2.com/20240405/UhwKpE4U/index.m3u8
|
||||
[强奸乱伦]引きこもりの冒険 オンラインゲームばかりしている僕を心配した元ヤリマンギャルの義理の母とSEXし的!,https://lsbbf2.com/20240403/1CkOnid0/index.m3u8
|
||||
[强奸乱伦]GVH-458 母子姦,https://lsbbf2.com/20240401/tpxphtvW/index.m3u8
|
||||
[强奸乱伦]GVH-555 母子姦,https://lsbbf2.com/20240401/yirz5UVj/index.m3u8
|
||||
[强奸乱伦]GVH-575 母子姦,https://lsbbf2.com/20240401/t1hd15Pt/index.m3u8
|
||||
[强奸乱伦]GVH-589 母子姦,https://lsbbf2.com/20240401/rXhpTRL8/index.m3u8
|
||||
[强奸乱伦]GVH-596 母子姦,https://lsbbf2.com/20240401/7GXoV9bV/index.m3u8
|
||||
[强奸乱伦]HMN-433 学生時代の電車痴漢オヤジが母親と再婚ー。 その日から来る日も来る日も言いなり制服中出しペットにさ,https://lsbbf2.com/20240327/SPYMyJZo/index.m3u8
|
||||
[强奸乱伦]友達の母親~最終章~的!,https://lsbbf2.com/20240326/APyLSNqz/index.m3u8
|
||||
[强奸乱伦]無防備に透けている下着はワザと?同僚の保母さんのパンツが透けてて超絶フル勃起!絶対に誘惑して的!,https://lsbbf2.com/20240326/sOqQyNrm/index.m3u8
|
||||
[强奸乱伦]HTHD-212 友達の母親~最終章~,https://lsbbf2.com/20240324/OGbx5gk9/index.m3u8
|
||||
[强奸乱伦]HTHD-211 友達の母親~最終章~,https://lsbbf2.com/20240324/57sqJzWd/index.m3u8
|
||||
[强奸乱伦]HTHD-213 友達の母親~最終章~,https://lsbbf2.com/20240324/YrutmwXe/index.m3u8
|
||||
[强奸乱伦]HTHD-201 友達の母親~最終章~,https://lsbbf2.com/20240324/apiTjSdi/index.m3u8
|
||||
[强奸乱伦]HTHD-202 友達の母親~最終章~,https://lsbbf2.com/20240324/qu45BZRT/index.m3u8
|
||||
[强奸乱伦]HTHD-210 友達の母親~最終章~,https://lsbbf2.com/20240324/daD37l8y/index.m3u8
|
||||
[强奸乱伦]HTHD-209 友達の母親~最終章~,https://lsbbf2.com/20240324/FZ2YyPBh/index.m3u8
|
||||
[强奸乱伦]7 ボク見ちゃったんです…義母が友達をフェラしているところを…最近、友達がやたらと遊びに来ると思的!,https://lsbbf2.com/20240322/8JcYLRaa/index.m3u8
|
||||
[强奸乱伦]5 おばさん不倫 背徳の情事的!,https://lsbbf2.com/20240321/wAWe5i4A/index.m3u8
|
||||
[强奸乱伦]4 姉妹物語 奥井楓 三舩みすず的!,https://lsbbf2.com/20240321/wpWmK0tv/index.m3u8
|
||||
[强奸乱伦]4 近親相姦 妹と兄のセックス的!,https://lsbbf2.com/20240321/LUo7ZFld/index.m3u8
|
||||
[强奸乱伦]1 三十路も四十路も六十路のおばさんも若者チ●ポで完全発情メス状態 汗ダク悶絶SEX的!,https://lsbbf2.com/20240321/HUasFU3l/index.m3u8
|
||||
[强奸乱伦]4 超高級ギャルソープへようこそ的!,https://lsbbf2.com/20240321/OA2iExfs/index.m3u8
|
||||
[强奸乱伦]2 嫉妬するほど猥褻な最高のアナルとデカ尻的!,https://lsbbf2.com/20240321/yVvHxafN/index.m3u8
|
||||
[强奸乱伦]2 旦那の上司は、私の元不倫相手的!,https://lsbbf2.com/20240321/WoFy3a5G/index.m3u8
|
||||
[强奸乱伦]「娘には手を出さないで!」「それじゃあ…娘にだけ出してヤル!」母親の目の前で全身ドロドロにな的!,https://lsbbf2.com/20240321/bCVnGZep/index.m3u8
|
||||
[强奸乱伦]6 「今日の精子、全部出し切って」本日分の精子が出なくなるまで搾り取ることをやめない絶倫ヤリマン義母!的!,https://lsbbf2.com/20240320/4qmBoby6/index.m3u8
|
||||
[强奸乱伦]3 『私でよかったらキスの練習くらいさせてあげるよ…』キストレさせてくれるエロ優しい義妹!ボクが的!,https://lsbbf2.com/20240319/nQboTduu/index.m3u8
|
||||
[强奸乱伦]3 ぐにぐにズボッ!「あれ?挿っちゃいました?」布1ミリの壁を突破!紙パンツからハミ出た勃起チ○的!,https://lsbbf2.com/20240319/oNlttMUW/index.m3u8
|
||||
[强奸乱伦]3 3年C組の文化祭の模擬店は時間停止カフェいつでもストップ!いつでもセクハラできる時間停止カフ的!,https://lsbbf2.com/20240319/USQIbNJ0/index.m3u8
|
||||
[强奸乱伦]3 『オマエ童貞?マジうける!ナニ落ち込んでんだよ!』『面白そうだからヤラセてやるよ!』義姉はボ的!,https://lsbbf2.com/20240319/hEp8jxaA/index.m3u8
|
||||
[强奸乱伦]2 出張先で見つけた洗体リフレは「風俗店ではございません!」と強く謳っておきながら裏オプ無料全部的!,https://lsbbf2.com/20240319/qonyl4w7/index.m3u8
|
||||
@@ -0,0 +1,2168 @@
|
||||
|
||||
|
||||
|
||||
|
||||
果冻传媒,#genre#
|
||||
🦈8传媒01,https://je40u.cdnedge.live/file/avple-images/hls/62ee66a90fcbac72c609a143/playlist.m3u8
|
||||
🦈8传媒02,https://d862cp.cdnedge.live/file/avple-images/hls/62ee63a06e86264ecd8ae1c8/playlist.m3u8
|
||||
🦈8传媒03,https://u89ey.cdnedge.live/file/avple-images/hls/62ee05dcb65ee73dde1f5cac/playlist.m3u8
|
||||
🦈8传媒04,https://10j99.cdnedge.live/file/avple-images/hls/62ede8ccafca094a62fd4d49/playlist.m3u8
|
||||
🦈8传媒05,https://8bb88.cdnedge.live/file/avple-images/hls/62ede980afca094a62fd4d4b/playlist.m3u8
|
||||
🦈8传媒06,https://w9n76.cdnedge.live/file/avple-images/hls/62edea35afca094a62fd4d4d/playlist.m3u8
|
||||
🦈8传媒07,https://zo392.cdnedge.live/file/avple-images/hls/62edea35afca094a62fd4d4c/playlist.m3u8
|
||||
🦈8传媒08,https://zo392.cdnedge.live/file/avple-images/hls/62ede980afca094a62fd4d4a/playlist.m3u8
|
||||
🦈8传媒09,https://d862cp.cdnedge.live/file/avple-images/hls/62ed6425b65ee73dde1f5cab/playlist.m3u8
|
||||
🦈8传媒10,https://10j99.cdnedge.live/file/avple-images/hls/62ed5f79b65ee73dde1f5caa/playlist.m3u8
|
||||
🦈8传媒11,https://zo392.cdnedge.live/file/avple-images/hls/62ed5d21b65ee73dde1f5ca9/playlist.m3u8
|
||||
🦈8传媒12,https://w9n76.cdnedge.live/file/avple-images/hls/62ed4391afca094a62fd4d48/playlist.m3u8
|
||||
🦈8传媒13,https://1xp60.cdnedge.live/file/avple-images/hls/62ed4027330a304a7c078abb/playlist.m3u8
|
||||
🦈8传媒14,https://1xp60.cdnedge.live/file/avple-images/hls/62ed2baaafca094a62fd4d46/playlist.m3u8
|
||||
🦈8传媒15,https://zo392.cdnedge.live/file/avple-images/hls/62ec3f325049f024f6e4496c/playlist.m3u8
|
||||
🦈8传媒16,https://e2fa6.cdnedge.live/file/avple-images/hls/62ec35ce5049f024f6e4496b/playlist.m3u8
|
||||
🦈8传媒17,https://je40u.cdnedge.live/file/avple-images/hls/62ec2a165049f024f6e4496a/playlist.m3u8
|
||||
🦈8传媒18,https://w9n76.cdnedge.live/file/avple-images/hls/62ec230f5049f024f6e44969/playlist.m3u8
|
||||
🦈8传媒19,https://zo392.cdnedge.live/file/avple-images/hls/62ec14fd5049f024f6e44968/playlist.m3u8
|
||||
🦈8传媒20,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec0a0c1eba2a19acd4b27b/playlist.m3u8
|
||||
🦈8传媒21,https://je40u.cdnedge.live/file/avple-images/hls/62ec0bab1eba2a19acd4b27e/playlist.m3u8
|
||||
🦈8传媒22,https://u89ey.cdnedge.live/file/avple-images/hls/62ec0af61eba2a19acd4b27d/playlist.m3u8
|
||||
🦈8传媒23,https://u89ey.cdnedge.live/file/avple-images/hls/62ec0a821eba2a19acd4b27c/playlist.m3u8
|
||||
🦈8传媒24,https://je40u.cdnedge.live/file/avple-images/hls/62ec09551eba2a19acd4b278/playlist.m3u8
|
||||
🦈8传媒25,https://d862cp.cdnedge.live/file/avple-images/hls/62ec09c91eba2a19acd4b27a/playlist.m3u8
|
||||
🦈8传媒26,https://d862cp.cdnedge.live/file/avple-images/hls/62ec09951eba2a19acd4b279/playlist.m3u8
|
||||
🦈8传媒27,https://je40u.cdnedge.live/file/avple-images/hls/62ec08ab1eba2a19acd4b277/playlist.m3u8
|
||||
🦈8传媒28,https://10j99.cdnedge.live/file/avple-images/hls/62ec08611eba2a19acd4b276/playlist.m3u8
|
||||
🦈8传媒29,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec07731eba2a19acd4b274/playlist.m3u8
|
||||
🦈8传媒30,https://d862cp.cdnedge.live/file/avple-images/hls/62ec07371eba2a19acd4b273/playlist.m3u8
|
||||
🦈8传媒31,https://d862cp.cdnedge.live/file/avple-images/hls/62ec03b31eba2a19acd4b26d/playlist.m3u8
|
||||
🦈8传媒32,https://8bb88.cdnedge.live/file/avple-images/hls/62ec06bf1eba2a19acd4b272/playlist.m3u8
|
||||
🦈8传媒33,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec06821eba2a19acd4b271/playlist.m3u8
|
||||
🦈8传媒34,https://u89ey.cdnedge.live/file/avple-images/hls/62ec09455049f024f6e44967/playlist.m3u8
|
||||
🦈8传媒35,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec04e61eba2a19acd4b270/playlist.m3u8
|
||||
🦈8传媒36,https://d862cp.cdnedge.live/file/avple-images/hls/62ec04661eba2a19acd4b26f/playlist.m3u8
|
||||
🦈8传媒37,https://1xp60.cdnedge.live/file/avple-images/hls/62ec042c1eba2a19acd4b26e/playlist.m3u8
|
||||
🦈8传媒38,https://d862cp.cdnedge.live/file/avple-images/hls/62ec02ff1eba2a19acd4b26c/playlist.m3u8
|
||||
🦈8传媒39,https://je40u.cdnedge.live/file/avple-images/hls/62ec02171eba2a19acd4b26b/playlist.m3u8
|
||||
🦈8传媒40,https://w9n76.cdnedge.live/file/avple-images/hls/62ec01d31eba2a19acd4b26a/playlist.m3u8
|
||||
🦈8传媒41,https://je40u.cdnedge.live/file/avple-images/hls/62ec01651eba2a19acd4b269/playlist.m3u8
|
||||
🦈8传媒42,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec01251eba2a19acd4b268/playlist.m3u8
|
||||
🦈8传媒43,https://e2fa6.cdnedge.live/file/avple-images/hls/62ec00ad1eba2a19acd4b267/playlist.m3u8
|
||||
🦈8传媒44,https://10j99.cdnedge.live/file/avple-images/hls/62ebffe65049f024f6e44966/playlist.m3u8
|
||||
🦈8传媒45,https://8bb88.cdnedge.live/file/avple-images/hls/62ebf68b5049f024f6e44965/playlist.m3u8
|
||||
🦈8传媒46,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ebf68b5049f024f6e44965/playlist.m3u8
|
||||
🦈8传媒47,https://8bb88.cdnedge.live/file/avple-images/hls/62ebef7f5049f024f6e44964/playlist.m3u8
|
||||
🦈8传媒48,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ebc7a95049f024f6e44960/playlist.m3u8
|
||||
🦈8传媒49,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ebc2f75049f024f6e4495f/playlist.m3u8
|
||||
🦈8传媒50,https://8bb88.cdnedge.live/file/avple-images/hls/62eba2255049f024f6e4495e/playlist.m3u8
|
||||
🦈8传媒51,https://10j99.cdnedge.live/file/avple-images/hls/62eb9ae21eba2a19acd4b266/playlist.m3u8
|
||||
🦈8传媒52,https://je40u.cdnedge.live/file/avple-images/hls/62eb73492cc4802900f5b3ce/playlist.m3u8
|
||||
🦈8传媒53,https://d862cp.cdnedge.live/file/avple-images/hls/62eaca851a22462b0d2693cd/playlist.m3u8
|
||||
🦈8传媒54,https://zo392.cdnedge.live/file/avple-images/hls/62ea88e91a22462b0d2693cb/playlist.m3u8
|
||||
🦈8传媒55,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ea84341a22462b0d2693ca/playlist.m3u8
|
||||
🦈8传媒56,https://u89ey.cdnedge.live/file/avple-images/hls/62ea7f861a22462b0d2693c9/playlist.m3u8
|
||||
🦈8传媒58,https://d862cp.cdnedge.live/file/avple-images/hls/62e97db5f26353632056d491/playlist.m3u8
|
||||
🦈8传媒59,https://8bb88.cdnedge.live/file/avple-images/hls/62e97907f26353632056d490/playlist.m3u8
|
||||
🦈8传媒60,https://je40u.cdnedge.live/file/avple-images/hls/62e9376af26353632056d48f/playlist.m3u8
|
||||
🦈8传媒61,https://zo392.cdnedge.live/file/avple-images/hls/62e8e0afe80d4e1dd0b8c5c2/playlist.m3u8
|
||||
🦈8传媒62,https://je40u.cdnedge.live/file/avple-images/hls/62e8d74ee80d4e1dd0b8c5c1/playlist.m3u8
|
||||
🦈8传媒63,https://e2fa6.cdnedge.live/file/avple-images/hls/62e8d4f5e80d4e1dd0b8c5c0/playlist.m3u8
|
||||
😃8传媒01,https://d862cp.cdnedge.live/file/avple-images/hls/62e6bc3d25698b745fc62e3e/playlist.m3u8
|
||||
😃8传媒02,https://e2fa6.cdnedge.live/file/avple-images/hls/62e68f4a0727f630f978989f/playlist.m3u8
|
||||
😃8传媒03,https://e2fa6.cdnedge.live/file/avple-images/hls/62e68e970727f630f978989d/playlist.m3u8
|
||||
😃8传媒04,https://e2fa6.cdnedge.live/file/avple-images/hls/62e68f0f0727f630f978989e/playlist.m3u8
|
||||
😃8传媒05,https://d862cp.cdnedge.live/file/avple-images/hls/62e68e1f0727f630f978989c/playlist.m3u8
|
||||
😃8传媒06,https://q2cyl7.cdnedge.live/file/avple-images/hls/62e68c7a0727f630f9789899/playlist.m3u8
|
||||
😃8传媒07,https://d862cp.cdnedge.live/file/avple-images/hls/62e68b8d0727f630f9789898/playlist.m3u8
|
||||
😃8传媒08,https://10j99.cdnedge.live/file/avple-images/hls/62e68d310727f630f978989b/playlist.m3u8
|
||||
😃8传媒09,https://d862cp.cdnedge.live/file/avple-images/hls/62e68cf20727f630f978989a/playlist.m3u8
|
||||
😃8传媒10,https://1xp60.cdnedge.live/file/avple-images/hls/62e68b4f0727f630f9789897/playlist.m3u8
|
||||
😃8传媒11,https://8bb88.cdnedge.live/file/avple-images/hls/62e68a9b0727f630f9789896/playlist.m3u8
|
||||
😃8传媒12,https://zo392.cdnedge.live/file/avple-images/hls/62e68a240727f630f9789895/playlist.m3u8
|
||||
😃8传媒13,https://8bb88.cdnedge.live/file/avple-images/hls/62e676a10727f630f9789894/playlist.m3u8
|
||||
😃8传媒14,https://q2cyl7.cdnedge.live/file/avple-images/hls/62e6632c25698b745fc62e3d/playlist.m3u8
|
||||
😃7传媒01,https://8bb88.cdnedge.live/file/avple-images/hls/62e53bdda7c5986c614691b4/playlist.m3u8
|
||||
😃7传媒02,https://q2cyl7.cdnedge.live/file/avple-images/hls/62e506317ae31a7fcbbb26d9/playlist.m3u8
|
||||
😃7传媒03,https://8bb88.cdnedge.live/file/avple-images/hls/62e505837ae31a7fcbbb26d8/playlist.m3u8
|
||||
😃7传媒04,https://10j99.cdnedge.live/file/avple-images/hls/62e505837ae31a7fcbbb26d7/playlist.m3u8
|
||||
😃7传媒05,https://u89ey.cdnedge.live/file/avple-images/hls/62e504ca7ae31a7fcbbb26d6/playlist.m3u8
|
||||
😃7传媒06,https://8bb88.cdnedge.live/file/avple-images/hls/62e503617ae31a7fcbbb26d5/playlist.m3u8
|
||||
😃7传媒07,https://zo392.cdnedge.live/file/avple-images/hls/62e4ee8d64d6ad45f65f31b9/playlist.m3u8
|
||||
😃7传媒08,https://zo392.cdnedge.live/file/avple-images/hls/62e4e2cd64d6ad45f65f31b8/playlist.m3u8
|
||||
😃7传媒09,https://8bb88.cdnedge.live/file/avple-images/hls/62e4dbc464d6ad45f65f31b7/playlist.m3u8
|
||||
😃7传媒10,https://1xp60.cdnedge.live/file/avple-images/hls/62e4d4c464d6ad45f65f31b6/playlist.m3u8
|
||||
↓7传媒01,https://zo392.cdnedge.live/file/avple-images/hls/62e3e05368ab9b4779793825/playlist.m3u8
|
||||
↓7传媒02,https://d862cp.cdnedge.live/file/avple-images/hls/62e3c73764d6ad45f65f31b0/playlist.m3u8
|
||||
↓7传媒03,https://10j99.cdnedge.live/file/avple-images/hls/62e285ed03f56d1e4c965640/playlist.m3u8
|
||||
↓7传媒04,https://w9n76.cdnedge.live/file/avple-images/hls/62e285ed03f56d1e4c96563f/playlist.m3u8
|
||||
↓7传媒05,https://e2fa6.cdnedge.live/file/avple-images/hls/62e2866503f56d1e4c965641/playlist.m3u8
|
||||
↓7传媒06,https://e2fa6.cdnedge.live/file/avple-images/hls/62e283d103f56d1e4c96563e/playlist.m3u8
|
||||
↓7传媒07,https://10j99.cdnedge.live/file/avple-images/hls/62e282e203f56d1e4c96563c/playlist.m3u8
|
||||
↓7传媒08,https://e2fa6.cdnedge.live/file/avple-images/hls/62e281f103f56d1e4c96563b/playlist.m3u8
|
||||
↓7传媒09,https://1xp60.cdnedge.live/file/avple-images/hls/62e1a776ae8e25784a42cffd/playlist.m3u8
|
||||
↓7传媒10,https://8bb88.cdnedge.live/file/avple-images/hls/62e17640ae8e25784a42cffc/playlist.m3u8
|
||||
↓7传媒11,https://8bb88.cdnedge.live/file/avple-images/hls/62e16ce0ae8e25784a42cffb/playlist.m3u8
|
||||
↓7传媒12,https://w9n76.cdnedge.live/file/avple-images/hls/62e1612aae8e25784a42cffa/playlist.m3u8
|
||||
🍄7传媒01,https://1xp60.cdnedge.live/file/avple-images/hls/62d40c2e33356255121f1986/playlist.m3u8
|
||||
🍄7传媒02,https://d862cp.cdnedge.live/file/avple-images/hls/62d40c2e33356255121f1985/playlist.m3u8
|
||||
🍄7传媒03,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d40b0133356255121f1983/playlist.m3u8
|
||||
🍄7传媒04,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d40b0133356255121f1984/playlist.m3u8
|
||||
🍄7传媒05,https://1xp60.cdnedge.live/file/avple-images/hls/62d40a1133356255121f1982/playlist.m3u8
|
||||
🍄7传媒06,https://u89ey.cdnedge.live/file/avple-images/hls/62d2c7550876771b0a5ff9f6/playlist.m3u8
|
||||
🍄7传媒07,https://u89ey.cdnedge.live/file/avple-images/hls/62d2c6a10876771b0a5ff9f5/playlist.m3u8
|
||||
🍄7传媒08,https://je40u.cdnedge.live/file/avple-images/hls/62d2c5ed0876771b0a5ff9f4/playlist.m3u8
|
||||
🍄7传媒09,https://zo392.cdnedge.live/file/avple-images/hls/62d186b59ba01b6759166c03/playlist.m3u8
|
||||
🍌7传媒01,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d1136d3f2a4e362eb52b79/playlist.m3u8
|
||||
🍌7传媒02,https://10j99.cdnedge.live/file/avple-images/hls/62d112bc3f2a4e362eb52b78/playlist.m3u8
|
||||
🍌7传媒03,https://zo392.cdnedge.live/file/avple-images/hls/62d111183f2a4e362eb52b75/playlist.m3u8
|
||||
🍌7传媒04,https://1xp60.cdnedge.live/file/avple-images/hls/62d1127e3f2a4e362eb52b77/playlist.m3u8
|
||||
🍌7传媒05,https://1xp60.cdnedge.live/file/avple-images/hls/62d112423f2a4e362eb52b76/playlist.m3u8
|
||||
🍌7传媒06,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d10fad3f2a4e362eb52b73/playlist.m3u8
|
||||
🍌7传媒07,https://je40u.cdnedge.live/file/avple-images/hls/62d10ef93f2a4e362eb52b72/playlist.m3u8
|
||||
🍌7传媒08,https://1xp60.cdnedge.live/file/avple-images/hls/62d1109e3f2a4e362eb52b74/playlist.m3u8
|
||||
🍌7传媒09,https://1xp60.cdnedge.live/file/avple-images/hls/62d10e093f2a4e362eb52b71/playlist.m3u8
|
||||
🍌7传媒10,https://d862cp.cdnedge.live/file/avple-images/hls/62d10d563f2a4e362eb52b70/playlist.m3u8
|
||||
🍌7传媒11,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d10d1a3f2a4e362eb52b6f/playlist.m3u8
|
||||
🍌7传媒12,https://je40u.cdnedge.live/file/avple-images/hls/62d10c673f2a4e362eb52b6e/playlist.m3u8
|
||||
🍌7传媒13,https://u89ey.cdnedge.live/file/avple-images/hls/62d10bb23f2a4e362eb52b6d/playlist.m3u8
|
||||
🍌7传媒14,https://u89ey.cdnedge.live/file/avple-images/hls/62d10aff3f2a4e362eb52b6c/playlist.m3u8
|
||||
🍌7传媒15,https://d862cp.cdnedge.live/file/avple-images/hls/62d10a873f2a4e362eb52b6b/playlist.m3u8
|
||||
🍌7传媒16,https://d862cp.cdnedge.live/file/avple-images/hls/62d10a103f2a4e362eb52b6a/playlist.m3u8
|
||||
🍌7传媒17,https://d862cp.cdnedge.live/file/avple-images/hls/62d109983f2a4e362eb52b69/playlist.m3u8
|
||||
🍌7传媒18,https://u89ey.cdnedge.live/file/avple-images/hls/62d1077d3f2a4e362eb52b66/playlist.m3u8
|
||||
🍌7传媒19,https://je40u.cdnedge.live/file/avple-images/hls/62d1091f3f2a4e362eb52b68/playlist.m3u8
|
||||
🍌7传媒20,https://10j99.cdnedge.live/file/avple-images/hls/62d108303f2a4e362eb52b67/playlist.m3u8
|
||||
🍌7传媒21,https://je40u.cdnedge.live/file/avple-images/hls/62d103443f2a4e362eb52b65/playlist.m3u8
|
||||
🍌7传媒22,https://e2fa6.cdnedge.live/file/avple-images/hls/62d0fffe3f2a4e362eb52b64/playlist.m3u8
|
||||
🍌7传媒23,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d0ffc03f2a4e362eb52b63/playlist.m3u8
|
||||
🍌7传媒24,https://10j99.cdnedge.live/file/avple-images/hls/62d0fda53f2a4e362eb52b62/playlist.m3u8
|
||||
🍌7传媒25,https://je40u.cdnedge.live/file/avple-images/hls/62d0fc403f2a4e362eb52b60/playlist.m3u8
|
||||
🍌7传媒26,https://10j99.cdnedge.live/file/avple-images/hls/62d0fcb53f2a4e362eb52b61/playlist.m3u8
|
||||
🍌7传媒27,https://d862cp.cdnedge.live/file/avple-images/hls/62d0fc053f2a4e362eb52b5f/playlist.m3u8
|
||||
🍌7传媒28,https://w9n76.cdnedge.live/file/avple-images/hls/62d0fb153f2a4e362eb52b5d/playlist.m3u8
|
||||
🍌7传媒29,https://w9n76.cdnedge.live/file/avple-images/hls/62d0fa223f2a4e362eb52b5b/playlist.m3u8
|
||||
🍌7传媒30,https://10j99.cdnedge.live/file/avple-images/hls/62d0fad63f2a4e362eb52b5c/playlist.m3u8
|
||||
🍌7传媒31,https://10j99.cdnedge.live/file/avple-images/hls/62d0f9aa3f2a4e362eb52b5a/playlist.m3u8
|
||||
🍌7传媒32,https://e2fa6.cdnedge.live/file/avple-images/hls/62d0f87f3f2a4e362eb52b59/playlist.m3u8
|
||||
🍌7传媒33,https://zo392.cdnedge.live/file/avple-images/hls/62d0f80d3f2a4e362eb52b58/playlist.m3u8
|
||||
🍌7传媒34,https://1xp60.cdnedge.live/file/avple-images/hls/62d016fa3f2a4e362eb52b56/playlist.m3u8
|
||||
🍌7传媒35,https://zo392.cdnedge.live/file/avple-images/hls/62d015913f2a4e362eb52b54/playlist.m3u8
|
||||
🍌7传媒36,https://8bb88.cdnedge.live/file/avple-images/hls/62d014dd3f2a4e362eb52b52/playlist.m3u8
|
||||
🍌7传媒37,https://1xp60.cdnedge.live/file/avple-images/hls/62d013753f2a4e362eb52b51/playlist.m3u8
|
||||
👀7传媒01,https://w9n76.cdnedge.live/file/avple-images/hls/62c43a77366b240e3b67be28/playlist.m3u8
|
||||
👀7传媒02,https://u89ey.cdnedge.live/file/avple-images/hls/62c448bd366b240e3b67be3b/playlist.m3u8
|
||||
👀7传媒03,https://10j99.cdnedge.live/file/avple-images/hls/62c44575366b240e3b67be3a/playlist.m3u8
|
||||
👀7传媒04,https://10j99.cdnedge.live/file/avple-images/hls/62c4444a366b240e3b67be37/playlist.m3u8
|
||||
👀7传媒05,https://u89ey.cdnedge.live/file/avple-images/hls/62c43a3c366b240e3b67be27/playlist.m3u8
|
||||
👀7传媒06,https://8bb88.cdnedge.live/file/avple-images/hls/62c44c81366b240e3b67be3c/playlist.m3u8
|
||||
👀7传媒07,https://e2fa6.cdnedge.live/file/avple-images/hls/62c44485366b240e3b67be38/playlist.m3u8
|
||||
👀7传媒08,https://je40u.cdnedge.live/file/avple-images/hls/62c43af1366b240e3b67be29/playlist.m3u8
|
||||
👀7传媒09,https://zo392.cdnedge.live/file/avple-images/hls/62c44398366b240e3b67be36/playlist.m3u8
|
||||
👀7传媒10,https://10j99.cdnedge.live/file/avple-images/hls/62c44359366b240e3b67be35/playlist.m3u8
|
||||
👀7传媒11,https://je40u.cdnedge.live/file/avple-images/hls/62c4426c366b240e3b67be34/playlist.m3u8
|
||||
👀7传媒12,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c44231366b240e3b67be33/playlist.m3u8
|
||||
👀7传媒13,https://u89ey.cdnedge.live/file/avple-images/hls/62c4413f366b240e3b67be32/playlist.m3u8
|
||||
👀7传媒14,https://8bb88.cdnedge.live/file/avple-images/hls/62c440c8366b240e3b67be31/playlist.m3u8
|
||||
👀7传媒15,https://e2fa6.cdnedge.live/file/avple-images/hls/62c4408b366b240e3b67be30/playlist.m3u8
|
||||
👀7传媒16,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c44019366b240e3b67be2f/playlist.m3u8
|
||||
👀7传媒17,https://10j99.cdnedge.live/file/avple-images/hls/62c43eab366b240e3b67be2e/playlist.m3u8
|
||||
👀7传媒18,https://u89ey.cdnedge.live/file/avple-images/hls/62c43910366b240e3b67be25/playlist.m3u8
|
||||
👀7传媒19,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c43e37366b240e3b67be2d/playlist.m3u8
|
||||
👀7传媒20,https://1xp60.cdnedge.live/file/avple-images/hls/62c43dfa366b240e3b67be2c/playlist.m3u8
|
||||
👀7传媒21,https://u89ey.cdnedge.live/file/avple-images/hls/62c439c3366b240e3b67be26/playlist.m3u8
|
||||
👀7传媒22,https://8bb88.cdnedge.live/file/avple-images/hls/62c43d81366b240e3b67be2b/playlist.m3u8
|
||||
👀7传媒24,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c41f75366b240e3b67be21/playlist.m3u8
|
||||
🐴6传媒02,https://w9n76.cdnedge.live/file/avple-images/hls/62bd84f5d0fa6a48496bbf59/playlist.m3u8
|
||||
🐴6传媒03,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbf60aea3d425e0a93b7ae/playlist.m3u8
|
||||
🐴6传媒04,https://8bb88.cdnedge.live/file/avple-images/hls/62bbf3efea3d425e0a93b7a9/playlist.m3u8
|
||||
🐴6传媒05,https://je40u.cdnedge.live/file/avple-images/hls/62bbf592ea3d425e0a93b7ad/playlist.m3u8
|
||||
🐴6传媒06,https://w9n76.cdnedge.live/file/avple-images/hls/62bbf51aea3d425e0a93b7ab/playlist.m3u8
|
||||
🐴6传媒07,https://zo392.cdnedge.live/file/avple-images/hls/62bbf556ea3d425e0a93b7ac/playlist.m3u8
|
||||
🐴6传媒09,https://10j99.cdnedge.live/file/avple-images/hls/62bbf06cea3d425e0a93b7a5/playlist.m3u8
|
||||
🐴6传媒10,https://10j99.cdnedge.live/file/avple-images/hls/62bbf378ea3d425e0a93b7a8/playlist.m3u8
|
||||
🐴6传媒11,https://zo392.cdnedge.live/file/avple-images/hls/62bbf33aea3d425e0a93b7a7/playlist.m3u8
|
||||
🐴6传媒12,https://je40u.cdnedge.live/file/avple-images/hls/62bbf02fea3d425e0a93b7a4/playlist.m3u8
|
||||
🐴6传媒13,https://10j99.cdnedge.live/file/avple-images/hls/62bbefb8ea3d425e0a93b7a3/playlist.m3u8
|
||||
🐴6传媒14,https://zo392.cdnedge.live/file/avple-images/hls/62bbef7cea3d425e0a93b7a2/playlist.m3u8
|
||||
🐴6传媒15,https://je40u.cdnedge.live/file/avple-images/hls/62bbef03ea3d425e0a93b7a1/playlist.m3u8
|
||||
🐴6传媒16,https://u89ey.cdnedge.live/file/avple-images/hls/62bbed9fea3d425e0a93b79e/playlist.m3u8
|
||||
🐴6传媒17,https://zo392.cdnedge.live/file/avple-images/hls/62bbeec8ea3d425e0a93b7a0/playlist.m3u8
|
||||
🐴6传媒18,https://zo392.cdnedge.live/file/avple-images/hls/62bbee50ea3d425e0a93b79f/playlist.m3u8
|
||||
🐴6传媒19,https://10j99.cdnedge.live/file/avple-images/hls/62bbec72ea3d425e0a93b79c/playlist.m3u8
|
||||
🐴6传媒20,https://d862cp.cdnedge.live/file/avple-images/hls/62bbed25ea3d425e0a93b79d/playlist.m3u8
|
||||
🐴6传媒21,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbeb0aea3d425e0a93b79b/playlist.m3u8
|
||||
🐴6传媒22,https://1xp60.cdnedge.live/file/avple-images/hls/62bbe9dfea3d425e0a93b798/playlist.m3u8
|
||||
🐴6传媒23,https://8bb88.cdnedge.live/file/avple-images/hls/62bbea91ea3d425e0a93b79a/playlist.m3u8
|
||||
🐴6传媒24,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbe92aea3d425e0a93b797/playlist.m3u8
|
||||
🐴6传媒25,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbea1aea3d425e0a93b799/playlist.m3u8
|
||||
🐴6传媒26,https://zo392.cdnedge.live/file/avple-images/hls/62bb2046ea3d425e0a93b796/playlist.m3u8
|
||||
🐴6传媒27,https://zo392.cdnedge.live/file/avple-images/hls/62bb1bd1ea3d425e0a93b795/playlist.m3u8
|
||||
🐴6传媒28,https://10j99.cdnedge.live/file/avple-images/hls/62bb0a7aea3d425e0a93b791/playlist.m3u8
|
||||
🐴6传媒29,https://e2fa6.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b52/playlist.m3u8
|
||||
🐴6传媒30,https://1xp60.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b51/playlist.m3u8
|
||||
🐴6传媒31,https://8bb88.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b50/playlist.m3u8
|
||||
🐴6传媒32,https://10j99.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b4f/playlist.m3u8
|
||||
🐴6传媒33,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b4e/playlist.m3u8
|
||||
🐴6传媒34,https://1xp60.cdnedge.live/file/avple-images/hls/62b9b6b74cd7211d4f02180c/playlist.m3u8
|
||||
🐴6传媒35,https://1xp60.cdnedge.live/file/avple-images/hls/62b64e19fcc60515a0303de6/playlist.m3u8
|
||||
🐶6传媒01,https://1xp60.cdnedge.live/file/avple-images/hls/62b4346cea01b50f6781dc5f/playlist.m3u8
|
||||
🐶6传媒02,https://w9n76.cdnedge.live/file/avple-images/hls/62b433b8ea01b50f6781dc5e/playlist.m3u8
|
||||
🐶6传媒03,https://w9n76.cdnedge.live/file/avple-images/hls/62b4337fea01b50f6781dc5d/playlist.m3u8
|
||||
🐶6传媒04,https://d862cp.cdnedge.live/file/avple-images/hls/62b43341ea01b50f6781dc5c/playlist.m3u8
|
||||
🐶6传媒05,https://d862cp.cdnedge.live/file/avple-images/hls/62b43253ea01b50f6781dc5a/playlist.m3u8
|
||||
🐶6传媒06,https://d862cp.cdnedge.live/file/avple-images/hls/62b43214ea01b50f6781dc59/playlist.m3u8
|
||||
🐶6传媒07,https://d862cp.cdnedge.live/file/avple-images/hls/62b432ccea01b50f6781dc5b/playlist.m3u8
|
||||
🐶6传媒08,https://d862cp.cdnedge.live/file/avple-images/hls/62b431daea01b50f6781dc58/playlist.m3u8
|
||||
🐶6传媒09,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b2dd89eec8264ea0826f31/playlist.m3u8
|
||||
🐶6传媒10,https://w9n76.cdnedge.live/file/avple-images/hls/62b2de3eeec8264ea0826f32/playlist.m3u8
|
||||
🐶6传媒11,https://e2fa6.cdnedge.live/file/avple-images/hls/62b2dd12eec8264ea0826f30/playlist.m3u8
|
||||
🐶6传媒12,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b2dbadeec8264ea0826f2f/playlist.m3u8
|
||||
🐶6传媒13,https://u89ey.cdnedge.live/file/avple-images/hls/62b1b8cceec8264ea0826f2e/playlist.m3u8
|
||||
🐶6传媒14,https://d862cp.cdnedge.live/file/avple-images/hls/62b1b7a2eec8264ea0826f2d/playlist.m3u8
|
||||
🐶6传媒15,https://10j99.cdnedge.live/file/avple-images/hls/62b1b6eceec8264ea0826f2c/playlist.m3u8
|
||||
🐶6传媒16,https://e2fa6.cdnedge.live/file/avple-images/hls/62b1b5feeec8264ea0826f2b/playlist.m3u8
|
||||
🐶6传媒17,https://w9n76.cdnedge.live/file/avple-images/hls/62b1b4d2eec8264ea0826f29/playlist.m3u8
|
||||
🐶6传媒18,https://1xp60.cdnedge.live/file/avple-images/hls/62b1b586eec8264ea0826f2a/playlist.m3u8
|
||||
🐶6传媒19,https://10j99.cdnedge.live/file/avple-images/hls/62b1b45aeec8264ea0826f28/playlist.m3u8
|
||||
🍓6传媒01,https://d862cp.cdnedge.live/file/avple-images/hls/62aed121c556631aff1378f2/playlist.m3u8
|
||||
🍓6传媒02,https://8bb88.cdnedge.live/file/avple-images/hls/62aed1d5c556631aff1378f4/playlist.m3u8
|
||||
🍓6传媒03,https://zo392.cdnedge.live/file/avple-images/hls/62aed19cc556631aff1378f3/playlist.m3u8
|
||||
🍓6传媒04,https://8bb88.cdnedge.live/file/avple-images/hls/62aecf05c556631aff1378ef/playlist.m3u8
|
||||
🍓6传媒05,https://d862cp.cdnedge.live/file/avple-images/hls/62aed0a9c556631aff1378f1/playlist.m3u8
|
||||
🍓6传媒06,https://q2cyl7.cdnedge.live/file/avple-images/hls/62aecff5c556631aff1378f0/playlist.m3u8
|
||||
🍓6传媒07,https://1xp60.cdnedge.live/file/avple-images/hls/62aece15c556631aff1378ee/playlist.m3u8
|
||||
🍓6传媒08,https://w9n76.cdnedge.live/file/avple-images/hls/62aeccaec556631aff1378ed/playlist.m3u8
|
||||
🍓6传媒09,https://u89ey.cdnedge.live/file/avple-images/hls/62aecbbdc556631aff1378eb/playlist.m3u8
|
||||
🍓6传媒10,https://8bb88.cdnedge.live/file/avple-images/hls/62aecb0ac556631aff1378ea/playlist.m3u8
|
||||
🍓6传媒11,https://je40u.cdnedge.live/file/avple-images/hls/62ac67c91ea6384bb6ca9f8d/playlist.m3u8
|
||||
🍓6传媒12,https://8bb88.cdnedge.live/file/avple-images/hls/62ac68051ea6384bb6ca9f8e/playlist.m3u8
|
||||
🍓6传媒13,https://d862cp.cdnedge.live/file/avple-images/hls/62ac67541ea6384bb6ca9f8c/playlist.m3u8
|
||||
🍓6传媒14,https://w9n76.cdnedge.live/file/avple-images/hls/62ac66d81ea6384bb6ca9f8b/playlist.m3u8
|
||||
🍓6传媒15,https://8bb88.cdnedge.live/file/avple-images/hls/62ac66641ea6384bb6ca9f8a/playlist.m3u8
|
||||
🍓6传媒16,https://u89ey.cdnedge.live/file/avple-images/hls/62ac65ec1ea6384bb6ca9f89/playlist.m3u8
|
||||
🍓6传媒17,https://10j99.cdnedge.live/file/avple-images/hls/62ac64491ea6384bb6ca9f88/playlist.m3u8
|
||||
🍓6传媒18,https://u89ey.cdnedge.live/file/avple-images/hls/62ac63931ea6384bb6ca9f87/playlist.m3u8
|
||||
🍓6传媒19,https://d862cp.cdnedge.live/file/avple-images/hls/62ac60491ea6384bb6ca9f86/playlist.m3u8
|
||||
🍓6传媒20,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad43121a7da2e6584bc8b/playlist.m3u8
|
||||
🍓6传媒21,https://w9n76.cdnedge.live/file/avple-images/hls/62aad3b921a7da2e6584bc8a/playlist.m3u8
|
||||
🍓6传媒22,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad4a621a7da2e6584bc8c/playlist.m3u8
|
||||
🍓6传媒23,https://w9n76.cdnedge.live/file/avple-images/hls/62aad86721a7da2e6584bc93/playlist.m3u8
|
||||
🍓6传媒24,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad60e21a7da2e6584bc8f/playlist.m3u8
|
||||
🍓6传媒25,https://zo392.cdnedge.live/file/avple-images/hls/62aad51f21a7da2e6584bc8d/playlist.m3u8
|
||||
🍓6传媒26,https://w9n76.cdnedge.live/file/avple-images/hls/62aad21a21a7da2e6584bc89/playlist.m3u8
|
||||
🍓6传媒27,https://8bb88.cdnedge.live/file/avple-images/hls/62aad7b221a7da2e6584bc92/playlist.m3u8
|
||||
🍓6传媒28,https://u89ey.cdnedge.live/file/avple-images/hls/62aad0ac21a7da2e6584bc88/playlist.m3u8
|
||||
🍓6传媒29,https://w9n76.cdnedge.live/file/avple-images/hls/62aad64c21a7da2e6584bc90/playlist.m3u8
|
||||
🍓6传媒30,https://d862cp.cdnedge.live/file/avple-images/hls/62aad03321a7da2e6584bc87/playlist.m3u8
|
||||
🍓6传媒31,https://q2cyl7.cdnedge.live/file/avple-images/hls/62aacf8121a7da2e6584bc86/playlist.m3u8
|
||||
🍓6传媒32,https://d862cp.cdnedge.live/file/avple-images/hls/62aacecb21a7da2e6584bc85/playlist.m3u8
|
||||
🍓6传媒33,https://je40u.cdnedge.live/file/avple-images/hls/62aace5621a7da2e6584bc84/playlist.m3u8
|
||||
🍓6传媒34,https://10j99.cdnedge.live/file/avple-images/hls/62aacddb21a7da2e6584bc83/playlist.m3u8
|
||||
🍓6传媒35,https://d862cp.cdnedge.live/file/avple-images/hls/62aacc3a21a7da2e6584bc81/playlist.m3u8
|
||||
🍓6传媒36,https://je40u.cdnedge.live/file/avple-images/hls/62aaca9721a7da2e6584bc7f/playlist.m3u8
|
||||
🍓6传媒37,https://1xp60.cdnedge.live/file/avple-images/hls/62aacb0c21a7da2e6584bc80/playlist.m3u8
|
||||
🍓6传媒38,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a9bc9d21a7da2e6584bc7e/playlist.m3u8
|
||||
🍓6传媒01,https://e2fa6.cdnedge.live/file/avple-images/hls/62a5afee94b044303b9622df/playlist.m3u8
|
||||
🍓6传媒02,https://zo392.cdnedge.live/file/avple-images/hls/62a5aefe94b044303b9622de/playlist.m3u8
|
||||
🍓6传媒03,https://w9n76.cdnedge.live/file/avple-images/hls/62a5b68294b044303b9622e3/playlist.m3u8
|
||||
🍓6传媒04,https://8bb88.cdnedge.live/file/avple-images/hls/62a5b0a294b044303b9622e0/playlist.m3u8
|
||||
🍓6传媒05,https://zo392.cdnedge.live/file/avple-images/hls/62a5b37294b044303b9622e2/playlist.m3u8
|
||||
🍓6传媒06,https://d862cp.cdnedge.live/file/avple-images/hls/62a5ac6b94b044303b9622db/playlist.m3u8
|
||||
🍓6传媒07,https://je40u.cdnedge.live/file/avple-images/hls/62a5b24894b044303b9622e1/playlist.m3u8
|
||||
🍓6传媒08,https://w9n76.cdnedge.live/file/avple-images/hls/62a5ae4a94b044303b9622dd/playlist.m3u8
|
||||
🍓6传媒09,https://je40u.cdnedge.live/file/avple-images/hls/62a5ace294b044303b9622dc/playlist.m3u8
|
||||
🍓6传媒10,https://w9n76.cdnedge.live/file/avple-images/hls/62a5abb794b044303b9622da/playlist.m3u8
|
||||
🍓6传媒11,https://1xp60.cdnedge.live/file/avple-images/hls/62a5a70894b044303b9622d4/playlist.m3u8
|
||||
🍓6传媒12,https://zo392.cdnedge.live/file/avple-images/hls/62a5aa8d94b044303b9622d9/playlist.m3u8
|
||||
🍓6传媒13,https://u89ey.cdnedge.live/file/avple-images/hls/62a5a99d94b044303b9622d8/playlist.m3u8
|
||||
🍓6传媒14,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a5a65594b044303b9622d3/playlist.m3u8
|
||||
🍓6传媒15,https://d862cp.cdnedge.live/file/avple-images/hls/62a5a56594b044303b9622d2/playlist.m3u8
|
||||
🍓6传媒16,https://u89ey.cdnedge.live/file/avple-images/hls/62a5a4ee94b044303b9622d1/playlist.m3u8
|
||||
🍓6传媒17,https://je40u.cdnedge.live/file/avple-images/hls/62a58dbd94b044303b9622d0/playlist.m3u8
|
||||
🍓6传媒18,https://e2fa6.cdnedge.live/file/avple-images/hls/62a58b9e94b044303b9622cf/playlist.m3u8
|
||||
🍓6传媒19,https://u89ey.cdnedge.live/file/avple-images/hls/62a494d494b044303b9622cb/playlist.m3u8
|
||||
🍓6传媒20,https://8bb88.cdnedge.live/file/avple-images/hls/62a497a394b044303b9622ce/playlist.m3u8
|
||||
🍓6传媒21,https://d862cp.cdnedge.live/file/avple-images/hls/62a496f094b044303b9622cd/playlist.m3u8
|
||||
🍓6传媒22,https://u89ey.cdnedge.live/file/avple-images/hls/62a4963b94b044303b9622cc/playlist.m3u8
|
||||
🍓6传媒23,https://w9n76.cdnedge.live/file/avple-images/hls/62a32d8700bfe87ec988ccdc/playlist.m3u8
|
||||
🍓6传媒24,https://10j99.cdnedge.live/file/avple-images/hls/62a2a82856220431fa6b0d8d/playlist.m3u8
|
||||
🍓6传媒25,https://w9n76.cdnedge.live/file/avple-images/hls/62a2b76356220431fa6b0d91/playlist.m3u8
|
||||
🍓6传媒26,https://u89ey.cdnedge.live/file/avple-images/hls/62a2a91856220431fa6b0d8e/playlist.m3u8
|
||||
🍓6传媒27,https://e2fa6.cdnedge.live/file/avple-images/hls/62a2a99256220431fa6b0d8f/playlist.m3u8
|
||||
🍓6传媒28,https://1xp60.cdnedge.live/file/avple-images/hls/62a2a64a56220431fa6b0d89/playlist.m3u8
|
||||
🍓6传媒29,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a2a68556220431fa6b0d8a/playlist.m3u8
|
||||
🍓6传媒30,https://u89ey.cdnedge.live/file/avple-images/hls/62a2a77456220431fa6b0d8c/playlist.m3u8
|
||||
🍓6传媒31,https://d862cp.cdnedge.live/file/avple-images/hls/62a2a5d356220431fa6b0d88/playlist.m3u8
|
||||
🍓6传媒32,https://1xp60.cdnedge.live/file/avple-images/hls/62a2a55956220431fa6b0d87/playlist.m3u8
|
||||
🍓6传媒33,https://zo392.cdnedge.live/file/avple-images/hls/62a1cbdf56220431fa6b0d84/playlist.m3u8
|
||||
🍓6传媒34,https://je40u.cdnedge.live/file/avple-images/hls/62a1ca7556220431fa6b0d82/playlist.m3u8
|
||||
🍓6传媒35,https://zo392.cdnedge.live/file/avple-images/hls/62a1cb2956220431fa6b0d83/playlist.m3u8
|
||||
🍓6传媒36,https://je40u.cdnedge.live/file/avple-images/hls/62a1c9bf56220431fa6b0d81/playlist.m3u8
|
||||
🍓6传媒37,https://8bb88.cdnedge.live/file/avple-images/hls/62a1c90c56220431fa6b0d80/playlist.m3u8
|
||||
🍓6传媒38,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a1c7a456220431fa6b0d7e/playlist.m3u8
|
||||
🍓6传媒39,https://e2fa6.cdnedge.live/file/avple-images/hls/62a1c429de0057366eb1159a/playlist.m3u8
|
||||
🍓6传媒40,https://w9n76.cdnedge.live/file/avple-images/hls/629f660879f93b6e0966e237/playlist.m3u8
|
||||
🍓6传媒41,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f652a1b03d86e173f7d3d/playlist.m3u8
|
||||
🍓6传媒42,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f652a1b03d86e173f7d3c/playlist.m3u8
|
||||
🍓6传媒43,https://10j99.cdnedge.live/file/avple-images/hls/629f63ec79f93b6e0966e236/playlist.m3u8
|
||||
🍓6传媒44,https://8bb88.cdnedge.live/file/avple-images/hls/629f26bc79f93b6e0966e22f/playlist.m3u8
|
||||
🍓6传媒45,https://1xp60.cdnedge.live/file/avple-images/hls/629f289b79f93b6e0966e233/playlist.m3u8
|
||||
🍓6传媒46,https://10j99.cdnedge.live/file/avple-images/hls/629f295579f93b6e0966e235/playlist.m3u8
|
||||
🍓6传媒47,https://8bb88.cdnedge.live/file/avple-images/hls/629f291679f93b6e0966e234/playlist.m3u8
|
||||
🍓6传媒48,https://8bb88.cdnedge.live/file/avple-images/hls/629f268279f93b6e0966e22e/playlist.m3u8
|
||||
🍓6传媒49,https://8bb88.cdnedge.live/file/avple-images/hls/629f260979f93b6e0966e22d/playlist.m3u8
|
||||
🍓6传媒50,https://d862cp.cdnedge.live/file/avple-images/hls/629f273379f93b6e0966e230/playlist.m3u8
|
||||
🍓6传媒51,https://je40u.cdnedge.live/file/avple-images/hls/629f27b179f93b6e0966e231/playlist.m3u8
|
||||
🍓6传媒52,https://je40u.cdnedge.live/file/avple-images/hls/629f282479f93b6e0966e232/playlist.m3u8
|
||||
🍓6传媒53,https://e2fa6.cdnedge.live/file/avple-images/hls/629f1f02759a6d027422edf6/playlist.m3u8
|
||||
🍓6传媒54,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f1c32759a6d027422edf5/playlist.m3u8
|
||||
🍓6传媒55,https://8bb88.cdnedge.live/file/avple-images/hls/629f1bf5759a6d027422edf4/playlist.m3u8
|
||||
🍓6传媒56,https://zo392.cdnedge.live/file/avple-images/hls/629f1b7d759a6d027422edf3/playlist.m3u8
|
||||
🍓6传媒57,https://1xp60.cdnedge.live/file/avple-images/hls/629e1a28759a6d027422edf1/playlist.m3u8
|
||||
🍓6传媒58,https://q2cyl7.cdnedge.live/file/avple-images/hls/629e1a29759a6d027422edf2/playlist.m3u8
|
||||
🍓6传媒59,https://e2fa6.cdnedge.live/file/avple-images/hls/629b3e33c73d695b3e2f393a/playlist.m3u8
|
||||
🍓6传媒60,https://w9n76.cdnedge.live/file/avple-images/hls/629b2e05c73d695b3e2f3938/playlist.m3u8
|
||||
🍓6传媒61,https://8bb88.cdnedge.live/file/avple-images/hls/629b2ebec73d695b3e2f3939/playlist.m3u8
|
||||
🍓6传媒62,https://10j99.cdnedge.live/file/avple-images/hls/629b2d8cc73d695b3e2f3937/playlist.m3u8
|
||||
🍓6传媒63,https://1xp60.cdnedge.live/file/avple-images/hls/629b2d59c73d695b3e2f3936/playlist.m3u8
|
||||
🍓6传媒64,https://w9n76.cdnedge.live/file/avple-images/hls/629b2c9c62a22f14d4ef2521/playlist.m3u8
|
||||
🍓6传媒65,https://je40u.cdnedge.live/file/avple-images/hls/629b2be962a22f14d4ef2520/playlist.m3u8
|
||||
🍓6传媒66,https://q2cyl7.cdnedge.live/file/avple-images/hls/629b2b7162a22f14d4ef251f/playlist.m3u8
|
||||
🍓6传媒67,https://je40u.cdnedge.live/file/avple-images/hls/629a049d62a22f14d4ef251d/playlist.m3u8
|
||||
🍓6传媒68,https://8bb88.cdnedge.live/file/avple-images/hls/629a049d62a22f14d4ef251e/playlist.m3u8
|
||||
🍓6传媒69,https://10j99.cdnedge.live/file/avple-images/hls/629a03e862a22f14d4ef251c/playlist.m3u8
|
||||
🍓6传媒70,https://d862cp.cdnedge.live/file/avple-images/hls/629a01ce62a22f14d4ef251b/playlist.m3u8
|
||||
🍓6传媒71,https://zo392.cdnedge.live/file/avple-images/hls/629a011862a22f14d4ef251a/playlist.m3u8
|
||||
🍓6传媒72,https://10j99.cdnedge.live/file/avple-images/hls/6298bad914bfa15d01c0842d/playlist.m3u8
|
||||
🍓6传媒73,https://w9n76.cdnedge.live/file/avple-images/hls/62986aee23d5972db0bfc9a2/playlist.m3u8
|
||||
🍓6传媒74,https://10j99.cdnedge.live/file/avple-images/hls/62986a7523d5972db0bfc9a1/playlist.m3u8
|
||||
🍓6传媒75,https://u89ey.cdnedge.live/file/avple-images/hls/62986df623d5972db0bfc9a7/playlist.m3u8
|
||||
🍓6传媒76,https://10j99.cdnedge.live/file/avple-images/hls/62986d8123d5972db0bfc9a6/playlist.m3u8
|
||||
🍓6传媒77,https://u89ey.cdnedge.live/file/avple-images/hls/62986bda23d5972db0bfc9a4/playlist.m3u8
|
||||
🍓6传媒78,https://q2cyl7.cdnedge.live/file/avple-images/hls/62986d4223d5972db0bfc9a5/playlist.m3u8
|
||||
🍓6传媒79,https://u89ey.cdnedge.live/file/avple-images/hls/62986ba123d5972db0bfc9a3/playlist.m3u8
|
||||
🍓6传媒80,https://1xp60.cdnedge.live/file/avple-images/hls/6298690b23d5972db0bfc99f/playlist.m3u8
|
||||
🍓6传媒81,https://w9n76.cdnedge.live/file/avple-images/hls/6298698323d5972db0bfc9a0/playlist.m3u8
|
||||
🍓6传媒82,https://zo392.cdnedge.live/file/avple-images/hls/6298681b23d5972db0bfc99c/playlist.m3u8
|
||||
🍓6传媒83,https://8bb88.cdnedge.live/file/avple-images/hls/6298685823d5972db0bfc99d/playlist.m3u8
|
||||
🍓6传媒84,https://8bb88.cdnedge.live/file/avple-images/hls/6295fb067ef42454a69c76d6/playlist.m3u8
|
||||
🍓6传媒85,https://1xp60.cdnedge.live/file/avple-images/hls/6295f5667ef42454a69c76d4/playlist.m3u8
|
||||
🍓6传媒86,https://8bb88.cdnedge.live/file/avple-images/hls/6295f53721a63954baad12c8/playlist.m3u8
|
||||
🍓6传媒87,https://d862cp.cdnedge.live/file/avple-images/hls/6295f4087ef42454a69c76d3/playlist.m3u8
|
||||
🍓6传媒88,https://8bb88.cdnedge.live/file/avple-images/hls/6295806f180f8c65c7d908bc/playlist.m3u8
|
||||
🍓6传媒89,https://d862cp.cdnedge.live/file/avple-images/hls/62957f08180f8c65c7d908b9/playlist.m3u8
|
||||
🍓6传媒90,https://10j99.cdnedge.live/file/avple-images/hls/62957b83180f8c65c7d908b6/playlist.m3u8
|
||||
🍓6传媒92,https://8bb88.cdnedge.live/file/avple-images/hls/62957ecc180f8c65c7d908b8/playlist.m3u8
|
||||
🍓6传媒93,https://q2cyl7.cdnedge.live/file/avple-images/hls/62957fbb180f8c65c7d908ba/playlist.m3u8
|
||||
🍓6传媒94,https://10j99.cdnedge.live/file/avple-images/hls/6295806f180f8c65c7d908bb/playlist.m3u8
|
||||
🍓6传媒95,https://10j99.cdnedge.live/file/avple-images/hls/62957a56180f8c65c7d908b4/playlist.m3u8
|
||||
🍓6传媒96,https://q2cyl7.cdnedge.live/file/avple-images/hls/62957968180f8c65c7d908b3/playlist.m3u8
|
||||
🍓6传媒97,https://je40u.cdnedge.live/file/avple-images/hls/62957876180f8c65c7d908b1/playlist.m3u8
|
||||
🍓6传媒98,https://w9n76.cdnedge.live/file/avple-images/hls/62957788180f8c65c7d908af/playlist.m3u8
|
||||
🍓6传媒99,https://u89ey.cdnedge.live/file/avple-images/hls/629578ef180f8c65c7d908b2/playlist.m3u8
|
||||
🍓6传媒100,https://d862cp.cdnedge.live/file/avple-images/hls/6295761e180f8c65c7d908ac/playlist.m3u8
|
||||
🍓6传媒101,https://q2cyl7.cdnedge.live/file/avple-images/hls/629574b7180f8c65c7d908aa/playlist.m3u8
|
||||
🍓6传媒102,https://1xp60.cdnedge.live/file/avple-images/hls/629574f2180f8c65c7d908ab/playlist.m3u8
|
||||
🍓6传媒103,https://10j99.cdnedge.live/file/avple-images/hls/62955c19180f8c65c7d908a9/playlist.m3u8
|
||||
🍓6传媒104,https://10j99.cdnedge.live/file/avple-images/hls/6294dcd9180f8c65c7d908a7/playlist.m3u8
|
||||
🍓6传媒107,https://zo392.cdnedge.live/file/avple-images/hls/62924a7c777f8769be5fdfaa/playlist.m3u8
|
||||
🍓6传媒108,https://10j99.cdnedge.live/file/avple-images/hls/62924950777f8769be5fdfa9/playlist.m3u8
|
||||
🍓6传媒110,https://1xp60.cdnedge.live/file/avple-images/hls/6292485f777f8769be5fdfa8/playlist.m3u8
|
||||
🍓6传媒111,https://je40u.cdnedge.live/file/avple-images/hls/62924770777f8769be5fdfa6/playlist.m3u8
|
||||
🍓6传媒112,https://zo392.cdnedge.live/file/avple-images/hls/629246bc777f8769be5fdfa4/playlist.m3u8
|
||||
🍓6传媒113,https://je40u.cdnedge.live/file/avple-images/hls/62924646777f8769be5fdfa3/playlist.m3u8
|
||||
🍓6传媒114,https://je40u.cdnedge.live/file/avple-images/hls/629246f9777f8769be5fdfa5/playlist.m3u8
|
||||
🍓6传媒116,https://10j99.cdnedge.live/file/avple-images/hls/629218cc777f8769be5fdfa1/playlist.m3u8
|
||||
🍓6传媒117,https://zo392.cdnedge.live/file/avple-images/hls/62921765777f8769be5fdfa0/playlist.m3u8
|
||||
🍓6传媒118,https://je40u.cdnedge.live/file/avple-images/hls/629215fc777f8769be5fdf9f/playlist.m3u8
|
||||
🍓6传媒119,https://8bb88.cdnedge.live/file/avple-images/hls/6290bf9287412532ac7f4cff/playlist.m3u8
|
||||
🍓6传媒120,https://je40u.cdnedge.live/file/avple-images/hls/6290be2987412532ac7f4cfe/playlist.m3u8
|
||||
🍓6传媒121,https://1xp60.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
🍓6传媒122,https://d862cp.cdnedge.live/file/avple-images/hls/628f8543531f007e5ba30b00/playlist.m3u8
|
||||
🍓6传媒123,https://u89ey.cdnedge.live/file/avple-images/hls/628f84ca531f007e5ba30aff/playlist.m3u8
|
||||
🍓6传媒124,https://je40u.cdnedge.live/file/avple-images/hls/628f8453531f007e5ba30afe/playlist.m3u8
|
||||
🍓6传媒125,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f83a3531f007e5ba30afd/playlist.m3u8
|
||||
🍓6传媒126,https://10j99.cdnedge.live/file/avple-images/hls/628f8327531f007e5ba30afc/playlist.m3u8
|
||||
🍓6传媒127,https://10j99.cdnedge.live/file/avple-images/hls/628f8239531f007e5ba30afb/playlist.m3u8
|
||||
🍓6传媒128,https://je40u.cdnedge.live/file/avple-images/hls/628f8183531f007e5ba30afa/playlist.m3u8
|
||||
🍓6传媒129,https://d862cp.cdnedge.live/file/avple-images/hls/628f7f67531f007e5ba30af7/playlist.m3u8
|
||||
🍓6传媒130,https://je40u.cdnedge.live/file/avple-images/hls/628f7ef3531f007e5ba30af6/playlist.m3u8
|
||||
🍓6传媒131,https://w9n76.cdnedge.live/file/avple-images/hls/628f7d10531f007e5ba30af5/playlist.m3u8
|
||||
🍓6传媒132,https://10j99.cdnedge.live/file/avple-images/hls/628f69da531f007e5ba30af4/playlist.m3u8
|
||||
🍓6传媒133,https://u89ey.cdnedge.live/file/avple-images/hls/628f6925531f007e5ba30af3/playlist.m3u8
|
||||
🍓6传媒134,https://je40u.cdnedge.live/file/avple-images/hls/628cd91fde01360ccb2f8e9f/playlist.m3u8
|
||||
🍓6传媒135,https://1xp60.cdnedge.live/file/avple-images/hls/628cc69cde01360ccb2f8e9e/playlist.m3u8
|
||||
🍓6传媒136,https://d862cp.cdnedge.live/file/avple-images/hls/628cc65ede01360ccb2f8e9d/playlist.m3u8
|
||||
🍓6传媒137,https://je40u.cdnedge.live/file/avple-images/hls/628cc5adde01360ccb2f8e9c/playlist.m3u8
|
||||
🍓6传媒138,https://d862cp.cdnedge.live/file/avple-images/hls/628cc532de01360ccb2f8e9b/playlist.m3u8
|
||||
🍓6传媒139,https://1xp60.cdnedge.live/file/avple-images/hls/628cc4f6de01360ccb2f8e9a/playlist.m3u8
|
||||
🍓6传媒140,https://d862cp.cdnedge.live/file/avple-images/hls/628cad88de01360ccb2f8e97/playlist.m3u8
|
||||
🍓6传媒141,https://8bb88.cdnedge.live/file/avple-images/hls/628b61a7478a7e4e23bce25a/playlist.m3u8
|
||||
🍓6传媒142,https://d862cp.cdnedge.live/file/avple-images/hls/628b60f3478a7e4e23bce259/playlist.m3u8
|
||||
🍓6传媒143,https://10j99.cdnedge.live/file/avple-images/hls/628b5ed9478a7e4e23bce258/playlist.m3u8
|
||||
🍓6传媒144,https://d862cp.cdnedge.live/file/avple-images/hls/628b6013c27a514e3ebcb9b6/playlist.m3u8
|
||||
🍓6传媒145,https://u89ey.cdnedge.live/file/avple-images/hls/628b5ed8478a7e4e23bce257/playlist.m3u8
|
||||
🍓6传媒146,https://8bb88.cdnedge.live/file/avple-images/hls/628b5d6f478a7e4e23bce256/playlist.m3u8
|
||||
🍓6传媒147,https://w9n76.cdnedge.live/file/avple-images/hls/628ab9d6a1c1cd0b44683f02/playlist.m3u8
|
||||
🍓6传媒148,https://e2fa6.cdnedge.live/file/avple-images/hls/628ab95fa1c1cd0b44683f01/playlist.m3u8
|
||||
🍓6传媒149,https://u89ey.cdnedge.live/file/avple-images/hls/628ab86ea1c1cd0b44683efe/playlist.m3u8
|
||||
🍓6传媒150,https://je40u.cdnedge.live/file/avple-images/hls/628ab68ea1c1cd0b44683efb/playlist.m3u8
|
||||
🍓6传媒151,https://10j99.cdnedge.live/file/avple-images/hls/628ab3fba1c1cd0b44683ef8/playlist.m3u8
|
||||
🍓6传媒152,https://w9n76.cdnedge.live/file/avple-images/hls/628ab384a1c1cd0b44683ef7/playlist.m3u8
|
||||
🍓6传媒153,https://q2cyl7.cdnedge.live/file/avple-images/hls/628ab167a1c1cd0b44683ef6/playlist.m3u8
|
||||
🍓6传媒154,https://q2cyl7.cdnedge.live/file/avple-images/hls/628aafc4a1c1cd0b44683ef4/playlist.m3u8
|
||||
🍓6传媒155,https://zo392.cdnedge.live/file/avple-images/hls/628aaf87a1c1cd0b44683ef3/playlist.m3u8
|
||||
🍓6传媒156,https://je40u.cdnedge.live/file/avple-images/hls/628a3b0aa1c1cd0b44683ef2/playlist.m3u8
|
||||
🍓6传媒157,https://1xp60.cdnedge.live/file/avple-images/hls/6289a97bb982a351108bf732/playlist.m3u8
|
||||
🍓6传媒158,https://8bb88.cdnedge.live/file/avple-images/hls/6288c9e7b982a351108bf731/playlist.m3u8
|
||||
🍓6传媒159,https://u89ey.cdnedge.live/file/avple-images/hls/6288471dd28d4f134ac69054/playlist.m3u8
|
||||
🍓6传媒160,https://je40u.cdnedge.live/file/avple-images/hls/6287b15cd28d4f134ac69053/playlist.m3u8
|
||||
🍓6传媒161,https://w9n76.cdnedge.live/file/avple-images/hls/628798c1d28d4f134ac69049/playlist.m3u8
|
||||
🍓6传媒162,https://zo392.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac69050/playlist.m3u8
|
||||
🍓6传媒163,https://e2fa6.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac6904f/playlist.m3u8
|
||||
🍓6传媒164,https://1xp60.cdnedge.live/file/avple-images/hls/62879b91d28d4f134ac69052/playlist.m3u8
|
||||
🍓6传媒165,https://w9n76.cdnedge.live/file/avple-images/hls/62879ae2d28d4f134ac69051/playlist.m3u8
|
||||
🍓6传媒166,https://8bb88.cdnedge.live/file/avple-images/hls/628799b1d28d4f134ac6904c/playlist.m3u8
|
||||
🍓6传媒167,https://1xp60.cdnedge.live/file/avple-images/hls/62879937d28d4f134ac6904b/playlist.m3u8
|
||||
🍓6传媒168,https://u89ey.cdnedge.live/file/avple-images/hls/628798c2d28d4f134ac6904a/playlist.m3u8
|
||||
🍓6传媒169,https://e2fa6.cdnedge.live/file/avple-images/hls/6287980bd28d4f134ac69048/playlist.m3u8
|
||||
🍓6传媒170,https://zo392.cdnedge.live/file/avple-images/hls/62863d69ebf92063abd2f8b0/playlist.m3u8
|
||||
🍓6传媒171,https://10j99.cdnedge.live/file/avple-images/hls/628637caebf92063abd2f8af/playlist.m3u8
|
||||
🍓6传媒172,https://zo392.cdnedge.live/file/avple-images/hls/6284e648c71b08247ee18e36/playlist.m3u8
|
||||
🍓6传媒173,https://je40u.cdnedge.live/file/avple-images/hls/6284e030c71b08247ee18e2d/playlist.m3u8
|
||||
🍓6传媒174,https://d862cp.cdnedge.live/file/avple-images/hls/6284ea43c71b08247ee18e3b/playlist.m3u8
|
||||
🍓6传媒175,https://10j99.cdnedge.live/file/avple-images/hls/6284ea06c71b08247ee18e3a/playlist.m3u8
|
||||
🍓6传媒176,https://1xp60.cdnedge.live/file/avple-images/hls/6284e7b1c71b08247ee18e38/playlist.m3u8
|
||||
🍓6传媒177,https://zo392.cdnedge.live/file/avple-images/hls/6284e5d0c71b08247ee18e35/playlist.m3u8
|
||||
🍓6传媒178,https://zo392.cdnedge.live/file/avple-images/hls/6284e593c71b08247ee18e34/playlist.m3u8
|
||||
🍓6传媒179,https://q2cyl7.cdnedge.live/file/avple-images/hls/6284e42bc71b08247ee18e32/playlist.m3u8
|
||||
🍓6传媒180,https://w9n76.cdnedge.live/file/avple-images/hls/6284e33bc71b08247ee18e31/playlist.m3u8
|
||||
🍓6传媒181,https://1xp60.cdnedge.live/file/avple-images/hls/6284e301c71b08247ee18e30/playlist.m3u8
|
||||
🍓6传媒182,https://1xp60.cdnedge.live/file/avple-images/hls/6284e210c71b08247ee18e2e/playlist.m3u8
|
||||
🍓6传媒183,https://u89ey.cdnedge.live/file/avple-images/hls/6284e288c71b08247ee18e2f/playlist.m3u8
|
||||
🍓6传媒184,https://8bb88.cdnedge.live/file/avple-images/hls/6284dfb7c71b08247ee18e2c/playlist.m3u8
|
||||
🍓6传媒185,https://zo392.cdnedge.live/file/avple-images/hls/6284c1baef2c1c6dbc484243/playlist.m3u8
|
||||
🍓6传媒186,https://w9n76.cdnedge.live/file/avple-images/hls/62837472ef2c1c6dbc484240/playlist.m3u8
|
||||
🍓6传媒187,https://d862cp.cdnedge.live/file/avple-images/hls/628375d8ef2c1c6dbc484241/playlist.m3u8
|
||||
🍓6传媒188,https://8bb88.cdnedge.live/file/avple-images/hls/628259c987e86122ac281eb4/playlist.m3u8
|
||||
🍓6传媒189,https://w9n76.cdnedge.live/file/avple-images/hls/62825ac621f8de22adabf597/playlist.m3u8
|
||||
🍓6传媒190,https://u89ey.cdnedge.live/file/avple-images/hls/6280be37fc27be165aeb81e0/playlist.m3u8
|
||||
🍓6传媒192,https://w9n76.cdnedge.live/file/avple-images/hls/6280d9a2ef039d5507989171/playlist.m3u8
|
||||
🍓6传媒193,https://8bb88.cdnedge.live/file/avple-images/hls/6280d8b2ef039d5507989170/playlist.m3u8
|
||||
🍓6传媒194,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280d3c6ef039d550798916d/playlist.m3u8
|
||||
🍓6传媒195,https://8bb88.cdnedge.live/file/avple-images/hls/6280d34eef039d550798916c/playlist.m3u8
|
||||
🍓6传媒196,https://u89ey.cdnedge.live/file/avple-images/hls/6280bd0bfc27be165aeb81de/playlist.m3u8
|
||||
🍓6传媒197,https://1xp60.cdnedge.live/file/avple-images/hls/6280bd84fc27be165aeb81df/playlist.m3u8
|
||||
🍓6传媒198,https://d862cp.cdnedge.live/file/avple-images/hls/6280bc92fc27be165aeb81dd/playlist.m3u8
|
||||
🍓6传媒199,https://je40u.cdnedge.live/file/avple-images/hls/6280b821fc27be165aeb81da/playlist.m3u8
|
||||
🍓6传媒200,https://d862cp.cdnedge.live/file/avple-images/hls/6280b7a8fc27be165aeb81d9/playlist.m3u8
|
||||
🍓6传媒201,https://e2fa6.cdnedge.live/file/avple-images/hls/6280b58dfc27be165aeb81d8/playlist.m3u8
|
||||
🍓6传媒202,https://1xp60.cdnedge.live/file/avple-images/hls/6280b4d7fc27be165aeb81d7/playlist.m3u8
|
||||
🍓6传媒203,https://1xp60.cdnedge.live/file/avple-images/hls/6280b3effc27be165aeb81d6/playlist.m3u8
|
||||
🍓6传媒204,https://8bb88.cdnedge.live/file/avple-images/hls/6280b2fbfc27be165aeb81d5/playlist.m3u8
|
||||
🍓6传媒205,https://zo392.cdnedge.live/file/avple-images/hls/6280b245fc27be165aeb81d4/playlist.m3u8
|
||||
🍓6传媒206,https://u89ey.cdnedge.live/file/avple-images/hls/6280b154fc27be165aeb81d2/playlist.m3u8
|
||||
🍓5传媒02,https://w9n76.cdnedge.live/file/avple-images/hls/6290be2987412532ac7f4cfe/playlist.m3u8
|
||||
🍓5传媒03,https://zo392.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
🍓5传媒04,https://u89ey.cdnedge.live/file/avple-images/hls/628f8543531f007e5ba30b00/playlist.m3u8
|
||||
🍓5传媒05,https://e2fa6.cdnedge.live/file/avple-images/hls/628f84ca531f007e5ba30aff/playlist.m3u8
|
||||
🍓5传媒06,https://u89ey.cdnedge.live/file/avple-images/hls/628f8453531f007e5ba30afe/playlist.m3u8
|
||||
🍓5传媒07,https://e2fa6.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
🍓5传媒08,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f8327531f007e5ba30afc/playlist.m3u8
|
||||
🍓5传媒09,https://e2fa6.cdnedge.live/file/avple-images/hls/628f8239531f007e5ba30afb/playlist.m3u8
|
||||
🍓5传媒10,https://w9n76.cdnedge.live/file/avple-images/hls/628f8183531f007e5ba30afa/playlist.m3u8
|
||||
🍓5传媒11,https://8bb88.cdnedge.live/file/avple-images/hls/628f7f67531f007e5ba30af7/playlist.m3u8
|
||||
🍓5传媒12,https://1xp60.cdnedge.live/file/avple-images/hls/628f7ef3531f007e5ba30af6/playlist.m3u8
|
||||
🍓5传媒13,https://10j99.cdnedge.live/file/avple-images/hls/628f7d10531f007e5ba30af5/playlist.m3u8
|
||||
🍓5传媒14,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f69da531f007e5ba30af4/playlist.m3u8
|
||||
🍓5传媒15,https://d862cp.cdnedge.live/file/avple-images/hls/628f6925531f007e5ba30af3/playlist.m3u8
|
||||
🍓5传媒16,https://8bb88.cdnedge.live/file/avple-images/hls/628cd91fde01360ccb2f8e9f/playlist.m3u8
|
||||
🍓5传媒17,https://e2fa6.cdnedge.live/file/avple-images/hls/628cc69cde01360ccb2f8e9e/playlist.m3u8
|
||||
🍓5传媒18,https://u89ey.cdnedge.live/file/avple-images/hls/628cc65ede01360ccb2f8e9d/playlist.m3u8
|
||||
🍓5传媒19,https://u89ey.cdnedge.live/file/avple-images/hls/628cc5adde01360ccb2f8e9c/playlist.m3u8
|
||||
🍓5传媒20,https://zo392.cdnedge.live/file/avple-images/hls/628cc4f6de01360ccb2f8e9a/playlist.m3u8
|
||||
🍓5传媒21,https://q2cyl7.cdnedge.live/file/avple-images/hls/628cad88de01360ccb2f8e97/playlist.m3u8
|
||||
🍓5传媒22,https://d862cp.cdnedge.live/file/avple-images/hls/628b61a7478a7e4e23bce25a/playlist.m3u8
|
||||
🍓5传媒24,https://u89ey.cdnedge.live/file/avple-images/hls/628b5ed9478a7e4e23bce258/playlist.m3u8
|
||||
🍓5传媒25,https://d862cp.cdnedge.live/file/avple-images/hls/628b5d6f478a7e4e23bce256/playlist.m3u8
|
||||
🍓5传媒26,https://u89ey.cdnedge.live/file/avple-images/hls/628ab95fa1c1cd0b44683f01/playlist.m3u8
|
||||
🍓5传媒27,https://10j99.cdnedge.live/file/avple-images/hls/628ab923a1c1cd0b44683f00/playlist.m3u8
|
||||
🍓5传媒28,https://d862cp.cdnedge.live/file/avple-images/hls/628ab8aaa1c1cd0b44683eff/playlist.m3u8
|
||||
🍓5传媒29,https://d862cp.cdnedge.live/file/avple-images/hls/628ab86ea1c1cd0b44683efe/playlist.m3u8
|
||||
🍓5传媒30,https://je40u.cdnedge.live/file/avple-images/hls/628ab706a1c1cd0b44683efc/playlist.m3u8
|
||||
🍓5传媒31,https://8bb88.cdnedge.live/file/avple-images/hls/628ab68ea1c1cd0b44683efb/playlist.m3u8
|
||||
🍓5传媒32,https://8bb88.cdnedge.live/file/avple-images/hls/628ab564a1c1cd0b44683efa/playlist.m3u8
|
||||
🍓5传媒33,https://w9n76.cdnedge.live/file/avple-images/hls/628ab4eba1c1cd0b44683ef9/playlist.m3u8
|
||||
🍓5传媒35,https://zo392.cdnedge.live/file/avple-images/hls/628ab384a1c1cd0b44683ef7/playlist.m3u8
|
||||
🍓5传媒36,https://8bb88.cdnedge.live/file/avple-images/hls/628ab3fba1c1cd0b44683ef8/playlist.m3u8
|
||||
🍓5传媒37,https://e2fa6.cdnedge.live/file/avple-images/hls/628aafc4a1c1cd0b44683ef4/playlist.m3u8
|
||||
🍓5传媒38,https://1xp60.cdnedge.live/file/avple-images/hls/628ab12ba1c1cd0b44683ef5/playlist.m3u8
|
||||
🍓5传媒39,https://10j99.cdnedge.live/file/avple-images/hls/628aaf87a1c1cd0b44683ef3/playlist.m3u8
|
||||
🍓5传媒40,https://10j99.cdnedge.live/file/avple-images/hls/628a3b0aa1c1cd0b44683ef2/playlist.m3u8
|
||||
🍓5传媒41,https://u89ey.cdnedge.live/file/avple-images/hls/6289a97bb982a351108bf732/playlist.m3u8
|
||||
🍓5传媒44,https://w9n76.cdnedge.live/file/avple-images/hls/6287b15cd28d4f134ac69053/playlist.m3u8
|
||||
🍓5传媒45,https://je40u.cdnedge.live/file/avple-images/hls/628798c1d28d4f134ac69049/playlist.m3u8
|
||||
🍓5传媒46,https://je40u.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac69050/playlist.m3u8
|
||||
🍓5传媒47,https://je40u.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac6904f/playlist.m3u8
|
||||
🍓5传媒48,https://10j99.cdnedge.live/file/avple-images/hls/62879b91d28d4f134ac69052/playlist.m3u8
|
||||
🍓5传媒49,https://e2fa6.cdnedge.live/file/avple-images/hls/62879ae2d28d4f134ac69051/playlist.m3u8
|
||||
🍓5传媒50,https://q2cyl7.cdnedge.live/file/avple-images/hls/62879a28d28d4f134ac6904d/playlist.m3u8
|
||||
🍓5传媒51,https://10j99.cdnedge.live/file/avple-images/hls/628799b1d28d4f134ac6904c/playlist.m3u8
|
||||
🍓5传媒52,https://e2fa6.cdnedge.live/file/avple-images/hls/62879937d28d4f134ac6904b/playlist.m3u8
|
||||
🍓5传媒53,https://1xp60.cdnedge.live/file/avple-images/hls/628798c2d28d4f134ac6904a/playlist.m3u8
|
||||
🍓5传媒54,https://e2fa6.cdnedge.live/file/avple-images/hls/6287971dd28d4f134ac69046/playlist.m3u8
|
||||
🍓5传媒55,https://je40u.cdnedge.live/file/avple-images/hls/6287980bd28d4f134ac69048/playlist.m3u8
|
||||
🍓5传媒56,https://10j99.cdnedge.live/file/avple-images/hls/62879794d28d4f134ac69047/playlist.m3u8
|
||||
🍓5传媒57,https://je40u.cdnedge.live/file/avple-images/hls/62879668d28d4f134ac69045/playlist.m3u8
|
||||
🍓5传媒58,https://10j99.cdnedge.live/file/avple-images/hls/62863d69ebf92063abd2f8b0/playlist.m3u8
|
||||
🍓5传媒59,https://je40u.cdnedge.live/file/avple-images/hls/628637caebf92063abd2f8af/playlist.m3u8
|
||||
🍓5传媒60,https://w9n76.cdnedge.live/file/avple-images/hls/6284e648c71b08247ee18e36/playlist.m3u8
|
||||
🍓5传媒61,https://w9n76.cdnedge.live/file/avple-images/hls/6284f2fbc71b08247ee18e3c/playlist.m3u8
|
||||
🍓5传媒62,https://10j99.cdnedge.live/file/avple-images/hls/6284e030c71b08247ee18e2d/playlist.m3u8
|
||||
🍓5传媒63,https://10j99.cdnedge.live/file/avple-images/hls/6284ea43c71b08247ee18e3b/playlist.m3u8
|
||||
🍓5传媒64,https://e2fa6.cdnedge.live/file/avple-images/hls/6284ea06c71b08247ee18e3a/playlist.m3u8
|
||||
🍓5传媒65,https://zo392.cdnedge.live/file/avple-images/hls/6284e827c71b08247ee18e39/playlist.m3u8
|
||||
🍓5传媒66,https://q2cyl7.cdnedge.live/file/avple-images/hls/6284e7b1c71b08247ee18e38/playlist.m3u8
|
||||
🍓5传媒67,https://w9n76.cdnedge.live/file/avple-images/hls/6284e6bfc71b08247ee18e37/playlist.m3u8
|
||||
🍓5传媒68,https://d862cp.cdnedge.live/file/avple-images/hls/6284e5d0c71b08247ee18e35/playlist.m3u8
|
||||
🍓5传媒69,https://1xp60.cdnedge.live/file/avple-images/hls/6284e4a4c71b08247ee18e33/playlist.m3u8
|
||||
🍓5传媒70,https://w9n76.cdnedge.live/file/avple-images/hls/6284e593c71b08247ee18e34/playlist.m3u8
|
||||
🍓5传媒71,https://d862cp.cdnedge.live/file/avple-images/hls/6284e42bc71b08247ee18e32/playlist.m3u8
|
||||
🍓5传媒72,https://u89ey.cdnedge.live/file/avple-images/hls/6284e33bc71b08247ee18e31/playlist.m3u8
|
||||
🍓5传媒73,https://je40u.cdnedge.live/file/avple-images/hls/6284e301c71b08247ee18e30/playlist.m3u8
|
||||
🍓5传媒74,https://zo392.cdnedge.live/file/avple-images/hls/6284e210c71b08247ee18e2e/playlist.m3u8
|
||||
🍓5传媒75,https://8bb88.cdnedge.live/file/avple-images/hls/6284e288c71b08247ee18e2f/playlist.m3u8
|
||||
🍓5传媒76,https://10j99.cdnedge.live/file/avple-images/hls/6284dfb7c71b08247ee18e2c/playlist.m3u8
|
||||
🍓5传媒77,https://d862cp.cdnedge.live/file/avple-images/hls/6284c1baef2c1c6dbc484243/playlist.m3u8
|
||||
🍓5传媒78,https://q2cyl7.cdnedge.live/file/avple-images/hls/62837472ef2c1c6dbc484240/playlist.m3u8
|
||||
🍓5传媒79,https://8bb88.cdnedge.live/file/avple-images/hls/6280be37fc27be165aeb81e0/playlist.m3u8
|
||||
🍓5传媒80,https://e2fa6.cdnedge.live/file/avple-images/hls/6280da2fef039d5507989172/playlist.m3u8
|
||||
🍓5传媒82,https://je40u.cdnedge.live/file/avple-images/hls/6280d9a2ef039d5507989171/playlist.m3u8
|
||||
🍓5传媒83,https://je40u.cdnedge.live/file/avple-images/hls/6280d8b2ef039d5507989170/playlist.m3u8
|
||||
🍓5传媒84,https://8bb88.cdnedge.live/file/avple-images/hls/6280d697ef039d550798916e/playlist.m3u8
|
||||
🍓5传媒85,https://zo392.cdnedge.live/file/avple-images/hls/6280d3c6ef039d550798916d/playlist.m3u8
|
||||
🍓5传媒86,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280d34eef039d550798916c/playlist.m3u8
|
||||
🍓5传媒87,https://10j99.cdnedge.live/file/avple-images/hls/6280bd0bfc27be165aeb81de/playlist.m3u8
|
||||
🍓5传媒88,https://e2fa6.cdnedge.live/file/avple-images/hls/6280bd84fc27be165aeb81df/playlist.m3u8
|
||||
🍓5传媒89,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280bc92fc27be165aeb81dd/playlist.m3u8
|
||||
🍓5传媒90,https://w9n76.cdnedge.live/file/avple-images/hls/6280b897fc27be165aeb81db/playlist.m3u8
|
||||
🍓5传媒92,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280b7a8fc27be165aeb81d9/playlist.m3u8
|
||||
🍓5传媒93,https://je40u.cdnedge.live/file/avple-images/hls/6280b58dfc27be165aeb81d8/playlist.m3u8
|
||||
🍓5传媒94,https://je40u.cdnedge.live/file/avple-images/hls/6280b4d7fc27be165aeb81d7/playlist.m3u8
|
||||
🍓5传媒95,https://8bb88.cdnedge.live/file/avple-images/hls/6280b3effc27be165aeb81d6/playlist.m3u8
|
||||
🍓5传媒96,https://d862cp.cdnedge.live/file/avple-images/hls/6280b2fbfc27be165aeb81d5/playlist.m3u8
|
||||
🍓5传媒97,https://10j99.cdnedge.live/file/avple-images/hls/6280b245fc27be165aeb81d4/playlist.m3u8
|
||||
🍓5传媒98,https://10j99.cdnedge.live/file/avple-images/hls/6280b1cefc27be165aeb81d3/playlist.m3u8
|
||||
🍓5传媒99,https://zo392.cdnedge.live/file/avple-images/hls/6280b154fc27be165aeb81d2/playlist.m3u8
|
||||
🍓5传媒100,https://8bb88.cdnedge.live/file/avple-images/hls/627ef1e7c60346652e396c86/playlist.m3u8
|
||||
🍓5传媒101,https://8bb88.cdnedge.live/file/avple-images/hls/627ef135c60346652e396c85/playlist.m3u8
|
||||
🍓5传媒102,https://w9n76.cdnedge.live/file/avple-images/hls/627ef081c60346652e396c84/playlist.m3u8
|
||||
🍓5传媒103,https://8bb88.cdnedge.live/file/avple-images/hls/627eefcbc60346652e396c83/playlist.m3u8
|
||||
🍓5传媒104,https://w9n76.cdnedge.live/file/avple-images/hls/627e66b5c60346652e396c81/playlist.m3u8
|
||||
🍓5传媒105,https://d862cp.cdnedge.live/file/avple-images/hls/627e6603c60346652e396c7f/playlist.m3u8
|
||||
🍓5传媒106,https://8bb88.cdnedge.live/file/avple-images/hls/627e6330c60346652e396c7c/playlist.m3u8
|
||||
🍓5传媒107,https://zo392.cdnedge.live/file/avple-images/hls/627e6603c60346652e396c7e/playlist.m3u8
|
||||
🍓5传媒108,https://u89ey.cdnedge.live/file/avple-images/hls/627e66b4c60346652e396c80/playlist.m3u8
|
||||
🍓5传媒109,https://zo392.cdnedge.live/file/avple-images/hls/627e6499c60346652e396c7d/playlist.m3u8
|
||||
🍓5传媒110,https://d862cp.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8d/playlist.m3u8
|
||||
🍓5传媒111,https://u89ey.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8b/playlist.m3u8
|
||||
🍓5传媒112,https://d862cp.cdnedge.live/file/avple-images/hls/627d162bafbf916250ff4d8c/playlist.m3u8
|
||||
🍓5传媒113,https://8bb88.cdnedge.live/file/avple-images/hls/627d15332568f9623a3e5423/playlist.m3u8
|
||||
🍓5传媒114,https://8bb88.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5c/playlist.m3u8
|
||||
🍓5传媒115,https://10j99.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5a/playlist.m3u8
|
||||
🍓5传媒116,https://zo392.cdnedge.live/file/avple-images/hls/627cde30afbf916250ff4d5b/playlist.m3u8
|
||||
🍓5传媒117,https://u89ey.cdnedge.live/file/avple-images/hls/627cdcf62568f9623a3e5421/playlist.m3u8
|
||||
🍓5传媒118,https://8bb88.cdnedge.live/file/avple-images/hls/627a577a1a1d9a347dd9853a/playlist.m3u8
|
||||
🍓5传媒119,https://e2fa6.cdnedge.live/file/avple-images/hls/627a69161a1d9a347dd98541/playlist.m3u8
|
||||
🍓5传媒120,https://8bb88.cdnedge.live/file/avple-images/hls/627a573c1a1d9a347dd98539/playlist.m3u8
|
||||
🍓5传媒121,https://zo392.cdnedge.live/file/avple-images/hls/627a5ac11a1d9a347dd98540/playlist.m3u8
|
||||
🍓5传媒122,https://1xp60.cdnedge.live/file/avple-images/hls/627a5a841a1d9a347dd9853f/playlist.m3u8
|
||||
🍓5传媒123,https://u89ey.cdnedge.live/file/avple-images/hls/627a5a0c1a1d9a347dd9853e/playlist.m3u8
|
||||
🍓5传媒124,https://q2cyl7.cdnedge.live/file/avple-images/hls/627a59cf1a1d9a347dd9853d/playlist.m3u8
|
||||
🍓5传媒125,https://10j99.cdnedge.live/file/avple-images/hls/627a595a1a1d9a347dd9853c/playlist.m3u8
|
||||
🍓5传媒126,https://1xp60.cdnedge.live/file/avple-images/hls/627a582c1a1d9a347dd9853b/playlist.m3u8
|
||||
🍓5传媒127,https://w9n76.cdnedge.live/file/avple-images/hls/627a56c51a1d9a347dd98538/playlist.m3u8
|
||||
🍓5传媒128,https://je40u.cdnedge.live/file/avple-images/hls/627a564b1a1d9a347dd98537/playlist.m3u8
|
||||
🍓5传媒129,https://q2cyl7.cdnedge.live/file/avple-images/hls/627a41341a1d9a347dd98536/playlist.m3u8
|
||||
🍓5传媒130,https://10j99.cdnedge.live/file/avple-images/hls/627a40801a1d9a347dd98534/playlist.m3u8
|
||||
🍓5传媒131,https://10j99.cdnedge.live/file/avple-images/hls/627a30d336b3e104a6145865/playlist.m3u8
|
||||
🍓5传媒132,https://zo392.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1f/playlist.m3u8
|
||||
🍓5传媒133,https://w9n76.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1e/playlist.m3u8
|
||||
🍓5传媒134,https://1xp60.cdnedge.live/file/avple-images/hls/62792cb6e836607ba1f77b1d/playlist.m3u8
|
||||
🍓5传媒135,https://e2fa6.cdnedge.live/file/avple-images/hls/62767ae33847697e5124b6e0/playlist.m3u8
|
||||
🍓5传媒136,https://je40u.cdnedge.live/file/avple-images/hls/6276838a3847697e5124b6e3/playlist.m3u8
|
||||
🍓5传媒137,https://8bb88.cdnedge.live/file/avple-images/hls/62767dee3847697e5124b6e2/playlist.m3u8
|
||||
🍓5传媒138,https://e2fa6.cdnedge.live/file/avple-images/hls/62767c843847697e5124b6e1/playlist.m3u8
|
||||
🍓5传媒139,https://8bb88.cdnedge.live/file/avple-images/hls/62767aa53847697e5124b6df/playlist.m3u8
|
||||
🍓5传媒140,https://u89ey.cdnedge.live/file/avple-images/hls/6276793c3847697e5124b6de/playlist.m3u8
|
||||
🍓5传媒141,https://u89ey.cdnedge.live/file/avple-images/hls/627678c43847697e5124b6dd/playlist.m3u8
|
||||
🍓5传媒142,https://u89ey.cdnedge.live/file/avple-images/hls/627678103847697e5124b6dc/playlist.m3u8
|
||||
🍓5传媒143,https://10j99.cdnedge.live/file/avple-images/hls/627677203847697e5124b6da/playlist.m3u8
|
||||
🍓5传媒144,https://je40u.cdnedge.live/file/avple-images/hls/627676e63847697e5124b6d9/playlist.m3u8
|
||||
🍓5传媒145,https://w9n76.cdnedge.live/file/avple-images/hls/6276766c3847697e5124b6d8/playlist.m3u8
|
||||
🍓5传媒146,https://d862cp.cdnedge.live/file/avple-images/hls/6276757c3847697e5124b6d7/playlist.m3u8
|
||||
🍓5传媒147,https://w9n76.cdnedge.live/file/avple-images/hls/627675043847697e5124b6d6/playlist.m3u8
|
||||
🍓5传媒148,https://1xp60.cdnedge.live/file/avple-images/hls/62764bc63847697e5124b6d4/playlist.m3u8
|
||||
🍓5传媒149,https://1xp60.cdnedge.live/file/avple-images/hls/62764bc73847697e5124b6d5/playlist.m3u8
|
||||
🍓5传媒150,https://e2fa6.cdnedge.live/file/avple-images/hls/6275225cefd05a44b0f87e97/playlist.m3u8
|
||||
🍓5传媒151,https://8bb88.cdnedge.live/file/avple-images/hls/6274d26c84b95e04c28dde2e/playlist.m3u8
|
||||
🍓5传媒152,https://je40u.cdnedge.live/file/avple-images/hls/6274d2aa84b95e04c28dde2f/playlist.m3u8
|
||||
🍓5传媒153,https://q2cyl7.cdnedge.live/file/avple-images/hls/6274d1b984b95e04c28dde2d/playlist.m3u8
|
||||
🍓5传媒154,https://zo392.cdnedge.live/file/avple-images/hls/6274d05184b95e04c28dde2c/playlist.m3u8
|
||||
🍓5传媒155,https://je40u.cdnedge.live/file/avple-images/hls/6274cf9d84b95e04c28dde2b/playlist.m3u8
|
||||
🍓5传媒156,https://zo392.cdnedge.live/file/avple-images/hls/6274cead84b95e04c28dde2a/playlist.m3u8
|
||||
🍓5传媒157,https://q2cyl7.cdnedge.live/file/avple-images/hls/6274cccf84b95e04c28dde29/playlist.m3u8
|
||||
🍓5传媒158,https://e2fa6.cdnedge.live/file/avple-images/hls/6274c11484b95e04c28dde28/playlist.m3u8
|
||||
🍓5传媒159,https://w9n76.cdnedge.live/file/avple-images/hls/6273dcca84b95e04c28dde27/playlist.m3u8
|
||||
🍓5传媒160,https://q2cyl7.cdnedge.live/file/avple-images/hls/6272341e4deadc023a8a0998/playlist.m3u8
|
||||
🍓5传媒161,https://q2cyl7.cdnedge.live/file/avple-images/hls/6272350d4deadc023a8a0999/playlist.m3u8
|
||||
🍓5传媒162,https://1xp60.cdnedge.live/file/avple-images/hls/627233694deadc023a8a0996/playlist.m3u8
|
||||
🍓5传媒163,https://je40u.cdnedge.live/file/avple-images/hls/62722e804deadc023a8a0995/playlist.m3u8
|
||||
🍓5传媒164,https://1xp60.cdnedge.live/file/avple-images/hls/62722b724deadc023a8a0994/playlist.m3u8
|
||||
🍓5传媒165,https://zo392.cdnedge.live/file/avple-images/hls/62722b334deadc023a8a0993/playlist.m3u8
|
||||
🍓5传媒166,https://w9n76.cdnedge.live/file/avple-images/hls/62722abd4deadc023a8a0992/playlist.m3u8
|
||||
🍓5传媒167,https://zo392.cdnedge.live/file/avple-images/hls/62722a464deadc023a8a0991/playlist.m3u8
|
||||
🍓5传媒168,https://1xp60.cdnedge.live/file/avple-images/hls/627229924deadc023a8a0990/playlist.m3u8
|
||||
🍓5传媒169,https://d862cp.cdnedge.live/file/avple-images/hls/62715fc34deadc023a8a098e/playlist.m3u8
|
||||
🍓5传媒170,https://10j99.cdnedge.live/file/avple-images/hls/6270a7893ddea14c11aa4ab5/playlist.m3u8
|
||||
🍓5传媒171,https://8bb88.cdnedge.live/file/avple-images/hls/626fc4703ddea14c11aa4ab4/playlist.m3u8
|
||||
🍓5传媒172,https://w9n76.cdnedge.live/file/avple-images/hls/626fb69c3ddea14c11aa4aaf/playlist.m3u8
|
||||
🍓5传媒173,https://u89ey.cdnedge.live/file/avple-images/hls/626fb8423ddea14c11aa4ab1/playlist.m3u8
|
||||
🍓5传媒174,https://je40u.cdnedge.live/file/avple-images/hls/626fb8b93ddea14c11aa4ab2/playlist.m3u8
|
||||
🍓5传媒175,https://10j99.cdnedge.live/file/avple-images/hls/626fb78f3ddea14c11aa4ab0/playlist.m3u8
|
||||
🍓5传媒176,https://je40u.cdnedge.live/file/avple-images/hls/626fb5ac3ddea14c11aa4aae/playlist.m3u8
|
||||
🍓5传媒177,https://8bb88.cdnedge.live/file/avple-images/hls/626fb4bc3ddea14c11aa4aad/playlist.m3u8
|
||||
🍓5传媒178,https://1xp60.cdnedge.live/file/avple-images/hls/626fb3ce3ddea14c11aa4aab/playlist.m3u8
|
||||
🍓5传媒179,https://zo392.cdnedge.live/file/avple-images/hls/626fb3183ddea14c11aa4aaa/playlist.m3u8
|
||||
🍓5传媒180,https://u89ey.cdnedge.live/file/avple-images/hls/626fb4473ddea14c11aa4aac/playlist.m3u8
|
||||
🍓5传媒181,https://8bb88.cdnedge.live/file/avple-images/hls/626faf1c3ddea14c11aa4aa7/playlist.m3u8
|
||||
🍓5传媒182,https://w9n76.cdnedge.live/file/avple-images/hls/626faee23ddea14c11aa4aa6/playlist.m3u8
|
||||
🍓5传媒183,https://zo392.cdnedge.live/file/avple-images/hls/626f6f5a83c16c1b72ef8406/playlist.m3u8
|
||||
🍓5传媒184,https://w9n76.cdnedge.live/file/avple-images/hls/626bd4a020859323fc450d6f/playlist.m3u8
|
||||
🍓5传媒185,https://je40u.cdnedge.live/file/avple-images/hls/626bd3ec20859323fc450d6e/playlist.m3u8
|
||||
🍓5传媒186,https://u89ey.cdnedge.live/file/avple-images/hls/626bd95120859323fc450d75/playlist.m3u8
|
||||
🍓5传媒187,https://d862cp.cdnedge.live/file/avple-images/hls/626bd86220859323fc450d73/playlist.m3u8
|
||||
🍓5传媒188,https://je40u.cdnedge.live/file/avple-images/hls/626bd8d820859323fc450d74/playlist.m3u8
|
||||
🍓5传媒189,https://zo392.cdnedge.live/file/avple-images/hls/626bd77020859323fc450d72/playlist.m3u8
|
||||
🍓5传媒190,https://d862cp.cdnedge.live/file/avple-images/hls/626bd60920859323fc450d71/playlist.m3u8
|
||||
🍓5传媒192,https://w9n76.cdnedge.live/file/avple-images/hls/626bd24920859323fc450d6c/playlist.m3u8
|
||||
🍓5传媒193,https://zo392.cdnedge.live/file/avple-images/hls/626bd19420859323fc450d6b/playlist.m3u8
|
||||
🍓5传媒194,https://q2cyl7.cdnedge.live/file/avple-images/hls/626bd15b20859323fc450d6a/playlist.m3u8
|
||||
🍓5传媒195,https://d862cp.cdnedge.live/file/avple-images/hls/626bd15b20859323fc450d6a/playlist.m3u8
|
||||
🍓5传媒196,https://8bb88.cdnedge.live/file/avple-images/hls/626bd0e020859323fc450d69/playlist.m3u8
|
||||
🍓5传媒197,https://w9n76.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
🍓5传媒198,https://e2fa6.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
🍓5传媒199,https://d862cp.cdnedge.live/file/avple-images/hls/626bd06920859323fc450d68/playlist.m3u8
|
||||
🍓5传媒200,https://10j99.cdnedge.live/file/avple-images/hls/626bcd9920859323fc450d66/playlist.m3u8
|
||||
🍓5传媒201,https://e2fa6.cdnedge.live/file/avple-images/hls/626bcd5d20859323fc450d65/playlist.m3u8
|
||||
🍓5传媒202,https://10j99.cdnedge.live/file/avple-images/hls/626a9b433d701068e96b4fdc/playlist.m3u8
|
||||
🍓5传媒203,https://e2fa6.cdnedge.live/file/avple-images/hls/626a9b433d701068e96b4fdb/playlist.m3u8
|
||||
🍓4传媒01,https://u89ey.cdnedge.live/file/avple-images/hls/6257f50aa840bf2dd2ce4358/playlist.m3u8
|
||||
🍓4传媒02,https://10j99.cdnedge.live/file/avple-images/hls/6256da62bd3519566877455d/playlist.m3u8
|
||||
🍓4传媒03,https://q2cyl7.cdnedge.live/file/avple-images/hls/6256b304bd3519566877455c/playlist.m3u8
|
||||
🍓4传媒04,https://zo392.cdnedge.live/file/avple-images/hls/6256b2c8bd3519566877455b/playlist.m3u8
|
||||
🍓4传媒05,https://10j99.cdnedge.live/file/avple-images/hls/6256b1d8bd35195668774559/playlist.m3u8
|
||||
🍓4传媒06,https://u89ey.cdnedge.live/file/avple-images/hls/6256b161bd35195668774558/playlist.m3u8
|
||||
🍓4传媒07,https://10j99.cdnedge.live/file/avple-images/hls/6256b124bd35195668774557/playlist.m3u8
|
||||
🍓4传媒08,https://zo392.cdnedge.live/file/avple-images/hls/6256b0aebd35195668774556/playlist.m3u8
|
||||
🍓4传媒09,https://d862cp.cdnedge.live/file/avple-images/hls/6256afbebd35195668774555/playlist.m3u8
|
||||
🍓4传媒10,https://10j99.cdnedge.live/file/avple-images/hls/6256af80bd35195668774554/playlist.m3u8
|
||||
🍓4传媒11,https://10j99.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbb/playlist.m3u8
|
||||
🍓4传媒12,https://q2cyl7.cdnedge.live/file/avple-images/hls/62555b368fabfe03b7ab4be5/playlist.m3u8
|
||||
🍓4传媒14,https://e2fa6.cdnedge.live/file/avple-images/hls/62549c303d5bac30b2603dc6/playlist.m3u8
|
||||
🍓4传媒15,https://u89ey.cdnedge.live/file/avple-images/hls/6254986f3d5bac30b2603dc2/playlist.m3u8
|
||||
🍓4传媒16,https://q2cyl7.cdnedge.live/file/avple-images/hls/625497f53d5bac30b2603dc1/playlist.m3u8
|
||||
🍓4传媒17,https://8bb88.cdnedge.live/file/avple-images/hls/625494ae3d5bac30b2603dc0/playlist.m3u8
|
||||
🍓4传媒18,https://8bb88.cdnedge.live/file/avple-images/hls/625494363d5bac30b2603dbf/playlist.m3u8
|
||||
🍓4传媒19,https://je40u.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbc/playlist.m3u8
|
||||
🍓4传媒20,https://e2fa6.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbd/playlist.m3u8
|
||||
🍓4传媒21,https://d862cp.cdnedge.live/file/avple-images/hls/625406493d5bac30b2603dba/playlist.m3u8
|
||||
🍓4传媒22,https://10j99.cdnedge.live/file/avple-images/hls/6254064a3d5bac30b2603dbe/playlist.m3u8
|
||||
🍓4传媒23,https://zo392.cdnedge.live/file/avple-images/hls/6252c0bf6b426e5b63529741/playlist.m3u8
|
||||
🍓4传媒24,https://zo392.cdnedge.live/file/avple-images/hls/6252c0c06b426e5b63529746/playlist.m3u8
|
||||
🍓4传媒25,https://q2cyl7.cdnedge.live/file/avple-images/hls/6252c0c06b426e5b63529745/playlist.m3u8
|
||||
🍓4传媒26,https://e2fa6.cdnedge.live/file/avple-images/hls/6252c0bf6b426e5b63529743/playlist.m3u8
|
||||
🍓4传媒27,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973bb9fdae53fd999570/playlist.m3u8
|
||||
🍓4传媒28,https://10j99.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957e/playlist.m3u8
|
||||
🍓4传媒29,https://8bb88.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999576/playlist.m3u8
|
||||
🍓4传媒30,https://u89ey.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957d/playlist.m3u8
|
||||
🍓4传媒31,https://u89ey.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957c/playlist.m3u8
|
||||
🍓4传媒32,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999578/playlist.m3u8
|
||||
🍓4传媒33,https://zo392.cdnedge.live/file/avple-images/hls/6251a557b9fdae53fd99957b/playlist.m3u8
|
||||
🍓4传媒34,https://1xp60.cdnedge.live/file/avple-images/hls/6251a556b9fdae53fd99957a/playlist.m3u8
|
||||
🍓4传媒35,https://1xp60.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999577/playlist.m3u8
|
||||
🍓4传媒36,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973db9fdae53fd999579/playlist.m3u8
|
||||
🍓4传媒37,https://d862cp.cdnedge.live/file/avple-images/hls/6251973cb9fdae53fd999573/playlist.m3u8
|
||||
🍓4传媒38,https://e2fa6.cdnedge.live/file/avple-images/hls/6251973cb9fdae53fd999575/playlist.m3u8
|
||||
🍓4传媒39,https://q2cyl7.cdnedge.live/file/avple-images/hls/6251973bb9fdae53fd999571/playlist.m3u8
|
||||
🍓4传媒40,https://e2fa6.cdnedge.live/file/avple-images/hls/62518930b9fdae53fd99956f/playlist.m3u8
|
||||
🍓4传媒41,https://q2cyl7.cdnedge.live/file/avple-images/hls/62518930b9fdae53fd99956e/playlist.m3u8
|
||||
🍓4传媒42,https://q2cyl7.cdnedge.live/file/avple-images/hls/6251892fb9fdae53fd99956c/playlist.m3u8
|
||||
🍓4传媒43,https://zo392.cdnedge.live/file/avple-images/hls/62503589f06f665330ec2bde/playlist.m3u8
|
||||
🍓4传媒44,https://10j99.cdnedge.live/file/avple-images/hls/62503512f06f665330ec2bdd/playlist.m3u8
|
||||
🍓4传媒45,https://10j99.cdnedge.live/file/avple-images/hls/6250345df06f665330ec2bdb/playlist.m3u8
|
||||
🍓4传媒46,https://u89ey.cdnedge.live/file/avple-images/hls/6250349af06f665330ec2bdc/playlist.m3u8
|
||||
🍓4传媒47,https://1xp60.cdnedge.live/file/avple-images/hls/6250336ef06f665330ec2bda/playlist.m3u8
|
||||
🍓4传媒48,https://q2cyl7.cdnedge.live/file/avple-images/hls/624eeb896d742407ed435445/playlist.m3u8
|
||||
🍓4传媒49,https://je40u.cdnedge.live/file/avple-images/hls/624eec006d742407ed435446/playlist.m3u8
|
||||
🍓4传媒50,https://1xp60.cdnedge.live/file/avple-images/hls/624eea616d742407ed435443/playlist.m3u8
|
||||
🍓4传媒51,https://8bb88.cdnedge.live/file/avple-images/hls/624eea246d742407ed435442/playlist.m3u8
|
||||
🍓4传媒52,https://u89ey.cdnedge.live/file/avple-images/hls/624d7cc08d83843ab3a678c7/playlist.m3u8
|
||||
🍓4传媒53,https://e2fa6.cdnedge.live/file/avple-images/hls/624d663b8d83843ab3a678c5/playlist.m3u8
|
||||
🍓4传媒54,https://10j99.cdnedge.live/file/avple-images/hls/624d663c8d83843ab3a678c6/playlist.m3u8
|
||||
🍓4传媒55,https://1xp60.cdnedge.live/file/avple-images/hls/624bef7e528c292827c459d8/playlist.m3u8
|
||||
🍓4传媒56,https://d862cp.cdnedge.live/file/avple-images/hls/624bef3d528c292827c459d7/playlist.m3u8
|
||||
🍓4传媒57,https://je40u.cdnedge.live/file/avple-images/hls/624beec5528c292827c459d6/playlist.m3u8
|
||||
🍓4传媒58,https://10j99.cdnedge.live/file/avple-images/hls/624bedd5528c292827c459d5/playlist.m3u8
|
||||
🍓4传媒59,https://8bb88.cdnedge.live/file/avple-images/hls/624bea18528c292827c459d4/playlist.m3u8
|
||||
🍓4传媒60,https://8bb88.cdnedge.live/file/avple-images/hls/624be925528c292827c459d2/playlist.m3u8
|
||||
🍓4传媒61,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561616/playlist.m3u8
|
||||
🍓4传媒62,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561612/playlist.m3u8
|
||||
🍓4传媒63,https://u89ey.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d56161a/playlist.m3u8
|
||||
🍓4传媒64,https://w9n76.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d561613/playlist.m3u8
|
||||
🍓4传媒65,https://10j99.cdnedge.live/file/avple-images/hls/6249a0b0eb0b5f202d56160c/playlist.m3u8
|
||||
🍓4传媒67,https://10j99.cdnedge.live/file/avple-images/hls/6249a0afeb0b5f202d561606/playlist.m3u8
|
||||
🍓4传媒70,https://1xp60.cdnedge.live/file/avple-images/hls/62494437cb995938b9053409/playlist.m3u8
|
||||
🍓4传媒71,https://e2fa6.cdnedge.live/file/avple-images/hls/624941a2cb995938b9053408/playlist.m3u8
|
||||
🍓4传媒73,https://1xp60.cdnedge.live/file/avple-images/hls/62493da7cb995938b9053404/playlist.m3u8
|
||||
🍓4传媒75,https://w9n76.cdnedge.live/file/avple-images/hls/62493d33cb995938b9053403/playlist.m3u8
|
||||
🍓4传媒76,https://w9n76.cdnedge.live/file/avple-images/hls/62493c7bcb995938b9053401/playlist.m3u8
|
||||
🍓4传媒77,https://10j99.cdnedge.live/file/avple-images/hls/62492b62ac4583340eae9cc1/playlist.m3u8
|
||||
🍓4传媒78,https://je40u.cdnedge.live/file/avple-images/hls/62492ae9ac4583340eae9cc0/playlist.m3u8
|
||||
🍓4传媒79,https://1xp60.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacba/playlist.m3u8
|
||||
🍓4传媒80,https://d862cp.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb9/playlist.m3u8
|
||||
🍓4传媒81,https://w9n76.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb7/playlist.m3u8
|
||||
🍓4传媒82,https://zo392.cdnedge.live/file/avple-images/hls/6249250addaa1830ff7bacb8/playlist.m3u8
|
||||
🍓4传媒83,https://1xp60.cdnedge.live/file/avple-images/hls/62492509ddaa1830ff7bacb5/playlist.m3u8
|
||||
🍓4传媒84,https://8bb88.cdnedge.live/file/avple-images/hls/62492509ddaa1830ff7bacb4/playlist.m3u8
|
||||
🍓4传媒85,https://d862cp.cdnedge.live/file/avple-images/hls/624908e9ecadf8296558c708/playlist.m3u8
|
||||
🍓4传媒86,https://w9n76.cdnedge.live/file/avple-images/hls/6246e3c7abd4e014b3b11183/playlist.m3u8
|
||||
🍓4传媒87,https://zo392.cdnedge.live/file/avple-images/hls/6246e3c7abd4e014b3b11182/playlist.m3u8
|
||||
🍓4传媒88,https://8bb88.cdnedge.live/file/avple-images/hls/624591930ea8e533f480f47a/playlist.m3u8
|
||||
🍓4传媒89,https://w9n76.cdnedge.live/file/avple-images/hls/624590a38fe3f433a0be0548/playlist.m3u8
|
||||
🍓4传媒90,https://zo392.cdnedge.live/file/avple-images/hls/62458ff075952a3335b0c45b/playlist.m3u8
|
||||
🍓4传媒92,https://w9n76.cdnedge.live/file/avple-images/hls/624426335b4805561493005a/playlist.m3u8
|
||||
🍓4传媒93,https://u89ey.cdnedge.live/file/avple-images/hls/624426335b48055614930059/playlist.m3u8
|
||||
🍓4传媒94,https://8bb88.cdnedge.live/file/avple-images/hls/6242fdf2e092281092d3775a/playlist.m3u8
|
||||
🍓4传媒95,https://je40u.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c24/playlist.m3u8
|
||||
🍓4传媒96,https://1xp60.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c25/playlist.m3u8
|
||||
🍓4传媒97,https://10j99.cdnedge.live/file/avple-images/hls/6242c49f32e7237a7bdd24b8/playlist.m3u8
|
||||
🍓4传媒98,https://zo392.cdnedge.live/file/avple-images/hls/6242c7d80de0ad7cfd08f0bb/playlist.m3u8
|
||||
🍓4传媒99,https://1xp60.cdnedge.live/file/avple-images/hls/6242c68b1226727c1d866b6c/playlist.m3u8
|
||||
🍓4传媒100,https://1xp60.cdnedge.live/file/avple-images/hls/6242c6881226727c1d866b6a/playlist.m3u8
|
||||
🍓4传媒101,https://w9n76.cdnedge.live/file/avple-images/hls/6242c68a1226727c1d866b6b/playlist.m3u8
|
||||
🍓4传媒102,https://q2cyl7.cdnedge.live/file/avple-images/hls/6242c580f371357b01d05a0d/playlist.m3u8
|
||||
🍓4传媒103,https://10j99.cdnedge.live/file/avple-images/hls/6242c3af81f80f77774148d0/playlist.m3u8
|
||||
🍓4传媒104,https://8bb88.cdnedge.live/file/avple-images/hls/6242c24981f80f77774148cf/playlist.m3u8
|
||||
🍓4传媒105,https://je40u.cdnedge.live/file/avple-images/hls/6242c0df81f80f77774148cb/playlist.m3u8
|
||||
🍓4传媒106,https://1xp60.cdnedge.live/file/avple-images/hls/6242c20a81f80f77774148ce/playlist.m3u8
|
||||
🍓4传媒107,https://u89ey.cdnedge.live/file/avple-images/hls/6242c15681f80f77774148cd/playlist.m3u8
|
||||
🍓4传媒108,https://e2fa6.cdnedge.live/file/avple-images/hls/6242c11b81f80f77774148cc/playlist.m3u8
|
||||
🍓4传媒109,https://e2fa6.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c2b/playlist.m3u8
|
||||
🍓4传媒110,https://je40u.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c2a/playlist.m3u8
|
||||
🍓4传媒111,https://w9n76.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c29/playlist.m3u8
|
||||
🍓4传媒112,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c23/playlist.m3u8
|
||||
🍓4传媒113,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c28/playlist.m3u8
|
||||
🍓4传媒114,https://q2cyl7.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c27/playlist.m3u8
|
||||
🍓4传媒115,https://zo392.cdnedge.live/file/avple-images/hls/6241c035d6283a39fd9e3c26/playlist.m3u8
|
||||
🍓4传媒116,https://d862cp.cdnedge.live/file/avple-images/hls/623e7c9676b51e756d5edc09/playlist.m3u8
|
||||
🍓4传媒117,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e76bb76b51e756d5edc00/playlist.m3u8
|
||||
🍓4传媒118,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e785e76b51e756d5edc04/playlist.m3u8
|
||||
🍓4传媒119,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e7c1e76b51e756d5edc08/playlist.m3u8
|
||||
🍓4传媒120,https://e2fa6.cdnedge.live/file/avple-images/hls/623e7be276b51e756d5edc07/playlist.m3u8
|
||||
🍓4传媒121,https://je40u.cdnedge.live/file/avple-images/hls/623e789a76b51e756d5edc05/playlist.m3u8
|
||||
🍓4传媒122,https://8bb88.cdnedge.live/file/avple-images/hls/623e77aa76b51e756d5edc03/playlist.m3u8
|
||||
🍓4传媒123,https://d862cp.cdnedge.live/file/avple-images/hls/623e773276b51e756d5edc01/playlist.m3u8
|
||||
🍓4传媒124,https://q2cyl7.cdnedge.live/file/avple-images/hls/623e78d776b51e756d5edc06/playlist.m3u8
|
||||
🍓4传媒125,https://je40u.cdnedge.live/file/avple-images/hls/623e776e76b51e756d5edc02/playlist.m3u8
|
||||
🍓4传媒126,https://d862cp.cdnedge.live/file/avple-images/hls/623e751676b51e756d5edbfc/playlist.m3u8
|
||||
🍓4传媒127,https://8bb88.cdnedge.live/file/avple-images/hls/623e755276b51e756d5edbfd/playlist.m3u8
|
||||
🍓4传媒128,https://zo392.cdnedge.live/file/avple-images/hls/623e746276b51e756d5edbfb/playlist.m3u8
|
||||
🍓4传媒129,https://je40u.cdnedge.live/file/avple-images/hls/623aa3bea36ac22379912387/playlist.m3u8
|
||||
🍓4传媒130,https://e2fa6.cdnedge.live/file/avple-images/hls/623aa30aa36ac22379912385/playlist.m3u8
|
||||
🍓4传媒131,https://q2cyl7.cdnedge.live/file/avple-images/hls/623aa436a36ac22379912388/playlist.m3u8
|
||||
🍓4传媒132,https://d862cp.cdnedge.live/file/avple-images/hls/623aa346a36ac22379912386/playlist.m3u8
|
||||
🍓4传媒133,https://q2cyl7.cdnedge.live/file/avple-images/hls/623aa292a36ac22379912384/playlist.m3u8
|
||||
🍓4传媒134,https://e2fa6.cdnedge.live/file/avple-images/hls/623aa21aa36ac22379912383/playlist.m3u8
|
||||
🍓4传媒135,https://d862cp.cdnedge.live/file/avple-images/hls/623aa076a36ac22379912382/playlist.m3u8
|
||||
🍓4传媒136,https://e2fa6.cdnedge.live/file/avple-images/hls/623926a6a14fb341a31f13dd/playlist.m3u8
|
||||
🍓4传媒137,https://8bb88.cdnedge.live/file/avple-images/hls/623926e2a14fb341a31f13de/playlist.m3u8
|
||||
🍓4传媒138,https://q2cyl7.cdnedge.live/file/avple-images/hls/6239262ea14fb341a31f13dc/playlist.m3u8
|
||||
🍓4传媒139,https://1xp60.cdnedge.live/file/avple-images/hls/623925f3a14fb341a31f13db/playlist.m3u8
|
||||
🍓4传媒140,https://e2fa6.cdnedge.live/file/avple-images/hls/6239257ba14fb341a31f13da/playlist.m3u8
|
||||
🍓4传媒141,https://10j99.cdnedge.live/file/avple-images/hls/6238258a3f90d26204d0e67d/playlist.m3u8
|
||||
🍓4传媒142,https://8bb88.cdnedge.live/file/avple-images/hls/6238249a3f90d26204d0e67a/playlist.m3u8
|
||||
🍓4传媒143,https://w9n76.cdnedge.live/file/avple-images/hls/623825123f90d26204d0e67b/playlist.m3u8
|
||||
🍓4传媒144,https://8bb88.cdnedge.live/file/avple-images/hls/6238254e3f90d26204d0e67c/playlist.m3u8
|
||||
🍓4传媒145,https://u89ey.cdnedge.live/file/avple-images/hls/6238245f3f90d26204d0e679/playlist.m3u8
|
||||
🍓4传媒146,https://8bb88.cdnedge.live/file/avple-images/hls/623824223f90d26204d0e678/playlist.m3u8
|
||||
🍓4传媒147,https://w9n76.cdnedge.live/file/avple-images/hls/6238236f3f90d26204d0e676/playlist.m3u8
|
||||
🍓4传媒148,https://w9n76.cdnedge.live/file/avple-images/hls/623823aa3f90d26204d0e677/playlist.m3u8
|
||||
🍓4传媒149,https://10j99.cdnedge.live/file/avple-images/hls/623822bb3f90d26204d0e675/playlist.m3u8
|
||||
🍓4传媒150,https://8bb88.cdnedge.live/file/avple-images/hls/6236af7a1222e41c629a9325/playlist.m3u8
|
||||
🍓4传媒151,https://e2fa6.cdnedge.live/file/avple-images/hls/6236af021222e41c629a9324/playlist.m3u8
|
||||
🍓4传媒152,https://10j99.cdnedge.live/file/avple-images/hls/6236afb61222e41c629a9326/playlist.m3u8
|
||||
🍓4传媒153,https://u89ey.cdnedge.live/file/avple-images/hls/6236b11e1222e41c629a932a/playlist.m3u8
|
||||
🍓4传媒154,https://1xp60.cdnedge.live/file/avple-images/hls/6236aff21222e41c629a9327/playlist.m3u8
|
||||
🍓4传媒155,https://u89ey.cdnedge.live/file/avple-images/hls/6236b0a61222e41c629a9329/playlist.m3u8
|
||||
🍓4传媒156,https://q2cyl7.cdnedge.live/file/avple-images/hls/6236b06a1222e41c629a9328/playlist.m3u8
|
||||
🍓4传媒157,https://q2cyl7.cdnedge.live/file/avple-images/hls/6236ae8a1222e41c629a9323/playlist.m3u8
|
||||
🍓4传媒158,https://1xp60.cdnedge.live/file/avple-images/hls/62350706ecafc64f34ef85bd/playlist.m3u8
|
||||
🍓4传媒159,https://10j99.cdnedge.live/file/avple-images/hls/623506caecafc64f34ef85bc/playlist.m3u8
|
||||
🍓4传媒160,https://u89ey.cdnedge.live/file/avple-images/hls/62350655ecafc64f34ef85bb/playlist.m3u8
|
||||
🍓4传媒161,https://1xp60.cdnedge.live/file/avple-images/hls/6235062decafc64f34ef85ba/playlist.m3u8
|
||||
🍓4传媒162,https://q2cyl7.cdnedge.live/file/avple-images/hls/6235059eecafc64f34ef85b9/playlist.m3u8
|
||||
🍓4传媒163,https://je40u.cdnedge.live/file/avple-images/hls/62350561ecafc64f34ef85b8/playlist.m3u8
|
||||
🍓4传媒164,https://u89ey.cdnedge.live/file/avple-images/hls/6233cadaaefa78093f9ffdd5/playlist.m3u8
|
||||
🍓4传媒165,https://u89ey.cdnedge.live/file/avple-images/hls/6233ca29aefa78093f9ffdd3/playlist.m3u8
|
||||
🍓4传媒166,https://q2cyl7.cdnedge.live/file/avple-images/hls/6233ca63aefa78093f9ffdd4/playlist.m3u8
|
||||
🍓4传媒167,https://e2fa6.cdnedge.live/file/avple-images/hls/6233c9aeaefa78093f9ffdd2/playlist.m3u8
|
||||
🍓4传媒168,https://je40u.cdnedge.live/file/avple-images/hls/6233c8faaefa78093f9ffdd1/playlist.m3u8
|
||||
🍓4传媒169,https://zo392.cdnedge.live/file/avple-images/hls/6233c882aefa78093f9ffdd0/playlist.m3u8
|
||||
🍓4传媒170,https://10j99.cdnedge.live/file/avple-images/hls/6233c80aaefa78093f9ffdcf/playlist.m3u8
|
||||
🍓4传媒171,https://8bb88.cdnedge.live/file/avple-images/hls/6233c791aefa78093f9ffdce/playlist.m3u8
|
||||
🍓4传媒172,https://q2cyl7.cdnedge.live/file/avple-images/hls/62323bb68cc9324f49436133/playlist.m3u8
|
||||
🍓4传媒173,https://zo392.cdnedge.live/file/avple-images/hls/62323c6a8cc9324f49436135/playlist.m3u8
|
||||
🍓4传媒174,https://w9n76.cdnedge.live/file/avple-images/hls/62323ac78cc9324f49436130/playlist.m3u8
|
||||
🍓4传媒175,https://1xp60.cdnedge.live/file/avple-images/hls/62323b7a8cc9324f49436132/playlist.m3u8
|
||||
🍓4传媒176,https://10j99.cdnedge.live/file/avple-images/hls/62323b028cc9324f49436131/playlist.m3u8
|
||||
🍓4传媒177,https://8bb88.cdnedge.live/file/avple-images/hls/62323a8b8cc9324f4943612f/playlist.m3u8
|
||||
🍓4传媒178,https://u89ey.cdnedge.live/file/avple-images/hls/62323bf28cc9324f49436134/playlist.m3u8
|
||||
🍓4传媒179,https://1xp60.cdnedge.live/file/avple-images/hls/623239d98cc9324f4943612d/playlist.m3u8
|
||||
🍓4传媒180,https://e2fa6.cdnedge.live/file/avple-images/hls/62323a128cc9324f4943612e/playlist.m3u8
|
||||
🍓3传媒01,https://d862cp.cdnedge.live/file/avple-images/hls/622fca68e14ae771445e4800/playlist.m3u8
|
||||
🍓3传媒02,https://e2fa6.cdnedge.live/file/avple-images/hls/622fc8c1e14ae771445e47fd/playlist.m3u8
|
||||
🍓3传媒03,https://8bb88.cdnedge.live/file/avple-images/hls/622fc84ae14ae771445e47fc/playlist.m3u8
|
||||
🍓3传媒04,https://d862cp.cdnedge.live/file/avple-images/hls/622fc71ee14ae771445e47fb/playlist.m3u8
|
||||
🍓3传媒05,https://10j99.cdnedge.live/file/avple-images/hls/622fc6e2e14ae771445e47fa/playlist.m3u8
|
||||
🍓3传媒06,https://u89ey.cdnedge.live/file/avple-images/hls/622fc66ae14ae771445e47f9/playlist.m3u8
|
||||
🍓3传媒07,https://10j99.cdnedge.live/file/avple-images/hls/622fc62ee14ae771445e47f8/playlist.m3u8
|
||||
🍓3传媒08,https://u89ey.cdnedge.live/file/avple-images/hls/622d4a52e5f4997685910d1b/playlist.m3u8
|
||||
🍓3传媒09,https://1xp60.cdnedge.live/file/avple-images/hls/622d4a16e5f4997685910d1a/playlist.m3u8
|
||||
🍓3传媒10,https://10j99.cdnedge.live/file/avple-images/hls/622d48eae5f4997685910d17/playlist.m3u8
|
||||
🍓3传媒11,https://8bb88.cdnedge.live/file/avple-images/hls/622d4872e5f4997685910d16/playlist.m3u8
|
||||
🍓3传媒12,https://q2cyl7.cdnedge.live/file/avple-images/hls/622d47bee5f4997685910d14/playlist.m3u8
|
||||
🍓3传媒13,https://d862cp.cdnedge.live/file/avple-images/hls/622d4746e5f4997685910d13/playlist.m3u8
|
||||
🍓3传媒14,https://8bb88.cdnedge.live/file/avple-images/hls/622d4836e5f4997685910d15/playlist.m3u8
|
||||
🍓3传媒15,https://u89ey.cdnedge.live/file/avple-images/hls/622d470ae5f4997685910d12/playlist.m3u8
|
||||
🍓3传媒16,https://w9n76.cdnedge.live/file/avple-images/hls/622b643b99043721e41f4770/playlist.m3u8
|
||||
🍓3传媒17,https://d862cp.cdnedge.live/file/avple-images/hls/622b616c99043721e41f476c/playlist.m3u8
|
||||
🍓3传媒18,https://8bb88.cdnedge.live/file/avple-images/hls/622b5fc699043721e41f4769/playlist.m3u8
|
||||
🍓3传媒19,https://1xp60.cdnedge.live/file/avple-images/hls/622b661b99043721e41f4772/playlist.m3u8
|
||||
🍓3传媒20,https://u89ey.cdnedge.live/file/avple-images/hls/622b656699043721e41f4771/playlist.m3u8
|
||||
🍓3传媒21,https://d862cp.cdnedge.live/file/avple-images/hls/622b634a99043721e41f476f/playlist.m3u8
|
||||
🍓3传媒22,https://10j99.cdnedge.live/file/avple-images/hls/622b62d399043721e41f476e/playlist.m3u8
|
||||
🍓3传媒23,https://u89ey.cdnedge.live/file/avple-images/hls/622b61e299043721e41f476d/playlist.m3u8
|
||||
🍓3传媒24,https://u89ey.cdnedge.live/file/avple-images/hls/622b612f99043721e41f476b/playlist.m3u8
|
||||
🍓3传媒25,https://8bb88.cdnedge.live/file/avple-images/hls/622b603e99043721e41f476a/playlist.m3u8
|
||||
🍓3传媒26,https://1xp60.cdnedge.live/file/avple-images/hls/622b5dab99043721e41f4765/playlist.m3u8
|
||||
🍓3传媒27,https://w9n76.cdnedge.live/file/avple-images/hls/622b5de999043721e41f4766/playlist.m3u8
|
||||
🍓3传媒28,https://1xp60.cdnedge.live/file/avple-images/hls/62287aaeac9a2544846bbfab/playlist.m3u8
|
||||
🍓3传媒29,https://u89ey.cdnedge.live/file/avple-images/hls/62287a72ac9a2544846bbfaa/playlist.m3u8
|
||||
🍓3传媒30,https://e2fa6.cdnedge.live/file/avple-images/hls/622879bfac9a2544846bbfa8/playlist.m3u8
|
||||
🍓3传媒31,https://e2fa6.cdnedge.live/file/avple-images/hls/62266f52c4dfd90d53d40fc1/playlist.m3u8
|
||||
🍓3传媒32,https://je40u.cdnedge.live/file/avple-images/hls/62266f8ec4dfd90d53d40fc2/playlist.m3u8
|
||||
🍓3传媒33,https://8bb88.cdnedge.live/file/avple-images/hls/62266edac4dfd90d53d40fc0/playlist.m3u8
|
||||
🍓3传媒34,https://w9n76.cdnedge.live/file/avple-images/hls/62266e62c4dfd90d53d40fbf/playlist.m3u8
|
||||
🍓3传媒35,https://8bb88.cdnedge.live/file/avple-images/hls/62266e26c4dfd90d53d40fbe/playlist.m3u8
|
||||
🍓3传媒36,https://je40u.cdnedge.live/file/avple-images/hls/62266daec4dfd90d53d40fbd/playlist.m3u8
|
||||
🍓3传媒37,https://10j99.cdnedge.live/file/avple-images/hls/62266d37c4dfd90d53d40fbc/playlist.m3u8
|
||||
🍓3传媒38,https://je40u.cdnedge.live/file/avple-images/hls/62266cfac4dfd90d53d40fbb/playlist.m3u8
|
||||
🍓3传媒39,https://je40u.cdnedge.live/file/avple-images/hls/62246e82c6370a74fa39c70f/playlist.m3u8
|
||||
🍓3传媒40,https://je40u.cdnedge.live/file/avple-images/hls/6224736ec6370a74fa39c717/playlist.m3u8
|
||||
🍓3传媒41,https://1xp60.cdnedge.live/file/avple-images/hls/62247332c6370a74fa39c716/playlist.m3u8
|
||||
🍓3传媒42,https://zo392.cdnedge.live/file/avple-images/hls/6224709ec6370a74fa39c715/playlist.m3u8
|
||||
🍓3传媒43,https://zo392.cdnedge.live/file/avple-images/hls/62246e0ac6370a74fa39c70e/playlist.m3u8
|
||||
🍓3传媒44,https://8bb88.cdnedge.live/file/avple-images/hls/62246d92c6370a74fa39c70d/playlist.m3u8
|
||||
🍓3传媒45,https://zo392.cdnedge.live/file/avple-images/hls/62246d56c6370a74fa39c70c/playlist.m3u8
|
||||
🍓3传媒46,https://10j99.cdnedge.live/file/avple-images/hls/62247026c6370a74fa39c714/playlist.m3u8
|
||||
🍓3传媒47,https://u89ey.cdnedge.live/file/avple-images/hls/62246faec6370a74fa39c712/playlist.m3u8
|
||||
🍓3传媒48,https://w9n76.cdnedge.live/file/avple-images/hls/62246feac6370a74fa39c713/playlist.m3u8
|
||||
🍓3传媒49,https://8bb88.cdnedge.live/file/avple-images/hls/62246f36c6370a74fa39c711/playlist.m3u8
|
||||
🍓3传媒50,https://d862cp.cdnedge.live/file/avple-images/hls/62246efac6370a74fa39c710/playlist.m3u8
|
||||
🍓3传媒51,https://1xp60.cdnedge.live/file/avple-images/hls/622311861fdb77263ccb386d/playlist.m3u8
|
||||
🍓3传媒52,https://je40u.cdnedge.live/file/avple-images/hls/6223101e1fdb77263ccb386a/playlist.m3u8
|
||||
🍓3传媒53,https://e2fa6.cdnedge.live/file/avple-images/hls/622310d31fdb77263ccb386c/playlist.m3u8
|
||||
🍓3传媒54,https://8bb88.cdnedge.live/file/avple-images/hls/622310611fdb77263ccb386b/playlist.m3u8
|
||||
🍓3传媒55,https://zo392.cdnedge.live/file/avple-images/hls/62230f6b1fdb77263ccb3868/playlist.m3u8
|
||||
🍓3传媒56,https://zo392.cdnedge.live/file/avple-images/hls/62230eb61fdb77263ccb3866/playlist.m3u8
|
||||
🍓3传媒57,https://je40u.cdnedge.live/file/avple-images/hls/62230f2e1fdb77263ccb3867/playlist.m3u8
|
||||
🍓3传媒58,https://je40u.cdnedge.live/file/avple-images/hls/62230e3e1fdb77263ccb3865/playlist.m3u8
|
||||
🍓3传媒59,https://u89ey.cdnedge.live/file/avple-images/hls/62230dc61fdb77263ccb3864/playlist.m3u8
|
||||
🍓3传媒60,https://1xp60.cdnedge.live/file/avple-images/hls/62230d8a1fdb77263ccb3863/playlist.m3u8
|
||||
🍓3传媒61,https://10j99.cdnedge.live/file/avple-images/hls/621f6da6532bec088eaa2e8b/playlist.m3u8
|
||||
🍓3传媒62,https://w9n76.cdnedge.live/file/avple-images/hls/621f6d2e532bec088eaa2e8a/playlist.m3u8
|
||||
🍓3传媒63,https://d862cp.cdnedge.live/file/avple-images/hls/621f6c7a532bec088eaa2e88/playlist.m3u8
|
||||
🍓3传媒64,https://10j99.cdnedge.live/file/avple-images/hls/621e13b70b43873ee3783be8/playlist.m3u8
|
||||
🍓3传媒65,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1f320b43873ee3783bf8/playlist.m3u8
|
||||
🍓3传媒66,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1eba0b43873ee3783bf7/playlist.m3u8
|
||||
🍓3传媒67,https://e2fa6.cdnedge.live/file/avple-images/hls/621e1c9e0b43873ee3783bf5/playlist.m3u8
|
||||
🍓3传媒68,https://zo392.cdnedge.live/file/avple-images/hls/621e1c620b43873ee3783bf4/playlist.m3u8
|
||||
🍓3传媒69,https://d862cp.cdnedge.live/file/avple-images/hls/621e1b360b43873ee3783bf2/playlist.m3u8
|
||||
🍓3传媒70,https://1xp60.cdnedge.live/file/avple-images/hls/621e18660b43873ee3783bf1/playlist.m3u8
|
||||
🍓3传媒71,https://d862cp.cdnedge.live/file/avple-images/hls/621e17ee0b43873ee3783bf0/playlist.m3u8
|
||||
🍓3传媒72,https://zo392.cdnedge.live/file/avple-images/hls/621e189a833cfd3eefe736a3/playlist.m3u8
|
||||
🍓3传媒73,https://8bb88.cdnedge.live/file/avple-images/hls/621e17b40b43873ee3783bef/playlist.m3u8
|
||||
🍓3传媒74,https://10j99.cdnedge.live/file/avple-images/hls/621e16860b43873ee3783bed/playlist.m3u8
|
||||
🍓3传媒75,https://1xp60.cdnedge.live/file/avple-images/hls/621e173a0b43873ee3783bee/playlist.m3u8
|
||||
🍓3传媒76,https://u89ey.cdnedge.live/file/avple-images/hls/621e160f0b43873ee3783bec/playlist.m3u8
|
||||
🍓3传媒77,https://10j99.cdnedge.live/file/avple-images/hls/621e15960b43873ee3783beb/playlist.m3u8
|
||||
🍓3传媒78,https://10j99.cdnedge.live/file/avple-images/hls/621e14e20b43873ee3783bea/playlist.m3u8
|
||||
🍓3传媒79,https://w9n76.cdnedge.live/file/avple-images/hls/621e146a0b43873ee3783be9/playlist.m3u8
|
||||
🍓3传媒80,https://w9n76.cdnedge.live/file/avple-images/hls/621e133f0b43873ee3783be7/playlist.m3u8
|
||||
🍓3传媒81,https://10j99.cdnedge.live/file/avple-images/hls/621e12c60b43873ee3783be6/playlist.m3u8
|
||||
🍓3传媒82,https://d862cp.cdnedge.live/file/avple-images/hls/6219e9c6b9e8e9119a2f1fe8/playlist.m3u8
|
||||
🍓3传媒83,https://10j99.cdnedge.live/file/avple-images/hls/6219ebe2b9e8e9119a2f1fee/playlist.m3u8
|
||||
🍓3传媒84,https://zo392.cdnedge.live/file/avple-images/hls/6219eba7b9e8e9119a2f1fed/playlist.m3u8
|
||||
🍓3传媒85,https://10j99.cdnedge.live/file/avple-images/hls/6219eb6ab9e8e9119a2f1fec/playlist.m3u8
|
||||
🍓3传媒86,https://q2cyl7.cdnedge.live/file/avple-images/hls/6219e98ab9e8e9119a2f1fe7/playlist.m3u8
|
||||
🍓3传媒87,https://je40u.cdnedge.live/file/avple-images/hls/6219eab6b9e8e9119a2f1fea/playlist.m3u8
|
||||
🍓3传媒88,https://10j99.cdnedge.live/file/avple-images/hls/6219eaf2b9e8e9119a2f1feb/playlist.m3u8
|
||||
🍓3传媒89,https://q2cyl7.cdnedge.live/file/avple-images/hls/6219ea7ab9e8e9119a2f1fe9/playlist.m3u8
|
||||
🍓3传媒90,https://10j99.cdnedge.live/file/avple-images/hls/6219e85eb9e8e9119a2f1fe4/playlist.m3u8
|
||||
🍓3传媒92,https://u89ey.cdnedge.live/file/avple-images/hls/6219e76eb9e8e9119a2f1fe2/playlist.m3u8
|
||||
🍓3传媒93,https://u89ey.cdnedge.live/file/avple-images/hls/6219e6f5b9e8e9119a2f1fe1/playlist.m3u8
|
||||
🍓3传媒94,https://1xp60.cdnedge.live/file/avple-images/hls/62173262336b5d6ff709b37a/playlist.m3u8
|
||||
🍓3传媒95,https://1xp60.cdnedge.live/file/avple-images/hls/621731ea336b5d6ff709b379/playlist.m3u8
|
||||
🍓3传媒96,https://d862cp.cdnedge.live/file/avple-images/hls/621731ae336b5d6ff709b378/playlist.m3u8
|
||||
🍓3传媒97,https://u89ey.cdnedge.live/file/avple-images/hls/6215b8cecef8321ac4bf99a9/playlist.m3u8
|
||||
🍓3传媒98,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215b892cef8321ac4bf99a8/playlist.m3u8
|
||||
🍓3传媒99,https://d862cp.cdnedge.live/file/avple-images/hls/6215b81bcef8321ac4bf99a7/playlist.m3u8
|
||||
🍓3传媒100,https://je40u.cdnedge.live/file/avple-images/hls/6215b7a2cef8321ac4bf99a6/playlist.m3u8
|
||||
🍓3传媒101,https://je40u.cdnedge.live/file/avple-images/hls/6215b72acef8321ac4bf99a5/playlist.m3u8
|
||||
🍓3传媒102,https://e2fa6.cdnedge.live/file/avple-images/hls/6215b6eecef8321ac4bf99a4/playlist.m3u8
|
||||
🍓3传媒103,https://8bb88.cdnedge.live/file/avple-images/hls/6215b6b3cef8321ac4bf99a3/playlist.m3u8
|
||||
🍓3传媒104,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215b63acef8321ac4bf99a2/playlist.m3u8
|
||||
🍓3传媒105,https://zo392.cdnedge.live/file/avple-images/hls/6215ac26cef8321ac4bf999f/playlist.m3u8
|
||||
🍓3传媒106,https://e2fa6.cdnedge.live/file/avple-images/hls/6215ac63cef8321ac4bf99a0/playlist.m3u8
|
||||
🍓3传媒107,https://q2cyl7.cdnedge.live/file/avple-images/hls/6215abafcef8321ac4bf999e/playlist.m3u8
|
||||
🍓3传媒108,https://1xp60.cdnedge.live/file/avple-images/hls/6215ab72cef8321ac4bf999d/playlist.m3u8
|
||||
🍓3传媒109,https://d862cp.cdnedge.live/file/avple-images/hls/6211ae465e73c82284228828/playlist.m3u8
|
||||
🍓3传媒110,https://8bb88.cdnedge.live/file/avple-images/hls/6211adce5e73c82284228827/playlist.m3u8
|
||||
🍓3传媒111,https://e2fa6.cdnedge.live/file/avple-images/hls/6211ad1a5e73c82284228825/playlist.m3u8
|
||||
🍓3传媒112,https://zo392.cdnedge.live/file/avple-images/hls/6211ae3ab0d135228b7be61a/playlist.m3u8
|
||||
🍓3传媒113,https://w9n76.cdnedge.live/file/avple-images/hls/6211ad925e73c82284228826/playlist.m3u8
|
||||
🍓3传媒114,https://10j99.cdnedge.live/file/avple-images/hls/62104c9a9d14d648884aa814/playlist.m3u8
|
||||
🍓3传媒115,https://d862cp.cdnedge.live/file/avple-images/hls/62104fa69d14d648884aa81d/playlist.m3u8
|
||||
🍓3传媒116,https://e2fa6.cdnedge.live/file/avple-images/hls/62104f2e9d14d648884aa81c/playlist.m3u8
|
||||
🍓3传媒117,https://10j99.cdnedge.live/file/avple-images/hls/62104ef39d14d648884aa81b/playlist.m3u8
|
||||
🍓3传媒118,https://1xp60.cdnedge.live/file/avple-images/hls/62104eb79d14d648884aa81a/playlist.m3u8
|
||||
🍓3传媒119,https://q2cyl7.cdnedge.live/file/avple-images/hls/62104e7c9d14d648884aa819/playlist.m3u8
|
||||
🍓3传媒120,https://w9n76.cdnedge.live/file/avple-images/hls/62104d4e9d14d648884aa816/playlist.m3u8
|
||||
🍓3传媒121,https://u89ey.cdnedge.live/file/avple-images/hls/62104c229d14d648884aa813/playlist.m3u8
|
||||
🍓3传媒122,https://e2fa6.cdnedge.live/file/avple-images/hls/62104cd69d14d648884aa815/playlist.m3u8
|
||||
🍓3传媒123,https://q2cyl7.cdnedge.live/file/avple-images/hls/62104e029d14d648884aa818/playlist.m3u8
|
||||
🍓3传媒124,https://u89ey.cdnedge.live/file/avple-images/hls/620c662bd0ea7c7d841b2f3c/playlist.m3u8
|
||||
🍓3传媒125,https://e2fa6.cdnedge.live/file/avple-images/hls/620c65b2d0ea7c7d841b2f3b/playlist.m3u8
|
||||
🍓3传媒126,https://zo392.cdnedge.live/file/avple-images/hls/620c6576d0ea7c7d841b2f3a/playlist.m3u8
|
||||
🍓3传媒127,https://d862cp.cdnedge.live/file/avple-images/hls/620c64c2d0ea7c7d841b2f39/playlist.m3u8
|
||||
🍓3传媒128,https://10j99.cdnedge.live/file/avple-images/hls/620c63d2d0ea7c7d841b2f38/playlist.m3u8
|
||||
🍓3传媒129,https://d862cp.cdnedge.live/file/avple-images/hls/620c6397d0ea7c7d841b2f37/playlist.m3u8
|
||||
🍓3传媒130,https://d862cp.cdnedge.live/file/avple-images/hls/620b88afd0ea7c7d841b2f35/playlist.m3u8
|
||||
🍓3传媒131,https://e2fa6.cdnedge.live/file/avple-images/hls/620b8836d0ea7c7d841b2f34/playlist.m3u8
|
||||
🍓3传媒132,https://10j99.cdnedge.live/file/avple-images/hls/620b87fdd0ea7c7d841b2f33/playlist.m3u8
|
||||
🍓3传媒133,https://w9n76.cdnedge.live/file/avple-images/hls/620b8746b9ba4c5adad0e27e/playlist.m3u8
|
||||
🍓3传媒134,https://q2cyl7.cdnedge.live/file/avple-images/hls/620b87fcd0ea7c7d841b2f32/playlist.m3u8
|
||||
🍓3传媒135,https://1xp60.cdnedge.live/file/avple-images/hls/6209b467f074eb1e0fe62719/playlist.m3u8
|
||||
🍓3传媒136,https://1xp60.cdnedge.live/file/avple-images/hls/6209b51af074eb1e0fe6271b/playlist.m3u8
|
||||
🍓3传媒137,https://1xp60.cdnedge.live/file/avple-images/hls/6209b63ac06a441e168f7d16/playlist.m3u8
|
||||
🍓3传媒138,https://e2fa6.cdnedge.live/file/avple-images/hls/6209b4def074eb1e0fe6271a/playlist.m3u8
|
||||
🍓3传媒139,https://w9n76.cdnedge.live/file/avple-images/hls/6209b3eef074eb1e0fe62717/playlist.m3u8
|
||||
🍓3传媒140,https://1xp60.cdnedge.live/file/avple-images/hls/6209b42bf074eb1e0fe62718/playlist.m3u8
|
||||
🍓2传媒01,https://w9n76.cdnedge.live/file/avple-images/hls/6206efe3c6e4cd6e597c7185/playlist.m3u8
|
||||
🍓2传媒02,https://je40u.cdnedge.live/file/avple-images/hls/6206efa6c6e4cd6e597c7184/playlist.m3u8
|
||||
🍓2传媒04,https://w9n76.cdnedge.live/file/avple-images/hls/6205a3c6d69d37216eb636dd/playlist.m3u8
|
||||
🍓2传媒05,https://zo392.cdnedge.live/file/avple-images/hls/6205a34fd69d37216eb636dc/playlist.m3u8
|
||||
🍓2传媒06,https://q2cyl7.cdnedge.live/file/avple-images/hls/6205a006d69d37216eb636db/playlist.m3u8
|
||||
🍓2传媒07,https://w9n76.cdnedge.live/file/avple-images/hls/62059f17d69d37216eb636d8/playlist.m3u8
|
||||
🍓2传媒08,https://8bb88.cdnedge.live/file/avple-images/hls/62059fcbd69d37216eb636da/playlist.m3u8
|
||||
🍓2传媒09,https://10j99.cdnedge.live/file/avple-images/hls/62059f8ed69d37216eb636d9/playlist.m3u8
|
||||
🍓2传媒10,https://q2cyl7.cdnedge.live/file/avple-images/hls/62059e64d69d37216eb636d7/playlist.m3u8
|
||||
🍓2传媒11,https://e2fa6.cdnedge.live/file/avple-images/hls/6202e4e3152c48301ba2ac79/playlist.m3u8
|
||||
🍓2传媒12,https://e2fa6.cdnedge.live/file/avple-images/hls/6202e42e152c48301ba2ac77/playlist.m3u8
|
||||
🍓2传媒13,https://u89ey.cdnedge.live/file/avple-images/hls/6202e37a152c48301ba2ac75/playlist.m3u8
|
||||
🍓2传媒14,https://u89ey.cdnedge.live/file/avple-images/hls/6202e55a152c48301ba2ac7a/playlist.m3u8
|
||||
🍓2传媒15,https://e2fa6.cdnedge.live/file/avple-images/hls/6202e4a6152c48301ba2ac78/playlist.m3u8
|
||||
🍓2传媒16,https://u89ey.cdnedge.live/file/avple-images/hls/6202e3f2152c48301ba2ac76/playlist.m3u8
|
||||
🍓2传媒17,https://10j99.cdnedge.live/file/avple-images/hls/6202e33e152c48301ba2ac74/playlist.m3u8
|
||||
🍓2传媒18,https://d862cp.cdnedge.live/file/avple-images/hls/6202e032152c48301ba2ac70/playlist.m3u8
|
||||
🍓2传媒19,https://d862cp.cdnedge.live/file/avple-images/hls/6202e0aa152c48301ba2ac71/playlist.m3u8
|
||||
🍓2传媒20,https://d862cp.cdnedge.live/file/avple-images/hls/6202e0e6152c48301ba2ac72/playlist.m3u8
|
||||
🍓2传媒21,https://8bb88.cdnedge.live/file/avple-images/hls/6202de16152c48301ba2ac6e/playlist.m3u8
|
||||
🍓2传媒22,https://8bb88.cdnedge.live/file/avple-images/hls/6202ddda152c48301ba2ac6d/playlist.m3u8
|
||||
🍓2传媒23,https://10j99.cdnedge.live/file/avple-images/hls/6202dd9e152c48301ba2ac6c/playlist.m3u8
|
||||
🍓2传媒24,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ff192a99eb625f8e37e0ae/playlist.m3u8
|
||||
🍓2传媒25,https://u89ey.cdnedge.live/file/avple-images/hls/61ff169699eb625f8e37e0a7/playlist.m3u8
|
||||
🍓2传媒26,https://w9n76.cdnedge.live/file/avple-images/hls/61ff165a99eb625f8e37e0a6/playlist.m3u8
|
||||
🍓2传媒27,https://je40u.cdnedge.live/file/avple-images/hls/61ff18ee99eb625f8e37e0ad/playlist.m3u8
|
||||
🍓2传媒28,https://1xp60.cdnedge.live/file/avple-images/hls/61ff187899eb625f8e37e0ac/playlist.m3u8
|
||||
🍓2传媒29,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ff17ff99eb625f8e37e0ab/playlist.m3u8
|
||||
🍓2传媒30,https://10j99.cdnedge.live/file/avple-images/hls/61ff17c299eb625f8e37e0aa/playlist.m3u8
|
||||
🍓2传媒31,https://w9n76.cdnedge.live/file/avple-images/hls/61fd8f2ec68d7d11e015cd8b/playlist.m3u8
|
||||
🍓2传媒32,https://8bb88.cdnedge.live/file/avple-images/hls/61fd8f6ac68d7d11e015cd8c/playlist.m3u8
|
||||
🍓2传媒33,https://w9n76.cdnedge.live/file/avple-images/hls/61fd8ef3c68d7d11e015cd8a/playlist.m3u8
|
||||
🍓2传媒34,https://zo392.cdnedge.live/file/avple-images/hls/61fd8e7ac68d7d11e015cd89/playlist.m3u8
|
||||
🍓2传媒35,https://8bb88.cdnedge.live/file/avple-images/hls/61fd8e3ec68d7d11e015cd88/playlist.m3u8
|
||||
🍓2传媒36,https://zo392.cdnedge.live/file/avple-images/hls/61fb8b1711eff304d6e1379c/playlist.m3u8
|
||||
🍓2传媒37,https://10j99.cdnedge.live/file/avple-images/hls/61fb8d3211eff304d6e137a0/playlist.m3u8
|
||||
🍓2传媒38,https://u89ey.cdnedge.live/file/avple-images/hls/61fb8cf611eff304d6e1379f/playlist.m3u8
|
||||
🍓2传媒39,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb8b8f11eff304d6e1379d/playlist.m3u8
|
||||
🍓2传媒40,https://q2cyl7.cdnedge.live/file/avple-images/hls/61fb8c0611eff304d6e1379e/playlist.m3u8
|
||||
🍓2传媒41,https://1xp60.cdnedge.live/file/avple-images/hls/61fb8ada11eff304d6e1379b/playlist.m3u8
|
||||
🍓2传媒42,https://q2cyl7.cdnedge.live/file/avple-images/hls/61fb8a9e11eff304d6e1379a/playlist.m3u8
|
||||
🍓2传媒43,https://u89ey.cdnedge.live/file/avple-images/hls/61fb8a2611eff304d6e13799/playlist.m3u8
|
||||
🍓2传媒44,https://je40u.cdnedge.live/file/avple-images/hls/61fb89ea11eff304d6e13798/playlist.m3u8
|
||||
🍓2传媒45,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb89a2be50fb04df5de3f7/playlist.m3u8
|
||||
🍓2传媒46,https://10j99.cdnedge.live/file/avple-images/hls/61fb897211eff304d6e13797/playlist.m3u8
|
||||
🍓2传媒47,https://e2fa6.cdnedge.live/file/avple-images/hls/61fb893911eff304d6e13796/playlist.m3u8
|
||||
🍓2传媒48,https://w9n76.cdnedge.live/file/avple-images/hls/61fb8929be50fb04df5de3f0/playlist.m3u8
|
||||
🍓2传媒49,https://zo392.cdnedge.live/file/avple-images/hls/61fb88be11eff304d6e13795/playlist.m3u8
|
||||
🍓2传媒50,https://1xp60.cdnedge.live/file/avple-images/hls/61fb884611eff304d6e13794/playlist.m3u8
|
||||
🍓2传媒51,https://w9n76.cdnedge.live/file/avple-images/hls/61f9a9ae9053272327957ade/playlist.m3u8
|
||||
🍓2传媒52,https://w9n76.cdnedge.live/file/avple-images/hls/61f9a9369053272327957add/playlist.m3u8
|
||||
🍓2传媒53,https://d862cp.cdnedge.live/file/avple-images/hls/61f9a8fa9053272327957adc/playlist.m3u8
|
||||
🍓2传媒54,https://10j99.cdnedge.live/file/avple-images/hls/61f9a80a9053272327957ad9/playlist.m3u8
|
||||
🍓2传媒55,https://je40u.cdnedge.live/file/avple-images/hls/61f9a8be9053272327957adb/playlist.m3u8
|
||||
🍓2传媒56,https://q2cyl7.cdnedge.live/file/avple-images/hls/61f9a8479053272327957ada/playlist.m3u8
|
||||
🍓2传媒57,https://d862cp.cdnedge.live/file/avple-images/hls/61f9a7c1d23b882331bc3a8c/playlist.m3u8
|
||||
🍓2传媒58,https://1xp60.cdnedge.live/file/avple-images/hls/61f9a7929053272327957ad8/playlist.m3u8
|
||||
🍓2传媒59,https://zo392.cdnedge.live/file/avple-images/hls/61f9a7569053272327957ad7/playlist.m3u8
|
||||
🍓2传媒60,https://u89ey.cdnedge.live/file/avple-images/hls/61f9a6a29053272327957ad6/playlist.m3u8
|
||||
🍓2传媒61,https://10j99.cdnedge.live/file/avple-images/hls/61f7050ad7d05308d12ef124/playlist.m3u8
|
||||
🍓2传媒62,https://8bb88.cdnedge.live/file/avple-images/hls/61f70493d7d05308d12ef123/playlist.m3u8
|
||||
🍓2传媒63,https://10j99.cdnedge.live/file/avple-images/hls/61f7041bd7d05308d12ef122/playlist.m3u8
|
||||
🍓2传媒64,https://e2fa6.cdnedge.live/file/avple-images/hls/61f703ded7d05308d12ef121/playlist.m3u8
|
||||
🍓2传媒65,https://zo392.cdnedge.live/file/avple-images/hls/61f703a2d7d05308d12ef120/playlist.m3u8
|
||||
🍓2传媒66,https://w9n76.cdnedge.live/file/avple-images/hls/61f70276d7d05308d12ef11d/playlist.m3u8
|
||||
🍓2传媒67,https://u89ey.cdnedge.live/file/avple-images/hls/61f701c2d7d05308d12ef11b/playlist.m3u8
|
||||
🍓2传媒68,https://e2fa6.cdnedge.live/file/avple-images/hls/61f701fed7d05308d12ef11c/playlist.m3u8
|
||||
🍓2传媒69,https://je40u.cdnedge.live/file/avple-images/hls/61f70366d7d05308d12ef11f/playlist.m3u8
|
||||
🍓2传媒70,https://e2fa6.cdnedge.live/file/avple-images/hls/61f702efd7d05308d12ef11e/playlist.m3u8
|
||||
🍓2传媒71,https://d862cp.cdnedge.live/file/avple-images/hls/61f7014ad7d05308d12ef11a/playlist.m3u8
|
||||
🍓2传媒72,https://e2fa6.cdnedge.live/file/avple-images/hls/61f392da23581479b901ae15/playlist.m3u8
|
||||
🍓2传媒73,https://10j99.cdnedge.live/file/avple-images/hls/61f3922623581479b901ae14/playlist.m3u8
|
||||
🍓2传媒74,https://zo392.cdnedge.live/file/avple-images/hls/61f391ea23581479b901ae13/playlist.m3u8
|
||||
🍓2传媒75,https://10j99.cdnedge.live/file/avple-images/hls/61f391b123581479b901ae12/playlist.m3u8
|
||||
🍓2传媒76,https://w9n76.cdnedge.live/file/avple-images/hls/61efa2565d579208810784f9/playlist.m3u8
|
||||
🍓2传媒77,https://q2cyl7.cdnedge.live/file/avple-images/hls/61efa21b5d579208810784f8/playlist.m3u8
|
||||
🍓2传媒78,https://u89ey.cdnedge.live/file/avple-images/hls/61efa1a25d579208810784f7/playlist.m3u8
|
||||
🍓2传媒79,https://e2fa6.cdnedge.live/file/avple-images/hls/61efa0b25d579208810784f6/playlist.m3u8
|
||||
🍓2传媒80,https://e2fa6.cdnedge.live/file/avple-images/hls/61efa03b5d579208810784f5/playlist.m3u8
|
||||
🍓2传媒81,https://e2fa6.cdnedge.live/file/avple-images/hls/61ee473a4e82d1622de7f24e/playlist.m3u8
|
||||
🍓2传媒82,https://u89ey.cdnedge.live/file/avple-images/hls/61ee46c24e82d1622de7f24d/playlist.m3u8
|
||||
🍓2传媒83,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ee46864e82d1622de7f24c/playlist.m3u8
|
||||
🍓2传媒84,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbdf37580a3314beba2a8/playlist.m3u8
|
||||
🍓2传媒85,https://je40u.cdnedge.live/file/avple-images/hls/61ecc04a7580a3314beba2ad/playlist.m3u8
|
||||
🍓2传媒86,https://w9n76.cdnedge.live/file/avple-images/hls/61ecc00e7580a3314beba2ac/playlist.m3u8
|
||||
🍓2传媒87,https://1xp60.cdnedge.live/file/avple-images/hls/61ecbf5a7580a3314beba2ab/playlist.m3u8
|
||||
🍓2传媒88,https://zo392.cdnedge.live/file/avple-images/hls/61ecbee27580a3314beba2aa/playlist.m3u8
|
||||
🍓2传媒89,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ecbe6a7580a3314beba2a9/playlist.m3u8
|
||||
🍓2传媒90,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbd7a7580a3314beba2a7/playlist.m3u8
|
||||
🍓2传媒92,https://w9n76.cdnedge.live/file/avple-images/hls/61ecbd027580a3314beba2a6/playlist.m3u8
|
||||
🍓2传媒93,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbcc67580a3314beba2a5/playlist.m3u8
|
||||
🍓2传媒94,https://w9n76.cdnedge.live/file/avple-images/hls/61ecbc4f7580a3314beba2a4/playlist.m3u8
|
||||
🍓2传媒95,https://1xp60.cdnedge.live/file/avple-images/hls/61ecbc127580a3314beba2a3/playlist.m3u8
|
||||
🍓2传媒96,https://8bb88.cdnedge.live/file/avple-images/hls/61ecbb9a7580a3314beba2a2/playlist.m3u8
|
||||
🍓2传媒97,https://e2fa6.cdnedge.live/file/avple-images/hls/61ea6a66dabdc15a14562f7e/playlist.m3u8
|
||||
🍓2传媒98,https://e2fa6.cdnedge.live/file/avple-images/hls/61ea69eedabdc15a14562f7d/playlist.m3u8
|
||||
🍓2传媒99,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ea6977dabdc15a14562f7c/playlist.m3u8
|
||||
🍓2传媒100,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927bec6ba7653ff36282c/playlist.m3u8
|
||||
🍓2传媒101,https://je40u.cdnedge.live/file/avple-images/hls/61e927bbc6ba7653ff36282a/playlist.m3u8
|
||||
🍓2传媒102,https://10j99.cdnedge.live/file/avple-images/hls/61e927bac6ba7653ff362829/playlist.m3u8
|
||||
🍓2传媒103,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927b8c6ba7653ff362828/playlist.m3u8
|
||||
🍓2传媒104,https://d862cp.cdnedge.live/file/avple-images/hls/61e927b7c6ba7653ff362827/playlist.m3u8
|
||||
🍓2传媒105,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927b5c6ba7653ff362826/playlist.m3u8
|
||||
🍓2传媒106,https://8bb88.cdnedge.live/file/avple-images/hls/61e927b3c6ba7653ff362825/playlist.m3u8
|
||||
🍓2传媒107,https://8bb88.cdnedge.live/file/avple-images/hls/61e927b0c6ba7653ff362823/playlist.m3u8
|
||||
🍓2传媒108,https://10j99.cdnedge.live/file/avple-images/hls/61e927b2c6ba7653ff362824/playlist.m3u8
|
||||
🍓2传媒109,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e927adc6ba7653ff362821/playlist.m3u8
|
||||
🍓2传媒110,https://u89ey.cdnedge.live/file/avple-images/hls/61e927aac6ba7653ff36281f/playlist.m3u8
|
||||
🍓2传媒111,https://u89ey.cdnedge.live/file/avple-images/hls/61e5332adc7fbb10cb2c4edb/playlist.m3u8
|
||||
🍓2传媒112,https://e2fa6.cdnedge.live/file/avple-images/hls/61e532eddc7fbb10cb2c4eda/playlist.m3u8
|
||||
🍓2传媒113,https://1xp60.cdnedge.live/file/avple-images/hls/61e53275dc7fbb10cb2c4ed9/playlist.m3u8
|
||||
🍓2传媒114,https://w9n76.cdnedge.live/file/avple-images/hls/61e3be46ec201f6b0a3a89a9/playlist.m3u8
|
||||
🍓2传媒115,https://8bb88.cdnedge.live/file/avple-images/hls/61e3bd56ec201f6b0a3a89a8/playlist.m3u8
|
||||
🍓2传媒116,https://d862cp.cdnedge.live/file/avple-images/hls/61e3beefe6eb656b1d2d857e/playlist.m3u8
|
||||
🍓2传媒117,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e3bc66ec201f6b0a3a89a6/playlist.m3u8
|
||||
🍓2传媒118,https://u89ey.cdnedge.live/file/avple-images/hls/61e3bcdfec201f6b0a3a89a7/playlist.m3u8
|
||||
🍓2传媒119,https://je40u.cdnedge.live/file/avple-images/hls/61e3bbedec201f6b0a3a89a5/playlist.m3u8
|
||||
🍓2传媒120,https://zo392.cdnedge.live/file/avple-images/hls/61e24a8d9e31551b4fa3beae/playlist.m3u8
|
||||
🍓2传媒121,https://q2cyl7.cdnedge.live/file/avple-images/hls/61e24c319e31551b4fa3beb1/playlist.m3u8
|
||||
🍓2传媒122,https://w9n76.cdnedge.live/file/avple-images/hls/61e2499d9e31551b4fa3beac/playlist.m3u8
|
||||
🍓2传媒123,https://1xp60.cdnedge.live/file/avple-images/hls/61e24bf59e31551b4fa3beb0/playlist.m3u8
|
||||
🍓2传媒124,https://w9n76.cdnedge.live/file/avple-images/hls/61e24ac99e31551b4fa3beaf/playlist.m3u8
|
||||
🍓2传媒125,https://10j99.cdnedge.live/file/avple-images/hls/61e249d99e31551b4fa3bead/playlist.m3u8
|
||||
🍓2传媒126,https://zo392.cdnedge.live/file/avple-images/hls/61e249259e31551b4fa3beab/playlist.m3u8
|
||||
🍓1传媒01,https://10j99.cdnedge.live/file/avple-images/hls/61e11a91b12f2d3579c3423f/playlist.m3u8
|
||||
🍓1传媒02,https://zo392.cdnedge.live/file/avple-images/hls/61e11965b12f2d3579c3423d/playlist.m3u8
|
||||
🍓1传媒03,https://d862cp.cdnedge.live/file/avple-images/hls/61e11a19b12f2d3579c3423e/playlist.m3u8
|
||||
🍓1传媒04,https://e2fa6.cdnedge.live/file/avple-images/hls/61e11929b12f2d3579c3423c/playlist.m3u8
|
||||
🍓1传媒05,https://zo392.cdnedge.live/file/avple-images/hls/61e118b2b12f2d3579c3423b/playlist.m3u8
|
||||
🍓1传媒06,https://8bb88.cdnedge.live/file/avple-images/hls/61e1183ab12f2d3579c3423a/playlist.m3u8
|
||||
🍓1传媒07,https://d862cp.cdnedge.live/file/avple-images/hls/61df67193c31380dc7d79ade/playlist.m3u8
|
||||
🍓1传媒08,https://u89ey.cdnedge.live/file/avple-images/hls/61df65753c31380dc7d79ada/playlist.m3u8
|
||||
🍓1传媒09,https://10j99.cdnedge.live/file/avple-images/hls/61df66293c31380dc7d79adc/playlist.m3u8
|
||||
🍓1传媒10,https://e2fa6.cdnedge.live/file/avple-images/hls/61de116126bc6674a0936d1b/playlist.m3u8
|
||||
🍓1传媒11,https://je40u.cdnedge.live/file/avple-images/hls/61de159926bc6674a0936d24/playlist.m3u8
|
||||
🍓1传媒12,https://1xp60.cdnedge.live/file/avple-images/hls/61de14e526bc6674a0936d22/playlist.m3u8
|
||||
🍓1传媒13,https://1xp60.cdnedge.live/file/avple-images/hls/61de152126bc6674a0936d23/playlist.m3u8
|
||||
🍓1传媒14,https://je40u.cdnedge.live/file/avple-images/hls/61de13b926bc6674a0936d1f/playlist.m3u8
|
||||
🍓1传媒15,https://zo392.cdnedge.live/file/avple-images/hls/61de125126bc6674a0936d1e/playlist.m3u8
|
||||
🍓1传媒16,https://zo392.cdnedge.live/file/avple-images/hls/61de146d26bc6674a0936d21/playlist.m3u8
|
||||
🍓1传媒17,https://je40u.cdnedge.live/file/avple-images/hls/61de143126bc6674a0936d20/playlist.m3u8
|
||||
🍓1传媒18,https://8bb88.cdnedge.live/file/avple-images/hls/61de119d26bc6674a0936d1c/playlist.m3u8
|
||||
🍓1传媒19,https://w9n76.cdnedge.live/file/avple-images/hls/61db6e255fb6a835028c9aef/playlist.m3u8
|
||||
🍓1传媒20,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6de95fb6a835028c9aee/playlist.m3u8
|
||||
🍓1传媒21,https://d862cp.cdnedge.live/file/avple-images/hls/61db6dad5fb6a835028c9aed/playlist.m3u8
|
||||
🍓1传媒22,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6cf95fb6a835028c9aeb/playlist.m3u8
|
||||
🍓1传媒23,https://d862cp.cdnedge.live/file/avple-images/hls/61db6d725fb6a835028c9aec/playlist.m3u8
|
||||
🍓1传媒24,https://je40u.cdnedge.live/file/avple-images/hls/61db6cbd5fb6a835028c9aea/playlist.m3u8
|
||||
🍓1传媒25,https://e2fa6.cdnedge.live/file/avple-images/hls/61db6c455fb6a835028c9ae9/playlist.m3u8
|
||||
🍓1传媒26,https://8bb88.cdnedge.live/file/avple-images/hls/61db6bcd5fb6a835028c9ae8/playlist.m3u8
|
||||
🍓1传媒27,https://d862cp.cdnedge.live/file/avple-images/hls/61d8f7ea188cab78b243b40b/playlist.m3u8
|
||||
🍓1传媒28,https://8bb88.cdnedge.live/file/avple-images/hls/61d8f98d188cab78b243b410/playlist.m3u8
|
||||
🍓1传媒29,https://e2fa6.cdnedge.live/file/avple-images/hls/61d8f89f188cab78b243b40d/playlist.m3u8
|
||||
🍓1传媒30,https://w9n76.cdnedge.live/file/avple-images/hls/61d8f951188cab78b243b40f/playlist.m3u8
|
||||
🍓1传媒31,https://u89ey.cdnedge.live/file/avple-images/hls/61d8f8da188cab78b243b40e/playlist.m3u8
|
||||
🍓1传媒32,https://u89ey.cdnedge.live/file/avple-images/hls/61d8f828188cab78b243b40c/playlist.m3u8
|
||||
🍓1传媒33,https://1xp60.cdnedge.live/file/avple-images/hls/61d8f735188cab78b243b40a/playlist.m3u8
|
||||
🍓1传媒34,https://je40u.cdnedge.live/file/avple-images/hls/61d8f6fa188cab78b243b409/playlist.m3u8
|
||||
🍓1传媒35,https://je40u.cdnedge.live/file/avple-images/hls/61d62735f2772f49dcde1d54/playlist.m3u8
|
||||
🍓1传媒36,https://zo392.cdnedge.live/file/avple-images/hls/61d627e9f2772f49dcde1d56/playlist.m3u8
|
||||
🍓1传媒37,https://8bb88.cdnedge.live/file/avple-images/hls/61d627adf2772f49dcde1d55/playlist.m3u8
|
||||
🍓1传媒38,https://u89ey.cdnedge.live/file/avple-images/hls/61d626f9f2772f49dcde1d53/playlist.m3u8
|
||||
🍓1传媒39,https://zo392.cdnedge.live/file/avple-images/hls/61d62681f2772f49dcde1d52/playlist.m3u8
|
||||
🍓1传媒40,https://1xp60.cdnedge.live/file/avple-images/hls/61d62646f2772f49dcde1d51/playlist.m3u8
|
||||
🍓1传媒41,https://w9n76.cdnedge.live/file/avple-images/hls/61d62555f2772f49dcde1d4f/playlist.m3u8
|
||||
🍓1传媒42,https://d862cp.cdnedge.live/file/avple-images/hls/61d62465f2772f49dcde1d4c/playlist.m3u8
|
||||
🍓1传媒43,https://je40u.cdnedge.live/file/avple-images/hls/61d62519f2772f49dcde1d4e/playlist.m3u8
|
||||
🍓1传媒44,https://q2cyl7.cdnedge.live/file/avple-images/hls/61d624a1f2772f49dcde1d4d/playlist.m3u8
|
||||
🍓1传媒45,https://10j99.cdnedge.live/file/avple-images/hls/61d623edf2772f49dcde1d4b/playlist.m3u8
|
||||
🍓1传媒46,https://w9n76.cdnedge.live/file/avple-images/hls/61d62286f2772f49dcde1d48/playlist.m3u8
|
||||
🍓1传媒47,https://u89ey.cdnedge.live/file/avple-images/hls/61d62375f2772f49dcde1d4a/playlist.m3u8
|
||||
🍓1传媒48,https://w9n76.cdnedge.live/file/avple-images/hls/61d622fdf2772f49dcde1d49/playlist.m3u8
|
||||
🍓1传媒49,https://8bb88.cdnedge.live/file/avple-images/hls/61d22e41fc53091229805814/playlist.m3u8
|
||||
🍓1传媒50,https://d862cp.cdnedge.live/file/avple-images/hls/61d22fa9fc53091229805817/playlist.m3u8
|
||||
🍓1传媒51,https://je40u.cdnedge.live/file/avple-images/hls/61d22f33fc53091229805816/playlist.m3u8
|
||||
🍓1传媒52,https://10j99.cdnedge.live/file/avple-images/hls/61d22ef5fc53091229805815/playlist.m3u8
|
||||
🍓1传媒54,https://je40u.cdnedge.live/file/avple-images/hls/61d0c5c98ec5397ce0e2cdea/playlist.m3u8
|
||||
🍓1传媒55,https://je40u.cdnedge.live/file/avple-images/hls/61d0c5518ec5397ce0e2cde9/playlist.m3u8
|
||||
🍓1传媒56,https://zo392.cdnedge.live/file/avple-images/hls/61d0befd8ec5397ce0e2cddd/playlist.m3u8
|
||||
🍓1传媒57,https://10j99.cdnedge.live/file/avple-images/hls/61d0c0298ec5397ce0e2cddf/playlist.m3u8
|
||||
🍓1传媒58,https://1xp60.cdnedge.live/file/avple-images/hls/61d0c3ad8ec5397ce0e2cde7/playlist.m3u8
|
||||
🍓1传媒59,https://8bb88.cdnedge.live/file/avple-images/hls/61d0c0a18ec5397ce0e2cde0/playlist.m3u8
|
||||
🍓1传媒60,https://1xp60.cdnedge.live/file/avple-images/hls/61d0c11a8ec5397ce0e2cde1/playlist.m3u8
|
||||
🍓1传媒61,https://d862cp.cdnedge.live/file/avple-images/hls/61d0c2098ec5397ce0e2cde3/playlist.m3u8
|
||||
🍓1传媒62,https://d862cp.cdnedge.live/file/avple-images/hls/61d0c1918ec5397ce0e2cde2/playlist.m3u8
|
||||
🍓1传媒63,https://q2cyl7.cdnedge.live/file/avple-images/hls/61d0c2f98ec5397ce0e2cde5/playlist.m3u8
|
||||
🍓1传媒64,https://10j99.cdnedge.live/file/avple-images/hls/61d0c3358ec5397ce0e2cde6/playlist.m3u8
|
||||
🍓1传媒65,https://je40u.cdnedge.live/file/avple-images/hls/61d0bfed8ec5397ce0e2cdde/playlist.m3u8
|
||||
🍓1传媒66,https://8bb88.cdnedge.live/file/avple-images/hls/61d0c2bd8ec5397ce0e2cde4/playlist.m3u8
|
||||
🍓1传媒67,https://u89ey.cdnedge.live/file/avple-images/hls/61d0bec18ec5397ce0e2cddc/playlist.m3u8
|
||||
🍓1传媒68,https://q2cyl7.cdnedge.live/file/avple-images/hls/61ce129db418404e15c81307/playlist.m3u8
|
||||
🍓1传媒69,https://8bb88.cdnedge.live/file/avple-images/hls/61ce1315b418404e15c81308/playlist.m3u8
|
||||
🍓1传媒70,https://d862cp.cdnedge.live/file/avple-images/hls/61ce1261b418404e15c81306/playlist.m3u8
|
||||
🍓1传媒71,https://u89ey.cdnedge.live/file/avple-images/hls/61ce1225b418404e15c81305/playlist.m3u8
|
||||
🍓1传媒72,https://u89ey.cdnedge.live/file/avple-images/hls/61ce1171b418404e15c81303/playlist.m3u8
|
||||
🍓1传媒73,https://d862cp.cdnedge.live/file/avple-images/hls/61ce1082b418404e15c81300/playlist.m3u8
|
||||
🍓1传媒74,https://8bb88.cdnedge.live/file/avple-images/hls/61ce10f9b418404e15c81302/playlist.m3u8
|
||||
🍓1传媒75,https://e2fa6.cdnedge.live/file/avple-images/hls/61ce10bdb418404e15c81301/playlist.m3u8
|
||||
🍓1传媒76,https://d862cp.cdnedge.live/file/avple-images/hls/61ce0f55b418404e15c812fe/playlist.m3u8
|
||||
🍓1传媒77,https://je40u.cdnedge.live/file/avple-images/hls/61cc3a95b192e6156087c942/playlist.m3u8
|
||||
🍓1传媒78,https://u89ey.cdnedge.live/file/avple-images/hls/61cc3a1db192e6156087c941/playlist.m3u8
|
||||
🍓1传媒79,https://q2cyl7.cdnedge.live/file/avple-images/hls/61cc39e1b192e6156087c940/playlist.m3u8
|
||||
🍓1传媒80,https://8bb88.cdnedge.live/file/avple-images/hls/61cace99b4a41e7b51c24d4c/playlist.m3u8
|
||||
🍓1传媒81,https://w9n76.cdnedge.live/file/avple-images/hls/61cacfc5b4a41e7b51c24d50/playlist.m3u8
|
||||
🍓1传媒82,https://d862cp.cdnedge.live/file/avple-images/hls/61cacf8ab4a41e7b51c24d4f/playlist.m3u8
|
||||
🍓1传媒83,https://q2cyl7.cdnedge.live/file/avple-images/hls/61cacf4db4a41e7b51c24d4e/playlist.m3u8
|
||||
🍓1传媒84,https://w9n76.cdnedge.live/file/avple-images/hls/61caced5b4a41e7b51c24d4d/playlist.m3u8
|
||||
🍓1传媒85,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c998c287883b68401d1b35/playlist.m3u8
|
||||
🍓1传媒86,https://je40u.cdnedge.live/file/avple-images/hls/61c9980d87883b68401d1b33/playlist.m3u8
|
||||
🍓1传媒87,https://w9n76.cdnedge.live/file/avple-images/hls/61c9984a87883b68401d1b34/playlist.m3u8
|
||||
🍓1传媒88,https://w9n76.cdnedge.live/file/avple-images/hls/61c997d187883b68401d1b32/playlist.m3u8
|
||||
🍓1传媒89,https://zo392.cdnedge.live/file/avple-images/hls/61c84a892beaee4e833a9d6e/playlist.m3u8
|
||||
🍓1传媒90,https://8bb88.cdnedge.live/file/avple-images/hls/61c84bb587883b68401d1b31/playlist.m3u8
|
||||
🍓1传媒92,https://e2fa6.cdnedge.live/file/avple-images/hls/61c847f52beaee4e833a9d68/playlist.m3u8
|
||||
🍓1传媒93,https://8bb88.cdnedge.live/file/avple-images/hls/61c849992beaee4e833a9d6c/playlist.m3u8
|
||||
🍓1传媒94,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c849212beaee4e833a9d6b/playlist.m3u8
|
||||
🍓1传媒95,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c848a92beaee4e833a9d6a/playlist.m3u8
|
||||
🍓1传媒96,https://8bb88.cdnedge.live/file/avple-images/hls/61c843f92beaee4e833a9d66/playlist.m3u8
|
||||
🍓1传媒97,https://e2fa6.cdnedge.live/file/avple-images/hls/61c6b09d668fd93b4250a32d/playlist.m3u8
|
||||
🍓1传媒98,https://1xp60.cdnedge.live/file/avple-images/hls/61c6b026668fd93b4250a32c/playlist.m3u8
|
||||
🍓1传媒99,https://u89ey.cdnedge.live/file/avple-images/hls/61c6ae45668fd93b4250a32a/playlist.m3u8
|
||||
🍓1传媒100,https://q2cyl7.cdnedge.live/file/avple-images/hls/61c6aef9668fd93b4250a32b/playlist.m3u8
|
||||
🍓1传媒101,https://8bb88.cdnedge.live/file/avple-images/hls/61c6aa85668fd93b4250a325/playlist.m3u8
|
||||
🍓1传媒102,https://zo392.cdnedge.live/file/avple-images/hls/61c6abed668fd93b4250a327/playlist.m3u8
|
||||
🍓1传媒103,https://w9n76.cdnedge.live/file/avple-images/hls/61c6aafd668fd93b4250a326/playlist.m3u8
|
||||
🍓1传媒104,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a91d668fd93b4250a321/playlist.m3u8
|
||||
🍓1传媒105,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a95a668fd93b4250a322/playlist.m3u8
|
||||
🍓1传媒106,https://u89ey.cdnedge.live/file/avple-images/hls/61c6a7f1668fd93b4250a320/playlist.m3u8
|
||||
🍓1传媒107,https://je40u.cdnedge.live/file/avple-images/hls/61c6a689668fd93b4250a31d/playlist.m3u8
|
||||
🍓1传媒108,https://e2fa6.cdnedge.live/file/avple-images/hls/61c6a779668fd93b4250a31f/playlist.m3u8
|
||||
🍓1传媒109,https://1xp60.cdnedge.live/file/avple-images/hls/61c6a701668fd93b4250a31e/playlist.m3u8
|
||||
🍓1传媒110,https://u89ey.cdnedge.live/file/avple-images/hls/61c6a612668fd93b4250a31c/playlist.m3u8
|
||||
🍓1传媒111,https://e2fa6.cdnedge.live/file/avple-images/hls/61c6a55e668fd93b4250a31a/playlist.m3u8
|
||||
🍓1传媒112,https://zo392.cdnedge.live/file/avple-images/hls/61c6a599668fd93b4250a31b/playlist.m3u8
|
||||
🍓1传媒113,https://8bb88.cdnedge.live/file/avple-images/hls/61c6a4e5668fd93b4250a319/playlist.m3u8
|
||||
🍓1传媒114,https://d862cp.cdnedge.live/file/avple-images/hls/61c2d009768c0b6e65877056/playlist.m3u8
|
||||
🍓1传媒115,https://je40u.cdnedge.live/file/avple-images/hls/61c2cf19768c0b6e65877054/playlist.m3u8
|
||||
🍓1传媒116,https://1xp60.cdnedge.live/file/avple-images/hls/61c2cedd768c0b6e65877053/playlist.m3u8
|
||||
🍓1传媒117,https://zo392.cdnedge.live/file/avple-images/hls/61c18a7d8ac9db578c18b7f3/playlist.m3u8
|
||||
🍓1传媒118,https://1xp60.cdnedge.live/file/avple-images/hls/61c189518ac9db578c18b7f0/playlist.m3u8
|
||||
🍓1传媒119,https://je40u.cdnedge.live/file/avple-images/hls/61c18a428ac9db578c18b7f2/playlist.m3u8
|
||||
🍓1传媒120,https://d862cp.cdnedge.live/file/avple-images/hls/61c189c98ac9db578c18b7f1/playlist.m3u8
|
||||
🍓1传媒121,https://zo392.cdnedge.live/file/avple-images/hls/61c029c1ad3e743fbb4f96ef/playlist.m3u8
|
||||
🍓1传媒122,https://zo392.cdnedge.live/file/avple-images/hls/61c0290dad3e743fbb4f96ed/playlist.m3u8
|
||||
🍓1传媒123,https://u89ey.cdnedge.live/file/avple-images/hls/61c02a39ad3e743fbb4f96f0/playlist.m3u8
|
||||
🍓1传媒124,https://8bb88.cdnedge.live/file/avple-images/hls/61c02769ad3e743fbb4f96eb/playlist.m3u8
|
||||
🍓1传媒125,https://je40u.cdnedge.live/file/avple-images/hls/61c02985ad3e743fbb4f96ee/playlist.m3u8
|
||||
🍓1传媒126,https://u89ey.cdnedge.live/file/avple-images/hls/61c028d2ad3e743fbb4f96ec/playlist.m3u8
|
||||
🍓1传媒127,https://je40u.cdnedge.live/file/avple-images/hls/61c026f1ad3e743fbb4f96ea/playlist.m3u8
|
||||
🍓1传媒128,https://d862cp.cdnedge.live/file/avple-images/hls/61bd95fe8cc57113d4874847/playlist.m3u8
|
||||
🍓1传媒129,https://w9n76.cdnedge.live/file/avple-images/hls/61bd99098cc57113d487484b/playlist.m3u8
|
||||
🍓1传媒130,https://d862cp.cdnedge.live/file/avple-images/hls/61bd9ae98cc57113d487484c/playlist.m3u8
|
||||
🍓1传媒131,https://10j99.cdnedge.live/file/avple-images/hls/61bd97a28cc57113d487484a/playlist.m3u8
|
||||
🍓1传媒132,https://w9n76.cdnedge.live/file/avple-images/hls/61bd96758cc57113d4874848/playlist.m3u8
|
||||
🍓1传媒133,https://e2fa6.cdnedge.live/file/avple-images/hls/61bd96b28cc57113d4874849/playlist.m3u8
|
||||
🍓1传媒134,https://d862cp.cdnedge.live/file/avple-images/hls/61bd950e8cc57113d4874846/playlist.m3u8
|
||||
🍓1传媒135,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bd94958cc57113d4874845/playlist.m3u8
|
||||
🍓1传媒136,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bc3cfe942b586818e33e80/playlist.m3u8
|
||||
🍓1传媒137,https://q2cyl7.cdnedge.live/file/avple-images/hls/61bc3d3a942b586818e33e81/playlist.m3u8
|
||||
🍓1传媒138,https://zo392.cdnedge.live/file/avple-images/hls/61bad2a5d56b7626e975d4eb/playlist.m3u8
|
||||
🍓1传媒139,https://d862cp.cdnedge.live/file/avple-images/hls/61bad4fdd56b7626e975d4ee/playlist.m3u8
|
||||
🍓1传媒140,https://8bb88.cdnedge.live/file/avple-images/hls/61bad40ed56b7626e975d4ec/playlist.m3u8
|
||||
🍓1传媒141,https://e2fa6.cdnedge.live/file/avple-images/hls/61bad1f1d56b7626e975d4ea/playlist.m3u8
|
||||
🍓1传媒142,https://d862cp.cdnedge.live/file/avple-images/hls/61bad13dd56b7626e975d4e8/playlist.m3u8
|
||||
🍓12传媒01,https://1xp60.cdnedge.live/file/avple-images/hls/61b97d650d486a09e8730583/playlist.m3u8
|
||||
🍓12传媒02,https://1xp60.cdnedge.live/file/avple-images/hls/61b817f997618e5cc644ad44/playlist.m3u8
|
||||
🍓12传媒03,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b8183597618e5cc644ad45/playlist.m3u8
|
||||
🍓12传媒04,https://u89ey.cdnedge.live/file/avple-images/hls/61b8178197618e5cc644ad43/playlist.m3u8
|
||||
🍓12传媒05,https://u89ey.cdnedge.live/file/avple-images/hls/61b816ce97618e5cc644ad42/playlist.m3u8
|
||||
🍓12传媒06,https://d862cp.cdnedge.live/file/avple-images/hls/61b8169197618e5cc644ad41/playlist.m3u8
|
||||
🍓12传媒07,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b6cd091458462c26eadc8c/playlist.m3u8
|
||||
🍓12传媒08,https://8bb88.cdnedge.live/file/avple-images/hls/61b6cccd1458462c26eadc8b/playlist.m3u8
|
||||
🍓12传媒09,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b6cc551458462c26eadc8a/playlist.m3u8
|
||||
🍓12传媒10,https://10j99.cdnedge.live/file/avple-images/hls/61b6c85a1458462c26eadc85/playlist.m3u8
|
||||
🍓12传媒11,https://e2fa6.cdnedge.live/file/avple-images/hls/61b6cc191458462c26eadc89/playlist.m3u8
|
||||
🍓12传媒12,https://w9n76.cdnedge.live/file/avple-images/hls/61b6cba11458462c26eadc88/playlist.m3u8
|
||||
🍓12传媒13,https://u89ey.cdnedge.live/file/avple-images/hls/61b6ca751458462c26eadc86/playlist.m3u8
|
||||
🍓12传媒14,https://8bb88.cdnedge.live/file/avple-images/hls/61b6cb291458462c26eadc87/playlist.m3u8
|
||||
🍓12传媒15,https://8bb88.cdnedge.live/file/avple-images/hls/61accf7e609ef7155b3678df/playlist.m3u8
|
||||
🍓12传媒16,https://1xp60.cdnedge.live/file/avple-images/hls/61b46dc5f91a1b0eecb6e52f/playlist.m3u8
|
||||
🍓12传媒17,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b46f69f91a1b0eecb6e533/playlist.m3u8
|
||||
🍓12传媒18,https://u89ey.cdnedge.live/file/avple-images/hls/61b46fa5f91a1b0eecb6e534/playlist.m3u8
|
||||
🍓12传媒19,https://8bb88.cdnedge.live/file/avple-images/hls/61b46ef1f91a1b0eecb6e532/playlist.m3u8
|
||||
🍓12传媒20,https://zo392.cdnedge.live/file/avple-images/hls/61b46e3ef91a1b0eecb6e530/playlist.m3u8
|
||||
🍓12传媒21,https://je40u.cdnedge.live/file/avple-images/hls/61b46e79f91a1b0eecb6e531/playlist.m3u8
|
||||
🍓12传媒22,https://je40u.cdnedge.live/file/avple-images/hls/61b304210f991b6812b80303/playlist.m3u8
|
||||
🍓12传媒23,https://10j99.cdnedge.live/file/avple-images/hls/61b303a90f991b6812b80302/playlist.m3u8
|
||||
🍓12传媒24,https://1xp60.cdnedge.live/file/avple-images/hls/61b1a2751b15f6408e9320e6/playlist.m3u8
|
||||
🍓12传媒25,https://d862cp.cdnedge.live/file/avple-images/hls/61b1a2391b15f6408e9320e5/playlist.m3u8
|
||||
🍓12传媒26,https://je40u.cdnedge.live/file/avple-images/hls/61b1a1491b15f6408e9320e3/playlist.m3u8
|
||||
🍓12传媒27,https://1xp60.cdnedge.live/file/avple-images/hls/61b0529acb1e9c2565068be8/playlist.m3u8
|
||||
🍓12传媒28,https://e2fa6.cdnedge.live/file/avple-images/hls/61b05311cb1e9c2565068be9/playlist.m3u8
|
||||
🍓12传媒29,https://10j99.cdnedge.live/file/avple-images/hls/61b05222cb1e9c2565068be7/playlist.m3u8
|
||||
🍓12传媒30,https://1xp60.cdnedge.live/file/avple-images/hls/61b05131cb1e9c2565068be5/playlist.m3u8
|
||||
🍓12传媒31,https://q2cyl7.cdnedge.live/file/avple-images/hls/61b051aacb1e9c2565068be6/playlist.m3u8
|
||||
🍓12传媒32,https://u89ey.cdnedge.live/file/avple-images/hls/61aea3d102275f78f19d8f2c/playlist.m3u8
|
||||
🍓12传媒33,https://w9n76.cdnedge.live/file/avple-images/hls/61aea35902275f78f19d8f2b/playlist.m3u8
|
||||
🍓12传媒34,https://10j99.cdnedge.live/file/avple-images/hls/61aea31d02275f78f19d8f2a/playlist.m3u8
|
||||
🍓12传媒35,https://d862cp.cdnedge.live/file/avple-images/hls/61adb9e9779a324ef83699c3/playlist.m3u8
|
||||
🍓12传媒36,https://u89ey.cdnedge.live/file/avple-images/hls/61adba9d779a324ef83699c5/playlist.m3u8
|
||||
🍓12传媒37,https://e2fa6.cdnedge.live/file/avple-images/hls/61adba25779a324ef83699c4/playlist.m3u8
|
||||
🍓12传媒38,https://u89ey.cdnedge.live/file/avple-images/hls/61accd47779a324ef83699bf/playlist.m3u8
|
||||
🍓12传媒39,https://q2cyl7.cdnedge.live/file/avple-images/hls/61accd46779a324ef83699bd/playlist.m3u8
|
||||
🍓12传媒40,https://10j99.cdnedge.live/file/avple-images/hls/61accd43779a324ef83699b9/playlist.m3u8
|
||||
🍓12传媒41,https://e2fa6.cdnedge.live/file/avple-images/hls/61accd44779a324ef83699bb/playlist.m3u8
|
||||
🍓12传媒42,https://e2fa6.cdnedge.live/file/avple-images/hls/61accd41779a324ef83699b7/playlist.m3u8
|
||||
🍓12传媒43,https://e2fa6.cdnedge.live/file/avple-images/hls/61accd3d779a324ef83699b1/playlist.m3u8
|
||||
🍓12传媒44,https://zo392.cdnedge.live/file/avple-images/hls/61accd3b779a324ef83699ae/playlist.m3u8
|
||||
🍓12传媒45,https://w9n76.cdnedge.live/file/avple-images/hls/61accd3a779a324ef83699ab/playlist.m3u8
|
||||
🍓12传媒46,https://8bb88.cdnedge.live/file/avple-images/hls/61accd38779a324ef83699a9/playlist.m3u8
|
||||
🍓12传媒47,https://zo392.cdnedge.live/file/avple-images/hls/61accd33779a324ef83699a3/playlist.m3u8
|
||||
🍓12传媒48,https://zo392.cdnedge.live/file/avple-images/hls/61accd37779a324ef83699a7/playlist.m3u8
|
||||
🍓12传媒49,https://10j99.cdnedge.live/file/avple-images/hls/61accd35779a324ef83699a5/playlist.m3u8
|
||||
🍓12传媒50,https://e2fa6.cdnedge.live/file/avple-images/hls/61accd32779a324ef83699a0/playlist.m3u8
|
||||
🍓12传媒51,https://e2fa6.cdnedge.live/file/avple-images/hls/61a940fd0791fe25b65cea19/playlist.m3u8
|
||||
🍓12传媒52,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a940c10791fe25b65cea18/playlist.m3u8
|
||||
🍓12传媒53,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a940490791fe25b65cea17/playlist.m3u8
|
||||
🍓12传媒54,https://10j99.cdnedge.live/file/avple-images/hls/61a7d5797aac5d7ef57bda25/playlist.m3u8
|
||||
🍓12传媒55,https://u89ey.cdnedge.live/file/avple-images/hls/61a7d53d7aac5d7ef57bda24/playlist.m3u8
|
||||
🍓12传媒56,https://je40u.cdnedge.live/file/avple-images/hls/61a7d4c57aac5d7ef57bda23/playlist.m3u8
|
||||
🍓12传媒57,https://e2fa6.cdnedge.live/file/avple-images/hls/61a7d4117aac5d7ef57bda22/playlist.m3u8
|
||||
🍓12传媒58,https://e2fa6.cdnedge.live/file/avple-images/hls/61a7d3d57aac5d7ef57bda21/playlist.m3u8
|
||||
🍓12传媒59,https://d862cp.cdnedge.live/file/avple-images/hls/61a67c79a04cdb55de21fe92/playlist.m3u8
|
||||
🍓12传媒60,https://e2fa6.cdnedge.live/file/avple-images/hls/61a67da5a04cdb55de21fe94/playlist.m3u8
|
||||
🍓12传媒61,https://je40u.cdnedge.live/file/avple-images/hls/61a67d2da04cdb55de21fe93/playlist.m3u8
|
||||
🍓12传媒62,https://10j99.cdnedge.live/file/avple-images/hls/61a52775a992bd3d5c3eb620/playlist.m3u8
|
||||
🍓12传媒63,https://u89ey.cdnedge.live/file/avple-images/hls/61a526c1a992bd3d5c3eb61e/playlist.m3u8
|
||||
🍓12传媒64,https://10j99.cdnedge.live/file/avple-images/hls/61a526fda992bd3d5c3eb61f/playlist.m3u8
|
||||
🍓12传媒65,https://8bb88.cdnedge.live/file/avple-images/hls/61a52649a992bd3d5c3eb61d/playlist.m3u8
|
||||
🍓12传媒66,https://10j99.cdnedge.live/file/avple-images/hls/61a5260da992bd3d5c3eb61c/playlist.m3u8
|
||||
🍓12传媒67,https://d862cp.cdnedge.live/file/avple-images/hls/61a52595a992bd3d5c3eb61b/playlist.m3u8
|
||||
🍓12传媒68,https://je40u.cdnedge.live/file/avple-images/hls/61a52379a992bd3d5c3eb618/playlist.m3u8
|
||||
🍓12传媒69,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a5251da992bd3d5c3eb61a/playlist.m3u8
|
||||
🍓12传媒70,https://1xp60.cdnedge.live/file/avple-images/hls/61a523f1a992bd3d5c3eb619/playlist.m3u8
|
||||
🍓12传媒71,https://w9n76.cdnedge.live/file/avple-images/hls/61a28a15c4f43c7ba5009c2a/playlist.m3u8
|
||||
🍓12传媒72,https://1xp60.cdnedge.live/file/avple-images/hls/61a289d9c4f43c7ba5009c29/playlist.m3u8
|
||||
🍓12传媒73,https://10j99.cdnedge.live/file/avple-images/hls/61a288adc4f43c7ba5009c27/playlist.m3u8
|
||||
🍓12传媒74,https://e2fa6.cdnedge.live/file/avple-images/hls/61a28961c4f43c7ba5009c28/playlist.m3u8
|
||||
🍓12传媒75,https://d862cp.cdnedge.live/file/avple-images/hls/61a28828fe8a567bb90ec280/playlist.m3u8
|
||||
🍓12传媒76,https://e2fa6.cdnedge.live/file/avple-images/hls/61a28745c4f43c7ba5009c24/playlist.m3u8
|
||||
🍓12传媒77,https://q2cyl7.cdnedge.live/file/avple-images/hls/61a287f9c4f43c7ba5009c26/playlist.m3u8
|
||||
🍓12传媒78,https://zo392.cdnedge.live/file/avple-images/hls/61a287bec4f43c7ba5009c25/playlist.m3u8
|
||||
🍓12传媒79,https://je40u.cdnedge.live/file/avple-images/hls/61a28691c4f43c7ba5009c23/playlist.m3u8
|
||||
🍓12传媒80,https://je40u.cdnedge.live/file/avple-images/hls/61a285a1c4f43c7ba5009c21/playlist.m3u8
|
||||
🍓12传媒81,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e9213006a4603929a393/playlist.m3u8
|
||||
🍓12传媒82,https://1xp60.cdnedge.live/file/avple-images/hls/61a0e86d3006a4603929a391/playlist.m3u8
|
||||
🍓12传媒83,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e8e53006a4603929a392/playlist.m3u8
|
||||
🍓12传媒84,https://u89ey.cdnedge.live/file/avple-images/hls/61a0e7f53006a4603929a390/playlist.m3u8
|
||||
🍓12传媒85,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e6ca3006a4603929a38d/playlist.m3u8
|
||||
🍓12传媒86,https://d862cp.cdnedge.live/file/avple-images/hls/61a0e77d3006a4603929a38f/playlist.m3u8
|
||||
🍓12传媒87,https://u89ey.cdnedge.live/file/avple-images/hls/61a0e7053006a4603929a38e/playlist.m3u8
|
||||
🍓12传媒88,https://1xp60.cdnedge.live/file/avple-images/hls/619e96fd364f6c1f6030fe59/playlist.m3u8
|
||||
🍓12传媒89,https://d862cp.cdnedge.live/file/avple-images/hls/619e96c1364f6c1f6030fe58/playlist.m3u8
|
||||
🍓12传媒90,https://je40u.cdnedge.live/file/avple-images/hls/619e9595364f6c1f6030fe55/playlist.m3u8
|
||||
🍓12传媒92,https://8bb88.cdnedge.live/file/avple-images/hls/619e95d1364f6c1f6030fe56/playlist.m3u8
|
||||
🍓12传媒93,https://u89ey.cdnedge.live/file/avple-images/hls/619d55a944b3af0456c438aa/playlist.m3u8
|
||||
🍓12传媒94,https://10j99.cdnedge.live/file/avple-images/hls/619d54f544b3af0456c438a8/playlist.m3u8
|
||||
🍓12传媒95,https://q2cyl7.cdnedge.live/file/avple-images/hls/619d547d44b3af0456c438a7/playlist.m3u8
|
||||
🍓12传媒96,https://8bb88.cdnedge.live/file/avple-images/hls/619c0375f0d6ad68f95a08ac/playlist.m3u8
|
||||
🍓12传媒97,https://je40u.cdnedge.live/file/avple-images/hls/619c024af0d6ad68f95a08a9/playlist.m3u8
|
||||
🍓12传媒98,https://8bb88.cdnedge.live/file/avple-images/hls/619c02fdf0d6ad68f95a08ab/playlist.m3u8
|
||||
🍓12传媒99,https://q2cyl7.cdnedge.live/file/avple-images/hls/619c0286f0d6ad68f95a08aa/playlist.m3u8
|
||||
🍓12传媒100,https://zo392.cdnedge.live/file/avple-images/hls/619c01d1f0d6ad68f95a08a8/playlist.m3u8
|
||||
🍓12传媒101,https://q2cyl7.cdnedge.live/file/avple-images/hls/619a42298a9163545f3c8174/playlist.m3u8
|
||||
🍓12传媒102,https://10j99.cdnedge.live/file/avple-images/hls/619a42a28a9163545f3c8175/playlist.m3u8
|
||||
🍓12传媒103,https://d862cp.cdnedge.live/file/avple-images/hls/619a41ed8a9163545f3c8173/playlist.m3u8
|
||||
🍓12传媒104,https://d862cp.cdnedge.live/file/avple-images/hls/619951b14a94103a79bc9486/playlist.m3u8
|
||||
🍓12传媒105,https://e2fa6.cdnedge.live/file/avple-images/hls/619952654a94103a79bc9488/playlist.m3u8
|
||||
🍓12传媒106,https://w9n76.cdnedge.live/file/avple-images/hls/619952294a94103a79bc9487/playlist.m3u8
|
||||
🍓12传媒107,https://10j99.cdnedge.live/file/avple-images/hls/6199513a4a94103a79bc9485/playlist.m3u8
|
||||
🍓12传媒108,https://w9n76.cdnedge.live/file/avple-images/hls/6199500d4a94103a79bc9484/playlist.m3u8
|
||||
🍓12传媒109,https://u89ey.cdnedge.live/file/avple-images/hls/61994f954a94103a79bc9483/playlist.m3u8
|
||||
🍓12传媒110,https://u89ey.cdnedge.live/file/avple-images/hls/61994f884b40d33a86618952/playlist.m3u8
|
||||
🍓12传媒111,https://je40u.cdnedge.live/file/avple-images/hls/61994e2d4a94103a79bc9481/playlist.m3u8
|
||||
🍓12传媒112,https://8bb88.cdnedge.live/file/avple-images/hls/6197fbbdf1d93a199d1cf17b/playlist.m3u8
|
||||
🍓12传媒113,https://e2fa6.cdnedge.live/file/avple-images/hls/6197af56f1d93a199d1cf17a/playlist.m3u8
|
||||
🍓12传媒114,https://zo392.cdnedge.live/file/avple-images/hls/6197abd1f1d93a199d1cf176/playlist.m3u8
|
||||
🍓12传媒115,https://e2fa6.cdnedge.live/file/avple-images/hls/6197acc2f1d93a199d1cf179/playlist.m3u8
|
||||
🍓12传媒116,https://10j99.cdnedge.live/file/avple-images/hls/6197ac85f1d93a199d1cf178/playlist.m3u8
|
||||
🍓12传媒117,https://8bb88.cdnedge.live/file/avple-images/hls/6197ac0df1d93a199d1cf177/playlist.m3u8
|
||||
🍓12传媒118,https://w9n76.cdnedge.live/file/avple-images/hls/6197ab1df1d93a199d1cf175/playlist.m3u8
|
||||
🍓12传媒119,https://10j99.cdnedge.live/file/avple-images/hls/6197aaa5f1d93a199d1cf174/playlist.m3u8
|
||||
🍓12传媒120,https://10j99.cdnedge.live/file/avple-images/hls/6196ae3a647fa6021841bd52/playlist.m3u8
|
||||
🍓12传媒121,https://je40u.cdnedge.live/file/avple-images/hls/619655a1647fa6021841bd51/playlist.m3u8
|
||||
🍓12传媒123,https://je40u.cdnedge.live/file/avple-images/hls/619654b1647fa6021841bd4f/playlist.m3u8
|
||||
🍓12传媒124,https://8bb88.cdnedge.live/file/avple-images/hls/619508d2416cf262e9444a28/playlist.m3u8
|
||||
🍓12传媒125,https://w9n76.cdnedge.live/file/avple-images/hls/6195090d416cf262e9444a2a/playlist.m3u8
|
||||
🍓12传媒126,https://zo392.cdnedge.live/file/avple-images/hls/6193bcf11ab2cd467ae5359d/playlist.m3u8
|
||||
🍓12传媒127,https://8bb88.cdnedge.live/file/avple-images/hls/6193bc011ab2cd467ae5359b/playlist.m3u8
|
||||
🍓12传媒129,https://10j99.cdnedge.live/file/avple-images/hls/6193bb891ab2cd467ae5359a/playlist.m3u8
|
||||
🍓12传媒130,https://1xp60.cdnedge.live/file/avple-images/hls/6193ba5e1ab2cd467ae53598/playlist.m3u8
|
||||
🍓12传媒131,https://je40u.cdnedge.live/file/avple-images/hls/6193b9e61ab2cd467ae53597/playlist.m3u8
|
||||
🍓12传媒132,https://8bb88.cdnedge.live/file/avple-images/hls/6193b96d1ab2cd467ae53596/playlist.m3u8
|
||||
🍓12传媒133,https://q2cyl7.cdnedge.live/file/avple-images/hls/6192bae589e9d231c0a0b0e8/playlist.m3u8
|
||||
🍓12传媒134,https://q2cyl7.cdnedge.live/file/avple-images/hls/61924e2689e9d231c0a0b0e7/playlist.m3u8
|
||||
🍓12传媒135,https://1xp60.cdnedge.live/file/avple-images/hls/61924c8189e9d231c0a0b0e4/playlist.m3u8
|
||||
🍓12传媒136,https://zo392.cdnedge.live/file/avple-images/hls/61924dad89e9d231c0a0b0e6/playlist.m3u8
|
||||
🍓12传媒137,https://1xp60.cdnedge.live/file/avple-images/hls/6190bb413e002b78fa02b874/playlist.m3u8
|
||||
🍓12传媒138,https://10j99.cdnedge.live/file/avple-images/hls/6190b9d93e002b78fa02b871/playlist.m3u8
|
||||
🍓12传媒139,https://je40u.cdnedge.live/file/avple-images/hls/6190bac93e002b78fa02b873/playlist.m3u8
|
||||
🍓12传媒140,https://zo392.cdnedge.live/file/avple-images/hls/6190ba513e002b78fa02b872/playlist.m3u8
|
||||
🍓12传媒141,https://q2cyl7.cdnedge.live/file/avple-images/hls/6190b9613e002b78fa02b870/playlist.m3u8
|
||||
🍓12传媒142,https://e2fa6.cdnedge.live/file/avple-images/hls/6190b8713e002b78fa02b86f/playlist.m3u8
|
||||
🍓12传媒143,https://e2fa6.cdnedge.live/file/avple-images/hls/6190b7f93e002b78fa02b86d/playlist.m3u8
|
||||
🍓12传媒144,https://u89ey.cdnedge.live/file/avple-images/hls/6190b8353e002b78fa02b86e/playlist.m3u8
|
||||
🍓12传媒145,https://d862cp.cdnedge.live/file/avple-images/hls/6190b7813e002b78fa02b86c/playlist.m3u8
|
||||
🍓12传媒146,https://e2fa6.cdnedge.live/file/avple-images/hls/6190b7eed11a877902683210/playlist.m3u8
|
||||
🍓12传媒147,https://1xp60.cdnedge.live/file/avple-images/hls/6190b6913e002b78fa02b86a/playlist.m3u8
|
||||
🍓12传媒148,https://u89ey.cdnedge.live/file/avple-images/hls/6190b7093e002b78fa02b86b/playlist.m3u8
|
||||
🍓12传媒149,https://w9n76.cdnedge.live/file/avple-images/hls/618e69d1f061a16282b2ee9b/playlist.m3u8
|
||||
🍓12传媒150,https://8bb88.cdnedge.live/file/avple-images/hls/618e691df061a16282b2ee99/playlist.m3u8
|
||||
🍓12传媒151,https://je40u.cdnedge.live/file/avple-images/hls/618e6959f061a16282b2ee9a/playlist.m3u8
|
||||
🍓12传媒152,https://w9n76.cdnedge.live/file/avple-images/hls/618e686af061a16282b2ee97/playlist.m3u8
|
||||
🍓12传媒153,https://10j99.cdnedge.live/file/avple-images/hls/618e68e1f061a16282b2ee98/playlist.m3u8
|
||||
🍓12传媒154,https://1xp60.cdnedge.live/file/avple-images/hls/618d1ae5608a75437203be00/playlist.m3u8
|
||||
🍓12传媒155,https://zo392.cdnedge.live/file/avple-images/hls/618d1e30608a75437203be02/playlist.m3u8
|
||||
🍓12传媒156,https://8bb88.cdnedge.live/file/avple-images/hls/618d1df1608a75437203be01/playlist.m3u8
|
||||
🍓12传媒157,https://zo392.cdnedge.live/file/avple-images/hls/618d1a6d608a75437203bdff/playlist.m3u8
|
||||
🍓12传媒158,https://8bb88.cdnedge.live/file/avple-images/hls/618d1a31608a75437203bdfe/playlist.m3u8
|
||||
🍓12传媒159,https://1xp60.cdnedge.live/file/avple-images/hls/618b9a8552fe307992e91593/playlist.m3u8
|
||||
🍓12传媒160,https://w9n76.cdnedge.live/file/avple-images/hls/618b9a4952fe307992e91592/playlist.m3u8
|
||||
🍓12传媒161,https://q2cyl7.cdnedge.live/file/avple-images/hls/618b999552fe307992e91590/playlist.m3u8
|
||||
🍓12传媒162,https://u89ey.cdnedge.live/file/avple-images/hls/618b98a552fe307992e9158e/playlist.m3u8
|
||||
🍓12传媒163,https://je40u.cdnedge.live/file/avple-images/hls/618b991e52fe307992e9158f/playlist.m3u8
|
||||
🍓12传媒164,https://u89ey.cdnedge.live/file/avple-images/hls/618b973d52fe307992e9158a/playlist.m3u8
|
||||
🍓12传媒165,https://d862cp.cdnedge.live/file/avple-images/hls/618b97b552fe307992e9158b/playlist.m3u8
|
||||
🍓12传媒166,https://e2fa6.cdnedge.live/file/avple-images/hls/618b96c552fe307992e91589/playlist.m3u8
|
||||
🍓12传媒167,https://zo392.cdnedge.live/file/avple-images/hls/61892cf535829357ea3d3e9c/playlist.m3u8
|
||||
🍓12传媒168,https://q2cyl7.cdnedge.live/file/avple-images/hls/61892bc935829357ea3d3e99/playlist.m3u8
|
||||
🍓12传媒169,https://w9n76.cdnedge.live/file/avple-images/hls/61892c7d35829357ea3d3e9b/playlist.m3u8
|
||||
🍓12传媒170,https://e2fa6.cdnedge.live/file/avple-images/hls/61892c4135829357ea3d3e9a/playlist.m3u8
|
||||
🍓12传媒171,https://je40u.cdnedge.live/file/avple-images/hls/61869e1d8928100853d28995/playlist.m3u8
|
||||
🍓12传媒172,https://q2cyl7.cdnedge.live/file/avple-images/hls/61869c018928100853d28991/playlist.m3u8
|
||||
🍓12传媒173,https://zo392.cdnedge.live/file/avple-images/hls/61869cb58928100853d28992/playlist.m3u8
|
||||
🍓12传媒174,https://e2fa6.cdnedge.live/file/avple-images/hls/61869d2d8928100853d28993/playlist.m3u8
|
||||
🍓12传媒175,https://u89ey.cdnedge.live/file/avple-images/hls/61869da58928100853d28994/playlist.m3u8
|
||||
🍓12传媒176,https://8bb88.cdnedge.live/file/avple-images/hls/618627fd26bdd144b598cbda/playlist.m3u8
|
||||
🍓12传媒177,https://je40u.cdnedge.live/file/avple-images/hls/6186261e26bdd144b598cbd6/playlist.m3u8
|
||||
🍓12传媒178,https://je40u.cdnedge.live/file/avple-images/hls/6186274926bdd144b598cbd9/playlist.m3u8
|
||||
🍓12传媒179,https://10j99.cdnedge.live/file/avple-images/hls/6186265a26bdd144b598cbd7/playlist.m3u8
|
||||
🍓12传媒180,https://1xp60.cdnedge.live/file/avple-images/hls/618626d126bdd144b598cbd8/playlist.m3u8
|
||||
🍓12传媒181,https://10j99.cdnedge.live/file/avple-images/hls/6186240126bdd144b598cbd2/playlist.m3u8
|
||||
🍓12传媒182,https://u89ey.cdnedge.live/file/avple-images/hls/618624f126bdd144b598cbd4/playlist.m3u8
|
||||
🍓12传媒183,https://q2cyl7.cdnedge.live/file/avple-images/hls/618624b526bdd144b598cbd3/playlist.m3u8
|
||||
🍓12传媒184,https://je40u.cdnedge.live/file/avple-images/hls/618463a6fddb3b0ce1f32687/playlist.m3u8
|
||||
🍓12传媒185,https://zo392.cdnedge.live/file/avple-images/hls/618462f1fddb3b0ce1f32685/playlist.m3u8
|
||||
🍓12传媒186,https://1xp60.cdnedge.live/file/avple-images/hls/61846369fddb3b0ce1f32686/playlist.m3u8
|
||||
🍓12传媒187,https://u89ey.cdnedge.live/file/avple-images/hls/61846279fddb3b0ce1f32684/playlist.m3u8
|
||||
🍓12传媒188,https://1xp60.cdnedge.live/file/avple-images/hls/6184614dfddb3b0ce1f32681/playlist.m3u8
|
||||
🍓12传媒189,https://q2cyl7.cdnedge.live/file/avple-images/hls/61846201fddb3b0ce1f32683/playlist.m3u8
|
||||
🍓12传媒190,https://w9n76.cdnedge.live/file/avple-images/hls/61846189fddb3b0ce1f32682/playlist.m3u8
|
||||
🍓12传媒192,https://zo392.cdnedge.live/file/avple-images/hls/6183363d86d3713512d4ddb0/playlist.m3u8
|
||||
🍓12传媒193,https://d862cp.cdnedge.live/file/avple-images/hls/618336b586d3713512d4ddb1/playlist.m3u8
|
||||
🍓12传媒194,https://e2fa6.cdnedge.live/file/avple-images/hls/618335c586d3713512d4ddaf/playlist.m3u8
|
||||
🍓12传媒195,https://10j99.cdnedge.live/file/avple-images/hls/6183345d86d3713512d4ddac/playlist.m3u8
|
||||
🍓12传媒196,https://je40u.cdnedge.live/file/avple-images/hls/6183354d86d3713512d4ddae/playlist.m3u8
|
||||
🍓12传媒197,https://w9n76.cdnedge.live/file/avple-images/hls/618334d586d3713512d4ddad/playlist.m3u8
|
||||
🍓12传媒198,https://u89ey.cdnedge.live/file/avple-images/hls/6183333186d3713512d4ddaa/playlist.m3u8
|
||||
🍓12传媒199,https://8bb88.cdnedge.live/file/avple-images/hls/618074134d383b66797a6982/playlist.m3u8
|
||||
🍓12传媒200,https://u89ey.cdnedge.live/file/avple-images/hls/618073224d383b66797a6981/playlist.m3u8
|
||||
🍓12传媒201,https://e2fa6.cdnedge.live/file/avple-images/hls/618072314d383b66797a6980/playlist.m3u8
|
||||
🍓12传媒202,https://d862cp.cdnedge.live/file/avple-images/hls/618071b94d383b66797a697f/playlist.m3u8
|
||||
🍓12传媒203,https://10j99.cdnedge.live/file/avple-images/hls/618071054d383b66797a697e/playlist.m3u8
|
||||
🍓12传媒204,https://8bb88.cdnedge.live/file/avple-images/hls/618070514d383b66797a697c/playlist.m3u8
|
||||
🍓12传媒205,https://je40u.cdnedge.live/file/avple-images/hls/61806fda4d383b66797a697b/playlist.m3u8
|
||||
🍓12传媒206,https://q2cyl7.cdnedge.live/file/avple-images/hls/61806f254d383b66797a697a/playlist.m3u8
|
||||
🍓12传媒207,https://zo392.cdnedge.live/file/avple-images/hls/617e2e88928f5924a8a3069d/playlist.m3u8
|
||||
🍓12传媒208,https://10j99.cdnedge.live/file/avple-images/hls/617e28f5eb87aa24a1c41030/playlist.m3u8
|
||||
🍓12传媒209,https://e2fa6.cdnedge.live/file/avple-images/hls/617e287deb87aa24a1c4102f/playlist.m3u8
|
||||
🍓12传媒210,https://zo392.cdnedge.live/file/avple-images/hls/617e2805eb87aa24a1c4102e/playlist.m3u8
|
||||
🍓12传媒211,https://je40u.cdnedge.live/file/avple-images/hls/617e2716eb87aa24a1c4102c/playlist.m3u8
|
||||
🍓12传媒212,https://d862cp.cdnedge.live/file/avple-images/hls/617e2661eb87aa24a1c4102b/playlist.m3u8
|
||||
🍓12传媒213,https://zo392.cdnedge.live/file/avple-images/hls/617e2625eb87aa24a1c4102a/playlist.m3u8
|
||||
🍓12传媒214,https://q2cyl7.cdnedge.live/file/avple-images/hls/617c5219f0db60036839e950/playlist.m3u8
|
||||
🍓12传媒215,https://e2fa6.cdnedge.live/file/avple-images/hls/617c51a1f0db60036839e94f/playlist.m3u8
|
||||
🍓12传媒216,https://w9n76.cdnedge.live/file/avple-images/hls/617c5165f0db60036839e94e/playlist.m3u8
|
||||
🍓12传媒217,https://je40u.cdnedge.live/file/avple-images/hls/617c50edf0db60036839e94d/playlist.m3u8
|
||||
🍓12传媒218,https://8bb88.cdnedge.live/file/avple-images/hls/617c5075f0db60036839e94c/playlist.m3u8
|
||||
🍓12传媒219,https://q2cyl7.cdnedge.live/file/avple-images/hls/617c4ffdf0db60036839e94b/playlist.m3u8
|
||||
🍓12传媒220,https://u89ey.cdnedge.live/file/avple-images/hls/617c4f85f0db60036839e94a/playlist.m3u8
|
||||
🍓12传媒221,https://d862cp.cdnedge.live/file/avple-images/hls/617c4ed1f0db60036839e949/playlist.m3u8
|
||||
🍓12传媒222,https://8bb88.cdnedge.live/file/avple-images/hls/617c4e59f0db60036839e948/playlist.m3u8
|
||||
🍓12传媒223,https://je40u.cdnedge.live/file/avple-images/hls/617c4e1df0db60036839e947/playlist.m3u8
|
||||
🍓12传媒224,https://8bb88.cdnedge.live/file/avple-images/hls/617c4da5f0db60036839e946/playlist.m3u8
|
||||
🍓12传媒225,https://u89ey.cdnedge.live/file/avple-images/hls/617c4d69f0db60036839e945/playlist.m3u8
|
||||
🍓12传媒226,https://u89ey.cdnedge.live/file/avple-images/hls/617c4cf1f0db60036839e944/playlist.m3u8
|
||||
🍓12传媒227,https://e2fa6.cdnedge.live/file/avple-images/hls/617a051e933dae5425d49b90/playlist.m3u8
|
||||
🍓12传媒228,https://q2cyl7.cdnedge.live/file/avple-images/hls/617a04a5933dae5425d49b8f/playlist.m3u8
|
||||
🍓12传媒229,https://d862cp.cdnedge.live/file/avple-images/hls/617a0469933dae5425d49b8e/playlist.m3u8
|
||||
🍓12传媒230,https://q2cyl7.cdnedge.live/file/avple-images/hls/617a033d933dae5425d49b8c/playlist.m3u8
|
||||
🍓12传媒231,https://e2fa6.cdnedge.live/file/avple-images/hls/617837656275b513e05eef0c/playlist.m3u8
|
||||
🍓12传媒232,https://u89ey.cdnedge.live/file/avple-images/hls/617836ed6275b513e05eef0b/playlist.m3u8
|
||||
🍓12传媒233,https://d862cp.cdnedge.live/file/avple-images/hls/617835fd6275b513e05eef0a/playlist.m3u8
|
||||
🍓12传媒234,https://je40u.cdnedge.live/file/avple-images/hls/617789ac4835757d4271a1ec/playlist.m3u8
|
||||
🍓12传媒235,https://e2fa6.cdnedge.live/file/avple-images/hls/6177207dad20e84f6e46a0b2/playlist.m3u8
|
||||
🍓12传媒236,https://zo392.cdnedge.live/file/avple-images/hls/61772041ad20e84f6e46a0b1/playlist.m3u8
|
||||
🍓12传媒237,https://8bb88.cdnedge.live/file/avple-images/hls/61772005ad20e84f6e46a0b0/playlist.m3u8
|
||||
🍓12传媒238,https://u89ey.cdnedge.live/file/avple-images/hls/61771f8dad20e84f6e46a0af/playlist.m3u8
|
||||
🍓12传媒239,https://8bb88.cdnedge.live/file/avple-images/hls/61771ed9ad20e84f6e46a0ae/playlist.m3u8
|
||||
🍓12传媒240,https://u89ey.cdnedge.live/file/avple-images/hls/61771e9dad20e84f6e46a0ad/playlist.m3u8
|
||||
🍓12传媒241,https://e2fa6.cdnedge.live/file/avple-images/hls/61771e25ad20e84f6e46a0ac/playlist.m3u8
|
||||
🍓12传媒242,https://10j99.cdnedge.live/file/avple-images/hls/61771dadad20e84f6e46a0ab/playlist.m3u8
|
||||
🍓12传媒243,https://e2fa6.cdnedge.live/file/avple-images/hls/61771d35ad20e84f6e46a0aa/playlist.m3u8
|
||||
🍓12传媒244,https://w9n76.cdnedge.live/file/avple-images/hls/61771cbdad20e84f6e46a0a9/playlist.m3u8
|
||||
🍓12传媒245,https://q2cyl7.cdnedge.live/file/avple-images/hls/61771c09ad20e84f6e46a0a8/playlist.m3u8
|
||||
🍓12传媒246,https://u89ey.cdnedge.live/file/avple-images/hls/61771b91ad20e84f6e46a0a7/playlist.m3u8
|
||||
🍓12传媒247,https://je40u.cdnedge.live/file/avple-images/hls/61771a65ad20e84f6e46a0a5/playlist.m3u8
|
||||
🍓12传媒248,https://8bb88.cdnedge.live/file/avple-images/hls/61730c5916713849c8fc4709/playlist.m3u8
|
||||
🍓12传媒249,https://zo392.cdnedge.live/file/avple-images/hls/61730be116713849c8fc4708/playlist.m3u8
|
||||
🍓12传媒250,https://8bb88.cdnedge.live/file/avple-images/hls/61730ba516713849c8fc4707/playlist.m3u8
|
||||
🍓12传媒251,https://d862cp.cdnedge.live/file/avple-images/hls/61730a0116713849c8fc4706/playlist.m3u8
|
||||
🍓12传媒252,https://1xp60.cdnedge.live/file/avple-images/hls/6173098916713849c8fc4705/playlist.m3u8
|
||||
🍓12传媒253,https://10j99.cdnedge.live/file/avple-images/hls/6173094d16713849c8fc4704/playlist.m3u8
|
||||
🍓12传媒254,https://je40u.cdnedge.live/file/avple-images/hls/6173085d16713849c8fc4703/playlist.m3u8
|
||||
🍓11传媒01,https://10j99.cdnedge.live/file/avple-images/hls/6171a981f8003d17dfd1a739/playlist.m3u8
|
||||
🍓11传媒02,https://1xp60.cdnedge.live/file/avple-images/hls/6171a909f8003d17dfd1a738/playlist.m3u8
|
||||
🍓11传媒03,https://je40u.cdnedge.live/file/avple-images/hls/6171a891f8003d17dfd1a737/playlist.m3u8
|
||||
🍓11传媒04,https://w9n76.cdnedge.live/file/avple-images/hls/6171a855f8003d17dfd1a736/playlist.m3u8
|
||||
🍓11传媒05,https://8bb88.cdnedge.live/file/avple-images/hls/6171a7ddf8003d17dfd1a735/playlist.m3u8
|
||||
🍓11传媒06,https://d862cp.cdnedge.live/file/avple-images/hls/61703f29bc5c965ae4f56248/playlist.m3u8
|
||||
🍓11传媒07,https://10j99.cdnedge.live/file/avple-images/hls/61703f29bc5c965ae4f56248/playlist.m3u8
|
||||
🍓11传媒08,https://je40u.cdnedge.live/file/avple-images/hls/61703eedbc5c965ae4f56247/playlist.m3u8
|
||||
🍓11传媒09,https://e2fa6.cdnedge.live/file/avple-images/hls/61703dc1bc5c965ae4f56245/playlist.m3u8
|
||||
🍓11传媒10,https://u89ey.cdnedge.live/file/avple-images/hls/616f1059d8538c2d9f2164a0/playlist.m3u8
|
||||
🍓11传媒11,https://47b61.cdnedge.live/file/avple-images/hls/616f0fe1d8538c2d9f21649f/playlist.m3u8
|
||||
🍓11传媒12,https://e2fa6.cdnedge.live/file/avple-images/hls/616f0fa5d8538c2d9f21649e/playlist.m3u8
|
||||
🍓11传媒13,https://1xp60.cdnedge.live/file/avple-images/hls/616d88f2a1a4d6090d670cf2/playlist.m3u8
|
||||
🍓11传媒14,https://47b61.cdnedge.live/file/avple-images/hls/616d88b5a1a4d6090d670cf1/playlist.m3u8
|
||||
🍓11传媒15,https://je40u.cdnedge.live/file/avple-images/hls/616d883da1a4d6090d670cf0/playlist.m3u8
|
||||
🍓11传媒16,https://w9n76.cdnedge.live/file/avple-images/hls/616d87c6a1a4d6090d670cef/playlist.m3u8
|
||||
🍓11传媒17,https://8bb88.cdnedge.live/file/avple-images/hls/616b08ddcd55b923abce18c7/playlist.m3u8
|
||||
🍓11传媒18,https://je40u.cdnedge.live/file/avple-images/hls/616b0865cd55b923abce18c6/playlist.m3u8
|
||||
🍓11传媒19,https://u89ey.cdnedge.live/file/avple-images/hls/616b0829cd55b923abce18c5/playlist.m3u8
|
||||
🍓11传媒20,https://zo392.cdnedge.live/file/avple-images/hls/616aff06cd55b923abce18c4/playlist.m3u8
|
||||
🍓11传媒21,https://zo392.cdnedge.live/file/avple-images/hls/616afec9cd55b923abce18c3/playlist.m3u8
|
||||
🍓11传媒22,https://w9n76.cdnedge.live/file/avple-images/hls/616afebcdd99ba23b1d9f97f/playlist.m3u8
|
||||
🍓11传媒23,https://8bb88.cdnedge.live/file/avple-images/hls/616afe52cd55b923abce18c2/playlist.m3u8
|
||||
🍓11传媒24,https://w9n76.cdnedge.live/file/avple-images/hls/616a06d13bbafc7181324c82/playlist.m3u8
|
||||
🍓11传媒25,https://w9n76.cdnedge.live/file/avple-images/hls/616a061d3bbafc7181324c81/playlist.m3u8
|
||||
🍓11传媒26,https://1xp60.cdnedge.live/file/avple-images/hls/616a05e13bbafc7181324c80/playlist.m3u8
|
||||
🍓11传媒27,https://1xp60.cdnedge.live/file/avple-images/hls/616a05693bbafc7181324c7f/playlist.m3u8
|
||||
🍓11传媒28,https://10j99.cdnedge.live/file/avple-images/hls/6168888e82e0243986ca6ac5/playlist.m3u8
|
||||
🍓11传媒29,https://zo392.cdnedge.live/file/avple-images/hls/6168881582e0243986ca6ac4/playlist.m3u8
|
||||
🍓11传媒30,https://u89ey.cdnedge.live/file/avple-images/hls/6168872582e0243986ca6ac2/playlist.m3u8
|
||||
🍓11传媒31,https://8bb88.cdnedge.live/file/avple-images/hls/6168879d82e0243986ca6ac3/playlist.m3u8
|
||||
🍎何苗01,https://d862cp.cdnedge.live/file/avple-images/hls/61051cd6c778956038fdd09e/playlist.m3u8
|
||||
🍎何苗02,https://8bb88.cdnedge.live/file/avple-images/hls/60e6f101295d6915521367be/playlist.m3u8
|
||||
🍎何苗03,https://e2fa6.cdnedge.live/file/avple-images/hls/60ddd96d41b32117d66a0b90/playlist.m3u8
|
||||
🍎何苗04,https://je40u.cdnedge.live/file/avple-images/hls/60c5b53151c874535ee1f596/playlist.m3u8
|
||||
🍎何苗05,https://1xp60.cdnedge.live/file/avple-images/hls/60c479059ca4d00ccdb17dd3/playlist.m3u8
|
||||
🍎何苗06,https://10j99.cdnedge.live/file/avple-images/hls/60ba17adecb87a1b5b8fa845/playlist.m3u8
|
||||
🍎何苗07,https://u89ey.cdnedge.live/file/avple-images/hls/6092c3d9caa9c843e1f9864e/playlist.m3u8
|
||||
🍎何苗08,https://u89ey.cdnedge.live/file/avple-images/hls/6092c3d9caa9c843e1f9864e/video_1.m3u8
|
||||
🍎何苗09,https://10j99.cdnedge.live/file/avple-images/hls/6082a8b9e00778504ee22c45/playlist.m3u8
|
||||
🍎何苗10,https://10j99.cdnedge.live/file/avple-images/hls/606ef0483d938869f8b4803f/playlist.m3u8
|
||||
🍎何苗11,https://10j99.cdnedge.live/file/avple-images/hls/6070dc7890160a18a06bac77/video_1.m3u8
|
||||
🍎夜夜01,https://d862cp.cdnedge.live/file/avple-images/hls/606ee6ecd5689e64d9000a17/playlist.m3u8
|
||||
🍎夜夜02,https://d862cp.cdnedge.live/file/avple-images/hls/605d78241eac1e0435da7777/video_1.m3u8
|
||||
🍎夜夜03,https://8bb88.cdnedge.live/file/avple-images/hls/60f31e3279955a4128ee876a/playlist.m3u8
|
||||
🍎夜夜04,https://w9n76.cdnedge.live/file/avple-images/hls/605d78241eac1e0435da7776/playlist.m3u8
|
||||
🍎夜夜05,https://u89ey.cdnedge.live/file/avple-images/hls/60648c98f42e935e1522430d/video_1.m3u8
|
||||
🍎夜夜06,https://q2cyl7.cdnedge.live/file/avple-images/hls/6120e0b9dd553b6d68d67893/playlist.m3u8
|
||||
🍎夜夜07,https://8bb88.cdnedge.live/file/avple-images/hls/61630fed114a6a29b065cdec/playlist.m3u8
|
||||
🍎夜夜08,https://d862cp.cdnedge.live/file/avple-images/hls/618626d126bdd144b598cbd8/playlist.m3u8
|
||||
🍎夜夜09,https://e2fa6.cdnedge.live/file/avple-images/hls/61b46e79f91a1b0eecb6e531/playlist.m3u8
|
||||
🍎夜夜10,https://10j99.cdnedge.live/file/avple-images/hls/61b6cccd1458462c26eadc8b/playlist.m3u8
|
||||
🍎夜夜13,https://e2fa6.cdnedge.live/file/avple-images/hls/621e146a0b43873ee3783be9/playlist.m3u8
|
||||
🍎夜夜15,https://e2fa6.cdnedge.live/file/avple-images/hls/626768d66fc93733f74fd868/playlist.m3u8
|
||||
🍎沈芯语 01,https://je40u.cdnedge.live/file/avple-images/hls/605d78241eac1e0435da7859/video_1.m3u8
|
||||
🍎沈芯语 02,https://q2cyl7.cdnedge.live/file/avple-images/hls/605d78241eac1e0435da7847/playlist.m3u8
|
||||
🍎孟若羽01,https://w9n76.cdnedge.live/file/avple-images/hls/60b506e26901331b989b0062/playlist.m3u8
|
||||
🍎孟若羽02,https://e2fa6.cdnedge.live/file/avple-images/hls/60f7f6bed45eb930dbef9642/playlist.m3u8
|
||||
🍎孟若羽03,https://1xp60.cdnedge.live/file/avple-images/hls/608c40f7dec53e18bd7d4b0f/playlist.m3u8
|
||||
🍎孟若羽04,https://je40u.cdnedge.live/file/avple-images/hls/61044393c778956038fdd092/playlist.m3u8
|
||||
🍎孟若羽05,https://zo392.cdnedge.live/file/avple-images/hls/610c6639ff7a912d5bde15c0/playlist.m3u8
|
||||
🍎孟若羽06,https://10j99.cdnedge.live/file/avple-images/hls/61490599aa66a611331a8a68/playlist.m3u8
|
||||
🍎孟若羽07,https://u89ey.cdnedge.live/file/avple-images/hls/6186240126bdd144b598cbd2/playlist.m3u8
|
||||
🍎孟若羽08,https://e2fa6.cdnedge.live/file/avple-images/hls/619c01d1f0d6ad68f95a08a8/playlist.m3u8
|
||||
🍎孟若羽09,https://zo392.cdnedge.live/file/avple-images/hls/61accd32779a324ef83699a0/playlist.m3u8
|
||||
🍎孟若羽10,https://8bb88.cdnedge.live/file/avple-images/hls/61bad4fdd56b7626e975d4ee/playlist.m3u8
|
||||
🍎孟若羽11,https://je40u.cdnedge.live/file/avple-images/hls/61c6a612668fd93b4250a31c/playlist.m3u8
|
||||
🍎孟若羽12,https://d862cp.cdnedge.live/file/avple-images/hls/61d0c2bd8ec5397ce0e2cde4/playlist.m3u8
|
||||
🍎孟若羽13,https://10j99.cdnedge.live/file/avple-images/hls/621731ea336b5d6ff709b379/playlist.m3u8
|
||||
🍎孟若羽15,https://8bb88.cdnedge.live/file/avple-images/hls/622fc71ee14ae771445e47fb/playlist.m3u8
|
||||
岛国🍓01,https://e2fa6.cdnedge.live/file/avple-images/hls/62ad51f94d3db17e320c3cba/playlist.m3u8
|
||||
岛国🍓02,https://e2fa6.cdnedge.live/file/avple-images/hls/62ac3896510f2d35a3cbebf8/playlist.m3u8
|
||||
岛国🍓03,https://w9n76.cdnedge.live/file/avple-images/hls/629aeb088f62675e99e2a97a/playlist.m3u8
|
||||
岛国🍓04,https://je40u.cdnedge.live/file/avple-images/hls/627ec3e88c37cd1970999c03/playlist.m3u8
|
||||
岛国🍓05,https://1xp60.cdnedge.live/file/avple-images/hls/6269e441efdc6c2bd40c3276/playlist.m3u8
|
||||
岛国🍓06,https://je40u.cdnedge.live/file/avple-images/hls/625969a2c471482782ec91c7/playlist.m3u8
|
||||
岛国🍓07,https://q2cyl7.cdnedge.live/file/avple-images/hls/6259312ec2fab47aefd498fc/playlist.m3u8
|
||||
岛国🍓08,https://q2cyl7.cdnedge.live/file/avple-images/hls/624ffde4f0cc4f2b3cb8b9f4/playlist.m3u8
|
||||
岛国🍓09,https://d862cp.cdnedge.live/file/avple-images/hls/623db30d5343155f6573b774/playlist.m3u8
|
||||
岛国🍓10,https://10j99.cdnedge.live/file/avple-images/hls/622b7c9d92a1597735174eb4/playlist.m3u8
|
||||
岛国🍓11,https://w9n76.cdnedge.live/file/avple-images/hls/622b7506e28d0a772e8d987a/playlist.m3u8
|
||||
岛国🍓12,https://d862cp.cdnedge.live/file/avple-images/hls/6221ca1772305c30bf33558d/playlist.m3u8
|
||||
岛国🍓13,https://je40u.cdnedge.live/file/avple-images/hls/6218a1282766e93bde6539d5/playlist.m3u8
|
||||
岛国🍓15,https://10j99.cdnedge.live/file/avple-images/hls/61e168d71f5953710fb3f594/playlist.m3u8
|
||||
岛国🍓16,https://10j99.cdnedge.live/file/avple-images/hls/61bbf41fee82d469c8462e74/playlist.m3u8
|
||||
岛国🍓17,https://10j99.cdnedge.live/file/avple-images/hls/61816f6bb277fb42ae96f128/playlist.m3u8
|
||||
巨象娱乐05,https://zo392.cdnedge.live/file/avple-images/hls/62c5a63536c38433078a6950/playlist.m3u8
|
||||
LAX-0063POV淘气的初体验-MiaKay,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c5a54536c38433078a694f/playlist.m3u8
|
||||
MKY-SL-004夏夜靡遗冰淇淋的助攻夏晴子,https://d862cp.cdnedge.live/file/avple-images/hls/62c5a49136c38433078a694d/playlist.m3u8
|
||||
01,https://1xp60.cdnedge.live/file/avple-images/hls/62bd878ad0fa6a48496bbf5c/playlist.m3u8
|
||||
02,https://d862cp.cdnedge.live/file/avple-images/hls/62bd8531d0fa6a48496bbf5a/playlist.m3u8
|
||||
16,https://u89ey.cdnedge.live/file/avple-images/hls/62c168c8b70f0f5e88542c50/playlist.m3u8
|
||||
17,https://d862cp.cdnedge.live/file/avple-images/hls/62c049e68a72962dc53aa5a2/playlist.m3u8
|
||||
18,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c047ca8a72962dc53aa5a0/playlist.m3u8
|
||||
19,https://u89ey.cdnedge.live/file/avple-images/hls/62bee355e8dd79755d817bbb/playlist.m3u8
|
||||
20,https://8bb88.cdnedge.live/file/avple-images/hls/62bd8968d0fa6a48496bbf61/playlist.m3u8
|
||||
21,https://d862cp.cdnedge.live/file/avple-images/hls/62bd883dd0fa6a48496bbf5d/playlist.m3u8
|
||||
22,https://10j99.cdnedge.live/file/avple-images/hls/62bd8879d0fa6a48496bbf5e/playlist.m3u8
|
||||
23,https://q2cyl7.cdnedge.live/file/avple-images/hls/62bd8710d0fa6a48496bbf5b/playlist.m3u8
|
||||
24,https://zo392.cdnedge.live/file/avple-images/hls/62bd88f0d0fa6a48496bbf60/playlist.m3u8
|
||||
25,https://je40u.cdnedge.live/file/avple-images/hls/62bd88b4d0fa6a48496bbf5f/playlist.m3u8
|
||||
26,https://je40u.cdnedge.live/file/avple-images/hls/62bd84f5d0fa6a48496bbf59/playlist.m3u8
|
||||
10,https://zo392.cdnedge.live/file/avple-images/hls/60ba6f55ecb87a1b5b8fa848/playlist.m3u8
|
||||
11,https://e2fa6.cdnedge.live/file/avple-images/hls/6157416d9dda0e2db22a7f11/playlist.m3u8
|
||||
13,https://w9n76.cdnedge.live/file/avple-images/hls/6173094d16713849c8fc4704/playlist.m3u8
|
||||
14,https://zo392.cdnedge.live/file/avple-images/hls/61584c9d4617d9667f1fa688/playlist.m3u8
|
||||
🌏11传媒01,https://u89ey1.cdnedge.live/file/avple-asserts/hls/636263a357da9326a9b1cdcb/playlist.m3u8
|
||||
🌏11传媒02,https://8bb881.cdnedge.live/file/avple-asserts/hls/636269f557da9326a9b1cdd7/playlist.m3u8
|
||||
🌏11传媒03,https://8bb881.cdnedge.live/file/avple-asserts/hls/6362694657da9326a9b1cdd5/playlist.m3u8
|
||||
🌏11传媒04,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63638333b893d94d5831c8fb/playlist.m3u8
|
||||
🌏11传媒05,https://1xp601.cdnedge.live/file/avple-asserts/hls/63626ab857da9326a9b1cdd9/playlist.m3u8
|
||||
🌏11传媒06,https://w9n761.cdnedge.live/file/avple-asserts/hls/63625f7557da9326a9b1cdc8/playlist.m3u8
|
||||
🌏11传媒07,https://e2fa61.cdnedge.live/file/avple-asserts/hls/636268d757da9326a9b1cdd4/playlist.m3u8
|
||||
🌏11传媒08,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63626a3f57da9326a9b1cdd8/playlist.m3u8
|
||||
🌏11传媒09,https://je40u1.cdnedge.live/file/avple-asserts/hls/6362694f57da9326a9b1cdd6/playlist.m3u8
|
||||
🌏11传媒10,https://10j991.cdnedge.live/file/avple-asserts/hls/636267e657da9326a9b1cdd3/playlist.m3u8
|
||||
🌏11传媒11,https://e2fa61.cdnedge.live/file/avple-asserts/hls/636267a957da9326a9b1cdd2/playlist.m3u8
|
||||
🌏11传媒12,https://10j991.cdnedge.live/file/avple-asserts/hls/6362673157da9326a9b1cdd1/playlist.m3u8
|
||||
🌏11传媒13,https://8bb881.cdnedge.live/file/avple-asserts/hls/636266ba57da9326a9b1cdd0/playlist.m3u8
|
||||
🌏11传媒14,https://zo3921.cdnedge.live/file/avple-asserts/hls/6362655057da9326a9b1cdcf/playlist.m3u8
|
||||
🌏11传媒15,https://1xp601.cdnedge.live/file/avple-asserts/hls/6362642557da9326a9b1cdcd/playlist.m3u8
|
||||
🌏11传媒16,https://e2fa61.cdnedge.live/file/avple-asserts/hls/636264da57da9326a9b1cdce/playlist.m3u8
|
||||
🌏11传媒17,https://1xp601.cdnedge.live/file/avple-asserts/hls/636263ad57da9326a9b1cdcc/playlist.m3u8
|
||||
🌏11传媒18,https://zo3921.cdnedge.live/file/avple-asserts/hls/636260a157da9326a9b1cdca/playlist.m3u8
|
||||
🌏11传媒19,https://je40u1.cdnedge.live/file/avple-asserts/hls/6362602a57da9326a9b1cdc9/playlist.m3u8
|
||||
🌏11传媒20,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63625e4a57da9326a9b1cdc6/playlist.m3u8
|
||||
🌏11传媒21,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63625ec157da9326a9b1cdc7/playlist.m3u8
|
||||
🌏11传媒22,https://zo3921.cdnedge.live/file/avple-asserts/hls/63625a8857da9326a9b1cdc5/playlist.m3u8
|
||||
🌏11传媒23,https://je40u1.cdnedge.live/file/avple-asserts/hls/63625a4f57da9326a9b1cdc4/playlist.m3u8
|
||||
🌏11传媒24,https://1xp601.cdnedge.live/file/avple-asserts/hls/636259d557da9326a9b1cdc3/playlist.m3u8
|
||||
🌏11传媒25,https://je40u1.cdnedge.live/file/avple-asserts/hls/6362592157da9326a9b1cdc2/playlist.m3u8
|
||||
🌏11传媒26,https://1xp601.cdnedge.live/file/avple-asserts/hls/63622d06762789063c4c97fd/playlist.m3u8
|
||||
🌏11传媒27,https://zo3921.cdnedge.live/file/avple-asserts/hls/636223a4762789063c4c97fb/playlist.m3u8
|
||||
🌏11传媒28,https://je40u1.cdnedge.live/file/avple-asserts/hls/63617f93762789063c4c97fa/playlist.m3u8
|
||||
🌏11传媒29,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63616824762789063c4c97f8/playlist.m3u8
|
||||
🌏11传媒30,https://8bb881.cdnedge.live/file/avple-asserts/hls/63613766127eed54f5fdc63c/playlist.m3u8
|
||||
🌏11传媒31,https://8bb881.cdnedge.live/file/avple-asserts/hls/636136b2127eed54f5fdc63b/playlist.m3u8
|
||||
🌏11传媒32,https://zo3921.cdnedge.live/file/avple-asserts/hls/63612033127eed54f5fdc636/playlist.m3u8
|
||||
🌏11传媒33,https://w9n761.cdnedge.live/file/avple-asserts/hls/636120e6127eed54f5fdc637/playlist.m3u8
|
||||
🌏11传媒34,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63611f7f127eed54f5fdc635/playlist.m3u8
|
||||
🌏11传媒35,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63611eca127eed54f5fdc633/playlist.m3u8
|
||||
🌏11传媒36,https://je40u1.cdnedge.live/file/avple-asserts/hls/636126dddab5bd5b631fad1e/playlist.m3u8
|
||||
🌏11传媒37,https://10j991.cdnedge.live/file/avple-asserts/hls/63611eca127eed54f5fdc632/playlist.m3u8
|
||||
🌏11传媒38,https://10j991.cdnedge.live/file/avple-asserts/hls/63611d62127eed54f5fdc630/playlist.m3u8
|
||||
🌏11传媒39,https://1xp601.cdnedge.live/file/avple-asserts/hls/63611bfa127eed54f5fdc62f/playlist.m3u8
|
||||
🌏11传媒40,https://je40u1.cdnedge.live/file/avple-asserts/hls/635fe331625c274caa6b5c1e/playlist.m3u8
|
||||
🌏11传媒41,https://d862cp1.cdnedge.live/file/avple-asserts/hls/635fe331625c274caa6b5c12/playlist.m3u8
|
||||
🌏11传媒42,https://10j991.cdnedge.live/file/avple-asserts/hls/635fcba48eda8a6cdeb7e9da/playlist.m3u8
|
||||
🌏11传媒43,https://10j991.cdnedge.live/file/avple-asserts/hls/635fcba38eda8a6cdeb7e9d9/playlist.m3u8
|
||||
🌏11传媒44,https://1xp601.cdnedge.live/file/avple-asserts/hls/635fc2438eda8a6cdeb7e9d7/playlist.m3u8
|
||||
🌏10传媒01,https://1xp601.cdnedge.live/file/avple-asserts/hls/635cf2bcd78c10293225b651/playlist.m3u8
|
||||
🌏10传媒02,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd515/playlist.m3u8
|
||||
🌏10传媒03,https://10j991.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd51b/playlist.m3u8
|
||||
🌏10传媒04,https://zo3921.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd51c/playlist.m3u8
|
||||
🌏10传媒05,https://8bb881.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd51d/playlist.m3u8
|
||||
🌏10传媒06,https://zo3921.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd51a/playlist.m3u8
|
||||
🌏10传媒07,https://zo3921.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd518/playlist.m3u8
|
||||
🌏10传媒08,https://d862cp1.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd519/playlist.m3u8
|
||||
🌏10传媒09,https://zo3921.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd517/playlist.m3u8
|
||||
🌏10传媒10,https://w9n761.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd516/playlist.m3u8
|
||||
🌏10传媒11,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635c83a58e0ba231034c2a3f/playlist.m3u8
|
||||
🌏10传媒12,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd42a/playlist.m3u8
|
||||
🌏10传媒13,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd426/playlist.m3u8
|
||||
🌏10传媒14,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd428/playlist.m3u8
|
||||
🌏10传媒15,https://zo3921.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd429/playlist.m3u8
|
||||
🌏10传媒16,https://8bb881.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd427/playlist.m3u8
|
||||
🌏10传媒17,https://10j991.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd425/playlist.m3u8
|
||||
🌏10传媒18,https://1xp601.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd423/playlist.m3u8
|
||||
🌏10传媒19,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd41f/playlist.m3u8
|
||||
🌏10传媒20,https://10j991.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd424/playlist.m3u8
|
||||
🌏10传媒21,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd422/playlist.m3u8
|
||||
🌏10传媒22,https://zo3921.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd421/playlist.m3u8
|
||||
🌏10传媒23,https://10j991.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd421/playlist.m3u8
|
||||
🌏10传媒24,https://zo3921.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd420/playlist.m3u8
|
||||
🌏10传媒25,https://w9n761.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd418/playlist.m3u8
|
||||
🌏10传媒26,https://d862cp1.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd41d/playlist.m3u8
|
||||
🌏10传媒27,https://je40u1.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd41a/playlist.m3u8
|
||||
🌏10传媒28,https://8bb881.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd41c/playlist.m3u8
|
||||
🌏10传媒29,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd41b/playlist.m3u8
|
||||
🌏10传媒30,https://1xp601.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd419/playlist.m3u8
|
||||
🌏10传媒31,https://d862cp1.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd417/playlist.m3u8
|
||||
🌏10传媒32,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd416/playlist.m3u8
|
||||
🌏10传媒33,https://zo3921.cdnedge.live/file/avple-asserts/hls/635c80208e0ba231034c2a3d/playlist.m3u8
|
||||
🌏10传媒34,https://10j991.cdnedge.live/file/avple-asserts/hls/635c328bd78c10293225b64f/playlist.m3u8
|
||||
🌏10传媒35,https://w9n761.cdnedge.live/file/avple-asserts/hls/635c3033d78c10293225b64e/playlist.m3u8
|
||||
🌏10传媒36,https://1xp601.cdnedge.live/file/avple-asserts/hls/635c1d75d78c10293225b64c/playlist.m3u8
|
||||
🌏10传媒37,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635ba9b78e0ba231034c2a2f/playlist.m3u8
|
||||
🌏10传媒38,https://10j991.cdnedge.live/file/avple-asserts/hls/635ba9028e0ba231034c2a2e/playlist.m3u8
|
||||
🌏10传媒39,https://8bb881.cdnedge.live/file/avple-asserts/hls/635ba8568e0ba231034c2a2c/playlist.m3u8
|
||||
🌏10传媒40,https://1xp601.cdnedge.live/file/avple-asserts/hls/635ba8134c2ba20f2586bed0/playlist.m3u8
|
||||
🌏10传媒41,https://d862cp1.cdnedge.live/file/avple-asserts/hls/635ba8c98e0ba231034c2a2d/playlist.m3u8
|
||||
🌏10传媒42,https://8bb881.cdnedge.live/file/avple-asserts/hls/635ba79c4c2ba20f2586becf/playlist.m3u8
|
||||
🌏10传媒43,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635a3146877aa7388ca75460/playlist.m3u8
|
||||
🌏10传媒44,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63599ff3877aa7388ca7545f/playlist.m3u8
|
||||
🌏10传媒45,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63597f23877aa7388ca7545e/playlist.m3u8
|
||||
🌏10传媒46,https://10j991.cdnedge.live/file/avple-asserts/hls/635954f3877aa7388ca7545d/playlist.m3u8
|
||||
🌏10传媒47,https://d862cp1.cdnedge.live/file/avple-asserts/hls/63595043877aa7388ca7545c/playlist.m3u8
|
||||
🌏10传媒48,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/63593fdc877aa7388ca7545a/playlist.m3u8
|
||||
🌏10传媒49,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635938d6877aa7388ca75459/playlist.m3u8
|
||||
🌏10传媒50,https://d862cp1.cdnedge.live/file/avple-asserts/hls/635926d2f32ff96c7ec5d454/playlist.m3u8
|
||||
🌏10传媒51,https://1xp601.cdnedge.live/file/avple-asserts/hls/6359261ff32ff96c7ec5d453/playlist.m3u8
|
||||
🌏10传媒52,https://10j991.cdnedge.live/file/avple-asserts/hls/635925e3f32ff96c7ec5d452/playlist.m3u8
|
||||
🌏10传媒53,https://8bb881.cdnedge.live/file/avple-asserts/hls/6359256af32ff96c7ec5d451/playlist.m3u8
|
||||
🌏10传媒54,https://8bb881.cdnedge.live/file/avple-asserts/hls/635924f5f32ff96c7ec5d450/playlist.m3u8
|
||||
🌏10传媒55,https://8bb881.cdnedge.live/file/avple-asserts/hls/6359243ff32ff96c7ec5d44e/playlist.m3u8
|
||||
🌏10传媒56,https://je40u1.cdnedge.live/file/avple-asserts/hls/6359247bf32ff96c7ec5d44f/playlist.m3u8
|
||||
🌏10传媒57,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635923c7f32ff96c7ec5d44d/playlist.m3u8
|
||||
🌏10传媒58,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/63592350f32ff96c7ec5d44c/playlist.m3u8
|
||||
🌏10传媒59,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63592263f32ff96c7ec5d44a/playlist.m3u8
|
||||
🌏10传媒60,https://w9n761.cdnedge.live/file/avple-asserts/hls/63592314f32ff96c7ec5d44b/playlist.m3u8
|
||||
🌏10传媒61,https://zo3921.cdnedge.live/file/avple-asserts/hls/635921e9f32ff96c7ec5d449/playlist.m3u8
|
||||
🌏10传媒62,https://w9n761.cdnedge.live/file/avple-asserts/hls/635921adf32ff96c7ec5d448/playlist.m3u8
|
||||
🌏10传媒63,https://d862cp1.cdnedge.live/file/avple-asserts/hls/63592140f32ff96c7ec5d447/playlist.m3u8
|
||||
🌏10传媒64,https://je40u1.cdnedge.live/file/avple-asserts/hls/6357af7ef0cbb04c8218338e/playlist.m3u8
|
||||
🌏10传媒65,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6357af7df0cbb04c8218337b/playlist.m3u8
|
||||
🌏10传媒66,https://w9n761.cdnedge.live/file/avple-asserts/hls/635665ca0655fd7e14a5de99/playlist.m3u8
|
||||
🌏10传媒67,https://je40u1.cdnedge.live/file/avple-asserts/hls/6355e59f54092e7600dd8ae2/playlist.m3u8
|
||||
🌏10传媒69,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6355e52754092e7600dd8ae1/playlist.m3u8
|
||||
🌏10传媒70,https://w9n761.cdnedge.live/file/avple-asserts/hls/6355e43654092e7600dd8adf/playlist.m3u8
|
||||
🌏10传媒71,https://je40u1.cdnedge.live/file/avple-asserts/hls/6355e3c654092e7600dd8ade/playlist.m3u8
|
||||
🌏10传媒72,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6355e29354092e7600dd8add/playlist.m3u8
|
||||
🌏10传媒73,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6355e21c54092e7600dd8adc/playlist.m3u8
|
||||
🌏10传媒74,https://w9n761.cdnedge.live/file/avple-asserts/hls/6355e1e054092e7600dd8adb/playlist.m3u8
|
||||
🌏10传媒75,https://je40u1.cdnedge.live/file/avple-asserts/hls/6355dfc454092e7600dd8ad6/playlist.m3u8
|
||||
🌏10传媒76,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6355e1aa54092e7600dd8ada/playlist.m3u8
|
||||
🌏10传媒77,https://8bb881.cdnedge.live/file/avple-asserts/hls/6355e12c54092e7600dd8ad9/playlist.m3u8
|
||||
🌏10传媒78,https://w9n761.cdnedge.live/file/avple-asserts/hls/6355e0f054092e7600dd8ad8/playlist.m3u8
|
||||
🌏10传媒79,https://je40u1.cdnedge.live/file/avple-asserts/hls/6355e07854092e7600dd8ad7/playlist.m3u8
|
||||
🌏10传媒80,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6355ded454092e7600dd8ad4/playlist.m3u8
|
||||
🌏10传媒81,https://8bb881.cdnedge.live/file/avple-asserts/hls/6355df1154092e7600dd8ad5/playlist.m3u8
|
||||
🌏10传媒82,https://zo3921.cdnedge.live/file/avple-asserts/hls/63581d46f6a4fb2bb60a9001/playlist.m3u8
|
||||
🌏10传媒83,https://zo3921.cdnedge.live/file/avple-asserts/hls/63581ae4f6a4fb2bb60a9000/playlist.m3u8
|
||||
🍫10传媒01,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6353f83ac5cf844cb6d68284/playlist.m3u8
|
||||
🍫10传媒02,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6353f83ac5cf844cb6d68283/playlist.m3u8
|
||||
🍫10传媒03,https://8bb881.cdnedge.live/file/avple-asserts/hls/63536d01cb07ae18bbbcc405/playlist.m3u8
|
||||
🍫10传媒04,https://1xp601.cdnedge.live/file/avple-asserts/hls/6352cde14febac7a3af639b1/playlist.m3u8
|
||||
🍫10传媒05,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6352b8c44febac7a3af639b0/playlist.m3u8
|
||||
🍫10传媒06,https://w9n761.cdnedge.live/file/avple-asserts/hls/635284fbcb07ae18bbbcc404/playlist.m3u8
|
||||
🍫10传媒07,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63525227013bdd61fb508f8d/playlist.m3u8
|
||||
🍫10传媒08,https://d862cp1.cdnedge.live/file/avple-asserts/hls/635251ae013bdd61fb508f8c/playlist.m3u8
|
||||
🍫10传媒09,https://8bb881.cdnedge.live/file/avple-asserts/hls/63525135013bdd61fb508f8b/playlist.m3u8
|
||||
🍫10传媒10,https://zo3921.cdnedge.live/file/avple-asserts/hls/63525082013bdd61fb508f8a/playlist.m3u8
|
||||
🍫10传媒11,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63524d3a013bdd61fb508f88/playlist.m3u8
|
||||
🍫10传媒12,https://10j991.cdnedge.live/file/avple-asserts/hls/63524d77013bdd61fb508f89/playlist.m3u8
|
||||
🍫10传媒13,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63524cc3013bdd61fb508f87/playlist.m3u8
|
||||
🍫10传媒14,https://zo3921.cdnedge.live/file/avple-asserts/hls/63524b22013bdd61fb508f86/playlist.m3u8
|
||||
🍫10传媒15,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63524940013bdd61fb508f85/playlist.m3u8
|
||||
🍫10传媒16,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635248c8013bdd61fb508f84/playlist.m3u8
|
||||
🍫10传媒17,https://10j991.cdnedge.live/file/avple-asserts/hls/63512f0601914f11ef459ac4/playlist.m3u8
|
||||
🍫10传媒18,https://zo3921.cdnedge.live/file/avple-asserts/hls/63512a5a01914f11ef459ac3/playlist.m3u8
|
||||
🍫10传媒19,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/63511795856c73741120a3dd/playlist.m3u8
|
||||
🍫10传媒20,https://10j991.cdnedge.live/file/avple-asserts/hls/635112e4856c73741120a3dc/playlist.m3u8
|
||||
🍫10传媒21,https://d862cp1.cdnedge.live/file/avple-asserts/hls/63510bdd856c73741120a3db/playlist.m3u8
|
||||
🍫10传媒22,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/634fef24f3e40538e6472cbf/playlist.m3u8
|
||||
🍫10传媒23,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/634feeb1f3e40538e6472cbe/playlist.m3u8
|
||||
🍫10传媒24,https://10j991.cdnedge.live/file/avple-asserts/hls/634fee34f3e40538e6472cbd/playlist.m3u8
|
||||
🍫10传媒25,https://e2fa61.cdnedge.live/file/avple-asserts/hls/634feccff3e40538e6472cbc/playlist.m3u8
|
||||
🍫10传媒26,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634febdcf3e40538e6472cba/playlist.m3u8
|
||||
🍫10传媒27,https://10j991.cdnedge.live/file/avple-asserts/hls/634fec18f3e40538e6472cbb/playlist.m3u8
|
||||
🍬10传媒00,https://1xp601.cdnedge.live/file/avple-asserts/hls/634e9a53e945e7147a58acea/playlist.m3u8
|
||||
🍬10传媒0.0,https://je40u1.cdnedge.live/file/avple-asserts/hls/634e9567613c861da87360d8/playlist.m3u8
|
||||
🍬10传媒01,https://je40u1.cdnedge.live/file/avple-asserts/hls/634e8e5c613c861da87360d7/playlist.m3u8
|
||||
🍬10传媒02,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634e8755613c861da87360d6/playlist.m3u8
|
||||
🍬10传媒03,https://zo3921.cdnedge.live/file/avple-asserts/hls/634d2d652f7f2d67e9da8253/playlist.m3u8
|
||||
🍬10传媒04,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634d06895c062344b76024d2/playlist.m3u8
|
||||
🍬10传媒05,https://8bb881.cdnedge.live/file/avple-asserts/hls/634d05d65c062344b76024d1/playlist.m3u8
|
||||
🍬10传媒06,https://d862cp1.cdnedge.live/file/avple-asserts/hls/634d046d5c062344b76024cf/playlist.m3u8
|
||||
🍬10传媒07,https://1xp601.cdnedge.live/file/avple-asserts/hls/634d04e65c062344b76024d0/playlist.m3u8
|
||||
🍬10传媒08,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634d037d5c062344b76024ce/playlist.m3u8
|
||||
🍬10传媒09,https://w9n761.cdnedge.live/file/avple-asserts/hls/634d03415c062344b76024cd/playlist.m3u8
|
||||
🍬10传媒10,https://d862cp1.cdnedge.live/file/avple-asserts/hls/634d028f5c062344b76024cc/playlist.m3u8
|
||||
🍬10传媒11,https://e2fa61.cdnedge.live/file/avple-asserts/hls/634d01635c062344b76024cb/playlist.m3u8
|
||||
🍬10传媒12,https://1xp601.cdnedge.live/file/avple-asserts/hls/634d00ad5c062344b76024c9/playlist.m3u8
|
||||
🍬10传媒13,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/634d01245c062344b76024ca/playlist.m3u8
|
||||
🍬10传媒14,https://1xp601.cdnedge.live/file/avple-asserts/hls/634cfecc5c062344b76024c8/playlist.m3u8
|
||||
🍬10传媒15,https://je40u1.cdnedge.live/file/avple-asserts/hls/634cfd285c062344b76024c7/playlist.m3u8
|
||||
🍬10传媒16,https://8bb881.cdnedge.live/file/avple-asserts/hls/634cfcb15c062344b76024c6/playlist.m3u8
|
||||
🍬10传媒17,https://e2fa61.cdnedge.live/file/avple-asserts/hls/634cfc755c062344b76024c5/playlist.m3u8
|
||||
🍬10传媒18,https://1xp601.cdnedge.live/file/avple-asserts/hls/634cf92e5c062344b76024c3/playlist.m3u8
|
||||
🍬10传媒19,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/634cfa1d5c062344b76024c4/playlist.m3u8
|
||||
🍬10传媒20,https://zo3921.cdnedge.live/file/avple-asserts/hls/634cf5a95c062344b76024c2/playlist.m3u8
|
||||
🍬10传媒21,https://8bb881.cdnedge.live/file/avple-asserts/hls/634cf4f65c062344b76024c1/playlist.m3u8
|
||||
🍬10传媒22,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/634bfbc7054a773d29ec1e1f/playlist.m3u8
|
||||
🍬10传媒23,https://d862cp1.cdnedge.live/file/avple-asserts/hls/634c1a7c5c062344b76024bf/playlist.m3u8
|
||||
🍬10传媒24,https://zo3921.cdnedge.live/file/avple-asserts/hls/634c1a7c5c062344b76024c0/playlist.m3u8
|
||||
🍬10传媒25,https://8bb881.cdnedge.live/file/avple-asserts/hls/634bfbc7054a773d29ec1e1f/playlist.m3u8
|
||||
🍬10传媒26,https://d862cp1.cdnedge.live/file/avple-asserts/hls/634be2ed5c062344b76024be/playlist.m3u8
|
||||
🍭10传媒01,https://d862cp1.cdnedge.live/file/avple-asserts/hls/634be23a5c062344b76024bc/playlist.m3u8
|
||||
🍭10传媒02,https://10j991.cdnedge.live/file/avple-asserts/hls/634be23a5c062344b76024bb/playlist.m3u8
|
||||
🍭10传媒03,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634bd6fa5c062344b76024ba/playlist.m3u8
|
||||
🍭10传媒04,https://je40u1.cdnedge.live/file/avple-asserts/hls/634a9e8e069c08564a11b336/playlist.m3u8
|
||||
🍭10传媒05,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6349ea20178aac72b27939e9/playlist.m3u8
|
||||
🍭10传媒06,https://je40u1.cdnedge.live/file/avple-asserts/hls/6349ebff178aac72b27939ed/playlist.m3u8
|
||||
🍭10传媒07,https://1xp601.cdnedge.live/file/avple-asserts/hls/634a8a658495201adb1ec45c/playlist.m3u8
|
||||
🍭10传媒08,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349eb49178aac72b27939ec/playlist.m3u8
|
||||
🍭10传媒09,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6349e625178aac72b27939e2/playlist.m3u8
|
||||
🍭10传媒10,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349e841178aac72b27939e6/playlist.m3u8
|
||||
🍭10传媒11,https://je40u1.cdnedge.live/file/avple-asserts/hls/6349e930178aac72b27939e7/playlist.m3u8
|
||||
🍭10传媒12,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349ec77178aac72b27939ee/playlist.m3u8
|
||||
🍭10传媒13,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6349eb10178aac72b27939eb/playlist.m3u8
|
||||
🍭10传媒14,https://zo3921.cdnedge.live/file/avple-asserts/hls/6349e9e4178aac72b27939e8/playlist.m3u8
|
||||
🍭10传媒15,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6349ead5178aac72b27939ea/playlist.m3u8
|
||||
🍭10传媒16,https://w9n761.cdnedge.live/file/avple-asserts/hls/6349e78c178aac72b27939e5/playlist.m3u8
|
||||
🍭10传媒17,https://zo3921.cdnedge.live/file/avple-asserts/hls/6349e750178aac72b27939e3/playlist.m3u8
|
||||
🍭10传媒18,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6349e5ad178aac72b27939e1/playlist.m3u8
|
||||
🍭10传媒19,https://zo3921.cdnedge.live/file/avple-asserts/hls/6349e757178aac72b27939e4/playlist.m3u8
|
||||
🍭10传媒20,https://zo3921.cdnedge.live/file/avple-asserts/hls/6349e572178aac72b27939e0/playlist.m3u8
|
||||
🍭10传媒21,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634984d6178aac72b27939db/playlist.m3u8
|
||||
🍭10传媒22,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349e481178aac72b27939de/playlist.m3u8
|
||||
🍭10传媒23,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6349e4f9178aac72b27939df/playlist.m3u8
|
||||
🍭10传媒24,https://8bb881.cdnedge.live/file/avple-asserts/hls/6349863f178aac72b27939dd/playlist.m3u8
|
||||
🍭10传媒25,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349858b178aac72b27939dc/playlist.m3u8
|
||||
🍭10传媒26,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6349377e178aac72b27939da/playlist.m3u8
|
||||
🍭10传媒27,https://zo3921.cdnedge.live/file/avple-asserts/hls/6346b1527ba950223495b750/playlist.m3u8
|
||||
🍭10传媒28,https://1xp601.cdnedge.live/file/avple-asserts/hls/6346b09e7ba950223495b74f/playlist.m3u8
|
||||
🍭10传媒29,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6346abb47ba950223495b74d/playlist.m3u8
|
||||
🍭10传媒30,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6346adcf7ba950223495b74e/playlist.m3u8
|
||||
🍭10传媒31,https://10j991.cdnedge.live/file/avple-asserts/hls/6346a7b4bae0755d7e12cd78/playlist.m3u8
|
||||
🍭10传媒32,https://1xp601.cdnedge.live/file/avple-asserts/hls/6346a304bae0755d7e12cd77/playlist.m3u8
|
||||
🍭10传媒33,https://d862cp1.cdnedge.live/file/avple-asserts/hls/634699a4bae0755d7e12cd74/playlist.m3u8
|
||||
🍭10传媒34,https://w9n761.cdnedge.live/file/avple-asserts/hls/63469e54bae0755d7e12cd76/playlist.m3u8
|
||||
🍭10传媒35,https://1xp601.cdnedge.live/file/avple-asserts/hls/63469c00bae0755d7e12cd75/playlist.m3u8
|
||||
🍺10传媒01,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6345b8e993b50e7e36f8816e/playlist.m3u8
|
||||
🍺10传媒02,https://1xp601.cdnedge.live/file/avple-asserts/hls/6345b8b093b50e7e36f8816d/playlist.m3u8
|
||||
🍺10传媒03,https://1xp601.cdnedge.live/file/avple-asserts/hls/6345b4ef93b50e7e36f88167/playlist.m3u8
|
||||
🍺10传媒04,https://w9n761.cdnedge.live/file/avple-asserts/hls/6345b99d93b50e7e36f88170/playlist.m3u8
|
||||
🍺10传媒05,https://10j991.cdnedge.live/file/avple-asserts/hls/6345b92593b50e7e36f8816f/playlist.m3u8
|
||||
🍺10传媒06,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6345b47793b50e7e36f88166/playlist.m3u8
|
||||
🍺10传媒07,https://zo3921.cdnedge.live/file/avple-asserts/hls/6345b7fb93b50e7e36f8816c/playlist.m3u8
|
||||
🍺10传媒08,https://10j991.cdnedge.live/file/avple-asserts/hls/6345b78193b50e7e36f8816b/playlist.m3u8
|
||||
🍺10传媒09,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6345b61c93b50e7e36f8816a/playlist.m3u8
|
||||
🍺10传媒10,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6345b5a493b50e7e36f88168/playlist.m3u8
|
||||
🍺10传媒11,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6345b5de93b50e7e36f88169/playlist.m3u8
|
||||
🍺10传媒12,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6345b31093b50e7e36f88165/playlist.m3u8
|
||||
🍺10传媒13,https://10j991.cdnedge.live/file/avple-asserts/hls/6345b16f93b50e7e36f88162/playlist.m3u8
|
||||
🍺10传媒14,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6345b22193b50e7e36f88164/playlist.m3u8
|
||||
🍺10传媒15,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6345b0f593b50e7e36f88161/playlist.m3u8
|
||||
🍺10传媒16,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6345b07c93b50e7e36f88160/playlist.m3u8
|
||||
🍺10传媒17,https://8bb881.cdnedge.live/file/avple-asserts/hls/6345b1a893b50e7e36f88163/playlist.m3u8
|
||||
🍺10传媒18,https://10j991.cdnedge.live/file/avple-asserts/hls/63459c6164a5ae7e4a1ccfcc/playlist.m3u8
|
||||
🍺10传媒19,https://10j991.cdnedge.live/file/avple-asserts/hls/634597b164a5ae7e4a1ccf9e/playlist.m3u8
|
||||
🍺10传媒20,https://je40u1.cdnedge.live/file/avple-asserts/hls/634597b164a5ae7e4a1ccf9b/playlist.m3u8
|
||||
🍺10传媒21,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634597b164a5ae7e4a1ccf98/playlist.m3u8
|
||||
🍺10传媒22,https://1xp601.cdnedge.live/file/avple-asserts/hls/6345948e93b50e7e36f88159/playlist.m3u8
|
||||
🍺10传媒23,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6345932793b50e7e36f88158/playlist.m3u8
|
||||
🍺10传媒24,https://je40u1.cdnedge.live/file/avple-asserts/hls/63458e774543db0c27fb44d4/playlist.m3u8
|
||||
🍺10传媒25,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634589c84543db0c27fb44d3/playlist.m3u8
|
||||
🍺10传媒26,https://zo3921.cdnedge.live/file/avple-asserts/hls/63456c7b93b50e7e36f88156/playlist.m3u8
|
||||
🍺10传媒27,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63456b1293b50e7e36f88155/playlist.m3u8
|
||||
🍺10传媒28,https://d862cp1.cdnedge.live/file/avple-asserts/hls/634562a393b50e7e36f88154/playlist.m3u8
|
||||
🍺10传媒29,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/63453d5fca93955ab5862d46/playlist.m3u8
|
||||
🥛10传媒01,https://u89ey1.cdnedge.live/file/avple-asserts/hls/633d6e6254c1e70dc9202ca4/playlist.m3u8
|
||||
🥛10传媒02,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/63396731496804778df57460/playlist.m3u8
|
||||
🥛10传媒03,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6339708b496804778df57465/playlist.m3u8
|
||||
🥛10传媒04,https://d862cp1.cdnedge.live/file/avple-asserts/hls/633deea611e790289ed4d774/playlist.m3u8
|
||||
🥛10传媒05,https://zo3921.cdnedge.live/file/avple-asserts/hls/63397013496804778df57464/playlist.m3u8
|
||||
🥛10传媒06,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/633a8e35496804778df57470/playlist.m3u8
|
||||
🥛10传媒07,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/633a8eee496804778df57471/playlist.m3u8
|
||||
🥛10传媒08,https://w9n761.cdnedge.live/file/avple-asserts/hls/6337db16c4059d2ec8921183/playlist.m3u8
|
||||
🥛10传媒09,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6337da62c4059d2ec8921181/playlist.m3u8
|
||||
🥛10传媒10,https://8bb881.cdnedge.live/file/avple-asserts/hls/6337db15c4059d2ec8921182/playlist.m3u8
|
||||
🥛10传媒11,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6337d936c4059d2ec8921180/playlist.m3u8
|
||||
🥛10传媒12,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6337d8bdc4059d2ec892117e/playlist.m3u8
|
||||
🥛10传媒13,https://d862cp1.cdnedge.live/file/avple-asserts/hls/6337d8f9c4059d2ec892117f/playlist.m3u8
|
||||
🥛10传媒14,https://je40u1.cdnedge.live/file/avple-asserts/hls/6337d845c4059d2ec892117d/playlist.m3u8
|
||||
🥛10传媒15,https://q2cyl71.cdnedge.live/file/avple-asserts/hls/6337d80bc4059d2ec892117c/playlist.m3u8
|
||||
🥛10传媒16,https://zo3921.cdnedge.live/file/avple-asserts/hls/6337d7cfc4059d2ec892117b/playlist.m3u8
|
||||
🥛10传媒18,https://zo3921.cdnedge.live/file/avple-asserts/hls/63396f60496804778df57462/playlist.m3u8
|
||||
🥛10传媒19,https://8bb88.cdnedge.live/file/avple-images/hls/6336fef6c4059d2ec892117a/playlist.m3u8
|
||||
🍸9传媒01,https://u89ey.cdnedge.live/file/avple-images/hls/633586cad1064e7f7a93e422/playlist.m3u8
|
||||
🍸9传媒02,https://10j99.cdnedge.live/file/avple-images/hls/63358616d1064e7f7a93e421/playlist.m3u8
|
||||
🍸9传媒03,https://d862cp.cdnedge.live/file/avple-images/hls/6334462a40dd715faa4977d6/playlist.m3u8
|
||||
🍸9传媒04,https://zo392.cdnedge.live/file/avple-images/hls/6334481f40dd715faa4977d8/playlist.m3u8
|
||||
🍸9传媒05,https://1xp60.cdnedge.live/file/avple-images/hls/6334472c40dd715faa4977d7/playlist.m3u8
|
||||
🍸9传媒06,https://10j99.cdnedge.live/file/avple-images/hls/6334489540dd715faa4977d9/playlist.m3u8
|
||||
🥤9传媒02,https://8bb88.cdnedge.live/file/avple-images/hls/6332e1f68c53ef345f14e773/playlist.m3u8
|
||||
🥤9传媒03,https://e2fa6.cdnedge.live/file/avple-images/hls/6332e22f8c53ef345f14e774/playlist.m3u8
|
||||
🥤9传媒04,https://je40u.cdnedge.live/file/avple-images/hls/6332e0ca8c53ef345f14e770/playlist.m3u8
|
||||
🥤9传媒05,https://je40u.cdnedge.live/file/avple-images/hls/6332e0ca8c53ef345f14e771/playlist.m3u8
|
||||
🥤9传媒06,https://10j99.cdnedge.live/file/avple-images/hls/6331ae6b2c0e7f1990d72ef1/playlist.m3u8
|
||||
🥤9传媒07,https://d862cp.cdnedge.live/file/avple-images/hls/6331aae62c0e7f1990d72ef0/playlist.m3u8
|
||||
🍶9传媒01,https://8bb88.cdnedge.live/file/avple-images/hls/633198a92c0e7f1990d72ee5/playlist.m3u8
|
||||
🍶9传媒02,https://8bb88.cdnedge.live/file/avple-images/hls/63319d962c0e7f1990d72eef/playlist.m3u8
|
||||
🍶9传媒03,https://je40u.cdnedge.live/file/avple-images/hls/63319c2e2c0e7f1990d72eec/playlist.m3u8
|
||||
🍶9传媒04,https://zo392.cdnedge.live/file/avple-images/hls/6331999a2c0e7f1990d72ee6/playlist.m3u8
|
||||
🍶9传媒05,https://1xp60.cdnedge.live/file/avple-images/hls/633198332c0e7f1990d72ee4/playlist.m3u8
|
||||
🍶9传媒06,https://u89ey.cdnedge.live/file/avple-images/hls/63319ac42c0e7f1990d72ee8/playlist.m3u8
|
||||
🍶9传媒07,https://10j99.cdnedge.live/file/avple-images/hls/63319b3c2c0e7f1990d72ee9/playlist.m3u8
|
||||
🍶9传媒08,https://8bb88.cdnedge.live/file/avple-images/hls/6331977c2c0e7f1990d72ee3/playlist.m3u8
|
||||
🍶9传媒09,https://10j99.cdnedge.live/file/avple-images/hls/633197432c0e7f1990d72ee2/playlist.m3u8
|
||||
🍶9传媒10,https://q2cyl7.cdnedge.live/file/avple-images/hls/6331959d2c0e7f1990d72edf/playlist.m3u8
|
||||
🍶9传媒11,https://e2fa6.cdnedge.live/file/avple-images/hls/633193452c0e7f1990d72edc/playlist.m3u8
|
||||
🍶9传媒12,https://e2fa6.cdnedge.live/file/avple-images/hls/633196152c0e7f1990d72ee0/playlist.m3u8
|
||||
🍶9传媒13,https://q2cyl7.cdnedge.live/file/avple-images/hls/633193f92c0e7f1990d72ede/playlist.m3u8
|
||||
🍶9传媒14,https://u89ey.cdnedge.live/file/avple-images/hls/6331ae6b2c0e7f1990d72ef1/playlist.m3u8
|
||||
🍶9传媒15,https://q2cyl7.cdnedge.live/file/avple-images/hls/6331aae62c0e7f1990d72ef0/playlist.m3u8
|
||||
🍶9传媒16,https://w9n76.cdnedge.live/file/avple-images/hls/63319a8b2c0e7f1990d72ee7/playlist.m3u8
|
||||
🍶9传媒17,https://u89ey.cdnedge.live/file/avple-images/hls/63319ca52c0e7f1990d72eed/playlist.m3u8
|
||||
🍶9传媒18,https://u89ey.cdnedge.live/file/avple-images/hls/633193f92c0e7f1990d72edd/playlist.m3u8
|
||||
🍶9传媒19,https://8bb88.cdnedge.live/file/avple-images/hls/63319bf42c0e7f1990d72eeb/playlist.m3u8
|
||||
🍶9传媒20,https://q2cyl7.cdnedge.live/file/avple-images/hls/6330848520ad9b7e45924718/playlist.m3u8
|
||||
🍶9传媒21,https://10j99.cdnedge.live/file/avple-images/hls/632f1fce05ca4a45ba7c2417/playlist.m3u8
|
||||
🍶9传媒23,https://u89ey.cdnedge.live/file/avple-images/hls/632f1fce05ca4a45ba7c2418/playlist.m3u8
|
||||
🍶9传媒24,https://d862cp.cdnedge.live/file/avple-images/hls/632c79fe260a326d44dbba04/playlist.m3u8
|
||||
🍶9传媒25,https://u89ey.cdnedge.live/file/avple-images/hls/632c79fe260a326d44dbba03/playlist.m3u8
|
||||
🍶9传媒26,https://10j99.cdnedge.live/file/avple-images/hls/632c7242260a326d44dbba02/playlist.m3u8
|
||||
🍶9传媒27,https://w9n76.cdnedge.live/file/avple-images/hls/632c2d2847b7cc4261cfbb6f/playlist.m3u8
|
||||
🍶9传媒28,https://w9n76.cdnedge.live/file/avple-images/hls/632c2ced47b7cc4261cfbb6e/playlist.m3u8
|
||||
🍶9传媒29,https://u89ey.cdnedge.live/file/avple-images/hls/632c2cb247b7cc4261cfbb6d/playlist.m3u8
|
||||
🍶9传媒30,https://zo392.cdnedge.live/file/avple-images/hls/632b9795c9f3ff7545c8c7fb/playlist.m3u8
|
||||
🍹9传媒01,https://d862cp.cdnedge.live/file/avple-images/hls/632acc3114e2941c8eb055c8/playlist.m3u8
|
||||
🍹9传媒02,https://w9n76.cdnedge.live/file/avple-images/hls/632acdd514e2941c8eb055cd/playlist.m3u8
|
||||
🍹9传媒03,https://8bb88.cdnedge.live/file/avple-images/hls/632acd5d14e2941c8eb055cc/playlist.m3u8
|
||||
🍹9传媒04,https://je40u.cdnedge.live/file/avple-images/hls/632acc7114e2941c8eb055c9/playlist.m3u8
|
||||
🍹9传媒05,https://d862cp.cdnedge.live/file/avple-images/hls/632acd2014e2941c8eb055cb/playlist.m3u8
|
||||
🍹9传媒06,https://w9n76.cdnedge.live/file/avple-images/hls/632acd2014e2941c8eb055ca/playlist.m3u8
|
||||
🍷9传媒01,https://10j99.cdnedge.live/file/avple-images/hls/63284e728ad37673010a6937/playlist.m3u8
|
||||
🍷9传媒02,https://8bb88.cdnedge.live/file/avple-images/hls/63284dfb8ad37673010a6936/playlist.m3u8
|
||||
🍷9传媒03,https://10j99.cdnedge.live/file/avple-images/hls/63284eae8ad37673010a6938/playlist.m3u8
|
||||
🍷9传媒04,https://e2fa6.cdnedge.live/file/avple-images/hls/6328553d8ad37673010a6942/playlist.m3u8
|
||||
🍷9传媒05,https://8bb88.cdnedge.live/file/avple-images/hls/632851f68ad37673010a693e/playlist.m3u8
|
||||
🍷9传媒06,https://e2fa6.cdnedge.live/file/avple-images/hls/6328526f8ad37673010a693f/playlist.m3u8
|
||||
🍷9传媒07,https://8bb88.cdnedge.live/file/avple-images/hls/632852aa8ad37673010a6940/playlist.m3u8
|
||||
🍷9传媒08,https://10j99.cdnedge.live/file/avple-images/hls/6328535d8ad37673010a6941/playlist.m3u8
|
||||
🍷9传媒09,https://u89ey.cdnedge.live/file/avple-images/hls/632851428ad37673010a693d/playlist.m3u8
|
||||
🍷9传媒10,https://1xp60.cdnedge.live/file/avple-images/hls/63284ccf8ad37673010a6935/playlist.m3u8
|
||||
🍷9传媒11,https://je40u.cdnedge.live/file/avple-images/hls/63284eea8ad37673010a6939/playlist.m3u8
|
||||
🍷9传媒12,https://8bb88.cdnedge.live/file/avple-images/hls/63284c928ad37673010a6934/playlist.m3u8
|
||||
🍷9传媒13,https://10j99.cdnedge.live/file/avple-images/hls/632845c68ad37673010a6930/playlist.m3u8
|
||||
🍷9传媒14,https://10j99.cdnedge.live/file/avple-images/hls/6328467b8ad37673010a6932/playlist.m3u8
|
||||
🍷9传媒15,https://w9n76.cdnedge.live/file/avple-images/hls/63284f638ad37673010a693a/playlist.m3u8
|
||||
🍷9传媒16,https://zo392.cdnedge.live/file/avple-images/hls/632844d78ad37673010a692e/playlist.m3u8
|
||||
🍷9传媒17,https://je40u.cdnedge.live/file/avple-images/hls/632846048ad37673010a6931/playlist.m3u8
|
||||
🍷9传媒18,https://8bb88.cdnedge.live/file/avple-images/hls/63283dd88ad37673010a692b/playlist.m3u8
|
||||
🍷9传媒19,https://u89ey.cdnedge.live/file/avple-images/hls/63283ca41938f9491dbb506d/playlist.m3u8
|
||||
🍷9传媒20,https://1xp60.cdnedge.live/file/avple-images/hls/632847a78ad37673010a6933/playlist.m3u8
|
||||
🍷9传媒21,https://1xp60.cdnedge.live/file/avple-images/hls/632845158ad37673010a692f/playlist.m3u8
|
||||
🍷9传媒22,https://w9n76.cdnedge.live/file/avple-images/hls/63283e488ad37673010a692d/playlist.m3u8
|
||||
🍷9传媒23,https://1xp60.cdnedge.live/file/avple-images/hls/63283e0d8ad37673010a692c/playlist.m3u8
|
||||
🍷9传媒24,https://zo392.cdnedge.live/file/avple-images/hls/63283c2d1938f9491dbb506c/playlist.m3u8
|
||||
🍷9传媒25,https://8bb88.cdnedge.live/file/avple-images/hls/632734b41938f9491dbb5069/playlist.m3u8
|
||||
🍷9传媒26,https://w9n76.cdnedge.live/file/avple-images/hls/6327361b1938f9491dbb506b/playlist.m3u8
|
||||
🍷9传媒27,https://je40u.cdnedge.live/file/avple-images/hls/632735701938f9491dbb506a/playlist.m3u8
|
||||
🍷9传媒28,https://8bb88.cdnedge.live/file/avple-images/hls/63272cf81938f9491dbb5065/playlist.m3u8
|
||||
🍷9传媒29,https://1xp60.cdnedge.live/file/avple-images/hls/63272e621938f9491dbb5068/playlist.m3u8
|
||||
🍷9传媒30,https://zo392.cdnedge.live/file/avple-images/hls/63272dac1938f9491dbb5067/playlist.m3u8
|
||||
🍷9传媒31,https://w9n76.cdnedge.live/file/avple-images/hls/63272cf81938f9491dbb5066/playlist.m3u8
|
||||
🍷9传媒32,https://w9n76.cdnedge.live/file/avple-images/hls/63272c441938f9491dbb5064/playlist.m3u8
|
||||
🍷9传媒34,https://e2fa6.cdnedge.live/file/avple-images/hls/63272ab5227dd84933e44a4a/playlist.m3u8
|
||||
🍾9传媒01,https://1xp60.cdnedge.live/file/avple-images/hls/6324b9c7c2c2b03978ffd222/playlist.m3u8
|
||||
🍾9传媒02,https://w9n76.cdnedge.live/file/avple-images/hls/6324b9c6c2c2b03978ffd221/playlist.m3u8
|
||||
🍾9传媒05,https://zo392.cdnedge.live/file/avple-images/hls/6324abb7c2c2b03978ffd21e/playlist.m3u8
|
||||
🍾9传媒06,https://je40u.cdnedge.live/file/avple-images/hls/6324a707c2c2b03978ffd21d/playlist.m3u8
|
||||
🍾9传媒07,https://1xp60.cdnedge.live/file/avple-images/hls/6324a255c2c2b03978ffd21c/playlist.m3u8
|
||||
🍾9传媒08,https://e2fa6.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8e/playlist.m3u8
|
||||
🍾9传媒09,https://8bb88.cdnedge.live/file/avple-images/hls/6323154e223d14081c6ed4c4/playlist.m3u8
|
||||
🍾9传媒10,https://zo392.cdnedge.live/file/avple-images/hls/63231af0223d14081c6ed4c6/playlist.m3u8
|
||||
🍾9传媒11,https://8bb88.cdnedge.live/file/avple-images/hls/63231a3b223d14081c6ed4c5/playlist.m3u8
|
||||
🍾9传媒12,https://1xp60.cdnedge.live/file/avple-images/hls/632307fa223d14081c6ed4c2/playlist.m3u8
|
||||
🍾9传媒13,https://w9n76.cdnedge.live/file/avple-images/hls/63230836223d14081c6ed4c3/playlist.m3u8
|
||||
🍾9传媒14,https://1xp60.cdnedge.live/file/avple-images/hls/632306d0223d14081c6ed4c0/playlist.m3u8
|
||||
🍾9传媒15,https://je40u.cdnedge.live/file/avple-images/hls/63230693223d14081c6ed4bf/playlist.m3u8
|
||||
🍾9传媒16,https://d862cp.cdnedge.live/file/avple-images/hls/632305e0223d14081c6ed4be/playlist.m3u8
|
||||
🍾9传媒17,https://1xp60.cdnedge.live/file/avple-images/hls/632305a4223d14081c6ed4bd/playlist.m3u8
|
||||
🍾9传媒18,https://8bb88.cdnedge.live/file/avple-images/hls/632304f2223d14081c6ed4bc/playlist.m3u8
|
||||
🍾9传媒19,https://1xp60.cdnedge.live/file/avple-images/hls/632304b3223d14081c6ed4bb/playlist.m3u8
|
||||
🍾9传媒20,https://8bb88.cdnedge.live/file/avple-images/hls/63230400223d14081c6ed4b9/playlist.m3u8
|
||||
🍾9传媒21,https://8bb88.cdnedge.live/file/avple-images/hls/6323043b223d14081c6ed4ba/playlist.m3u8
|
||||
🍾9传媒22,https://je40u.cdnedge.live/file/avple-images/hls/6323025e223d14081c6ed4b8/playlist.m3u8
|
||||
🍾9传媒23,https://zo392.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8d/playlist.m3u8
|
||||
🍾9传媒24,https://je40u.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8c/playlist.m3u8
|
||||
🍾9传媒25,https://je40u.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8b/playlist.m3u8
|
||||
🍾9传媒26,https://zo392.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8a/playlist.m3u8
|
||||
🍾9传媒27,https://d862cp.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b89/playlist.m3u8
|
||||
🍾9传媒28,https://q2cyl7.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b88/playlist.m3u8
|
||||
🍾9传媒29,https://u89ey.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b87/playlist.m3u8
|
||||
🍾9传媒30,https://q2cyl7.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b86/playlist.m3u8
|
||||
🍾9传媒31,https://u89ey.cdnedge.live/file/avple-images/hls/6324823b742ceb2b85f25c54/playlist.m3u8
|
||||
☕️9传媒01,https://je40u.cdnedge.live/file/avple-images/hls/6321c10095e49551825655cc/playlist.m3u8
|
||||
☕️9传媒02,https://8bb88.cdnedge.live/file/avple-images/hls/6321aefc95e49551825655ca/playlist.m3u8
|
||||
☕️9传媒03,https://8bb88.cdnedge.live/file/avple-images/hls/6321add095e49551825655c6/playlist.m3u8
|
||||
☕️9传媒04,https://je40u.cdnedge.live/file/avple-images/hls/6321ae8695e49551825655c8/playlist.m3u8
|
||||
☕️9传媒05,https://w9n76.cdnedge.live/file/avple-images/hls/6321ad5b95e49551825655c4/playlist.m3u8
|
||||
☕️9传媒06,https://e2fa6.cdnedge.live/file/avple-images/hls/6321ae4995e49551825655c7/playlist.m3u8
|
||||
☕️9传媒07,https://8bb88.cdnedge.live/file/avple-images/hls/6321ad9795e49551825655c5/playlist.m3u8
|
||||
☕️9传媒08,https://8bb88.cdnedge.live/file/avple-images/hls/6321aec195e49551825655c9/playlist.m3u8
|
||||
☕️9传媒09,https://q2cyl7.cdnedge.live/file/avple-images/hls/6321ace195e49551825655c3/playlist.m3u8
|
||||
☕️9传媒10,https://u89ey.cdnedge.live/file/avple-images/hls/6321ac2d95e49551825655c1/playlist.m3u8
|
||||
☕️9传媒11,https://e2fa6.cdnedge.live/file/avple-images/hls/6321abb595e49551825655c0/playlist.m3u8
|
||||
☕️9传媒12,https://w9n76.cdnedge.live/file/avple-images/hls/6321aa4d95e49551825655be/playlist.m3u8
|
||||
☕️9传媒13,https://8bb88.cdnedge.live/file/avple-images/hls/6321aac695e49551825655bf/playlist.m3u8
|
||||
🥂9传媒01,https://1xp60.cdnedge.live/file/avple-images/hls/632077edf43549343a76ac0c/playlist.m3u8
|
||||
🥂9传媒02,https://zo392.cdnedge.live/file/avple-images/hls/632035a4d1d35e7485b7d06d/playlist.m3u8
|
||||
🥂9传媒03,https://q2cyl7.cdnedge.live/file/avple-images/hls/6320347ad1d35e7485b7d06a/playlist.m3u8
|
||||
🥂9传媒04,https://je40u.cdnedge.live/file/avple-images/hls/632034f3d1d35e7485b7d06b/playlist.m3u8
|
||||
🥂9传媒05,https://d862cp.cdnedge.live/file/avple-images/hls/6320334dd1d35e7485b7d067/playlist.m3u8
|
||||
🥂9传媒06,https://zo392.cdnedge.live/file/avple-images/hls/632032d5d1d35e7485b7d066/playlist.m3u8
|
||||
🥂9传媒07,https://u89ey.cdnedge.live/file/avple-images/hls/63203530d1d35e7485b7d06c/playlist.m3u8
|
||||
🥂9传媒08,https://zo392.cdnedge.live/file/avple-images/hls/63203389d1d35e7485b7d068/playlist.m3u8
|
||||
🥂9传媒09,https://10j99.cdnedge.live/file/avple-images/hls/63203299d1d35e7485b7d065/playlist.m3u8
|
||||
🐣9传媒01,https://je40u.cdnedge.live/file/avple-images/hls/631362f3bb869839587d7405/playlist.m3u8
|
||||
🐣9传媒02,https://e2fa6.cdnedge.live/file/avple-images/hls/6313623fbb869839587d7404/playlist.m3u8
|
||||
🐣9传媒03,https://q2cyl7.cdnedge.live/file/avple-images/hls/6313618bbb869839587d7403/playlist.m3u8
|
||||
🐣9传媒04,https://u89ey.cdnedge.live/file/avple-images/hls/63135e06bb869839587d7402/playlist.m3u8
|
||||
🐣9传媒05,https://zo392.cdnedge.live/file/avple-images/hls/63135743bb869839587d73ff/playlist.m3u8
|
||||
🐣9传媒06,https://e2fa6.cdnedge.live/file/avple-images/hls/63135653bb869839587d73fc/playlist.m3u8
|
||||
🐣9传媒07,https://w9n76.cdnedge.live/file/avple-images/hls/63135691bb869839587d73fd/playlist.m3u8
|
||||
🐣9传媒08,https://8bb88.cdnedge.live/file/avple-images/hls/631355dbbb869839587d73fb/playlist.m3u8
|
||||
🐣9传媒09,https://je40u.cdnedge.live/file/avple-images/hls/631336ecbb869839587d73f1/playlist.m3u8
|
||||
🐣9传媒10,https://q2cyl7.cdnedge.live/file/avple-images/hls/63133676bb869839587d73f0/playlist.m3u8
|
||||
🐣9传媒11,https://d862cp.cdnedge.live/file/avple-images/hls/63133b9cbb869839587d73fa/playlist.m3u8
|
||||
🐣9传媒12,https://je40u.cdnedge.live/file/avple-images/hls/6313363bbb869839587d73ef/playlist.m3u8
|
||||
🐣9传媒13,https://je40u.cdnedge.live/file/avple-images/hls/63133b61bb869839587d73f9/playlist.m3u8
|
||||
🐣9传媒14,https://q2cyl7.cdnedge.live/file/avple-images/hls/63133854bb869839587d73f5/playlist.m3u8
|
||||
🐣9传媒15,https://8bb88.cdnedge.live/file/avple-images/hls/63133980bb869839587d73f8/playlist.m3u8
|
||||
🐣9传媒16,https://d862cp.cdnedge.live/file/avple-images/hls/63133908bb869839587d73f7/playlist.m3u8
|
||||
🐣9传媒17,https://8bb88.cdnedge.live/file/avple-images/hls/63133818bb869839587d73f4/playlist.m3u8
|
||||
🐣9传媒18,https://8bb88.cdnedge.live/file/avple-images/hls/631338cdbb869839587d73f6/playlist.m3u8
|
||||
🐣9传媒19,https://u89ey.cdnedge.live/file/avple-images/hls/631337a1bb869839587d73f3/playlist.m3u8
|
||||
🐣9传媒20,https://je40u.cdnedge.live/file/avple-images/hls/63133729bb869839587d73f2/playlist.m3u8
|
||||
🐣9传媒21,https://8bb88.cdnedge.live/file/avple-images/hls/63133585bb869839587d73ee/playlist.m3u8
|
||||
🐣9传媒22,https://q2cyl7.cdnedge.live/file/avple-images/hls/6313354bbb869839587d73ed/playlist.m3u8
|
||||
🐣9传媒23,https://w9n76.cdnedge.live/file/avple-images/hls/631333a5bb869839587d73ec/playlist.m3u8
|
||||
🐣9传媒24,https://d862cp.cdnedge.live/file/avple-images/hls/6313332ebb869839587d73eb/playlist.m3u8
|
||||
🐣9传媒26,https://e2fa6.cdnedge.live/file/avple-images/hls/6313004a8069654c55edcb4a/playlist.m3u8
|
||||
🐣9传媒27,https://d862cp.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4107/playlist.m3u8
|
||||
🐣9传媒28,https://w9n76.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4106/playlist.m3u8
|
||||
🐣9传媒29,https://10j99.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4105/playlist.m3u8
|
||||
🐣9传媒31,https://8bb88.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4103/playlist.m3u8
|
||||
🐣9传媒32,https://8bb88.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4102/playlist.m3u8
|
||||
🐣9传媒33,https://q2cyl7.cdnedge.live/file/avple-images/hls/63128e992435a416dc59afa9/playlist.m3u8
|
||||
🐣9传媒34,https://8bb88.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4101/playlist.m3u8
|
||||
🐣9传媒36,https://1xp60.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b40ff/playlist.m3u8
|
||||
🐣9传媒37,https://8bb88.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b40fe/playlist.m3u8
|
||||
🐣9传媒39,https://1xp60.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b40fc/playlist.m3u8
|
||||
🐣9传媒40,https://w9n76.cdnedge.live/file/avple-images/hls/63128e992435a416dc59afa8/playlist.m3u8
|
||||
🐣9传媒41,https://d862cp.cdnedge.live/file/avple-images/hls/631220ea2435a416dc59afa6/playlist.m3u8
|
||||
🐣9传媒42,https://w9n76.cdnedge.live/file/avple-images/hls/63121ece2435a416dc59afa4/playlist.m3u8
|
||||
🐣9传媒43,https://e2fa6.cdnedge.live/file/avple-images/hls/6310837b7fe05c72404c7922/playlist.m3u8
|
||||
🐣9传媒44,https://w9n76.cdnedge.live/file/avple-images/hls/630f69883c7f894488546bea/playlist.m3u8
|
||||
🐣9传媒45,https://q2cyl7.cdnedge.live/file/avple-images/hls/630f69883c7f894488546be9/playlist.m3u8
|
||||
🐣9传媒46,https://u89ey.cdnedge.live/file/avple-images/hls/630f519f3c7f894488546be7/playlist.m3u8
|
||||
🐣9传媒47,https://8bb88.cdnedge.live/file/avple-images/hls/630f519e3c7f894488546be6/playlist.m3u8
|
||||
🐣9传媒48,https://je40u.cdnedge.live/file/avple-images/hls/630f0714f6f3c02fb820950d/playlist.m3u8
|
||||
🐣9传媒49,https://w9n76.cdnedge.live/file/avple-images/hls/630e86b1c7dee322f1acb092/playlist.m3u8
|
||||
🐣9传媒50,https://1xp60.cdnedge.live/file/avple-images/hls/630e85c2c7dee322f1acb08f/playlist.m3u8
|
||||
🐣9传媒51,https://zo392.cdnedge.live/file/avple-images/hls/630e8677c7dee322f1acb091/playlist.m3u8
|
||||
🐣9传媒52,https://je40u.cdnedge.live/file/avple-images/hls/630e85fec7dee322f1acb090/playlist.m3u8
|
||||
🐣9传媒53,https://je40u.cdnedge.live/file/avple-images/hls/630e8586c7dee322f1acb08e/playlist.m3u8
|
||||
🐣9传媒54,https://8bb88.cdnedge.live/file/avple-images/hls/630e493cf6f3c02fb820950c/playlist.m3u8
|
||||
🐣9传媒55,https://w9n76.cdnedge.live/file/avple-images/hls/630e31cdf6f3c02fb820950b/playlist.m3u8
|
||||
🐣9传媒56,https://q2cyl7.cdnedge.live/file/avple-images/hls/630e2ac5f6f3c02fb820950a/playlist.m3u8
|
||||
🐣9传媒57,https://e2fa6.cdnedge.live/file/avple-images/hls/630e286cf6f3c02fb8209509/playlist.m3u8
|
||||
🐣9传媒58,https://w9n76.cdnedge.live/file/avple-images/hls/630dff6ac7dee322f1acb08d/playlist.m3u8
|
||||
🐣9传媒59,https://1xp60.cdnedge.live/file/avple-images/hls/630d28c94cd2c231d6ebd8c7/playlist.m3u8
|
||||
🐣9传媒60,https://zo392.cdnedge.live/file/avple-images/hls/630d28894cd2c231d6ebd8c6/playlist.m3u8
|
||||
🐣9传媒61,https://je40u.cdnedge.live/file/avple-images/hls/630d28514cd2c231d6ebd8c5/playlist.m3u8
|
||||
🐣9传媒62,https://e2fa6.cdnedge.live/file/avple-images/hls/630d27d64cd2c231d6ebd8c4/playlist.m3u8
|
||||
🐣9传媒63,https://8bb88.cdnedge.live/file/avple-images/hls/630cbf7e4cd2c231d6ebd8c3/playlist.m3u8
|
||||
🐣9传媒64,https://zo392.cdnedge.live/file/avple-images/hls/630ca9b24cd2c231d6ebd8c2/playlist.m3u8
|
||||
🍋8传媒01,https://e2fa6.cdnedge.live/file/avple-images/hls/630f519f3c7f894488546be7/playlist.m3u8
|
||||
🍋8传媒02,https://e2fa6.cdnedge.live/file/avple-images/hls/630f519e3c7f894488546be6/playlist.m3u8
|
||||
🍋8传媒03,https://8bb88.cdnedge.live/file/avple-images/hls/630f0714f6f3c02fb820950d/playlist.m3u8
|
||||
🍋8传媒04,https://q2cyl7.cdnedge.live/file/avple-images/hls/630e86b1c7dee322f1acb092/playlist.m3u8
|
||||
🍋8传媒05,https://q2cyl7.cdnedge.live/file/avple-images/hls/630e85c2c7dee322f1acb08f/playlist.m3u8
|
||||
🍋8传媒06,https://je40u.cdnedge.live/file/avple-images/hls/630e8677c7dee322f1acb091/playlist.m3u8
|
||||
🍋8传媒08,https://d862cp.cdnedge.live/file/avple-images/hls/630e8586c7dee322f1acb08e/playlist.m3u8
|
||||
🍋8传媒09,https://d862cp.cdnedge.live/file/avple-images/hls/630e493cf6f3c02fb820950c/playlist.m3u8
|
||||
🍋8传媒10,https://10j99.cdnedge.live/file/avple-images/hls/630e31cdf6f3c02fb820950b/playlist.m3u8
|
||||
🍋8传媒11,https://10j99.cdnedge.live/file/avple-images/hls/630e2ac5f6f3c02fb820950a/playlist.m3u8
|
||||
🍋8传媒12,https://q2cyl7.cdnedge.live/file/avple-images/hls/630e286cf6f3c02fb8209509/playlist.m3u8
|
||||
🍋8传媒13,https://q2cyl7.cdnedge.live/file/avple-images/hls/630dff6ac7dee322f1acb08d/playlist.m3u8
|
||||
🍋5传媒15,https://u89ey.cdnedge.live/file/avple-images/hls/630d28894cd2c231d6ebd8c6/playlist.m3u8
|
||||
🍋8传媒16,https://d862cp.cdnedge.live/file/avple-images/hls/630d28514cd2c231d6ebd8c5/playlist.m3u8
|
||||
🍋8传媒17,https://1xp60.cdnedge.live/file/avple-images/hls/630d27d64cd2c231d6ebd8c4/playlist.m3u8
|
||||
🍋8传媒18,https://d862cp.cdnedge.live/file/avple-images/hls/630cf30d683d150459e113f1/playlist.m3u8
|
||||
🐒8传媒01,https://d862cp.cdnedge.live/file/avple-images/hls/630bfae5fa4dc50519c9fa7b/playlist.m3u8
|
||||
🐒8传媒02,https://e2fa6.cdnedge.live/file/avple-images/hls/630bf9f5fa4dc50519c9fa78/playlist.m3u8
|
||||
🐒8传媒03,https://u89ey.cdnedge.live/file/avple-images/hls/630bfb1ffa4dc50519c9fa7c/playlist.m3u8
|
||||
🐒8传媒04,https://q2cyl7.cdnedge.live/file/avple-images/hls/630bfaa7fa4dc50519c9fa7a/playlist.m3u8
|
||||
🐒8传媒05,https://je40u.cdnedge.live/file/avple-images/hls/630bf9bafa4dc50519c9fa77/playlist.m3u8
|
||||
🐒8传媒06,https://zo392.cdnedge.live/file/avple-images/hls/630bf8cafa4dc50519c9fa74/playlist.m3u8
|
||||
🐒8传媒07,https://zo392.cdnedge.live/file/avple-images/hls/630bf940fa4dc50519c9fa76/playlist.m3u8
|
||||
🐒8传媒08,https://10j99.cdnedge.live/file/avple-images/hls/630bf906fa4dc50519c9fa75/playlist.m3u8
|
||||
🐒8传媒09,https://je40u.cdnedge.live/file/avple-images/hls/630bf88dfa4dc50519c9fa73/playlist.m3u8
|
||||
🐒8传媒10,https://u89ey.cdnedge.live/file/avple-images/hls/630bf7d9fa4dc50519c9fa71/playlist.m3u8
|
||||
🐒8传媒11,https://d862cp.cdnedge.live/file/avple-images/hls/630bf816fa4dc50519c9fa72/playlist.m3u8
|
||||
🐒8传媒12,https://w9n76.cdnedge.live/file/avple-images/hls/630bf79dfa4dc50519c9fa70/playlist.m3u8
|
||||
🐒8传媒13,https://je40u.cdnedge.live/file/avple-images/hls/630bf762fa4dc50519c9fa6f/playlist.m3u8
|
||||
🐒8传媒14,https://u89ey.cdnedge.live/file/avple-images/hls/630bf6aefa4dc50519c9fa6d/playlist.m3u8
|
||||
🐒8传媒15,https://8bb88.cdnedge.live/file/avple-images/hls/630bf726fa4dc50519c9fa6e/playlist.m3u8
|
||||
⛸8传媒01,https://1xp60.cdnedge.live/file/avple-images/hls/630abc1a07a4b05da7f900ff/playlist.m3u8
|
||||
⛸8传媒02,https://je40u.cdnedge.live/file/avple-images/hls/630ab89407a4b05da7f900fe/playlist.m3u8
|
||||
⛸8传媒03,https://w9n76.cdnedge.live/file/avple-images/hls/630a922f07a4b05da7f900fd/playlist.m3u8
|
||||
⛸8传媒04,https://1xp60.cdnedge.live/file/avple-images/hls/630a91f407a4b05da7f900fc/playlist.m3u8
|
||||
⛸8传媒05,https://q2cyl7.cdnedge.live/file/avple-images/hls/630a917f07a4b05da7f900fb/playlist.m3u8
|
||||
⛸8传媒06,https://je40u.cdnedge.live/file/avple-images/hls/630a90ca07a4b05da7f900f9/playlist.m3u8
|
||||
⛸8传媒07,https://w9n76.cdnedge.live/file/avple-images/hls/630a8dfa07a4b05da7f900f1/playlist.m3u8
|
||||
⛸8传媒08,https://zo392.cdnedge.live/file/avple-images/hls/630a901507a4b05da7f900f7/playlist.m3u8
|
||||
⛸8传媒09,https://je40u.cdnedge.live/file/avple-images/hls/630a8e7207a4b05da7f900f2/playlist.m3u8
|
||||
⛸8传媒10,https://d862cp.cdnedge.live/file/avple-images/hls/630a8fd807a4b05da7f900f6/playlist.m3u8
|
||||
⛸8传媒11,https://u89ey.cdnedge.live/file/avple-images/hls/630a8f6107a4b05da7f900f5/playlist.m3u8
|
||||
⛸8传媒12,https://q2cyl7.cdnedge.live/file/avple-images/hls/630a8f2507a4b05da7f900f4/playlist.m3u8
|
||||
⛸8传媒13,https://10j99.cdnedge.live/file/avple-images/hls/630a8eae07a4b05da7f900f3/playlist.m3u8
|
||||
⛸8传媒14,https://1xp60.cdnedge.live/file/avple-images/hls/630a8dbe07a4b05da7f900f0/playlist.m3u8
|
||||
⛸8传媒15,https://8bb88.cdnedge.live/file/avple-images/hls/630a8d0b07a4b05da7f900ee/playlist.m3u8
|
||||
⛸8传媒16,https://1xp60.cdnedge.live/file/avple-images/hls/630a8d8407a4b05da7f900ef/playlist.m3u8
|
||||
⛸8传媒17,https://e2fa6.cdnedge.live/file/avple-images/hls/630a8c5707a4b05da7f900ec/playlist.m3u8
|
||||
⛸8传媒18,https://q2cyl7.cdnedge.live/file/avple-images/hls/630a8c5d07a4b05da7f900ed/playlist.m3u8
|
||||
⛸8传媒19,https://q2cyl7.cdnedge.live/file/avple-images/hls/6309b3050c1740329295a1e4/playlist.m3u8
|
||||
⛸8传媒20,https://w9n76.cdnedge.live/file/avple-images/hls/630967c8c505483c60dff7ed/playlist.m3u8
|
||||
🐸8传媒01,https://zo392.cdnedge.live/file/avple-images/hls/62f73e05c55c9369d95e7600/playlist.m3u8
|
||||
🐸8传媒02,https://10j99.cdnedge.live/file/avple-images/hls/62f63bfa4ab02605f03abaf1/playlist.m3u8
|
||||
🐸8传媒03,https://1xp60.cdnedge.live/file/avple-images/hls/62f63bfa4ab02605f03abaf0/playlist.m3u8
|
||||
🐸8传媒04,https://q2cyl7.cdnedge.live/file/avple-images/hls/62f62722c55c9369d95e75fc/playlist.m3u8
|
||||
🐸8传媒05,https://u89ey.cdnedge.live/file/avple-images/hls/62f616b781f2a95ab24592ef/playlist.m3u8
|
||||
🐸8传媒06,https://10j99.cdnedge.live/file/avple-images/hls/62f5eedf81f2a95ab24592ee/playlist.m3u8
|
||||
🐸8传媒07,https://8bb88.cdnedge.live/file/avple-images/hls/62f5ea2d81f2a95ab24592ed/playlist.m3u8
|
||||
🐸8传媒08,https://zo392.cdnedge.live/file/avple-images/hls/62f5daf2d99d6253e26e1ff8/playlist.m3u8
|
||||
🐸8传媒09,https://8bb88.cdnedge.live/file/avple-images/hls/62f5c524d99d6253e26e1ff7/playlist.m3u8
|
||||
🐸8传媒10,https://je40u.cdnedge.live/file/avple-images/hls/62f5c471d99d6253e26e1ff6/playlist.m3u8
|
||||
🐸8传媒11,https://w9n76.cdnedge.live/file/avple-images/hls/62f55b3681f2a95ab24592e9/playlist.m3u8
|
||||
🐸8传媒12,https://8bb88.cdnedge.live/file/avple-images/hls/62f51caed99d6253e26e1ff2/playlist.m3u8
|
||||
🐸8传媒13,https://je40u.cdnedge.live/file/avple-images/hls/62f51c73d99d6253e26e1ff1/playlist.m3u8
|
||||
🐸8传媒14,https://1xp60.cdnedge.live/file/avple-images/hls/62f51b10d99d6253e26e1fed/playlist.m3u8
|
||||
🐸8传媒15,https://zo392.cdnedge.live/file/avple-images/hls/62f51bf8d99d6253e26e1fee/playlist.m3u8
|
||||
🐸8传媒16,https://je40u.cdnedge.live/file/avple-images/hls/62f51a59d99d6253e26e1fec/playlist.m3u8
|
||||
🐸8传媒17,https://u89ey.cdnedge.live/file/avple-images/hls/62f51a1dd99d6253e26e1feb/playlist.m3u8
|
||||
🐸8传媒18,https://1xp60.cdnedge.live/file/avple-images/hls/62f5187fd99d6253e26e1fe9/playlist.m3u8
|
||||
🐸8传媒19,https://w9n76.cdnedge.live/file/avple-images/hls/62f5183dd99d6253e26e1fe8/playlist.m3u8
|
||||
🐸8传媒20,https://d862cp.cdnedge.live/file/avple-images/hls/62f517c7d99d6253e26e1fe7/playlist.m3u8
|
||||
🐸8传媒21,https://10j99.cdnedge.live/file/avple-images/hls/62f51612d99d6253e26e1fe5/playlist.m3u8
|
||||
🐸8传媒22,https://1xp60.cdnedge.live/file/avple-images/hls/62f516c6d99d6253e26e1fe6/playlist.m3u8
|
||||
🐸8传媒23,https://zo392.cdnedge.live/file/avple-images/hls/62f51611d99d6253e26e1fe4/playlist.m3u8
|
||||
🐸8传媒24,https://1xp60.cdnedge.live/file/avple-images/hls/62f5155ed99d6253e26e1fe2/playlist.m3u8
|
||||
🐸8传媒25,https://10j99.cdnedge.live/file/avple-images/hls/62f5155ed99d6253e26e1fe3/playlist.m3u8
|
||||
🐸8传媒26,https://u89ey.cdnedge.live/file/avple-images/hls/62f4df8d04bd5653efa7ba5d/playlist.m3u8
|
||||
🧜♂8传媒01,https://u89ey.cdnedge.live/file/avple-images/hls/62f3c11304f0994202453478/playlist.m3u8
|
||||
🧜♂8传媒02,https://u89ey.cdnedge.live/file/avple-images/hls/62f3ae4f04f0994202453477/playlist.m3u8
|
||||
🧜♂8传媒03,https://e2fa6.cdnedge.live/file/avple-images/hls/62f3988eba174028fd51cc0f/playlist.m3u8
|
||||
🧜♂8传媒04,https://8bb88.cdnedge.live/file/avple-images/hls/62f397dbba174028fd51cc0d/playlist.m3u8
|
||||
🧜♂8传媒05,https://w9n76.cdnedge.live/file/avple-images/hls/62f39728ba174028fd51cc0b/playlist.m3u8
|
||||
🧜♂8传媒06,https://w9n76.cdnedge.live/file/avple-images/hls/62f39764ba174028fd51cc0c/playlist.m3u8
|
||||
🧜♂8传媒07,https://u89ey.cdnedge.live/file/avple-images/hls/62f396eaba174028fd51cc0a/playlist.m3u8
|
||||
🧜♂8传媒08,https://zo392.cdnedge.live/file/avple-images/hls/62f39636ba174028fd51cc08/playlist.m3u8
|
||||
🧜♂8传媒09,https://d862cp.cdnedge.live/file/avple-images/hls/62f395fcba174028fd51cc07/playlist.m3u8
|
||||
🧜♂8传媒10,https://zo392.cdnedge.live/file/avple-images/hls/62f3950bba174028fd51cc05/playlist.m3u8
|
||||
🧜♂8传媒11,https://d862cp.cdnedge.live/file/avple-images/hls/62f39582ba174028fd51cc06/playlist.m3u8
|
||||
🧜♂8传媒12,https://u89ey.cdnedge.live/file/avple-images/hls/62f3941cba174028fd51cc04/playlist.m3u8
|
||||
🧜♂8传媒13,https://d862cp.cdnedge.live/file/avple-images/hls/62f39369ba174028fd51cc03/playlist.m3u8
|
||||
🧜♂8传媒14,https://10j99.cdnedge.live/file/avple-images/hls/62f3932cba174028fd51cc02/playlist.m3u8
|
||||
🧜♂8传媒15,https://d862cp.cdnedge.live/file/avple-images/hls/62f392efba174028fd51cc01/playlist.m3u8
|
||||
🧜♂8传媒16,https://je40u.cdnedge.live/file/avple-images/hls/62f38fd604f0994202453476/playlist.m3u8
|
||||
🧜♂8传媒17,https://zo392.cdnedge.live/file/avple-images/hls/62f35c453e75054da484d8af/playlist.m3u8
|
||||
🧜♂8传媒18,https://d862cp.cdnedge.live/file/avple-images/hls/62f260cb024ea879d37a9097/playlist.m3u8
|
||||
🧜♂8传媒19,https://q2cyl7.cdnedge.live/file/avple-images/hls/62f203c0fa1155511e14a2f1/playlist.m3u8
|
||||
🧜♂8传媒20,https://1xp60.cdnedge.live/file/avple-images/hls/62f1fa5ffa1155511e14a2f0/playlist.m3u8
|
||||
🧜♂8传媒21,https://u89ey.cdnedge.live/file/avple-images/hls/62f1771dfa1155511e14a2ee/playlist.m3u8
|
||||
🧜♂8传媒22,https://10j99.cdnedge.live/file/avple-images/hls/62f1726dfa1155511e14a2ed/playlist.m3u8
|
||||
🧜♂8传媒23,https://e2fa6.cdnedge.live/file/avple-images/hls/62f13eddfa1155511e14a2eb/playlist.m3u8
|
||||
🧜♂8传媒24,https://je40u.cdnedge.live/file/avple-images/hls/62f13a2dfa1155511e14a2ea/playlist.m3u8
|
||||
🦔8传媒01,https://u89ey.cdnedge.live/file/avple-images/hls/62f11fc4ee458151a3a9ca53/playlist.m3u8
|
||||
🦔8传媒02,https://8bb88.cdnedge.live/file/avple-images/hls/62f120b1ee458151a3a9ca56/playlist.m3u8
|
||||
🦔8传媒03,https://w9n76.cdnedge.live/file/avple-images/hls/62f12382ee458151a3a9ca5b/playlist.m3u8
|
||||
🦔8传媒04,https://1xp60.cdnedge.live/file/avple-images/hls/62f12307ee458151a3a9ca59/playlist.m3u8
|
||||
🦔8传媒05,https://w9n76.cdnedge.live/file/avple-images/hls/62f12343ee458151a3a9ca5a/playlist.m3u8
|
||||
🦔8传媒06,https://je40u.cdnedge.live/file/avple-images/hls/62f1228dee458151a3a9ca58/playlist.m3u8
|
||||
🦔8传媒07,https://zo392.cdnedge.live/file/avple-images/hls/62f12252ee458151a3a9ca57/playlist.m3u8
|
||||
🦔8传媒08,https://10j99.cdnedge.live/file/avple-images/hls/62f1246cee458151a3a9ca5c/playlist.m3u8
|
||||
🦔8传媒09,https://10j99.cdnedge.live/file/avple-images/hls/62f11b14ee458151a3a9ca4e/playlist.m3u8
|
||||
🦔8传媒10,https://1xp60.cdnedge.live/file/avple-images/hls/62f11bc6ee458151a3a9ca51/playlist.m3u8
|
||||
🦔8传媒11,https://d862cp.cdnedge.live/file/avple-images/hls/62f11b89ee458151a3a9ca50/playlist.m3u8
|
||||
🦔8传媒12,https://w9n76.cdnedge.live/file/avple-images/hls/62f11b52ee458151a3a9ca4f/playlist.m3u8
|
||||
🐊8传媒01,https://10j99.cdnedge.live/file/avple-images/hls/62efb7752c13962b4636f3c0/playlist.m3u8
|
||||
🐊8传媒02,https://u89ey.cdnedge.live/file/avple-images/hls/62efb0702c13962b4636f3bf/playlist.m3u8
|
||||
🐊8传媒03,https://1xp60.cdnedge.live/file/avple-images/hls/62ef7a856e86264ecd8ae1cc/playlist.m3u8
|
||||
🐊8传媒04,https://1xp60.cdnedge.live/file/avple-images/hls/62ef75d56e86264ecd8ae1cb/playlist.m3u8
|
||||
🐊8传媒05,https://w9n76.cdnedge.live/file/avple-images/hls/62ef71276e86264ecd8ae1ca/playlist.m3u8
|
||||
🐊8传媒06,https://q2cyl7.cdnedge.live/file/avple-images/hls/61db6dad5fb6a835028c9aed/playlist.m3u8
|
||||
🐊8传媒07,https://u89ey.cdnedge.live/file/avple-images/hls/605d78241eac1e0435da7769/playlist.m3u8
|
||||
🐊8传媒08,https://w9n76.cdnedge.live/file/avple-images/hls/60b20c39810792441242d124/playlist.m3u8
|
||||
🐊8传媒09,https://d862cp.cdnedge.live/file/avple-images/hls/62c9e8c1ad2c513501b2d860/playlist.m3u8
|
||||
🐊8传媒10,https://je40u.cdnedge.live/file/avple-images/hls/62bd88f0d0fa6a48496bbf60/playlist.m3u8
|
||||
🐊8传媒11,https://u89ey.cdnedge.live/file/avple-images/hls/62639706f191c17934f01daa/playlist.m3u8
|
||||
🐊8传媒12,https://8bb88.cdnedge.live/file/avple-images/hls/6249a0afeb0b5f202d561606/playlist.m3u8
|
||||
@@ -0,0 +1,524 @@
|
||||
|
||||
|
||||
国产色情,#genre#
|
||||
|
||||
一直流出白浆的小穴!!,https://vip2.slbfsl.com/20230421/0Gt93IDS/index.m3u8
|
||||
订婚前的回忆-香菜公主,https://vip2.slbfsl.com/20230325/hESd97Cu/index.m3u8
|
||||
轻轨小妞随我玩,https://vip2.slbfsl.com/20230325/xweG28uQ/index.m3u8
|
||||
外围妹穿着黑丝沙发干到床上,https://vip2.slbfsl.com/20230416/C3R6WdBQ/index.m3u8
|
||||
车模呻吟声相当销魂,https://vip2.slbfsl.com/20230324/PXrlEFQb/index.m3u8
|
||||
周末小情侣房间操逼 口活一流吸吮大黑屌 拿JB磨蹭奶头 手法比技师还专业,https://vip2.slbfsl.com/20230324/jRSbM22Q/index.m3u8
|
||||
在家自慰被弟弟发现接着狂干我,https://vip2.slbfsl.com/20230324/yAXdh4r4/index.m3u8
|
||||
顔值姐妹花的精彩4P,https://vip2.slbfsl.com/20230413/VWgJzo0z/index.m3u8
|
||||
小两口半夜享受疯狂啪啪的乐趣,https://vip2.slbfsl.com/20230411/XhL4DyzI/index.m3u8
|
||||
高质量苗条身材大奶妹子 吃完夜宵再来一炮沙发后入大力猛操 很是诱惑喜欢不要错过,https://vip2.slbfsl.com/20230410/j3DxJLQO/index.m3u8
|
||||
探花赵公子-自拍领导的交易工具,https://vip2.slbfsl.com/20230323/yc405b8F/index.m3u8
|
||||
大学生兼职清纯校花,https://vip2.slbfsl.com/20230408/o8367L6i/index.m3u8
|
||||
甜美外围小姐姐 跪在沙发翘起屁股后,https://vip2.slbfsl.com/20230408/Bmy2ghfL/index.m3u8
|
||||
返场足疗妹 换上黑丝继续第二炮,https://vip2.slbfsl.com/20230408/7eE7fYzx/index.m3u8
|
||||
满背纹身外围御姐 手指揉穴扣弄 舔屌深喉骑上来 扶着屁股后入猛操,https://vip2.slbfsl.com/20230408/QEA5J8e4/index.m3u8
|
||||
粉胸翘臀带来温柔细致的巅峰体验,https://vip2.slbfsl.com/20230408/tAcoFkoe/index.m3u8
|
||||
文轩探花-约操短发外围妹子 后入操着还拿手机聊天,https://vip2.slbfsl.com/20230407/IPGyGnl4/index.m3u8
|
||||
肤白貌美大长腿,https://vip2.slbfsl.com/20230406/ndKKDLRC/index.m3u8
|
||||
领了一个DJ回家干炮,https://vip2.slbfsl.com/20230406/DgkkSEBA/index.m3u8
|
||||
翘起屁股后入抽插猛操,https://vip2.slbfsl.com/20230405/SvxFyVtn/index.m3u8
|
||||
赚到外快高兴离开,https://vip2.slbfsl.com/20230322/ykIbNzgr/index.m3u8
|
||||
屁股后入撞击套子多操坏持续打桩,https://vip2.slbfsl.com/20230402/NjTrxqNk/index.m3u8
|
||||
约炮遇到大学校花用J8征服她,https://vip2.slbfsl.com/20230402/6K46OdDr/index.m3u8
|
||||
干奶子貌似又大了直接干到高潮,https://vip2.slbfsl.com/20230330/nwT5sVyo/index.m3u8
|
||||
高潮叫得惊天动地,https://vip2.slbfsl.com/20230328/hqnehG3Y/index.m3u8
|
||||
3000约外围小姐姐穿情趣黑丝啪啪高潮来了爽死,https://vip2.slbfsl.com/20230328/TSOr1QEa/index.m3u8
|
||||
172CM身材高挑的大长腿超模 长着一张高级的T台模特儿脸,https://vip2.slbfsl.com/20230321/GT9vqzQH/index.m3u8
|
||||
360监控偷拍-大学生酒店约会 连干两炮,https://vip2.slbfsl.com/20230321/JbVR0XUw/index.m3u8
|
||||
极品漂亮学妹自拍 非常白嫩 真嫩8,https://vip2.slbfsl.com/20230319/X29TV8tn/index.m3u8
|
||||
原创投稿 良家少妇,https://vip2.slbfsl.com/20230318/jNpddb5v/index.m3u8
|
||||
群P 母狗2,https://vip2.slbfsl.com/20230318/fmgsD947/index.m3u8
|
||||
偷拍 跟同事酒店出差,https://vip2.slbfsl.com/20230318/JMmGPufC/index.m3u8
|
||||
国产精品 主播 美妞上线2,https://vip2.slbfsl.com/20230318/Pl9mMydp/index.m3u8
|
||||
让我轻点搞 太疼了,https://vip2.slbfsl.com/20230312/ZPxYjhO1/index.m3u8
|
||||
青蛇之勾引姐夫,https://vip2.slbfsl.com/20230315/iDabtvQ8/index.m3u8
|
||||
更多视频请在tg收藏夹输入@AnchorPorn,https://vip2.slbfsl.com/20230314/WOEuF65V/index.m3u8
|
||||
妹操起来不但紧还很耐操,https://vip2.slbfsl.com/20230308/D7eGVwjp/index.m3u8
|
||||
一大早再干小少妇蜂腰翘臀!,https://vip2.slbfsl.com/20230305/A60mjESr/index.m3u8
|
||||
怼操大量喷水失禁!,https://vip2.slbfsl.com/20230305/MPNbuDEj/index.m3u8
|
||||
大奶学生妹 骑她脸上喂她吃J8!,https://vip2.slbfsl.com/20230303/aR51KAq6/index.m3u8
|
||||
屁股上下套弄 站立后入撞击!,https://vip2.slbfsl.com/20230302/KiEk02Mo/index.m3u8
|
||||
陷落的调教,https://vip2.slbfsl.com/20230203/QGsmJ786/index.m3u8
|
||||
在酒店房间里享受一夜,https://vip2.slbfsl.com/20230224/5T2YxWQh/index.m3u8
|
||||
在办公室厕所里激烈地做爱,https://vip2.slbfsl.com/20230224/yFOLSAa8/index.m3u8
|
||||
五彩斑斓的黑,https://vip2.slbfsl.com/20230204/IBCCpsOP/index.m3u8
|
||||
密友第一季-第1集,https://vip2.slbfsl.com/20230208/BfZroN9x/index.m3u8
|
||||
萌萌学生妹勾引摄影师做爱,https://vip2.slbfsl.com/20230208/5lHuMGHR/index.m3u8
|
||||
美腿高跟少妇背枪很不错,https://vip2.slbfsl.com/20230207/5OsY4ZdD/index.m3u8
|
||||
刘玥系列-被窝里深喉吞精,https://vip2.slbfsl.com/20230206/QbBnBMKw/index.m3u8
|
||||
可爱萝莉萌白酱情趣服自慰可爱,https://vip2.slbfsl.com/20230204/kb0iRjtT/index.m3u8
|
||||
今天你是我的新娘,https://vip2.slbfsl.com/20230203/tlTqYtDb/index.m3u8
|
||||
姐姐与弟弟的禁忌之恋,https://vip2.slbfsl.com/20230203/ciIqexf1/index.m3u8
|
||||
酒店私拍各种露点自慰极致诱惑,https://vip2.slbfsl.com/20230203/nu5nioi4/index.m3u8
|
||||
黑丝华裔学生妹带你体验震动棒带来的刺激,https://vip2.slbfsl.com/20230131/XoeLbck0/index.m3u8
|
||||
和炮友的野外交合,https://vip2.slbfsl.com/20230131/nL2L67Bt/index.m3u8
|
||||
纯欲系跟着我一起高潮,https://vip2.slbfsl.com/20230129/zzUzABkP/index.m3u8
|
||||
白肤长腿妹竟然用青瓜自慰 还抽插出白浆,https://vip1.slbfsl.com/20221217/WGmq2Gvy/index.m3u8
|
||||
爱心魔法棒连续抽插粉嫩逼逼高潮不断,https://vip1.slbfsl.com/20221217/aWtBTKmx/index.m3u8
|
||||
少婦炮友是我的親生媽媽-美嘉,https://vip2.slbfsl.com/20230124/7Kf9GWZb/index.m3u8
|
||||
絕對高潮情慾按摩店,https://vip2.slbfsl.com/20230124/EASJbc3f/index.m3u8
|
||||
代替閨蜜去相親-晴天,https://vip2.slbfsl.com/20230124/xPeLXLqg/index.m3u8
|
||||
青春高校生,https://vip2.slbfsl.com/20230124/Lv3rrXC9/index.m3u8
|
||||
班長的墮落-楊雪,https://vip2.slbfsl.com/20230123/ZFoMMs6V/index.m3u8
|
||||
賣身救夫,https://vip2.slbfsl.com/20230122/rcocmCz6/index.m3u8
|
||||
約啪約到了大嫂,https://vip2.slbfsl.com/20230121/kGMSpw2j/index.m3u8
|
||||
炮機約啪嫩妹抽搐,https://vip2.slbfsl.com/20230121/VAdqzJGq/index.m3u8
|
||||
白領為客戶約啪妹子,https://vip2.slbfsl.com/20230121/YF8tSD92/index.m3u8
|
||||
農民工約啪小嫩妹,https://vip2.slbfsl.com/20230121/vKmaQFIF/index.m3u8
|
||||
近親相奸姐姐破處弟弟,https://vip2.slbfsl.com/20230120/kP3b6GsY/index.m3u8
|
||||
X系列之鎖,https://vip2.slbfsl.com/20230120/8OXUyokk/index.m3u8
|
||||
X 系列之粉的第七章,https://vip2.slbfsl.com/20230120/cX7ZYxAN/index.m3u8
|
||||
又到櫻花綻放時,https://vip2.slbfsl.com/20230119/INX372pv/index.m3u8
|
||||
老公無能不能滿足,https://vip2.slbfsl.com/20230119/0mnwIMN2/index.m3u8
|
||||
迷奸,https://vip2.slbfsl.com/20230119/Z991Zfh2/index.m3u8
|
||||
百萬交易,https://vip2.slbfsl.com/20230119/skQNbt4q/index.m3u8
|
||||
地下樂團淺規則,https://vip2.slbfsl.com/20230118/1DCfslzr/index.m3u8
|
||||
|
||||
|
||||
精品推荐,#genre#
|
||||
|
||||
妹子轮番上阵1,https://vip1.slbfsl.com/20221129/A1u66YER/index.m3u8
|
||||
约了个大长腿妹子,https://vip1.slbfsl.com/20221129/7LWdKPhS/index.m3u8
|
||||
妹子轮番上阵2,https://vip1.slbfsl.com/20221129/ZD67jIZg/index.m3u8
|
||||
爽到高潮喷水,https://vip1.slbfsl.com/20221202/YCHq70zX/index.m3u8
|
||||
口交上位骑乘抽插猛操,https://vip1.slbfsl.com/20221203/zcwJIdWQ/index.m3u8
|
||||
办公室社员的不伦恋情,https://vip2.slbfsl.com/20230126/dlPXiWDA/index.m3u8
|
||||
被表弟欺负了「上」,https://vip2.slbfsl.com/20230127/tvPjv3g3/index.m3u8
|
||||
被两位哥哥抽插得好爽好兴奋,https://vip2.slbfsl.com/20230127/Sd1x9I7k/index.m3u8
|
||||
被摄影师潜规则的旗袍模特,https://vip2.slbfsl.com/20230127/jOwkaxr3/index.m3u8
|
||||
搭讪滴滴司机回家做爱,https://vip2.slbfsl.com/20230129/TejF5jTd/index.m3u8
|
||||
大叔强上清纯妹子!奶子太可爱了,https://vip2.slbfsl.com/20230129/q6Na12ex/index.m3u8
|
||||
房东来收租,实在交不出房租,只能……,https://vip2.slbfsl.com/20230130/0PaqUx4o/index.m3u8
|
||||
复古公主裙小姐姐的自嗨,https://vip2.slbfsl.com/20230130/FLYlZYse/index.m3u8
|
||||
豪门大小姐勾引家仆做爱爽歪歪,https://vip2.slbfsl.com/20230131/5Bf0LpCh/index.m3u8
|
||||
好白菜总被猪拱走,https://vip2.slbfsl.com/20230131/sBUNRWqX/index.m3u8
|
||||
会所偷拍小伙躺平享受,啪啪来全套,https://vip2.slbfsl.com/20230201/F4CzRC64/index.m3u8
|
||||
饥渴少妇爱吞精,https://vip2.slbfsl.com/20230202/XX8oQgSs/index.m3u8
|
||||
饥渴难耐,楼梯间做爱,https://vip2.slbfsl.com/20230202/3AbJsvbK/index.m3u8
|
||||
经理我的小穴想加班……,https://vip2.slbfsl.com/20230203/bRYCGdDQ/index.m3u8
|
||||
精虫冲脑 沙发怒发,https://vip2.slbfsl.com/20230203/fa2Teu7X/index.m3u8
|
||||
吸烟有害健康,抽烟抽出一片草原,https://vip2.slbfsl.com/20230203/NcsBPImy/index.m3u8
|
||||
酒店至尊会员体验莞式服务,https://vip2.slbfsl.com/20230203/ZnnJKwUg/index.m3u8
|
||||
可爱萝莉的玉足求抚摸,https://vip2.slbfsl.com/20230204/0zQHagOl/index.m3u8
|
||||
可爱萝莉cosplay翘臀等你插,https://vip2.slbfsl.com/20230204/QbEHlE9m/index.m3u8
|
||||
捆绑调教首次3穴全开,https://vip2.slbfsl.com/20230205/IBmVGa2a/index.m3u8
|
||||
舔脚狂魔肏一花!,https://vip2.slbfsl.com/20230205/Fau383nD/index.m3u8
|
||||
萝莉淋浴自慰,https://vip2.slbfsl.com/20230206/yYigzKUQ/index.m3u8
|
||||
台风天秘事,https://vip2.slbfsl.com/20230206/i7ZeYS4y/index.m3u8
|
||||
讨厌的我强奸成熟的你,https://vip2.slbfsl.com/20230206/7QVTjX8h/index.m3u8
|
||||
搜查官逆转局面,https://vip2.slbfsl.com/20230206/16sHXKK1/index.m3u8
|
||||
逃奸地狱-夜袭村,https://vip2.slbfsl.com/20230206/KgmmG48o/index.m3u8
|
||||
妈妈在家,我们要小声点哦~,https://vip2.slbfsl.com/20230207/6x5nNwqR/index.m3u8
|
||||
谁是受害者,https://vip2.slbfsl.com/20230207/ADuVQRgz/index.m3u8
|
||||
四大天王之腿神下凡?下集?,https://vip2.slbfsl.com/20230207/bISkQeca/index.m3u8
|
||||
密友第一季-第4集,https://vip2.slbfsl.com/20230208/kcgJewUO/index.m3u8
|
||||
叔母遇小侄,操逼进行时,https://vip2.slbfsl.com/20230208/43Fn0coF/index.m3u8
|
||||
双枪狙击手-唯,https://vip2.slbfsl.com/20230208/hKWfe9Wl/index.m3u8
|
||||
大学黑丝白嫩翘臀妹妹,https://vip2.slbfsl.com/20230224/OSZ83rSH/index.m3u8
|
||||
两个都操一下吧,https://vip2.slbfsl.com/20230225/9H9mNtJM/index.m3u8
|
||||
玩偶姐姐 晨钟暮鼓2,https://vip2.slbfsl.com/20230226/pz7CTECg/index.m3u8
|
||||
玩偶姐姐森林 - 欺骗 Lies,https://vip2.slbfsl.com/20230226/FrtYhWPU/index.m3u8
|
||||
草了个短裙小姐姐 看这美腿就让我魂不守舍了!,https://vip2.slbfsl.com/20230227/sx4RsllO/index.m3u8
|
||||
阳痿治疗秘术-丝丝!,https://vip2.slbfsl.com/20230305/fi16Eza1/index.m3u8
|
||||
顶级尤物的诱惑,全程露脸伺候小哥激情啪啪,https://vip2.slbfsl.com/20230309/5w50vlLu/index.m3u8
|
||||
肤白貌美小宝贝露脸大秀诱惑,颜值高又可爱揉奶玩逼很是诱惑,https://vip2.slbfsl.com/20230309/S3SNYTeP/index.m3u8
|
||||
萌妹1,https://vip2.slbfsl.com/20230311/oJXlIaPY/index.m3u8
|
||||
群2,https://vip2.slbfsl.com/20230311/kKP989hA/index.m3u8
|
||||
奶柔,https://vip2.slbfsl.com/20230311/cRbh5Gyf/index.m3u8
|
||||
辣椒原創_幸福的湯屋官网,https://vip2.slbfsl.com/20230319/lb6O3S4H/index.m3u8
|
||||
360酒店偷拍-热恋期间的小情侣酒店啪啪,https://vip2.slbfsl.com/20230321/dpJ2nu68/index.m3u8
|
||||
23岁刚毕业学生妹一对极品水蜜桃大胸,https://vip2.slbfsl.com/20230321/uW9MtcC5/index.m3u8
|
||||
这里是2号技师 阔别已久的莞式服务,https://vip2.slbfsl.com/20230324/Ya0TwEIn/index.m3u8
|
||||
自慰的时候被邻居发现,https://vip2.slbfsl.com/20230324/NgAFVJUe/index.m3u8
|
||||
国庆连假欲望之旅欲火-韩倪希,https://vip2.slbfsl.com/20230325/YYVHnbzv/index.m3u8
|
||||
偷窥妈妈自慰,https://vip2.slbfsl.com/20230325/6pJp0k6l/index.m3u8
|
||||
民宿老板娘暴露黑丝装,https://vip2.slbfsl.com/20230325/JQfgbhq5/index.m3u8
|
||||
俺達の痴漢専用ペット,https://vip2.slbfsl.com/20230403/CWFuWByh/index.m3u8
|
||||
愛欲溢れる濃密レズビアン同棲生活,https://vip2.slbfsl.com/20230403/b7bExnM9/index.m3u8
|
||||
俺のタネで孕むんだよ-Part 1,https://vip2.slbfsl.com/20230403/SN2VL7fv/index.m3u8
|
||||
白い肌に触れるだけで感じてしまう最高の超敏感体質,https://vip2.slbfsl.com/20230403/4lpSa5lL/index.m3u8
|
||||
JVID-张语昕,https://vip2.slbfsl.com/20230409/g95qMqPt/index.m3u8
|
||||
|
||||
国产精品,#genre#
|
||||
|
||||
[国产精品]早起早睡做爱不累,https://lsbbf2.com/20240426/7Gdxp8tB/index.m3u8
|
||||
[国产精品]在老公面前跟他同事激情做爱。,https://lsbbf2.com/20240426/VrVU04GR/index.m3u8
|
||||
[国产精品]在绿化带里自慰路边的车会看到我吗。,https://lsbbf2.com/20240426/PR5EvoRH/index.m3u8
|
||||
[国产精品]约老同学家中偷情做爱-国语对白。,https://lsbbf2.com/20240425/9qykpx21/index.m3u8
|
||||
[国产精品]约见粉丝福利-Chocoletmilkk。,https://lsbbf2.com/20240425/YzPvwBFT/index.m3u8
|
||||
[国产精品]约艹大学黑丝白嫩翘臀妹妹。,https://lsbbf2.com/20240425/fNOpT3YM/index.m3u8
|
||||
[国产精品]今天你是我的新娘。,https://lsbbf2.com/20240424/8ZHJEsNl/index.m3u8
|
||||
[国产精品]今天的任务是到工厂不同地方自慰。,https://lsbbf2.com/20240424/QK1THrHC/index.m3u8
|
||||
[国产精品]家庭教師下。,https://lsbbf2.com/20240423/Iqh4gjcg/index.m3u8
|
||||
[国产精品]家庭教師。,https://lsbbf2.com/20240423/mlg8NaBN/index.m3u8
|
||||
[国产精品]将他所有的精液挤出来做面膜。,https://lsbbf2.com/20240423/Lf2I7jzS/index.m3u8
|
||||
[国产精品]姐姐,妈妈与妹妹的快乐3p。,https://lsbbf2.com/20240423/I0CDLonW/index.m3u8
|
||||
[国产精品]脚丫子真香,白嫩鲍鱼小逼很紧。,https://lsbbf2.com/20240423/YAjJGmbC/index.m3u8
|
||||
[国产精品]鸡巴在梦中被我口硬了,这种起床方式喜欢吗?。,https://lsbbf2.com/20240423/ZezLQlsY/index.m3u8
|
||||
[国产精品]假鸡吧搞到高潮。,https://lsbbf2.com/20240423/kGHyVaqY/index.m3u8
|
||||
[国产精品]极品学生妹魔物喵!价值700元的福利视频。,https://lsbbf2.com/20240423/hYtBVonD/index.m3u8
|
||||
[国产精品]极品洛丽塔『喵喵』制服草地公园露出啪啪。,https://lsbbf2.com/20240423/HtqtldLZ/index.m3u8
|
||||
[国产精品]极品反差婊萝莉,黑丝OL装水晶屌插逼。,https://lsbbf2.com/20240423/kcg8kNt5/index.m3u8
|
||||
[国产精品]和老公首部cosply。,https://lsbbf2.com/20240422/hR4xc2Aq/index.m3u8
|
||||
[国产精品]喝醉的邻居姐姐假借没带钥匙把我吃。,https://lsbbf2.com/20240422/Yo70UxEL/index.m3u8
|
||||
[国产精品]粉嫩小穴振动棒自慰。,https://lsbbf2.com/20240421/qGRUW9pp/index.m3u8
|
||||
[国产精品]粉嫩小穴不停摩擦试探就像一张嘴吞噬我的理智。,https://lsbbf2.com/20240421/YcObJ5np/index.m3u8
|
||||
[国产精品]冬季的早上需要我来叫你起床吗。,https://lsbbf2.com/20240420/dexOqQw0/index.m3u8
|
||||
[国产精品]出去玩下面又痒了,找个地方直接抠逼。,https://lsbbf2.com/20240420/iOS6sAjD/index.m3u8
|
||||
[国产精品]趁妹妹在沙发睡着偷偷草了她。,https://lsbbf2.com/20240420/3SVfXoqA/index.m3u8
|
||||
[国产精品]刺激她的g点让她的小穴水花四溅。,https://lsbbf2.com/20240420/D99dNR0y/index.m3u8
|
||||
[国产精品]超可爱丸子头,萌翻在座各位的心幻想。,https://lsbbf2.com/20240420/Ya1d1XvI/index.m3u8
|
||||
[国产精品]曾火遍全网 北京瑶瑶 好闺蜜NEKO 重磅流出!。,https://lsbbf2.com/20240420/5puef8bz/index.m3u8
|
||||
[国产精品]超会打飞机的旗袍少妇。,https://lsbbf2.com/20240420/nI0p7dCz/index.m3u8
|
||||
[国产精品]初识-可爱外表下的放纵Vlog-(小灿第一部)。,https://lsbbf2.com/20240420/MdY8vbH8/index.m3u8
|
||||
[国产精品]大奶萝莉被学长按在椅子上草。,https://lsbbf2.com/20240420/9mIbyKvo/index.m3u8
|
||||
[国产精品]【顽皮翘宝贝莫琪Mozzi】-小黑猫萝莉的自慰秀。,https://lsbbf2.com/20240419/8fxAD7Pf/index.m3u8
|
||||
[国产精品]【顽皮翘宝贝莫琪Mozzi】-直播自慰大家都看到我的白浆了。,https://lsbbf2.com/20240419/iPk0TZEX/index.m3u8
|
||||
[国产精品]【顽皮翘宝贝莫琪Mozzi】-调教好的母狗乖乖给我口。,https://lsbbf2.com/20240419/x1ZcYJYn/index.m3u8
|
||||
[国产精品]【木内小姐】木內桑穿著吊襪帶內衣打飞机。,https://lsbbf2.com/20240418/njSxbxi4/index.m3u8
|
||||
[国产精品]【软萌萝莉小仙】古风旗袍。,https://lsbbf2.com/20240418/lbY6Hx5e/index.m3u8
|
||||
[国产精品]【谭晓彤】学生妹兔兔。,https://lsbbf2.com/20240418/L74Da4w2/index.m3u8
|
||||
[国产精品]【烈Retsu】丁字裤和黑丝的诱惑。,https://lsbbf2.com/20240418/oLXPZVsC/index.m3u8
|
||||
[国产精品]【烈Retsu】猛烈抽插潮吹了。,https://lsbbf2.com/20240418/NcGn6knJ/index.m3u8
|
||||
[国产精品]【极品福利姬】撕破丝袜自慰,抽插小穴流白浆。,https://lsbbf2.com/20240418/1AURnazN/index.m3u8
|
||||
[国产精品]【极品福利姬】蕾丝袜吊带裙,粉嫩白虎穴自慰。,https://lsbbf2.com/20240418/6GCkaPau/index.m3u8
|
||||
[国产精品]【大乐呼呼】JK娘放学后的援助交际。,https://lsbbf2.com/20240418/8s8quEyV/index.m3u8
|
||||
[国产精品]【极品福利姬】米娜学姐渔网黑丝自慰。,https://lsbbf2.com/20240418/W9R1wVZx/index.m3u8
|
||||
[国产精品]LittlesulaOnlyFans。,https://lsbbf2.com/20240416/Yoj6u8IT/index.m3u8
|
||||
[国产精品]JK萝莉的调教 足交 自慰 无套抽插_。,https://lsbbf2.com/20240416/Rz4b34UQ/index.m3u8
|
||||
[国产精品]jk换短袜厨房展示。,https://lsbbf2.com/20240416/DowKeZj4/index.m3u8
|
||||
[国产精品]国产捆绑安妮的!,https://lsbbf2.com/20240410/4RIbM7rz/index.m3u8
|
||||
[国产精品]质量sm重磅题材《字母圈国产巅峰sm调教,强制高潮、窒息失禁、捆绑SP、工具玩弄》的!,https://lsbbf2.com/20240410/jjd63aE0/index.m3u8
|
||||
[国产精品]小齐齐 捆绑调教的!,https://lsbbf2.com/20240410/ZC0pJc2d/index.m3u8
|
||||
[国产精品]极限调教捆绑加狗笼囚禁的!,https://lsbbf2.com/20240409/ReMl4VFf/index.m3u8
|
||||
[国产精品]宾馆实拍拘束衣跳蛋震动棒调教(上)的!,https://lsbbf2.com/20240408/xYZ66tU4/index.m3u8
|
||||
[国产精品]保险推销吴小姐上门和变态客户玩SM自拍的!,https://lsbbf2.com/20240408/zos3kWYb/index.m3u8
|
||||
[国产精品]白裙小婊婊受精调教的!,https://lsbbf2.com/20240408/si9CJXgG/index.m3u8
|
||||
[国产精品]【最新泄密】【母子乱伦】捆绑玩弄后妈你越是反抗我就越兴奋的!,https://lsbbf2.com/20240407/pf4ixdfV/index.m3u8
|
||||
[国产精品]SM调教公狗的!,https://lsbbf2.com/20240407/spPgTLXZ/index.m3u8
|
||||
[国产精品]97年大学生被捆绑调教SM的!,https://lsbbf2.com/20240407/6OF6f2aC/index.m3u8
|
||||
[国产精品]被富二代忽悠上床的游戏陪玩。,https://lsbbf2.com/20240417/bF3LAfat/index.m3u8
|
||||
[国产精品]暴力插嘴黑丝少妇。,https://lsbbf2.com/20240417/zZypiMQO/index.m3u8
|
||||
[国产精品]LAA0075 被物化的婚姻 #Anna Claire Clouds的!,https://lsbbf2.com/20240406/lBOnEkeY/index.m3u8
|
||||
[国产精品]LOL二次元 白丝足交的!,https://lsbbf2.com/20240406/cAD0rCb7/index.m3u8
|
||||
[国产精品]KTV里的公主的!,https://lsbbf2.com/20240406/cBobrFbo/index.m3u8
|
||||
[国产精品]IA004 很硬的日文家教课的!,https://lsbbf2.com/20240405/YykZQGSe/index.m3u8
|
||||
[国产精品]B站舞蹈区各类舞蹈UP主沦陷视频的!,https://lsbbf2.com/20240405/FEFW0jc5/index.m3u8
|
||||
[国产精品]HPP002-02 让我帮你洗 #玥可岚的!,https://lsbbf2.com/20240405/HkTosWly/index.m3u8
|
||||
[国产精品]EDMosaic 小慈 穴穴已变成成那根的形状的!,https://lsbbf2.com/20240405/smybbJjv/index.m3u8
|
||||
[国产精品]GDCM036 僞装者代号9 下集 #莉娜的!,https://lsbbf2.com/20240405/0ogJcUyC/index.m3u8
|
||||
[国产精品]dePgukvtCfzLkvr9NpIYu6jWShg0oWJibBHohVJCOI6MsDuoWleTQZVlnBjBGH的!,https://lsbbf2.com/20240405/hoIT8TLf/index.m3u8
|
||||
[国产精品]FSOG056 口交指南之拯救阳痿患者 #cola酱的!,https://lsbbf2.com/20240405/WZlHKTXw/index.m3u8
|
||||
[国产精品]DB0 搭讪黑丝小只马初次见面变炮友的!,https://lsbbf2.com/20240405/DncnTqQU/index.m3u8
|
||||
[国产精品]95后反差婊 最全合集的!,https://lsbbf2.com/20240404/Tgvj3eiV/index.m3u8
|
||||
[国产精品]9岁嫩妹 直播大秀的!,https://lsbbf2.com/20240404/izX0qOzv/index.m3u8
|
||||
[国产精品]8 岁的大二学妹毛还没长齐呢的!,https://lsbbf2.com/20240404/TgdUHW3v/index.m3u8
|
||||
[国产精品]9大神酒店约炮身材非常好的的离异美少妇的!,https://lsbbf2.com/20240404/VQ0wsl9d/index.m3u8
|
||||
[国产精品]00后剖腹没多久 就想要的!,https://lsbbf2.com/20240404/DB3Zsi6J/index.m3u8
|
||||
[国产精品]【重金购买】最近很火的Stripchat主播【Qing_qq】的!,https://lsbbf2.com/20240404/3aiC6BbV/index.m3u8
|
||||
[国产精品]520约炮高三粉嫩粉嫩的学妹的!,https://lsbbf2.com/20240404/XoQrB0RB/index.m3u8
|
||||
[国产精品]202最新啪啪口爱私拍流出的!,https://lsbbf2.com/20240404/oJ0YmEoW/index.m3u8
|
||||
[国产精品]8岁粉穴嫩妹的!,https://lsbbf2.com/20240404/8bEwGbcV/index.m3u8
|
||||
[国产精品]00后 直播自慰养活自己的!,https://lsbbf2.com/20240404/HZZYI8wW/index.m3u8
|
||||
[国产精品]【国产】抓紧时间和老公来一炮的!,https://lsbbf2.com/20240404/3LIRl3Nd/index.m3u8
|
||||
[国产精品]【小鹿酱 】美鲍潮吹小穴会呼吸的!,https://lsbbf2.com/20240404/zLD6gcOH/index.m3u8
|
||||
[国产精品]【夏小秋】魅惑私拍流出的!,https://lsbbf2.com/20240404/NzsjogrG/index.m3u8
|
||||
[国产精品]【国产】我的炮友是后妈的!,https://lsbbf2.com/20240403/Ns3INxcE/index.m3u8
|
||||
[国产精品]【国产】新晋探花精彩不断的!,https://lsbbf2.com/20240403/4KcpdjWp/index.m3u8
|
||||
[国产精品]【国产】我重要还是游戏重要,棒棒硬了哦的!,https://lsbbf2.com/20240403/279BfpAA/index.m3u8
|
||||
[国产精品]【国产】探探上约的妹子的!,https://lsbbf2.com/20240403/qFi39VPP/index.m3u8
|
||||
[国产精品]【国产】温柔甜美小姐姐,舔穴狂插呻吟不断的!,https://lsbbf2.com/20240403/NvgqjwDY/index.m3u8
|
||||
[国产精品]【国产】沙发激情的!,https://lsbbf2.com/20240403/IFtrHbVc/index.m3u8
|
||||
[国产精品]【国产】骗清纯妹子含棒的!,https://lsbbf2.com/20240403/vNBqMyCI/index.m3u8
|
||||
[国产精品]【国产】深夜露出企划 长椅上自慰的!,https://lsbbf2.com/20240403/hbvPbPuN/index.m3u8
|
||||
[国产精品]【国产】漂亮姐姐照顾醉酒弟弟反被弟弟操了的!,https://lsbbf2.com/20240403/hnyjMpkp/index.m3u8
|
||||
[国产精品]【国产】家少妇下海,乖巧听话主动口交大鸡巴激情上位,让小哥压在身下暴力抽插的!,https://lsbbf2.com/20240402/yUM2pFCv/index.m3u8
|
||||
[国产精品]【国产】哥真的是宝刀未老的!,https://lsbbf2.com/20240402/4CoEeCYm/index.m3u8
|
||||
[国产精品]【国产】黄瓜自慰 潮喷白浆的!,https://lsbbf2.com/20240402/XCGXgt8f/index.m3u8
|
||||
[国产精品]【国产】插喉口交新炮友的!,https://lsbbf2.com/20240402/SSRPDkok/index.m3u8
|
||||
[国产精品]【国产】婚前试车 强上新娘的!,https://lsbbf2.com/20240402/T75AJMHV/index.m3u8
|
||||
[国产精品]【国产】被老婆偷拍我出轨的!,https://lsbbf2.com/20240402/fSZkNcFU/index.m3u8
|
||||
[国产精品]【国产】对待小弟弟就是要轻轻抚摸的!,https://lsbbf2.com/20240402/JKdcHjXI/index.m3u8
|
||||
[国产精品]【9蜜桃】 各式换装制服无套啪啪的!,https://lsbbf2.com/20240402/XuASW8kN/index.m3u8
|
||||
[国产精品]【国产】按着按着就湿了的!,https://lsbbf2.com/20240402/KGdkRtI7/index.m3u8
|
||||
[国产精品]【国产】变态要求写真的!,https://lsbbf2.com/20240402/tztybcxX/index.m3u8
|
||||
[国产精品]【国产】】清纯超美小护士来打针的!,https://lsbbf2.com/20240402/WZ90iN2D/index.m3u8
|
||||
[国产精品]《到闺蜜家做客被迷晕捆绑》的!,https://lsbbf2.com/20240402/8ZIQYnBW/index.m3u8
|
||||
[国产精品]《不知火舞的超凡撸技》的!,https://lsbbf2.com/20240402/lCuFy4ND/index.m3u8
|
||||
[国产精品]【国产】百合之恋极致诱惑的!,https://lsbbf2.com/20240402/BULlJxy1/index.m3u8
|
||||
[国产精品]【草莓味软糖呀】开年唯美新作-森林里的小狐仙的!,https://lsbbf2.com/20240402/dSdc2lM6/index.m3u8
|
||||
[国产精品]【白桃露露】白丝风情汉服,阴毛真是修得欠日的!,https://lsbbf2.com/20240402/MmjHz0rw/index.m3u8
|
||||
[国产精品]圣诞节-送上门的礼物的!,https://lsbbf2.com/20240401/79tSSS0w/index.m3u8
|
||||
[国产精品]手脚并用帮你撸出浓精的!,https://lsbbf2.com/20240401/1oeE0VE8/index.m3u8
|
||||
[国产精品]圣诞礼物,你的圣诞礼物已送达,请注意签收的!,https://lsbbf2.com/20240401/Wa3ytRYS/index.m3u8
|
||||
[国产精品]试一下刚买的小恶魔震动很足的!,https://lsbbf2.com/20240401/NbSlZglE/index.m3u8
|
||||
[国产精品]圣诞礼物就是她的极品嫩鲍的!,https://lsbbf2.com/20240401/dtAvS5lU/index.m3u8
|
||||
[国产精品]少管所的故事的!,https://lsbbf2.com/20240331/9uczXHAi/index.m3u8
|
||||
[国产精品]少妇享受老王大香蕉的抽插的!,https://lsbbf2.com/20240331/yAvx1lKO/index.m3u8
|
||||
[国产精品]上司办公室自慰的!,https://lsbbf2.com/20240331/GtsBQjIy/index.m3u8
|
||||
[国产精品]上班偷塞跳蛋被老板发现了!的!,https://lsbbf2.com/20240331/bdUAIhji/index.m3u8
|
||||
[国产精品]上班时间抠B自慰摸到爽的!,https://lsbbf2.com/20240331/10sxy1L0/index.m3u8
|
||||
[国产精品]沙发上的高潮的!,https://lsbbf2.com/20240331/PgkTefHz/index.m3u8
|
||||
[国产精品]商城露出,背后还有一个流浪汉在睡觉的!,https://lsbbf2.com/20240331/MwpbHZbU/index.m3u8
|
||||
[国产精品]沙拉和我,你选择谁?的!,https://lsbbf2.com/20240331/wImLOZ9X/index.m3u8
|
||||
[国产精品]萨勒芬妮这么出装可以加攻速暴击吗~1的!,https://lsbbf2.com/20240330/usK9jAiX/index.m3u8
|
||||
[国产精品]三亚浪漫海滩1的!,https://lsbbf2.com/20240330/0KM23KnQ/index.m3u8
|
||||
[国产精品]日本风俗场也玩“莞式”?大波姑娘齐上阵,让你享受“皇家待遇”1的!,https://lsbbf2.com/20240329/nSxnnkb5/index.m3u8
|
||||
[国产精品]日本風俗店王者泡泡浴1的!,https://lsbbf2.com/20240329/PcbLRBRW/index.m3u8
|
||||
[国产精品]热裤下的极品白虎鲍穴1的!,https://lsbbf2.com/20240329/GFTKInlX/index.m3u8
|
||||
[国产精品]缺失的母爱又收获了一个母亲1的!,https://lsbbf2.com/20240329/XH2xnjjK/index.m3u8
|
||||
[国产精品]让小哥先舔逼,等他硬的受不了再让他进来1的!,https://lsbbf2.com/20240329/EHxaFjM5/index.m3u8
|
||||
[国产精品]让你看看为啥我老是掉分1的!,https://lsbbf2.com/20240329/cGPCBkVs/index.m3u8
|
||||
[国产精品]请隔壁泡汤的情侣听我们啪啪和娇喘吧1的!,https://lsbbf2.com/20240328/ov3xeJgB/index.m3u8
|
||||
[国产精品]情圣的一天祭奠老二的万物皆可操1的!,https://lsbbf2.com/20240328/FqHYPTyQ/index.m3u8
|
||||
[国产精品]情趣内衣的诱惑1的!,https://lsbbf2.com/20240328/kFlZvoBk/index.m3u8
|
||||
[国产精品]情趣装嫩妹自慰1的!,https://lsbbf2.com/20240328/pS8ByKlm/index.m3u8
|
||||
[国产精品]清凉一夏(一)1的!,https://lsbbf2.com/20240328/q9ZB2wgD/index.m3u8
|
||||
[国产精品]情趣玩具员的营销秘密1的!,https://lsbbf2.com/20240328/ZYFyXLfw/index.m3u8
|
||||
[国产精品]情趣装被酒店干到高潮1的!,https://lsbbf2.com/20240328/7M4a7AT5/index.m3u8
|
||||
[国产精品]情趣娃娃挑战赛1的!,https://lsbbf2.com/20240328/08PkHSUG/index.m3u8
|
||||
[国产精品]情趣黑丝吊带蜜桃臀1的!,https://lsbbf2.com/20240328/QIQa0vFc/index.m3u8
|
||||
[国产精品]情趣黑丝沙发蔷薇1的!,https://lsbbf2.com/20240328/VKSJSJrR/index.m3u8
|
||||
[国产精品]清純越南妹遇到帥雇主還可提供特別服務?1的!,https://lsbbf2.com/20240328/6V1O2CD9/index.m3u8
|
||||
[国产精品]清纯嫩妹4小时激情秀,浓妆红唇开档丝袜1的!,https://lsbbf2.com/20240328/pK4RfGDy/index.m3u8
|
||||
[国产精品]清新口罩姬又来啦 白丝长腿萝莉 玩着游戏被我强操嘴上说着不愿意身体却很诚实1的!,https://lsbbf2.com/20240328/nkMLivJN/index.m3u8
|
||||
[国产精品]清纯主播的破处辛酸史1的!,https://lsbbf2.com/20240328/GqNPt4Vk/index.m3u8
|
||||
[国产精品]清纯学妹的自慰秀1的!,https://lsbbf2.com/20240328/tbGWDL1T/index.m3u8
|
||||
[国产精品]清纯学生妹活力十足,操起来就是又嫩又带劲1的!,https://lsbbf2.com/20240328/guKU79vV/index.m3u8
|
||||
[国产精品]清纯学生妹看书到一半突然自慰1的!,https://lsbbf2.com/20240328/nuz993YL/index.m3u8
|
||||
[国产精品]清纯小白兔诱惑邻居哥哥进洞里做爱1的!,https://lsbbf2.com/20240328/yZ3XjL8d/index.m3u8
|
||||
[国产精品]清纯妹子被操的呻吟不断1的!,https://lsbbf2.com/20240328/He1sZUhM/index.m3u8
|
||||
[国产精品]旗袍诱惑1的!,https://lsbbf2.com/20240327/o5ZSJ168/index.m3u8
|
||||
[国产精品]气质学院派御姐,酒店援交变态的胖土豪被捆绑喷水调教1的!,https://lsbbf2.com/20240327/5RCQBGFG/index.m3u8
|
||||
[国产精品]旗袍柚子猫跨年贺岁片~1的!,https://lsbbf2.com/20240327/9R2bTZpB/index.m3u8
|
||||
[国产精品]騎乘技術學習中1的!,https://lsbbf2.com/20240327/EjAXwtZq/index.m3u8
|
||||
[国产精品]炮机打桩白虎,高潮到抽搐1的!,https://lsbbf2.com/20240326/Kgqly0wB/index.m3u8
|
||||
[国产精品]年轻小情侣上情趣酒店的激情1的!,https://lsbbf2.com/20240326/Z3GcYKih/index.m3u8
|
||||
[国产精品]牛仔短裤辣妹的口交服务1的!,https://lsbbf2.com/20240326/HqzOPcDn/index.m3u8
|
||||
[国产精品]欧洲留学生 与法国帅哥海边激情啪啪1的!,https://lsbbf2.com/20240326/VeyTgtkj/index.m3u8
|
||||
[国产精品]逆袭之荡妇的美臀的诱惑1的!,https://lsbbf2.com/20240326/bMjuskCy/index.m3u8
|
||||
[国产精品]牛仔短裙露出自慰1的!,https://lsbbf2.com/20240326/fWseDMep/index.m3u8
|
||||
[国产精品]你做甜点我干你1的!,https://lsbbf2.com/20240326/ccrbuKxg/index.m3u8
|
||||
[国产精品]你们要的碎花裙,根本停不下来啊!1的!,https://lsbbf2.com/20240326/5T5ECPSs/index.m3u8
|
||||
[国产精品]你是一个腿部爱好者吗?玩弄古怪的破洞牛仔裤1的!,https://lsbbf2.com/20240326/zW5uzGzm/index.m3u8
|
||||
[国产精品]你们想要的情趣套装,喜欢吗?1的!,https://lsbbf2.com/20240326/yY1LzZ9M/index.m3u8
|
||||
[国产精品]内裤塞进小嫩逼1的!,https://lsbbf2.com/20240325/MbNuIDnO/index.m3u8
|
||||
[国产精品]媚黑婊骑坐黑大屌被中出1的!,https://lsbbf2.com/20240323/ENKsg58H/index.m3u8
|
||||
[国产精品]妹妹最近有点怪?狼友打飞机必备视频1的!,https://lsbbf2.com/20240323/X9i2yPDT/index.m3u8[国产精品]妹妹为哥哥治疗早泄1的!,https://lsbbf2.com/20240323/Rp5ud4Kh/index.m3u8
|
||||
[国产精品]妹妹的秘密1的!,https://lsbbf2.com/20240323/NUCrsIed/index.m3u8
|
||||
[国产精品]妹妹的欲望 偷偷爬上哥哥的床1的!,https://lsbbf2.com/20240323/OQSjmEfW/index.m3u8
|
||||
[国产精品]妹妹被抱怨床技不好,哥哥只得以身受教1的!,https://lsbbf2.com/20240323/i9fscFGA/index.m3u8
|
||||
[国产精品]妹妹的白丝嫩腿让我看的肿胀了1的!,https://lsbbf2.com/20240323/pRuaYPid/index.m3u8
|
||||
[国产精品]美艳少妇黑丝袜扣逼逼潮吹1的!,https://lsbbf2.com/20240323/ebhX7CDH/index.m3u8
|
||||
[国产精品]萌白酱-可爱白丝自摸1的!,https://lsbbf2.com/20240323/Zv9qgLjU/index.m3u8
|
||||
[国产精品]魅惑千年狐妖成仙记1的!,https://lsbbf2.com/20240323/gSrWbhEH/index.m3u8
|
||||
[国产精品]绿夫一时爽,看着被绿帽特别爽1的!,https://lsbbf2.com/20240321/Upb5RD2M/index.m3u8
|
||||
[国产精品]旅馆约拍摄影师 控制不住诱惑狂草1的!,https://lsbbf2.com/20240321/g1F5tfMd/index.m3u8
|
||||
[国产精品]洛丽塔小姐姐被后入狂草1的!,https://lsbbf2.com/20240321/DUFbTFcr/index.m3u8
|
||||
[国产精品]麻衣学姐的思春期1的!,https://lsbbf2.com/20240321/gUaQm0uo/index.m3u8
|
||||
[国产精品]麻衣学姐的思春期-柚子猫1的!,https://lsbbf2.com/20240321/4mTHvNOB/index.m3u8
|
||||
[国产精品]妈妈饥渴难耐诱奸儿子1的!,https://lsbbf2.com/20240321/Nt6Q2hg1/index.m3u8
|
||||
[国产精品]麻酥酥粉丝神秘的礼物1的!,https://lsbbf2.com/20240321/qWJK0tVM/index.m3u8
|
||||
[国产精品]妈妈小穴只有我能干1的!,https://lsbbf2.com/20240321/MljiQXwN/index.m3u8
|
||||
[国产精品]妈妈在家,我们要小声点哦~1的!,https://lsbbf2.com/20240321/rGtpzgUq/index.m3u8
|
||||
[国产精品]绿胖头鱼实验室之炮机测评-爽的还是自己1的!,https://lsbbf2.com/20240321/ee8IF4mr/index.m3u8
|
||||
[国产精品]露出小穴给你看,顺便让经理把便宜占了1的!,https://lsbbf2.com/20240320/kfpYFpQe/index.m3u8
|
||||
[国产精品]路边搭讪约炮实录1的!,https://lsbbf2.com/20240320/UQy9695J/index.m3u8
|
||||
[国产精品]撸撸口啦ok1的!,https://lsbbf2.com/20240320/HIqg9bru/index.m3u8
|
||||
[国产精品]楼道里的激情1的!,https://lsbbf2.com/20240320/nZLkJZ0Y/index.m3u8
|
||||
[国产精品]两位学妹争舔脚丫子1的!,https://lsbbf2.com/20240320/3Uz2K7Oz/index.m3u8
|
||||
[国产精品]两条毛腿肩上扛1的!,https://lsbbf2.com/20240320/0e1dMFU8/index.m3u8
|
||||
|
||||
|
||||
网曝系列,#genre#
|
||||
|
||||
[网曝系列]恋母癖小哥惨遭亲哥NTR1的!,https://lsbbf2.com/20240319/zdlbr81v/index.m3u8
|
||||
[网曝系列]理財專員被司機按倒強行車震_呻吟聲銷求深壹點1的!,https://lsbbf2.com/20240319/8e28L5KE/index.m3u8
|
||||
[网曝系列]雷姆被逼着深喉咙口交1的!,https://lsbbf2.com/20240319/dhKvjgGo/index.m3u8
|
||||
[网曝系列]没什么比和黑丝爱爱的更棒的了!1的!,https://lsbbf2.com/20240321/uCD8HYqB/index.m3u8
|
||||
[网曝系列]没有大屌用水瓶代替,双脚轻抚似足交1的!,https://lsbbf2.com/20240321/0Mr2JYDu/index.m3u8
|
||||
[网曝系列]冒着被外面看光的情况下刺激开战1的!,https://lsbbf2.com/20240321/Szl2LAZo/index.m3u8
|
||||
[网曝系列]没别的,扭起来就是爽1的!,https://lsbbf2.com/20240321/9mQIKPDF/index.m3u8
|
||||
[网曝系列]曼彻斯特叫的上门服务,大屁股小姐姐一级棒的舔功1的!,https://lsbbf2.com/20240321/yhuLNbdq/index.m3u8
|
||||
[网曝系列]对着镜子中出大奶少妇。,https://lsbbf2.com/20240420/bwTL1qqH/index.m3u8
|
||||
[网曝系列]美丽的小荡妇用唾液舔他的黏鸡巴1的!,https://lsbbf2.com/20240321/nuojvUfO/index.m3u8
|
||||
[网曝系列]强上KTV醉酒小妹-小雅1的!,https://lsbbf2.com/20240327/sywajFGi/index.m3u8
|
||||
[网曝系列]翘臀高跟黑丝少妇背枪被无套中出1的!,https://lsbbf2.com/20240327/i4RNvruY/index.m3u8
|
||||
[网曝系列]青青头上草,少妇野外搞1的!,https://lsbbf2.com/20240327/RpzexpY5/index.m3u8
|
||||
[网曝系列]千金小姐的调教1的!,https://lsbbf2.com/20240327/A49mxyo3/index.m3u8
|
||||
[网曝系列]强迫新娘子吞下精液1的!,https://lsbbf2.com/20240327/NpKHWWPG/index.m3u8
|
||||
[网曝系列]千金小姐勾引我干起来超级爽1的!,https://lsbbf2.com/20240327/7mRMqqDz/index.m3u8
|
||||
[网曝系列]强扭的瓜不甜,强扭的黑丝谁都爱1的!,https://lsbbf2.com/20240327/NbCI9o5a/index.m3u8
|
||||
[网曝系列]气质模特被骗到酒店试镜,潜规则吹箫被按摩棒搞到大声呻吟1的!,https://lsbbf2.com/20240327/WJtt0maE/index.m3u8
|
||||
[网曝系列]媽媽的約定1的!,https://lsbbf2.com/20240321/amyOv3vm/index.m3u8
|
||||
[网曝系列]毛毛又該脫光光了,那樣的話才會被老公們更加狠狠地肏我1的!,https://lsbbf2.com/20240321/33aHne7K/index.m3u8
|
||||
[网曝系列]賣假貨就中出到爽1的!,https://lsbbf2.com/20240321/AKsQhE9L/index.m3u8
|
||||
[网曝系列]约炮旗袍御姐。,https://lsbbf2.com/20240425/yvOlv4Dw/index.m3u8
|
||||
[网曝系列]在酒店房间里享受一夜。,https://lsbbf2.com/20240425/HLOcCP01/index.m3u8
|
||||
[网曝系列]在办公室厕所里激烈地做爱。,https://lsbbf2.com/20240425/LeH8BnKj/index.m3u8
|
||||
[网曝系列]在后备箱里面自慰等一个大屌哥哥来。,https://lsbbf2.com/20240425/M6TfBy82/index.m3u8
|
||||
ちょ,https://lsbbf2.com/20240424/8dBtykDb/index.m3u8
|
||||
[网曝系列]酒店浴室被真假粗屌前后夹击 干的高潮不断。,https://lsbbf2.com/20240424/bUoR0TpB/index.m3u8
|
||||
[网曝系列]今天我和我的炮友在淋浴时疯狂操。,https://lsbbf2.com/20240424/r7oWvZc9/index.m3u8
|
||||
[网曝系列]和我的两个新玩具玩耍。,https://lsbbf2.com/20240422/EMFbnS00/index.m3u8
|
||||
[网曝系列]黑丝网袜小母狗,吃鸡技术很不错。,https://lsbbf2.com/20240422/S043crAO/index.m3u8
|
||||
[网曝系列]哥哥不用动,妹妹全自动。,https://lsbbf2.com/20240421/5nnXgHZT/index.m3u8
|
||||
[网曝系列]公园绿荫道上的大胆露出。,https://lsbbf2.com/20240421/o2xVGqOw/index.m3u8
|
||||
[网曝系列]公园露出自慰好怕跑步大爷看到了。,https://lsbbf2.com/20240421/1fk9ldgg/index.m3u8
|
||||
[网曝系列]高跟丝袜豹纹情趣被压在床上猛干。,https://lsbbf2.com/20240421/CSqXfh6T/index.m3u8
|
||||
[网曝系列]荡妇自慰流水,主动邀请修理工帮忙修理一下。,https://lsbbf2.com/20240420/jBm3wqnv/index.m3u8
|
||||
[网曝系列]【顽皮翘宝贝莫琪Mozzi】-小婊子的内衣秀。,https://lsbbf2.com/20240419/Se5UoDGL/index.m3u8
|
||||
[网曝系列]【学校妹妹自慰】-只为了赚取生活费!。,https://lsbbf2.com/20240419/7PIyzEwu/index.m3u8
|
||||
[网曝系列]【网红】押尾猫露奶jk服开档黑丝诱惑。,https://lsbbf2.com/20240419/e72q1CWi/index.m3u8
|
||||
[网曝系列]【爱丝袜vivian姐】西服黑丝近距离高跟丝袜扛腿暴力抽插。,https://lsbbf2.com/20240418/HaSGx5o2/index.m3u8
|
||||
[网曝系列]【envyanne】超高清近距离玩逼逼给你看。,https://lsbbf2.com/20240418/yHicXMAG/index.m3u8
|
||||
[网曝系列]半夜在房裡溫習功課,無聊了就自尻一下,才有能量繼續k書。,https://lsbbf2.com/20240417/b0ziIRTE/index.m3u8
|
||||
[网曝系列]被操得嗷嗷叫还不让停下来。,https://lsbbf2.com/20240417/NXZiL1AK/index.m3u8
|
||||
[网曝系列]白丝蕾丝少妇路边露出抠逼喷水。,https://lsbbf2.com/20240416/ANCZZnFx/index.m3u8
|
||||
[网曝系列]白虎萝莉体验刮毛服务。,https://lsbbf2.com/20240416/VqCWNwmN/index.m3u8
|
||||
[网曝系列]白白嫩嫩的小脚丫想舔吗?。,https://lsbbf2.com/20240416/wrymTmr6/index.m3u8
|
||||
[网曝系列]白丝蕾丝裙掀起来露出白圆大屁股。,https://lsbbf2.com/20240416/LegjYjhB/index.m3u8
|
||||
[网曝系列]SM白嫖教父-无套调教刚搞到手的妹妹!。,https://lsbbf2.com/20240416/NSjog2BK/index.m3u8
|
||||
[网曝系列]嘴里塞口球绑起来调教真爽的!,https://lsbbf2.com/20240410/OkkaBhJb/index.m3u8
|
||||
[网曝系列]兄妹乱伦哥哥的荒诞调教的!,https://lsbbf2.com/20240410/34f48fC3/index.m3u8
|
||||
[网曝系列]逆袭黑社会大姐大 马仔上位报復捆绑调教-sm艾的!,https://lsbbf2.com/20240409/dLQc50GK/index.m3u8
|
||||
[网曝系列]调教即将升上大学的可爱兔牙小表妹的!,https://lsbbf2.com/20240409/n47Lv32e/index.m3u8
|
||||
[网曝系列]狗项圈栓狗绳极度调教的!,https://lsbbf2.com/20240408/nT1zvyxF/index.m3u8
|
||||
[网曝系列]变态调教口球捆绑SM的!,https://lsbbf2.com/20240408/BHRVLjC3/index.m3u8
|
||||
[网曝系列]宾馆实拍捆绑调教极限振动(上)的!,https://lsbbf2.com/20240408/aOdb4MkN/index.m3u8
|
||||
[网曝系列]KTV疯狂之夜的!,https://lsbbf2.com/20240406/ml6nBAUk/index.m3u8
|
||||
[网曝系列]LTV0029 慾不可纵 #Jessie Pony、Bernard Sanchez的!,https://lsbbf2.com/20240406/CCHLvn7Q/index.m3u8
|
||||
[网曝系列]LTV0027 慾不可纵的!,https://lsbbf2.com/20240406/Nrsemu6x/index.m3u8
|
||||
[网曝系列]LAA0074 再一次高潮 #Charlotte Sins的!,https://lsbbf2.com/20240406/KgpUIaij/index.m3u8
|
||||
[网曝系列]LTV0030 慾不可纵 #Natalia Nix、Sophia Leone、Sloane的!,https://lsbbf2.com/20240406/LRWalFgP/index.m3u8
|
||||
[网曝系列]首次挑战伪外流电动八爪椅无套实战的!,https://lsbbf2.com/20240401/5iuJgKdK/index.m3u8
|
||||
[网曝系列]首次69拍摄犯规级舔穴的!,https://lsbbf2.com/20240401/yI3oS3eT/index.m3u8
|
||||
[网曝系列]时间停止器!的!,https://lsbbf2.com/20240401/jZwhMBZD/index.m3u8
|
||||
[网曝系列]圣诞礼炮!主动出击好久不见的暗恋对象的!,https://lsbbf2.com/20240401/JlHGW1C9/index.m3u8
|
||||
[网曝系列]书中自有颜如玉,如玉带你飙车去的!,https://lsbbf2.com/20240401/6T80C0dl/index.m3u8
|
||||
[网曝系列]商务客援交台妹实录的!,https://lsbbf2.com/20240331/F29bFkYa/index.m3u8
|
||||
[网曝系列]嫂子的特殊请求1的!,https://lsbbf2.com/20240330/NwUxdFU8/index.m3u8
|
||||
[网曝系列]嫂子我真没醉!1的!,https://lsbbf2.com/20240330/jAP8qM30/index.m3u8
|
||||
[网曝系列]日系風情櫻花妹裡面什麼都沒穿1的!,https://lsbbf2.com/20240329/ojuTTJpC/index.m3u8
|
||||
[网曝系列]日式風俗泡泡姬好多汁,一對一泡泡姬結果變成泡泡好多雞1的!,https://lsbbf2.com/20240329/6JUXLG51/index.m3u8
|
||||
[网曝系列]泡泡浴缸里的激情1的!,https://lsbbf2.com/20240326/46aE7hEK/index.m3u8
|
||||
[网曝系列]皮蛋酱005-野蛮新娘1的!,https://lsbbf2.com/20240326/VvopLJY4/index.m3u8
|
||||
[网曝系列]漂亮御姐的绝世美逼1的!,https://lsbbf2.com/20240326/K2aqpRpO/index.m3u8
|
||||
[网曝系列]拍写真的陷阱1的!,https://lsbbf2.com/20240326/yimseXRP/index.m3u8
|
||||
[网曝系列]平面模特面试当场引诱HR合体,事后却成为了长期炮友1的!,https://lsbbf2.com/20240326/aDB2Xuww/index.m3u8
|
||||
[网曝系列]你的未来老婆现在就是这样被玩1的!,https://lsbbf2.com/20240325/K89iTIti/index.m3u8
|
||||
[网曝系列]你的圣诞小姐姐❤1的!,https://lsbbf2.com/20240325/Jf8HPJUk/index.m3u8
|
||||
[网曝系列]嫩模自慰视频流出1的!,https://lsbbf2.com/20240325/u0SAKEAb/index.m3u8
|
||||
[网曝系列]内衣模特VS摄影师 无套激情做爱1的!,https://lsbbf2.com/20240325/JSTClywo/index.m3u8
|
||||
[网曝系列]娜娜姐开车带我去酒店爱爱1的!,https://lsbbf2.com/20240324/c6R87q5O/index.m3u8
|
||||
[网曝系列]明星颜值表情销魂,完美露脸后入篇1的!,https://lsbbf2.com/20240324/rMdKIm0n/index.m3u8
|
||||
[网曝系列]美艳版的妩媚娘,皇上今晚會翻我牌吗?1的!,https://lsbbf2.com/20240322/7pry398U/index.m3u8
|
||||
[网曝系列]美腿足交-用丝袜套出精液1的!,https://lsbbf2.com/20240322/r1ZznTzV/index.m3u8
|
||||
[网曝系列]美腿肩上扛,最爱才更爽1的!,https://lsbbf2.com/20240322/rcxeYUPI/index.m3u8
|
||||
[网曝系列]美腿高跟少妇背枪很不错1的!,https://lsbbf2.com/20240322/Walyt6d0/index.m3u8
|
||||
[网曝系列]美腿肩上扛,最爱才更爽1的!,https://lsbbf2.com/20240322/rcxeYUPI/index.m3u8
|
||||
[网曝系列]美腿高跟少妇背枪很不错1的!,https://lsbbf2.com/20240322/Walyt6d0/index.m3u8
|
||||
[网曝系列]乱伦新片-妈妈新娘1的!,https://lsbbf2.com/20240320/GhpolgHt/index.m3u8
|
||||
[网曝系列]颅内高潮-臭哥哥你轻点妹妹现在还小呢1的!,https://lsbbf2.com/20240320/Y5qLof3L/index.m3u8
|
||||
[网曝系列]楼梯间自慰被扔垃圾的邻居看到了1的!,https://lsbbf2.com/20240320/Y3WzxwSb/index.m3u8
|
||||
[网曝系列]邻家姐姐21的!,https://lsbbf2.com/20240320/wD6PQTUw/index.m3u8
|
||||
[网曝系列]迷路的兔子多亏我帮他摩擦取暖1的!,https://lsbbf2.com/20240323/PajdXBvR/index.m3u8
|
||||
[网曝系列]早起共浴操操操。,https://lsbbf2.com/20240426/29qqW4gR/index.m3u8
|
||||
|
||||
|
||||
自拍偷拍,#genre#
|
||||
|
||||
[自拍偷拍]约炮高颜值妹子,口交舔弄上位骑操。,https://lsbbf2.com/20240425/mfYgdCkl/index.m3u8
|
||||
[自拍偷拍]再次在浴室喷出。,https://lsbbf2.com/20240425/m95xT9mH/index.m3u8
|
||||
[自拍偷拍]月薪3000的服务员接待醉酒大哥陪睡后少干一年。,https://lsbbf2.com/20240425/NlecdenK/index.m3u8
|
||||
[自拍偷拍]约清纯漂亮的邻家小妹初体验好有恋爱的感觉。,https://lsbbf2.com/20240425/He6q1KQr/index.m3u8
|
||||
[自拍偷拍]可爱萝莉cosplay翘臀等你插。,https://lsbbf2.com/20240424/dtDebKMJ/index.m3u8
|
||||
[自拍偷拍]母狗就是要从小开始养成。,https://lsbbf2.com/20240424/RkJaDdcE/index.m3u8
|
||||
[自拍偷拍]母狗就该一直跪著被干。,https://lsbbf2.com/20240424/t0taoTxT/index.m3u8
|
||||
[自拍偷拍]可爱萝莉萌白酱黑丝制服漏穴自慰 一线天粉穴呻吟。,https://lsbbf2.com/20240424/fOdAi8kg/index.m3u8
|
||||
[自拍偷拍]卡丁车手珍娜购物车上等你。,https://lsbbf2.com/20240424/0GD5qWyQ/index.m3u8
|
||||
[自拍偷拍]黄瓜真好能吃能用哈哈。,https://lsbbf2.com/20240422/NWwUZJz5/index.m3u8
|
||||
[自拍偷拍]护士小姐姐的取精服务。,https://lsbbf2.com/20240422/IyJKPnur/index.m3u8
|
||||
[自拍偷拍]户外温泉 激情后入。,https://lsbbf2.com/20240422/EOGrTDJp/index.m3u8
|
||||
[自拍偷拍]好想穿著比基尼在户外游泳池干阿。,https://lsbbf2.com/20240421/pmU9Rl6T/index.m3u8
|
||||
[自拍偷拍]高跟黑丝跳蛋约会公司经理。,https://lsbbf2.com/20240421/khu7wsMJ/index.m3u8
|
||||
[自拍偷拍]豪门大小姐勾引家仆做爱爽歪歪。,https://lsbbf2.com/20240421/leaXR1sF/index.m3u8
|
||||
[自拍偷拍]挂空主播小姐姐邀请一起吃晚餐。,https://lsbbf2.com/20240421/iA4C5xGB/index.m3u8
|
||||
[自拍偷拍]不知火舞给陈国汉打飞机!。,https://lsbbf2.com/20240420/ocUxWJcN/index.m3u8
|
||||
[自拍偷拍]当按摩变成激烈的做爱。,https://lsbbf2.com/20240420/jHOJZI3m/index.m3u8
|
||||
[自拍偷拍]多乙-圣诞节。,https://lsbbf2.com/20240420/1VwzOtXs/index.m3u8
|
||||
[自拍偷拍]BB酱 夏日逆袭 激情做爱 调教吞精_。,https://lsbbf2.com/20240419/jwH4St48/index.m3u8
|
||||
[自拍偷拍]【顽皮翘宝贝莫琪Mozzi】-这ol的道具也太多了吧。,https://lsbbf2.com/20240419/udPa3C6t/index.m3u8
|
||||
[自拍偷拍]不听话的伪娘奴隶被铐起来抽打调教!。,https://lsbbf2.com/20240419/x2WPXG5Y/index.m3u8
|
||||
[自拍偷拍]被手指捅到潮吹,喷得满脸都是。,https://lsbbf2.com/20240417/tQcdkIzc/index.m3u8
|
||||
[自拍偷拍]不听话的贱奴就要抽打,阳具调教。,https://lsbbf2.com/20240417/fykDBfvj/index.m3u8
|
||||
[自拍偷拍]nikole-nash-coco-lovelock-full-show-bgg-{-}。,https://lsbbf2.com/20240416/ScCPSRZZ/index.m3u8
|
||||
[自拍偷拍]Nana_Taipei-清凉一夏2。,https://lsbbf2.com/20240416/atWZi6gx/index.m3u8
|
||||
[自拍偷拍]拜托~给我吃你的精。,https://lsbbf2.com/20240416/xdRlZvb2/index.m3u8
|
||||
[自拍偷拍]白虎嫩逼黑丝高跟的骑乘自慰。,https://lsbbf2.com/20240416/08A7Ymrq/index.m3u8
|
||||
[自拍偷拍]国产捆绑口球轻调教的!,https://lsbbf2.com/20240410/UgXbJChU/index.m3u8
|
||||
[自拍偷拍]雅琪TS调教第一部的!,https://lsbbf2.com/20240410/MyquLnI3/index.m3u8
|
||||
[自拍偷拍]雅琪TS调教第三部的!,https://lsbbf2.com/20240410/U3yiIove/index.m3u8
|
||||
[自拍偷拍]国产剧情大片_SM大神)变态冷S最新作品_猫奴的!,https://lsbbf2.com/20240410/QPQuMfgD/index.m3u8
|
||||
[自拍偷拍]调教95年小母狗,3P前后夹击,双洞中出的!,https://lsbbf2.com/20240409/faKpUdxt/index.m3u8
|
||||
[自拍偷拍]摄影师KK哥还是老套路国模妹子被SM捆绑借机肏她这次有点猛的!,https://lsbbf2.com/20240409/YqLo2Ymh/index.m3u8
|
||||
[自拍偷拍]被捆绑的欲望的!,https://lsbbf2.com/20240408/1SEAo6LP/index.m3u8
|
||||
[自拍偷拍]大神调教刚破处的高三小母狗的!,https://lsbbf2.com/20240408/cYbKBLwv/index.m3u8
|
||||
[自拍偷拍][高清中文]潮吹漏尿调教护士的!,https://lsbbf2.com/20240407/IxxwTIrZ/index.m3u8
|
||||
[自拍偷拍]9凤鸣鸟唱 96部合集2 40-SM调教国模素素干的妹子求饶说不要了老规矩插嘴插逼然后在拍国语对白高清的!,https://lsbbf2.com/20240407/V7ltKJvT/index.m3u8
|
||||
[自拍偷拍]SM调教捆绑囚禁的!,https://lsbbf2.com/20240407/30qkMWBE/index.m3u8
|
||||
[自拍偷拍]Ann Lin熟睡中忽然被摄影完全侵犯调教的!,https://lsbbf2.com/20240407/syYLONsr/index.m3u8
|
||||
[自拍偷拍]【巨象娱乐】 SSN-00 潮吹五连发健身教练 湿透调教的!,https://lsbbf2.com/20240407/fE8HWSXb/index.m3u8
|
||||
[自拍偷拍]圣诞小麋鹿的!,https://lsbbf2.com/20240401/FB8wA6oQ/index.m3u8
|
||||
[自拍偷拍]生气?打一炮气就消了的!,https://lsbbf2.com/20240401/l9BI0M1I/index.m3u8
|
||||
[自拍偷拍]绅士福利-可爱的白丝小姐姐的!,https://lsbbf2.com/20240331/ULBwYpW6/index.m3u8
|
||||
[自拍偷拍]深入猛干,和炮友一起高潮的!,https://lsbbf2.com/20240331/3eyZArsd/index.m3u8
|
||||
[自拍偷拍]蛇信子姐姐的莞式服务的!,https://lsbbf2.com/20240331/RPsPJpsM/index.m3u8
|
||||
[自拍偷拍]少妇的日常的!,https://lsbbf2.com/20240331/s8dhwb1x/index.m3u8
|
||||
[自拍偷拍]上流社會的誘惑-被富少邀請到他家瘋狂做愛的!,https://lsbbf2.com/20240331/UWlpl2IO/index.m3u8
|
||||
[自拍偷拍]去乡下住一晚,却沒想到撞鬼了!!!1的!,https://lsbbf2.com/20240329/5MjdYKYt/index.m3u8
|
||||
[自拍偷拍]親弟的朋友勾引我吃jj1的!,https://lsbbf2.com/20240329/vtXYmYbo/index.m3u8
|
||||
[自拍偷拍]窮途末路求暖溫飽的情慾面試21的!,https://lsbbf2.com/20240329/mxC5tADt/index.m3u8
|
||||
[自拍偷拍]窮途末路求暖溫飽的情慾面試11的!,https://lsbbf2.com/20240329/PHlhlEAD/index.m3u8
|
||||
[自拍偷拍]秋天的风衣里什么都不穿才舒服1的!,https://lsbbf2.com/20240329/HS144Df5/index.m3u8
|
||||
[自拍偷拍]清纯百货电梯小姐的日常工作1的!,https://lsbbf2.com/20240327/feQFpiu8/index.m3u8
|
||||
[自拍偷拍]亲眼看着自己屁眼被大鸡吧插入1的!,https://lsbbf2.com/20240327/GiDVdjsK/index.m3u8
|
||||
[自拍偷拍]嫖娼叫到大学生1的!,https://lsbbf2.com/20240326/xmLnye4Z/index.m3u8
|
||||
[自拍偷拍]七夕美梦-柚子猫1的!,https://lsbbf2.com/20240326/55AyMkCf/index.m3u8
|
||||
[自拍偷拍]平面模特面试当场引诱HR打炮1的!,https://lsbbf2.com/20240326/6tl5h5BJ/index.m3u8
|
||||
[自拍偷拍]七夕豔遇1的!,https://lsbbf2.com/20240326/8huX2mt0/index.m3u8
|
||||
[自拍偷拍]你的愿望就是被绿?1的!,https://lsbbf2.com/20240325/qMshyMij/index.m3u8
|
||||
[自拍偷拍]你对我的骑马技术海满意吗?1的!,https://lsbbf2.com/20240325/KV6XdP0F/index.m3u8
|
||||
[自拍偷拍]嫩模學妹下海拍片1的!,https://lsbbf2.com/20240325/tZGh9v8b/index.m3u8
|
||||
[自拍偷拍]娜娜下课后被学长带到旅馆掰穴各种道具侵犯白浆直流1的!,https://lsbbf2.com/20240324/iWNK0ggv/index.m3u8
|
||||
[自拍偷拍]慕光社-回家的诱惑1的!,https://lsbbf2.com/20240324/BpaTk2SF/index.m3u8
|
||||
[自拍偷拍]奶头电击,抽插失禁1的!,https://lsbbf2.com/20240324/AvQCIRQu/index.m3u8
|
||||
[自拍偷拍]娜娜宝贝黑丝订制专属1的!,https://lsbbf2.com/20240324/XL0QTj8A/index.m3u8
|
||||
[自拍偷拍]慕光社-欲求不满的第二次1的!,https://lsbbf2.com/20240324/cLDet7tM/index.m3u8
|
||||
[自拍偷拍]猛插蜜桃臀精液流出1的!,https://lsbbf2.com/20240323/aw8KOfhI/index.m3u8
|
||||
[自拍偷拍]萌萌学生妹勾引摄影师做爱1的!,https://lsbbf2.com/20240323/yDox5JLl/index.m3u8
|
||||
[自拍偷拍]妹子颜值高身材很好 猫耳朵黑丝袜的自慰大秀1的!,https://lsbbf2.com/20240323/VeWtTvjO/index.m3u8
|
||||
[自拍偷拍]美腿奶浆护肤,只为成为完美新娘1的!,https://lsbbf2.com/20240322/AH6UIb6L/index.m3u8
|
||||
[自拍偷拍]美艳的看着镜子里的自己被粉丝干1的!,https://lsbbf2.com/20240322/7UONlfUK/index.m3u8
|
||||
[自拍偷拍]美尻制服妹的全套服务1的!,https://lsbbf2.com/20240321/LIwZHXHG/index.m3u8
|
||||
[自拍偷拍]美巨尻的后入诱惑1的!,https://lsbbf2.com/20240321/U1apK49e/index.m3u8
|
||||
[自拍偷拍]萝莉爱cosplay丝袜足交把她按倒猛干1的!,https://lsbbf2.com/20240320/Lc10HhgS/index.m3u8
|
||||
[自拍偷拍]萝莉的诱惑1的!,https://lsbbf2.com/20240320/l0gScHeX/index.m3u8
|
||||
[自拍偷拍]萝莉的行为时间1的!,https://lsbbf2.com/20240320/2hKLoavw/index.m3u8
|
||||
[自拍偷拍]萝莉cosplay足交口交各种姿势草不停1的!,https://lsbbf2.com/20240320/rfhmeJow/index.m3u8
|
||||
[自拍偷拍]萝莉cosplay道具自慰高潮流出1的!,https://lsbbf2.com/20240320/YVKhiwwb/index.m3u8
|
||||
[自拍偷拍]露脸黑丝制服学生妹,精致美穴c操着真爽1的!,https://lsbbf2.com/20240320/UaTS2UsB/index.m3u8
|
||||
[自拍偷拍]老婆幫幫忙1的!,https://lsbbf2.com/20240319/Ew9SynJH/index.m3u8
|
||||
[自拍偷拍]老婆老婆妳要乖11的!,https://lsbbf2.com/20240319/t9oNdg45/index.m3u8
|
||||
[自拍偷拍]老婆和炮友床上打炮老公在旁边观看打飞机1的!,https://lsbbf2.com/20240319/H8FEjwI7/index.m3u8
|
||||
[自拍偷拍]秘书的呻吟1的!,https://lsbbf2.com/20240323/i2PjVr0z/index.m3u8
|
||||
[自拍偷拍]长发妹的温柔香。,https://lsbbf2.com/20240426/3b7jtehu/index.m3u8
|
||||
[自拍偷拍]长篇深夜福利,极品美臀。,https://lsbbf2.com/20240426/LPPZDE9Y/index.m3u8
|
||||
[自拍偷拍]长腿皮衣的诱惑。,https://lsbbf2.com/20240426/lUaO6Fr5/index.m3u8
|
||||
[自拍偷拍]在丈夫面前被他朋友狠肏!。,https://lsbbf2.com/20240426/2gUzXZUt/index.m3u8
|
||||
[自拍偷拍]在老公面前用身体招呼他的朋友。,https://lsbbf2.com/20240426/yCgDCnGu/index.m3u8
|
||||
@@ -0,0 +1,912 @@
|
||||
|
||||
|
||||
🔒恶人谷,#genre#
|
||||
1pon061110_854,https://www.lbbf9.com/20200521/p3mHHHdx/700kb/hls/index.m3u8
|
||||
🦈803,https://u89ey.cdnedge.live/file/avple-images/hls/62ee05dcb65ee73dde1f5cac/playlist.m3u8
|
||||
🦈804,https://10j99.cdnedge.live/file/avple-images/hls/62ede8ccafca094a62fd4d49/playlist.m3u8
|
||||
🦈805,https://8bb88.cdnedge.live/file/avple-images/hls/62ede980afca094a62fd4d4b/playlist.m3u8
|
||||
🦈806,https://w9n76.cdnedge.live/file/avple-images/hls/62edea35afca094a62fd4d4d/playlist.m3u8
|
||||
🦈810,https://10j99.cdnedge.live/file/avple-images/hls/62ed5f79b65ee73dde1f5caa/playlist.m3u8
|
||||
🦈811,https://zo392.cdnedge.live/file/avple-images/hls/62ed5d21b65ee73dde1f5ca9/playlist.m3u8
|
||||
🦈812,https://w9n76.cdnedge.live/file/avple-images/hls/62ed4391afca094a62fd4d48/playlist.m3u8
|
||||
🦈813,https://1xp60.cdnedge.live/file/avple-images/hls/62ed4027330a304a7c078abb/playlist.m3u8
|
||||
🦈814,https://1xp60.cdnedge.live/file/avple-images/hls/62ed2baaafca094a62fd4d46/playlist.m3u8
|
||||
🦈815,https://zo392.cdnedge.live/file/avple-images/hls/62ec3f325049f024f6e4496c/playlist.m3u8
|
||||
🦈816,https://e2fa6.cdnedge.live/file/avple-images/hls/62ec35ce5049f024f6e4496b/playlist.m3u8
|
||||
🦈818,https://w9n76.cdnedge.live/file/avple-images/hls/62ec230f5049f024f6e44969/playlist.m3u8
|
||||
🦈819,https://zo392.cdnedge.live/file/avple-images/hls/62ec14fd5049f024f6e44968/playlist.m3u8
|
||||
🦈820,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec0a0c1eba2a19acd4b27b/playlist.m3u8
|
||||
🦈821,https://je40u.cdnedge.live/file/avple-images/hls/62ec0bab1eba2a19acd4b27e/playlist.m3u8
|
||||
🦈822,https://u89ey.cdnedge.live/file/avple-images/hls/62ec0af61eba2a19acd4b27d/playlist.m3u8
|
||||
🦈823,https://u89ey.cdnedge.live/file/avple-images/hls/62ec0a821eba2a19acd4b27c/playlist.m3u8
|
||||
🦈824,https://je40u.cdnedge.live/file/avple-images/hls/62ec09551eba2a19acd4b278/playlist.m3u8
|
||||
🦈827,https://je40u.cdnedge.live/file/avple-images/hls/62ec08ab1eba2a19acd4b277/playlist.m3u8
|
||||
🦈828,https://10j99.cdnedge.live/file/avple-images/hls/62ec08611eba2a19acd4b276/playlist.m3u8
|
||||
🦈829,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec07731eba2a19acd4b274/playlist.m3u8
|
||||
🦈832,https://8bb88.cdnedge.live/file/avple-images/hls/62ec06bf1eba2a19acd4b272/playlist.m3u8
|
||||
🦈833,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec06821eba2a19acd4b271/playlist.m3u8
|
||||
🦈834,https://u89ey.cdnedge.live/file/avple-images/hls/62ec09455049f024f6e44967/playlist.m3u8
|
||||
🦈835,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec04e61eba2a19acd4b270/playlist.m3u8
|
||||
🦈837,https://1xp60.cdnedge.live/file/avple-images/hls/62ec042c1eba2a19acd4b26e/playlist.m3u8
|
||||
🦈839,https://je40u.cdnedge.live/file/avple-images/hls/62ec02171eba2a19acd4b26b/playlist.m3u8
|
||||
🦈840,https://w9n76.cdnedge.live/file/avple-images/hls/62ec01d31eba2a19acd4b26a/playlist.m3u8
|
||||
🦈841,https://je40u.cdnedge.live/file/avple-images/hls/62ec01651eba2a19acd4b269/playlist.m3u8
|
||||
🦈842,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ec01251eba2a19acd4b268/playlist.m3u8
|
||||
🦈843,https://e2fa6.cdnedge.live/file/avple-images/hls/62ec00ad1eba2a19acd4b267/playlist.m3u8
|
||||
🦈844,https://10j99.cdnedge.live/file/avple-images/hls/62ebffe65049f024f6e44966/playlist.m3u8
|
||||
🦈845,https://8bb88.cdnedge.live/file/avple-images/hls/62ebf68b5049f024f6e44965/playlist.m3u8
|
||||
🦈846,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ebf68b5049f024f6e44965/playlist.m3u8
|
||||
🦈847,https://8bb88.cdnedge.live/file/avple-images/hls/62ebef7f5049f024f6e44964/playlist.m3u8
|
||||
🦈848,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ebc7a95049f024f6e44960/playlist.m3u8
|
||||
🦈849,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ebc2f75049f024f6e4495f/playlist.m3u8
|
||||
🦈850,https://8bb88.cdnedge.live/file/avple-images/hls/62eba2255049f024f6e4495e/playlist.m3u8
|
||||
🦈851,https://10j99.cdnedge.live/file/avple-images/hls/62eb9ae21eba2a19acd4b266/playlist.m3u8
|
||||
🦈852,https://je40u.cdnedge.live/file/avple-images/hls/62eb73492cc4802900f5b3ce/playlist.m3u8
|
||||
🦈854,https://zo392.cdnedge.live/file/avple-images/hls/62ea88e91a22462b0d2693cb/playlist.m3u8
|
||||
🦈855,https://q2cyl7.cdnedge.live/file/avple-images/hls/62ea84341a22462b0d2693ca/playlist.m3u8
|
||||
🦈856,https://u89ey.cdnedge.live/file/avple-images/hls/62ea7f861a22462b0d2693c9/playlist.m3u8
|
||||
🦈859,https://8bb88.cdnedge.live/file/avple-images/hls/62e97907f26353632056d490/playlist.m3u8
|
||||
🦈860,https://je40u.cdnedge.live/file/avple-images/hls/62e9376af26353632056d48f/playlist.m3u8
|
||||
🦈861,https://zo392.cdnedge.live/file/avple-images/hls/62e8e0afe80d4e1dd0b8c5c2/playlist.m3u8
|
||||
🦈862,https://je40u.cdnedge.live/file/avple-images/hls/62e8d74ee80d4e1dd0b8c5c1/playlist.m3u8
|
||||
🦈863,https://e2fa6.cdnedge.live/file/avple-images/hls/62e8d4f5e80d4e1dd0b8c5c0/playlist.m3u8
|
||||
😃803,https://e2fa6.cdnedge.live/file/avple-images/hls/62e68e970727f630f978989d/playlist.m3u8
|
||||
😃804,https://e2fa6.cdnedge.live/file/avple-images/hls/62e68f0f0727f630f978989e/playlist.m3u8
|
||||
😃806,https://q2cyl7.cdnedge.live/file/avple-images/hls/62e68c7a0727f630f9789899/playlist.m3u8
|
||||
😃808,https://10j99.cdnedge.live/file/avple-images/hls/62e68d310727f630f978989b/playlist.m3u8
|
||||
😃810,https://1xp60.cdnedge.live/file/avple-images/hls/62e68b4f0727f630f9789897/playlist.m3u8
|
||||
😃811,https://8bb88.cdnedge.live/file/avple-images/hls/62e68a9b0727f630f9789896/playlist.m3u8
|
||||
😃812,https://zo392.cdnedge.live/file/avple-images/hls/62e68a240727f630f9789895/playlist.m3u8
|
||||
😃813,https://8bb88.cdnedge.live/file/avple-images/hls/62e676a10727f630f9789894/playlist.m3u8
|
||||
😃814,https://q2cyl7.cdnedge.live/file/avple-images/hls/62e6632c25698b745fc62e3d/playlist.m3u8
|
||||
😃701,https://8bb88.cdnedge.live/file/avple-images/hls/62e53bdda7c5986c614691b4/playlist.m3u8
|
||||
😃703,https://8bb88.cdnedge.live/file/avple-images/hls/62e505837ae31a7fcbbb26d8/playlist.m3u8
|
||||
😃704,https://10j99.cdnedge.live/file/avple-images/hls/62e505837ae31a7fcbbb26d7/playlist.m3u8
|
||||
😃706,https://8bb88.cdnedge.live/file/avple-images/hls/62e503617ae31a7fcbbb26d5/playlist.m3u8
|
||||
😃707,https://zo392.cdnedge.live/file/avple-images/hls/62e4ee8d64d6ad45f65f31b9/playlist.m3u8
|
||||
😃708,https://zo392.cdnedge.live/file/avple-images/hls/62e4e2cd64d6ad45f65f31b8/playlist.m3u8
|
||||
😃709,https://8bb88.cdnedge.live/file/avple-images/hls/62e4dbc464d6ad45f65f31b7/playlist.m3u8
|
||||
😃710,https://1xp60.cdnedge.live/file/avple-images/hls/62e4d4c464d6ad45f65f31b6/playlist.m3u8
|
||||
?701,https://zo392.cdnedge.live/file/avple-images/hls/62e3e05368ab9b4779793825/playlist.m3u8
|
||||
?703,https://10j99.cdnedge.live/file/avple-images/hls/62e285ed03f56d1e4c965640/playlist.m3u8
|
||||
?704,https://w9n76.cdnedge.live/file/avple-images/hls/62e285ed03f56d1e4c96563f/playlist.m3u8
|
||||
?705,https://e2fa6.cdnedge.live/file/avple-images/hls/62e2866503f56d1e4c965641/playlist.m3u8
|
||||
?706,https://e2fa6.cdnedge.live/file/avple-images/hls/62e283d103f56d1e4c96563e/playlist.m3u8
|
||||
?707,https://10j99.cdnedge.live/file/avple-images/hls/62e282e203f56d1e4c96563c/playlist.m3u8
|
||||
?708,https://e2fa6.cdnedge.live/file/avple-images/hls/62e281f103f56d1e4c96563b/playlist.m3u8
|
||||
?709,https://1xp60.cdnedge.live/file/avple-images/hls/62e1a776ae8e25784a42cffd/playlist.m3u8
|
||||
?710,https://8bb88.cdnedge.live/file/avple-images/hls/62e17640ae8e25784a42cffc/playlist.m3u8
|
||||
?711,https://8bb88.cdnedge.live/file/avple-images/hls/62e16ce0ae8e25784a42cffb/playlist.m3u8
|
||||
?712,https://w9n76.cdnedge.live/file/avple-images/hls/62e1612aae8e25784a42cffa/playlist.m3u8
|
||||
🍄701,https://1xp60.cdnedge.live/file/avple-images/hls/62d40c2e33356255121f1986/playlist.m3u8
|
||||
🍄704,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d40b0133356255121f1984/playlist.m3u8
|
||||
🍄705,https://1xp60.cdnedge.live/file/avple-images/hls/62d40a1133356255121f1982/playlist.m3u8
|
||||
🍄707,https://u89ey.cdnedge.live/file/avple-images/hls/62d2c6a10876771b0a5ff9f5/playlist.m3u8
|
||||
🍄708,https://je40u.cdnedge.live/file/avple-images/hls/62d2c5ed0876771b0a5ff9f4/playlist.m3u8
|
||||
🍄709,https://zo392.cdnedge.live/file/avple-images/hls/62d186b59ba01b6759166c03/playlist.m3u8
|
||||
🍌701,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d1136d3f2a4e362eb52b79/playlist.m3u8
|
||||
🍌702,https://10j99.cdnedge.live/file/avple-images/hls/62d112bc3f2a4e362eb52b78/playlist.m3u8
|
||||
🍌703,https://zo392.cdnedge.live/file/avple-images/hls/62d111183f2a4e362eb52b75/playlist.m3u8
|
||||
🍌704,https://1xp60.cdnedge.live/file/avple-images/hls/62d1127e3f2a4e362eb52b77/playlist.m3u8
|
||||
🍌705,https://1xp60.cdnedge.live/file/avple-images/hls/62d112423f2a4e362eb52b76/playlist.m3u8
|
||||
🍌706,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d10fad3f2a4e362eb52b73/playlist.m3u8
|
||||
🍌707,https://je40u.cdnedge.live/file/avple-images/hls/62d10ef93f2a4e362eb52b72/playlist.m3u8
|
||||
🍌708,https://1xp60.cdnedge.live/file/avple-images/hls/62d1109e3f2a4e362eb52b74/playlist.m3u8
|
||||
🍌709,https://1xp60.cdnedge.live/file/avple-images/hls/62d10e093f2a4e362eb52b71/playlist.m3u8
|
||||
🍌711,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d10d1a3f2a4e362eb52b6f/playlist.m3u8
|
||||
🍌713,https://u89ey.cdnedge.live/file/avple-images/hls/62d10bb23f2a4e362eb52b6d/playlist.m3u8
|
||||
🍌714,https://u89ey.cdnedge.live/file/avple-images/hls/62d10aff3f2a4e362eb52b6c/playlist.m3u8
|
||||
🍌719,https://je40u.cdnedge.live/file/avple-images/hls/62d1091f3f2a4e362eb52b68/playlist.m3u8
|
||||
🍌720,https://10j99.cdnedge.live/file/avple-images/hls/62d108303f2a4e362eb52b67/playlist.m3u8
|
||||
🍌721,https://je40u.cdnedge.live/file/avple-images/hls/62d103443f2a4e362eb52b65/playlist.m3u8
|
||||
🍌722,https://e2fa6.cdnedge.live/file/avple-images/hls/62d0fffe3f2a4e362eb52b64/playlist.m3u8
|
||||
🍌723,https://q2cyl7.cdnedge.live/file/avple-images/hls/62d0ffc03f2a4e362eb52b63/playlist.m3u8
|
||||
🍌724,https://10j99.cdnedge.live/file/avple-images/hls/62d0fda53f2a4e362eb52b62/playlist.m3u8
|
||||
🍌725,https://je40u.cdnedge.live/file/avple-images/hls/62d0fc403f2a4e362eb52b60/playlist.m3u8
|
||||
🍌726,https://10j99.cdnedge.live/file/avple-images/hls/62d0fcb53f2a4e362eb52b61/playlist.m3u8
|
||||
🍌728,https://w9n76.cdnedge.live/file/avple-images/hls/62d0fb153f2a4e362eb52b5d/playlist.m3u8
|
||||
🍌730,https://10j99.cdnedge.live/file/avple-images/hls/62d0fad63f2a4e362eb52b5c/playlist.m3u8
|
||||
🍌731,https://10j99.cdnedge.live/file/avple-images/hls/62d0f9aa3f2a4e362eb52b5a/playlist.m3u8
|
||||
🍌733,https://zo392.cdnedge.live/file/avple-images/hls/62d0f80d3f2a4e362eb52b58/playlist.m3u8
|
||||
🍌735,https://zo392.cdnedge.live/file/avple-images/hls/62d015913f2a4e362eb52b54/playlist.m3u8
|
||||
🍌736,https://8bb88.cdnedge.live/file/avple-images/hls/62d014dd3f2a4e362eb52b52/playlist.m3u8
|
||||
🍌737,https://1xp60.cdnedge.live/file/avple-images/hls/62d013753f2a4e362eb52b51/playlist.m3u8
|
||||
👀701,https://w9n76.cdnedge.live/file/avple-images/hls/62c43a77366b240e3b67be28/playlist.m3u8
|
||||
👀705,https://u89ey.cdnedge.live/file/avple-images/hls/62c43a3c366b240e3b67be27/playlist.m3u8
|
||||
👀706,https://8bb88.cdnedge.live/file/avple-images/hls/62c44c81366b240e3b67be3c/playlist.m3u8
|
||||
👀707,https://e2fa6.cdnedge.live/file/avple-images/hls/62c44485366b240e3b67be38/playlist.m3u8
|
||||
👀709,https://zo392.cdnedge.live/file/avple-images/hls/62c44398366b240e3b67be36/playlist.m3u8
|
||||
👀710,https://10j99.cdnedge.live/file/avple-images/hls/62c44359366b240e3b67be35/playlist.m3u8
|
||||
👀711,https://je40u.cdnedge.live/file/avple-images/hls/62c4426c366b240e3b67be34/playlist.m3u8
|
||||
👀712,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c44231366b240e3b67be33/playlist.m3u8
|
||||
👀713,https://u89ey.cdnedge.live/file/avple-images/hls/62c4413f366b240e3b67be32/playlist.m3u8
|
||||
👀714,https://8bb88.cdnedge.live/file/avple-images/hls/62c440c8366b240e3b67be31/playlist.m3u8
|
||||
👀715,https://e2fa6.cdnedge.live/file/avple-images/hls/62c4408b366b240e3b67be30/playlist.m3u8
|
||||
👀716,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c44019366b240e3b67be2f/playlist.m3u8
|
||||
👀717,https://10j99.cdnedge.live/file/avple-images/hls/62c43eab366b240e3b67be2e/playlist.m3u8
|
||||
👀718,https://u89ey.cdnedge.live/file/avple-images/hls/62c43910366b240e3b67be25/playlist.m3u8
|
||||
👀719,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c43e37366b240e3b67be2d/playlist.m3u8
|
||||
👀720,https://1xp60.cdnedge.live/file/avple-images/hls/62c43dfa366b240e3b67be2c/playlist.m3u8
|
||||
👀722,https://8bb88.cdnedge.live/file/avple-images/hls/62c43d81366b240e3b67be2b/playlist.m3u8
|
||||
👀723,https://10j99.cdnedge.live/file/avple-images/hls/62c420dd366b240e3b67be24/playlist.m3u8
|
||||
👀724,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c41f75366b240e3b67be21/playlist.m3u8
|
||||
🐴601,https://1xp60.cdnedge.live/file/avple-images/hls/62bd8531d0fa6a48496bbf5a/playlist.m3u8
|
||||
🐴602,https://w9n76.cdnedge.live/file/avple-images/hls/62bd84f5d0fa6a48496bbf59/playlist.m3u8
|
||||
🐴603,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbf60aea3d425e0a93b7ae/playlist.m3u8
|
||||
🐴604,https://8bb88.cdnedge.live/file/avple-images/hls/62bbf3efea3d425e0a93b7a9/playlist.m3u8
|
||||
🐴605,https://je40u.cdnedge.live/file/avple-images/hls/62bbf592ea3d425e0a93b7ad/playlist.m3u8
|
||||
🐴607,https://zo392.cdnedge.live/file/avple-images/hls/62bbf556ea3d425e0a93b7ac/playlist.m3u8
|
||||
🐴608,https://1xp60.cdnedge.live/file/avple-images/hls/62bbf4a3ea3d425e0a93b7aa/playlist.m3u8
|
||||
🐴609,https://10j99.cdnedge.live/file/avple-images/hls/62bbf06cea3d425e0a93b7a5/playlist.m3u8
|
||||
🐴610,https://10j99.cdnedge.live/file/avple-images/hls/62bbf378ea3d425e0a93b7a8/playlist.m3u8
|
||||
🐴611,https://zo392.cdnedge.live/file/avple-images/hls/62bbf33aea3d425e0a93b7a7/playlist.m3u8
|
||||
🐴612,https://je40u.cdnedge.live/file/avple-images/hls/62bbf02fea3d425e0a93b7a4/playlist.m3u8
|
||||
🐴613,https://10j99.cdnedge.live/file/avple-images/hls/62bbefb8ea3d425e0a93b7a3/playlist.m3u8
|
||||
🐴614,https://zo392.cdnedge.live/file/avple-images/hls/62bbef7cea3d425e0a93b7a2/playlist.m3u8
|
||||
🐴615,https://je40u.cdnedge.live/file/avple-images/hls/62bbef03ea3d425e0a93b7a1/playlist.m3u8
|
||||
🐴617,https://zo392.cdnedge.live/file/avple-images/hls/62bbeec8ea3d425e0a93b7a0/playlist.m3u8
|
||||
🐴618,https://zo392.cdnedge.live/file/avple-images/hls/62bbee50ea3d425e0a93b79f/playlist.m3u8
|
||||
🐴619,https://10j99.cdnedge.live/file/avple-images/hls/62bbec72ea3d425e0a93b79c/playlist.m3u8
|
||||
🐴621,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbeb0aea3d425e0a93b79b/playlist.m3u8
|
||||
🐴622,https://1xp60.cdnedge.live/file/avple-images/hls/62bbe9dfea3d425e0a93b798/playlist.m3u8
|
||||
🐴623,https://8bb88.cdnedge.live/file/avple-images/hls/62bbea91ea3d425e0a93b79a/playlist.m3u8
|
||||
🐴624,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbe92aea3d425e0a93b797/playlist.m3u8
|
||||
🐴625,https://e2fa6.cdnedge.live/file/avple-images/hls/62bbea1aea3d425e0a93b799/playlist.m3u8
|
||||
🐴626,https://zo392.cdnedge.live/file/avple-images/hls/62bb2046ea3d425e0a93b796/playlist.m3u8
|
||||
🐴627,https://zo392.cdnedge.live/file/avple-images/hls/62bb1bd1ea3d425e0a93b795/playlist.m3u8
|
||||
🐴628,https://10j99.cdnedge.live/file/avple-images/hls/62bb0a7aea3d425e0a93b791/playlist.m3u8
|
||||
🐴630,https://1xp60.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b51/playlist.m3u8
|
||||
🐴631,https://8bb88.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b50/playlist.m3u8
|
||||
🐴632,https://10j99.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b4f/playlist.m3u8
|
||||
🐴633,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b9d010cf31541a6d4d7b4e/playlist.m3u8
|
||||
🐴634,https://1xp60.cdnedge.live/file/avple-images/hls/62b9b6b74cd7211d4f02180c/playlist.m3u8
|
||||
🐴635,https://1xp60.cdnedge.live/file/avple-images/hls/62b64e19fcc60515a0303de6/playlist.m3u8
|
||||
🐶601,https://1xp60.cdnedge.live/file/avple-images/hls/62b4346cea01b50f6781dc5f/playlist.m3u8
|
||||
🐶602,https://w9n76.cdnedge.live/file/avple-images/hls/62b433b8ea01b50f6781dc5e/playlist.m3u8
|
||||
🐶609,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b2dd89eec8264ea0826f31/playlist.m3u8
|
||||
🐶610,https://w9n76.cdnedge.live/file/avple-images/hls/62b2de3eeec8264ea0826f32/playlist.m3u8
|
||||
🐶611,https://e2fa6.cdnedge.live/file/avple-images/hls/62b2dd12eec8264ea0826f30/playlist.m3u8
|
||||
🐶612,https://q2cyl7.cdnedge.live/file/avple-images/hls/62b2dbadeec8264ea0826f2f/playlist.m3u8
|
||||
🐶613,https://u89ey.cdnedge.live/file/avple-images/hls/62b1b8cceec8264ea0826f2e/playlist.m3u8
|
||||
🐶615,https://10j99.cdnedge.live/file/avple-images/hls/62b1b6eceec8264ea0826f2c/playlist.m3u8
|
||||
🐶616,https://e2fa6.cdnedge.live/file/avple-images/hls/62b1b5feeec8264ea0826f2b/playlist.m3u8
|
||||
|
||||
🔒子午线,#genre#
|
||||
|
||||
🍓602,https://8bb88.cdnedge.live/file/avple-images/hls/62aed1d5c556631aff1378f4/playlist.m3u8
|
||||
🍓604,https://8bb88.cdnedge.live/file/avple-images/hls/62aecf05c556631aff1378ef/playlist.m3u8
|
||||
🍓606,https://q2cyl7.cdnedge.live/file/avple-images/hls/62aecff5c556631aff1378f0/playlist.m3u8
|
||||
🍓607,https://1xp60.cdnedge.live/file/avple-images/hls/62aece15c556631aff1378ee/playlist.m3u8
|
||||
🍓608,https://w9n76.cdnedge.live/file/avple-images/hls/62aeccaec556631aff1378ed/playlist.m3u8
|
||||
🍓609,https://u89ey.cdnedge.live/file/avple-images/hls/62aecbbdc556631aff1378eb/playlist.m3u8
|
||||
🍓610,https://8bb88.cdnedge.live/file/avple-images/hls/62aecb0ac556631aff1378ea/playlist.m3u8
|
||||
🍓611,https://je40u.cdnedge.live/file/avple-images/hls/62ac67c91ea6384bb6ca9f8d/playlist.m3u8
|
||||
🍓615,https://8bb88.cdnedge.live/file/avple-images/hls/62ac66641ea6384bb6ca9f8a/playlist.m3u8
|
||||
🍓616,https://u89ey.cdnedge.live/file/avple-images/hls/62ac65ec1ea6384bb6ca9f89/playlist.m3u8
|
||||
🍓617,https://10j99.cdnedge.live/file/avple-images/hls/62ac64491ea6384bb6ca9f88/playlist.m3u8
|
||||
🍓621,https://w9n76.cdnedge.live/file/avple-images/hls/62aad3b921a7da2e6584bc8a/playlist.m3u8
|
||||
🍓622,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad4a621a7da2e6584bc8c/playlist.m3u8
|
||||
🍓623,https://w9n76.cdnedge.live/file/avple-images/hls/62aad86721a7da2e6584bc93/playlist.m3u8
|
||||
🍓624,https://e2fa6.cdnedge.live/file/avple-images/hls/62aad60e21a7da2e6584bc8f/playlist.m3u8
|
||||
🍓625,https://zo392.cdnedge.live/file/avple-images/hls/62aad51f21a7da2e6584bc8d/playlist.m3u8
|
||||
🍓626,https://w9n76.cdnedge.live/file/avple-images/hls/62aad21a21a7da2e6584bc89/playlist.m3u8
|
||||
🍓627,https://8bb88.cdnedge.live/file/avple-images/hls/62aad7b221a7da2e6584bc92/playlist.m3u8
|
||||
🍓628,https://u89ey.cdnedge.live/file/avple-images/hls/62aad0ac21a7da2e6584bc88/playlist.m3u8
|
||||
🍓629,https://w9n76.cdnedge.live/file/avple-images/hls/62aad64c21a7da2e6584bc90/playlist.m3u8
|
||||
🍓631,https://q2cyl7.cdnedge.live/file/avple-images/hls/62aacf8121a7da2e6584bc86/playlist.m3u8
|
||||
🍓634,https://10j99.cdnedge.live/file/avple-images/hls/62aacddb21a7da2e6584bc83/playlist.m3u8
|
||||
🍓636,https://je40u.cdnedge.live/file/avple-images/hls/62aaca9721a7da2e6584bc7f/playlist.m3u8
|
||||
🍓637,https://1xp60.cdnedge.live/file/avple-images/hls/62aacb0c21a7da2e6584bc80/playlist.m3u8
|
||||
🍓638,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a9bc9d21a7da2e6584bc7e/playlist.m3u8
|
||||
🍓601,https://e2fa6.cdnedge.live/file/avple-images/hls/62a5afee94b044303b9622df/playlist.m3u8
|
||||
🍓602,https://zo392.cdnedge.live/file/avple-images/hls/62a5aefe94b044303b9622de/playlist.m3u8
|
||||
🍓603,https://w9n76.cdnedge.live/file/avple-images/hls/62a5b68294b044303b9622e3/playlist.m3u8
|
||||
🍓604,https://8bb88.cdnedge.live/file/avple-images/hls/62a5b0a294b044303b9622e0/playlist.m3u8
|
||||
🍓605,https://zo392.cdnedge.live/file/avple-images/hls/62a5b37294b044303b9622e2/playlist.m3u8
|
||||
🍓607,https://je40u.cdnedge.live/file/avple-images/hls/62a5b24894b044303b9622e1/playlist.m3u8
|
||||
🍓608,https://w9n76.cdnedge.live/file/avple-images/hls/62a5ae4a94b044303b9622dd/playlist.m3u8
|
||||
🍓609,https://je40u.cdnedge.live/file/avple-images/hls/62a5ace294b044303b9622dc/playlist.m3u8
|
||||
🍓610,https://w9n76.cdnedge.live/file/avple-images/hls/62a5abb794b044303b9622da/playlist.m3u8
|
||||
🍓611,https://1xp60.cdnedge.live/file/avple-images/hls/62a5a70894b044303b9622d4/playlist.m3u8
|
||||
🍓612,https://zo392.cdnedge.live/file/avple-images/hls/62a5aa8d94b044303b9622d9/playlist.m3u8
|
||||
🍓613,https://u89ey.cdnedge.live/file/avple-images/hls/62a5a99d94b044303b9622d8/playlist.m3u8
|
||||
🍓614,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a5a65594b044303b9622d3/playlist.m3u8
|
||||
🍓616,https://u89ey.cdnedge.live/file/avple-images/hls/62a5a4ee94b044303b9622d1/playlist.m3u8
|
||||
🍓617,https://je40u.cdnedge.live/file/avple-images/hls/62a58dbd94b044303b9622d0/playlist.m3u8
|
||||
🍓618,https://e2fa6.cdnedge.live/file/avple-images/hls/62a58b9e94b044303b9622cf/playlist.m3u8
|
||||
🍓619,https://u89ey.cdnedge.live/file/avple-images/hls/62a494d494b044303b9622cb/playlist.m3u8
|
||||
🍓620,https://8bb88.cdnedge.live/file/avple-images/hls/62a497a394b044303b9622ce/playlist.m3u8
|
||||
🍓622,https://u89ey.cdnedge.live/file/avple-images/hls/62a4963b94b044303b9622cc/playlist.m3u8
|
||||
🍓623,https://w9n76.cdnedge.live/file/avple-images/hls/62a32d8700bfe87ec988ccdc/playlist.m3u8
|
||||
🍓624,https://10j99.cdnedge.live/file/avple-images/hls/62a2a82856220431fa6b0d8d/playlist.m3u8
|
||||
🍓625,https://w9n76.cdnedge.live/file/avple-images/hls/62a2b76356220431fa6b0d91/playlist.m3u8
|
||||
🍓627,https://e2fa6.cdnedge.live/file/avple-images/hls/62a2a99256220431fa6b0d8f/playlist.m3u8
|
||||
🍓628,https://1xp60.cdnedge.live/file/avple-images/hls/62a2a64a56220431fa6b0d89/playlist.m3u8
|
||||
🍓629,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a2a68556220431fa6b0d8a/playlist.m3u8
|
||||
🍓632,https://1xp60.cdnedge.live/file/avple-images/hls/62a2a55956220431fa6b0d87/playlist.m3u8
|
||||
🍓633,https://zo392.cdnedge.live/file/avple-images/hls/62a1cbdf56220431fa6b0d84/playlist.m3u8
|
||||
🍓634,https://je40u.cdnedge.live/file/avple-images/hls/62a1ca7556220431fa6b0d82/playlist.m3u8
|
||||
🍓635,https://zo392.cdnedge.live/file/avple-images/hls/62a1cb2956220431fa6b0d83/playlist.m3u8
|
||||
🍓637,https://8bb88.cdnedge.live/file/avple-images/hls/62a1c90c56220431fa6b0d80/playlist.m3u8
|
||||
🍓638,https://q2cyl7.cdnedge.live/file/avple-images/hls/62a1c7a456220431fa6b0d7e/playlist.m3u8
|
||||
🍓639,https://e2fa6.cdnedge.live/file/avple-images/hls/62a1c429de0057366eb1159a/playlist.m3u8
|
||||
🍓640,https://w9n76.cdnedge.live/file/avple-images/hls/629f660879f93b6e0966e237/playlist.m3u8
|
||||
🍓641,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f652a1b03d86e173f7d3d/playlist.m3u8
|
||||
🍓642,https://q2cyl7.cdnedge.live/file/avple-images/hls/629f652a1b03d86e173f7d3c/playlist.m3u8
|
||||
🍓643,https://10j99.cdnedge.live/file/avple-images/hls/629f63ec79f93b6e0966e236/playlist.m3u8
|
||||
🍓644,https://8bb88.cdnedge.live/file/avple-images/hls/629f26bc79f93b6e0966e22f/playlist.m3u8
|
||||
🍓645,https://1xp60.cdnedge.live/file/avple-images/hls/629f289b79f93b6e0966e233/playlist.m3u8
|
||||
🍓646,https://10j99.cdnedge.live/file/avple-images/hls/629f295579f93b6e0966e235/playlist.m3u8
|
||||
🍓647,https://8bb88.cdnedge.live/file/avple-images/hls/629f291679f93b6e0966e234/playlist.m3u8
|
||||
🍓648,https://8bb88.cdnedge.live/file/avple-images/hls/629f268279f93b6e0966e22e/playlist.m3u8
|
||||
🍓649,https://8bb88.cdnedge.live/file/avple-images/hls/629f260979f93b6e0966e22d/playlist.m3u8
|
||||
🍓651,https://je40u.cdnedge.live/file/avple-images/hls/629f27b179f93b6e0966e231/playlist.m3u8
|
||||
🍓652,https://je40u.cdnedge.live/file/avple-images/hls/629f282479f93b6e0966e232/playlist.m3u8
|
||||
🍓653,https://e2fa6.cdnedge.live/file/avple-images/hls/629f1f02759a6d027422edf6/playlist.m3u8
|
||||
🍓655,https://8bb88.cdnedge.live/file/avple-images/hls/629f1bf5759a6d027422edf4/playlist.m3u8
|
||||
🍓656,https://zo392.cdnedge.live/file/avple-images/hls/629f1b7d759a6d027422edf3/playlist.m3u8
|
||||
🍓657,https://1xp60.cdnedge.live/file/avple-images/hls/629e1a28759a6d027422edf1/playlist.m3u8
|
||||
🍓658,https://q2cyl7.cdnedge.live/file/avple-images/hls/629e1a29759a6d027422edf2/playlist.m3u8
|
||||
🍓659,https://e2fa6.cdnedge.live/file/avple-images/hls/629b3e33c73d695b3e2f393a/playlist.m3u8
|
||||
🍓661,https://8bb88.cdnedge.live/file/avple-images/hls/629b2ebec73d695b3e2f3939/playlist.m3u8
|
||||
🍓662,https://10j99.cdnedge.live/file/avple-images/hls/629b2d8cc73d695b3e2f3937/playlist.m3u8
|
||||
🍓663,https://1xp60.cdnedge.live/file/avple-images/hls/629b2d59c73d695b3e2f3936/playlist.m3u8
|
||||
🍓664,https://w9n76.cdnedge.live/file/avple-images/hls/629b2c9c62a22f14d4ef2521/playlist.m3u8
|
||||
🍓665,https://je40u.cdnedge.live/file/avple-images/hls/629b2be962a22f14d4ef2520/playlist.m3u8
|
||||
🍓666,https://q2cyl7.cdnedge.live/file/avple-images/hls/629b2b7162a22f14d4ef251f/playlist.m3u8
|
||||
🍓667,https://je40u.cdnedge.live/file/avple-images/hls/629a049d62a22f14d4ef251d/playlist.m3u8
|
||||
🍓668,https://8bb88.cdnedge.live/file/avple-images/hls/629a049d62a22f14d4ef251e/playlist.m3u8
|
||||
🍓669,https://10j99.cdnedge.live/file/avple-images/hls/629a03e862a22f14d4ef251c/playlist.m3u8
|
||||
🍓671,https://zo392.cdnedge.live/file/avple-images/hls/629a011862a22f14d4ef251a/playlist.m3u8
|
||||
🍓672,https://10j99.cdnedge.live/file/avple-images/hls/6298bad914bfa15d01c0842d/playlist.m3u8
|
||||
🍓673,https://w9n76.cdnedge.live/file/avple-images/hls/62986aee23d5972db0bfc9a2/playlist.m3u8
|
||||
🍓675,https://u89ey.cdnedge.live/file/avple-images/hls/62986df623d5972db0bfc9a7/playlist.m3u8
|
||||
🍓676,https://10j99.cdnedge.live/file/avple-images/hls/62986d8123d5972db0bfc9a6/playlist.m3u8
|
||||
🍓677,https://u89ey.cdnedge.live/file/avple-images/hls/62986bda23d5972db0bfc9a4/playlist.m3u8
|
||||
🍓678,https://q2cyl7.cdnedge.live/file/avple-images/hls/62986d4223d5972db0bfc9a5/playlist.m3u8
|
||||
🍓679,https://u89ey.cdnedge.live/file/avple-images/hls/62986ba123d5972db0bfc9a3/playlist.m3u8
|
||||
🍓680,https://1xp60.cdnedge.live/file/avple-images/hls/6298690b23d5972db0bfc99f/playlist.m3u8
|
||||
🍓681,https://w9n76.cdnedge.live/file/avple-images/hls/6298698323d5972db0bfc9a0/playlist.m3u8
|
||||
🍓682,https://zo392.cdnedge.live/file/avple-images/hls/6298681b23d5972db0bfc99c/playlist.m3u8
|
||||
🍓683,https://8bb88.cdnedge.live/file/avple-images/hls/6298685823d5972db0bfc99d/playlist.m3u8
|
||||
🍓684,https://8bb88.cdnedge.live/file/avple-images/hls/6295fb067ef42454a69c76d6/playlist.m3u8
|
||||
🍓685,https://1xp60.cdnedge.live/file/avple-images/hls/6295f5667ef42454a69c76d4/playlist.m3u8
|
||||
🍓686,https://8bb88.cdnedge.live/file/avple-images/hls/6295f53721a63954baad12c8/playlist.m3u8
|
||||
🍓687,https://d862cp.cdnedge.live/file/avple-images/hls/6295f4087ef42454a69c76d3/playlist.m3u8
|
||||
🍓689,https://d862cp.cdnedge.live/file/avple-images/hls/62957f08180f8c65c7d908b9/playlist.m3u8
|
||||
🍓502,https://w9n76.cdnedge.live/file/avple-images/hls/6290be2987412532ac7f4cfe/playlist.m3u8
|
||||
🍓503,https://zo392.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
🍓504,https://u89ey.cdnedge.live/file/avple-images/hls/628f8543531f007e5ba30b00/playlist.m3u8
|
||||
🍓505,https://e2fa6.cdnedge.live/file/avple-images/hls/628f84ca531f007e5ba30aff/playlist.m3u8
|
||||
🍓506,https://u89ey.cdnedge.live/file/avple-images/hls/628f8453531f007e5ba30afe/playlist.m3u8
|
||||
🍓507,https://e2fa6.cdnedge.live/file/avple-images/hls/628f85bd531f007e5ba30b01/playlist.m3u8
|
||||
🍓508,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f8327531f007e5ba30afc/playlist.m3u8
|
||||
🍓509,https://e2fa6.cdnedge.live/file/avple-images/hls/628f8239531f007e5ba30afb/playlist.m3u8
|
||||
🍓510,https://w9n76.cdnedge.live/file/avple-images/hls/628f8183531f007e5ba30afa/playlist.m3u8
|
||||
🍓511,https://8bb88.cdnedge.live/file/avple-images/hls/628f7f67531f007e5ba30af7/playlist.m3u8
|
||||
🍓512,https://1xp60.cdnedge.live/file/avple-images/hls/628f7ef3531f007e5ba30af6/playlist.m3u8
|
||||
🍓514,https://q2cyl7.cdnedge.live/file/avple-images/hls/628f69da531f007e5ba30af4/playlist.m3u8
|
||||
🍓517,https://e2fa6.cdnedge.live/file/avple-images/hls/628cc69cde01360ccb2f8e9e/playlist.m3u8
|
||||
🍓519,https://u89ey.cdnedge.live/file/avple-images/hls/628cc5adde01360ccb2f8e9c/playlist.m3u8
|
||||
🍓520,https://zo392.cdnedge.live/file/avple-images/hls/628cc4f6de01360ccb2f8e9a/playlist.m3u8
|
||||
🍓524,https://u89ey.cdnedge.live/file/avple-images/hls/628b5ed9478a7e4e23bce258/playlist.m3u8
|
||||
🍓526,https://u89ey.cdnedge.live/file/avple-images/hls/628ab95fa1c1cd0b44683f01/playlist.m3u8
|
||||
🍓527,https://10j99.cdnedge.live/file/avple-images/hls/628ab923a1c1cd0b44683f00/playlist.m3u8
|
||||
🍓531,https://8bb88.cdnedge.live/file/avple-images/hls/628ab68ea1c1cd0b44683efb/playlist.m3u8
|
||||
🍓532,https://8bb88.cdnedge.live/file/avple-images/hls/628ab564a1c1cd0b44683efa/playlist.m3u8
|
||||
🍓533,https://w9n76.cdnedge.live/file/avple-images/hls/628ab4eba1c1cd0b44683ef9/playlist.m3u8
|
||||
🍓535,https://zo392.cdnedge.live/file/avple-images/hls/628ab384a1c1cd0b44683ef7/playlist.m3u8
|
||||
🍓536,https://8bb88.cdnedge.live/file/avple-images/hls/628ab3fba1c1cd0b44683ef8/playlist.m3u8
|
||||
🍓537,https://e2fa6.cdnedge.live/file/avple-images/hls/628aafc4a1c1cd0b44683ef4/playlist.m3u8
|
||||
🍓538,https://1xp60.cdnedge.live/file/avple-images/hls/628ab12ba1c1cd0b44683ef5/playlist.m3u8
|
||||
🍓539,https://10j99.cdnedge.live/file/avple-images/hls/628aaf87a1c1cd0b44683ef3/playlist.m3u8
|
||||
🍓540,https://10j99.cdnedge.live/file/avple-images/hls/628a3b0aa1c1cd0b44683ef2/playlist.m3u8
|
||||
🍓544,https://w9n76.cdnedge.live/file/avple-images/hls/6287b15cd28d4f134ac69053/playlist.m3u8
|
||||
🍓545,https://je40u.cdnedge.live/file/avple-images/hls/628798c1d28d4f134ac69049/playlist.m3u8
|
||||
🍓546,https://je40u.cdnedge.live/file/avple-images/hls/62879adcd28d4f134ac69050/playlist.m3u8
|
||||
🍓548,https://10j99.cdnedge.live/file/avple-images/hls/62879b91d28d4f134ac69052/playlist.m3u8
|
||||
🍓549,https://e2fa6.cdnedge.live/file/avple-images/hls/62879ae2d28d4f134ac69051/playlist.m3u8
|
||||
🍓550,https://q2cyl7.cdnedge.live/file/avple-images/hls/62879a28d28d4f134ac6904d/playlist.m3u8
|
||||
🍓551,https://10j99.cdnedge.live/file/avple-images/hls/628799b1d28d4f134ac6904c/playlist.m3u8
|
||||
🍓552,https://e2fa6.cdnedge.live/file/avple-images/hls/62879937d28d4f134ac6904b/playlist.m3u8
|
||||
🍓554,https://e2fa6.cdnedge.live/file/avple-images/hls/6287971dd28d4f134ac69046/playlist.m3u8
|
||||
🍓555,https://je40u.cdnedge.live/file/avple-images/hls/6287980bd28d4f134ac69048/playlist.m3u8
|
||||
🍓556,https://10j99.cdnedge.live/file/avple-images/hls/62879794d28d4f134ac69047/playlist.m3u8
|
||||
🍓557,https://je40u.cdnedge.live/file/avple-images/hls/62879668d28d4f134ac69045/playlist.m3u8
|
||||
🍓558,https://10j99.cdnedge.live/file/avple-images/hls/62863d69ebf92063abd2f8b0/playlist.m3u8
|
||||
🍓559,https://je40u.cdnedge.live/file/avple-images/hls/628637caebf92063abd2f8af/playlist.m3u8
|
||||
🍓560,https://w9n76.cdnedge.live/file/avple-images/hls/6284e648c71b08247ee18e36/playlist.m3u8
|
||||
🍓561,https://w9n76.cdnedge.live/file/avple-images/hls/6284f2fbc71b08247ee18e3c/playlist.m3u8
|
||||
🍓562,https://10j99.cdnedge.live/file/avple-images/hls/6284e030c71b08247ee18e2d/playlist.m3u8
|
||||
🍓563,https://10j99.cdnedge.live/file/avple-images/hls/6284ea43c71b08247ee18e3b/playlist.m3u8
|
||||
🍓564,https://e2fa6.cdnedge.live/file/avple-images/hls/6284ea06c71b08247ee18e3a/playlist.m3u8
|
||||
🍓565,https://zo392.cdnedge.live/file/avple-images/hls/6284e827c71b08247ee18e39/playlist.m3u8
|
||||
🍓566,https://q2cyl7.cdnedge.live/file/avple-images/hls/6284e7b1c71b08247ee18e38/playlist.m3u8
|
||||
🍓567,https://w9n76.cdnedge.live/file/avple-images/hls/6284e6bfc71b08247ee18e37/playlist.m3u8
|
||||
🍓569,https://1xp60.cdnedge.live/file/avple-images/hls/6284e4a4c71b08247ee18e33/playlist.m3u8
|
||||
🍓573,https://je40u.cdnedge.live/file/avple-images/hls/6284e301c71b08247ee18e30/playlist.m3u8
|
||||
🍓574,https://zo392.cdnedge.live/file/avple-images/hls/6284e210c71b08247ee18e2e/playlist.m3u8
|
||||
🍓576,https://10j99.cdnedge.live/file/avple-images/hls/6284dfb7c71b08247ee18e2c/playlist.m3u8
|
||||
🍓579,https://8bb88.cdnedge.live/file/avple-images/hls/6280be37fc27be165aeb81e0/playlist.m3u8
|
||||
🍓580,https://e2fa6.cdnedge.live/file/avple-images/hls/6280da2fef039d5507989172/playlist.m3u8
|
||||
🍓582,https://je40u.cdnedge.live/file/avple-images/hls/6280d9a2ef039d5507989171/playlist.m3u8
|
||||
🍓583,https://je40u.cdnedge.live/file/avple-images/hls/6280d8b2ef039d5507989170/playlist.m3u8
|
||||
🍓585,https://zo392.cdnedge.live/file/avple-images/hls/6280d3c6ef039d550798916d/playlist.m3u8
|
||||
🍓587,https://10j99.cdnedge.live/file/avple-images/hls/6280bd0bfc27be165aeb81de/playlist.m3u8
|
||||
🍓588,https://e2fa6.cdnedge.live/file/avple-images/hls/6280bd84fc27be165aeb81df/playlist.m3u8
|
||||
🍓592,https://q2cyl7.cdnedge.live/file/avple-images/hls/6280b7a8fc27be165aeb81d9/playlist.m3u8
|
||||
🍓593,https://je40u.cdnedge.live/file/avple-images/hls/6280b58dfc27be165aeb81d8/playlist.m3u8
|
||||
🍓594,https://je40u.cdnedge.live/file/avple-images/hls/6280b4d7fc27be165aeb81d7/playlist.m3u8
|
||||
🍓595,https://8bb88.cdnedge.live/file/avple-images/hls/6280b3effc27be165aeb81d6/playlist.m3u8
|
||||
🍓597,https://10j99.cdnedge.live/file/avple-images/hls/6280b245fc27be165aeb81d4/playlist.m3u8
|
||||
🍓598,https://10j99.cdnedge.live/file/avple-images/hls/6280b1cefc27be165aeb81d3/playlist.m3u8
|
||||
🍎何苗02,https://8bb88.cdnedge.live/file/avple-images/hls/60e6f101295d6915521367be/playlist.m3u8
|
||||
🍎何苗03,https://e2fa6.cdnedge.live/file/avple-images/hls/60ddd96d41b32117d66a0b90/playlist.m3u8
|
||||
🍎何苗04,https://je40u.cdnedge.live/file/avple-images/hls/60c5b53151c874535ee1f596/playlist.m3u8
|
||||
🍎何苗05,https://1xp60.cdnedge.live/file/avple-images/hls/60c479059ca4d00ccdb17dd3/playlist.m3u8
|
||||
🍎何苗06,https://10j99.cdnedge.live/file/avple-images/hls/60ba17adecb87a1b5b8fa845/playlist.m3u8
|
||||
🍎何苗07,https://u89ey.cdnedge.live/file/avple-images/hls/6092c3d9caa9c843e1f9864e/playlist.m3u8
|
||||
🍎何苗09,https://10j99.cdnedge.live/file/avple-images/hls/6082a8b9e00778504ee22c45/playlist.m3u8
|
||||
🍎何苗10,https://10j99.cdnedge.live/file/avple-images/hls/606ef0483d938869f8b4803f/playlist.m3u8
|
||||
🍎何苗11,https://10j99.cdnedge.live/file/avple-images/hls/6070dc7890160a18a06bac77/video_1.m3u8
|
||||
🍎夜夜04,https://w9n76.cdnedge.live/file/avple-images/hls/605d78241eac1e0435da7776/playlist.m3u8
|
||||
🍎夜夜05,https://u89ey.cdnedge.live/file/avple-images/hls/60648c98f42e935e1522430d/video_1.m3u8
|
||||
🍎夜夜06,https://q2cyl7.cdnedge.live/file/avple-images/hls/6120e0b9dd553b6d68d67893/playlist.m3u8
|
||||
🍎夜夜07,https://8bb88.cdnedge.live/file/avple-images/hls/61630fed114a6a29b065cdec/playlist.m3u8
|
||||
🍎夜夜09,https://e2fa6.cdnedge.live/file/avple-images/hls/61b46e79f91a1b0eecb6e531/playlist.m3u8
|
||||
🍎夜夜10,https://10j99.cdnedge.live/file/avple-images/hls/61b6cccd1458462c26eadc8b/playlist.m3u8
|
||||
🍎夜夜13,https://e2fa6.cdnedge.live/file/avple-images/hls/621e146a0b43873ee3783be9/playlist.m3u8
|
||||
🍎沈芯 01,https://je40u.cdnedge.live/file/avple-images/hls/605d78241eac1e0435da7859/video_1.m3u8
|
||||
🍎沈芯 02,https://q2cyl7.cdnedge.live/file/avple-images/hls/605d78241eac1e0435da7847/playlist.m3u8
|
||||
🍎孟若 03,https://w9n76.cdnedge.live/file/avple-images/hls/60b506e26901331b989b0062/playlist.m3u8
|
||||
🍎孟若 05,https://zo392.cdnedge.live/file/avple-images/hls/610c6639ff7a912d5bde15c0/playlist.m3u8
|
||||
🍎孟若 06,https://10j99.cdnedge.live/file/avple-images/hls/61490599aa66a611331a8a68/playlist.m3u8
|
||||
🍎孟若 07,https://u89ey.cdnedge.live/file/avple-images/hls/6186240126bdd144b598cbd2/playlist.m3u8
|
||||
🍎孟若 08,https://e2fa6.cdnedge.live/file/avple-images/hls/619c01d1f0d6ad68f95a08a8/playlist.m3u8
|
||||
🍎孟若 09,https://zo392.cdnedge.live/file/avple-images/hls/61accd32779a324ef83699a0/playlist.m3u8
|
||||
🍎孟若 10,https://8bb88.cdnedge.live/file/avple-images/hls/61bad4fdd56b7626e975d4ee/playlist.m3u8
|
||||
🍎孟若 11,https://je40u.cdnedge.live/file/avple-images/hls/61c6a612668fd93b4250a31c/playlist.m3u8
|
||||
🍎孟若 13,https://10j99.cdnedge.live/file/avple-images/hls/621731ea336b5d6ff709b379/playlist.m3u8
|
||||
🍓01,https://e2fa6.cdnedge.live/file/avple-images/hls/62ad51f94d3db17e320c3cba/playlist.m3u8
|
||||
🍓02,https://e2fa6.cdnedge.live/file/avple-images/hls/62ac3896510f2d35a3cbebf8/playlist.m3u8
|
||||
🍓04,https://je40u.cdnedge.live/file/avple-images/hls/627ec3e88c37cd1970999c03/playlist.m3u8
|
||||
🍓05,https://1xp60.cdnedge.live/file/avple-images/hls/6269e441efdc6c2bd40c3276/playlist.m3u8
|
||||
🍓06,https://je40u.cdnedge.live/file/avple-images/hls/625969a2c471482782ec91c7/playlist.m3u8
|
||||
🍓07,https://q2cyl7.cdnedge.live/file/avple-images/hls/6259312ec2fab47aefd498fc/playlist.m3u8
|
||||
🍓08,https://q2cyl7.cdnedge.live/file/avple-images/hls/624ffde4f0cc4f2b3cb8b9f4/playlist.m3u8
|
||||
🍓10,https://10j99.cdnedge.live/file/avple-images/hls/622b7c9d92a1597735174eb4/playlist.m3u8
|
||||
🍓11,https://w9n76.cdnedge.live/file/avple-images/hls/622b7506e28d0a772e8d987a/playlist.m3u8
|
||||
🍓13,https://je40u.cdnedge.live/file/avple-images/hls/6218a1282766e93bde6539d5/playlist.m3u8
|
||||
🍓14,https://u89ey.cdnedge.live/file/avple-images/hls/61f3d928aac06d2ccea2e275/playlist.m3u8
|
||||
🍓16,https://10j99.cdnedge.live/file/avple-images/hls/61bbf41fee82d469c8462e74/playlist.m3u8
|
||||
🍓17,https://10j99.cdnedge.live/file/avple-images/hls/61816f6bb277fb42ae96f128/playlist.m3u8
|
||||
19,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c5a54536c38433078a694f/playlist.m3u8
|
||||
17,https://v.didivod.com/20220817/vjOcbzJ5/index.m3u8
|
||||
16,https://v.didivod.com/20220817/OdusJvIB/index.m3u8
|
||||
15,https://v.didivod.com/20220817/0dEtvh0F/index.m3u8
|
||||
14,https://v.didivod.com/20220817/iEa8XRhW/index.m3u8
|
||||
11https://v.didivod.com/20220817/RNEnZQHZ/index.m3u8
|
||||
13,https://v.didivod.com/20220817/iuppqoGA/index.m3u8
|
||||
12,https://v.didivod.com/20220817/YbbuEWgp/index.m3u8
|
||||
01,https://1xp60.cdnedge.live/file/avple-images/hls/62bd878ad0fa6a48496bbf5c/playlist.m3u8
|
||||
18,https://q2cyl7.cdnedge.live/file/avple-images/hls/62c047ca8a72962dc53aa5a0/playlist.m3u8
|
||||
19,https://u89ey.cdnedge.live/file/avple-images/hls/62bee355e8dd79755d817bbb/playlist.m3u8
|
||||
20,https://8bb88.cdnedge.live/file/avple-images/hls/62bd8968d0fa6a48496bbf61/playlist.m3u8
|
||||
22,https://10j99.cdnedge.live/file/avple-images/hls/62bd8879d0fa6a48496bbf5e/playlist.m3u8
|
||||
23,https://q2cyl7.cdnedge.live/file/avple-images/hls/62bd8710d0fa6a48496bbf5b/playlist.m3u8
|
||||
24,https://zo392.cdnedge.live/file/avple-images/hls/62bd88f0d0fa6a48496bbf60/playlist.m3u8
|
||||
25,https://je40u.cdnedge.live/file/avple-images/hls/62bd88b4d0fa6a48496bbf5f/playlist.m3u8
|
||||
26,https://je40u.cdnedge.live/file/avple-images/hls/62bd84f5d0fa6a48496bbf59/playlist.m3u8
|
||||
10,https://zo392.cdnedge.live/file/avple-images/hls/60ba6f55ecb87a1b5b8fa848/playlist.m3u8
|
||||
11,https://e2fa6.cdnedge.live/file/avple-images/hls/6157416d9dda0e2db22a7f11/playlist.m3u8
|
||||
14,https://zo392.cdnedge.live/file/avple-images/hls/61584c9d4617d9667f1fa688/playlist.m3u8
|
||||
🔒凌烟阁,#genre#
|
||||
🌏1101,https://u89ey1.cdnedge.live/file/avple-asserts/hls/636263a357da9326a9b1cdcb/playlist.m3u8
|
||||
🌏1102,https://8bb881.cdnedge.live/file/avple-asserts/hls/636269f557da9326a9b1cdd7/playlist.m3u8
|
||||
🌏1104,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63638333b893d94d5831c8fb/playlist.m3u8
|
||||
🌏1106,https://w9n761.cdnedge.live/file/avple-asserts/hls/63625f7557da9326a9b1cdc8/playlist.m3u8
|
||||
🌏1107,https://e2fa61.cdnedge.live/file/avple-asserts/hls/636268d757da9326a9b1cdd4/playlist.m3u8
|
||||
🌏1108,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63626a3f57da9326a9b1cdd8/playlist.m3u8
|
||||
🌏1110,https://10j991.cdnedge.live/file/avple-asserts/hls/636267e657da9326a9b1cdd3/playlist.m3u8
|
||||
🌏1111,https://e2fa61.cdnedge.live/file/avple-asserts/hls/636267a957da9326a9b1cdd2/playlist.m3u8
|
||||
🌏1112,https://10j991.cdnedge.live/file/avple-asserts/hls/6362673157da9326a9b1cdd1/playlist.m3u8
|
||||
🌏1113,https://8bb881.cdnedge.live/file/avple-asserts/hls/636266ba57da9326a9b1cdd0/playlist.m3u8
|
||||
🌏1114,https://zo3921.cdnedge.live/file/avple-asserts/hls/6362655057da9326a9b1cdcf/playlist.m3u8
|
||||
🌏1115,https://1xp601.cdnedge.live/file/avple-asserts/hls/6362642557da9326a9b1cdcd/playlist.m3u8
|
||||
🌏1116,https://e2fa61.cdnedge.live/file/avple-asserts/hls/636264da57da9326a9b1cdce/playlist.m3u8
|
||||
🌏1117,https://1xp601.cdnedge.live/file/avple-asserts/hls/636263ad57da9326a9b1cdcc/playlist.m3u8
|
||||
🌏1118,https://zo3921.cdnedge.live/file/avple-asserts/hls/636260a157da9326a9b1cdca/playlist.m3u8
|
||||
🌏1121,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63625ec157da9326a9b1cdc7/playlist.m3u8
|
||||
🌏1122,https://zo3921.cdnedge.live/file/avple-asserts/hls/63625a8857da9326a9b1cdc5/playlist.m3u8
|
||||
🌏1124,https://1xp601.cdnedge.live/file/avple-asserts/hls/636259d557da9326a9b1cdc3/playlist.m3u8
|
||||
🌏1126,https://1xp601.cdnedge.live/file/avple-asserts/hls/63622d06762789063c4c97fd/playlist.m3u8
|
||||
🌏1127,https://zo3921.cdnedge.live/file/avple-asserts/hls/636223a4762789063c4c97fb/playlist.m3u8
|
||||
🌏1130,https://8bb881.cdnedge.live/file/avple-asserts/hls/63613766127eed54f5fdc63c/playlist.m3u8
|
||||
🌏1132,https://zo3921.cdnedge.live/file/avple-asserts/hls/63612033127eed54f5fdc636/playlist.m3u8
|
||||
🌏1133,https://w9n761.cdnedge.live/file/avple-asserts/hls/636120e6127eed54f5fdc637/playlist.m3u8
|
||||
🌏1134,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63611f7f127eed54f5fdc635/playlist.m3u8
|
||||
🌏1135,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63611eca127eed54f5fdc633/playlist.m3u8
|
||||
🌏1137,https://10j991.cdnedge.live/file/avple-asserts/hls/63611eca127eed54f5fdc632/playlist.m3u8
|
||||
🌏1138,https://10j991.cdnedge.live/file/avple-asserts/hls/63611d62127eed54f5fdc630/playlist.m3u8
|
||||
🌏1139,https://1xp601.cdnedge.live/file/avple-asserts/hls/63611bfa127eed54f5fdc62f/playlist.m3u8
|
||||
🌏1142,https://10j991.cdnedge.live/file/avple-asserts/hls/635fcba48eda8a6cdeb7e9da/playlist.m3u8
|
||||
🌏1143,https://10j991.cdnedge.live/file/avple-asserts/hls/635fcba38eda8a6cdeb7e9d9/playlist.m3u8
|
||||
🌏1144,https://1xp601.cdnedge.live/file/avple-asserts/hls/635fc2438eda8a6cdeb7e9d7/playlist.m3u8
|
||||
🌏1001,https://1xp601.cdnedge.live/file/avple-asserts/hls/635cf2bcd78c10293225b651/playlist.m3u8
|
||||
🌏1002,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd515/playlist.m3u8
|
||||
🌏1003,https://10j991.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd51b/playlist.m3u8
|
||||
🌏1007,https://zo3921.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd518/playlist.m3u8
|
||||
🌏1009,https://zo3921.cdnedge.live/file/avple-asserts/hls/635ca01da17d7c0b274cd517/playlist.m3u8
|
||||
🌏1011,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635c83a58e0ba231034c2a3f/playlist.m3u8
|
||||
🌏1013,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd426/playlist.m3u8
|
||||
🌏1015,https://zo3921.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd429/playlist.m3u8
|
||||
🌏1016,https://8bb881.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd427/playlist.m3u8
|
||||
🌏1017,https://10j991.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd425/playlist.m3u8
|
||||
🌏1018,https://1xp601.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd423/playlist.m3u8
|
||||
🌏1019,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd41f/playlist.m3u8
|
||||
🌏1020,https://10j991.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd424/playlist.m3u8
|
||||
🌏1021,https://e2fa61.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd422/playlist.m3u8
|
||||
🌏1022,https://zo3921.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd421/playlist.m3u8
|
||||
🌏1023,https://10j991.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd421/playlist.m3u8
|
||||
🌏1024,https://zo3921.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd420/playlist.m3u8
|
||||
🌏1025,https://w9n761.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd418/playlist.m3u8
|
||||
🌏1028,https://8bb881.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd41c/playlist.m3u8
|
||||
🌏1030,https://1xp601.cdnedge.live/file/avple-asserts/hls/635c812da17d7c0b274cd419/playlist.m3u8
|
||||
🌏1033,https://zo3921.cdnedge.live/file/avple-asserts/hls/635c80208e0ba231034c2a3d/playlist.m3u8
|
||||
🌏1034,https://10j991.cdnedge.live/file/avple-asserts/hls/635c328bd78c10293225b64f/playlist.m3u8
|
||||
🌏1036,https://1xp601.cdnedge.live/file/avple-asserts/hls/635c1d75d78c10293225b64c/playlist.m3u8
|
||||
🌏1038,https://10j991.cdnedge.live/file/avple-asserts/hls/635ba9028e0ba231034c2a2e/playlist.m3u8
|
||||
🌏1039,https://8bb881.cdnedge.live/file/avple-asserts/hls/635ba8568e0ba231034c2a2c/playlist.m3u8
|
||||
🌏1040,https://1xp601.cdnedge.live/file/avple-asserts/hls/635ba8134c2ba20f2586bed0/playlist.m3u8
|
||||
🌏1043,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635a3146877aa7388ca75460/playlist.m3u8
|
||||
🌏1044,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63599ff3877aa7388ca7545f/playlist.m3u8
|
||||
🌏1045,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63597f23877aa7388ca7545e/playlist.m3u8
|
||||
🌏1046,https://10j991.cdnedge.live/file/avple-asserts/hls/635954f3877aa7388ca7545d/playlist.m3u8
|
||||
🌏1049,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635938d6877aa7388ca75459/playlist.m3u8
|
||||
🌏1051,https://1xp601.cdnedge.live/file/avple-asserts/hls/6359261ff32ff96c7ec5d453/playlist.m3u8
|
||||
🌏1052,https://10j991.cdnedge.live/file/avple-asserts/hls/635925e3f32ff96c7ec5d452/playlist.m3u8
|
||||
🌏1053,https://8bb881.cdnedge.live/file/avple-asserts/hls/6359256af32ff96c7ec5d451/playlist.m3u8
|
||||
🌏1054,https://8bb881.cdnedge.live/file/avple-asserts/hls/635924f5f32ff96c7ec5d450/playlist.m3u8
|
||||
🌏1057,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635923c7f32ff96c7ec5d44d/playlist.m3u8
|
||||
🌏1059,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63592263f32ff96c7ec5d44a/playlist.m3u8
|
||||
🌏1060,https://w9n761.cdnedge.live/file/avple-asserts/hls/63592314f32ff96c7ec5d44b/playlist.m3u8
|
||||
🌏1061,https://zo3921.cdnedge.live/file/avple-asserts/hls/635921e9f32ff96c7ec5d449/playlist.m3u8
|
||||
🌏1062,https://w9n761.cdnedge.live/file/avple-asserts/hls/635921adf32ff96c7ec5d448/playlist.m3u8
|
||||
🌏1068,https://1xp601.cdnedge.live/file/avple-asserts/hls/6355e5da54092e7600dd8ae3/playlist.m3u8
|
||||
🌏1070,https://w9n761.cdnedge.live/file/avple-asserts/hls/6355e43654092e7600dd8adf/playlist.m3u8
|
||||
🌏1076,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6355e1aa54092e7600dd8ada/playlist.m3u8
|
||||
🌏1077,https://8bb881.cdnedge.live/file/avple-asserts/hls/6355e12c54092e7600dd8ad9/playlist.m3u8
|
||||
🌏1078,https://w9n761.cdnedge.live/file/avple-asserts/hls/6355e0f054092e7600dd8ad8/playlist.m3u8
|
||||
🌏1081,https://8bb881.cdnedge.live/file/avple-asserts/hls/6355df1154092e7600dd8ad5/playlist.m3u8
|
||||
🌏1082,https://zo3921.cdnedge.live/file/avple-asserts/hls/63581d46f6a4fb2bb60a9001/playlist.m3u8
|
||||
🍫1002,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6353f83ac5cf844cb6d68283/playlist.m3u8
|
||||
🍫1003,https://8bb881.cdnedge.live/file/avple-asserts/hls/63536d01cb07ae18bbbcc405/playlist.m3u8
|
||||
🍫1004,https://1xp601.cdnedge.live/file/avple-asserts/hls/6352cde14febac7a3af639b1/playlist.m3u8
|
||||
🍫1006,https://w9n761.cdnedge.live/file/avple-asserts/hls/635284fbcb07ae18bbbcc404/playlist.m3u8
|
||||
🍫1007,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63525227013bdd61fb508f8d/playlist.m3u8
|
||||
🍫1009,https://8bb881.cdnedge.live/file/avple-asserts/hls/63525135013bdd61fb508f8b/playlist.m3u8
|
||||
🍫1011,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63524d3a013bdd61fb508f88/playlist.m3u8
|
||||
🍫1013,https://e2fa61.cdnedge.live/file/avple-asserts/hls/63524cc3013bdd61fb508f87/playlist.m3u8
|
||||
🍫1015,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63524940013bdd61fb508f85/playlist.m3u8
|
||||
🍫1016,https://u89ey1.cdnedge.live/file/avple-asserts/hls/635248c8013bdd61fb508f84/playlist.m3u8
|
||||
🍫1018,https://zo3921.cdnedge.live/file/avple-asserts/hls/63512a5a01914f11ef459ac3/playlist.m3u8
|
||||
🍫1024,https://10j991.cdnedge.live/file/avple-asserts/hls/634fee34f3e40538e6472cbd/playlist.m3u8
|
||||
🍫1025,https://e2fa61.cdnedge.live/file/avple-asserts/hls/634feccff3e40538e6472cbc/playlist.m3u8
|
||||
🍫1026,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634febdcf3e40538e6472cba/playlist.m3u8
|
||||
🍫1027,https://10j991.cdnedge.live/file/avple-asserts/hls/634fec18f3e40538e6472cbb/playlist.m3u8
|
||||
🍬1000,https://1xp601.cdnedge.live/file/avple-asserts/hls/634e9a53e945e7147a58acea/playlist.m3u8
|
||||
🍬1003,https://zo3921.cdnedge.live/file/avple-asserts/hls/634d2d652f7f2d67e9da8253/playlist.m3u8
|
||||
🍬1004,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634d06895c062344b76024d2/playlist.m3u8
|
||||
🍬1005,https://8bb881.cdnedge.live/file/avple-asserts/hls/634d05d65c062344b76024d1/playlist.m3u8
|
||||
🍬1007,https://1xp601.cdnedge.live/file/avple-asserts/hls/634d04e65c062344b76024d0/playlist.m3u8
|
||||
🍬1008,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634d037d5c062344b76024ce/playlist.m3u8
|
||||
🍬1009,https://w9n761.cdnedge.live/file/avple-asserts/hls/634d03415c062344b76024cd/playlist.m3u8
|
||||
🍬1011,https://e2fa61.cdnedge.live/file/avple-asserts/hls/634d01635c062344b76024cb/playlist.m3u8
|
||||
🍬1012,https://1xp601.cdnedge.live/file/avple-asserts/hls/634d00ad5c062344b76024c9/playlist.m3u8
|
||||
🍬1014,https://1xp601.cdnedge.live/file/avple-asserts/hls/634cfecc5c062344b76024c8/playlist.m3u8
|
||||
🍬1016,https://8bb881.cdnedge.live/file/avple-asserts/hls/634cfcb15c062344b76024c6/playlist.m3u8
|
||||
🍬1018,https://1xp601.cdnedge.live/file/avple-asserts/hls/634cf92e5c062344b76024c3/playlist.m3u8
|
||||
🍬1020,https://zo3921.cdnedge.live/file/avple-asserts/hls/634cf5a95c062344b76024c2/playlist.m3u8
|
||||
🍬1024,https://zo3921.cdnedge.live/file/avple-asserts/hls/634c1a7c5c062344b76024c0/playlist.m3u8
|
||||
🍭1001,https://d862cp1.cdnedge.live/file/avple-asserts/hls/634be23a5c062344b76024bc/playlist.m3u8
|
||||
🍭1003,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634bd6fa5c062344b76024ba/playlist.m3u8
|
||||
🍭1007,https://1xp601.cdnedge.live/file/avple-asserts/hls/634a8a658495201adb1ec45c/playlist.m3u8
|
||||
🍭1008,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349eb49178aac72b27939ec/playlist.m3u8
|
||||
🍭1010,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349e841178aac72b27939e6/playlist.m3u8
|
||||
🍭1012,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349ec77178aac72b27939ee/playlist.m3u8
|
||||
🍭1014,https://zo3921.cdnedge.live/file/avple-asserts/hls/6349e9e4178aac72b27939e8/playlist.m3u8
|
||||
🍭1016,https://w9n761.cdnedge.live/file/avple-asserts/hls/6349e78c178aac72b27939e5/playlist.m3u8
|
||||
🍭1019,https://zo3921.cdnedge.live/file/avple-asserts/hls/6349e757178aac72b27939e4/playlist.m3u8
|
||||
🍭1022,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6349e481178aac72b27939de/playlist.m3u8
|
||||
🍭1023,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6349e4f9178aac72b27939df/playlist.m3u8
|
||||
🍭1024,https://8bb881.cdnedge.live/file/avple-asserts/hls/6349863f178aac72b27939dd/playlist.m3u8
|
||||
🍭1027,https://zo3921.cdnedge.live/file/avple-asserts/hls/6346b1527ba950223495b750/playlist.m3u8
|
||||
🍭1030,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6346adcf7ba950223495b74e/playlist.m3u8
|
||||
🍭1032,https://1xp601.cdnedge.live/file/avple-asserts/hls/6346a304bae0755d7e12cd77/playlist.m3u8
|
||||
🍭1034,https://w9n761.cdnedge.live/file/avple-asserts/hls/63469e54bae0755d7e12cd76/playlist.m3u8
|
||||
🍭1035,https://1xp601.cdnedge.live/file/avple-asserts/hls/63469c00bae0755d7e12cd75/playlist.m3u8
|
||||
🍺1001,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6345b8e993b50e7e36f8816e/playlist.m3u8
|
||||
🍺1002,https://1xp601.cdnedge.live/file/avple-asserts/hls/6345b8b093b50e7e36f8816d/playlist.m3u8
|
||||
🍺1003,https://1xp601.cdnedge.live/file/avple-asserts/hls/6345b4ef93b50e7e36f88167/playlist.m3u8
|
||||
🍺1004,https://w9n761.cdnedge.live/file/avple-asserts/hls/6345b99d93b50e7e36f88170/playlist.m3u8
|
||||
🍺1005,https://10j991.cdnedge.live/file/avple-asserts/hls/6345b92593b50e7e36f8816f/playlist.m3u8
|
||||
🍺1008,https://10j991.cdnedge.live/file/avple-asserts/hls/6345b78193b50e7e36f8816b/playlist.m3u8
|
||||
🍺1011,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6345b5de93b50e7e36f88169/playlist.m3u8
|
||||
🍺1012,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6345b31093b50e7e36f88165/playlist.m3u8
|
||||
🍺1013,https://10j991.cdnedge.live/file/avple-asserts/hls/6345b16f93b50e7e36f88162/playlist.m3u8
|
||||
🍺1014,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6345b22193b50e7e36f88164/playlist.m3u8
|
||||
🍺1017,https://8bb881.cdnedge.live/file/avple-asserts/hls/6345b1a893b50e7e36f88163/playlist.m3u8
|
||||
🍺1018,https://10j991.cdnedge.live/file/avple-asserts/hls/63459c6164a5ae7e4a1ccfcc/playlist.m3u8
|
||||
🍺1022,https://1xp601.cdnedge.live/file/avple-asserts/hls/6345948e93b50e7e36f88159/playlist.m3u8
|
||||
🍺1025,https://u89ey1.cdnedge.live/file/avple-asserts/hls/634589c84543db0c27fb44d3/playlist.m3u8
|
||||
🍺1026,https://zo3921.cdnedge.live/file/avple-asserts/hls/63456c7b93b50e7e36f88156/playlist.m3u8
|
||||
🍺1027,https://u89ey1.cdnedge.live/file/avple-asserts/hls/63456b1293b50e7e36f88155/playlist.m3u8
|
||||
🥛1001,https://u89ey1.cdnedge.live/file/avple-asserts/hls/633d6e6254c1e70dc9202ca4/playlist.m3u8
|
||||
🥛1003,https://u89ey1.cdnedge.live/file/avple-asserts/hls/6339708b496804778df57465/playlist.m3u8
|
||||
🥛1005,https://zo3921.cdnedge.live/file/avple-asserts/hls/63397013496804778df57464/playlist.m3u8
|
||||
🥛1008,https://w9n761.cdnedge.live/file/avple-asserts/hls/6337db16c4059d2ec8921183/playlist.m3u8
|
||||
🥛1010,https://8bb881.cdnedge.live/file/avple-asserts/hls/6337db15c4059d2ec8921182/playlist.m3u8
|
||||
🥛1012,https://e2fa61.cdnedge.live/file/avple-asserts/hls/6337d8bdc4059d2ec892117e/playlist.m3u8
|
||||
🥛1016,https://zo3921.cdnedge.live/file/avple-asserts/hls/6337d7cfc4059d2ec892117b/playlist.m3u8
|
||||
🥛1018,https://zo3921.cdnedge.live/file/avple-asserts/hls/63396f60496804778df57462/playlist.m3u8
|
||||
🥛1019,https://8bb88.cdnedge.live/file/avple-images/hls/6336fef6c4059d2ec892117a/playlist.m3u8
|
||||
🍸901,https://u89ey.cdnedge.live/file/avple-images/hls/633586cad1064e7f7a93e422/playlist.m3u8
|
||||
🍸902,https://10j99.cdnedge.live/file/avple-images/hls/63358616d1064e7f7a93e421/playlist.m3u8
|
||||
🍸904,https://zo392.cdnedge.live/file/avple-images/hls/6334481f40dd715faa4977d8/playlist.m3u8
|
||||
🍸906,https://10j99.cdnedge.live/file/avple-images/hls/6334489540dd715faa4977d9/playlist.m3u8
|
||||
🥤904,https://je40u.cdnedge.live/file/avple-images/hls/6332e0ca8c53ef345f14e770/playlist.m3u8
|
||||
🥤905,https://je40u.cdnedge.live/file/avple-images/hls/6332e0ca8c53ef345f14e771/playlist.m3u8
|
||||
🍶901,https://8bb88.cdnedge.live/file/avple-images/hls/633198a92c0e7f1990d72ee5/playlist.m3u8
|
||||
🍶902,https://8bb88.cdnedge.live/file/avple-images/hls/63319d962c0e7f1990d72eef/playlist.m3u8
|
||||
🍶903,https://je40u.cdnedge.live/file/avple-images/hls/63319c2e2c0e7f1990d72eec/playlist.m3u8
|
||||
🍶904,https://zo392.cdnedge.live/file/avple-images/hls/6331999a2c0e7f1990d72ee6/playlist.m3u8
|
||||
🍶905,https://1xp60.cdnedge.live/file/avple-images/hls/633198332c0e7f1990d72ee4/playlist.m3u8
|
||||
🍶906,https://u89ey.cdnedge.live/file/avple-images/hls/63319ac42c0e7f1990d72ee8/playlist.m3u8
|
||||
🍶907,https://10j99.cdnedge.live/file/avple-images/hls/63319b3c2c0e7f1990d72ee9/playlist.m3u8
|
||||
🍶908,https://8bb88.cdnedge.live/file/avple-images/hls/6331977c2c0e7f1990d72ee3/playlist.m3u8
|
||||
🍶909,https://10j99.cdnedge.live/file/avple-images/hls/633197432c0e7f1990d72ee2/playlist.m3u8
|
||||
🍶910,https://q2cyl7.cdnedge.live/file/avple-images/hls/6331959d2c0e7f1990d72edf/playlist.m3u8
|
||||
🍶911,https://e2fa6.cdnedge.live/file/avple-images/hls/633193452c0e7f1990d72edc/playlist.m3u8
|
||||
🍶912,https://e2fa6.cdnedge.live/file/avple-images/hls/633196152c0e7f1990d72ee0/playlist.m3u8
|
||||
🍶913,https://q2cyl7.cdnedge.live/file/avple-images/hls/633193f92c0e7f1990d72ede/playlist.m3u8
|
||||
🍶914,https://u89ey.cdnedge.live/file/avple-images/hls/6331ae6b2c0e7f1990d72ef1/playlist.m3u8
|
||||
🍶915,https://q2cyl7.cdnedge.live/file/avple-images/hls/6331aae62c0e7f1990d72ef0/playlist.m3u8
|
||||
🍶916,https://w9n76.cdnedge.live/file/avple-images/hls/63319a8b2c0e7f1990d72ee7/playlist.m3u8
|
||||
🍶917,https://u89ey.cdnedge.live/file/avple-images/hls/63319ca52c0e7f1990d72eed/playlist.m3u8
|
||||
🍶918,https://u89ey.cdnedge.live/file/avple-images/hls/633193f92c0e7f1990d72edd/playlist.m3u8
|
||||
🍶919,https://8bb88.cdnedge.live/file/avple-images/hls/63319bf42c0e7f1990d72eeb/playlist.m3u8
|
||||
🍶920,https://q2cyl7.cdnedge.live/file/avple-images/hls/6330848520ad9b7e45924718/playlist.m3u8
|
||||
🍶921,https://10j99.cdnedge.live/file/avple-images/hls/632f1fce05ca4a45ba7c2417/playlist.m3u8
|
||||
🍶923,https://u89ey.cdnedge.live/file/avple-images/hls/632f1fce05ca4a45ba7c2418/playlist.m3u8
|
||||
🍶925,https://u89ey.cdnedge.live/file/avple-images/hls/632c79fe260a326d44dbba03/playlist.m3u8
|
||||
🍶926,https://10j99.cdnedge.live/file/avple-images/hls/632c7242260a326d44dbba02/playlist.m3u8
|
||||
🍶927,https://w9n76.cdnedge.live/file/avple-images/hls/632c2d2847b7cc4261cfbb6f/playlist.m3u8
|
||||
🍶928,https://w9n76.cdnedge.live/file/avple-images/hls/632c2ced47b7cc4261cfbb6e/playlist.m3u8
|
||||
🍶929,https://u89ey.cdnedge.live/file/avple-images/hls/632c2cb247b7cc4261cfbb6d/playlist.m3u8
|
||||
🍶930,https://zo392.cdnedge.live/file/avple-images/hls/632b9795c9f3ff7545c8c7fb/playlist.m3u8
|
||||
🍹902,https://w9n76.cdnedge.live/file/avple-images/hls/632acdd514e2941c8eb055cd/playlist.m3u8
|
||||
🍹903,https://8bb88.cdnedge.live/file/avple-images/hls/632acd5d14e2941c8eb055cc/playlist.m3u8
|
||||
🍹904,https://je40u.cdnedge.live/file/avple-images/hls/632acc7114e2941c8eb055c9/playlist.m3u8
|
||||
🍹906,https://w9n76.cdnedge.live/file/avple-images/hls/632acd2014e2941c8eb055ca/playlist.m3u8
|
||||
🍷901,https://10j99.cdnedge.live/file/avple-images/hls/63284e728ad37673010a6937/playlist.m3u8
|
||||
🍷902,https://8bb88.cdnedge.live/file/avple-images/hls/63284dfb8ad37673010a6936/playlist.m3u8
|
||||
🍷903,https://10j99.cdnedge.live/file/avple-images/hls/63284eae8ad37673010a6938/playlist.m3u8
|
||||
🍷904,https://e2fa6.cdnedge.live/file/avple-images/hls/6328553d8ad37673010a6942/playlist.m3u8
|
||||
🍷905,https://8bb88.cdnedge.live/file/avple-images/hls/632851f68ad37673010a693e/playlist.m3u8
|
||||
🍷907,https://8bb88.cdnedge.live/file/avple-images/hls/632852aa8ad37673010a6940/playlist.m3u8
|
||||
🍷908,https://10j99.cdnedge.live/file/avple-images/hls/6328535d8ad37673010a6941/playlist.m3u8
|
||||
🍷909,https://u89ey.cdnedge.live/file/avple-images/hls/632851428ad37673010a693d/playlist.m3u8
|
||||
🍷910,https://1xp60.cdnedge.live/file/avple-images/hls/63284ccf8ad37673010a6935/playlist.m3u8
|
||||
🍷911,https://je40u.cdnedge.live/file/avple-images/hls/63284eea8ad37673010a6939/playlist.m3u8
|
||||
🍷912,https://8bb88.cdnedge.live/file/avple-images/hls/63284c928ad37673010a6934/playlist.m3u8
|
||||
🍷914,https://10j99.cdnedge.live/file/avple-images/hls/6328467b8ad37673010a6932/playlist.m3u8
|
||||
🍷916,https://zo392.cdnedge.live/file/avple-images/hls/632844d78ad37673010a692e/playlist.m3u8
|
||||
🍷918,https://8bb88.cdnedge.live/file/avple-images/hls/63283dd88ad37673010a692b/playlist.m3u8
|
||||
🍷919,https://u89ey.cdnedge.live/file/avple-images/hls/63283ca41938f9491dbb506d/playlist.m3u8
|
||||
🍷920,https://1xp60.cdnedge.live/file/avple-images/hls/632847a78ad37673010a6933/playlist.m3u8
|
||||
🍷921,https://1xp60.cdnedge.live/file/avple-images/hls/632845158ad37673010a692f/playlist.m3u8
|
||||
🍷923,https://1xp60.cdnedge.live/file/avple-images/hls/63283e0d8ad37673010a692c/playlist.m3u8
|
||||
🍷924,https://zo392.cdnedge.live/file/avple-images/hls/63283c2d1938f9491dbb506c/playlist.m3u8
|
||||
🍷925,https://8bb88.cdnedge.live/file/avple-images/hls/632734b41938f9491dbb5069/playlist.m3u8
|
||||
🍷926,https://w9n76.cdnedge.live/file/avple-images/hls/6327361b1938f9491dbb506b/playlist.m3u8
|
||||
🍷928,https://8bb88.cdnedge.live/file/avple-images/hls/63272cf81938f9491dbb5065/playlist.m3u8
|
||||
🍷930,https://zo392.cdnedge.live/file/avple-images/hls/63272dac1938f9491dbb5067/playlist.m3u8
|
||||
🍷931,https://w9n76.cdnedge.live/file/avple-images/hls/63272cf81938f9491dbb5066/playlist.m3u8
|
||||
🍷932,https://w9n76.cdnedge.live/file/avple-images/hls/63272c441938f9491dbb5064/playlist.m3u8
|
||||
🍷933,https://u89ey.cdnedge.live/file/avple-images/hls/63272ab5227dd84933e44a50/playlist.m3u8
|
||||
🍷934,https://e2fa6.cdnedge.live/file/avple-images/hls/63272ab5227dd84933e44a4a/playlist.m3u8
|
||||
🍾901,https://1xp60.cdnedge.live/file/avple-images/hls/6324b9c7c2c2b03978ffd222/playlist.m3u8
|
||||
🍾902,https://w9n76.cdnedge.live/file/avple-images/hls/6324b9c6c2c2b03978ffd221/playlist.m3u8
|
||||
🍾904,https://q2cyl7.cdnedge.live/file/avple-images/hls/6324b517c2c2b03978ffd21f/playlist.m3u8
|
||||
🍾906,https://je40u.cdnedge.live/file/avple-images/hls/6324a707c2c2b03978ffd21d/playlist.m3u8
|
||||
🍾907,https://1xp60.cdnedge.live/file/avple-images/hls/6324a255c2c2b03978ffd21c/playlist.m3u8
|
||||
🍾908,https://e2fa6.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8e/playlist.m3u8
|
||||
🍾909,https://8bb88.cdnedge.live/file/avple-images/hls/6323154e223d14081c6ed4c4/playlist.m3u8
|
||||
🍾910,https://zo392.cdnedge.live/file/avple-images/hls/63231af0223d14081c6ed4c6/playlist.m3u8
|
||||
🍾912,https://1xp60.cdnedge.live/file/avple-images/hls/632307fa223d14081c6ed4c2/playlist.m3u8
|
||||
🍾913,https://w9n76.cdnedge.live/file/avple-images/hls/63230836223d14081c6ed4c3/playlist.m3u8
|
||||
🍾914,https://1xp60.cdnedge.live/file/avple-images/hls/632306d0223d14081c6ed4c0/playlist.m3u8
|
||||
🍾915,https://je40u.cdnedge.live/file/avple-images/hls/63230693223d14081c6ed4bf/playlist.m3u8
|
||||
🍾916,https://d862cp.cdnedge.live/file/avple-images/hls/632305e0223d14081c6ed4be/playlist.m3u8
|
||||
🍾917,https://1xp60.cdnedge.live/file/avple-images/hls/632305a4223d14081c6ed4bd/playlist.m3u8
|
||||
🍾918,https://8bb88.cdnedge.live/file/avple-images/hls/632304f2223d14081c6ed4bc/playlist.m3u8
|
||||
🍾919,https://1xp60.cdnedge.live/file/avple-images/hls/632304b3223d14081c6ed4bb/playlist.m3u8
|
||||
🍾920,https://8bb88.cdnedge.live/file/avple-images/hls/63230400223d14081c6ed4b9/playlist.m3u8
|
||||
🍾921,https://8bb88.cdnedge.live/file/avple-images/hls/6323043b223d14081c6ed4ba/playlist.m3u8
|
||||
🍾922,https://je40u.cdnedge.live/file/avple-images/hls/6323025e223d14081c6ed4b8/playlist.m3u8
|
||||
🍾923,https://zo392.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8d/playlist.m3u8
|
||||
🍾924,https://je40u.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8c/playlist.m3u8
|
||||
🍾925,https://je40u.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8b/playlist.m3u8
|
||||
🍾926,https://zo392.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b8a/playlist.m3u8
|
||||
🍾928,https://q2cyl7.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b88/playlist.m3u8
|
||||
🍾929,https://u89ey.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b87/playlist.m3u8
|
||||
🍾930,https://q2cyl7.cdnedge.live/file/avple-images/hls/632487b675590f2b84022b86/playlist.m3u8
|
||||
🍾931,https://u89ey.cdnedge.live/file/avple-images/hls/6324823b742ceb2b85f25c54/playlist.m3u8
|
||||
☕️901,https://je40u.cdnedge.live/file/avple-images/hls/6321c10095e49551825655cc/playlist.m3u8
|
||||
☕️902,https://8bb88.cdnedge.live/file/avple-images/hls/6321aefc95e49551825655ca/playlist.m3u8
|
||||
☕️903,https://8bb88.cdnedge.live/file/avple-images/hls/6321add095e49551825655c6/playlist.m3u8
|
||||
☕️904,https://je40u.cdnedge.live/file/avple-images/hls/6321ae8695e49551825655c8/playlist.m3u8
|
||||
☕️906,https://e2fa6.cdnedge.live/file/avple-images/hls/6321ae4995e49551825655c7/playlist.m3u8
|
||||
☕️907,https://8bb88.cdnedge.live/file/avple-images/hls/6321ad9795e49551825655c5/playlist.m3u8
|
||||
☕️908,https://8bb88.cdnedge.live/file/avple-images/hls/6321aec195e49551825655c9/playlist.m3u8
|
||||
☕️909,https://q2cyl7.cdnedge.live/file/avple-images/hls/6321ace195e49551825655c3/playlist.m3u8
|
||||
☕️910,https://u89ey.cdnedge.live/file/avple-images/hls/6321ac2d95e49551825655c1/playlist.m3u8
|
||||
☕️911,https://e2fa6.cdnedge.live/file/avple-images/hls/6321abb595e49551825655c0/playlist.m3u8
|
||||
☕️913,https://8bb88.cdnedge.live/file/avple-images/hls/6321aac695e49551825655bf/playlist.m3u8
|
||||
🥂901,https://1xp60.cdnedge.live/file/avple-images/hls/632077edf43549343a76ac0c/playlist.m3u8
|
||||
🥂903,https://q2cyl7.cdnedge.live/file/avple-images/hls/6320347ad1d35e7485b7d06a/playlist.m3u8
|
||||
🥂904,https://je40u.cdnedge.live/file/avple-images/hls/632034f3d1d35e7485b7d06b/playlist.m3u8
|
||||
🥂906,https://zo392.cdnedge.live/file/avple-images/hls/632032d5d1d35e7485b7d066/playlist.m3u8
|
||||
🥂907,https://u89ey.cdnedge.live/file/avple-images/hls/63203530d1d35e7485b7d06c/playlist.m3u8
|
||||
🥂908,https://zo392.cdnedge.live/file/avple-images/hls/63203389d1d35e7485b7d068/playlist.m3u8
|
||||
🥂909,https://10j99.cdnedge.live/file/avple-images/hls/63203299d1d35e7485b7d065/playlist.m3u8
|
||||
🐣901,https://je40u.cdnedge.live/file/avple-images/hls/631362f3bb869839587d7405/playlist.m3u8
|
||||
🐣902,https://e2fa6.cdnedge.live/file/avple-images/hls/6313623fbb869839587d7404/playlist.m3u8
|
||||
🐣903,https://q2cyl7.cdnedge.live/file/avple-images/hls/6313618bbb869839587d7403/playlist.m3u8
|
||||
🐣905,https://zo392.cdnedge.live/file/avple-images/hls/63135743bb869839587d73ff/playlist.m3u8
|
||||
🐣906,https://e2fa6.cdnedge.live/file/avple-images/hls/63135653bb869839587d73fc/playlist.m3u8
|
||||
🐣907,https://w9n76.cdnedge.live/file/avple-images/hls/63135691bb869839587d73fd/playlist.m3u8
|
||||
🐣908,https://8bb88.cdnedge.live/file/avple-images/hls/631355dbbb869839587d73fb/playlist.m3u8
|
||||
🐣909,https://je40u.cdnedge.live/file/avple-images/hls/631336ecbb869839587d73f1/playlist.m3u8
|
||||
🐣910,https://q2cyl7.cdnedge.live/file/avple-images/hls/63133676bb869839587d73f0/playlist.m3u8
|
||||
🐣911,https://d862cp.cdnedge.live/file/avple-images/hls/63133b9cbb869839587d73fa/playlist.m3u8
|
||||
🐣913,https://je40u.cdnedge.live/file/avple-images/hls/63133b61bb869839587d73f9/playlist.m3u8
|
||||
🐣914,https://q2cyl7.cdnedge.live/file/avple-images/hls/63133854bb869839587d73f5/playlist.m3u8
|
||||
🐣915,https://8bb88.cdnedge.live/file/avple-images/hls/63133980bb869839587d73f8/playlist.m3u8
|
||||
🐣916,https://d862cp.cdnedge.live/file/avple-images/hls/63133908bb869839587d73f7/playlist.m3u8
|
||||
🐣917,https://8bb88.cdnedge.live/file/avple-images/hls/63133818bb869839587d73f4/playlist.m3u8
|
||||
🐣918,https://8bb88.cdnedge.live/file/avple-images/hls/631338cdbb869839587d73f6/playlist.m3u8
|
||||
🐣919,https://u89ey.cdnedge.live/file/avple-images/hls/631337a1bb869839587d73f3/playlist.m3u8
|
||||
🐣920,https://je40u.cdnedge.live/file/avple-images/hls/63133729bb869839587d73f2/playlist.m3u8
|
||||
🐣921,https://8bb88.cdnedge.live/file/avple-images/hls/63133585bb869839587d73ee/playlist.m3u8
|
||||
🐣922,https://q2cyl7.cdnedge.live/file/avple-images/hls/6313354bbb869839587d73ed/playlist.m3u8
|
||||
🐣923,https://w9n76.cdnedge.live/file/avple-images/hls/631333a5bb869839587d73ec/playlist.m3u8
|
||||
🐣925,https://zo392.cdnedge.live/file/avple-images/hls/631332f3bb869839587d73ea/playlist.m3u8
|
||||
🐣928,https://w9n76.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4106/playlist.m3u8
|
||||
🐣929,https://10j99.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4105/playlist.m3u8
|
||||
🐣930,https://zo392.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4104/playlist.m3u8
|
||||
🐣931,https://8bb88.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4103/playlist.m3u8
|
||||
🐣932,https://8bb88.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4102/playlist.m3u8
|
||||
🐣933,https://q2cyl7.cdnedge.live/file/avple-images/hls/63128e992435a416dc59afa9/playlist.m3u8
|
||||
🐣935,https://zo392.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b4100/playlist.m3u8
|
||||
🐣936,https://1xp60.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b40ff/playlist.m3u8
|
||||
🐣937,https://8bb88.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b40fe/playlist.m3u8
|
||||
🐣938,https://zo392.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b40fd/playlist.m3u8
|
||||
🐣939,https://1xp60.cdnedge.live/file/avple-images/hls/631290cd5cb7e416f04b40fc/playlist.m3u8
|
||||
🐣940,https://w9n76.cdnedge.live/file/avple-images/hls/63128e992435a416dc59afa8/playlist.m3u8
|
||||
🐣942,https://w9n76.cdnedge.live/file/avple-images/hls/63121ece2435a416dc59afa4/playlist.m3u8
|
||||
🐣943,https://e2fa6.cdnedge.live/file/avple-images/hls/6310837b7fe05c72404c7922/playlist.m3u8
|
||||
🐣944,https://w9n76.cdnedge.live/file/avple-images/hls/630f69883c7f894488546bea/playlist.m3u8
|
||||
🐣945,https://q2cyl7.cdnedge.live/file/avple-images/hls/630f69883c7f894488546be9/playlist.m3u8
|
||||
🐣946,https://u89ey.cdnedge.live/file/avple-images/hls/630f519f3c7f894488546be7/playlist.m3u8
|
||||
🐣947,https://8bb88.cdnedge.live/file/avple-images/hls/630f519e3c7f894488546be6/playlist.m3u8
|
||||
🐣948,https://je40u.cdnedge.live/file/avple-images/hls/630f0714f6f3c02fb820950d/playlist.m3u8
|
||||
🐣949,https://w9n76.cdnedge.live/file/avple-images/hls/630e86b1c7dee322f1acb092/playlist.m3u8
|
||||
🐣950,https://1xp60.cdnedge.live/file/avple-images/hls/630e85c2c7dee322f1acb08f/playlist.m3u8
|
||||
🐣951,https://zo392.cdnedge.live/file/avple-images/hls/630e8677c7dee322f1acb091/playlist.m3u8
|
||||
🐣952,https://je40u.cdnedge.live/file/avple-images/hls/630e85fec7dee322f1acb090/playlist.m3u8
|
||||
🐣953,https://je40u.cdnedge.live/file/avple-images/hls/630e8586c7dee322f1acb08e/playlist.m3u8
|
||||
🐣954,https://8bb88.cdnedge.live/file/avple-images/hls/630e493cf6f3c02fb820950c/playlist.m3u8
|
||||
🐣955,https://w9n76.cdnedge.live/file/avple-images/hls/630e31cdf6f3c02fb820950b/playlist.m3u8
|
||||
🐣956,https://q2cyl7.cdnedge.live/file/avple-images/hls/630e2ac5f6f3c02fb820950a/playlist.m3u8
|
||||
🐣957,https://e2fa6.cdnedge.live/file/avple-images/hls/630e286cf6f3c02fb8209509/playlist.m3u8
|
||||
🐣958,https://w9n76.cdnedge.live/file/avple-images/hls/630dff6ac7dee322f1acb08d/playlist.m3u8
|
||||
🐣959,https://1xp60.cdnedge.live/file/avple-images/hls/630d28c94cd2c231d6ebd8c7/playlist.m3u8
|
||||
🐣960,https://zo392.cdnedge.live/file/avple-images/hls/630d28894cd2c231d6ebd8c6/playlist.m3u8
|
||||
🐣961,https://je40u.cdnedge.live/file/avple-images/hls/630d28514cd2c231d6ebd8c5/playlist.m3u8
|
||||
🐣962,https://e2fa6.cdnedge.live/file/avple-images/hls/630d27d64cd2c231d6ebd8c4/playlist.m3u8
|
||||
🐣963,https://8bb88.cdnedge.live/file/avple-images/hls/630cbf7e4cd2c231d6ebd8c3/playlist.m3u8
|
||||
🐣964,https://zo392.cdnedge.live/file/avple-images/hls/630ca9b24cd2c231d6ebd8c2/playlist.m3u8
|
||||
🍋801,https://e2fa6.cdnedge.live/file/avple-images/hls/630f519f3c7f894488546be7/playlist.m3u8
|
||||
🍋802,https://e2fa6.cdnedge.live/file/avple-images/hls/630f519e3c7f894488546be6/playlist.m3u8
|
||||
🍋803,https://8bb88.cdnedge.live/file/avple-images/hls/630f0714f6f3c02fb820950d/playlist.m3u8
|
||||
🍋804,https://q2cyl7.cdnedge.live/file/avple-images/hls/630e86b1c7dee322f1acb092/playlist.m3u8
|
||||
🍋805,https://q2cyl7.cdnedge.live/file/avple-images/hls/630e85c2c7dee322f1acb08f/playlist.m3u8
|
||||
🍋806,https://je40u.cdnedge.live/file/avple-images/hls/630e8677c7dee322f1acb091/playlist.m3u8
|
||||
🍋810,https://10j99.cdnedge.live/file/avple-images/hls/630e31cdf6f3c02fb820950b/playlist.m3u8
|
||||
🍋811,https://10j99.cdnedge.live/file/avple-images/hls/630e2ac5f6f3c02fb820950a/playlist.m3u8
|
||||
🍋812,https://q2cyl7.cdnedge.live/file/avple-images/hls/630e286cf6f3c02fb8209509/playlist.m3u8
|
||||
🍋813,https://q2cyl7.cdnedge.live/file/avple-images/hls/630dff6ac7dee322f1acb08d/playlist.m3u8
|
||||
🍋515,https://u89ey.cdnedge.live/file/avple-images/hls/630d28894cd2c231d6ebd8c6/playlist.m3u8
|
||||
🍋817,https://1xp60.cdnedge.live/file/avple-images/hls/630d27d64cd2c231d6ebd8c4/playlist.m3u8
|
||||
🐒804,https://q2cyl7.cdnedge.live/file/avple-images/hls/630bfaa7fa4dc50519c9fa7a/playlist.m3u8
|
||||
🐒805,https://je40u.cdnedge.live/file/avple-images/hls/630bf9bafa4dc50519c9fa77/playlist.m3u8
|
||||
🐒806,https://zo392.cdnedge.live/file/avple-images/hls/630bf8cafa4dc50519c9fa74/playlist.m3u8
|
||||
🐒807,https://zo392.cdnedge.live/file/avple-images/hls/630bf940fa4dc50519c9fa76/playlist.m3u8
|
||||
🐒808,https://10j99.cdnedge.live/file/avple-images/hls/630bf906fa4dc50519c9fa75/playlist.m3u8
|
||||
🐒809,https://je40u.cdnedge.live/file/avple-images/hls/630bf88dfa4dc50519c9fa73/playlist.m3u8
|
||||
🐒810,https://u89ey.cdnedge.live/file/avple-images/hls/630bf7d9fa4dc50519c9fa71/playlist.m3u8
|
||||
🐒812,https://w9n76.cdnedge.live/file/avple-images/hls/630bf79dfa4dc50519c9fa70/playlist.m3u8
|
||||
🐒813,https://je40u.cdnedge.live/file/avple-images/hls/630bf762fa4dc50519c9fa6f/playlist.m3u8
|
||||
🐒814,https://u89ey.cdnedge.live/file/avple-images/hls/630bf6aefa4dc50519c9fa6d/playlist.m3u8
|
||||
🐒815,https://8bb88.cdnedge.live/file/avple-images/hls/630bf726fa4dc50519c9fa6e/playlist.m3u8
|
||||
?803,https://w9n76.cdnedge.live/file/avple-images/hls/630a922f07a4b05da7f900fd/playlist.m3u8
|
||||
?804,https://1xp60.cdnedge.live/file/avple-images/hls/630a91f407a4b05da7f900fc/playlist.m3u8
|
||||
?805,https://q2cyl7.cdnedge.live/file/avple-images/hls/630a917f07a4b05da7f900fb/playlist.m3u8
|
||||
?806,https://je40u.cdnedge.live/file/avple-images/hls/630a90ca07a4b05da7f900f9/playlist.m3u8
|
||||
?807,https://w9n76.cdnedge.live/file/avple-images/hls/630a8dfa07a4b05da7f900f1/playlist.m3u8
|
||||
?808,https://zo392.cdnedge.live/file/avple-images/hls/630a901507a4b05da7f900f7/playlist.m3u8
|
||||
?809,https://je40u.cdnedge.live/file/avple-images/hls/630a8e7207a4b05da7f900f2/playlist.m3u8
|
||||
?811,https://u89ey.cdnedge.live/file/avple-images/hls/630a8f6107a4b05da7f900f5/playlist.m3u8
|
||||
?812,https://q2cyl7.cdnedge.live/file/avple-images/hls/630a8f2507a4b05da7f900f4/playlist.m3u8
|
||||
?813,https://10j99.cdnedge.live/file/avple-images/hls/630a8eae07a4b05da7f900f3/playlist.m3u8
|
||||
?814,https://1xp60.cdnedge.live/file/avple-images/hls/630a8dbe07a4b05da7f900f0/playlist.m3u8
|
||||
?815,https://8bb88.cdnedge.live/file/avple-images/hls/630a8d0b07a4b05da7f900ee/playlist.m3u8
|
||||
?816,https://1xp60.cdnedge.live/file/avple-images/hls/630a8d8407a4b05da7f900ef/playlist.m3u8
|
||||
?818,https://q2cyl7.cdnedge.live/file/avple-images/hls/630a8c5d07a4b05da7f900ed/playlist.m3u8
|
||||
|
||||
🔒北海道,#genre#
|
||||
一本道_1,https://vip4.ddyunbo.com/20210210/IjSENz6s/index.m3u8
|
||||
一本道_2,https://vip4.ddyunbo.com/20210209/dEzJjeSU/index.m3u8
|
||||
一本道_3,https://vip4.ddyunbo.com/20210208/6LaKp6lZ/index.m3u8
|
||||
一本道_4,https://vip4.ddyunbo.com/20210208/uWwFdRB7/index.m3u8
|
||||
一本道_5,https://vip4.ddyunbo.com/20210208/EZRbwZn4/index.m3u8
|
||||
一本道_6,https://vip4.ddyunbo.com/20210207/Lyhqjp3z/index.m3u8
|
||||
一本道_7,https://vip4.ddyunbo.com/20210203/DYtc79vE/index.m3u8
|
||||
一本道_8,https://vip4.ddyunbo.com/20210202/cy0urBhD/index.m3u8
|
||||
一本道_9,https://vip4.ddyunbo.com/20210202/cOf9FXgF/index.m3u8
|
||||
一本道_10,https://vip4.ddyunbo.com/20210202/jnSPf5L7/index.m3u8
|
||||
一本道_11,https://vip4.ddyunbo.com/20210202/6wLYbWPq/index.m3u8
|
||||
一本道_12,https://vip4.ddyunbo.com/20190904/HqGckgKl/index.m3u8
|
||||
一本道_13,https://vip4.ddyunbo.com/20190904/m94xaoPh/index.m3u8
|
||||
一本道_14,https://vip4.ddyunbo.com/20190908/1oZ5V2g2/index.m3u8
|
||||
一本道_15,https://vip4.ddyunbo.com/20190904/wJoZlwtT/index.m3u8
|
||||
一本道_16,https://vip4.ddyunbo.com/20190904/ZnGN7sEl/index.m3u8
|
||||
一本道_18,https://vip4.ddyunbo.com/20190908/ETghLd5D/index.m3u8
|
||||
一本道_20,https://vip4.ddyunbo.com/20190908/zSd2DI9R/index.m3u8
|
||||
一本道_34,https://vip4.ddyunbo.com/20191007/IFlq5eON/index.m3u8
|
||||
一本道_36,https://vip4.ddyunbo.com/20190907/PH1oGegu/index.m3u8
|
||||
一本道_41,https://vip4.ddyunbo.com/20191203/eKcaCDs1/index.m3u8
|
||||
一本道_47,https://vip4.ddyunbo.com/20190724/fpVllSSA/index.m3u8
|
||||
一本道_106,https://vip4.ddyunbo.com/20191203/5E24xFQu/index.m3u8
|
||||
一本道_107,https://vip4.ddyunbo.com/20191206/wElIhu09/index.m3u8
|
||||
一本道_109,https://vip4.ddyunbo.com/20191130/5D8rho9Y/index.m3u8
|
||||
一本道_175,https://vip4.ddyunbo.com/20190918/dW0J9fzv/index.m3u8
|
||||
一本道_176,https://vip4.ddyunbo.com/20191125/vpMcTD6O/index.m3u8
|
||||
一本道_186,https://vip4.ddyunbo.com/20191110/7bbcTr2N/index.m3u8
|
||||
一本道_208,https://vip4.ddyunbo.com/20191130/aACNUDUx/index.m3u8
|
||||
一本道_314,https://vip4.ddyunbo.com/20191112/xgfe7yP7/index.m3u8
|
||||
💋一本道_8886,#genre#
|
||||
一本道_15,https://vip4.ddyunbo.com/20190904/wJoZlwtT/index.m3u8
|
||||
一本道_207,https://vip4.ddyunbo.com/20191206/KcxaHKNK/index.m3u8
|
||||
一本道_88,https://vip4.ddyunbo.com/20191122/QMk66MvN/index.m3u8
|
||||
一本道_36,https://vip4.ddyunbo.com/20190907/PH1oGegu/index.m3u8
|
||||
一本道_4,https://vip4.ddyunbo.com/20210208/uWwFdRB7/index.m3u8
|
||||
一本道_137,https://vip4.ddyunbo.com/20191205/ZhyfTfzD/index.m3u8
|
||||
一本道_71,https://vip4.ddyunbo.com/20191128/J5nWdwcz/index.m3u8
|
||||
一本道_146,https://vip4.ddyunbo.com/20191109/7zPRNKbZ/index.m3u8
|
||||
一本道_7,https://vip4.ddyunbo.com/20210203/DYtc79vE/index.m3u8
|
||||
一本道_89,https://vip4.ddyunbo.com/20191206/trGVPzmt/index.m3u8
|
||||
一本道_51,https://vip4.ddyunbo.com/20191203/mXPJeA8L/index.m3u8
|
||||
一本道_311,https://vip4.ddyunbo.com/20191128/0UFCYn1m/index.m3u8
|
||||
一本道_114,https://vip4.ddyunbo.com/20191206/KlOfpmXm/index.m3u8
|
||||
一本道_118,https://vip4.ddyunbo.com/20191020/HFA1EICB/index.m3u8
|
||||
一本道_83,https://vip4.ddyunbo.com/20191127/52rP822O/index.m3u8
|
||||
一本道_140,https://vip4.ddyunbo.com/20191206/D2NceISA/index.m3u8
|
||||
一本道_110,https://vip4.ddyunbo.com/20191125/b7iK6Oay/index.m3u8
|
||||
一本道_87,https://vip4.ddyunbo.com/20191210/tyN6I80q/index.m3u8
|
||||
一本道_8,https://vip4.ddyunbo.com/20210202/cy0urBhD/index.m3u8
|
||||
一本道_305,https://vip4.ddyunbo.com/20191128/dkDIOfQC/index.m3u8
|
||||
一本道_151,https://vip4.ddyunbo.com/20191206/DRjLLulI/index.m3u8
|
||||
一本道_84,https://vip4.ddyunbo.com/20191207/p0zvtDBY/index.m3u8
|
||||
一本道_82,https://vip4.ddyunbo.com/20190724/SRcabvNZ/index.m3u8
|
||||
一本道_3,https://vip4.ddyunbo.com/20210208/6LaKp6lZ/index.m3u8
|
||||
一本道_106,https://vip4.ddyunbo.com/20191203/5E24xFQu/index.m3u8
|
||||
一本道_143,https://vip4.ddyunbo.com/20190924/1r6n6c3u/index.m3u8
|
||||
一本道_101,https://vip4.ddyunbo.com/20190801/68w4hmaH/index.m3u8
|
||||
一本道_141,https://vip4.ddyunbo.com/20190703/TS1mxp2x/index.m3u8
|
||||
一本道_276,https://vip4.ddyunbo.com/20190904/f9ADZ1CY/index.m3u8
|
||||
一本道_243,https://vip4.ddyunbo.com/20191028/bnoZp1dl/index.m3u8
|
||||
一本道_310,https://vip4.ddyunbo.com/20191106/yFE2T1bI/index.m3u8
|
||||
一本道_54,https://vip4.ddyunbo.com/20191211/EmnFBcTv/index.m3u8
|
||||
一本道_405,https://vip4.ddyunbo.com/20210202/jnSPf5L7/index.m3u8?skipl=1
|
||||
一本道_111,https://vip4.ddyunbo.com/20191118/pa08NZI8/index.m3u8
|
||||
一本道_147,https://vip4.ddyunbo.com/20191208/0gSaR7IX/index.m3u8
|
||||
一本道_14,https://vip4.ddyunbo.com/20190908/1oZ5V2g2/index.m3u8
|
||||
一本道_39,https://vip4.ddyunbo.com/20191209/eOWqpnjK/index.m3u8
|
||||
一本道_48,https://vip4.ddyunbo.com/20191115/nz0OLAD7/index.m3u8
|
||||
一本道_138,https://vip4.ddyunbo.com/20191209/Cg46YFFD/index.m3u8
|
||||
一本道_13,https://vip4.ddyunbo.com/20190904/m94xaoPh/index.m3u8
|
||||
一本道_264,https://vip4.ddyunbo.com/20191201/YEg5oWil/index.m3u8
|
||||
一本道_18,https://vip4.ddyunbo.com/20190908/ETghLd5D/index.m3u8
|
||||
一本道_6,https://vip4.ddyunbo.com/20210207/Lyhqjp3z/index.m3u8
|
||||
一本道_5,https://vip4.ddyunbo.com/20210208/EZRbwZn4/index.m3u8
|
||||
一本道_80,https://vip4.ddyunbo.com/20191205/0oLr2jlQ/index.m3u8
|
||||
一本道_280,https://vip4.ddyunbo.com/20191121/VmpUGI2G/index.m3u8
|
||||
一本道_2,https://vip4.ddyunbo.com/20210209/dEzJjeSU/index.m3u8
|
||||
一本道_56,https://vip4.ddyunbo.com/20191207/3l1NKbd9/index.m3u8
|
||||
一本道_44,https://vip4.ddyunbo.com/20191201/yKe6LATy/index.m3u8
|
||||
一本道_102,https://vip4.ddyunbo.com/20191203/AdOtik4n/index.m3u8
|
||||
一本道_109,https://vip4.ddyunbo.com/20191130/5D8rho9Y/index.m3u8
|
||||
一本道_154,https://vip4.ddyunbo.com/20191203/PldaO4lb/index.m3u8
|
||||
一本道_281,https://vip4.ddyunbo.com/20190909/jRVMH9sc/index.m3u8
|
||||
一本道_12,https://vip4.ddyunbo.com/20190904/HqGckgKl/index.m3u8
|
||||
一本道_20,https://vip4.ddyunbo.com/20190908/zSd2DI9R/index.m3u8
|
||||
一本道_50,https://vip4.ddyunbo.com/20191111/YQ1Jvlo7/index.m3u8
|
||||
一本道_234,https://vip4.ddyunbo.com/20191212/HePcXP5K/index.m3u8
|
||||
一本道_37,https://vip4.ddyunbo.com/20191206/aIGd1S2S/index.m3u8
|
||||
一本道_107,https://vip4.ddyunbo.com/20191206/wElIhu09/index.m3u8
|
||||
一本道_105,https://vip4.ddyunbo.com/20191203/lrQfHler/index.m3u8
|
||||
一本道_197,https://vip4.ddyunbo.com/20190924/cJ5trNUQ/index.m3u8
|
||||
一本道_134,https://vip4.ddyunbo.com/20190712/AWmTfG0V/index.m3u8
|
||||
一本道_77,https://vip4.ddyunbo.com/20191104/5Br1zP28/index.m3u8
|
||||
一本道_85,https://vip4.ddyunbo.com/20191208/dw94ieYl/index.m3u8
|
||||
一本道_91,https://vip4.ddyunbo.com/20191207/tBB5RkgE/index.m3u8
|
||||
一本道_313,https://vip4.ddyunbo.com/20191208/2uX0tXFP/index.m3u8
|
||||
一本道_208,https://vip4.ddyunbo.com/20191130/aACNUDUx/index.m3u8
|
||||
一本道_132,https://vip4.ddyunbo.com/20191008/aJt3osLQ/index.m3u8
|
||||
一本道_47,https://vip4.ddyunbo.com/20190724/fpVllSSA/index.m3u8
|
||||
一本道_40,https://vip4.ddyunbo.com/20191203/kT2Rfcof/index.m3u8
|
||||
一本道_113,https://vip4.ddyunbo.com/20191208/YoOOpIoB/index.m3u8
|
||||
一本道_42,https://vip4.ddyunbo.com/20191204/jouQzYVh/index.m3u8
|
||||
一本道_86,https://vip4.ddyunbo.com/20190913/MA5Cn7rw/index.m3u8
|
||||
一本道_123,https://vip4.ddyunbo.com/20191206/beXglix7/index.m3u8
|
||||
一本道_156,https://vip4.ddyunbo.com/20191211/M3q09qGG/index.m3u8
|
||||
一本道_90,https://vip4.ddyunbo.com/20191010/xcMAZOOw/index.m3u8
|
||||
一本道_43,https://vip4.ddyunbo.com/20190824/InhHOPJz/index.m3u8
|
||||
一本道_144,https://vip4.ddyunbo.com/20191201/8UTueLDg/index.m3u8
|
||||
一本道_46,https://vip4.ddyunbo.com/20191104/NAZTGvOC/index.m3u8
|
||||
一本道_227,https://vip4.ddyunbo.com/20191201/K4Kv3dAa/index.m3u8
|
||||
一本道_81,https://vip4.ddyunbo.com/20191110/Z3mWJbrz/index.m3u8
|
||||
一本道_41,https://vip4.ddyunbo.com/20191203/eKcaCDs1/index.m3u8
|
||||
一本道_268,https://vip4.ddyunbo.com/20191208/BS0JwI5Z/index.m3u8
|
||||
一本道_153,https://vip4.ddyunbo.com/20191205/u11PSJcw/index.m3u8
|
||||
一本道_211,https://vip4.ddyunbo.com/20191110/NwogQedH/index.m3u8
|
||||
一本道_119,https://vip4.ddyunbo.com/20190725/QoR2tEMa/index.m3u8
|
||||
一本道_115,https://vip4.ddyunbo.com/20191128/bhlfixkB/index.m3u8
|
||||
一本道_149,https://vip4.ddyunbo.com/20191108/iI37Slwz/index.m3u8
|
||||
一本道_187,https://vip4.ddyunbo.com/20191127/65PpXoMw/index.m3u8
|
||||
一本道_58,https://vip4.ddyunbo.com/20191121/NoBsuuFA/index.m3u8
|
||||
一本道_309,https://vip4.ddyunbo.com/20191111/DlyNFtz9/index.m3u8
|
||||
一本道_152,https://vip4.ddyunbo.com/20191208/F59kEATh/index.m3u8
|
||||
一本道_306,https://vip4.ddyunbo.com/20191130/c6PcG5MJ/index.m3u8
|
||||
一本道_242,https://vip4.ddyunbo.com/20191203/eBg5Mcqa/index.m3u8
|
||||
一本道_301,https://vip4.ddyunbo.com/20191213/J6Cv9gPJ/index.m3u8
|
||||
一本道_163,https://vip4.ddyunbo.com/20191121/5fNyVOF0/index.m3u8
|
||||
一本道_10,https://vip4.ddyunbo.com/20210202/jnSPf5L7/index.m3u8
|
||||
一本道_34,https://vip4.ddyunbo.com/20191007/IFlq5eON/index.m3u8
|
||||
一本道_396,https://vip4.ddyunbo.com/20210210/IjSENz6s/index.m3u8?skipl=1
|
||||
一本道_202,https://vip4.ddyunbo.com/20191203/52ec89LM/index.m3u8
|
||||
一本道_1,https://vip4.ddyunbo.com/20210210/IjSENz6s/index.m3u8
|
||||
一本道_164,https://vip4.ddyunbo.com/20191120/c3IW5efi/index.m3u8
|
||||
一本道_274,https://vip4.ddyunbo.com/20191102/thRqkr3J/index.m3u8
|
||||
一本道_9,https://vip4.ddyunbo.com/20210202/cOf9FXgF/index.m3u8
|
||||
一本道_11,https://vip4.ddyunbo.com/20210202/6wLYbWPq/index.m3u8
|
||||
一本道_314,https://vip4.ddyunbo.com/20191112/xgfe7yP7/index.m3u8
|
||||
一本道_249,https://vip4.ddyunbo.com/20191102/E6lR5iaR/index.m3u8
|
||||
一本道_315,https://vip4.ddyunbo.com/20191204/vbdhMyr9/index.m3u8
|
||||
一本道_277,https://vip4.ddyunbo.com/20190904/UfqniQi1/index.m3u8
|
||||
一本道_275,https://vip4.ddyunbo.com/20191008/ONnuL7h3/index.m3u8
|
||||
一本道_182,https://vip4.ddyunbo.com/20191203/nYjY9u2u/index.m3u8
|
||||
一本道_175,https://vip4.ddyunbo.com/20190918/dW0J9fzv/index.m3u8
|
||||
一本道_176,https://vip4.ddyunbo.com/20191125/vpMcTD6O/index.m3u8
|
||||
一本道_278,https://vip4.ddyunbo.com/20191211/FFE0h29v/index.m3u8
|
||||
一本道_404,https://vip4.ddyunbo.com/20210202/cOf9FXgF/index.m3u8?skipl=1
|
||||
一本道_261,https://vip4.ddyunbo.com/20190729/aN7GcbnY/index.m3u8
|
||||
一本道_219,https://vip4.ddyunbo.com/20191201/Lwlr3Bkj/index.m3u8
|
||||
一本道_173,https://vip4.ddyunbo.com/20191201/XJwjwidw/index.m3u8
|
||||
一本道_317,https://vip4.ddyunbo.com/20191211/mKHj4MjF/index.m3u8
|
||||
一本道_16,https://vip4.ddyunbo.com/20190904/ZnGN7sEl/index.m3u8
|
||||
一本道_186,https://vip4.ddyunbo.com/20191110/7bbcTr2N/index.m3u8
|
||||
一本道_155,https://vip4.ddyunbo.com/20191206/AYu0BDSt/index.m3u8
|
||||
一本道_142,https://vip4.ddyunbo.com/20191127/28kOylU9/index.m3u8
|
||||
@@ -0,0 +1,51 @@
|
||||
|
||||
欧美视频,#genre#
|
||||
|
||||
My unfaithful wife Ally Jones was a bad girl and will get an anal punishmentmp4,https://vip1.slbfsl.com/20221016/AQccPoQ5/index.m3u8
|
||||
Young coach seduced and fucked busty mature woman India Summermp4,https://vip1.slbfsl.com/20221016/mGB4OsHe/index.m3u8
|
||||
Hot senorita Cristal Caraballo with big boobs riding big cockmp4,https://vip1.slbfsl.com/20221016/6dcFUKLl/index.m3u8
|
||||
Black policewoman Misty Stone takes a big cock in the interrogation cell,https://vip1.slbfsl.com/20221026/LvxQ9MSM/index.m3u8
|
||||
Sweet babe Carolina Sweets becomes an adult woman on her 18th birthday,https://vip1.slbfsl.com/20221102/GfQOkssU/index.m3u8
|
||||
Passionate punk porn with lascivious tattooed young bitch Harlow Harrison,https://vip1.slbfsl.com/20221105/vKMRdw1i/index.m3u8
|
||||
SWAG Chuck Assh Lee takes huge cock in her big oiled ass,https://vip1.slbfsl.com/20221105/yWZCv5A5/index.m3u8
|
||||
Surprisingly tender and beautiful video with cute student Ava Taylor and her boyfriend,https://vip1.slbfsl.com/20221105/FdsYSLmG/index.m3u8
|
||||
Solo Porn With Russian MILFs. She Woke Up And Wanted Sex,https://vip1.slbfsl.com/20220808/LGsdrF69/index.m3u8
|
||||
Wild hardcore porn with slutty Amy Anderssen and her mega-boobs,https://vip1.slbfsl.com/20221105/RYrRRU5A/index.m3u8
|
||||
Charming Russian girl Gina Gerson gets deep fucked on an underground car park,https://vip1.slbfsl.com/20221108/4sClaDXb/index.m3u8
|
||||
Busty Marsha May punishes her brazen brother for stealing her dirty panties,https://vip1.slbfsl.com/20221108/lK22ywhe/index.m3u8
|
||||
Busty female Sergeant Olivia Austin drills young soldiers in the army. Her fat pussy is ready for th,https://vip1.slbfsl.com/20221108/byrko7ib/index.m3u8
|
||||
Young Japanese schoolgirl Asa Akira gets a lesson of good manners from her teacher,https://vip1.slbfsl.com/20221109/5mhPDCT1/index.m3u8
|
||||
Strict teacher Romi Rain punishes a disobedient truant Giselle Palmer in front of the whole class,https://vip1.slbfsl.com/20221109/rNnRDA5h/index.m3u8
|
||||
Slender fitness girl Sasha Rose takes two cocks in the sauna,https://vip1.slbfsl.com/20221109/1Es6wKuK/index.m3u8
|
||||
XXL,http://rr3.tvdosug.net/~109e1a3c05fcad5b22d13b9453dc0db5122/26472
|
||||
Brazzers TV Europe,http://rr3.tvdosug.net/~109e1a3c05fcad5b22d13b9453dc0db5122/62847
|
||||
Brazzers HD,http://rhsbjv7k.tvclub.xyz/iptv/K2WP9AQ3B4XA2E/6182/index.m3u8
|
||||
Threesome,https://ch.iptvmate.net/6271f235201e84f419b00bb517a66580.m3u8?
|
||||
PRIVATE,http://213.226.69.130/iptv/BF9GWX8VNPYM9X/243/index.m3u8
|
||||
DORCEL,http://213.226.69.130/iptv/BF9GWX8VNPYM9X/245/index.m3u8
|
||||
Hustler,http://213.226.69.130/iptv/BF9GWX8VNPYM9X/244/index.m3u8
|
||||
Eropulse TV,http://api.alpaca.t62a.com/hls/9108/stream0.m3u8
|
||||
Eromania 4K,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/10049/index.m3u8
|
||||
Super one HD,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/12121/index.m3u8
|
||||
Dirty Wives Club,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/12122/index.m3u8
|
||||
French Lover,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/12124/index.m3u8
|
||||
Meiden Van Holland,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/12125/index.m3u8
|
||||
Erotic 6,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/6293/index.m3u8
|
||||
Erotic 7,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/6294/index.m3u8
|
||||
Erotic 8,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/6295/index.m3u8
|
||||
Redlight HD,http://213.226.69.130/iptv/BF9GWX8VNPYM9X/242/index.m3u8
|
||||
Dorcel TV HD orig,http://rhsbjv7k.tvclub.xyz/iptv/QUSEF3A55UE6BF/9067/index.m3u8
|
||||
RedTraffic Big Dick,http://live.redtraffic.xyz/bigdick.m3u8
|
||||
RedTraffic Big Tits,http://live.redtraffic.xyz/bigtits.m3u8
|
||||
RedTraffic Cuckold,http://live.redtraffic.xyz/cuckold.m3u8
|
||||
RedTraffic Interracial,http://live.redtraffic.xyz/interracial.m3u8
|
||||
RedTraffic Lesbian,http://live.redtraffic.xyz/lesbian.m3u8
|
||||
Unknown_57,http://demoniaus.cbilant.com/iptv/GCETXETVEM37A6/6233/index.m3u8?
|
||||
Unknown_58,http://demoniaus.cbilant.com/iptv/GCETXETVEM37A6/6235/index.m3u8?
|
||||
Unknown_59,http://demoniaus.cbilant.com/iptv/GCETXETVEM37A6/6236/index.m3u8?
|
||||
丰满荡妇街头约帅哥上车打炮,https://vip1.slbfsl.com/20221104/22xSF2x9/index.m3u8
|
||||
[美国]辣妹都市(1979),https://vip2.slbfsl.com/20230330/g20JNvRr/index.m3u8
|
||||
[美国]门环公爵2(1992),https://vip2.slbfsl.com/20230330/BoK9KIV6/index.m3u8
|
||||
我真的很喜欢我妈妈的新郎,https://vip1.slbfsl.com/20220808/6oYCs9ZL/index.m3u8
|
||||
通过她的继子,https://vip1.slbfsl.com/20220808/nH3ezWh6/index.m3u8
|
||||
tva-x1,https://ovhv47.twincdn.com/videos/43/43393/43393_720p.mp4?key_iptv.org.ua
|
||||
@@ -0,0 +1,790 @@
|
||||
欧美点播,#genre#
|
||||
娇嫩女孩和大鸡巴,https://m1.m3u8111222333.com/H0723/14av/14av.m3u8
|
||||
狂野的渴望,https://m1.m3u8111222333.com/H0703/10aa/10aa.m3u8
|
||||
新的城市新的男人,https://m1.m3u8111222333.com/H0902/03kl/03kl.m3u8
|
||||
偶然的相遇,https://m1.m3u8111222333.com/H0702/25kc/25kc.m3u8
|
||||
一个小秘密,https://m1.m3u8111222333.com/H0909/02kr/02kr.m3u8
|
||||
紧张的骚货,https://m1.m3u8111222333.com/H0706/26sc/26sc.m3u8
|
||||
炎热的夏天,https://m1.m3u8111222333.com/H0705/30sc/30sc.m3u8
|
||||
设计师乐趣,https://m1.m3u8111222333.com/H0908/11vn/11vn.m3u8
|
||||
我一生骑行,https://m1.m3u8111222333.com/H0717/21jl/21jl.m3u8
|
||||
春季淫风,https://m1.m3u8111222333.com/H0722/31sh/31sh.m3u8
|
||||
在你特别的日子里,https://m1.m3u8111222333.com/H0722/14em/14em.m3u8
|
||||
幻想着操自己,https://m1.m3u8111222333.com/H0902/03ab/03ab.m3u8
|
||||
和岳母的丑闻,https://m1.m3u8111222333.com/H0830/02dw/02dw.m3u8
|
||||
至高无上肛交,https://m1.m3u8111222333.com/H0724/14sr/14sr.m3u8
|
||||
时尚模特5,https://m1.m3u8111222333.com/H0909/06kc/06kc.m3u8
|
||||
性感来电,https://m1.m3u8111222333.com/H0910/27mt/27mt.m3u8
|
||||
比基尼梦想,https://m1.m3u8111222333.com/H0706/09gd/09gd.m3u8
|
||||
时尚内衣模特,https://m1.m3u8111222333.com/H0820/30va/30va.m3u8
|
||||
精油按摩,https://m1.m3u8111222333.com/H0912/15ff/15ff.m3u8
|
||||
美味精华,https://m1.m3u8111222333.com/H0705/05cl/05cl.m3u8
|
||||
爱离得更近,https://m1.m3u8111222333.com/H0703/20ll/20ll.m3u8
|
||||
小野猫,https://m1.m3u8111222333.com/H0723/10sl/10sl.m3u8
|
||||
爆炸性女,https://m1.m3u8111222333.com/H0910/17jv/17jv.m3u8
|
||||
红发女郎肛门渴望插入,https://m1.m3u8111222333.com/H0826/02ca/02ca.m3u8
|
||||
新娘的前男友,https://m1.m3u8111222333.com/H0908/15mj/15mj.m3u8
|
||||
精湛专业,https://m1.m3u8111222333.com/H0906/08bb/08bb.m3u8
|
||||
性爱摇摆椅,https://m1.m3u8111222333.com/H0914/12kk/12kk.m3u8
|
||||
一起过着生活,https://m1.m3u8111222333.com/H0802/11cs/11cs.m3u8
|
||||
变得舒适,https://m1.m3u8111222333.com/H0708/04er/04er.m3u8
|
||||
梦想真诚,https://m1.m3u8111222333.com/H0709/16hd/16hd.m3u8
|
||||
中出亚洲小野猫,https://m1.m3u8111222333.com/H0830/29ml/29ml.m3u8
|
||||
非常开心,https://m1.m3u8111222333.com/H0712/17xm/17xm.m3u8
|
||||
闪光肉体勾引,https://m1.m3u8111222333.com/H0809/28ms/28ms.m3u8
|
||||
寻求刺激的贱女人,https://m1.m3u8111222333.com/H0817/21cc/21cc.m3u8
|
||||
被你吸引,https://m1.m3u8111222333.com/H0708/12zs/12zs.m3u8
|
||||
那么潮湿,https://m1.m3u8111222333.com/H0814/07so/07so.m3u8
|
||||
约会之夜,https://m1.m3u8111222333.com/H0911/05ko/05ko.m3u8
|
||||
命运的召唤,https://m1.m3u8111222333.com/H0710/19dc/19dc.m3u8
|
||||
燃烧的心,https://m1.m3u8111222333.com/H0901/21as/21as.m3u8
|
||||
继女沙发上发骚,https://m1.m3u8111222333.com/H0718/28no/28no.m3u8
|
||||
性感女士缓解压力,https://m1.m3u8111222333.com/H0819/23yk/23yk.m3u8
|
||||
扑灭欲火,https://m1.m3u8111222333.com/H0829/14rf/14rf.m3u8
|
||||
大奶瑜伽宝贝,https://m1.m3u8111222333.com/H0809/17sr/17sr.m3u8
|
||||
时间刚刚好,https://m1.m3u8111222333.com/H0815/04pl/04pl.m3u8
|
||||
享受我的一天,https://m1.m3u8111222333.com/I0508/16ne/16ne.m3u8
|
||||
充满情欲,https://m1.m3u8111222333.com/H0911/02ir/02ir.m3u8
|
||||
超过它,https://m1.m3u8111222333.com/H0720/29dd/29dd.m3u8
|
||||
今晚就在这里做,https://m1.m3u8111222333.com/H0713/14xm/14xm.m3u8
|
||||
云无束缚3,https://m1.m3u8111222333.com/H0906/04aw/04aw.m3u8
|
||||
献给艾莉的玫瑰,https://m1.m3u8111222333.com/I0509/18el/18el.m3u8
|
||||
性感明信片,https://m1.m3u8111222333.com/I0505/14dr/14dr.m3u8
|
||||
淫荡的宁静,https://m1.m3u8111222333.com/I0506/19sm/19sm.m3u8
|
||||
男友的大鸡巴插入粉嫩多汁阴户狠狠干一炮,https://m1.m3u8111222333.com/H0801/20ss/20ss.m3u8
|
||||
时尚之都1,https://m1.m3u8111222333.com/H0829/28kc/28kc.m3u8
|
||||
毛2,http://b.mtw.so/635drk
|
||||
性感氛围,https://m1.m3u8111222333.com/I0502/10ee/10ee.m3u8
|
||||
顽皮制服,https://m1.m3u8111222333.com/I0503/12lb/12lb.m3u8
|
||||
柔软的拥抱,https://m1.m3u8111222333.com/I0426/05mt/05mt.m3u8
|
||||
淋浴后,https://m1.m3u8111222333.com/I0430/06mr/06mr.m3u8
|
||||
最喜欢的床,https://m1.m3u8111222333.com/I0420/23tt/23tt.m3u8
|
||||
第二皮肤,https://m1.m3u8111222333.com/I0424/29ma/29ma.m3u8
|
||||
缝制我的爱,https://m1.m3u8111222333.com/I0429/08kc/08kc.m3u8
|
||||
爱流,https://m1.m3u8111222333.com/I0423/27ll/27ll.m3u8
|
||||
更多玩具,https://m1.m3u8111222333.com/I0427/31mm/31mm.m3u8
|
||||
为了大鸡巴抛弃无聊的男朋友,https://m1.m3u8111222333.com/H0912/22gb/22gb.m3u8
|
||||
我够了,https://m1.m3u8111222333.com/I0316/22bc/22bc.m3u8
|
||||
基本休息2,https://m1.m3u8111222333.com/I0310/18lb/18lb.m3u8
|
||||
我的第一个假阳具,https://m1.m3u8111222333.com/I0313/20os/20os.m3u8
|
||||
激情打手枪,https://m1.m3u8111222333.com/H0827/01jr/01jr.m3u8
|
||||
弄湿身体,https://m1.m3u8111222333.com/I0306/12na/12na.m3u8
|
||||
我们的空间,https://m1.m3u8111222333.com/I0312/16lb/16lb.m3u8
|
||||
冷静一下,https://m1.m3u8111222333.com/I0309/16sc/16sc.m3u8
|
||||
性感的早晨,https://m1.m3u8111222333.com/I0315/24eb/24eb.m3u8
|
||||
爱是不够的,https://m1.m3u8111222333.com/H0818/07rv/07rv.m3u8
|
||||
最佳复仇,https://m1.m3u8111222333.com/H0814/03or/03or.m3u8
|
||||
谷物和牛奶2,https://m1.m3u8111222333.com/I0304/10mc/10mc.m3u8
|
||||
初恋情人,https://m1.m3u8111222333.com/H0730/17sf/17sf.m3u8
|
||||
欣赏我自己,https://m1.m3u8111222333.com/I0220/27bc/27bc.m3u8
|
||||
洛伦之夜2,https://m1.m3u8111222333.com/I0229/06ls/06ls.m3u8
|
||||
甜蜜爱情2,https://m1.m3u8111222333.com/I0301/08bl/08bl.m3u8
|
||||
本能反应,https://m1.m3u8111222333.com/H0808/10jr/10jr.m3u8
|
||||
早晨的浪漫,https://m1.m3u8111222333.com/I0211/19as/19as.m3u8
|
||||
黑色豪华级,https://m1.m3u8111222333.com/H0709/03ab/03ab.m3u8
|
||||
冰美人2,https://m1.m3u8111222333.com/I0224/02dr/02dr.m3u8
|
||||
给予和索取,https://m1.m3u8111222333.com/I0226/02fs/02fs.m3u8
|
||||
彻夜未眠,https://m1.m3u8111222333.com/H0817/08xm/08xm.m3u8
|
||||
伸出援助之手,https://m1.m3u8111222333.com/H0905/08bg/08bg.m3u8
|
||||
全都射在可爱女孩的脸上,https://m1.m3u8111222333.com/H0820/23ee/23ee.m3u8
|
||||
揭露隐藏的欲望,https://m1.m3u8111222333.com/I0303/03na/03na.m3u8
|
||||
上流社会女孩,https://m1.m3u8111222333.com/I0223/31ss/31ss.m3u8
|
||||
仔细看看,https://m1.m3u8111222333.com/I0227/04ar/04ar.m3u8
|
||||
眼神接触,https://m1.m3u8111222333.com/H0724/14nf/14nf.m3u8
|
||||
采取你的射击,https://m1.m3u8111222333.com/I0214/19sb/19sb.m3u8
|
||||
最后的润色2,https://m1.m3u8111222333.com/I0221/29ac/29ac.m3u8
|
||||
早期的快乐,https://m1.m3u8111222333.com/I0217/23sm/23sm.m3u8
|
||||
少说多做,https://m1.m3u8111222333.com/H0726/19eh/19eh.m3u8
|
||||
娼妓俱乐部3,https://m1.m3u8111222333.com/H0824/07mp/07mp.m3u8
|
||||
周年快乐,https://m1.m3u8111222333.com/I0215/21bs/21bs.m3u8
|
||||
对立面,https://m1.m3u8111222333.com/I0212/26bs/26bs.m3u8
|
||||
我爱玩具2,https://m1.m3u8111222333.com/I0218/25mf/25mf.m3u8
|
||||
家务管理2,https://m1.m3u8111222333.com/I0203/11lf/11lf.m3u8
|
||||
束缚的快乐,https://m1.m3u8111222333.com/H0824/15ab/15ab.m3u8
|
||||
电话联系,https://m1.m3u8111222333.com/H0821/18vm/18vm.m3u8
|
||||
无限亲密,https://m1.m3u8111222333.com/I0205/12al/12al.m3u8
|
||||
纯粹的欲望,https://m1.m3u8111222333.com/I0206/13el/13el.m3u8
|
||||
美味又成熟2,https://m1.m3u8111222333.com/I0209/17rt/17rt.m3u8
|
||||
只是个接吻,https://m1.m3u8111222333.com/I0208/15lb/15lb.m3u8
|
||||
给你的礼物,https://m1.m3u8111222333.com/H0823/24ks/24ks.m3u8
|
||||
我想要更多,https://m1.m3u8111222333.com/H0805/27ap/27ap.m3u8
|
||||
早茶,https://m1.m3u8111222333.com/I0125/03ee/03ee.m3u8
|
||||
娇嫩女郎让鸡巴充满屁眼,https://m1.m3u8111222333.com/H0807/19ls/19ls.m3u8
|
||||
罪恶本性2,https://m1.m3u8111222333.com/I0124/01oc/01oc.m3u8
|
||||
情绪波动,https://m1.m3u8111222333.com/I0127/05sl/05sl.m3u8
|
||||
我们之间的激情,https://m1.m3u8111222333.com/H0804/21ck/21ck.m3u8
|
||||
生日女孩2,https://m1.m3u8111222333.com/I0120/28os/28os.m3u8
|
||||
完美结合,https://m1.m3u8111222333.com/I0112/15tm/15tm.m3u8
|
||||
优雅的做爱,https://m1.m3u8111222333.com/I0130/06sv/06sv.m3u8
|
||||
给我那种感觉,https://m1.m3u8111222333.com/H0713/30sj/30sj.m3u8
|
||||
圣诞节早晨2,https://m1.m3u8111222333.com/I0113/22rc/22rc.m3u8
|
||||
上午练习2,https://m1.m3u8111222333.com/I0131/07sm/07sm.m3u8
|
||||
大胆的连衣裙2,https://m1.m3u8111222333.com/I0106/16lb/16lb.m3u8
|
||||
黄昏之前,https://m1.m3u8111222333.com/I0121/30ld/30ld.m3u8
|
||||
越大越好,https://m1.m3u8111222333.com/H0807/29ki/29ki.m3u8
|
||||
红色在床上2,https://m1.m3u8111222333.com/I0107/18pr/18pr.m3u8
|
||||
了解我的身体,https://m1.m3u8111222333.com/I0128/05ar/05ar.m3u8
|
||||
爱情镜头,https://m1.m3u8111222333.com/I0202/09vm/09vm.m3u8
|
||||
放荡者周年纪念日,https://m1.m3u8111222333.com/H0729/20bl/20bl.m3u8
|
||||
明亮的灯光2,https://m1.m3u8111222333.com/I0116/24sb/24sb.m3u8
|
||||
肛交她的妹妹,https://m1.m3u8111222333.com/H0729/08eh/08eh.m3u8
|
||||
贵宾待遇,https://m1.m3u8111222333.com/H0813/01hm/01hm.m3u8
|
||||
逃脱你,https://m1.m3u8111222333.com/I0105/14ce/14ce.m3u8
|
||||
米拉的礼物2,https://m1.m3u8111222333.com/I0118/26ma/26ma.m3u8
|
||||
威望2,https://m1.m3u8111222333.com/H1228/06el/06el.m3u8
|
||||
太阳下山,https://m1.m3u8111222333.com/I0102/01sj/01sj.m3u8
|
||||
晕倒在床上,https://m1.m3u8111222333.com/I0109/07af/07af.m3u8
|
||||
恋爱中的小明星,https://m1.m3u8111222333.com/I0119/24na/24na.m3u8
|
||||
振动椅,https://m1.m3u8111222333.com/H0818/03vc/03vc.m3u8
|
||||
感人的简约,https://m1.m3u8111222333.com/I0115/22cl/22cl.m3u8
|
||||
舞蹈家,https://m1.m3u8111222333.com/I0110/20bs/20bs.m3u8
|
||||
爱的晚餐,https://m1.m3u8111222333.com/H0815/03ll/03ll.m3u8
|
||||
深入打击,https://m1.m3u8111222333.com/H0716/19jr/19jr.m3u8
|
||||
平衡爱情,https://m1.m3u8111222333.com/H1230/24ja/24ja.m3u8
|
||||
浪漫心情2,https://m1.m3u8111222333.com/H1231/12rr/12rr.m3u8
|
||||
冷美人,https://m1.m3u8111222333.com/H1229/08kc/08kc.m3u8
|
||||
难忘的时刻,https://m1.m3u8111222333.com/I0103/08cl/08cl.m3u8
|
||||
跟我来,https://m1.m3u8111222333.com/H1223/04sk/04sk.m3u8
|
||||
靠近我的心,https://m1.m3u8111222333.com/H1219/03lr/03lr.m3u8
|
||||
射入阴道内,https://m1.m3u8111222333.com/H0717/04kk/04kk.m3u8
|
||||
伸展和操,https://m1.m3u8111222333.com/H0727/13ah/13ah.m3u8
|
||||
爱的伟大,https://m1.m3u8111222333.com/H0905/28kq/28kq.m3u8
|
||||
日落之前,https://m1.m3u8111222333.com/H1220/02na/02na.m3u8
|
||||
继母的难题,https://m1.m3u8111222333.com/H0823/25km/25km.m3u8
|
||||
安静的喜悦,https://m1.m3u8111222333.com/H1222/10am/10am.m3u8
|
||||
游乐中心,https://m1.m3u8111222333.com/H1212/24sm/24sm.m3u8
|
||||
诱惑王座2,https://m1.m3u8111222333.com/H1210/22ar/22ar.m3u8
|
||||
欲望之夜2,https://m1.m3u8111222333.com/H1213/26mr/26mr.m3u8
|
||||
工作室里的爱情故事,https://m1.m3u8111222333.com/H1217/17na/17na.m3u8
|
||||
魔法师,https://m1.m3u8111222333.com/H1206/14sm/14sm.m3u8
|
||||
巨大的鸡巴,https://m1.m3u8111222333.com/H0812/13cf/13cf.m3u8
|
||||
你愿意吗,https://m1.m3u8111222333.com/H1226/17fe/17fe.m3u8
|
||||
完美的我2,https://m1.m3u8111222333.com/H1209/20sp/20sp.m3u8
|
||||
自然流动,https://m1.m3u8111222333.com/H1202/23dh/23dh.m3u8
|
||||
狂野游戏2,https://m1.m3u8111222333.com/H1215/28aa/28aa.m3u8
|
||||
直播福利2,https://m1.m3u8111222333.com/H1128/08os/08os.m3u8
|
||||
水疗护理2,https://m1.m3u8111222333.com/H1216/30ms/30ms.m3u8
|
||||
罪恶花园2,https://m1.m3u8111222333.com/H1125/02lb/02lb.m3u8
|
||||
人人都想要,https://m1.m3u8111222333.com/H1225/24kw/24kw.m3u8
|
||||
新恋人,https://m1.m3u8111222333.com/H1129/24ew/24ew.m3u8
|
||||
实木床边自嗨,https://m1.m3u8111222333.com/H1201/10sb/10sb.m3u8
|
||||
闪耀这一刻,https://m1.m3u8111222333.com/H1118/20bo/20bo.m3u8
|
||||
扣出来,https://m1.m3u8111222333.com/H1123/31mb/31mb.m3u8
|
||||
粉红世界2,https://m1.m3u8111222333.com/H1117/07sp/07sp.m3u8
|
||||
影响力,https://m1.m3u8111222333.com/H0804/01rr/01rr.m3u8
|
||||
结束了,https://m1.m3u8111222333.com/H1112/13mm/13mm.m3u8
|
||||
迎接我的一天,https://m1.m3u8111222333.com/H1119/27vm/27vm.m3u8
|
||||
湿式尼龙2,https://m1.m3u8111222333.com/H1120/29bw/29bw.m3u8
|
||||
妖娆,https://m1.m3u8111222333.com/H1204/12mb/12mb.m3u8
|
||||
感觉自己像个老板2,https://m1.m3u8111222333.com/H1126/02lf/02lf.m3u8
|
||||
突袭2,https://m1.m3u8111222333.com/H1203/16bs/16bs.m3u8
|
||||
在厨房烙饼,https://m1.m3u8111222333.com/H1207/18kc/18kc.m3u8
|
||||
热门动作,https://m1.m3u8111222333.com/H1122/06mf/06mf.m3u8
|
||||
为你精心打扮,https://m1.m3u8111222333.com/H1110/19zd/19zd.m3u8
|
||||
称心如意,https://m1.m3u8111222333.com/H0715/22ja/22ja.m3u8
|
||||
又紧又小,https://m1.m3u8111222333.com/H0720/24lc/24lc.m3u8
|
||||
采访2,https://m1.m3u8111222333.com/H1113/21el/21el.m3u8
|
||||
美丽的游客热情的户外性爱,https://m1.m3u8111222333.com/H0911/18la/18la.m3u8
|
||||
结婚前再打一炮,https://m1.m3u8111222333.com/H0819/17ak/17ak.m3u8
|
||||
今晚一切都属于你,https://m1.m3u8111222333.com/H0718/24vm/24vm.m3u8
|
||||
时尚女郎4,https://m1.m3u8111222333.com/H0903/04em/04em.m3u8
|
||||
心爱的香蕉2,https://m1.m3u8111222333.com/H1115/25lb/25lb.m3u8
|
||||
只有我2,https://m1.m3u8111222333.com/H1013/23el/23el.m3u8
|
||||
完美契合2,https://m1.m3u8111222333.com/H1021/01bp/01bp.m3u8
|
||||
可爱的工作,https://m1.m3u8111222333.com/H1105/15ll/15ll.m3u8
|
||||
走向快乐2,https://m1.m3u8111222333.com/H1109/17bs/17bs.m3u8
|
||||
豪华跑车,https://m1.m3u8111222333.com/H0721/06nh/06nh.m3u8
|
||||
为之爬行,https://m1.m3u8111222333.com/H1111/23am/23am.m3u8
|
||||
诱惑你,https://m1.m3u8111222333.com/H1104/13aa/13aa.m3u8
|
||||
爱上你,https://m1.m3u8111222333.com/H1014/22ac/22ac.m3u8
|
||||
面部圧迫的服务游戏,https://m1.m3u8111222333.com/H1025/1223/1223.m3u8
|
||||
淘气的辣妹把她屁股的每一寸都塞进去,https://m1.m3u8111222333.com/H0730/12hm/12hm.m3u8
|
||||
计划变更2,https://m1.m3u8111222333.com/H1011/21bs/21bs.m3u8
|
||||
黑暗中的乐趣,https://m1.m3u8111222333.com/H0830/28jk/28jk.m3u8
|
||||
明智之举,https://m1.m3u8111222333.com/H1026/05fa/05fa.m3u8
|
||||
性感来电,https://m1.m3u8111222333.com/H0811/27mt/27mt.m3u8
|
||||
自慰狂团伙2,https://m1.m3u8111222333.com/H1010/19ap/19ap.m3u8
|
||||
奔向你,https://m1.m3u8111222333.com/H1116/06lg/06lg.m3u8
|
||||
理想之美,https://m1.m3u8111222333.com/H1027/17ki/17ki.m3u8
|
||||
想要你,https://m1.m3u8111222333.com/H1107/27zs/27zs.m3u8
|
||||
我在等你,https://m1.m3u8111222333.com/H1031/29la/29la.m3u8
|
||||
纯粹的激情,https://m1.m3u8111222333.com/H1103/09ar/09ar.m3u8
|
||||
宠爱游戏2,https://m1.m3u8111222333.com/H0926/13sc/13sc.m3u8
|
||||
心的低语,https://m1.m3u8111222333.com/I0414/22ko/22ko.m3u8
|
||||
自然流动,https://m1.m3u8111222333.com/H1029/23dh/23dh.m3u8
|
||||
最好的梦想2,https://m1.m3u8111222333.com/H1101/11eb/11eb.m3u8
|
||||
服从欲望,https://m1.m3u8111222333.com/H0923/05ap/05ap.m3u8
|
||||
热带风情,https://m1.m3u8111222333.com/I0322/03mt/03mt.m3u8
|
||||
感觉性感2,https://m1.m3u8111222333.com/H1023/03mf/03mf.m3u8
|
||||
幸运桌球2,https://m1.m3u8111222333.com/H1015/27ad/27ad.m3u8
|
||||
慵懒的一天,https://m1.m3u8111222333.com/H1017/29ee/29ee.m3u8
|
||||
红色的书,https://m1.m3u8111222333.com/H0921/03dc/03dc.m3u8
|
||||
氛围到位,https://m1.m3u8111222333.com/H0712/23tt/23tt.m3u8
|
||||
精力旺盛的女朋友,https://m1.m3u8111222333.com/H1022/09el/09el.m3u8
|
||||
时尚女士,https://m1.m3u8111222333.com/H0914/30mf/30mf.m3u8
|
||||
明亮的火焰,https://m1.m3u8111222333.com/H0920/01cb/01cb.m3u8
|
||||
私人学习,https://m1.m3u8111222333.com/I0402/11mc/11mc.m3u8
|
||||
立即获取,https://m1.m3u8111222333.com/H0808/24md/24md.m3u8
|
||||
完美的早晨,https://m1.m3u8111222333.com/H0917/26ee/26ee.m3u8
|
||||
B计划,https://m1.m3u8111222333.com/H0721/04af/04af.m3u8
|
||||
爱我甜蜜,https://m1.m3u8111222333.com/H1003/01ar/01ar.m3u8
|
||||
爱的讯息,https://m1.m3u8111222333.com/H1020/25sg/25sg.m3u8
|
||||
极限肛门,https://m1.m3u8111222333.com/H1006/mkca/mkca.m3u8
|
||||
去吃香蕉,https://m1.m3u8111222333.com/H1005/15sg/15sg.m3u8
|
||||
我感觉到了,https://m1.m3u8111222333.com/H1018/08sc/08sc.m3u8
|
||||
阳光在床上,https://m1.m3u8111222333.com/H0813/31ko/31ko.m3u8
|
||||
女同厕所事件,https://m1.m3u8111222333.com/H1008/23sa/23sa.m3u8
|
||||
我心中的欲望,https://m1.m3u8111222333.com/H1007/17sa/17sa.m3u8
|
||||
平滑的逼,https://m1.m3u8111222333.com/H1002/11mg/11mg.m3u8
|
||||
成为女神,https://m1.m3u8111222333.com/H0925/26na/26na.m3u8
|
||||
打开书本,https://m1.m3u8111222333.com/H0930/09sp/09sp.m3u8
|
||||
辣妹猎人,https://m1.m3u8111222333.com/H1028/19hs/19hs.m3u8
|
||||
火爆登场,https://m1.m3u8111222333.com/H0922/23kc/23kc.m3u8
|
||||
饥渴的心灵,https://m1.m3u8111222333.com/H0928/07sb/07sb.m3u8
|
||||
魔法时刻,https://m1.m3u8111222333.com/H0710/09ml/09ml.m3u8
|
||||
大计划,https://m1.m3u8111222333.com/H0827/23jt/23jt.m3u8
|
||||
强烈号召力,https://m1.m3u8111222333.com/H0910/24sb/24sb.m3u8
|
||||
春药精华,https://m1.m3u8111222333.com/I0325/05lb/05lb.m3u8
|
||||
我感觉到你了,https://m1.m3u8111222333.com/H0918/11rv/11rv.m3u8
|
||||
暖潮,https://m1.m3u8111222333.com/H0905/18vm/18vm.m3u8
|
||||
令人兴奋的莱蒂星,https://m1.m3u8111222333.com/I0330/09ls/09ls.m3u8
|
||||
为你张开肛门,https://m1.m3u8111222333.com/H0811/26lj/26lj.m3u8
|
||||
完美结局,https://m1.m3u8111222333.com/H0929/18ko/18ko.m3u8
|
||||
私人派对,https://m1.m3u8111222333.com/H0908/20sm/20sm.m3u8
|
||||
玩具肛门,https://m1.m3u8111222333.com/H0903/23ss/23ss.m3u8
|
||||
裸体行走,https://m1.m3u8111222333.com/I0318/26sd/26sd.m3u8
|
||||
自慰胜利,https://m1.m3u8111222333.com/I0421/25vm/25vm.m3u8
|
||||
谜团已揭开,https://m1.m3u8111222333.com/H0906/22sm/22sm.m3u8
|
||||
马卡龙,https://m1.m3u8111222333.com/I0408/15ac/15ac.m3u8
|
||||
Neesa的玩具,https://m1.m3u8111222333.com/H0902/16nt/16nt.m3u8
|
||||
电影之夜,https://m1.m3u8111222333.com/H0901/30ee/30ee.m3u8
|
||||
狂野的需求,https://m1.m3u8111222333.com/H0821/06aa/06aa.m3u8
|
||||
淫荡的魅力,https://m1.m3u8111222333.com/I0418/29az/29az.m3u8
|
||||
性感的家庭主妇2,https://m1.m3u8111222333.com/H0819/04am/04am.m3u8
|
||||
舒适的地方,https://m1.m3u8111222333.com/I0319/28sb/28sb.m3u8
|
||||
女孩在床上,https://m1.m3u8111222333.com/H0909/29sh/29sh.m3u8
|
||||
巨乳潮喷,https://m1.m3u8111222333.com/H0829/23sh/23sh.m3u8
|
||||
润滑油爱好者,https://m1.m3u8111222333.com/I0405/13dr/13dr.m3u8
|
||||
愉悦连衣裙,https://m1.m3u8111222333.com/H0830/12em/12em.m3u8
|
||||
在婴儿床上,https://m1.m3u8111222333.com/H0820/23sc/23sc.m3u8
|
||||
热辣少女打手枪,https://m1.m3u8111222333.com/H0817/01ht/01ht.m3u8
|
||||
肛门假阳具,https://m1.m3u8111222333.com/H0818/ssad/ssad.m3u8
|
||||
跟我来2,https://m1.m3u8111222333.com/H0827/14el/14el.m3u8
|
||||
正确的时机,https://m1.m3u8111222333.com/I0406/08la/08la.m3u8
|
||||
永远属于你,https://m1.m3u8111222333.com/I0403/09sa/09sa.m3u8
|
||||
床上的假阳具,https://m1.m3u8111222333.com/H0826/23sd/23sd.m3u8
|
||||
蓝色连衣裙里面的性感肉体,https://m1.m3u8111222333.com/H0912/28kc/28kc.m3u8
|
||||
美的韵律,https://m1.m3u8111222333.com/H0915/05sv/05sv.m3u8
|
||||
假阳具双插,https://m1.m3u8111222333.com/H0823/23sd/23sd.m3u8
|
||||
窥探我,https://m1.m3u8111222333.com/I0417/21sm/21sm.m3u8
|
||||
巴厘岛风情2,https://m1.m3u8111222333.com/H0824/10sp/10sp.m3u8
|
||||
漂亮黑美人,https://m1.m3u8111222333.com/I0321/01ac/01ac.m3u8
|
||||
感觉如此正确,https://m1.m3u8111222333.com/H0814/14ac/14ac.m3u8
|
||||
美丽的搭配,https://m1.m3u8111222333.com/I0324/10ma/10ma.m3u8
|
||||
白热化,https://m1.m3u8111222333.com/H0727/28ll/28ll.m3u8
|
||||
棉花糖巨乳服务,https://m1.m3u8111222333.com/H0808/2123/2123.m3u8
|
||||
粉红心情,https://m1.m3u8111222333.com/I0328/07mp/07mp.m3u8
|
||||
暴露狂,https://m1.m3u8111222333.com/H0821/16va/16va.m3u8
|
||||
读书故事2,https://m1.m3u8111222333.com/H0809/23el/23el.m3u8
|
||||
娇小的模特喜欢引诱已婚男人,https://m1.m3u8111222333.com/H0901/14lb/14lb.m3u8
|
||||
交叉感染,https://m1.m3u8111222333.com/H0805/30ve/30ve.m3u8
|
||||
爱行动2,https://m1.m3u8111222333.com/H0815/02ld/02ld.m3u8
|
||||
美丽的早晨,https://m1.m3u8111222333.com/H0716/03hd/03hd.m3u8
|
||||
准备工作,https://m1.m3u8111222333.com/H0813/31jw/31jw.m3u8
|
||||
想要你更多,https://m1.m3u8111222333.com/H0826/11vw/11vw.m3u8
|
||||
让我嗨起来,https://m1.m3u8111222333.com/H0802/13at/13at.m3u8
|
||||
旋转我,https://m1.m3u8111222333.com/H0811/25fa/25fa.m3u8
|
||||
大又甜,https://m1.m3u8111222333.com/I0412/19no/19no.m3u8
|
||||
爱情训练师,https://m1.m3u8111222333.com/H0804/21vm/21vm.m3u8
|
||||
行走之夜2,https://m1.m3u8111222333.com/H0812/27ma/27ma.m3u8
|
||||
小屋狂热,https://m1.m3u8111222333.com/H0801/24am/24am.m3u8
|
||||
很高兴见到你,https://m1.m3u8111222333.com/H0716/01ld/01ld.m3u8
|
||||
给我一个信号,https://m1.m3u8111222333.com/H0729/09lo/09lo.m3u8
|
||||
爱你所爱的人,https://m1.m3u8111222333.com/H0903/25eb/25eb.m3u8
|
||||
背面进入,https://m1.m3u8111222333.com/H0802/05av/05av.m3u8
|
||||
可爱的兔子2,https://m1.m3u8111222333.com/H0726/17sm/17sm.m3u8
|
||||
催眠我,https://m1.m3u8111222333.com/I0331/23as/23as.m3u8
|
||||
给我的爱上色,https://m1.m3u8111222333.com/H0718/07kc/07kc.m3u8
|
||||
温暖我,https://m1.m3u8111222333.com/H0713/29am/29am.m3u8
|
||||
社交名媛,https://m1.m3u8111222333.com/H0805/14kj/14kj.m3u8
|
||||
你还在等什么,https://m1.m3u8111222333.com/H0727/02ck/02ck.m3u8
|
||||
早晨例行公事,https://m1.m3u8111222333.com/H0721/09sv/09sv.m3u8
|
||||
挑衅者,https://m1.m3u8111222333.com/I0411/17ad/17ad.m3u8
|
||||
这就是我,https://m1.m3u8111222333.com/H0730/19ni/19ni.m3u8
|
||||
我的游戏,https://m1.m3u8111222333.com/H0724/15sb/15sb.m3u8
|
||||
美鲍図鉴,https://m1.m3u8111222333.com/H0712/0523/0523.m3u8
|
||||
奶油般的振动,https://m1.m3u8111222333.com/H0726/18ao/18ao.m3u8
|
||||
几步之遥,https://m1.m3u8111222333.com/H0717/05rr/05rr.m3u8
|
||||
令人着迷的亲密关系,https://m1.m3u8111222333.com/I0409/15cc/15cc.m3u8
|
||||
揭开谜团,https://m1.m3u8111222333.com/H0723/11jm/11jm.m3u8
|
||||
爱我,https://m1.m3u8111222333.com/H0720/05hm/05hm.m3u8
|
||||
温柔的身体,https://m1.m3u8111222333.com/H0807/07lb/07lb.m3u8
|
||||
爱探索彼此,https://m1.m3u8111222333.com/H0722/19kq/19kq.m3u8
|
||||
采访2,https://m1.m3u8111222333.com/H0715/03am/03am.m3u8
|
||||
快乐之镜,https://m1.m3u8111222333.com/H0708/23nm/23nm.m3u8
|
||||
准备好了,https://m1.m3u8111222333.com/H0715/07ak/07ak.m3u8
|
||||
维修1,http://m6z.cn/5HcxJL
|
||||
小姐姐2,http://b.mtw.so/635drk
|
||||
2023年4月月刊女郎,https://m1.m3u8111222333.com/H0701/01lf/01lf.m3u8
|
||||
裸体早餐,https://m1.m3u8111222333.com/H0710/27fa/27fa.m3u8
|
||||
日常逃脱2,https://m1.m3u8111222333.com/H0706/25vr/25vr.m3u8
|
||||
我的新玩具2,https://m1.m3u8111222333.com/H0702/17sm/17sm.m3u8
|
||||
意外的客人2,https://m1.m3u8111222333.com/H0705/15ru/15ru.m3u8
|
||||
胜利的喜悦2,https://m1.m3u8111222333.com/H0623/05ar/05ar.m3u8
|
||||
为我的愿望涂上颜色,https://m1.m3u8111222333.com/H0628/11al/11al.m3u8
|
||||
在床上采访2,https://m1.m3u8111222333.com/H0620/09rv/09rv.m3u8
|
||||
欲望之火2,https://m1.m3u8111222333.com/H0703/21el/21el.m3u8
|
||||
苹果派,https://m1.m3u8111222333.com/H0610/28sc/28sc.m3u8
|
||||
淡褐色的梦2,https://m1.m3u8111222333.com/H0612/01am/01am.m3u8
|
||||
寒冷与爱,https://m1.m3u8111222333.com/H0621/28ba/28ba.m3u8
|
||||
欲求不満痴女的诱惑,https://m1.m3u8111222333.com/H0709/3086/3086.m3u8
|
||||
祝愿你2,https://m1.m3u8111222333.com/H0625/13jw/13jw.m3u8
|
||||
美鲍図鉴,https://m1.m3u8111222333.com/H0630/1423/1423.m3u8
|
||||
喜欢你,https://m1.m3u8111222333.com/H0601/17ac/17ac.m3u8
|
||||
朦胧的早晨,https://m1.m3u8111222333.com/H0616/03fh/03fh.m3u8
|
||||
性感雀斑,https://m1.m3u8111222333.com/H0608/26mg/26mg.m3u8
|
||||
美鲍図鉴,https://m1.m3u8111222333.com/H0709/0723/0723.m3u8
|
||||
看着情色小说发情,https://m1.m3u8111222333.com/H0611/30jw/30jw.m3u8
|
||||
脱衣舞,https://m1.m3u8111222333.com/H0529/07ba/07ba.m3u8
|
||||
红玫瑰,https://m1.m3u8111222333.com/H0609/14ei/14ei.m3u8
|
||||
2023年3月月度最佳,https://m1.m3u8111222333.com/H0527/01ba/01ba.m3u8
|
||||
爱在花边,https://m1.m3u8111222333.com/H0615/07lf/07lf.m3u8
|
||||
黏稠舔吮口交,https://m1.m3u8111222333.com/H0624/3069/3069.m3u8
|
||||
下课以后2,https://m1.m3u8111222333.com/H0617/07ma/07ma.m3u8
|
||||
条纹假鸡巴,https://m1.m3u8111222333.com/H0604/24vm/24vm.m3u8
|
||||
最色情,https://m1.m3u8111222333.com/H0606/22ar/22ar.m3u8
|
||||
性感小猫,https://m1.m3u8111222333.com/H0526/14nl/14nl.m3u8
|
||||
海滩的一天,https://m1.m3u8111222333.com/H0605/26ei/26ei.m3u8
|
||||
任务处理2,https://m1.m3u8111222333.com/H0603/18vm/18vm.m3u8
|
||||
城市景观,https://m1.m3u8111222333.com/H0528/16mb/16mb.m3u8
|
||||
保持联系,https://m1.m3u8111222333.com/H0618/31as/31as.m3u8
|
||||
醒来和爱,https://m1.m3u8111222333.com/H0525/03cn/03cn.m3u8
|
||||
突出重点,https://m1.m3u8111222333.com/H0614/24zs/24zs.m3u8
|
||||
贴身内衣,https://m1.m3u8111222333.com/H0520/27ee/27ee.m3u8
|
||||
忘不了你2,https://m1.m3u8111222333.com/H0522/20el/20el.m3u8
|
||||
午后客厅,https://m1.m3u8111222333.com/H0531/10ld/10ld.m3u8
|
||||
绳子内衣,https://m1.m3u8111222333.com/H0519/08fa/08fa.m3u8
|
||||
洗澡后性玩具,https://m1.m3u8111222333.com/H0514/30st/30st.m3u8
|
||||
蓝色傍晚,https://m1.m3u8111222333.com/H0516/04es/04es.m3u8
|
||||
生活方式2,https://m1.m3u8111222333.com/H0521/10jv/10jv.m3u8
|
||||
诱人的蔬菜,https://m1.m3u8111222333.com/H0509/26ss/26ss.m3u8
|
||||
自慰指示,https://m1.m3u8111222333.com/H0517/06ro/06ro.m3u8
|
||||
解决了,https://m1.m3u8111222333.com/H0523/12sr/12sr.m3u8
|
||||
心跳节拍,https://m1.m3u8111222333.com/H0507/24am/24am.m3u8
|
||||
粉红色衣服粉红逼,https://m1.m3u8111222333.com/H0506/22sb/22sb.m3u8
|
||||
性感水管工,https://m1.m3u8111222333.com/H0513/02ma/02ma.m3u8
|
||||
成为明星,https://m1.m3u8111222333.com/H0510/24kl/24kl.m3u8
|
||||
合适的时间,https://m1.m3u8111222333.com/H0512/28am/28am.m3u8
|
||||
爱的共鸣,https://m1.m3u8111222333.com/H0504/14vm/14vm.m3u8
|
||||
太阳镜高潮,https://m1.m3u8111222333.com/H0501/20bs/20bs.m3u8
|
||||
寻找外星人先生,https://m1.m3u8111222333.com/H0503/10sl/10sl.m3u8
|
||||
女同洗澡时间,https://m1.m3u8111222333.com/H0429/03tt/03tt.m3u8
|
||||
热辣瑜珈,https://m1.m3u8111222333.com/H0428/10eb/10eb.m3u8
|
||||
桌球手的欲望,https://m1.m3u8111222333.com/H0430/16ar/16ar.m3u8
|
||||
在阳光下,https://m1.m3u8111222333.com/H0505/17ir/17ir.m3u8
|
||||
同性室友,https://m1.m3u8111222333.com/H0425/29ll/29ll.m3u8
|
||||
温柔的梦,https://m1.m3u8111222333.com/H0414/27lb/27lb.m3u8
|
||||
聚光灯下2,https://m1.m3u8111222333.com/H0426/12mr/12mr.m3u8
|
||||
池边自慰,https://m1.m3u8111222333.com/H0416/02sc/02sc.m3u8
|
||||
隔离中,https://m1.m3u8111222333.com/H0415/31bs/31bs.m3u8
|
||||
看一看,https://m1.m3u8111222333.com/H0409/25at/25at.m3u8
|
||||
按面试要求自慰,https://m1.m3u8111222333.com/H0417/04ls/04ls.m3u8
|
||||
服务员2,https://m1.m3u8111222333.com/H0420/06vf/06vf.m3u8
|
||||
电话响起,https://m1.m3u8111222333.com/H0410/23ma/23ma.m3u8
|
||||
鸡尾酒橙,https://m1.m3u8111222333.com/H0408/21dc/21dc.m3u8
|
||||
可爱的家庭教师2,https://m1.m3u8111222333.com/H0423/10lb/10lb.m3u8
|
||||
闷骚颜面骑乘,https://m1.m3u8111222333.com/H0426/2123/2123.m3u8
|
||||
远景,https://m1.m3u8111222333.com/H0422/08sb/08sb.m3u8
|
||||
狐狸小姐2,https://m1.m3u8111222333.com/H0404/15jl/15jl.m3u8
|
||||
阿米莉亚斯展现2,https://m1.m3u8111222333.com/H0331/05ar/05ar.m3u8
|
||||
成人图片杂志,https://m1.m3u8111222333.com/H0413/29ss/29ss.m3u8
|
||||
给我花,https://m1.m3u8111222333.com/H0411/27as/27as.m3u8
|
||||
采访2,https://m1.m3u8111222333.com/H0407/19si/19si.m3u8
|
||||
在家2,https://m1.m3u8111222333.com/H0328/01bd/01bd.m3u8
|
||||
面试2,https://m1.m3u8111222333.com/H0329/03ni/03ni.m3u8
|
||||
锻炼2,https://m1.m3u8111222333.com/H0402/09ma/09ma.m3u8
|
||||
蔓藤花穴,https://m1.m3u8111222333.com/H0401/07ap/07ap.m3u8
|
||||
甜蜜的早晨,https://m1.m3u8111222333.com/H0323/23js/23js.m3u8
|
||||
凌晨之前,https://m1.m3u8111222333.com/H0326/27sg/27sg.m3u8
|
||||
狂野性感,https://m1.m3u8111222333.com/H0403/11ew/11ew.m3u8
|
||||
梦遗,https://m1.m3u8111222333.com/H0406/17ap/17ap.m3u8
|
||||
热恋之后,https://m1.m3u8111222333.com/H0317/11sa/11sa.m3u8
|
||||
性感按摩快感2,https://m1.m3u8111222333.com/H0408/3025/3025.m3u8
|
||||
粉色浴室2,https://m1.m3u8111222333.com/H0324/25aj/25aj.m3u8
|
||||
光照射在我身体,https://m1.m3u8111222333.com/H0312/28el/28el.m3u8
|
||||
夜光精灵,https://m1.m3u8111222333.com/H0304/19jb/19jb.m3u8
|
||||
激情,https://m1.m3u8111222333.com/H0314/05ss/05ss.m3u8
|
||||
性感女星大全,https://m1.m3u8111222333.com/H0325/2523/2523.m3u8
|
||||
AV面试2,https://m1.m3u8111222333.com/H0319/15ri/15ri.m3u8
|
||||
内心的欲望,https://m1.m3u8111222333.com/H0320/17ob/17ob.m3u8
|
||||
早晨的刺激,https://m1.m3u8111222333.com/H0305/14ei/14ei.m3u8
|
||||
冰之少女,https://m1.m3u8111222333.com/H0311/24va/24va.m3u8
|
||||
发现可爱的玩具,https://m1.m3u8111222333.com/H0315/07es/07es.m3u8
|
||||
浴室秀,https://m1.m3u8111222333.com/H0303/14sc/14sc.m3u8
|
||||
紫色紧身胸衣,https://m1.m3u8111222333.com/H0306/16fa/16fa.m3u8
|
||||
性感宝贝身体,https://m1.m3u8111222333.com/H0322/21tb/21tb.m3u8
|
||||
第一次接触2,https://m1.m3u8111222333.com/H0310/22rv/22rv.m3u8
|
||||
感性的黑色丝袜,https://m1.m3u8111222333.com/H0308/18na/18na.m3u8
|
||||
显露曲线,https://m1.m3u8111222333.com/H0227/29lt/29lt.m3u8
|
||||
裸体午餐,https://m1.m3u8111222333.com/H0318/13al/13al.m3u8
|
||||
西洋妞,https://m1.m3u8111222333.com/H0302/05km/05km.m3u8
|
||||
色情食谱,https://m1.m3u8111222333.com/H0228/31fe/31fe.m3u8
|
||||
模特诱惑,https://m1.m3u8111222333.com/H0225/24lp/24lp.m3u8
|
||||
阿德尔的来信,https://m1.m3u8111222333.com/H0309/20ee/20ee.m3u8
|
||||
情色小说,https://m1.m3u8111222333.com/H0224/22ls/22ls.m3u8
|
||||
野餐时间,https://m1.m3u8111222333.com/H0219/10sm/10sm.m3u8
|
||||
照镜子,https://m1.m3u8111222333.com/H0221/10an/10an.m3u8
|
||||
脱衣舞,https://m1.m3u8111222333.com/H0223/07ro/07ro.m3u8
|
||||
扣出水,https://m1.m3u8111222333.com/H0210/08lp/08lp.m3u8
|
||||
海边表演,https://m1.m3u8111222333.com/H0204/05ot/05ot.m3u8
|
||||
躺椅上自慰,https://m1.m3u8111222333.com/H0128/27ms/27ms.m3u8
|
||||
河边裸体少女,https://m1.m3u8111222333.com/H0205/17ot/17ot.m3u8
|
||||
灵感,https://m1.m3u8111222333.com/H0222/12kc/12kc.m3u8
|
||||
祼体读者,https://m1.m3u8111222333.com/H0201/15ar/15ar.m3u8
|
||||
自慰欲望,https://m1.m3u8111222333.com/H0218/08es/08es.m3u8
|
||||
饱暧思淫欲,https://m1.m3u8111222333.com/H0211/04ba/04ba.m3u8
|
||||
在云层之上,https://m1.m3u8111222333.com/H0129/10fa/10fa.m3u8
|
||||
摇晃的秋千,https://m1.m3u8111222333.com/H0131/30sm/30sm.m3u8
|
||||
镜子前的女孩,https://m1.m3u8111222333.com/H0209/05es/05es.m3u8
|
||||
柔软体操运动,https://m1.m3u8111222333.com/H0122/22eb/22eb.m3u8
|
||||
床上自慰表演,https://m1.m3u8111222333.com/H0202/04jb/04jb.m3u8
|
||||
私人挑逗,https://m1.m3u8111222333.com/H0125/03bd/03bd.m3u8
|
||||
回到床上,https://m1.m3u8111222333.com/H0214/06jv/06jv.m3u8
|
||||
让我们庆祝,https://m1.m3u8111222333.com/H0123/01ma/01ma.m3u8
|
||||
草莓牛奶女孩,https://m1.m3u8111222333.com/H0127/08yc/08yc.m3u8
|
||||
热门短篇小说,https://m1.m3u8111222333.com/H0206/02nh/02nh.m3u8
|
||||
厨娘,https://m1.m3u8111222333.com/H0217/09kl/09kl.m3u8
|
||||
去海滩之前,https://m1.m3u8111222333.com/H0203/28lc/28lc.m3u8
|
||||
女孩回忆窗台边玫瑰花瓣,https://m1.m3u8111222333.com/H0215/14cs/14cs.m3u8
|
||||
对比身材,https://m1.m3u8111222333.com/H0126/23wf/23wf.m3u8
|
||||
影响,https://m1.m3u8111222333.com/H0212/29ew/29ew.m3u8
|
||||
女孩爱性爱,https://m1.m3u8111222333.com/H0208/07cs/07cs.m3u8
|
||||
值得等待,https://m1.m3u8111222333.com/H0114/09ll/09ll.m3u8
|
||||
电视机前自慰,https://m1.m3u8111222333.com/G1229/06er/06er.m3u8
|
||||
爱情信条,https://m1.m3u8111222333.com/H0101/09sc/09sc.m3u8
|
||||
沙发上脱衣服,https://m1.m3u8111222333.com/G1231/07rb/07rb.m3u8
|
||||
闺蜜骚话聊天,https://m1.m3u8111222333.com/H0113/16lb/16lb.m3u8
|
||||
女同志厨房大战,https://m1.m3u8111222333.com/H0104/08hg/08hg.m3u8
|
||||
想要你的爱,https://m1.m3u8111222333.com/H0120/25cs/25cs.m3u8
|
||||
沙滩上的女孩,https://m1.m3u8111222333.com/H0118/18sw/18sw.m3u8
|
||||
在跑步机上展示身体,https://m1.m3u8111222333.com/H0110/15cr/15cr.m3u8
|
||||
冷却下来,https://m1.m3u8111222333.com/G1218/06kk/06kk.m3u8
|
||||
想想我们,https://m1.m3u8111222333.com/G1228/04bb/04bb.m3u8
|
||||
舔我的小穴,https://m1.m3u8111222333.com/G1220/11ma/11ma.m3u8
|
||||
叭在沙发上,https://m1.m3u8111222333.com/H0107/14ps/14ps.m3u8
|
||||
放弃我,https://m1.m3u8111222333.com/G1223/05ei/05ei.m3u8
|
||||
妇科检查,https://m1.m3u8111222333.com/H0111/23gs/23gs.m3u8
|
||||
绝顶的高潮,https://m1.m3u8111222333.com/H0108/11sa/11sa.m3u8
|
||||
浅红色湿润美体,https://m1.m3u8111222333.com/H0113/0623/0623.m3u8
|
||||
她的回归,https://m1.m3u8111222333.com/H0115/05sa/05sa.m3u8
|
||||
沙滩排球双打比赛,https://m1.m3u8111222333.com/G1222/03sw/03sw.m3u8
|
||||
爱情主题,https://m1.m3u8111222333.com/H0109/18fa/18fa.m3u8
|
||||
女孩喜欢做爱,https://m1.m3u8111222333.com/H0116/23la/23la.m3u8
|
||||
发情白糖果,https://m1.m3u8111222333.com/G1227/11va/11va.m3u8
|
||||
周日最佳,https://m1.m3u8111222333.com/H0103/11lh/11lh.m3u8
|
||||
篝火艳舞,https://m1.m3u8111222333.com/G1221/31et/31et.m3u8
|
||||
性感女巫,https://m1.m3u8111222333.com/G1211/29sm/29sm.m3u8
|
||||
裸体沙滩排球赛,https://m1.m3u8111222333.com/G1217/26mk/26mk.m3u8
|
||||
下一章,https://m1.m3u8111222333.com/G1212/14lq/14lq.m3u8
|
||||
性感的女孩,https://m1.m3u8111222333.com/G1216/26sa/26sa.m3u8
|
||||
诱惑的,https://m1.m3u8111222333.com/G1215/01vs/01vs.m3u8
|
||||
杠杆作用,https://m1.m3u8111222333.com/G1203/12hl/12hl.m3u8
|
||||
一起洗澡,https://m1.m3u8111222333.com/G1208/11iv/11iv.m3u8
|
||||
继续女同,https://m1.m3u8111222333.com/G1214/28so/28so.m3u8
|
||||
毛穴,https://m1.m3u8111222333.com/G1123/05mf/05mf.m3u8
|
||||
蓝衣魔女,https://m1.m3u8111222333.com/G1209/28jb/28jb.m3u8
|
||||
画笔更敏感,https://m1.m3u8111222333.com/G1210/25bb/25bb.m3u8
|
||||
爆乳女孩的顔面騎乘,https://m1.m3u8111222333.com/G1209/1207/1207.m3u8
|
||||
外阴世界杯,https://m1.m3u8111222333.com/H0119/20vw/20vw.m3u8
|
||||
吧台边自慰,https://m1.m3u8111222333.com/G1122/12jb/12jb.m3u8
|
||||
读淫乱小说,https://m1.m3u8111222333.com/G1202/21cr/21cr.m3u8
|
||||
喝完饮料秀一场,https://m1.m3u8111222333.com/G1126/17lm/17lm.m3u8
|
||||
淫魔COS,https://m1.m3u8111222333.com/G1204/27et/27et.m3u8
|
||||
丰满女生自嗨,https://m1.m3u8111222333.com/G1124/13eb/13eb.m3u8
|
||||
沙发上的美腿,https://m1.m3u8111222333.com/G1201/18sb/18sb.m3u8
|
||||
回屋去,https://m1.m3u8111222333.com/G1205/19sw/19sw.m3u8
|
||||
原罪,https://m1.m3u8111222333.com/G1206/21ap/21ap.m3u8
|
||||
订阅女同电子杂志,https://m1.m3u8111222333.com/G1127/26tt/26tt.m3u8
|
||||
万圣节夜会,https://m1.m3u8111222333.com/G1120/04ir/04ir.m3u8
|
||||
爱分享2,https://m1.m3u8111222333.com/G1128/14lf/14lf.m3u8
|
||||
跳蛋表演,https://m1.m3u8111222333.com/G1117/09vw/09vw.m3u8
|
||||
艺术画,https://m1.m3u8111222333.com/G1129/08mo/08mo.m3u8
|
||||
量身定做,https://m1.m3u8111222333.com/G1119/11mw/11mw.m3u8
|
||||
三通好运,https://m1.m3u8111222333.com/G1118/02fh/02fh.m3u8
|
||||
爱的语言,https://m1.m3u8111222333.com/G1116/01il/01il.m3u8
|
||||
雀斑女孩,https://m1.m3u8111222333.com/G1112/30lr/30lr.m3u8
|
||||
红裙花姑娘,https://m1.m3u8111222333.com/G1109/01sb/01sb.m3u8
|
||||
沙发上自慰,https://m1.m3u8111222333.com/G1104/27nm/27nm.m3u8
|
||||
脱下内衣,https://m1.m3u8111222333.com/G1114/05cr/05cr.m3u8
|
||||
沐浴表演,https://m1.m3u8111222333.com/G1105/26jb/26jb.m3u8
|
||||
巧克力的味道,https://m1.m3u8111222333.com/G1115/06ms/06ms.m3u8
|
||||
爱分享,https://m1.m3u8111222333.com/G1102/30id/30id.m3u8
|
||||
毛穴喜爱自慰,https://m1.m3u8111222333.com/G1110/28ap/28ap.m3u8
|
||||
裸体聊天,https://m1.m3u8111222333.com/G1108/27ii/27ii.m3u8
|
||||
在椅子上表演,https://m1.m3u8111222333.com/G1029/24kd/24kd.m3u8
|
||||
视频自慰,https://m1.m3u8111222333.com/G1106/28jl/28jl.m3u8
|
||||
裸体面试,https://m1.m3u8111222333.com/G1025/20iv/20iv.m3u8
|
||||
淫乱女同性恋,https://m1.m3u8111222333.com/G1031/25jb/25jb.m3u8
|
||||
授权,https://m1.m3u8111222333.com/G1023/19sr/19sr.m3u8
|
||||
尴尬的女同性恋者,https://m1.m3u8111222333.com/G1111/03mk/03mk.m3u8
|
||||
好的开始,https://m1.m3u8111222333.com/G1030/23mg/23mg.m3u8
|
||||
禅园,https://m1.m3u8111222333.com/G1021/18hl/18hl.m3u8
|
||||
独角戏,https://m1.m3u8111222333.com/G1027/23ks/23ks.m3u8
|
||||
性爱文学,https://m1.m3u8111222333.com/G1028/21rc/21rc.m3u8
|
||||
裸体小钢琴,https://m1.m3u8111222333.com/G1019/19ns/19ns.m3u8
|
||||
激情之魂,https://m1.m3u8111222333.com/G1024/23os/23os.m3u8
|
||||
裸体瑜珈,https://m1.m3u8111222333.com/G1103/24fl/24fl.m3u8
|
||||
后院板球,https://m1.m3u8111222333.com/G1018/17og/17og.m3u8
|
||||
女同性恋,https://m1.m3u8111222333.com/G1016/17lb/17lb.m3u8
|
||||
浴室独奏,https://m1.m3u8111222333.com/G1005/11ek/11ek.m3u8
|
||||
在路上自嗨,https://m1.m3u8111222333.com/G1009/12fo/12fo.m3u8
|
||||
我想要自行解决,https://m1.m3u8111222333.com/G0929/03mk/03mk.m3u8
|
||||
性感的即兴演奏,https://m1.m3u8111222333.com/G1013/16js/16js.m3u8
|
||||
自慰表现,https://m1.m3u8111222333.com/G1017/16mg/16mg.m3u8
|
||||
如诗的女人,https://m1.m3u8111222333.com/G0925/11ls/11ls.m3u8
|
||||
我只需要小便,https://m1.m3u8111222333.com/G1001/07ll/07ll.m3u8
|
||||
別刊マジオナ133,https://m1.m3u8111222333.com/G1022/p359/p359.m3u8
|
||||
粉红色的一面,https://m1.m3u8111222333.com/G0917/25mm/25mm.m3u8
|
||||
宠爱公主,https://m1.m3u8111222333.com/G0911/18pa/18pa.m3u8
|
||||
我爱阴毛,https://m1.m3u8111222333.com/G0919/27mm/27mm.m3u8
|
||||
平稳移动,https://m1.m3u8111222333.com/G0923/28ap/28ap.m3u8
|
||||
在办公桌上自慰,https://m1.m3u8111222333.com/G1015/16mw/16mw.m3u8
|
||||
独奏,https://m1.m3u8111222333.com/G1003/08cr/08cr.m3u8
|
||||
我一直想要你,https://m1.m3u8111222333.com/G0915/20ot/20ot.m3u8
|
||||
闺蜜活动,https://m1.m3u8111222333.com/G1011/09jv/09jv.m3u8
|
||||
激烈的对话,https://m1.m3u8111222333.com/G0928/29ap/29ap.m3u8
|
||||
洗去你的烦恼,https://m1.m3u8111222333.com/G0903/11qw/11qw.m3u8
|
||||
あずみ恋の足交,https://m1.m3u8111222333.com/G1002/1168/1168.m3u8
|
||||
爆乳的少女,https://m1.m3u8111222333.com/G0927/02bb/02bb.m3u8
|
||||
最后的接触,https://m1.m3u8111222333.com/G0922/28eb/28eb.m3u8
|
||||
让我们切入正题,https://m1.m3u8111222333.com/G0924/30ka/30ka.m3u8
|
||||
解决它,https://m1.m3u8111222333.com/G1006/07tw/07tw.m3u8
|
||||
馒头美逼女孩自慰,https://m1.m3u8111222333.com/G1012/15ky/15ky.m3u8
|
||||
泡芙公主,https://m1.m3u8111222333.com/G0910/17bb/17bb.m3u8
|
||||
裸体乒乓,https://m1.m3u8111222333.com/G0967/13ap/13ap.m3u8
|
||||
被抓住自慰,https://m1.m3u8111222333.com/G0921/08cl/08cl.m3u8
|
||||
活在当下,https://m1.m3u8111222333.com/G0913/22mt/22mt.m3u8
|
||||
酒醉探戈,https://m1.m3u8111222333.com/G0918/26ky/26ky.m3u8
|
||||
同性恋派对,https://m1.m3u8111222333.com/G0905/12ky/12ky.m3u8
|
||||
早晨的阳光,https://m1.m3u8111222333.com/G0821/29hp/29hp.m3u8
|
||||
看我自慰,https://m1.m3u8111222333.com/G0909/14mm/14mm.m3u8
|
||||
珍珠项链,https://m1.m3u8111222333.com/G0930/05jj/05jj.m3u8
|
||||
未完成的课程,https://m1.m3u8111222333.com/G1007/02sc/02sc.m3u8
|
||||
颜面騎乗式的吸吮鸡巴,https://m1.m3u8111222333.com/G0916/8192/8192.m3u8
|
||||
双胞胎女同性恋者,https://m1.m3u8111222333.com/G0809/11rb/11rb.m3u8
|
||||
爱的火花,https://m1.m3u8111222333.com/G0967/12cw/12cw.m3u8
|
||||
我们走吧,https://m1.m3u8111222333.com/G0831/10db/10db.m3u8
|
||||
湿透,https://m1.m3u8111222333.com/G0825/02ky/02ky.m3u8
|
||||
厨房柜台上的独奏动作,https://m1.m3u8111222333.com/G0827/06er/06er.m3u8
|
||||
梦见一个女孩,https://m1.m3u8111222333.com/G0830/05ls/05ls.m3u8
|
||||
穿着紫色丝袜,https://m1.m3u8111222333.com/G0826/03kg/03kg.m3u8
|
||||
女孩羞涩的疯狂放尿,https://m1.m3u8111222333.com/G0828/8262/8262.m3u8
|
||||
展示次数,https://m1.m3u8111222333.com/G0901/19ls/19ls.m3u8
|
||||
我爱紫色,https://m1.m3u8111222333.com/G0815/23sp/23sp.m3u8
|
||||
女仆为你,https://m1.m3u8111222333.com/G0810/15vs/15vs.m3u8
|
||||
小夜曲,https://m1.m3u8111222333.com/G0822/22kc/22kc.m3u8
|
||||
害羞拍照,https://m1.m3u8111222333.com/G0717/15rm/15rm.m3u8
|
||||
我喜欢毛茸茸的猫,https://m1.m3u8111222333.com/G0730/05vw/05vw.m3u8
|
||||
孤独终老,https://m1.m3u8111222333.com/G0820/28ar/28ar.m3u8
|
||||
身体形象,https://m1.m3u8111222333.com/G0814/21sw/21sw.m3u8
|
||||
阳光的光芒,https://m1.m3u8111222333.com/G0816/29as/29as.m3u8
|
||||
面对面,https://m1.m3u8111222333.com/G0818/25ek/25ek.m3u8
|
||||
如何自拍,https://m1.m3u8111222333.com/G0729/01eo/01eo.m3u8
|
||||
从头到脚抚摸,https://m1.m3u8111222333.com/G0726/17kl/17kl.m3u8
|
||||
再靠近一点点,https://m1.m3u8111222333.com/G0803/08mr/08mr.m3u8
|
||||
游泳工具,https://m1.m3u8111222333.com/G0812/16rf/16rf.m3u8
|
||||
在一起的时间,https://m1.m3u8111222333.com/G0807/08dd/08dd.m3u8
|
||||
她自己的房间,https://m1.m3u8111222333.com/G0805/13lm/13lm.m3u8
|
||||
姐妹发情日,https://m1.m3u8111222333.com/G0819/27mw/27mw.m3u8
|
||||
随时随地触摸我,https://m1.m3u8111222333.com/G0813/19db/19db.m3u8
|
||||
THE未公開颜面骑乘想被舔2,https://m1.m3u8111222333.com/G0721/7072/7072.m3u8
|
||||
动物园管理员,https://m1.m3u8111222333.com/G0708/11hg/11hg.m3u8
|
||||
未公开映像从肛门舔到鸡巴来服务男人,https://m1.m3u8111222333.com/G0721/7082/7082.m3u8
|
||||
情色指法,https://m1.m3u8111222333.com/G0718/16fn/16fn.m3u8
|
||||
热辣的东西,https://m1.m3u8111222333.com/G0713/09ke/09ke.m3u8
|
||||
又热又好玩,https://m1.m3u8111222333.com/G0714/10dh/10dh.m3u8
|
||||
办公事务3,https://m1.m3u8111222333.com/G0706/03oa/03oa.m3u8
|
||||
偷看会员,https://m1.m3u8111222333.com/G0702/27la/27la.m3u8
|
||||
狂野暴露,https://m1.m3u8111222333.com/G0703/02vl/02vl.m3u8
|
||||
小小洞,https://m1.m3u8111222333.com/G0615/28lk/28lk.m3u8
|
||||
享受这一刻,https://m1.m3u8111222333.com/G0618/26ml/26ml.m3u8
|
||||
想要等待,https://m1.m3u8111222333.com/G0527/10er/10er.m3u8
|
||||
游乐区,https://m1.m3u8111222333.com/G0603/14jl/14jl.m3u8
|
||||
看成人小说发骚,https://m1.m3u8111222333.com/G0512/30sc/30sc.m3u8
|
||||
一个完美的下午,https://m1.m3u8111222333.com/G0521/28ad/28ad.m3u8
|
||||
让我告诉你是如何自慰的,https://m1.m3u8111222333.com/G0609/22ns/22ns.m3u8
|
||||
少即是多,https://m1.m3u8111222333.com/G0605/18ml/18ml.m3u8
|
||||
厨房生活方式,https://m1.m3u8111222333.com/G0612/23ig/23ig.m3u8
|
||||
手握公鸡,https://m1.m3u8111222333.com/G0620/2796/2796.m3u8
|
||||
办公事务,https://m1.m3u8111222333.com/G0625/20oa/20oa.m3u8
|
||||
理想的家,https://m1.m3u8111222333.com/G0517/22mr/22mr.m3u8
|
||||
相互感受,https://m1.m3u8111222333.com/G0711/05er/05er.m3u8
|
||||
现场直播,https://m1.m3u8111222333.com/G0513/29vs/29vs.m3u8
|
||||
美尻诱惑,https://m1.m3u8111222333.com/G0530/2789/2789.m3u8
|
||||
芭蕾舞女演员,https://m1.m3u8111222333.com/G0509/20vg/20vg.m3u8
|
||||
美鲍図鉴衣吹かのん,https://m1.m3u8111222333.com/G0606/6012/6012.m3u8
|
||||
一闪一闪亮晶晶,https://m1.m3u8111222333.com/G0523/02le/02le.m3u8
|
||||
绘画天堂,https://m1.m3u8111222333.com/G0524/06ap/06ap.m3u8
|
||||
手淫神话,https://m1.m3u8111222333.com/G0511/24rr/24rr.m3u8
|
||||
甜美曲线,https://m1.m3u8111222333.com/G0510/16ps/16ps.m3u8
|
||||
女孩自慰记录12,https://m1.m3u8111222333.com/G0505/20rr/20rr.m3u8
|
||||
炎热的夏天,https://m1.m3u8111222333.com/G0429/08sv/08sv.m3u8
|
||||
女孩自慰的记录,https://m1.m3u8111222333.com/G0331/16al/16al.m3u8
|
||||
女孩自慰记录11,https://m1.m3u8111222333.com/G0502/13cc/13cc.m3u8
|
||||
抢先看穴,https://m1.m3u8111222333.com/G0503/12ms/12ms.m3u8
|
||||
光滑三人组,https://m1.m3u8111222333.com/G0504/15hm/15hm.m3u8
|
||||
不仅仅是朋友,https://m1.m3u8111222333.com/G0417/25ms/25ms.m3u8
|
||||
女孩自慰的记录8,https://m1.m3u8111222333.com/G0406/23cf/23cf.m3u8
|
||||
车座上自慰,https://m1.m3u8111222333.com/G0420/09sv/09sv.m3u8
|
||||
同性恋骑士,https://m1.m3u8111222333.com/G0326/04sj/04sj.m3u8
|
||||
朋友或恋人,https://m1.m3u8111222333.com/G0316/04ah/04ah.m3u8
|
||||
足交,https://m1.m3u8111222333.com/G0325/2744/2744.m3u8
|
||||
女孩自慰的回忆,https://m1.m3u8111222333.com/G0223/02ea/02ea.m3u8
|
||||
洩漏出來了,https://m1.m3u8111222333.com/G0507/2767/2767.m3u8
|
||||
纯真的爱情,https://m1.m3u8111222333.com/G0409/25jj/25jj.m3u8
|
||||
迷失性爱,https://m1.m3u8111222333.com/G0314/02mo/02mo.m3u8
|
||||
想着你,https://m1.m3u8111222333.com/G0220/26jj/26jj.m3u8
|
||||
女孩自慰记录10,https://m1.m3u8111222333.com/G0414/06aa/06aa.m3u8
|
||||
超出预期,https://m1.m3u8111222333.com/G0322/25ga/25ga.m3u8
|
||||
不要男人,https://m1.m3u8111222333.com/G0203/07ad/07ad.m3u8
|
||||
我给你一个Gcup,https://m1.m3u8111222333.com/G0423/2731/2731.m3u8
|
||||
手握公鸡2,https://m1.m3u8111222333.com/G0301/2728/2728.m3u8
|
||||
我给你一个Hcup,https://m1.m3u8111222333.com/G0222/2715/2715.m3u8
|
||||
敏感肌肤,https://m1.m3u8111222333.com/G0226/05gb/05gb.m3u8
|
||||
喜欢自慰的女孩,https://m1.m3u8111222333.com/G0224/09lf/09lf.m3u8
|
||||
喜欢自慰高潮的女孩,https://m1.m3u8111222333.com/G0311/23as/23as.m3u8
|
||||
愛棒2总3名,https://m1.m3u8111222333.com/G0701/6142/6142.m3u8
|
||||
不一样的性感,https://m1.m3u8111222333.com/G0308/04nh/04nh.m3u8
|
||||
足交,https://m1.m3u8111222333.com/G0412/2755/2755.m3u8
|
||||
峡谷夫人,https://m1.m3u8111222333.com/G0212/06dc/06dc.m3u8
|
||||
男人的气味,https://m1.m3u8111222333.com/G0204/19po/19po.m3u8
|
||||
加速高潮,https://m1.m3u8111222333.com/G0218/01kr/01kr.m3u8
|
||||
快乐与色情按摩,https://m1.m3u8111222333.com/G0403/2747/2747.m3u8
|
||||
梦想开启,https://m1.m3u8111222333.com/G0131/31lg/31lg.m3u8
|
||||
幻境,https://m1.m3u8111222333.com/G0210/02at/02at.m3u8
|
||||
慢慢脱给你看,https://m1.m3u8111222333.com/G0208/04jb/04jb.m3u8
|
||||
好莱坞假日,https://m1.m3u8111222333.com/G0214/04vb/04vb.m3u8
|
||||
マンコ図鑑,https://m1.m3u8111222333.com/G0127/2022/2022.m3u8
|
||||
ItIsAGogoforMomo,https://m1.m3u8111222333.com/H1021/iigm/iigm.m3u8
|
||||
女同性恋,https://m1.m3u8111222333.com/G0130/31hh/31hh.m3u8
|
||||
MySqrtingGirlfriend,https://m1.m3u8111222333.com/I0209/msg/msg.m3u8
|
||||
APARTOFHERWORLD,https://m1.m3u8111222333.com/H1204/aphw/aphw.m3u8
|
||||
TransSwingersCompilation,https://m1.m3u8111222333.com/H1230/tsc/tsc.m3u8
|
||||
HerFirstTransEncounter,https://m1.m3u8111222333.com/H0717/hfte/s1.m3u8
|
||||
LesbiansLoveTrans,https://m1.m3u8111222333.com/I0318/llt/llt.m3u8
|
||||
LUSTYANDHAIRY,https://m1.m3u8111222333.com/H1118/lah/lah.m3u8
|
||||
業餘真正的女同性戀,https://m1.m3u8111222333.com/I0324/d573/d573.m3u8
|
||||
妻怀孕期间我禁欲了却反复对后辈射出雄精的中出,https://m1.m3u8111222333.com/I0215/s312/s312.m3u8
|
||||
MagicTouch,https://m1.m3u8111222333.com/H0727/mt/s1.m3u8
|
||||
五十岁女同性恋迟开花的女同性恋熟女的性欲剧场,https://m1.m3u8111222333.com/I0226/g586/g586.m3u8
|
||||
QUASHINGHERCRAVINGS,https://m1.m3u8111222333.com/I0106/qhc/qhc.m3u8
|
||||
Transgressive17,https://m1.m3u8111222333.com/H1126/t17/t17.m3u8
|
||||
淫蕩鮑魚Bondage鐵拘束鮑魚拷問,https://m1.m3u8111222333.com/I0112/g068/g068.m3u8
|
||||
TranssexualHitchhikers3,https://m1.m3u8111222333.com/H1104/th3/th3.m3u8
|
||||
誘惑的淫蕩酒吧人妖篇,https://m1.m3u8111222333.com/H1228/p010/p010.m3u8
|
||||
TOOMUCHOFAGOODTHONG,https://m1.m3u8111222333.com/I0119/tmgt/tmgt.m3u8
|
||||
TEASEMETOUCHMETOYME,https://m1.m3u8111222333.com/H0826/tmtm/tmtm.m3u8
|
||||
AllTittiesBigAndSmall,https://m1.m3u8111222333.com/H0227/atbs/s1.m3u8
|
||||
蕾丝解禁一直暗恋的表姊向我告白了,https://m1.m3u8111222333.com/H1116/p728/p728.m3u8
|
||||
以大自然背景被瘋狂抽插的少女A,https://m1.m3u8111222333.com/H0930/k012/k012.m3u8
|
||||
PansexualXPornCrush4,https://m1.m3u8111222333.com/H0215/ppc4/s1.m3u8
|
||||
連褲襪女同打架,https://m1.m3u8111222333.com/H0830/d535/d535.m3u8
|
||||
HotAndMean28,https://m1.m3u8111222333.com/G1204/hm28/s5.m3u8
|
||||
東玄京東漫之女遊蕩天堂與地獄2爆乳女肉棒搖搖欲墜的哭法,https://m1.m3u8111222333.com/H0701/a002/a002.m3u8
|
||||
LesbianBabysittersTeensLoveMILFS3,https://m1.m3u8111222333.com/G1231/blm3/s1.m3u8
|
||||
和とみやびの緊縛館,https://m1.m3u8111222333.com/H0807/b009/b009.m3u8
|
||||
绝对不会一起出现的女优们性感猫咪决斗2,https://m1.m3u8111222333.com/H0517/d498/d498.m3u8
|
||||
梦幻般的展开却完全想不起来似乎我们已经做了性爱醒来时旁边站着勃起的美女,https://m1.m3u8111222333.com/H0709/s168/s168.m3u8
|
||||
BADLESBIAN17,https://m1.m3u8111222333.com/I0206/bl17/bl17.m3u8
|
||||
ILoveTheWaySheTastes,https://m1.m3u8111222333.com/G0713/lws/is1.m3u8
|
||||
有闲到爆的超乡下清纯美少女爆发一再累积的性欲而埋头干着挥汗蕾丝性交,https://m1.m3u8111222333.com/H0326/n407/n407.m3u8
|
||||
放屁诊所由放屁癖女同性恋医生开办的医院,https://m1.m3u8111222333.com/H0527/d520/d520.m3u8
|
||||
ASIGNOFTHINGSTOCUM,https://m1.m3u8111222333.com/H1110/astc/astc.m3u8
|
||||
RUBMERIGHT,https://m1.m3u8111222333.com/H1112/rmr/rmr.m3u8
|
||||
岳母和新娘之夜,https://m1.m3u8111222333.com/H0120/j072/j072.m3u8
|
||||
紧缚监禁女同志调教没落千金的赎罪SM女同志,https://m1.m3u8111222333.com/H0703/n423/n423.m3u8
|
||||
TransTitans2,https://m1.m3u8111222333.com/H1017/tt2/tt2.m3u8
|
||||
MistressTatjanaSoPrettyAndSoCruel,https://m1.m3u8111222333.com/G0815/mtpc/s1.m3u8
|
||||
Trans-Active19,https://m1.m3u8111222333.com/H1011/ta19/ta19.m3u8
|
||||
儿1,http://m6z.cn/5HcxJL
|
||||
七2,http://b.mtw.so/635drk
|
||||
最好的變性人反向肛交扭曲她的屁眼和性習慣,https://m1.m3u8111222333.com/I0424/h016/h016.m3u8
|
||||
TransFld,https://m1.m3u8111222333.com/G0510/tf/tf1.m3u8
|
||||
变性人性塔公寓梅爱色,https://m1.m3u8111222333.com/I0205/h014/h014.m3u8
|
||||
激情的脉搏,https://m1.m3u8111222333.com/I0509/03ms/03ms.m3u8
|
||||
女友的肉棒比我大,https://m1.m3u8111222333.com/H0513/s137/s137.m3u8
|
||||
小区太太蕾丝填埋身体寂寞的人是比自己小但是有着包容力和大奶的同际女性,https://m1.m3u8111222333.com/H0319/n406/n406.m3u8
|
||||
邻居蕾丝搬新家的隔壁是破麻巨乳前女友,https://m1.m3u8111222333.com/H0122/g557/g557.m3u8
|
||||
CHEERTRYOUTS,https://m1.m3u8111222333.com/H1006/ct/ct.m3u8
|
||||
两个人想被攻击也想攻击逆转的真实女同志性爱纪录,https://m1.m3u8111222333.com/H0521/n419/n419.m3u8
|
||||
睡醒就马上再来一发的礼拜天一直被闺蜜强奸的女同志轮回性爱,https://m1.m3u8111222333.com/H0621/n421/n421.m3u8
|
||||
PussyEatingGrannies,https://m1.m3u8111222333.com/G0524/peg/peg.m3u8
|
||||
和远距离恋爱中的女友久违见面相爱的那三天,https://m1.m3u8111222333.com/H0222/s107/s107.m3u8
|
||||
TRANSCENDING,https://m1.m3u8111222333.com/I0223/tnei/tnei.m3u8
|
||||
一夜蕾丝在旅行地晚绽放的醉后狂乱,https://m1.m3u8111222333.com/G1210/g554/g554.m3u8
|
||||
想要被口水跟淫汁淹没充满女性的口水跟潮汁跟鲍鱼汁女性各式各样的淫荡汁,https://m1.m3u8111222333.com/H0525/n420/n420.m3u8
|
||||
热辣女孩专业服侍黑人,https://m1.m3u8111222333.com/I0508/15av/15av.m3u8
|
||||
火锅,http://m6z.cn/5HcxJL
|
||||
奴隷淫蕩舞台調教的日子,https://m1.m3u8111222333.com/G0711/k053/k053.m3u8
|
||||
TransAm,https://m1.m3u8111222333.com/H1101/ta/ta.m3u8
|
||||
金发女郎偷情黑人,https://m1.m3u8111222333.com/I0505/13cw/13cw.m3u8
|
||||
特警判官,https://m1.m3u8111222333.com/I0503/04en/04en.m3u8
|
||||
我一直都喜欢你百合疗愈女同志温泉旅行,https://m1.m3u8111222333.com/H1215/n452/n452.m3u8
|
||||
女老师同志母狗奴隶恶魔般的美少女被淫荡微笑调教,https://m1.m3u8111222333.com/H1210/n450/n450.m3u8
|
||||
男の娘完全メス化これくしょん27,https://m1.m3u8111222333.com/H0215/y130/y130.m3u8
|
||||
圣水痴女女同志美少女尿尿湿答答互相高潮升天三人组性爱,https://m1.m3u8111222333.com/H0513/n415/n415.m3u8
|
||||
制服少女女同志痴汉性感身材被猥亵的技术给敏感开发了,https://m1.m3u8111222333.com/H0417/n413/n413.m3u8
|
||||
荡妇挑逗变性人的阴茎把它的挑逗到射精,https://m1.m3u8111222333.com/H1028/h007/h007.m3u8
|
||||
扶他那裡融合,https://m1.m3u8111222333.com/H0605/d522/d522.m3u8
|
||||
爸爸活跃美少女酷刑俱乐部残酷刑罚爆炸处决,https://m1.m3u8111222333.com/H0920/k001/k001.m3u8
|
||||
TransInternationalStuckInLA,https://m1.m3u8111222333.com/G0525/tisi/tisi.m3u8
|
||||
大屁股双菊花鲍鱼跟鲍鱼的淫荡女同志性爱,https://m1.m3u8111222333.com/H1230/n457/n457.m3u8
|
||||
第一次跟女生打炮解禁女同志,https://m1.m3u8111222333.com/H0715/b424/b424.m3u8
|
||||
TransPoolParty3,https://m1.m3u8111222333.com/G0417/tpp3/tpp3.m3u8
|
||||
肛门疯狂,https://m1.m3u8111222333.com/I0509/07ss/07ss.m3u8
|
||||
失貞文書23歲的變性人,https://m1.m3u8111222333.com/H1119/d404/d404.m3u8
|
||||
搞到射了,https://m1.m3u8111222333.com/I0505/06sa/06sa.m3u8
|
||||
棉花糖公主,https://m1.m3u8111222333.com/I0502/18ja/18ja.m3u8
|
||||
雙人男之娘×夢的初共演第三性蕾絲邊,https://m1.m3u8111222333.com/H0729/h002/h002.m3u8
|
||||
让我很开心,https://m1.m3u8111222333.com/I0506/24va/24va.m3u8
|
||||
LetsGoBi10,https://m1.m3u8111222333.com/G0514/gb10/gb10.m3u8
|
||||
终极JOI自慰指导SP2,https://m1.m3u8111222333.com/I0109/d561/d561.m3u8
|
||||
和我的摄像师一起摇晃船,https://m1.m3u8111222333.com/I0427/05br/05br.m3u8
|
||||
把禁欲一个月的淫荡女优关在同一个房间,https://m1.m3u8111222333.com/H0309/n410/n410.m3u8
|
||||
以前一起玩的男性朋友久违重逢时竟变成可爱的变性人,https://m1.m3u8111222333.com/H0830/s192/s192.m3u8
|
||||
诱人的节奏,https://m1.m3u8111222333.com/I0508/31jj/31jj.m3u8
|
||||
可爱女人在泳池边被操,https://m1.m3u8111222333.com/I0429/08rr/08rr.m3u8
|
||||
業餘Gachi女同性戀水木菜的AV女演員狩獵,https://m1.m3u8111222333.com/H0430/d518/d518.m3u8
|
||||
甜甜的唾液交换成为了女同志的F罩杯美巨乳内衣模特儿我想成为模特儿,https://m1.m3u8111222333.com/H0429/n418/n418.m3u8
|
||||
娇小的女孩屈服于大肉棒,https://m1.m3u8111222333.com/I0502/08cl/08cl.m3u8
|
||||
和傲慢应届新进后辈错过末班车的同房投宿蕾丝,https://m1.m3u8111222333.com/H0329/n411/n411.m3u8
|
||||
羞耻洗脑我被变成淫荡女孩8,https://m1.m3u8111222333.com/H0202/d502/d502.m3u8
|
||||
突然咲いた恋とレズベロキスクショ百合記録,https://m1.m3u8111222333.com/G1103/m055/m055.m3u8
|
||||
PLAY2,https://m1.m3u8111222333.com/H0823/pv2/pv2.m3u8
|
||||
疯狂肛交私人表演,https://m1.m3u8111222333.com/I0506/14at/14at.m3u8
|
||||
ペニバト,https://m1.m3u8111222333.com/H0419/d516/d516.m3u8
|
||||
肛虐师培训实录3,https://m1.m3u8111222333.com/H0325/d076/d076.m3u8
|
||||
美麗的變性人首次亮相,https://m1.m3u8111222333.com/H0421/m051/m051.m3u8
|
||||
Transgressive12,https://m1.m3u8111222333.com/H1119/t12/t12.m3u8
|
||||
对欲望疯狂的巨乳人妻的秘密沉溺的巨乳紧贴蕾丝,https://m1.m3u8111222333.com/H0411/n417/n417.m3u8
|
||||
雌性器开発NH诊疗所,https://m1.m3u8111222333.com/H0421/s126/s126.m3u8
|
||||
冒着风险为了两条黑肉棒,https://m1.m3u8111222333.com/I0426/03pb/03pb.m3u8
|
||||
跟学生时期的恋人巧遇把消失的时间补回来陷入在不伦性爱的爱人女同志,https://m1.m3u8111222333.com/H0726/n428/n428.m3u8
|
||||
爱的剪影,https://m1.m3u8111222333.com/I0423/20lv/20lv.m3u8
|
||||
热情肛交四人组,https://m1.m3u8111222333.com/I0424/07ms/07ms.m3u8
|
||||
豪客只有做了才能赢,https://m1.m3u8111222333.com/I0503/19am/19am.m3u8
|
||||
让人妻成为俘虏的点到为止淫语蕾丝,https://m1.m3u8111222333.com/G0927/n392/n392.m3u8
|
||||
TransSlumberParty,https://m1.m3u8111222333.com/I0408/tsp/tsp.m3u8
|
||||
菊花束縛XXVII鐵鏈菊花拷問,https://m1.m3u8111222333.com/G0723/g030/g030.m3u8
|
||||
CRAVINGS,https://m1.m3u8111222333.com/H0830/css/css.m3u8
|
||||
LesbianSeductions78,https://m1.m3u8111222333.com/I0414/ls78/ls78.m3u8
|
||||
初吻是甜蜜的恋爱滋味同学蕾丝,https://m1.m3u8111222333.com/H0305/n409/n409.m3u8
|
||||
所有性交动作来一遍,https://m1.m3u8111222333.com/I0421/30lp/30lp.m3u8
|
||||
跟最完美的爱人白天女同志性爱,https://m1.m3u8111222333.com/H0228/n408/n408.m3u8
|
||||
把她的小洞伸了出来,https://m1.m3u8111222333.com/I0427/09cc/09cc.m3u8
|
||||
鮑魚工具之性愛牢房,https://m1.m3u8111222333.com/G0414/h380/h380.m3u8
|
||||
点亮了我,https://m1.m3u8111222333.com/I0430/27fs/27fs.m3u8
|
||||
看起来这样但我有个小弟弟,https://m1.m3u8111222333.com/H0517/d269/d269.m3u8
|
||||
儿时玩伴好友变成人妖了,https://m1.m3u8111222333.com/G0927/s057/s057.m3u8
|
||||
让她的小屁股被狠狠地操,https://m1.m3u8111222333.com/I0415/26rm/26rm.m3u8
|
||||
娇小的学生渴望教授的鸡巴,https://m1.m3u8111222333.com/I0417/24ct/24ct.m3u8
|
||||
@@ -0,0 +1,279 @@
|
||||
|
||||
{
|
||||
|
||||
"spider": "./jar/xyqxbpq.jar",
|
||||
"lives": [{
|
||||
"name": "live2",
|
||||
"type": 0,
|
||||
"url": "https://github.catvod.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/refs/heads/main/wyykFL/txt/live2.txt",
|
||||
"epg": "http://epg.112114.xyz/?ch={name}&date={date}",
|
||||
"logo": "https://epg.112114.xyz/logo/{name}.png"
|
||||
}],
|
||||
|
||||
"sites": [
|
||||
|
||||
{
|
||||
"key": "csp_Live2Vod_2",
|
||||
"name": "┃🍓网络电视┃",
|
||||
"type": 3,
|
||||
"api": "./lib/直播vod.js",
|
||||
"jar": "./jar/candymuj.jar",
|
||||
"searchable": 0,
|
||||
"quickSearch": 0,
|
||||
"filterable": 0,
|
||||
"ext":"./lib/直播.json"
|
||||
},
|
||||
{
|
||||
"key": "XMVideo",
|
||||
"name": "🔞熊猫视频",
|
||||
"type": 3,
|
||||
"api": "csp_XMVideo",
|
||||
"searchable": 1,
|
||||
"filterable": 1,
|
||||
"jar": "./jar/182.jar"
|
||||
},
|
||||
{
|
||||
"key": "大奶子",
|
||||
"name": "🔞大奶子资源",
|
||||
"type": 1,
|
||||
"api": "https://apidanaizi.com/api.php/provide/vod",
|
||||
"searchable": 1,
|
||||
"style": {
|
||||
"type": "rect",
|
||||
"ratio": 1.33
|
||||
},
|
||||
"changeable": 1,
|
||||
"categories": ["精品推荐","国产主播","国产乱伦","自拍偷拍","制服丝袜","网曝事件","传媒探花","清纯学生","A V 解说","淫妻作乐","港台辣妹","足浴撩妹","反差母狗","A I 换脸","V R 视角","重口性癖","制服诱惑","丝袜美腿","中文字幕","无码流出","多人群交","凌辱快感","角色剧情","强奸乱伦","韩国三级","欧美激情","人妻熟女","主奴调教","动漫卡通","变性伪娘","女同性恋","野外露出"
|
||||
]
|
||||
},
|
||||
{
|
||||
"key":"csp_XBPQ_高清SEX国产",
|
||||
"name":"🔞高清SEX国产",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"jar": "./jar/xyqxbpq.jar",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","链接":"href=\"&&\"[替换:voddetail>>v#.html]","编码": "UTF-8","直接播放":"1","搜索url":"https://day-egg-milk.sexav-102.com/s/?wd={wd}","主页url":"https://day-egg-milk.sexav-102.com/ssss","分类url":"https://day-egg-milk.sexav-102.com/t/{cateId}-{catePg}/","分类":"国产视频$163#国产传媒$227#日韩仓库$1#国产剧情$114#网曝事件$5#女优专区$89#番号区$225#必射精选$18","类型":"国产视频$163#国产精品$17#网曝黑料$232#主播大秀$236#国产自拍$48#抖阴视频$231#AV解说$233||综合传媒$227#麻豆合集$38#葫芦影业$109#天美传媒$111#果冻传媒$112#91制片厂$131#蜜桃传媒$113||日本有码$1#丝袜美腿$36#绝美少女$53#日本口爆$58#萝莉少女$234#强奸乱伦$6#日本巨乳$7#制服诱惑$9||精东影业$114#皇家华人$115#SWAG$116#兔子先生$120#大象传媒$125#糖心VLOG$128#星空传媒$130||日本无码$5#人妻熟女$10#日本调教$11#日本出轨$12#中文字幕$13#日本素人$16#巨乳无码$32#制服无码$35||波多野结衣$89#三上悠亚$87#葵司$90#桃乃木香奈$93#松本一香$103#篠田優$205#川上奈奈美$215||综合号$225#200GANA$142#259LUXU$146#300MIUM$143#300MAAN$149#MIAA$190#SSIS$191#STARS$186||空"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key":"黑料资源",
|
||||
"name":"🔞黑料资源",
|
||||
"type":1,
|
||||
"api":"https://www.heiliaozyapi.com/api.php/provide/vod/?ac=list",
|
||||
"searchable":1,
|
||||
"quickSearch":1
|
||||
} ,
|
||||
{
|
||||
"key":"*老鸭2资源",
|
||||
"name":"🔞老鸭资源",
|
||||
"type":1,
|
||||
"api":"https://lbapi9.com/api.php/provide/vod",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1,
|
||||
"filterable": 0
|
||||
},
|
||||
{"key":"乐播资源",
|
||||
"name":"🔞乐播资源",
|
||||
"type":1,
|
||||
"api":"https://lbapi9.com/api.php/provide/vod/",
|
||||
"searchable":1,
|
||||
"quickSearch":1
|
||||
} ,
|
||||
{
|
||||
"key": "hipy_js_36直播[密]",
|
||||
"name": "🔞 36直播",
|
||||
"type": 3,
|
||||
"api":"./drpy_libs/drpy2.min.js",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1,
|
||||
"filterable": 1,
|
||||
"order_num": 0,
|
||||
"ext": "./drpy_js/36直播[密].js"
|
||||
},
|
||||
|
||||
{
|
||||
"key":"csp_XBPQ_猫娘动漫乐园",
|
||||
"name":"🔞猫娘动漫",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","":"","搜索url":"https://w0e--y4znt.jmaoniangdongman8.com/vodsearch/-------------/?wd={wd}","主页url":"https://w0e--y4znt.jmaoniangdongman8.com/topic/","分类url":"https://w0e--y4znt.jmaoniangdongman8.com/vodshow/{cateId}--{by}------{catePg}---/","分类":"动漫乐园$20#老司机动漫$110#猫娘乐园$21#TOP300$https://w0e--y4znt.jmaoniangdongman8.com/topic/","类型":"中字动漫$61#激情动漫$33#鬼父$178#舰娘$177#初犬2$188#性奴$181#奸染$212#强奸$223#恋骑士$176#対魔忍$186#NTR$197#放课后$206#姬骑士$210#渐进曲$213#牝教师$222#思春期$227#便利店$231#母子相奸$172#人妻诱惑$170#扶养幼女$169||透明人间$230#毁灭交响曲$191#痴汉十人队$190#堕落女教师$183#悪の女干部$182#桜都字幕组$157#极度虐待狂$154#一次性女孩$150#漆黑的射干$143#公主的性癖$208#股人出租车$209#和姐姐乱伦$215#露妮的药房$217#轮奸俱乐部$218#凌辱餐厅店员$175#秘密温泉之旅$173#方便的性伴侣$185#课後个人授业$180#女友x三姐妹$141||奶香香動漫$22#QueenBee$186#WhiteBlue$201#PeroPero老师$198#SweetHome$200||空"}
|
||||
},
|
||||
{
|
||||
"key":"xBPQ_18j",
|
||||
"name":"🔞️18j视频",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","主页url":"https://18zg.life/vod","直接播放":"1","分类url":"https://18zg.life/t/{cateId}/by/{by}/page/{catePg}/","分类":"国产$1#日韩$2#伦理$4#欧美$3#另类$39","类型":"国产自拍$5#主播大秀$6#国产探花$7#偷窥偷拍$8#乱伦系列$9#网爆吃瓜$10#抖音风格$11#国产AV$12#福利姬$20#主播诱惑$36#侵犯系列$37||日韩自拍$13#日韩无码$14#日本字幕$15#av解说$17#换脸明星$18||欧美自拍$21#欧美字幕$22||伦理三级$29#日韩伦理$30||同性恋系列$38#变性系列$40#重口味$23"}
|
||||
},
|
||||
{
|
||||
"key": "黄色仓库",
|
||||
"name": "🔞黄色仓库",
|
||||
"type": 1,
|
||||
"api": "http://123091.xyz/api.php/provide/vod//api.php/provide/vod/",
|
||||
"categories": [
|
||||
"日本有码",
|
||||
"无码中文字幕",
|
||||
"有码中文字幕",
|
||||
"日本无码",
|
||||
"国产视频",
|
||||
"欧美高清",
|
||||
"动漫剧情",
|
||||
"骑兵破解"
|
||||
]
|
||||
},
|
||||
{
|
||||
"key":"csp_XBPQ_母乱子伦",
|
||||
"name":"🔞母乱子伦",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","直接播放":"1","搜索url":"https://www.saaaa11.xyz/123/index.php/vod/search.html?wd={wd}","主页url":"https://xssss8.xyz/123/index.php/vod/type/id/241.html","分类url":"https://xssss8.xyz/123/index.php/vod/type/id/{cateId}/page/{catePg}.html","分类":"制服诱惑$241#强奸乱伦$253#明星换脸$254#侵犯专区$256#家庭伦伦$257#SM专区$258#女同专区$259#AV解说$247#欧美专区$248#网曝门事件$249#中文字幕$240#无码专区$241#VR专区$242#明星淫梦$244#日韩专区$245#伦理三级$239#性感主播$238#国产视频$234#精品动漫$246#传媒视频$236#国产乱伦$237#约炮探花$265#极品学妹$266#乱伦极品$267#人妻极品$269#制服极品$270#独家调教$271"}
|
||||
},
|
||||
{
|
||||
"key":"csp_XBPQ_成人影院",
|
||||
"name":"🔞成人影院",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","搜索url":"https://www.qvvv15.xyz/123/index.php/vod/search.html?wd={wd}","":"","主页url":"https://www.qvvv15.xyz/123/index.php/label/new.html","分类url":"https://www.qvvv15.xyz/123/index.php/vod/type/id/{cateId}/page/{catePg}.html","分类":"偷拍偷窥$252#强奸乱伦$253#明星换脸$254#SM专区$258#女同专区$259#AV解说$247#欧美专区$248#网曝门事件$249#中文字幕$240#无码专区$241#VR专区$242#日韩专区$245#伦理三级$239#性感主播$238#国产视频$234#精品动漫$246#传媒视频$236#抖阴短片$263#萝莉少女$265#极品学妹$266#乱伦极品$267#调教门$268#制服门$269#人妻门$270#强奸黑料$271#出轨中文$272#巨乳少妇$274"}
|
||||
},
|
||||
{
|
||||
"key": "滴滴资源",
|
||||
"name": "🔞滴滴资源",
|
||||
"type": 1,
|
||||
"api": "https://api.ddapi.cc/api.php/provide/vod/",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1,
|
||||
"filterable": 1
|
||||
},
|
||||
{
|
||||
"key": "樂吧资源",
|
||||
"name": "🔞樂吧资源",
|
||||
"type": 1,
|
||||
"api": "http://lbapiby.com/api.php/provide/vod",
|
||||
"playerUrl": ""
|
||||
},
|
||||
{
|
||||
"key": "JKUN资源",
|
||||
"name": "🔞JKUN资源",
|
||||
"type": 1,
|
||||
"api": "https://jkunzyapi.com/api.php/provide/vod",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1
|
||||
},
|
||||
{
|
||||
"key":"csp_XBPQ_PWXXX视频",
|
||||
"name":"🔞PWXXX视频",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","直接播放":"1","搜索url":"https://pwxxx.pwxxx33.fun/pwxxx/vod/search.html?wd={wd}","主页url":"https://pwxxx.pwxxx33.fun/pwxxx/","分类url":"https://pwxxx.pwxxx33.fun/pwxxx/vod/type/id/{cateId}/page/{catePg}.html","分类":"国产大区$1#日韩大区$2#欧美大区$3#其它视频$4","类型":"国产精品$13#网曝吃瓜$6#自拍偷拍$7#传媒出品$8#网红主播$9#大神探花$10#抖阴视频$11#国产其它$12||日韩精品$14#日韩无码$15#日韩有码$16#中文字幕$20#萝莉少女$21#人妻熟妇$22#韩国主播$23#日韩其它$24||欧美精品$5#欧美无码$25#欧美另类$26#欧美其它$27||AI换脸$28#AV解说$29#三级伦理$30#成人动漫$31"}
|
||||
},
|
||||
{
|
||||
"key":"csp_XBPQ_小野猫",
|
||||
"name":"🔞小野猫视频",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","直接播放":"1","链接":"href=\"&&\"[替换:voddetail>>vodplay#.html>>-1-1.html]","搜索url":"https://dcx-drdjrara.wildcat-x02.sbs/vodsearch/-------------/?wd={wd}","主页url":"https://dcx-drdjrara.wildcat-x02.sbs/vodshow/24-----------/","分类url":"https://dcx-drdjrara.wildcat-x02.sbs/vodshow/{cateId}--{by}------{catePg}---/","分类":"奥斯卡资源$20#黄瓜资源$110#JKUN资源$21#奶香香资源$22#siwa资源$23","类型":"国产视频$24#中文字幕$25#国产传媒$26#日本有码$27#日本无码$28#欧美无码$29#强奸乱伦$30#制服诱惑$31#国产主播$32#激情动漫$33#明星换脸$34#抖阴视频$35#女优明星$36#网曝黑料$40#伦理三级$41#AV解说$42#SM调教$43#萝莉少女$45#极品媚黑$46#同性恋$47||国产精品$111#绿帽淫妻$112#国产探花$113#美女主播$114#明星淫梦$115#TS人妖$116#麻豆传媒$117#兔子先生$118#天美传媒$119#SA国际传媒$120#性世界$121#扣扣传媒$122#精东影业$123#蜜桃传媒$124#网曝门事件$125#杏吧传媒$139#果冻传媒$126#星空无限$127#葫芦影业$128#起点传媒$129||国产传媒$66#中文字幕$53#日本有码$54#日本无码$55#AV解说$56#cosplay$57#黑丝诱惑$58#SWAG$59#自拍偷拍$60#激情动漫$61#网红主播$62#探花系列$63#三级伦理$64#VR视角$65#素人搭讪$67#门事件$68||国产自拍$72#主播诱惑$73#探花约炮$74#偷拍偷窥$75#网曝吃瓜$76#抖阴短片$77#传媒剧情$78#日韩无码$80#中文字幕$81#AV解说$82#换脸明星$83#强奸乱伦$84#女优明星$85#欧美激情$86#重口激情$87#VR视角$92#剧情动漫$89#SM调教$90#同性恋$91||亚洲无码$93#亚洲有码$94#欧美情色$95#中文字幕$96#动漫卡通$97#美女主播$98#人妻熟女$99#日韩伦理$101#国产自拍$102#精选口爆$103#同性同志$104#重口味$105#91大神$107#AV解说$108||空||空"}
|
||||
},
|
||||
{
|
||||
"key":"csp_XBPQ_肉欲猫视频",
|
||||
"name":"🔞肉欲猫视频",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","直接播放":"1","":"","搜索url":"https://zflmdh11fi.rumao-font.cyou/index.php/vodsearch/-------------.html?wd={wd}","主页url":"https://zflmdh11fi.rumao-font.cyou/","分类url":"https://zflmdh11fi.rumao-font.cyou/vodshow/{cateId}--{by}---{letter}---{catePg}---{year}.html","分类":"国产$1#日本$2#欧美$5#动画视频$6","类型":"国产传媒$160#国产精品$10#精品三级$11#主播大秀$12#抖阴视频$13#国模私拍$14#颜射瞬间$15#女神学生$16#美熟少妇$17#娇妻素人$18#空姐模特$19#国产乱伦$20#AI专题$26#自慰群交$21#野合车震$22#职场同事$23#国产名人$24#网曝门事件$25#偷拍自拍$57#北京天使$119||中文字幕$9#骑兵有码$27#步兵无码$28#制服师生$50#强奸乱伦$51#人妻熟女$53#三级剧情$55#丝袜美腿$56#亚洲情色$58||欧美性爱$29#性爱音乐视频$93#MomsTeachSex$95#男同$32#女同$33#FakeTaxi$83#Barzzers$87#WowGirls$117#FamilyStrokes$116#人兽$30#人妖$31||成人漫画$60#卡通动漫$49"}
|
||||
},
|
||||
{
|
||||
"key":"csp_XBPQ_WakuWaku",
|
||||
"name":"🔞WakuWaku",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","链接":"href=\"&&\"[替换:voddetail>>v]", "直接播放":"1","搜索url":"https://b9t9a-61362-sz0803.wakuwakutvww3.cfd/s/?wd={wd}","主页url":"https://b9t9a-61362-sz0803.wakuwakutvww3.cfd/heartbeat","分类url":"https://b9t9a-61362-sz0803.wakuwakutvww3.cfd/t/{cateId}-{catePg}/","分类":"国产$20#日本有码$21#传媒系列$117#探花系列$153#上头黑料$155#令人上头$179#小清新$159#欧美$23#伦理$25#另类$41#","类型":"国产精品$26#国产自拍$29#国产剧情$27#国产偷拍$30#国产女奴$81#国产主播$35#国模私拍$85||空||空||空||空||空||空||空||空||空||空||空"}
|
||||
},
|
||||
{
|
||||
"key":"乱伦群视频",
|
||||
"name":"🔞乱伦群视频",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"jar": "./jar/xBPQ.jar",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"编码": "UTF-8","请求头": "User-Agent@Mozilla/5.0 (Linux;; Android 12;; TAS-AN00 Build/HUAWEITAS-AN00;; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.88 Mobile Safari/537.36","直接播放":"1","搜索url":"/llq/index.php/vod/search.html?wd={wd}","主页url":"https://web.llq6.cc/","分类url":"https://web.llq6.cc/llq/index.php/vod/show/by/{by}/id/{cateId}/page/{catePg}.html","分类":"黄瓜资源$87#老鸭资源$135#仓库资源$191#森林资源$117#奥斯卡资源$86#国产探花$97#绿帽淫妻$96#国产精品$95#国产乱伦$98#美女主播$99#明星换脸$100#香港三级$101#麻豆传媒$102#杏吧传媒$103#兔子先生$104#天美传媒$105#sa国际传媒$106#性世界$107#扣扣传媒$108#果冻传媒$109#星空无限$110#精东影业$111#葫芦影业$112#蜜桃传媒$113#起点传媒$114"}
|
||||
},
|
||||
{
|
||||
"key": "老色逼资源",
|
||||
"name": "🔞老色逼资源",
|
||||
"type": 1,
|
||||
"api": "https://apilsbzy.com/api.php/provide/vod/?ac=list",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1
|
||||
},
|
||||
{
|
||||
"key": "细胞网资源",
|
||||
"name": "🔞细胞网资源",
|
||||
"type": 1,
|
||||
"api": "https://www.xxibaozyw.com/api.php/provide/vod/?ac=list",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1
|
||||
},
|
||||
{
|
||||
"key": "无水印采集",
|
||||
"name": "🔞港台三级",
|
||||
"type": 1,
|
||||
"api": "https://api.wsyzy.net/api.php/provide/vod",
|
||||
"categories": [
|
||||
"港台三级"
|
||||
],
|
||||
"playUrl":"https://wsyzy.top/m3u8/?url="
|
||||
},
|
||||
{
|
||||
"key":"push_agent",
|
||||
"name":"💻06.19更新",
|
||||
"type":3,
|
||||
"api":"csp_PushAgent",
|
||||
"playerType":1,
|
||||
"searchable":1,
|
||||
"quickSearch":1,
|
||||
"filterable":0,
|
||||
"ext":""
|
||||
}
|
||||
],
|
||||
"parses":[
|
||||
{
|
||||
"name": "解析1",
|
||||
"type": 0,
|
||||
"url": "https://jx.m3u8.tv/jiexi/?url="
|
||||
},
|
||||
{
|
||||
"name": "解析2",
|
||||
"type": 0,
|
||||
"url": "https://t2.qlplayer.cyou/player/analysis.php?v="
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,163 @@
|
||||
|
||||
{
|
||||
|
||||
"spider": "./jar/xyqxbpq.jar",
|
||||
"lives": [{
|
||||
"name": "live2",
|
||||
"type": 0,
|
||||
"url": "https://github.catvod.com/https://raw.githubusercontent.com/aa123jg/tvbox-FL/refs/heads/main/wyykFL/txt/live2.txt",
|
||||
"epg": "http://epg.112114.xyz/?ch={name}&date={date}",
|
||||
"logo": "https://epg.112114.xyz/logo/{name}.png"
|
||||
}],
|
||||
|
||||
"sites": [
|
||||
|
||||
{
|
||||
"key": "csp_Live2Vod_2",
|
||||
"name": "┃🍓网络电视┃",
|
||||
"type": 3,
|
||||
"api": "./lib/直播vod.js",
|
||||
"jar": "./jar/candymuj.jar",
|
||||
"searchable": 0,
|
||||
"quickSearch": 0,
|
||||
"filterable": 0,
|
||||
"ext":"./lib/直播.json"
|
||||
},
|
||||
{
|
||||
"key": "XMVideo",
|
||||
"name": "🔞熊猫视频",
|
||||
"type": 3,
|
||||
"api": "csp_XMVideo",
|
||||
"searchable": 1,
|
||||
"filterable": 1,
|
||||
"jar": "./jar/182.jar"
|
||||
},
|
||||
|
||||
|
||||
{"key":"黑料资源",
|
||||
"name":"🔞黑料资源",
|
||||
"type":1,
|
||||
"api":"https://www.heiliaozyapi.com/api.php/provide/vod/?ac=list",
|
||||
"searchable":1,
|
||||
"quickSearch":1
|
||||
} ,
|
||||
{
|
||||
"key": "大奶子",
|
||||
"name": "🔞大奶子资源",
|
||||
"type": 1,
|
||||
"api": "https://apidanaizi.com/api.php/provide/vod",
|
||||
"searchable": 1,
|
||||
"style": {
|
||||
"type": "rect",
|
||||
"ratio": 1.33
|
||||
},
|
||||
"changeable": 1,
|
||||
"categories": ["精品推荐","国产主播","国产乱伦","自拍偷拍","制服丝袜","网曝事件","传媒探花","清纯学生","A V 解说","淫妻作乐","港台辣妹","足浴撩妹","反差母狗","A I 换脸","V R 视角","重口性癖","制服诱惑","丝袜美腿","中文字幕","无码流出","多人群交","凌辱快感","角色剧情","强奸乱伦","韩国三级","欧美激情","人妻熟女","主奴调教","动漫卡通","变性伪娘","女同性恋","野外露出"
|
||||
]
|
||||
},
|
||||
{
|
||||
"key":"csp_XBPQ_高清SEX国产",
|
||||
"name":"🔞高清SEX国产",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"jar": "./jar/xyqxbpq.jar",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"请求头": "User-Agent$MOBILE_UA","链接":"href=\"&&\"[替换:voddetail>>v#.html]","编码": "UTF-8","直接播放":"1","搜索url":"https://day-egg-milk.sexav-102.com/s/?wd={wd}","主页url":"https://day-egg-milk.sexav-102.com/ssss","分类url":"https://day-egg-milk.sexav-102.com/t/{cateId}-{catePg}/","分类":"国产视频$163#国产传媒$227#日韩仓库$1#国产剧情$114#网曝事件$5#女优专区$89#番号区$225#必射精选$18","类型":"国产视频$163#国产精品$17#网曝黑料$232#主播大秀$236#国产自拍$48#抖阴视频$231#AV解说$233||综合传媒$227#麻豆合集$38#葫芦影业$109#天美传媒$111#果冻传媒$112#91制片厂$131#蜜桃传媒$113||日本有码$1#丝袜美腿$36#绝美少女$53#日本口爆$58#萝莉少女$234#强奸乱伦$6#日本巨乳$7#制服诱惑$9||精东影业$114#皇家华人$115#SWAG$116#兔子先生$120#大象传媒$125#糖心VLOG$128#星空传媒$130||日本无码$5#人妻熟女$10#日本调教$11#日本出轨$12#中文字幕$13#日本素人$16#巨乳无码$32#制服无码$35||波多野结衣$89#三上悠亚$87#葵司$90#桃乃木香奈$93#松本一香$103#篠田優$205#川上奈奈美$215||综合号$225#200GANA$142#259LUXU$146#300MIUM$143#300MAAN$149#MIAA$190#SSIS$191#STARS$186||空"
|
||||
}
|
||||
},
|
||||
{
|
||||
"key":"*老鸭2资源",
|
||||
"name":"🔞老鸭资源",
|
||||
"type":1,
|
||||
"api":"https://lbapi9.com/api.php/provide/vod",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1,
|
||||
"filterable": 0
|
||||
},
|
||||
{"key":"乐播资源",
|
||||
"name":"🔞乐播资源",
|
||||
"type":1,
|
||||
"api":"https://lbapi9.com/api.php/provide/vod/",
|
||||
"searchable":1,
|
||||
"quickSearch":1
|
||||
} ,
|
||||
{
|
||||
"key": "hipy_js_36直播[密]",
|
||||
"name": "🔞36直播",
|
||||
"type": 3,
|
||||
"api":"./drpy_libs/drpy2.min.js",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1,
|
||||
"filterable": 1,
|
||||
"order_num": 0,
|
||||
"ext": "./drpy_js/36直播[密].js"
|
||||
},
|
||||
|
||||
{"key":"csp_XBPQ_猫娘动漫乐园","name":"🔞猫娘动漫乐园","type":3,"api":"csp_XBPQ","searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","":"","搜索url":"https://w0e--y4znt.jmaoniangdongman8.com/vodsearch/-------------/?wd={wd}","主页url":"https://w0e--y4znt.jmaoniangdongman8.com/topic/","分类url":"https://w0e--y4znt.jmaoniangdongman8.com/vodshow/{cateId}--{by}------{catePg}---/","分类":"动漫乐园$20#老司机动漫$110#猫娘乐园$21#TOP300$https://w0e--y4znt.jmaoniangdongman8.com/topic/","类型":"中字动漫$61#激情动漫$33#鬼父$178#舰娘$177#初犬2$188#性奴$181#奸染$212#强奸$223#恋骑士$176#対魔忍$186#NTR$197#放课后$206#姬骑士$210#渐进曲$213#牝教师$222#思春期$227#便利店$231#母子相奸$172#人妻诱惑$170#扶养幼女$169||透明人间$230#毁灭交响曲$191#痴汉十人队$190#堕落女教师$183#悪の女干部$182#桜都字幕组$157#极度虐待狂$154#一次性女孩$150#漆黑的射干$143#公主的性癖$208#股人出租车$209#和姐姐乱伦$215#露妮的药房$217#轮奸俱乐部$218#凌辱餐厅店员$175#秘密温泉之旅$173#方便的性伴侣$185#课後个人授业$180#女友x三姐妹$141||奶香香動漫$22#QueenBee$186#WhiteBlue$201#PeroPero老师$198#SweetHome$200||空"}},
|
||||
|
||||
{"key":"xBPQ_18j","name":"🔞️18j💚","type":3,"api":"csp_XBPQ","searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","主页url":"https://18zg.life/vod","直接播放":"1","分类url":"https://18zg.life/t/{cateId}/by/{by}/page/{catePg}/","分类":"国产$1#日韩$2#伦理$4#欧美$3#另类$39","类型":"国产自拍$5#主播大秀$6#国产探花$7#偷窥偷拍$8#乱伦系列$9#网爆吃瓜$10#抖音风格$11#国产AV$12#福利姬$20#主播诱惑$36#侵犯系列$37||日韩自拍$13#日韩无码$14#日本字幕$15#av解说$17#换脸明星$18||欧美自拍$21#欧美字幕$22||伦理三级$29#日韩伦理$30||同性恋系列$38#变性系列$40#重口味$23"}
|
||||
},
|
||||
{"key":"xBPQ_黄仓18","name":"🔞️黄仓18💚","type":3,"api":"csp_XBPQ","searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"搜索url":"http://789161.xyz//vodsearch/{wd}----------{pg}---.html","主页url":"http://789161.xyz/","分类url":"http://789161.xyz/vodtype/{cateId}-{catePg}.html;;zm","简介":"时间:&&<","分类":"日韩AV$1#国产系列$2#欧美$3#成人动漫$4","类型":"无码中文$8#有码中文$9#日本无码$10#日本有码$7||国产视频$15||欧美高清$21||动漫剧情$22"}
|
||||
},
|
||||
{"key":"csp_XBPQ_母乱子伦","name":"🔞母乱子伦","type":3,"api":"csp_XBPQ", "searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","直接播放":"1","搜索url":"https://www.saaaa11.xyz/123/index.php/vod/search.html?wd={wd}","主页url":"https://xssss8.xyz/123/index.php/vod/type/id/241.html","分类url":"https://xssss8.xyz/123/index.php/vod/type/id/{cateId}/page/{catePg}.html","分类":"制服诱惑$241#强奸乱伦$253#明星换脸$254#侵犯专区$256#家庭伦伦$257#SM专区$258#女同专区$259#AV解说$247#欧美专区$248#网曝门事件$249#中文字幕$240#无码专区$241#VR专区$242#明星淫梦$244#日韩专区$245#伦理三级$239#性感主播$238#国产视频$234#精品动漫$246#传媒视频$236#国产乱伦$237#约炮探花$265#极品学妹$266#乱伦极品$267#人妻极品$269#制服极品$270#独家调教$271"}},
|
||||
|
||||
{"key":"csp_XBPQ_成人影院","name":"🔞成人影院","type":3,"api":"csp_XBPQ", "searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","搜索url":"https://www.qvvv15.xyz/123/index.php/vod/search.html?wd={wd}","":"","主页url":"https://www.qvvv15.xyz/123/index.php/label/new.html","分类url":"https://www.qvvv15.xyz/123/index.php/vod/type/id/{cateId}/page/{catePg}.html","分类":"偷拍偷窥$252#强奸乱伦$253#明星换脸$254#SM专区$258#女同专区$259#AV解说$247#欧美专区$248#网曝门事件$249#中文字幕$240#无码专区$241#VR专区$242#日韩专区$245#伦理三级$239#性感主播$238#国产视频$234#精品动漫$246#传媒视频$236#抖阴短片$263#萝莉少女$265#极品学妹$266#乱伦极品$267#调教门$268#制服门$269#人妻门$270#强奸黑料$271#出轨中文$272#巨乳少妇$274"}},
|
||||
|
||||
{"key":"csp_XBPQ_PWXXX视频","name":"🔞PWXXX视频","type":3,"api":"csp_XBPQ","searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","直接播放":"1","搜索url":"https://pwxxx.pwxxx33.fun/pwxxx/vod/search.html?wd={wd}","主页url":"https://pwxxx.pwxxx33.fun/pwxxx/","分类url":"https://pwxxx.pwxxx33.fun/pwxxx/vod/type/id/{cateId}/page/{catePg}.html","分类":"国产大区$1#日韩大区$2#欧美大区$3#其它视频$4","类型":"国产精品$13#网曝吃瓜$6#自拍偷拍$7#传媒出品$8#网红主播$9#大神探花$10#抖阴视频$11#国产其它$12||日韩精品$14#日韩无码$15#日韩有码$16#中文字幕$20#萝莉少女$21#人妻熟妇$22#韩国主播$23#日韩其它$24||欧美精品$5#欧美无码$25#欧美另类$26#欧美其它$27||AI换脸$28#AV解说$29#三级伦理$30#成人动漫$31"}},
|
||||
|
||||
{"key":"csp_XBPQ_小野猫","name":"🔞小野猫","type":3,"api":"csp_XBPQ","searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","直接播放":"1","链接":"href=\"&&\"[替换:voddetail>>vodplay#.html>>-1-1.html]","搜索url":"https://dcx-drdjrara.wildcat-x02.sbs/vodsearch/-------------/?wd={wd}","主页url":"https://dcx-drdjrara.wildcat-x02.sbs/vodshow/24-----------/","分类url":"https://dcx-drdjrara.wildcat-x02.sbs/vodshow/{cateId}--{by}------{catePg}---/","分类":"奥斯卡资源$20#黄瓜资源$110#JKUN资源$21#奶香香资源$22#siwa资源$23","类型":"国产视频$24#中文字幕$25#国产传媒$26#日本有码$27#日本无码$28#欧美无码$29#强奸乱伦$30#制服诱惑$31#国产主播$32#激情动漫$33#明星换脸$34#抖阴视频$35#女优明星$36#网曝黑料$40#伦理三级$41#AV解说$42#SM调教$43#萝莉少女$45#极品媚黑$46#同性恋$47||国产精品$111#绿帽淫妻$112#国产探花$113#美女主播$114#明星淫梦$115#TS人妖$116#麻豆传媒$117#兔子先生$118#天美传媒$119#SA国际传媒$120#性世界$121#扣扣传媒$122#精东影业$123#蜜桃传媒$124#网曝门事件$125#杏吧传媒$139#果冻传媒$126#星空无限$127#葫芦影业$128#起点传媒$129||国产传媒$66#中文字幕$53#日本有码$54#日本无码$55#AV解说$56#cosplay$57#黑丝诱惑$58#SWAG$59#自拍偷拍$60#激情动漫$61#网红主播$62#探花系列$63#三级伦理$64#VR视角$65#素人搭讪$67#门事件$68||国产自拍$72#主播诱惑$73#探花约炮$74#偷拍偷窥$75#网曝吃瓜$76#抖阴短片$77#传媒剧情$78#日韩无码$80#中文字幕$81#AV解说$82#换脸明星$83#强奸乱伦$84#女优明星$85#欧美激情$86#重口激情$87#VR视角$92#剧情动漫$89#SM调教$90#同性恋$91||亚洲无码$93#亚洲有码$94#欧美情色$95#中文字幕$96#动漫卡通$97#美女主播$98#人妻熟女$99#日韩伦理$101#国产自拍$102#精选口爆$103#同性同志$104#重口味$105#91大神$107#AV解说$108||空||空"}},
|
||||
|
||||
|
||||
{"key":"csp_XBPQ_肉欲猫视频","name":"🔞肉欲猫视频","type":3,"api":"csp_XBPQ","searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","直接播放":"1","":"","搜索url":"https://zflmdh11fi.rumao-font.cyou/index.php/vodsearch/-------------.html?wd={wd}","主页url":"https://zflmdh11fi.rumao-font.cyou/","分类url":"https://zflmdh11fi.rumao-font.cyou/vodshow/{cateId}--{by}---{letter}---{catePg}---{year}.html","分类":"国产$1#日本$2#欧美$5#动画视频$6","类型":"国产传媒$160#国产精品$10#精品三级$11#主播大秀$12#抖阴视频$13#国模私拍$14#颜射瞬间$15#女神学生$16#美熟少妇$17#娇妻素人$18#空姐模特$19#国产乱伦$20#AI专题$26#自慰群交$21#野合车震$22#职场同事$23#国产名人$24#网曝门事件$25#偷拍自拍$57#北京天使$119||中文字幕$9#骑兵有码$27#步兵无码$28#制服师生$50#强奸乱伦$51#人妻熟女$53#三级剧情$55#丝袜美腿$56#亚洲情色$58||欧美性爱$29#性爱音乐视频$93#MomsTeachSex$95#男同$32#女同$33#FakeTaxi$83#Barzzers$87#WowGirls$117#FamilyStrokes$116#人兽$30#人妖$31||成人漫画$60#卡通动漫$49"}},
|
||||
|
||||
{"key":"csp_XBPQ_WakuWaku","name":"🔞WakuWaku","type":3,"api":"csp_XBPQ","searchable": 1,"quickSearch": 0,"filterable": 1,"ext":{"请求头": "User-Agent$MOBILE_UA","编码": "UTF-8","链接":"href=\"&&\"[替换:voddetail>>v]", "直接播放":"1","搜索url":"https://b9t9a-61362-sz0803.wakuwakutvww3.cfd/s/?wd={wd}","主页url":"https://b9t9a-61362-sz0803.wakuwakutvww3.cfd/heartbeat","分类url":"https://b9t9a-61362-sz0803.wakuwakutvww3.cfd/t/{cateId}-{catePg}/","分类":"国产$20#日本有码$21#传媒系列$117#探花系列$153#上头黑料$155#令人上头$179#小清新$159#欧美$23#伦理$25#另类$41#","类型":"国产精品$26#国产自拍$29#国产剧情$27#国产偷拍$30#国产女奴$81#国产主播$35#国模私拍$85||空||空||空||空||空||空||空||空||空||空||空"}
|
||||
},
|
||||
{
|
||||
"key":"乱伦群视频",
|
||||
"name":"🔞乱伦群视频",
|
||||
"type":3,
|
||||
"api":"csp_XBPQ",
|
||||
"jar": "./jar/xBPQ.jar",
|
||||
"searchable": 1,
|
||||
"quickSearch": 0,
|
||||
"filterable": 1,
|
||||
"ext":{"编码": "UTF-8","请求头": "User-Agent@Mozilla/5.0 (Linux;; Android 12;; TAS-AN00 Build/HUAWEITAS-AN00;; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/99.0.4844.88 Mobile Safari/537.36","直接播放":"1","搜索url":"/llq/index.php/vod/search.html?wd={wd}","主页url":"https://web.llq6.cc/","分类url":"https://web.llq6.cc/llq/index.php/vod/show/by/{by}/id/{cateId}/page/{catePg}.html","分类":"黄瓜资源$87#老鸭资源$135#仓库资源$191#森林资源$117#奥斯卡资源$86#国产探花$97#绿帽淫妻$96#国产精品$95#国产乱伦$98#美女主播$99#明星换脸$100#香港三级$101#麻豆传媒$102#杏吧传媒$103#兔子先生$104#天美传媒$105#sa国际传媒$106#性世界$107#扣扣传媒$108#果冻传媒$109#星空无限$110#精东影业$111#葫芦影业$112#蜜桃传媒$113#起点传媒$114"}
|
||||
},
|
||||
|
||||
{
|
||||
"key": "滴滴资源",
|
||||
"name": "🔞滴滴资源",
|
||||
"type": 1,
|
||||
"api": "https://api.ddapi.cc/api.php/provide/vod/",
|
||||
"searchable": 1,
|
||||
"quickSearch": 1,
|
||||
"filterable": 1
|
||||
},
|
||||
{
|
||||
"key":"push_agent",
|
||||
"name":"💻04.19更新",
|
||||
"type":3,
|
||||
"api":"csp_PushAgent",
|
||||
"playerType":1,
|
||||
"searchable":1,
|
||||
"quickSearch":1,
|
||||
"filterable":0,
|
||||
"ext":""
|
||||
}
|
||||
],
|
||||
"parses":[
|
||||
{
|
||||
"name": "解析1",
|
||||
"type": 0,
|
||||
"url": "https://jx.m3u8.tv/jiexi/?url="
|
||||
},
|
||||
{
|
||||
"name": "解析2",
|
||||
"type": 0,
|
||||
"url": "https://t2.qlplayer.cyou/player/analysis.php?v="
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user