/******/ (function(modules) { // webpackBootstrap /******/ // The module cache /******/ var installedModules = {}; /******/ /******/ // The require function /******/ function __webpack_require__(moduleId) { /******/ /******/ // Check if module is in cache /******/ if(installedModules[moduleId]) { /******/ return installedModules[moduleId].exports; /******/ } /******/ // Create a new module (and put it into the cache) /******/ var module = installedModules[moduleId] = { /******/ i: moduleId, /******/ l: false, /******/ exports: {} /******/ }; /******/ /******/ // Execute the module function /******/ modules[moduleId].call(module.exports, module, module.exports, __webpack_require__); /******/ /******/ // Flag the module as loaded /******/ module.l = true; /******/ /******/ // Return the exports of the module /******/ return module.exports; /******/ } /******/ /******/ /******/ // expose the modules object (__webpack_modules__) /******/ __webpack_require__.m = modules; /******/ /******/ // expose the module cache /******/ __webpack_require__.c = installedModules; /******/ /******/ // define getter function for harmony exports /******/ __webpack_require__.d = function(exports, name, getter) { /******/ if(!__webpack_require__.o(exports, name)) { /******/ Object.defineProperty(exports, name, { /******/ configurable: false, /******/ enumerable: true, /******/ get: getter /******/ }); /******/ } /******/ }; /******/ /******/ // getDefaultExport function for compatibility with non-harmony modules /******/ __webpack_require__.n = function(module) { /******/ var getter = module && module.__esModule ? /******/ function getDefault() { return module['default']; } : /******/ function getModuleExports() { return module; }; /******/ __webpack_require__.d(getter, 'a', getter); /******/ return getter; /******/ }; /******/ /******/ // Object.prototype.hasOwnProperty.call /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); }; /******/ /******/ // __webpack_public_path__ /******/ __webpack_require__.p = ""; /******/ /******/ // Load entry module and return exports /******/ return __webpack_require__(__webpack_require__.s = 44); /******/ }) /************************************************************************/ /******/ ({ /***/ 0: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.canDefineProperty = void 0; function canDefineProperty(prop, obj) { if (obj === void 0) { obj = window; } var descriptor = null; if ('getOwnPropertyDescriptor' in Object) { descriptor = Object.getOwnPropertyDescriptor(obj, prop); } return !descriptor || descriptor.configurable; } exports.canDefineProperty = canDefineProperty; /***/ }), /***/ 1: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); __webpack_require__(2); __webpack_require__(3); /***/ }), /***/ 2: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var polyfillHelper_1 = __webpack_require__(0); if ('document' in self) { if (!('classList' in document.createElement('_')) || document.createElementNS && !('classList' in document.createElementNS('http://www.w3.org/2000/svg', 'g')) || window.name === 'nodejs') { (function (view) { 'use strict'; if (!('Element' in view)) { return; } var classListProp = 'classList', protoProp = 'prototype', elemCtrProto = view['Element'][protoProp], objCtr = Object, strTrim = String[protoProp].trim || function () { return this.replace(/^\s+|\s+$/g, ''); }, arrIndexOf = Array[protoProp].indexOf || function (item) { var i = 0; var len = this.length; for (; i < len; i++) { if (i in this && this[i] === item) { return i; } } return -1; }, DOMEx = function (type, message) { this.name = type; this.code = DOMException[type]; this.message = message; }, checkTokenAndGetIndex = function (classList, token) { if (token === '') { throw new DOMEx('SYNTAX_ERR', 'The token must not be empty.'); } if (/\s/.test(token)) { throw new DOMEx('INVALID_CHARACTER_ERR', 'The token must not contain space characters.'); } return arrIndexOf.call(classList, token); }, ClassList = function (elem) { var trimmedClasses = strTrim.call(elem.getAttribute('class') || ''), classes = trimmedClasses ? trimmedClasses.split(/\s+/) : [], len = classes.length; var i = 0; for (; i < len; i++) { this.push(classes[i]); } this._updateClassName = function () { elem.setAttribute('class', this.toString()); }; }, classListProto = ClassList[protoProp] = [], classListGetter = function () { return new ClassList(this); }; DOMEx[protoProp] = Error[protoProp]; classListProto['item'] = function (i) { return this[i] || null; }; classListProto['contains'] = function (token) { return !!~checkTokenAndGetIndex(this, token + ''); }; classListProto['add'] = function () { var tokens = []; for (var _i = 0; _i < arguments.length; _i++) { tokens[_i] = arguments[_i]; } var l = tokens.length; var i = 0, token, updated = false; do { token = tokens[i] + ''; if (!~checkTokenAndGetIndex(this, token)) { this.push(token); updated = true; } } while (++i < l); if (updated) { this._updateClassName(); } }; classListProto['remove'] = function () { var tokens = []; for (var _i = 0; _i < arguments.length; _i++) { tokens[_i] = arguments[_i]; } var l = tokens.length; var i = 0, token, updated = false, index; do { token = tokens[i] + ''; index = checkTokenAndGetIndex(this, token); while (~index) { this.splice(index, 1); updated = true; index = checkTokenAndGetIndex(this, token); } } while (++i < l); if (updated) { this._updateClassName(); } }; classListProto['toggle'] = function (token, force) { var result = this.contains(token), method = result ? force !== true && 'remove' : force !== false && 'add'; if (method) { this[method](token); } if (force === true || force === false) { return force; } else { return !result; } }; classListProto['replace'] = function (token, replacement_token) { var index = checkTokenAndGetIndex(this, token + ''); if (~index) { this.splice(index, 1, replacement_token); this._updateClassName(); } }; classListProto.toString = function () { return this.join(' '); }; if (objCtr.defineProperty && (0, polyfillHelper_1.canDefineProperty)(classListProp, elemCtrProto)) { var classListPropDesc = { get: classListGetter, enumerable: true, configurable: true, }; try { objCtr.defineProperty(elemCtrProto, classListProp, classListPropDesc); } catch (ex) { if (ex.number === undefined || ex.number === -0x7FF5EC54) { classListPropDesc.enumerable = false; objCtr.defineProperty(elemCtrProto, classListProp, classListPropDesc); } } } else if (objCtr[protoProp]['__defineGetter__']) { elemCtrProto.__defineGetter__(classListProp, classListGetter); } }(self)); } (function () { 'use strict'; var testElement = document.createElement('_'); testElement.classList.add('c1', 'c2'); if (!testElement.classList.contains('c2') || window.name === 'nodejs') { var createMethod = function (method) { var original = DOMTokenList.prototype[method]; DOMTokenList.prototype[method] = function () { var tokens = []; for (var _i = 0; _i < arguments.length; _i++) { tokens[_i] = arguments[_i]; } var i; var len = tokens.length; for (i = 0; i < len; i++) { original.call(this, tokens[i]); } }; }; createMethod('add'); createMethod('remove'); } testElement.classList.toggle('c3', false); if (testElement.classList.contains('c3') || window.name === 'nodejs') { var _toggle_1 = DOMTokenList.prototype.toggle; DOMTokenList.prototype.toggle = function (token, force) { if (1 in arguments && !this.contains(token) === !force) { return force; } else { return _toggle_1.call(this, token); } }; } if (!('replace' in document.createElement('_').classList) || window.name === 'nodejs') { DOMTokenList.prototype['replace'] = function (token, replacement_token) { var tokens = this.toString().split(' '); var index = tokens.indexOf(token + ''); if (~index) { tokens = tokens.slice(index); this.remove.apply(this, tokens); this.add(replacement_token); this.add.apply(this, tokens.slice(1)); } }; } testElement = null; }()); } /***/ }), /***/ 3: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var polyfillHelper_1 = __webpack_require__(0); (function (arr) { arr.forEach(function (item) { if (item.hasOwnProperty('remove') || !(0, polyfillHelper_1.canDefineProperty)('remove', item)) { return; } Object.defineProperty(item, 'remove', { configurable: true, enumerable: true, writable: true, value: function remove() { this.parentNode.removeChild(this); }, }); }); })([Element.prototype, CharacterData.prototype, DocumentType.prototype]); /***/ }), /***/ 4: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.setLockCookie = exports.getCookie = void 0; function getCookie(name) { var cs = ('' + document.cookie).split('; '); for (var i = 0; i < cs.length; i++) { var cookie = cs[i].split('='); if (cookie[0] === name) return cookie[1]; } return null; } exports.getCookie = getCookie; function setLockCookie(name, value, time) { var expires = new Date(); expires.setTime(expires.getTime() + time); document.cookie = name + '=' + value + '; path=/; expires=' + expires.toGMTString() + ';'; } exports.setLockCookie = setLockCookie; /***/ }), /***/ 44: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); __webpack_require__(1); var helpers_1 = __webpack_require__(45); var ImagePlayer_1 = __webpack_require__(5); var deviceDetect_1 = __webpack_require__(46); var cookieUtils_1 = __webpack_require__(4); var sizes = { '90x90': { width: '90px', height: '90px' }, '160x160': { width: '160px', height: '160px' }, '200x200': { width: '200px', height: '200px' }, '240x240': { width: '240px', height: '240px' }, '250x250': { width: '250px', height: '250px' }, '280x280': { width: '280px', height: '280px' }, '300x300': { width: '300px', height: '300px' }, }; var ContentTypeEnum; (function (ContentTypeEnum) { ContentTypeEnum["RANDOM_CHAT"] = "random"; ContentTypeEnum["PHOTO"] = "photo"; ContentTypeEnum["SNAPSHOT"] = "snapshot"; })(ContentTypeEnum || (ContentTypeEnum = {})); if (/complete|interactive|loaded/.test(document.readyState)) { initStickyBanner(); } else { document.addEventListener('DOMContentLoaded', initStickyBanner); } function initStickyBanner() { var trackingUrl = 'https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=https://nakedlivesex.com/popular-chat%3Fclassic%3Doff%26livetab%3D'; var size = '160x160'; var showLogo = '0'; var showStatus = '1'; var contentType = 'random'; var originalPosition = { left: '95%', top: '9%' }; var modelsData = JSON.parse('{"geo_models":[],"top_models":[{"username":"BabyUnholly","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/BabyUnholly","display_name":"BabyUnholly","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d1\/155\/3ca\/d173e66aeabe28ce87c0f1d0d3dbe2d5_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d1\/155\/3ca\/d173e66aeabe28ce87c0f1d0d3dbe2d5_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d1\/155\/3ca\/d173e66aeabe28ce87c0f1d0d3dbe2d5_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d1\/155\/3ca\/d173e66aeabe28ce87c0f1d0d3dbe2d5_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d1\/155\/3ca\/xbig_lq\/ab586a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d1\/155\/3ca\/xbig_lq\/ab586a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d1\/155\/3ca\/xbig\/ab586a.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/BabyUnholly","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/BabyUnholly","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/BabyUnholly","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/BabyUnholly?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/BabyUnholly","stream_feed_url":"https:\/\/ded6443-edge12.bcvcdn.com\/hls\/stream_BabyUnholly\/playlist.m3u8","chat_topic":"Isa in the house \u2013 inked tease with sinful curves & unholy desires #bigboobs #bigass #squirt #anal #blowjob","chat_topic_ru":"Isa in the house \u2013 inked tease with sinful curves & unholy desires ","flags":["english"],"online_time":8488,"vs_url_root":"https:\/\/db.bngpt.com\/stream_BabyUnholly","chat_status":"public","marker":"nice","gender":"female","members_count":3913,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"TheFallingAngel","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/TheFallingAngel","display_name":"TheFallingAngel","display_age":"38","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/f97c06cd416ab41a1e663b1b631040a4_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/f97c06cd416ab41a1e663b1b631040a4_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/f97c06cd416ab41a1e663b1b631040a4_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/f97c06cd416ab41a1e663b1b631040a4_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig_lq\/c55d1c.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig_lq\/c55d1c.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig\/c55d1c.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/TheFallingAngel","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/TheFallingAngel","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/TheFallingAngel","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/TheFallingAngel?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/TheFallingAngel","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_TheFallingAngel\/playlist.m3u8","chat_topic":"10 tokens for lovense Naughty blonde ready for any fantasy #lovense #blonde #dildo #lush #boobs #milf ","chat_topic_ru":"10 tokens for lovense Naughty blonde ready for any fantasy #lovense #blonde #dildo #lush #boobs #milf ","flags":["romanian"],"online_time":10817,"vs_url_root":"https:\/\/db.bngpt.com\/stream_TheFallingAngel","chat_status":"public","marker":"nice","gender":"female","members_count":132,"vibratoy":false,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"LeylaRoss","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/LeylaRoss","display_name":"LeylaRoss","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b1\/02f\/252\/9c0c3bd7bd38dcd9f59e787215aadbee_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b1\/02f\/252\/9c0c3bd7bd38dcd9f59e787215aadbee_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b1\/02f\/252\/9c0c3bd7bd38dcd9f59e787215aadbee_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b1\/02f\/252\/9c0c3bd7bd38dcd9f59e787215aadbee_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig_lq\/082135.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig_lq\/082135.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig\/082135.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/LeylaRoss","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/LeylaRoss","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/LeylaRoss","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/LeylaRoss?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/LeylaRoss","stream_feed_url":"https:\/\/ded6740-edge20.bcvcdn.com\/hls\/stream_LeylaRoss\/playlist.m3u8","chat_topic":" every girl is doing the same thing , you just have to pick the better looking one #lushonMy fav pattern is 33, 99, 111 333 , 1111","chat_topic_ru":"\u0432\u0441\u0435 \u0434\u0435\u0432\u0443\u0448\u043a\u0438 \u0434\u0435\u043b\u0430\u044e\u0442 \u043e\u0434\u043d\u043e \u0438 \u0442\u043e \u0436\u0435, \u0432\u0430\u043c \u043f\u0440\u043e\u0441\u0442\u043e \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0432\u044b\u0433\u043b\u044f\u0434\u0438\u0442 \u043b\u0443\u0447\u0448\u0435 # 33 333 3333","flags":["english","russian"],"online_time":7335,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LeylaRoss","chat_status":"public","marker":"nice","gender":"female","members_count":298,"vibratoy":true,"hd_cam":false,"social_networks":["snapchat"],"is_new":0},{"username":"-AfricaYaa-","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/-AfricaYaa-","display_name":"-AfricaYa-","display_age":"30","profile_images":{"profile_image":"\/\/i.wlicdn.com\/037\/2b8\/1db\/350840fdd5a6d7b7c319db293a73c023_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/037\/2b8\/1db\/350840fdd5a6d7b7c319db293a73c023_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/037\/2b8\/1db\/350840fdd5a6d7b7c319db293a73c023_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/037\/2b8\/1db\/350840fdd5a6d7b7c319db293a73c023_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/037\/2b8\/1db\/xbig_lq\/73b3fd.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/037\/2b8\/1db\/xbig_lq\/73b3fd.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/037\/2b8\/1db\/xbig\/73b3fd.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/-AfricaYaa-","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/-AfricaYaa-","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/-AfricaYaa-","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/-AfricaYaa-?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/-AfricaYaa-","stream_feed_url":"https:\/\/ded6443-edge12.bcvcdn.com\/hls\/stream_-AfricaYaa-\/playlist.m3u8","chat_topic":"In full pvt, I will do the best with you!!I 2222 \u2013 become my President! favorite vibrations 33 100 444 777 strongest emotion 115 @total - Target, @solar - Raised, @remain - remaining until the show starts!","chat_topic_ru":"\u0412 \u043f\u043e\u043b\u043d\u043e\u043c \u043f\u0440\u0438\u0432\u0430\u0442\u0435 \u0441\u0434\u0435\u043b\u0430\u044e \u0441 \u0442\u043e\u0431\u043e\u0439 \u0432\u0441\u0435 \u0441\u0430\u043c\u043e\u0435 \u043b\u0443\u0447\u0448\u0435\u0435 2222 \u2013 \u0441\u0442\u0430\u0442\u044c \u043c\u043e\u0438\u043c \u041f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u043e\u043c! \u043b\u044e\u0431\u0438\u043c\u044b\u0435 \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u0438 33 100 444 777 \u0441\u0430\u043c\u0430\u044f \u0441\u0438\u043b\u044c\u043d\u0430\u044f 115 \u041f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0433\u043e\u043b\u0430\u044f @total - \u043e\u0431\u0440\u0430\u0442\u043d\u044b\u0439 \u043e\u0442\u0441\u0447\u0451\u0442, @sofar - \u0441\u043e\u0431\u0440\u0430\u043d\u043e, @remain - \u043e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u0434\u043e \u043d\u0430\u0447\u0430\u043b\u043e \u0448\u043e\u0443!","flags":["russian","english"],"online_time":1065,"vs_url_root":"https:\/\/db.bngpt.com\/stream_-AfricaYaa-","chat_status":"public","marker":"amazing","gender":"female","members_count":137,"vibratoy":true,"hd_cam":true,"social_networks":["instagram"],"is_new":0},{"username":"EvaFashionista","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/EvaFashionista","display_name":"EvaFashionista","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d1\/19d\/295\/91bcf26b6f1f2ec057020b530ac21c96_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d1\/19d\/295\/91bcf26b6f1f2ec057020b530ac21c96_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d1\/19d\/295\/91bcf26b6f1f2ec057020b530ac21c96_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d1\/19d\/295\/91bcf26b6f1f2ec057020b530ac21c96_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d1\/19d\/295\/xbig_lq\/7fd174.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d1\/19d\/295\/xbig_lq\/7fd174.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d1\/19d\/295\/xbig\/7fd174.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/EvaFashionista","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/EvaFashionista","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/EvaFashionista","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/EvaFashionista?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/EvaFashionista","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_EvaFashionista\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["russian","english"],"online_time":15195,"vs_url_root":"https:\/\/db.bngpt.com\/stream_EvaFashionista","chat_status":"public","marker":"nice","gender":"female","members_count":565,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"ingridblondy94","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/ingridblondy94","display_name":"Moona-One","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0aa\/315\/29d\/7b8470f3b4eb61bff879937ed7d20717_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0aa\/315\/29d\/7b8470f3b4eb61bff879937ed7d20717_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0aa\/315\/29d\/7b8470f3b4eb61bff879937ed7d20717_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0aa\/315\/29d\/7b8470f3b4eb61bff879937ed7d20717_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig_lq\/616e45.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig_lq\/616e45.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig\/616e45.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/ingridblondy94","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/ingridblondy94","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/ingridblondy94","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/ingridblondy94?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/ingridblondy94","stream_feed_url":"https:\/\/ded7126-edge65.bcvcdn.com\/hls\/stream_ingridblondy94\/playlist.m3u8","chat_topic":"Shhh, my neighbors can hear me. Hi! I'm Moona, enchantress of endless pleasure \u02d8\u06a1\u02d8 try lucky 38 and 56 the more pleasure i collect the more hardcore the show becomes! try normal dice with 40tok and super dice with 399tok @remain left till squirt","chat_topic_ru":"Hi! I'm Moona, enchantress of endless pleasure \u02d8\u06a1\u02d8 try lucky 38 and 56 the more pleasure i collect the more hardcore the show becomes! try normal dice with 40tok and super dice with 399tok @remain left till squirt","flags":["english","german"],"online_time":7541,"vs_url_root":"https:\/\/db.bngpt.com\/stream_ingridblondy94","chat_status":"public","marker":"nice","gender":"female","members_count":347,"vibratoy":true,"hd_cam":false,"social_networks":["snapchat"],"is_new":0},{"username":"Ttikhomirov","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/Ttikhomirov","display_name":"Ttikhomirov","display_age":"27","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ba\/399\/21b\/4520a1e187c11edf1e12b9b9d193c246_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ba\/399\/21b\/4520a1e187c11edf1e12b9b9d193c246_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ba\/399\/21b\/4520a1e187c11edf1e12b9b9d193c246_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ba\/399\/21b\/4520a1e187c11edf1e12b9b9d193c246_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ba\/399\/21b\/xbig_lq\/64c5bf.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ba\/399\/21b\/xbig_lq\/64c5bf.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ba\/399\/21b\/xbig\/64c5bf.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/Ttikhomirov","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/Ttikhomirov","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/Ttikhomirov","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/Ttikhomirov?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/Ttikhomirov","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_Ttikhomirov\/playlist.m3u8","chat_topic":"DFuck me hard until I squirt . @deea.official17 join in my onlyfans for a custom video free ","chat_topic_ru":"DFuck me hard until I squirt . @deea.official17 join in my onlyfans for a custom video free ","flags":["english"],"online_time":88,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Ttikhomirov","chat_status":"public","marker":"nice","gender":"female","members_count":6,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"NastiaBlack","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/NastiaBlack","display_name":"NastiaBlack","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/076\/049\/36a\/58fab34df0b0ef96b21f08a3e4a70f82_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/076\/049\/36a\/58fab34df0b0ef96b21f08a3e4a70f82_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/076\/049\/36a\/58fab34df0b0ef96b21f08a3e4a70f82_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/076\/049\/36a\/58fab34df0b0ef96b21f08a3e4a70f82_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/076\/049\/36a\/xbig_lq\/d56ae0.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/076\/049\/36a\/xbig_lq\/d56ae0.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/076\/049\/36a\/xbig\/d56ae0.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/NastiaBlack","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/NastiaBlack","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/NastiaBlack","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/NastiaBlack?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/NastiaBlack","stream_feed_url":"https:\/\/ded1163-edge30.bcvcdn.com\/hls\/stream_NastiaBlack\/playlist.m3u8","chat_topic":"Come for the Pussy stay for the Smile - (Lovense ON) #hot #natural #ass #squirt #feet Target: @total ! @sofar raised, @remain remaining until goal reached! ","chat_topic_ru":"Come for the Pussy stay for the Smile - (Lovense ON) #hot #natural #ass #squirt #feet Target: @total ! @sofar raised, @remain remaining until goal reached! ","flags":["english"],"online_time":2498,"vs_url_root":"https:\/\/db.bngpt.com\/stream_NastiaBlack","chat_status":"public","marker":"nice","gender":"female","members_count":480,"vibratoy":true,"hd_cam":true,"social_networks":["snapchat"],"is_new":0},{"username":"BlackMonro","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/BlackMonro","display_name":"DigitalAlexa","display_age":"31","profile_images":{"profile_image":"\/\/i.wlicdn.com\/03a\/005\/382\/973041f6ebf6afd71f464ebc10ffc4bd_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/03a\/005\/382\/973041f6ebf6afd71f464ebc10ffc4bd_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/03a\/005\/382\/973041f6ebf6afd71f464ebc10ffc4bd_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/03a\/005\/382\/973041f6ebf6afd71f464ebc10ffc4bd_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/03a\/005\/382\/xbig_lq\/266259.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/03a\/005\/382\/xbig_lq\/266259.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/03a\/005\/382\/xbig\/266259.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/BlackMonro","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/BlackMonro","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/BlackMonro","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/BlackMonro?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/BlackMonro","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_BlackMonro\/playlist.m3u8","chat_topic":"hi)i Sasha) ,toys in full private =)May the force come with us\u267e\ufe0f \u2668\ufe0e_\u2668\ufe0e @remain","chat_topic_ru":"\u043f\u0440\u0438\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e)\u0421\u0430\u0448\u0430 \u0431\u0443\u0434\u0435\u043c \u0437\u043d\u0430\u043a\u043e\u043c\u044b),\u0438\u0433\u0440\u0443\u0448\u043a\u0438 \u0432 \u043f\u043e\u043b\u043d\u043e\u043c \u043f\u0440\u0438\u0432\u0430\u0442\u0435=)\u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0434\u043b\u044f \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u044f @remain","flags":["russian","english"],"online_time":1925,"vs_url_root":"https:\/\/db.bngpt.com\/stream_BlackMonro","chat_status":"public","marker":"nice","gender":"female","members_count":81,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"JillStevens","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/JillStevens","display_name":"JillStevens","display_age":"35","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ca\/280\/367\/67ddc4aa296b7f1ef3a61b39f2fef45e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ca\/280\/367\/67ddc4aa296b7f1ef3a61b39f2fef45e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ca\/280\/367\/67ddc4aa296b7f1ef3a61b39f2fef45e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ca\/280\/367\/67ddc4aa296b7f1ef3a61b39f2fef45e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ca\/280\/367\/xbig_lq\/60fcca.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ca\/280\/367\/xbig_lq\/60fcca.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ca\/280\/367\/xbig\/60fcca.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/JillStevens","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/JillStevens","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/JillStevens","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/JillStevens?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/JillStevens","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_JillStevens\/playlist.m3u8","chat_topic":"@remain tokens Remove the bra","chat_topic_ru":"\u0421\u043d\u044f\u0442\u044c \u043b\u0438\u0444\u0447\u0438\u043a","flags":["english","russian"],"online_time":880,"vs_url_root":"https:\/\/db.bngpt.com\/stream_JillStevens","chat_status":"public","marker":"average","gender":"female","members_count":32,"vibratoy":true,"hd_cam":false,"social_networks":["snapchat"],"is_new":0},{"username":"YumiMori","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/YumiMori","display_name":"YumiMori","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d7\/096\/2cc\/a4b0093cea0123205ff59b8a01c3493d_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d7\/096\/2cc\/a4b0093cea0123205ff59b8a01c3493d_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d7\/096\/2cc\/a4b0093cea0123205ff59b8a01c3493d_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d7\/096\/2cc\/a4b0093cea0123205ff59b8a01c3493d_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d7\/096\/2cc\/xbig_lq\/0dc3c4.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d7\/096\/2cc\/xbig_lq\/0dc3c4.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d7\/096\/2cc\/xbig\/0dc3c4.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/YumiMori","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/YumiMori","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/YumiMori","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/YumiMori?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/YumiMori","stream_feed_url":"https:\/\/ded4144-edge-us1.bcvcdn.com\/hls\/stream_YumiMori\/playlist.m3u8","chat_topic":"wanna see me orgasm squirt","chat_topic_ru":"\u00ad\u041d\u0435 \u0437\u0430\u0431\u044b\u0432\u0430\u0439, \u0432\u0441\u0435 \u0442\u0432\u043e\u0438 \u043f\u043e\u0436\u0435\u043b\u0430\u043d\u0438\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043a\u0435\u043d\u0430\u043c\u0438!","flags":["english"],"online_time":101,"vs_url_root":"https:\/\/db.bngpt.com\/stream_YumiMori","chat_status":"public","marker":"average","gender":"female","members_count":16,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":1},{"username":"melany-suggar","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/melany-suggar","display_name":"melany-suggar","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b2\/3cb\/1c1\/b057e074c6cdeadf8ffaf617dcf60d76_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b2\/3cb\/1c1\/b057e074c6cdeadf8ffaf617dcf60d76_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b2\/3cb\/1c1\/b057e074c6cdeadf8ffaf617dcf60d76_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b2\/3cb\/1c1\/b057e074c6cdeadf8ffaf617dcf60d76_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b2\/3cb\/1c1\/xbig_lq\/64c1d1.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b2\/3cb\/1c1\/xbig_lq\/64c1d1.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b2\/3cb\/1c1\/xbig\/64c1d1.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/melany-suggar","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/melany-suggar","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/melany-suggar","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/melany-suggar?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/melany-suggar","stream_feed_url":"https:\/\/ded5281-edge-us50.bcvcdn.com\/hls\/stream_melany-suggar\/playlist.m3u8","chat_topic":"come play with me, my huge tits I DONT HAVE LIMITS. Ask me what you want #squirt #anal #naked #analballs #bigtits #hairy #cute","chat_topic_ru":"come play with me, my huge tits I DONT HAVE LIMITS. Ask me what you want #squirt #anal #naked #analballs #bigtits #hairy #cute","flags":["spanish","english"],"online_time":1981,"vs_url_root":"https:\/\/db.bngpt.com\/stream_melany-suggar","chat_status":"public","marker":null,"gender":"female","members_count":14,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"AnabellSin","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/AnabellSin","display_name":"AnabellSin","display_age":"35","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d6\/385\/245\/dd11350c183ed2c573d2168bd68aa133_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d6\/385\/245\/dd11350c183ed2c573d2168bd68aa133_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d6\/385\/245\/dd11350c183ed2c573d2168bd68aa133_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d6\/385\/245\/dd11350c183ed2c573d2168bd68aa133_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d6\/385\/245\/xbig_lq\/2697c0.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d6\/385\/245\/xbig_lq\/2697c0.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d6\/385\/245\/xbig\/2697c0.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/AnabellSin","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/AnabellSin","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/AnabellSin","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/AnabellSin?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/AnabellSin","stream_feed_url":"https:\/\/ded6895-edge4.bcvcdn.com\/hls\/stream_AnabellSin\/playlist.m3u8","chat_topic":"\u2728 New here ! Let's connect together and have a lot of fun ! \u2728 #anal #squirt #ride #new #lovense ","chat_topic_ru":"\u00ad\u041b\u044e\u0431\u0438\u0448\u044c \u0440\u0430\u0437\u0432\u0440\u0430\u0442? \u0422\u044b \u043f\u043e\u043f\u0430\u043b \u0432 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u043e\u0435 \u043c\u0435\u0441\u0442\u043e!","flags":["romanian","english"],"online_time":10660,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AnabellSin","chat_status":"public","marker":"above_average","gender":"female","members_count":50,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":1},{"username":"Rosebelle1","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/Rosebelle1","display_name":"Rosebelle1","display_age":"23","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b2\/223\/26d\/1a1e9afd2cf7f3b6274dd3ff2ee4494c_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b2\/223\/26d\/1a1e9afd2cf7f3b6274dd3ff2ee4494c_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b2\/223\/26d\/1a1e9afd2cf7f3b6274dd3ff2ee4494c_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b2\/223\/26d\/1a1e9afd2cf7f3b6274dd3ff2ee4494c_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b2\/223\/26d\/xbig_lq\/e19883.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b2\/223\/26d\/xbig_lq\/e19883.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b2\/223\/26d\/xbig\/e19883.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/Rosebelle1","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/Rosebelle1","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/Rosebelle1","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/Rosebelle1?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/Rosebelle1","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_Rosebelle1\/playlist.m3u8","chat_topic":"Dildo pussy...cum show***Join me*** @remain remaining to start \u2661 Tokens only in freechat, not message #naked #blonde #orgasm #dildo #fingering Favorite vibration 333 \u2661 ONLYFANS: onlyfans.comexotic-eden \u2661 ","chat_topic_ru":"Dildo pussy...cum show***Join me*** @remain remaining to start \u2661 Tokens only in freechat, not message #naked #blonde #orgasm #dildo #fingering FAVORITE PATTERN 333 \u2661 ONLYFANS: onlyfans.comexotic-eden \u2661 ","flags":["english"],"online_time":2857,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Rosebelle1","chat_status":"public","marker":"average","gender":"female","members_count":24,"vibratoy":true,"hd_cam":true,"social_networks":["twitter"],"is_new":0},{"username":"EvaEillish","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/EvaEillish","display_name":"EvaMillar","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bc\/380\/15b\/2413772231550554c9014141f4165409_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bc\/380\/15b\/2413772231550554c9014141f4165409_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bc\/380\/15b\/2413772231550554c9014141f4165409_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bc\/380\/15b\/2413772231550554c9014141f4165409_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bc\/380\/15b\/xbig_lq\/8f8c36.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bc\/380\/15b\/xbig_lq\/8f8c36.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bc\/380\/15b\/xbig\/8f8c36.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/EvaEillish","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/EvaEillish","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/EvaEillish","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/EvaEillish?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/EvaEillish","stream_feed_url":"https:\/\/ded6740-edge20.bcvcdn.com\/hls\/stream_EvaEillish\/playlist.m3u8","chat_topic":"@total #lushin #vibeme #brunette #dildo #bigboobs My fav vibes 25, 50, 99, 100 ","chat_topic_ru":"@total #lushin #vibeme #brunette #dildo #bigboobs My fav vibes 25, 50, 99, 100 ","flags":["english","romanian"],"online_time":1408,"vs_url_root":"https:\/\/db.bngpt.com\/stream_EvaEillish","chat_status":"public","marker":"above_average","gender":"female","members_count":29,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"Fionna","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/Fionna","display_name":"Fionna","display_age":"36","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d1\/03d\/1c2\/774158ae7722e5792a2ae54cbcf85ef2_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d1\/03d\/1c2\/774158ae7722e5792a2ae54cbcf85ef2_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d1\/03d\/1c2\/774158ae7722e5792a2ae54cbcf85ef2_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d1\/03d\/1c2\/774158ae7722e5792a2ae54cbcf85ef2_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d1\/03d\/1c2\/xbig_lq\/f9c574.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d1\/03d\/1c2\/xbig_lq\/f9c574.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d1\/03d\/1c2\/xbig\/f9c574.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/Fionna","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/Fionna","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/Fionna","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/Fionna?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/Fionna","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_Fionna\/playlist.m3u8","chat_topic":"Mommy is feeling playful , maybe you could make her the best time \u2764\ufe0f \u2b50\u2b50\u2b50\u2b50 , fav patterns 78111222333 @remain Make my pussy wet love ","chat_topic_ru":"Mommy is feeling playful , maybe you could make her the best time \u2764\ufe0f \u2b50\u2b50\u2b50\u2b50 , fav patterns 78111222333","flags":["english"],"online_time":11181,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Fionna","chat_status":"public","marker":"average","gender":"female","members_count":15,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"im-your-love","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/im-your-love","display_name":"Im-your-love","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/065\/0c3\/336\/ec8d4c9c1990a09cf3162aebe9eecf9d_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/065\/0c3\/336\/ec8d4c9c1990a09cf3162aebe9eecf9d_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/065\/0c3\/336\/ec8d4c9c1990a09cf3162aebe9eecf9d_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/065\/0c3\/336\/ec8d4c9c1990a09cf3162aebe9eecf9d_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/065\/0c3\/336\/xbig_lq\/4807d8.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/065\/0c3\/336\/xbig_lq\/4807d8.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/065\/0c3\/336\/xbig\/4807d8.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/im-your-love","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/im-your-love","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/im-your-love","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/im-your-love?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/im-your-love","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_im-your-love\/playlist.m3u8","chat_topic":"Of-melisa1820 .give \u200bme \u200bpleasure \u200buntil \u200bI \u200bbeg \u200byou \u200bto \u200bstop!Make me squirt until i am shaking\u2764 !! help me scream and squirt! MAX S***D 1 min @goal! @remain tokens ","chat_topic_ru":"\u200bGive \u200bme \u200bpleasure \u200buntil \u200bI \u200bbeg \u200byou \u200bto \u200bstop!Make me squirt until i am shaking\u2764 !! help me scream and squirt! MAX S***D 1 min @goal! @remain tokens ","flags":["english"],"online_time":2988,"vs_url_root":"https:\/\/db.bngpt.com\/stream_im-your-love","chat_status":"public","marker":"above_average","gender":"female","members_count":26,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"ScarlettJakobs","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/ScarlettJakobs","display_name":"ScarlettJakobs","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d4\/2c9\/078\/894b7b67abb671e28476a9b33ce4f2c8_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d4\/2c9\/078\/894b7b67abb671e28476a9b33ce4f2c8_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d4\/2c9\/078\/894b7b67abb671e28476a9b33ce4f2c8_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d4\/2c9\/078\/894b7b67abb671e28476a9b33ce4f2c8_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d4\/2c9\/078\/xbig_lq\/7e0e27.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d4\/2c9\/078\/xbig_lq\/7e0e27.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d4\/2c9\/078\/xbig\/7e0e27.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/ScarlettJakobs","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/ScarlettJakobs","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/ScarlettJakobs","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/ScarlettJakobs?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/ScarlettJakobs","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_ScarlettJakobs\/playlist.m3u8","chat_topic":"@remain For the best orgasm you have ever seen","chat_topic_ru":"\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0432 \u043c\u043e\u044e \u043a\u043e\u043c\u043d\u0430\u0442\u0443! \u0425\u043e\u0447\u0435\u0448\u044c \u043f\u043e\u0438\u0433\u0440\u0430\u0442\u044c?","flags":["english"],"online_time":5479,"vs_url_root":"https:\/\/db.bngpt.com\/stream_ScarlettJakobs","chat_status":"public","marker":"average","gender":"female","members_count":17,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"Rianny-girl","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/Rianny-girl","display_name":"Rianny-girl","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d2\/0a2\/228\/e9ac8c701e30d94d0ae93090fdbda047_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d2\/0a2\/228\/e9ac8c701e30d94d0ae93090fdbda047_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d2\/0a2\/228\/e9ac8c701e30d94d0ae93090fdbda047_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d2\/0a2\/228\/e9ac8c701e30d94d0ae93090fdbda047_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d2\/0a2\/228\/xbig_lq\/0dcaa9.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d2\/0a2\/228\/xbig_lq\/0dcaa9.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d2\/0a2\/228\/xbig\/0dcaa9.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/Rianny-girl","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/Rianny-girl","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/Rianny-girl","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/Rianny-girl?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/Rianny-girl","stream_feed_url":"https:\/\/ded4184-edge-us19.bcvcdn.com\/hls\/stream_Rianny-girl\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":3484,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Rianny-girl","chat_status":"public","marker":"average","gender":"female","members_count":19,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"Xoxcat","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/Xoxcat","display_name":"Xoxcat","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d4\/101\/3b7\/ce44cdf48417d474c1946ad6c06efe50_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d4\/101\/3b7\/ce44cdf48417d474c1946ad6c06efe50_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d4\/101\/3b7\/ce44cdf48417d474c1946ad6c06efe50_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d4\/101\/3b7\/ce44cdf48417d474c1946ad6c06efe50_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d4\/101\/3b7\/xbig_lq\/2f1407.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d4\/101\/3b7\/xbig_lq\/2f1407.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d4\/101\/3b7\/xbig\/2f1407.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/Xoxcat","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/Xoxcat","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/Xoxcat","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/Xoxcat?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/Xoxcat","stream_feed_url":"https:\/\/ded5985-edge-us21.bcvcdn.com\/hls\/stream_Xoxcat\/playlist.m3u8","chat_topic":"PUSSY PLAY","chat_topic_ru":"\u00ad\u0422\u0430\u043a\u0438\u0445 \u0438\u0433\u0440\u0443\u0448\u0435\u043a \u0442\u044b \u0435\u0449\u0451 \u043d\u0435 \u0432\u0438\u0434\u0435\u043b \u0432 \u0441\u0432\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438!","flags":["english"],"online_time":14739,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Xoxcat","chat_status":"public","marker":"average","gender":"female","members_count":42,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0}],"initial_models":[{"username":"BabyUnholly","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/BabyUnholly","display_name":"BabyUnholly","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d1\/155\/3ca\/d173e66aeabe28ce87c0f1d0d3dbe2d5_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d1\/155\/3ca\/d173e66aeabe28ce87c0f1d0d3dbe2d5_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d1\/155\/3ca\/d173e66aeabe28ce87c0f1d0d3dbe2d5_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d1\/155\/3ca\/d173e66aeabe28ce87c0f1d0d3dbe2d5_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d1\/155\/3ca\/xbig_lq\/ab586a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d1\/155\/3ca\/xbig_lq\/ab586a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d1\/155\/3ca\/xbig\/ab586a.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/BabyUnholly","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/BabyUnholly","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/BabyUnholly","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/BabyUnholly?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/BabyUnholly","stream_feed_url":"https:\/\/ded6443-edge12.bcvcdn.com\/hls\/stream_BabyUnholly\/playlist.m3u8","chat_topic":"Isa in the house \u2013 inked tease with sinful curves & unholy desires #bigboobs #bigass #squirt #anal #blowjob","chat_topic_ru":"Isa in the house \u2013 inked tease with sinful curves & unholy desires ","flags":["english"],"online_time":8488,"vs_url_root":"https:\/\/db.bngpt.com\/stream_BabyUnholly","chat_status":"public","marker":"nice","gender":"female","members_count":3913,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"TheFallingAngel","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/TheFallingAngel","display_name":"TheFallingAngel","display_age":"38","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/f97c06cd416ab41a1e663b1b631040a4_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/f97c06cd416ab41a1e663b1b631040a4_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/f97c06cd416ab41a1e663b1b631040a4_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b5\/1aa\/217\/f97c06cd416ab41a1e663b1b631040a4_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig_lq\/c55d1c.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig_lq\/c55d1c.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b5\/1aa\/217\/xbig\/c55d1c.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/TheFallingAngel","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/TheFallingAngel","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/TheFallingAngel","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/TheFallingAngel?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/TheFallingAngel","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_TheFallingAngel\/playlist.m3u8","chat_topic":"10 tokens for lovense Naughty blonde ready for any fantasy #lovense #blonde #dildo #lush #boobs #milf ","chat_topic_ru":"10 tokens for lovense Naughty blonde ready for any fantasy #lovense #blonde #dildo #lush #boobs #milf ","flags":["romanian"],"online_time":10817,"vs_url_root":"https:\/\/db.bngpt.com\/stream_TheFallingAngel","chat_status":"public","marker":"nice","gender":"female","members_count":132,"vibratoy":false,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"LeylaRoss","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/LeylaRoss","display_name":"LeylaRoss","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b1\/02f\/252\/9c0c3bd7bd38dcd9f59e787215aadbee_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b1\/02f\/252\/9c0c3bd7bd38dcd9f59e787215aadbee_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b1\/02f\/252\/9c0c3bd7bd38dcd9f59e787215aadbee_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b1\/02f\/252\/9c0c3bd7bd38dcd9f59e787215aadbee_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig_lq\/082135.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig_lq\/082135.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b1\/02f\/252\/xbig\/082135.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/LeylaRoss","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/LeylaRoss","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/LeylaRoss","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/LeylaRoss?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/LeylaRoss","stream_feed_url":"https:\/\/ded6740-edge20.bcvcdn.com\/hls\/stream_LeylaRoss\/playlist.m3u8","chat_topic":" every girl is doing the same thing , you just have to pick the better looking one #lushonMy fav pattern is 33, 99, 111 333 , 1111","chat_topic_ru":"\u0432\u0441\u0435 \u0434\u0435\u0432\u0443\u0448\u043a\u0438 \u0434\u0435\u043b\u0430\u044e\u0442 \u043e\u0434\u043d\u043e \u0438 \u0442\u043e \u0436\u0435, \u0432\u0430\u043c \u043f\u0440\u043e\u0441\u0442\u043e \u043d\u0443\u0436\u043d\u043e \u0432\u044b\u0431\u0440\u0430\u0442\u044c \u0442\u0443, \u043a\u043e\u0442\u043e\u0440\u0430\u044f \u0432\u044b\u0433\u043b\u044f\u0434\u0438\u0442 \u043b\u0443\u0447\u0448\u0435 # 33 333 3333","flags":["english","russian"],"online_time":7335,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LeylaRoss","chat_status":"public","marker":"nice","gender":"female","members_count":298,"vibratoy":true,"hd_cam":false,"social_networks":["snapchat"],"is_new":0},{"username":"-AfricaYaa-","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/-AfricaYaa-","display_name":"-AfricaYa-","display_age":"30","profile_images":{"profile_image":"\/\/i.wlicdn.com\/037\/2b8\/1db\/350840fdd5a6d7b7c319db293a73c023_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/037\/2b8\/1db\/350840fdd5a6d7b7c319db293a73c023_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/037\/2b8\/1db\/350840fdd5a6d7b7c319db293a73c023_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/037\/2b8\/1db\/350840fdd5a6d7b7c319db293a73c023_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/037\/2b8\/1db\/xbig_lq\/73b3fd.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/037\/2b8\/1db\/xbig_lq\/73b3fd.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/037\/2b8\/1db\/xbig\/73b3fd.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/-AfricaYaa-","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/-AfricaYaa-","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/-AfricaYaa-","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/-AfricaYaa-?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/-AfricaYaa-","stream_feed_url":"https:\/\/ded6443-edge12.bcvcdn.com\/hls\/stream_-AfricaYaa-\/playlist.m3u8","chat_topic":"In full pvt, I will do the best with you!!I 2222 \u2013 become my President! favorite vibrations 33 100 444 777 strongest emotion 115 @total - Target, @solar - Raised, @remain - remaining until the show starts!","chat_topic_ru":"\u0412 \u043f\u043e\u043b\u043d\u043e\u043c \u043f\u0440\u0438\u0432\u0430\u0442\u0435 \u0441\u0434\u0435\u043b\u0430\u044e \u0441 \u0442\u043e\u0431\u043e\u0439 \u0432\u0441\u0435 \u0441\u0430\u043c\u043e\u0435 \u043b\u0443\u0447\u0448\u0435\u0435 2222 \u2013 \u0441\u0442\u0430\u0442\u044c \u043c\u043e\u0438\u043c \u041f\u0440\u0435\u0437\u0438\u0434\u0435\u043d\u0442\u043e\u043c! \u043b\u044e\u0431\u0438\u043c\u044b\u0435 \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u0438 33 100 444 777 \u0441\u0430\u043c\u0430\u044f \u0441\u0438\u043b\u044c\u043d\u0430\u044f 115 \u041f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e \u0433\u043e\u043b\u0430\u044f @total - \u043e\u0431\u0440\u0430\u0442\u043d\u044b\u0439 \u043e\u0442\u0441\u0447\u0451\u0442, @sofar - \u0441\u043e\u0431\u0440\u0430\u043d\u043e, @remain - \u043e\u0441\u0442\u0430\u043b\u043e\u0441\u044c \u0434\u043e \u043d\u0430\u0447\u0430\u043b\u043e \u0448\u043e\u0443!","flags":["russian","english"],"online_time":1065,"vs_url_root":"https:\/\/db.bngpt.com\/stream_-AfricaYaa-","chat_status":"public","marker":"amazing","gender":"female","members_count":137,"vibratoy":true,"hd_cam":true,"social_networks":["instagram"],"is_new":0},{"username":"EvaFashionista","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/EvaFashionista","display_name":"EvaFashionista","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d1\/19d\/295\/91bcf26b6f1f2ec057020b530ac21c96_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d1\/19d\/295\/91bcf26b6f1f2ec057020b530ac21c96_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d1\/19d\/295\/91bcf26b6f1f2ec057020b530ac21c96_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d1\/19d\/295\/91bcf26b6f1f2ec057020b530ac21c96_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d1\/19d\/295\/xbig_lq\/7fd174.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d1\/19d\/295\/xbig_lq\/7fd174.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d1\/19d\/295\/xbig\/7fd174.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/EvaFashionista","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/EvaFashionista","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/EvaFashionista","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/EvaFashionista?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/EvaFashionista","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_EvaFashionista\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["russian","english"],"online_time":15195,"vs_url_root":"https:\/\/db.bngpt.com\/stream_EvaFashionista","chat_status":"public","marker":"nice","gender":"female","members_count":565,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"ingridblondy94","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/ingridblondy94","display_name":"Moona-One","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0aa\/315\/29d\/7b8470f3b4eb61bff879937ed7d20717_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0aa\/315\/29d\/7b8470f3b4eb61bff879937ed7d20717_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0aa\/315\/29d\/7b8470f3b4eb61bff879937ed7d20717_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0aa\/315\/29d\/7b8470f3b4eb61bff879937ed7d20717_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig_lq\/616e45.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig_lq\/616e45.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig\/616e45.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/ingridblondy94","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/ingridblondy94","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/ingridblondy94","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/ingridblondy94?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/ingridblondy94","stream_feed_url":"https:\/\/ded7126-edge65.bcvcdn.com\/hls\/stream_ingridblondy94\/playlist.m3u8","chat_topic":"Shhh, my neighbors can hear me. Hi! I'm Moona, enchantress of endless pleasure \u02d8\u06a1\u02d8 try lucky 38 and 56 the more pleasure i collect the more hardcore the show becomes! try normal dice with 40tok and super dice with 399tok @remain left till squirt","chat_topic_ru":"Hi! I'm Moona, enchantress of endless pleasure \u02d8\u06a1\u02d8 try lucky 38 and 56 the more pleasure i collect the more hardcore the show becomes! try normal dice with 40tok and super dice with 399tok @remain left till squirt","flags":["english","german"],"online_time":7541,"vs_url_root":"https:\/\/db.bngpt.com\/stream_ingridblondy94","chat_status":"public","marker":"nice","gender":"female","members_count":347,"vibratoy":true,"hd_cam":false,"social_networks":["snapchat"],"is_new":0},{"username":"Ttikhomirov","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/Ttikhomirov","display_name":"Ttikhomirov","display_age":"27","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ba\/399\/21b\/4520a1e187c11edf1e12b9b9d193c246_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ba\/399\/21b\/4520a1e187c11edf1e12b9b9d193c246_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ba\/399\/21b\/4520a1e187c11edf1e12b9b9d193c246_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ba\/399\/21b\/4520a1e187c11edf1e12b9b9d193c246_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ba\/399\/21b\/xbig_lq\/64c5bf.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ba\/399\/21b\/xbig_lq\/64c5bf.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ba\/399\/21b\/xbig\/64c5bf.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/Ttikhomirov","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/Ttikhomirov","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/Ttikhomirov","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/Ttikhomirov?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/Ttikhomirov","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_Ttikhomirov\/playlist.m3u8","chat_topic":"DFuck me hard until I squirt . @deea.official17 join in my onlyfans for a custom video free ","chat_topic_ru":"DFuck me hard until I squirt . @deea.official17 join in my onlyfans for a custom video free ","flags":["english"],"online_time":88,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Ttikhomirov","chat_status":"public","marker":"nice","gender":"female","members_count":6,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"NastiaBlack","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/NastiaBlack","display_name":"NastiaBlack","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/076\/049\/36a\/58fab34df0b0ef96b21f08a3e4a70f82_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/076\/049\/36a\/58fab34df0b0ef96b21f08a3e4a70f82_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/076\/049\/36a\/58fab34df0b0ef96b21f08a3e4a70f82_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/076\/049\/36a\/58fab34df0b0ef96b21f08a3e4a70f82_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/076\/049\/36a\/xbig_lq\/d56ae0.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/076\/049\/36a\/xbig_lq\/d56ae0.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/076\/049\/36a\/xbig\/d56ae0.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/NastiaBlack","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/NastiaBlack","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/NastiaBlack","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/NastiaBlack?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/NastiaBlack","stream_feed_url":"https:\/\/ded1163-edge30.bcvcdn.com\/hls\/stream_NastiaBlack\/playlist.m3u8","chat_topic":"Come for the Pussy stay for the Smile - (Lovense ON) #hot #natural #ass #squirt #feet Target: @total ! @sofar raised, @remain remaining until goal reached! ","chat_topic_ru":"Come for the Pussy stay for the Smile - (Lovense ON) #hot #natural #ass #squirt #feet Target: @total ! @sofar raised, @remain remaining until goal reached! ","flags":["english"],"online_time":2498,"vs_url_root":"https:\/\/db.bngpt.com\/stream_NastiaBlack","chat_status":"public","marker":"nice","gender":"female","members_count":480,"vibratoy":true,"hd_cam":true,"social_networks":["snapchat"],"is_new":0},{"username":"BlackMonro","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/BlackMonro","display_name":"DigitalAlexa","display_age":"31","profile_images":{"profile_image":"\/\/i.wlicdn.com\/03a\/005\/382\/973041f6ebf6afd71f464ebc10ffc4bd_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/03a\/005\/382\/973041f6ebf6afd71f464ebc10ffc4bd_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/03a\/005\/382\/973041f6ebf6afd71f464ebc10ffc4bd_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/03a\/005\/382\/973041f6ebf6afd71f464ebc10ffc4bd_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/03a\/005\/382\/xbig_lq\/266259.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/03a\/005\/382\/xbig_lq\/266259.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/03a\/005\/382\/xbig\/266259.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/BlackMonro","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/BlackMonro","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/BlackMonro","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/BlackMonro?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/BlackMonro","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_BlackMonro\/playlist.m3u8","chat_topic":"hi)i Sasha) ,toys in full private =)May the force come with us\u267e\ufe0f \u2668\ufe0e_\u2668\ufe0e @remain","chat_topic_ru":"\u043f\u0440\u0438\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e)\u0421\u0430\u0448\u0430 \u0431\u0443\u0434\u0435\u043c \u0437\u043d\u0430\u043a\u043e\u043c\u044b),\u0438\u0433\u0440\u0443\u0448\u043a\u0438 \u0432 \u043f\u043e\u043b\u043d\u043e\u043c \u043f\u0440\u0438\u0432\u0430\u0442\u0435=)\u0441\u043e\u0431\u0440\u0430\u0442\u044c \u0434\u043b\u044f \u0445\u043e\u0440\u043e\u0448\u0435\u0433\u043e \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043d\u0438\u044f @remain","flags":["russian","english"],"online_time":1925,"vs_url_root":"https:\/\/db.bngpt.com\/stream_BlackMonro","chat_status":"public","marker":"nice","gender":"female","members_count":81,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"JillStevens","profile_page_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/profile\/JillStevens","display_name":"JillStevens","display_age":"35","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ca\/280\/367\/67ddc4aa296b7f1ef3a61b39f2fef45e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ca\/280\/367\/67ddc4aa296b7f1ef3a61b39f2fef45e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ca\/280\/367\/67ddc4aa296b7f1ef3a61b39f2fef45e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ca\/280\/367\/67ddc4aa296b7f1ef3a61b39f2fef45e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ca\/280\/367\/xbig_lq\/60fcca.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ca\/280\/367\/xbig_lq\/60fcca.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ca\/280\/367\/xbig\/60fcca.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat-popup\/JillStevens","random_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=258727&ps=sticky_banner&csurl=http:\/\/nakedlivesex.com\/JillStevens","direct_chat_url":"http:\/\/nakedlivesex.com\/chat-popup\/JillStevens","chat_url_on_home_page_for_popunder":"http:\/\/nakedlivesex.com\/JillStevens?https://bongacams.com/track?c=258727&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/nakedlivesex.com\/JillStevens","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_JillStevens\/playlist.m3u8","chat_topic":"@remain tokens Remove the bra","chat_topic_ru":"\u0421\u043d\u044f\u0442\u044c \u043b\u0438\u0444\u0447\u0438\u043a","flags":["english","russian"],"online_time":880,"vs_url_root":"https:\/\/db.bngpt.com\/stream_JillStevens","chat_status":"public","marker":"average","gender":"female","members_count":32,"vibratoy":true,"hd_cam":false,"social_networks":["snapchat"],"is_new":0}]}'); var geoEnabled = '1'; var autoUpdate = '1'; var videoPlayed, banner, boundary, avatar, status, logo, autoupdateTimer, fallbackPlayer, isBannerOpened, imagePlayer; var lockCookieName = 'bcsbtool'; var isUCBrowser = navigator.userAgent.indexOf('UCBrowser/') > -1; var isRandomChat = contentType === ContentTypeEnum.RANDOM_CHAT; var frequency = '21600000'; var modelData = { avatarUrl: '//i.wlicdn.com/0d1/155/3ca/d173e66aeabe28ce87c0f1d0d3dbe2d5_thumb_medium.jpg', snapshotUrl: '//i.wlicdn.com/live/0d1/155/3ca/xbig/ab586a.jpg', username: 'BabyUnholly', displayname: 'BabyUnholly', vsUrlRoot: 'https://db.bngpt.com/stream_BabyUnholly', trackingUrl: trackingUrl, iframeSrc: '' }; function open() { if (!isBannerOpened) { setSize(); boundary.classList.add('__bcsb_open'); isBannerOpened = true; if (isRandomChat) { videoEmbed(); } if (autoUpdate === '1') { startTimer(); } } } function close() { isBannerOpened = false; boundary.remove(); var isPreviewPage = document.referrer.indexOf('promo/sticky-banner') > -1; var lockTime = isPreviewPage ? 1000 : Number(frequency); var closeVideo = document.querySelector('#bcsb_tool .video_played'); (0, cookieUtils_1.setLockCookie)(lockCookieName, 1, lockTime); closeVideo && closeVideo.pause(); } function attachHandlers() { document.querySelector('#bcsb_tool .bcsb_btn_close').addEventListener('click', handleClickClose); banner.addEventListener('click', openPromoUrl); attachVideoHandler(true); } function attachVideoHandler(firstLoad) { if (firstLoad === void 0) { firstLoad = false; } var sources = document.getElementsByTagName('source'); var videoLoaded = document.querySelector('#bcsb_tool .video.__loaded'); if (sources) { var firstSource_1 = sources[0]; if (!firstLoad && firstSource_1) { firstSource_1.removeEventListener('error', handleImagePlayer); } setTimeout(function () { if (firstSource_1 && !(0, deviceDetect_1.iOS)()) { firstSource_1.addEventListener('error', handleImagePlayer); if (videoLoaded) { videoLoaded.addEventListener('play', handleStopRequests); } } }, 1); } } function initVideoSrc(video, firstLoad) { if (firstLoad === void 0) { firstLoad = false; } updateSources(video.getElementsByTagName('source')); var videoLoaded = document.querySelector('#bcsb_tool .video.__loaded'); if (firstLoad) { updateSources(videoLoaded.getElementsByTagName('source')); } if (isUCBrowser) { handleImagePlayer(); } else { video.load(); } } function updateSources(sources) { if (sources) { sources[0].src = "".concat(modelData.vsUrlRoot, ".webm"); sources[1].src = "".concat(modelData.vsUrlRoot, ".mp4"); } } function videoEmbed() { if (isUCBrowser) { handleImagePlayer(); } else if (videoPlayed) { initVideoSrc(videoPlayed, true); } } function onLoad() { var lockCookie = (0, cookieUtils_1.getCookie)(lockCookieName); if (lockCookie) { return; } boundary = document.querySelector('#bcsb_tool'); banner = document.querySelector('#bcsb_tool .bcsb_wrapper'); avatar = document.querySelector('#bcsb_tool .bcsb_avatar'); status = document.querySelector('#bcsb_tool .bcsb_status'); logo = document.querySelector('#bcsb_tool .bcsb_logo'); videoPlayed = document.querySelector('#bcsb_tool .video.__played'); fallbackPlayer = document.querySelector('.js-stream_fallback'); var left = originalPosition.left, top = originalPosition.top; banner.style.left = left; banner.style.top = top; banner.style.transform = "translate(-".concat(left, ", -").concat(top, ")"); if (showLogo === '0') { logo.style.display = 'none'; } if (showStatus === '0') { status.style.display = 'none'; } onModelDataChange(modelData, true); attachHandlers(); open(); } function handleClickClose(e) { e.stopPropagation(); close(); } function openPromoUrl() { close(); window.open(modelData.trackingUrl, '_blank'); } function onModelDataChange(data, firstLoad) { if (firstLoad === void 0) { firstLoad = false; } modelData.username = data.username; modelData.snapshotUrl = data.snapshotUrl; modelData.avatarUrl = data.avatarUrl; modelData.vsUrlRoot = data.vsUrlRoot; modelData.trackingUrl = trackingUrl.replace('%model_username%', modelData.username); updateTemplate(firstLoad); } function updateTemplate(firstLoad) { if (firstLoad === void 0) { firstLoad = false; } var video = document.querySelector('#bcsb_tool .video.__played'); var videoUpdated = document.querySelector('#bcsb_tool .video.__loaded'); if (isRandomChat) { if (!firstLoad && videoUpdated) { initVideoSrc(videoUpdated); setTimeout(function () { videoUpdated.classList.add('__played'); videoUpdated.classList.remove('__loaded'); setTimeout(function () { if (video) { video.classList.remove('__played'); video.classList.add('__loaded'); initVideoSrc(video); attachVideoHandler(); } }, 1000); }, (0, deviceDetect_1.iOS)() ? 2000 : 1000); } } else { avatar.style.backgroundImage = contentType === ContentTypeEnum.PHOTO ? "url(\"".concat(modelData.avatarUrl, "\")") : "url(\"".concat(modelData.snapshotUrl, "\")"); } } function handleImagePlayer() { if (imagePlayer) { imagePlayer.updatePath(modelData.vsUrlRoot); } else { imagePlayer = new ImagePlayer_1.ImagePlayer(fallbackPlayer, modelData.vsUrlRoot, { frameRatio: 270 / 480 }); } } function handleStopRequests() { if (imagePlayer) { imagePlayer.stopRequests(); imagePlayer = null; } } function setSize() { var _a = sizes[size], width = _a.width, height = _a.height; banner.style.width = width; banner.style.height = height; } function startTimer() { if (modelsData) { var initialModels_1 = modelsData['initial_models'] || []; var geoModels_1 = modelsData['geo_models'] || []; var topModels_1 = modelsData['top_models'] || []; autoupdateTimer = setTimeout(function () { (0, helpers_1.shuffle)(initialModels_1); (0, helpers_1.shuffle)(geoModels_1); (0, helpers_1.shuffle)(topModels_1); geoModels_1 = (0, helpers_1.topmodels)(geoModels_1); topModels_1 = (0, helpers_1.topmodels)(topModels_1); var models = geoEnabled ? (0, helpers_1.arrayUnique)(geoModels_1.concat(topModels_1).concat(initialModels_1)) : (0, helpers_1.arrayUnique)(topModels_1.concat(geoModels_1).concat(initialModels_1)); updateProcess(models); startTimer(); }, 9000); } } function updateProcess(models) { var randomIndex = (0, helpers_1.randomInteger)(0, models.length - 1); var model = models[randomIndex]; if (model) { if (modelData.username === model.username) { model = models[randomIndex === 0 ? 1 : randomIndex - 1]; } var data = { avatarUrl: model.profile_images['profile_image'], snapshotUrl: model.profile_images['thumbnail_image_big_live'], username: model.username, vsUrlRoot: model.vs_url_root, }; onModelDataChange(data, false); } } var style = document.createElement('style'); style.type = 'text/css'; style.innerHTML = '#bcsb_tool { display: none}#bcsb_tool.__bcsb_open { display: block;}#bcsb_tool .bcsb_wrapper { position: fixed; z-index: 100}#bcsb_tool .bcsb_wrapper.bcsb_wl .bcsb_logo img { display: block;}#bcsb_tool .bcsb_wrapper.bcsb_wl .bcsb_logo_icon { display: none;}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_logo { width: 70px; height: 21px;}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_status { width: 26px; height: 14px;}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_status_text { width: 16px; height: 6px;}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_btn_close { width: 7%; height: 7%; min-width: 14px; min-height: 14px}#bcsb_tool .bcsb_wrapper.bcsb_s90x90 .bcsb_btn_close:before { left: -1px; top: -1px; right: 0; bottom: -1px;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_logo { width: 103px; height: 31px;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_status { top: 29px; left: 6px; width: 30px; height: 17px;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_status_text { width: 21px; height: 9px;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_btn_close { width: 7%; height: 7%;}#bcsb_tool .bcsb_wrapper.bcsb_s160x160 .bcsb_avatar { width: 140px; height: 140px;}#bcsb_tool .bcsb_wrapper.bcsb_s200x200 .bcsb_logo { width: 128px; height: 39px;}#bcsb_tool .bcsb_wrapper.bcsb_s200x200 .bcsb_status { top: 29px; left: 6px; width: 38px; height: 21px;}#bcsb_tool .bcsb_wrapper.bcsb_s200x200 .bcsb_status_text { width: 26px; height: 11px;}#bcsb_tool .bcsb_wrapper.bcsb_s240x240 .bcsb_logo { width: 154px; height: 46px;}#bcsb_tool .bcsb_wrapper.bcsb_s240x240 .bcsb_status { top: 35px; left: 7px; width: 45px; height: 25px;}#bcsb_tool .bcsb_wrapper.bcsb_s240x240 .bcsb_status_text { width: 31px; height: 13px;}#bcsb_tool .bcsb_wrapper.bcsb_s240x240 .bcsb_btn_close { width: 18px; height: 18px;}#bcsb_tool .bcsb_wrapper.bcsb_s250x250 .bcsb_logo { width: 160px; height: 48px;}#bcsb_tool .bcsb_wrapper.bcsb_s250x250 .bcsb_status { top: 35px; left: 7px; width: 47px; height: 26px;}#bcsb_tool .bcsb_wrapper.bcsb_s250x250 .bcsb_status_text { width: 32px; height: 14px;}#bcsb_tool .bcsb_wrapper.bcsb_s280x280 .bcsb_logo { width: 180px; height: 54px;}#bcsb_tool .bcsb_wrapper.bcsb_s280x280 .bcsb_status { top: 40px; left: 8px; width: 53px; height: 30px;}#bcsb_tool .bcsb_wrapper.bcsb_s280x280 .bcsb_status_text { width: 33px; height: 14px;}#bcsb_tool .bcsb_wrapper.bcsb_s300x300 .bcsb_logo { width: 192px; height: 58px;}#bcsb_tool .bcsb_wrapper.bcsb_s300x300 .bcsb_status { top: 43px; left: 9px; width: 57px; height: 32px;}#bcsb_tool .bcsb_wrapper.bcsb_s300x300 .bcsb_status_text { width: 35px; height: 14px;}#bcsb_tool .bcsb_content { position: relative; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; height: 100%; -webkit-border-radius: 50%; border-radius: 50%; background: -webkit-gradient(linear, left top, left bottom, from(#9948ff), color-stop(44.79%, #ff1c74), to(#ff891c)); background: -webkit-linear-gradient(top, #9948ff 0%, #ff1c74 44.79%, #ff891c 100%); background: linear-gradient(180deg, #9948ff 0%, #ff1c74 44.79%, #ff891c 100%); filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=\'#ff9948ff\', endColorstr=\'#ffff891c\', GradientType=0); cursor: pointer;}#bcsb_tool .bcsb_close_icon { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 50%; height: 50%; fill: #fff;}#bcsb_tool .bcsb_btn_close { position: absolute; right: 0; top: 0; width: 8%; height: 8%; min-width: 18px; min-height: 18px; max-width: 20px; max-height: 20px; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-border-radius: 50%; border-radius: 50%; background-color: rgba(0, 0, 0, .7); z-index: 4; cursor: pointer}#bcsb_tool .bcsb_btn_close:before { content: ""; -webkit-border-radius: 50%; border-radius: 50%; display: block; position: absolute; left: -3px; top: -3px; right: -3px; bottom: -3px;}#bcsb_tool .bcsb_logo { position: absolute; bottom: -1px; width: -webkit-calc(100% - 10px); width: calc(100% - 10px); max-width: 192px; left: 50%; -webkit-transform: translate(-50%); -ms-transform: translate(-50%); transform: translate(-50%); z-index: 3}#bcsb_tool .bcsb_logo img { position: absolute; width: auto; max-width: 76%; max-height: 100%; display: none; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}#bcsb_tool .bcsb_logo .bcsb_logo_icon { position: absolute; width: 88%; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%);}#bcsb_tool .bcsb_logo .bcsb_logo_bg { width: 100%; height: auto;}#bcsb_tool .bcsb_border { position: absolute; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); -ms-transform: translate(-50%, -50%); transform: translate(-50%, -50%); width: 95%; height: 95%; -webkit-border-radius: 50%; border-radius: 50%; background-color: #fff;}#bcsb_tool .bcsb_avatar { position: relative; z-index: 2; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-flex-shrink: 0; -ms-flex-negative: 0; flex-shrink: 0; width: 88%; height: 88%; -webkit-border-radius: 50%; border-radius: 50%; background-color: darkgrey; background-size: cover; background-position: center; overflow: hidden}#bcsb_tool .bcsb_avatar .video { position: absolute; min-width: 100%; height: 100%; width: 100%; min-height: 100%; -o-object-fit: cover; object-fit: cover}#bcsb_tool .bcsb_avatar .video.__played { display: block;}#bcsb_tool .bcsb_avatar .video.__loaded { display: none;}#bcsb_tool .bcsb_canvas_wrapper { position: absolute; left: 0; top: 0; width: 100%; height: 100%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; -webkit-border-radius: 50%; border-radius: 50%; overflow: hidden}#bcsb_tool .bcsb_canvas_wrapper canvas { height: 100%;}#bcsb_tool .bcsb_status { position: absolute; left: 0; top: 15%; width: 13%; display: -webkit-box; display: -webkit-flex; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -ms-flex-pack: center; justify-content: center; z-index: 3; background-color: #00e693; color: #fff; -webkit-box-shadow: 0 0 8px rgba(0, 255, 163, 0.6); box-shadow: 0 0 8px rgba(0, 255, 163, 0.6); -webkit-border-radius: 50px; border-radius: 50px;}'; document.head.appendChild(style); var template = document.createElement('div'); template.id = 'bcsb_tool'; template.innerHTML = '