/******/ (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=804908&ps=sticky_banner&csurl=https://azporncams.com/%model_username%%3Fclassic%3Doff'; var size = '240x240'; var showLogo = '1'; var showStatus = '1'; var contentType = 'random'; var originalPosition = { left: '95%', top: '95%' }; var modelsData = JSON.parse('{"geo_models":[],"top_models":[{"username":"meow","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/meow","display_name":"Lynx","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/042\/23b\/031\/ba018100646a157225f7206ab532c52e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/042\/23b\/031\/ba018100646a157225f7206ab532c52e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/042\/23b\/031\/ba018100646a157225f7206ab532c52e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/042\/23b\/031\/ba018100646a157225f7206ab532c52e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig_lq\/a38116.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig_lq\/a38116.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig\/a38116.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/meow","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/meow","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/meow","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/meow?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/meow","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_meow\/playlist.m3u8","chat_topic":"\u2800 ","chat_topic_ru":"\u2800 ","flags":["russian","english"],"online_time":1131,"vs_url_root":"https:\/\/db.bngpt.com\/stream_meow","chat_status":"public","marker":"nice","gender":"female","members_count":113,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"vaverika","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/vaverika","display_name":"Vaverina","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0c9\/215\/111\/0425169702a9955dcc4a9fd8c2fc7062_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0c9\/215\/111\/0425169702a9955dcc4a9fd8c2fc7062_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0c9\/215\/111\/0425169702a9955dcc4a9fd8c2fc7062_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0c9\/215\/111\/0425169702a9955dcc4a9fd8c2fc7062_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0c9\/215\/111\/xbig_lq\/d28684.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0c9\/215\/111\/xbig_lq\/d28684.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0c9\/215\/111\/xbig\/d28684.jpg"},"is_mobile":true,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/vaverika","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/vaverika","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/vaverika","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/vaverika?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/vaverika","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_vaverika\/playlist.m3u8","chat_topic":"Lovense 2 tok ","chat_topic_ru":"\u043b\u043e\u0432\u0435\u043d\u0441 \u043e\u0442 2 \u0442\u043e\u043a \u0412\u0441\u0435\u0433\u043e @total \u0441\u043e\u0431\u0440\u0430\u043d\u043e @sofar \u043e\u0441\u0442\u0430\u043b\u043e\u0441\u044c @remain \u043d\u0430 \u043a\u0432\u0430\u0440\u0442\u0438\u0440\u0443","flags":["russian"],"online_time":2879,"vs_url_root":"https:\/\/db.bngpt.com\/stream_vaverika","chat_status":"public","marker":"average","gender":"female","members_count":79,"vibratoy":true,"hd_cam":false,"social_networks":["instagram","tiktok"],"is_new":0},{"username":"lilcalypso","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/lilcalypso","display_name":"lilcalypso","display_age":"21","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0cd\/2c5\/34b\/349c960fc7426cd57252a496f2791611_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0cd\/2c5\/34b\/349c960fc7426cd57252a496f2791611_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0cd\/2c5\/34b\/349c960fc7426cd57252a496f2791611_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0cd\/2c5\/34b\/349c960fc7426cd57252a496f2791611_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0cd\/2c5\/34b\/xbig_lq\/94bb50.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0cd\/2c5\/34b\/xbig_lq\/94bb50.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0cd\/2c5\/34b\/xbig\/94bb50.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/lilcalypso","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/lilcalypso","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/lilcalypso","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/lilcalypso?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/lilcalypso","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_lilcalypso\/playlist.m3u8","chat_topic":"Hello Im Lilya, no tk? throw love!! Favorite vibrations - 111,112,222,333,444, 777 -Squirt! iIST - lilshmls","chat_topic_ru":"\u043f\u0440\u0438\u0432\u0435\u0442\u0438\u043a \u044f \u041b\u0438\u043b\u044f, \u043d\u0435\u0442 \u0442\u043a? \u043a\u0438\u0434\u0430\u0439 \u043b\u044e\u0431\u043e\u0432\u044c!! \u043b\u044e\u0431\u0438\u043c\u044b\u0435 \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u0438 - 111,112,222,333,444, 777-\u0441\u043a\u0432\u0438\u0440\u0442! \u0438\u043dc\u0442: lilshmls ","flags":["russian","english"],"online_time":16500,"vs_url_root":"https:\/\/db.bngpt.com\/stream_lilcalypso","chat_status":"public","marker":"average","gender":"female","members_count":388,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"KattyWilliams","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/KattyWilliams","display_name":"KattyWilliams","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d5\/382\/092\/6da426eff8aa6d260e9d8e7ff6d3eada_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d5\/382\/092\/6da426eff8aa6d260e9d8e7ff6d3eada_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d5\/382\/092\/6da426eff8aa6d260e9d8e7ff6d3eada_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d5\/382\/092\/6da426eff8aa6d260e9d8e7ff6d3eada_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d5\/382\/092\/xbig_lq\/87b919.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d5\/382\/092\/xbig_lq\/87b919.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d5\/382\/092\/xbig\/87b919.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/KattyWilliams","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/KattyWilliams","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/KattyWilliams","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/KattyWilliams?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/KattyWilliams","stream_feed_url":"https:\/\/ded4187-edge-us28.bcvcdn.com\/hls\/stream_KattyWilliams\/playlist.m3u8","chat_topic":"Heyy, ready to play and get horny together","chat_topic_ru":"\u00ad\u041c\u043e\u0438 \u0441\u0442\u043e\u043d\u044b \u0443\u0434\u043e\u0432\u043e\u043b\u044c\u0441\u0442\u0432\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0434\u043b\u044f \u0442\u0435\u0431\u044f \u0441\u0430\u043c\u044b\u043c\u0438 \u043b\u0443\u0447\u0448\u0438\u043c\u0438!","flags":["spanish","english"],"online_time":1827,"vs_url_root":"https:\/\/db.bngpt.com\/stream_KattyWilliams","chat_status":"public","marker":"average","gender":"female","members_count":20,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":1},{"username":"Ellise-sugar","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Ellise-sugar","display_name":"Ellise-sugar","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0cf\/22a\/039\/f9d25fdbe7f87b5a40bfa545b2504ed0_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0cf\/22a\/039\/f9d25fdbe7f87b5a40bfa545b2504ed0_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0cf\/22a\/039\/f9d25fdbe7f87b5a40bfa545b2504ed0_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0cf\/22a\/039\/f9d25fdbe7f87b5a40bfa545b2504ed0_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0cf\/22a\/039\/xbig_lq\/2cb671.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0cf\/22a\/039\/xbig_lq\/2cb671.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0cf\/22a\/039\/xbig\/2cb671.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Ellise-sugar","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Ellise-sugar","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Ellise-sugar","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Ellise-sugar?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Ellise-sugar","stream_feed_url":"https:\/\/ded6358-edge24.bcvcdn.com\/hls\/stream_Ellise-sugar\/playlist.m3u8","chat_topic":"Cum show","chat_topic_ru":"cum show","flags":["english","russian"],"online_time":1556,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Ellise-sugar","chat_status":"public","marker":"average","gender":"female","members_count":26,"vibratoy":true,"hd_cam":false,"social_networks":["snapchat"],"is_new":0},{"username":"Lilithmorningstar","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Lilithmorningstar","display_name":"Lilithmorningstar","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d1\/23c\/1ac\/50440fc0300eca55153258e229fcf57a_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d1\/23c\/1ac\/50440fc0300eca55153258e229fcf57a_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d1\/23c\/1ac\/50440fc0300eca55153258e229fcf57a_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d1\/23c\/1ac\/50440fc0300eca55153258e229fcf57a_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d1\/23c\/1ac\/xbig_lq\/0c80f5.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d1\/23c\/1ac\/xbig_lq\/0c80f5.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d1\/23c\/1ac\/xbig\/0c80f5.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Lilithmorningstar","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Lilithmorningstar","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Lilithmorningstar","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Lilithmorningstar?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Lilithmorningstar","stream_feed_url":"https:\/\/ded5487-edge-us13.bcvcdn.com\/hls\/stream_Lilithmorningstar\/playlist.m3u8","chat_topic":"inflate a balloon in me pussy","chat_topic_ru":"inflate a balloon in me pussy","flags":["spanish","english"],"online_time":1837,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Lilithmorningstar","chat_status":"public","marker":"average","gender":"female","members_count":11,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"Zayyda","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Zayyda","display_name":"Zayyda","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ae\/277\/210\/9079b8a8f47a336ee4e953741a968d34_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ae\/277\/210\/9079b8a8f47a336ee4e953741a968d34_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ae\/277\/210\/9079b8a8f47a336ee4e953741a968d34_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ae\/277\/210\/9079b8a8f47a336ee4e953741a968d34_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ae\/277\/210\/xbig_lq\/983039.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ae\/277\/210\/xbig_lq\/983039.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ae\/277\/210\/xbig\/983039.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Zayyda","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Zayyda","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Zayyda","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Zayyda?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Zayyda","stream_feed_url":"https:\/\/ded1163-edge30.bcvcdn.com\/hls\/stream_Zayyda\/playlist.m3u8","chat_topic":" I can be your wild and sexy girl, make me ride today PVT ON| Lush on| PVT ON","chat_topic_ru":" I can be your wild and sexy girl, make me ride today PVT ON| Lush on| PVT ON","flags":["spanish","english"],"online_time":8601,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Zayyda","chat_status":"public","marker":"average","gender":"female","members_count":13,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"Hubena-tgn","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Hubena-tgn","display_name":"Hubena-tgn","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d4\/1f2\/272\/60c2fa88c1d68772da67f1ff9d563829_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d4\/1f2\/272\/60c2fa88c1d68772da67f1ff9d563829_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d4\/1f2\/272\/60c2fa88c1d68772da67f1ff9d563829_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d4\/1f2\/272\/60c2fa88c1d68772da67f1ff9d563829_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d4\/1f2\/272\/xbig_lq\/acf4ef.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d4\/1f2\/272\/xbig_lq\/acf4ef.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d4\/1f2\/272\/xbig\/acf4ef.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Hubena-tgn","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Hubena-tgn","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Hubena-tgn","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Hubena-tgn?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Hubena-tgn","stream_feed_url":"https:\/\/ded5487-edge-us13.bcvcdn.com\/hls\/stream_Hubena-tgn\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":9040,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Hubena-tgn","chat_status":"public","marker":"average","gender":"female","members_count":10,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"LilyColins","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/LilyColins","display_name":"LilyColins","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0cc\/072\/19c\/d7e8b145f89529208842348438993519_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0cc\/072\/19c\/d7e8b145f89529208842348438993519_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0cc\/072\/19c\/d7e8b145f89529208842348438993519_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0cc\/072\/19c\/d7e8b145f89529208842348438993519_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0cc\/072\/19c\/xbig_lq\/6b7e7d.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0cc\/072\/19c\/xbig_lq\/6b7e7d.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0cc\/072\/19c\/xbig\/6b7e7d.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/LilyColins","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/LilyColins","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/LilyColins","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/LilyColins?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/LilyColins","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_LilyColins\/playlist.m3u8","chat_topic":"do not take me to pvt if u dont want to feel stone in your pants ^^ hehe","chat_topic_ru":"do not take me to pvt if u dont want to feel stone in your pants ^^ hehe","flags":["latvian","english"],"online_time":17547,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LilyColins","chat_status":"public","marker":"average","gender":"female","members_count":11,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"NiaSalvatore","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/NiaSalvatore","display_name":"NiaSalvatore","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ca\/3b6\/2c0\/3b42a6169832e27b38a6a57de9a4c0a0_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ca\/3b6\/2c0\/3b42a6169832e27b38a6a57de9a4c0a0_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ca\/3b6\/2c0\/3b42a6169832e27b38a6a57de9a4c0a0_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ca\/3b6\/2c0\/3b42a6169832e27b38a6a57de9a4c0a0_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ca\/3b6\/2c0\/xbig_lq\/d5e98f.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ca\/3b6\/2c0\/xbig_lq\/d5e98f.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ca\/3b6\/2c0\/xbig\/d5e98f.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/NiaSalvatore","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/NiaSalvatore","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/NiaSalvatore","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/NiaSalvatore?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/NiaSalvatore","stream_feed_url":"https:\/\/ded5986-edge-us22.bcvcdn.com\/hls\/stream_NiaSalvatore\/playlist.m3u8","chat_topic":"\u2b50\u2665Stick your finger in my pussy and feel how I wet it \u2665 \u2665 At goal: Fuck pussy + Blow Job \u2665 @remain tks left \u2665 Ig: niasalvatore5 \u2665","chat_topic_ru":"Spank me until I cum from pleasure \u2665\u2665 At goal: Fuck pussy + Blow Job \u2665 @remain tks left \u2665 Ig: niasalvatore5 \u2665","flags":["english","spanish"],"online_time":2709,"vs_url_root":"https:\/\/db.bngpt.com\/stream_NiaSalvatore","chat_status":"public","marker":"average","gender":"female","members_count":18,"vibratoy":false,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"BiancaSola","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/BiancaSola","display_name":"BiancaSola","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d6\/0af\/125\/1fdb11fef90932afd95d00f22d530482_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d6\/0af\/125\/1fdb11fef90932afd95d00f22d530482_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d6\/0af\/125\/1fdb11fef90932afd95d00f22d530482_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d6\/0af\/125\/1fdb11fef90932afd95d00f22d530482_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d6\/0af\/125\/xbig_lq\/f0fc93.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d6\/0af\/125\/xbig_lq\/f0fc93.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d6\/0af\/125\/xbig\/f0fc93.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/BiancaSola","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/BiancaSola","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/BiancaSola","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/BiancaSola?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/BiancaSola","stream_feed_url":"https:\/\/ded4160-edge-us4.bcvcdn.com\/hls\/stream_BiancaSola\/playlist.m3u8","chat_topic":"Hiii is my first day!","chat_topic_ru":"\u00ad\u0413\u043e\u0442\u043e\u0432 \u043a \u043b\u0443\u0447\u0448\u0435\u043c\u0443 \u0448\u043e\u0443 \u0432 \u0441\u0432\u043e\u0435\u0439 \u0436\u0438\u0437\u043d\u0438?!","flags":["spanish"],"online_time":7802,"vs_url_root":"https:\/\/db.bngpt.com\/stream_BiancaSola","chat_status":"public","marker":"average","gender":"female","members_count":17,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":1},{"username":"SierraRyan","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/SierraRyan","display_name":"SierraRyan","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d4\/01b\/1d5\/27f158e155a2f25f2dc28fc28e553271_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d4\/01b\/1d5\/27f158e155a2f25f2dc28fc28e553271_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d4\/01b\/1d5\/27f158e155a2f25f2dc28fc28e553271_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d4\/01b\/1d5\/27f158e155a2f25f2dc28fc28e553271_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d4\/01b\/1d5\/xbig_lq\/c57e5a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d4\/01b\/1d5\/xbig_lq\/c57e5a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d4\/01b\/1d5\/xbig\/c57e5a.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/SierraRyan","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/SierraRyan","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/SierraRyan","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/SierraRyan?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/SierraRyan","stream_feed_url":"https:\/\/ded1080-edge28.bcvcdn.com\/hls\/stream_SierraRyan\/playlist.m3u8","chat_topic":"try my favs and make me cum !! 111 160 301 777 !! #18 #daddy #teen #squirt #anal","chat_topic_ru":"\u00ad\u0421\u0443\u043f\u0435\u0440-\u0447\u0435\u0441\u0442\u043d\u043e\u0441\u0442\u044c: \u0427\u0430\u0435\u0432\u044b\u0435 \u2014 \u0437\u0430\u043b\u043e\u0433 \u0434\u0440\u0443\u0436\u0431\u044b:)","flags":["english","romanian"],"online_time":30075,"vs_url_root":"https:\/\/db.bngpt.com\/stream_SierraRyan","chat_status":"public","marker":"above_average","gender":"female","members_count":283,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"zoewillian","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/zoewillian","display_name":"ZoeWillian","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ce\/1ac\/1fa\/5d267b2d80ac7364e7be777e7886741a_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ce\/1ac\/1fa\/5d267b2d80ac7364e7be777e7886741a_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ce\/1ac\/1fa\/5d267b2d80ac7364e7be777e7886741a_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ce\/1ac\/1fa\/5d267b2d80ac7364e7be777e7886741a_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ce\/1ac\/1fa\/xbig_lq\/eefe0b.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ce\/1ac\/1fa\/xbig_lq\/eefe0b.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ce\/1ac\/1fa\/xbig\/eefe0b.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/zoewillian","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/zoewillian","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/zoewillian","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/zoewillian?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/zoewillian","stream_feed_url":"https:\/\/ded351-edge-us76.bcvcdn.com\/hls\/stream_zoewillian\/playlist.m3u8","chat_topic":"How willing are you to give me the best orgasm of my life? Don't be shy and fuck me\u2764HOT DANCE at @remain \u2764","chat_topic_ru":"How willing are you to give me the best orgasm of my life? Don't be shy and fuck me\u2764HOT DANCE at @remain \u2764","flags":["spanish","english"],"online_time":10883,"vs_url_root":"https:\/\/db.bngpt.com\/stream_zoewillian","chat_status":"public","marker":"average","gender":"female","members_count":13,"vibratoy":true,"hd_cam":false,"social_networks":["instagram","snapchat"],"is_new":0},{"username":"RoxaneEvans","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/RoxaneEvans","display_name":"RoxaneEvans","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0bd\/1d7\/0f1\/d8b956994f57527d95b35a930ceaed61_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0bd\/1d7\/0f1\/d8b956994f57527d95b35a930ceaed61_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0bd\/1d7\/0f1\/d8b956994f57527d95b35a930ceaed61_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0bd\/1d7\/0f1\/d8b956994f57527d95b35a930ceaed61_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0bd\/1d7\/0f1\/xbig_lq\/846b25.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0bd\/1d7\/0f1\/xbig_lq\/846b25.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0bd\/1d7\/0f1\/xbig\/846b25.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/RoxaneEvans","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/RoxaneEvans","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/RoxaneEvans","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/RoxaneEvans?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/RoxaneEvans","stream_feed_url":"https:\/\/ded4050-edge-us67.bcvcdn.com\/hls\/stream_RoxaneEvans\/playlist.m3u8","chat_topic":"Heyy \u2665 welcome !Any ideas for fun?","chat_topic_ru":"Heyy \u2665 welcome !Any ideas for fun?","flags":["spanish","english"],"online_time":201,"vs_url_root":"https:\/\/db.bngpt.com\/stream_RoxaneEvans","chat_status":"public","marker":"average","gender":"female","members_count":9,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"KaiaFerreira","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/KaiaFerreira","display_name":"KaiaFerreira","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0c8\/371\/264\/40838d16bc30d7c5f185c4c27689320b_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0c8\/371\/264\/40838d16bc30d7c5f185c4c27689320b_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0c8\/371\/264\/40838d16bc30d7c5f185c4c27689320b_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0c8\/371\/264\/40838d16bc30d7c5f185c4c27689320b_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0c8\/371\/264\/xbig_lq\/fba4f4.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0c8\/371\/264\/xbig_lq\/fba4f4.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0c8\/371\/264\/xbig\/fba4f4.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/KaiaFerreira","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/KaiaFerreira","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/KaiaFerreira","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/KaiaFerreira?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/KaiaFerreira","stream_feed_url":"https:\/\/ded4038-edge-us65.bcvcdn.com\/hls\/stream_KaiaFerreira\/playlist.m3u8","chat_topic":"\u2b50Let's play, two fingers and my pussy, could you make me cum?\u2b50 IG : @kaiaferreiraa\u2665 Goal: Sexy dance + Wet Blowjob @remain Tkns Left","chat_topic_ru":"\u2b50fuck me so hard that you feel that you shake my mind\u2b50 IG : @kaiaferreiraa\u2665 Goal: Sexy dance + Wet Blowjob @remain Tkns Left","flags":["spanish","english"],"online_time":2515,"vs_url_root":"https:\/\/db.bngpt.com\/stream_KaiaFerreira","chat_status":"public","marker":"above_average","gender":"female","members_count":17,"vibratoy":false,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"ElmasDiSante","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/ElmasDiSante","display_name":"ElmasDiSante","display_age":"21","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0cf\/037\/39f\/723fa79b64118b1443b20d4427c938dc_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0cf\/037\/39f\/723fa79b64118b1443b20d4427c938dc_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0cf\/037\/39f\/723fa79b64118b1443b20d4427c938dc_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0cf\/037\/39f\/723fa79b64118b1443b20d4427c938dc_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0cf\/037\/39f\/xbig_lq\/2cb671.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0cf\/037\/39f\/xbig_lq\/2cb671.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0cf\/037\/39f\/xbig\/2cb671.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/ElmasDiSante","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/ElmasDiSante","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/ElmasDiSante","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/ElmasDiSante?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/ElmasDiSante","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_ElmasDiSante\/playlist.m3u8","chat_topic":"@remain le Pound my pussy hard until it cums on ur big balls FAV \u200bVIBE \u200b24\u200b101\u200b500\u200b1000 \u200bOMG \u200bSQUIRT","chat_topic_ru":"@remain make my pussy squirt on ur cock Favorite vibe 11 22 38 555","flags":["english"],"online_time":8455,"vs_url_root":"https:\/\/db.bngpt.com\/stream_ElmasDiSante","chat_status":"public","marker":"above_average","gender":"female","members_count":26,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"exotichot-couple","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/exotichot-couple","display_name":"exotichot-couple","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0c9\/38a\/2fe\/28c05354d02213099f4235ff23e5d320_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0c9\/38a\/2fe\/28c05354d02213099f4235ff23e5d320_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0c9\/38a\/2fe\/28c05354d02213099f4235ff23e5d320_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0c9\/38a\/2fe\/28c05354d02213099f4235ff23e5d320_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0c9\/38a\/2fe\/xbig_lq\/517285.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0c9\/38a\/2fe\/xbig_lq\/517285.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0c9\/38a\/2fe\/xbig\/517285.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/exotichot-couple","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/exotichot-couple","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/exotichot-couple","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/exotichot-couple?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/exotichot-couple","stream_feed_url":"https:\/\/ded4187-edge-us28.bcvcdn.com\/hls\/stream_exotichot-couple\/playlist.m3u8","chat_topic":"welcome baby naked feet show pussy cock","chat_topic_ru":"welcome baby naked feet show pussy cock","flags":["english"],"online_time":3386,"vs_url_root":"https:\/\/db.bngpt.com\/stream_exotichot-couple","chat_status":"public","marker":"average","gender":"couple_f_m","members_count":76,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"EmilyDirty","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/EmilyDirty","display_name":"EmilyDirty","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/09d\/1f2\/308\/3a52e6da2826c4e6c984b7df74f591d3_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/09d\/1f2\/308\/3a52e6da2826c4e6c984b7df74f591d3_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/09d\/1f2\/308\/3a52e6da2826c4e6c984b7df74f591d3_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/09d\/1f2\/308\/3a52e6da2826c4e6c984b7df74f591d3_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/09d\/1f2\/308\/xbig_lq\/8758f3.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/09d\/1f2\/308\/xbig_lq\/8758f3.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/09d\/1f2\/308\/xbig\/8758f3.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/EmilyDirty","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/EmilyDirty","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/EmilyDirty","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/EmilyDirty?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/EmilyDirty","stream_feed_url":"https:\/\/ded6810-edge48.bcvcdn.com\/hls\/stream_EmilyDirty\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["english","german"],"online_time":6622,"vs_url_root":"https:\/\/db.bngpt.com\/stream_EmilyDirty","chat_status":"public","marker":"average","gender":"female","members_count":16,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"isa-queen","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/isa-queen","display_name":"isa-queen","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0be\/1a9\/105\/e5c31818015ab13d58b143e218fd6063_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0be\/1a9\/105\/e5c31818015ab13d58b143e218fd6063_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0be\/1a9\/105\/e5c31818015ab13d58b143e218fd6063_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0be\/1a9\/105\/e5c31818015ab13d58b143e218fd6063_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0be\/1a9\/105\/xbig_lq\/91a9ba.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0be\/1a9\/105\/xbig_lq\/91a9ba.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0be\/1a9\/105\/xbig\/91a9ba.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/isa-queen","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/isa-queen","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/isa-queen","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/isa-queen?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/isa-queen","stream_feed_url":"https:\/\/ded5991-edge-us23.bcvcdn.com\/hls\/stream_isa-queen\/playlist.m3u8","chat_topic":"LETS FINISH THIS WEEK WITH A GOOD SQUIRT AS NEVER BEFORE \u2665 CONTROL MY LOVENSE 200 TKS !! \u2665 write a comment if u like my show \u2665 @remain RIDE DILDO FUCK MY PUSSY AT THE GOAL @total @sofar @remain ","chat_topic_ru":"LETS FINISH THIS WEEK WITH A GOOD SQUIRT AS NEVER BEFORE \u2665 CONTROL MY LOVENSE 200 TKS !! \u2665 write a comment if u like my show \u2665 @remain RIDE DILDO FUCK MY PUSSY AT THE GOAL @total @sofar @remain ","flags":["spanish","english"],"online_time":5867,"vs_url_root":"https:\/\/db.bngpt.com\/stream_isa-queen","chat_status":"public","marker":"average","gender":"female","members_count":10,"vibratoy":true,"hd_cam":false,"social_networks":["instagram","snapchat"],"is_new":0},{"username":"Lily-Woodz","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Lily-Woodz","display_name":"Lily-Woodz","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ca\/064\/098\/3a44fda8e7d2a4cd98e228a658d5118d_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ca\/064\/098\/3a44fda8e7d2a4cd98e228a658d5118d_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ca\/064\/098\/3a44fda8e7d2a4cd98e228a658d5118d_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ca\/064\/098\/3a44fda8e7d2a4cd98e228a658d5118d_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ca\/064\/098\/xbig_lq\/2d909c.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ca\/064\/098\/xbig_lq\/2d909c.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ca\/064\/098\/xbig\/2d909c.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Lily-Woodz","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Lily-Woodz","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Lily-Woodz","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Lily-Woodz?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Lily-Woodz","stream_feed_url":"https:\/\/ded4416-edge-us56.bcvcdn.com\/hls\/stream_Lily-Woodz\/playlist.m3u8","chat_topic":"Daddy touch me with 11 22 33 ; Take control 55 111 222 333 #teen #+ #young #smalltits #smallass #petite #lovense #domi #lush #asian #dirtytalk ","chat_topic_ru":"Daddy touch me with 11 22 33 ; Take control 55 111 222 333 #teen #+ #young #smalltits #smallass #petite #lovense #domi #lush #asian #dirtytalk ","flags":["english","spanish"],"online_time":10238,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Lily-Woodz","chat_status":"public","marker":"average","gender":"female","members_count":10,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0}],"initial_models":[{"username":"meow","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/meow","display_name":"Lynx","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/042\/23b\/031\/ba018100646a157225f7206ab532c52e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/042\/23b\/031\/ba018100646a157225f7206ab532c52e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/042\/23b\/031\/ba018100646a157225f7206ab532c52e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/042\/23b\/031\/ba018100646a157225f7206ab532c52e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig_lq\/a38116.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig_lq\/a38116.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/042\/23b\/031\/xbig\/a38116.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/meow","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/meow","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/meow","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/meow?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/meow","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_meow\/playlist.m3u8","chat_topic":"\u2800 ","chat_topic_ru":"\u2800 ","flags":["russian","english"],"online_time":1131,"vs_url_root":"https:\/\/db.bngpt.com\/stream_meow","chat_status":"public","marker":"nice","gender":"female","members_count":113,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"vaverika","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/vaverika","display_name":"Vaverina","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0c9\/215\/111\/0425169702a9955dcc4a9fd8c2fc7062_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0c9\/215\/111\/0425169702a9955dcc4a9fd8c2fc7062_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0c9\/215\/111\/0425169702a9955dcc4a9fd8c2fc7062_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0c9\/215\/111\/0425169702a9955dcc4a9fd8c2fc7062_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0c9\/215\/111\/xbig_lq\/d28684.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0c9\/215\/111\/xbig_lq\/d28684.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0c9\/215\/111\/xbig\/d28684.jpg"},"is_mobile":true,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/vaverika","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/vaverika","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/vaverika","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/vaverika?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/vaverika","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_vaverika\/playlist.m3u8","chat_topic":"Lovense 2 tok ","chat_topic_ru":"\u043b\u043e\u0432\u0435\u043d\u0441 \u043e\u0442 2 \u0442\u043e\u043a \u0412\u0441\u0435\u0433\u043e @total \u0441\u043e\u0431\u0440\u0430\u043d\u043e @sofar \u043e\u0441\u0442\u0430\u043b\u043e\u0441\u044c @remain \u043d\u0430 \u043a\u0432\u0430\u0440\u0442\u0438\u0440\u0443","flags":["russian"],"online_time":2879,"vs_url_root":"https:\/\/db.bngpt.com\/stream_vaverika","chat_status":"public","marker":"average","gender":"female","members_count":79,"vibratoy":true,"hd_cam":false,"social_networks":["instagram","tiktok"],"is_new":0},{"username":"lilcalypso","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/lilcalypso","display_name":"lilcalypso","display_age":"21","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0cd\/2c5\/34b\/349c960fc7426cd57252a496f2791611_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0cd\/2c5\/34b\/349c960fc7426cd57252a496f2791611_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0cd\/2c5\/34b\/349c960fc7426cd57252a496f2791611_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0cd\/2c5\/34b\/349c960fc7426cd57252a496f2791611_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0cd\/2c5\/34b\/xbig_lq\/94bb50.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0cd\/2c5\/34b\/xbig_lq\/94bb50.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0cd\/2c5\/34b\/xbig\/94bb50.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/lilcalypso","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/lilcalypso","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/lilcalypso","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/lilcalypso?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/lilcalypso","stream_feed_url":"https:\/\/ded6479-edge64.bcvcdn.com\/hls\/stream_lilcalypso\/playlist.m3u8","chat_topic":"Hello Im Lilya, no tk? throw love!! Favorite vibrations - 111,112,222,333,444, 777 -Squirt! iIST - lilshmls","chat_topic_ru":"\u043f\u0440\u0438\u0432\u0435\u0442\u0438\u043a \u044f \u041b\u0438\u043b\u044f, \u043d\u0435\u0442 \u0442\u043a? \u043a\u0438\u0434\u0430\u0439 \u043b\u044e\u0431\u043e\u0432\u044c!! \u043b\u044e\u0431\u0438\u043c\u044b\u0435 \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u0438 - 111,112,222,333,444, 777-\u0441\u043a\u0432\u0438\u0440\u0442! \u0438\u043dc\u0442: lilshmls ","flags":["russian","english"],"online_time":16500,"vs_url_root":"https:\/\/db.bngpt.com\/stream_lilcalypso","chat_status":"public","marker":"average","gender":"female","members_count":388,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"KattyWilliams","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/KattyWilliams","display_name":"KattyWilliams","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d5\/382\/092\/6da426eff8aa6d260e9d8e7ff6d3eada_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d5\/382\/092\/6da426eff8aa6d260e9d8e7ff6d3eada_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d5\/382\/092\/6da426eff8aa6d260e9d8e7ff6d3eada_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d5\/382\/092\/6da426eff8aa6d260e9d8e7ff6d3eada_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d5\/382\/092\/xbig_lq\/87b919.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d5\/382\/092\/xbig_lq\/87b919.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d5\/382\/092\/xbig\/87b919.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/KattyWilliams","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/KattyWilliams","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/KattyWilliams","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/KattyWilliams?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/KattyWilliams","stream_feed_url":"https:\/\/ded4187-edge-us28.bcvcdn.com\/hls\/stream_KattyWilliams\/playlist.m3u8","chat_topic":"Heyy, ready to play and get horny together","chat_topic_ru":"\u00ad\u041c\u043e\u0438 \u0441\u0442\u043e\u043d\u044b \u0443\u0434\u043e\u0432\u043e\u043b\u044c\u0441\u0442\u0432\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0434\u043b\u044f \u0442\u0435\u0431\u044f \u0441\u0430\u043c\u044b\u043c\u0438 \u043b\u0443\u0447\u0448\u0438\u043c\u0438!","flags":["spanish","english"],"online_time":1827,"vs_url_root":"https:\/\/db.bngpt.com\/stream_KattyWilliams","chat_status":"public","marker":"average","gender":"female","members_count":20,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":1},{"username":"Ellise-sugar","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Ellise-sugar","display_name":"Ellise-sugar","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0cf\/22a\/039\/f9d25fdbe7f87b5a40bfa545b2504ed0_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0cf\/22a\/039\/f9d25fdbe7f87b5a40bfa545b2504ed0_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0cf\/22a\/039\/f9d25fdbe7f87b5a40bfa545b2504ed0_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0cf\/22a\/039\/f9d25fdbe7f87b5a40bfa545b2504ed0_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0cf\/22a\/039\/xbig_lq\/2cb671.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0cf\/22a\/039\/xbig_lq\/2cb671.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0cf\/22a\/039\/xbig\/2cb671.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Ellise-sugar","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Ellise-sugar","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Ellise-sugar","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Ellise-sugar?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Ellise-sugar","stream_feed_url":"https:\/\/ded6358-edge24.bcvcdn.com\/hls\/stream_Ellise-sugar\/playlist.m3u8","chat_topic":"Cum show","chat_topic_ru":"cum show","flags":["english","russian"],"online_time":1556,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Ellise-sugar","chat_status":"public","marker":"average","gender":"female","members_count":26,"vibratoy":true,"hd_cam":false,"social_networks":["snapchat"],"is_new":0},{"username":"Lilithmorningstar","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Lilithmorningstar","display_name":"Lilithmorningstar","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d1\/23c\/1ac\/50440fc0300eca55153258e229fcf57a_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d1\/23c\/1ac\/50440fc0300eca55153258e229fcf57a_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d1\/23c\/1ac\/50440fc0300eca55153258e229fcf57a_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d1\/23c\/1ac\/50440fc0300eca55153258e229fcf57a_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d1\/23c\/1ac\/xbig_lq\/0c80f5.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d1\/23c\/1ac\/xbig_lq\/0c80f5.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d1\/23c\/1ac\/xbig\/0c80f5.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Lilithmorningstar","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Lilithmorningstar","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Lilithmorningstar","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Lilithmorningstar?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Lilithmorningstar","stream_feed_url":"https:\/\/ded5487-edge-us13.bcvcdn.com\/hls\/stream_Lilithmorningstar\/playlist.m3u8","chat_topic":"inflate a balloon in me pussy","chat_topic_ru":"inflate a balloon in me pussy","flags":["spanish","english"],"online_time":1837,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Lilithmorningstar","chat_status":"public","marker":"average","gender":"female","members_count":11,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"Zayyda","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Zayyda","display_name":"Zayyda","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ae\/277\/210\/9079b8a8f47a336ee4e953741a968d34_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ae\/277\/210\/9079b8a8f47a336ee4e953741a968d34_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ae\/277\/210\/9079b8a8f47a336ee4e953741a968d34_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ae\/277\/210\/9079b8a8f47a336ee4e953741a968d34_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ae\/277\/210\/xbig_lq\/983039.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ae\/277\/210\/xbig_lq\/983039.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ae\/277\/210\/xbig\/983039.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Zayyda","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Zayyda","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Zayyda","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Zayyda?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Zayyda","stream_feed_url":"https:\/\/ded1163-edge30.bcvcdn.com\/hls\/stream_Zayyda\/playlist.m3u8","chat_topic":" I can be your wild and sexy girl, make me ride today PVT ON| Lush on| PVT ON","chat_topic_ru":" I can be your wild and sexy girl, make me ride today PVT ON| Lush on| PVT ON","flags":["spanish","english"],"online_time":8601,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Zayyda","chat_status":"public","marker":"average","gender":"female","members_count":13,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"Hubena-tgn","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/Hubena-tgn","display_name":"Hubena-tgn","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0d4\/1f2\/272\/60c2fa88c1d68772da67f1ff9d563829_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0d4\/1f2\/272\/60c2fa88c1d68772da67f1ff9d563829_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0d4\/1f2\/272\/60c2fa88c1d68772da67f1ff9d563829_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0d4\/1f2\/272\/60c2fa88c1d68772da67f1ff9d563829_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0d4\/1f2\/272\/xbig_lq\/acf4ef.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0d4\/1f2\/272\/xbig_lq\/acf4ef.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0d4\/1f2\/272\/xbig\/acf4ef.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/Hubena-tgn","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/Hubena-tgn","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/Hubena-tgn","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/Hubena-tgn?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/Hubena-tgn","stream_feed_url":"https:\/\/ded5487-edge-us13.bcvcdn.com\/hls\/stream_Hubena-tgn\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":9040,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Hubena-tgn","chat_status":"public","marker":"average","gender":"female","members_count":10,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"LilyColins","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/LilyColins","display_name":"LilyColins","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0cc\/072\/19c\/d7e8b145f89529208842348438993519_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0cc\/072\/19c\/d7e8b145f89529208842348438993519_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0cc\/072\/19c\/d7e8b145f89529208842348438993519_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0cc\/072\/19c\/d7e8b145f89529208842348438993519_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0cc\/072\/19c\/xbig_lq\/6b7e7d.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0cc\/072\/19c\/xbig_lq\/6b7e7d.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0cc\/072\/19c\/xbig\/6b7e7d.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/LilyColins","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/LilyColins","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/LilyColins","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/LilyColins?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/LilyColins","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_LilyColins\/playlist.m3u8","chat_topic":"do not take me to pvt if u dont want to feel stone in your pants ^^ hehe","chat_topic_ru":"do not take me to pvt if u dont want to feel stone in your pants ^^ hehe","flags":["latvian","english"],"online_time":17547,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LilyColins","chat_status":"public","marker":"average","gender":"female","members_count":11,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"NiaSalvatore","profile_page_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/profile\/NiaSalvatore","display_name":"NiaSalvatore","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ca\/3b6\/2c0\/3b42a6169832e27b38a6a57de9a4c0a0_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ca\/3b6\/2c0\/3b42a6169832e27b38a6a57de9a4c0a0_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ca\/3b6\/2c0\/3b42a6169832e27b38a6a57de9a4c0a0_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ca\/3b6\/2c0\/3b42a6169832e27b38a6a57de9a4c0a0_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ca\/3b6\/2c0\/xbig_lq\/d5e98f.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ca\/3b6\/2c0\/xbig_lq\/d5e98f.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ca\/3b6\/2c0\/xbig\/d5e98f.jpg"},"is_mobile":false,"chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat-popup\/NiaSalvatore","random_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=804908&ps=sticky_banner&csurl=http:\/\/azporncams.com\/NiaSalvatore","direct_chat_url":"http:\/\/azporncams.com\/chat-popup\/NiaSalvatore","chat_url_on_home_page_for_popunder":"http:\/\/azporncams.com\/NiaSalvatore?https://bongacams.com/track?c=804908&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/azporncams.com\/NiaSalvatore","stream_feed_url":"https:\/\/ded5986-edge-us22.bcvcdn.com\/hls\/stream_NiaSalvatore\/playlist.m3u8","chat_topic":"\u2b50\u2665Stick your finger in my pussy and feel how I wet it \u2665 \u2665 At goal: Fuck pussy + Blow Job \u2665 @remain tks left \u2665 Ig: niasalvatore5 \u2665","chat_topic_ru":"Spank me until I cum from pleasure \u2665\u2665 At goal: Fuck pussy + Blow Job \u2665 @remain tks left \u2665 Ig: niasalvatore5 \u2665","flags":["english","spanish"],"online_time":2709,"vs_url_root":"https:\/\/db.bngpt.com\/stream_NiaSalvatore","chat_status":"public","marker":"average","gender":"female","members_count":18,"vibratoy":false,"hd_cam":false,"social_networks":["instagram"],"is_new":0}]}'); var geoEnabled = '1'; var autoUpdate = '0'; 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 = '3600000'; var modelData = { avatarUrl: '//i.wlicdn.com/042/23b/031/ba018100646a157225f7206ab532c52e_thumb_medium.jpg', snapshotUrl: '//i.wlicdn.com/live/042/23b/031/xbig/a38116.jpg', username: 'meow', displayname: 'Lynx', vsUrlRoot: 'https://db.bngpt.com/stream_meow', 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 = '
'; document.body.appendChild(template); onLoad(); } /***/ }), /***/ 45: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.randomInteger = exports.topmodels = exports.shuffle = exports.arrayUnique = void 0; function arrayUnique(array) { var usernames = []; var result = []; for (var i = 0; i < array.length; i++) { if (!(usernames.indexOf(array[i].username) + 1)) { usernames.push(array[i].username); result.push(array[i]); } } usernames = null; return result; } exports.arrayUnique = arrayUnique; function shuffle(arr) { for (var j = void 0, x = void 0, i = arr.length; i; j = parseInt(Math.random() * i), x = arr[--i], arr[i] = arr[j], arr[j] = x) ; return arr; } exports.shuffle = shuffle; function topmodels(models) { var levels = { amazing: 5, nice: 4, average: 3, bad: 2, ugly: 1 }; var getLevel = function (performer) { return performer.marker && levels.hasOwnProperty(performer.marker) ? levels[performer.marker] : 0; }; models.sort(function (a, b) { var levelA = getLevel(a); var levelB = getLevel(b); if (levelA > levelB) { return -1; } else if (levelB > levelA) { return 1; } return 0; }); return models; } exports.topmodels = topmodels; function randomInteger(min, max) { var rand = min - 0.5 + Math.random() * (max - min + 1); return Math.abs(Math.round(rand)); } exports.randomInteger = randomInteger; /***/ }), /***/ 46: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.iOS = exports.deviceDetect = void 0; function deviceDetect() { return /Android|webOS|iPhone|iPad|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent); } exports.deviceDetect = deviceDetect; function iOS() { return [ 'iPad Simulator', 'iPhone Simulator', 'iPod Simulator', 'iPad', 'iPhone', 'iPod' ].indexOf(navigator.platform) > -1 || navigator.userAgent.indexOf('Mac') > -1; } exports.iOS = iOS; /***/ }), /***/ 5: /***/ (function(module, exports, __webpack_require__) { "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ImagePlayer = void 0; var ImagePlayer = (function () { function ImagePlayer(el, path, options) { this.frameCount = 1; this.loadTimeout = 400; this.el = el; this.el.innerHTML = ''; this.canvasEl = document.createElement('canvas'); this.el.appendChild(this.canvasEl); this.pathToFrames = path; this.imgType = options && options.imgType || 'jpg'; this.frameRatio = options && options.frameRatio || 3 / 4; if (this.pathToFrames) { this.loadFrame(); } } ImagePlayer.prototype.stopRequests = function () { clearTimeout(this.loadTimer); this.pathToFrames = null; }; ImagePlayer.prototype.updatePath = function (path) { clearTimeout(this.loadTimer); this.frameCount = 1; this.pathToFrames = path; if (this.pathToFrames) { this.loadFrame(); } }; ImagePlayer.prototype.loadFrame = function () { var _this = this; var img = new Image(); var stamp = Date.now(); img.onload = function () { _this.drawFrame(img); _this.waitLoadTimeout(Date.now() - stamp); }; img.onerror = function () { if (_this.frameCount === 1) { _this.frameCount++; } else { _this.frameCount = 1; } _this.waitLoadTimeout(Date.now() - stamp); }; img.src = "".concat(this.pathToFrames, "/").concat(this.frameCount, ".").concat(this.imgType); }; ImagePlayer.prototype.waitLoadTimeout = function (loadTime) { var _this = this; if (this.pathToFrames) { clearTimeout(this.loadTimer); this.loadTimer = window.setTimeout(function () { _this.loadFrame(); }, this.loadTimeout - loadTime); } }; ImagePlayer.prototype.drawFrame = function (image) { var displayContext = this.canvasEl.getContext('2d'); this.el.style.width = ''; this.el.style.height = ''; this.el.style.marginLeft = ''; var elWidth = this.el.offsetWidth; var elHeight = this.el.offsetHeight; var newWidth; var newHeight; if (elWidth < elHeight) { newHeight = elHeight; newWidth = elHeight / this.frameRatio; } else { newWidth = elWidth; newHeight = elWidth * this.frameRatio * 1.1; } this.frameCount++; this.canvasEl.width = newWidth; this.canvasEl.height = newHeight; this.el.style.width = "".concat(newWidth, "px"); this.el.style.height = "".concat(newHeight, "px"); if (newWidth > elWidth) { this.el.style.marginLeft = "-".concat((newWidth - elWidth) / 2, "px"); } if (displayContext != null) { try { displayContext.drawImage(image, 0, 0, image.width, image.height, 0, 0, this.el.offsetWidth, this.el.offsetHeight); } catch (e) { } } }; ; return ImagePlayer; }()); exports.ImagePlayer = ImagePlayer; /***/ }) /******/ });