/******/ (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=666639&ps=sticky_banner&csurl=https://bongacams.com/%model_username%%3Fclassic%3Doff'; var size = '200x200'; var showLogo = '1'; var showStatus = '1'; var contentType = 'random'; var originalPosition = { left: '79%', top: '0%' }; var modelsData = JSON.parse('{"geo_models":[],"top_models":[{"username":"-Lana-Chester-","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/-Lana-Chester-","display_name":"-Lana-Chester-","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b9\/0e8\/11b\/64d6153d0eb32a8e902433dd2213c67e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b9\/0e8\/11b\/64d6153d0eb32a8e902433dd2213c67e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b9\/0e8\/11b\/64d6153d0eb32a8e902433dd2213c67e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b9\/0e8\/11b\/64d6153d0eb32a8e902433dd2213c67e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b9\/0e8\/11b\/xbig_lq\/fbc70f.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b9\/0e8\/11b\/xbig_lq\/fbc70f.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b9\/0e8\/11b\/xbig\/fbc70f.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/-Lana-Chester-","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/-Lana-Chester-","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/-Lana-Chester-","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/-Lana-Chester-?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/-Lana-Chester-","stream_feed_url":"https:\/\/ded1080-edge28.bcvcdn.com\/hls\/stream_-Lana-Chester-\/playlist.m3u8","chat_topic":"Meow, I'm Alena) Extreme things are what everyone loves. So welcome)) Love from 2 tokens. Low vibration 2-20 tk, Average 21-50, High 51-200, Favorite - 230, killer vibration - 666, @total \u2013 countdown: @sofar collected, @remain left for driving courses","chat_topic_ru":"\u041c\u044f\u0443 \u044f \u0410\u043b\u0451\u043d\u0430) \u042d\u043a\u0441\u0442\u0440\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0435 \u0448\u0442\u0443\u0447\u043a\u0438-\u0442\u043e, \u0447\u0442\u043e \u043b\u044e\u0431\u044f\u0442 \u0432\u0441\u0435.\u0422\u0430\u043a \u0447\u0442\u043e \u0434\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c))\u041b\u043e\u0432\u0435\u043d\u0441 \u043e\u0442 2\u0445 \u0442\u043e\u043a\u0435\u043d\u043e\u0432.\u041d\u0438\u0437\u043a\u0430\u044f \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f 2-20 \u0442\u043a,\u0421\u0440\u0435\u0434\u043d\u044f\u044f 21-50,\u0412\u044b\u0441\u043e\u043a\u0430\u044f 51-200,\u041b\u044e\u0431\u0438\u043c\u0430\u044f - 230,\u0443\u0431\u0438\u0439\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f - 666,@total \u2013 \u043e\u0431\u0440\u0430\u0442\u043d\u044b\u0439 \u043e\u0442\u0441\u0447\u0451\u0442: @sofar \u0441\u043e\u0431\u0440\u0430\u043d\u043e \u043d\u0430 \u043a\u0443\u0440\u0441\u044b \u043f\u043e \u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044e","flags":["russian","english"],"online_time":6783,"vs_url_root":"https:\/\/db.bngpt.com\/stream_-Lana-Chester-","chat_status":"public","marker":"nice","gender":"female","members_count":2112,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"OlgaMiss","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/OlgaMiss","display_name":"OlgaMiss","display_age":"29","profile_images":{"profile_image":"\/\/i.wlicdn.com\/036\/1f7\/3b0\/6c469e5f2719badaf3d699fe236f042d_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/036\/1f7\/3b0\/6c469e5f2719badaf3d699fe236f042d_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/036\/1f7\/3b0\/6c469e5f2719badaf3d699fe236f042d_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/036\/1f7\/3b0\/6c469e5f2719badaf3d699fe236f042d_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/036\/1f7\/3b0\/xbig_lq\/0d22b0.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/036\/1f7\/3b0\/xbig_lq\/0d22b0.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/036\/1f7\/3b0\/xbig\/0d22b0.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/OlgaMiss","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/OlgaMiss","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/OlgaMiss","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/OlgaMiss?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/OlgaMiss","stream_feed_url":"https:\/\/ded6895-edge4.bcvcdn.com\/hls\/stream_OlgaMiss\/playlist.m3u8","chat_topic":"Hi, I am Olga. Welcome to my room and lets have fun! ","chat_topic_ru":"\u042f \u041e\u043b\u044c\u0433\u0430. \u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0438 \u043d\u0430\u0447\u043d\u0435\u043c \u0432\u0435\u0441\u0435\u043b\u044c\u0435! ","flags":["russian","english"],"online_time":4027,"vs_url_root":"https:\/\/db.bngpt.com\/stream_OlgaMiss","chat_status":"public","marker":"nice","gender":"female","members_count":160,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"ingridblondy94","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/ingridblondy94","display_name":"Moona-One","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0aa\/315\/29d\/a9838e330748439ec04a357d588cbd53_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0aa\/315\/29d\/a9838e330748439ec04a357d588cbd53_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0aa\/315\/29d\/a9838e330748439ec04a357d588cbd53_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0aa\/315\/29d\/a9838e330748439ec04a357d588cbd53_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig_lq\/721011.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig_lq\/721011.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig\/721011.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/ingridblondy94","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/ingridblondy94","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/ingridblondy94","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/ingridblondy94?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/ingridblondy94","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_ingridblondy94\/playlist.m3u8","chat_topic":"make me horny! squirt show countdown end","chat_topic_ru":"make me horny! squirt show countdown end","flags":["english","german"],"online_time":17417,"vs_url_root":"https:\/\/db.bngpt.com\/stream_ingridblondy94","chat_status":"public","marker":"nice","gender":"female","members_count":5491,"vibratoy":true,"hd_cam":false,"social_networks":["twitter","snapchat"],"is_new":0},{"username":"AnnaDaisy1","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AnnaDaisy1","display_name":"AnnaPopy","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig_lq\/cc3ad2.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig_lq\/cc3ad2.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig\/cc3ad2.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AnnaDaisy1","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AnnaDaisy1","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AnnaDaisy1","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AnnaDaisy1?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AnnaDaisy1","stream_feed_url":"https:\/\/ded6443-edge12.bcvcdn.com\/hls\/stream_AnnaDaisy1\/playlist.m3u8","chat_topic":"Show in privates \u2665 Tokens only in free chat NOT PM!!!\u2665 ","chat_topic_ru":"\u0428\u043e\u0443 \u0432 \u043f\u0440\u0438\u0432\u0430\u0442\u0430\u0445 \u2665 \u0422\u043e\u043a\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u041e\u0411\u0429\u0418\u0419 \u0447\u0430\u0442 !!! \u2665","flags":["russian","english"],"online_time":2806,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AnnaDaisy1","chat_status":"public","marker":"nice","gender":"female","members_count":744,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"Meegan","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Meegan","display_name":"Meegan","display_age":"32","profile_images":{"profile_image":"\/\/i.wlicdn.com\/027\/1b6\/26c\/eb3cf87c846f706cdf7f6c2399a9af7b_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/027\/1b6\/26c\/eb3cf87c846f706cdf7f6c2399a9af7b_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/027\/1b6\/26c\/eb3cf87c846f706cdf7f6c2399a9af7b_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/027\/1b6\/26c\/eb3cf87c846f706cdf7f6c2399a9af7b_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/027\/1b6\/26c\/xbig_lq\/59b89c.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/027\/1b6\/26c\/xbig_lq\/59b89c.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/027\/1b6\/26c\/xbig\/59b89c.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Meegan","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Meegan","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Meegan","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Meegan?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Meegan","stream_feed_url":"https:\/\/ded5992-edge-us24.bcvcdn.com\/hls\/stream_Meegan\/playlist.m3u8","chat_topic":"Hello! Put love & Let\u00b4s have fun \u2665 Pvt & Tip menu are ON| 33-44-77-111 are my favorite levels|Can you make me cum today","chat_topic_ru":"Hello! Put love & Let\u00b4s have fun \u2665 Pvt & Tip menu are ON| 33-44-77-111 are my favorite levels|Can you make me cum today","flags":["english","spanish"],"online_time":4111,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Meegan","chat_status":"public","marker":"nice","gender":"female","members_count":309,"vibratoy":true,"hd_cam":true,"social_networks":["instagram","twitter","snapchat","tiktok"],"is_new":0},{"username":"fitprincess","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/fitprincess","display_name":"fitprincess","display_age":"30","profile_images":{"profile_image":"\/\/i.wlicdn.com\/022\/32b\/176\/9f9ab8ebf6e8bc094104eeeb1a94440a_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/022\/32b\/176\/9f9ab8ebf6e8bc094104eeeb1a94440a_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/022\/32b\/176\/9f9ab8ebf6e8bc094104eeeb1a94440a_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/022\/32b\/176\/9f9ab8ebf6e8bc094104eeeb1a94440a_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/022\/32b\/176\/xbig_lq\/b00360.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/022\/32b\/176\/xbig_lq\/b00360.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/022\/32b\/176\/xbig\/b00360.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/fitprincess","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/fitprincess","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/fitprincess","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/fitprincess?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/fitprincess","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_fitprincess\/playlist.m3u8","chat_topic":"Lovense in my ASS, tip me some vibes and make me SQUIRT !! #bigtits #skinny #squirt #anal #ass #doublepenetration #cum #lovense","chat_topic_ru":"Lovense in my ASS, tip me some vibes and make me SQUIRT !! #bigtits #skinny #squirt #anal #ass #doublepenetration #cum #lovense","flags":["english","french"],"online_time":6283,"vs_url_root":"https:\/\/db.bngpt.com\/stream_fitprincess","chat_status":"public","marker":"nice","gender":"female","members_count":473,"vibratoy":true,"hd_cam":true,"social_networks":["instagram"],"is_new":0},{"username":"AshleysinnX","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AshleysinnX","display_name":"AshleysinnX","display_age":"25","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ae\/1f2\/35f\/03fccd1637ff59f364e869bb7624743a_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ae\/1f2\/35f\/03fccd1637ff59f364e869bb7624743a_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ae\/1f2\/35f\/03fccd1637ff59f364e869bb7624743a_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ae\/1f2\/35f\/03fccd1637ff59f364e869bb7624743a_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ae\/1f2\/35f\/xbig_lq\/35f7b9.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ae\/1f2\/35f\/xbig_lq\/35f7b9.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ae\/1f2\/35f\/xbig\/35f7b9.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AshleysinnX","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AshleysinnX","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AshleysinnX","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AshleysinnX?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AshleysinnX","stream_feed_url":"https:\/\/ded6740-edge20.bcvcdn.com\/hls\/stream_AshleysinnX\/playlist.m3u8","chat_topic":"Pin me down, kiss me hard, look me in the eyes and FUCK ME like you've never fucked someone before !","chat_topic_ru":"Pin me down, kiss me hard, look me in the eyes and FUCK ME like you've never fucked someone before !","flags":["romanian","english"],"online_time":8816,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AshleysinnX","chat_status":"public","marker":"nice","gender":"female","members_count":674,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"--Tati--","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/--Tati--","display_name":"Tina-","display_age":"29","profile_images":{"profile_image":"\/\/i.wlicdn.com\/02c\/1a2\/20b\/9202949d6cbb0766d4978bd5024b480e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/02c\/1a2\/20b\/9202949d6cbb0766d4978bd5024b480e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/02c\/1a2\/20b\/9202949d6cbb0766d4978bd5024b480e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/02c\/1a2\/20b\/9202949d6cbb0766d4978bd5024b480e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/02c\/1a2\/20b\/xbig_lq\/bf000a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/02c\/1a2\/20b\/xbig_lq\/bf000a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/02c\/1a2\/20b\/xbig\/bf000a.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/--Tati--","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/--Tati--","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/--Tati--","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/--Tati--?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/--Tati--","stream_feed_url":"https:\/\/ded6443-edge12.bcvcdn.com\/hls\/stream_--Tati--\/playlist.m3u8","chat_topic":"countdown to squirt @remain orgasm wet pussy, ultra random 44 - 29","chat_topic_ru":"\u043e\u0442\u0441\u0447\u0435\u0442 @remain - \u0441\u043a\u0432\u0438\u0440\u0442 \u0441\u043e\u0447\u043d\u044b\u0439 \u2764 \u0410\u041a\u0426\u0418\u042f 2 \u0442\u043e\u043a \u0443\u043b\u044c\u0442\u0440\u0430 \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f) \u043b\u044e\u0431\u0438\u043c\u0430\u044f \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f 77, \u0440\u0430\u043d\u0434\u043e\u043c-29 ","flags":["russian","english"],"online_time":3364,"vs_url_root":"https:\/\/db.bngpt.com\/stream_--Tati--","chat_status":"public","marker":"nice","gender":"female","members_count":274,"vibratoy":true,"hd_cam":true,"social_networks":["instagram"],"is_new":0},{"username":"NatyDesiree","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/NatyDesiree","display_name":"NatyDesiree","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ae\/394\/3d9\/b0e5de5903eda8a3daf1f8c573c272e7_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ae\/394\/3d9\/b0e5de5903eda8a3daf1f8c573c272e7_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ae\/394\/3d9\/b0e5de5903eda8a3daf1f8c573c272e7_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ae\/394\/3d9\/b0e5de5903eda8a3daf1f8c573c272e7_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ae\/394\/3d9\/xbig_lq\/32728e.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ae\/394\/3d9\/xbig_lq\/32728e.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ae\/394\/3d9\/xbig\/32728e.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/NatyDesiree","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/NatyDesiree","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/NatyDesiree","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/NatyDesiree?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/NatyDesiree","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_NatyDesiree\/playlist.m3u8","chat_topic":"Indulge your Naughty Desires with NatyDesiree! Join the Fun Now!","chat_topic_ru":"Indulge your Naughty Desires with NatyDesiree! Join the Fun Now!","flags":["english","romanian"],"online_time":4832,"vs_url_root":"https:\/\/db.bngpt.com\/stream_NatyDesiree","chat_status":"public","marker":"nice","gender":"female","members_count":349,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"PrettyMoon","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/PrettyMoon","display_name":"PrettyLuna","display_age":"18","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b9\/1f1\/22f\/31277954a3eabfc928ba3dcfc5ed6493_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b9\/1f1\/22f\/31277954a3eabfc928ba3dcfc5ed6493_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b9\/1f1\/22f\/31277954a3eabfc928ba3dcfc5ed6493_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b9\/1f1\/22f\/31277954a3eabfc928ba3dcfc5ed6493_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b9\/1f1\/22f\/xbig_lq\/adf8c3.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b9\/1f1\/22f\/xbig_lq\/adf8c3.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b9\/1f1\/22f\/xbig\/adf8c3.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/PrettyMoon","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/PrettyMoon","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/PrettyMoon","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/PrettyMoon?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/PrettyMoon","stream_feed_url":"https:\/\/ded5985-edge-us21.bcvcdn.com\/hls\/stream_PrettyMoon\/playlist.m3u8","chat_topic":"Welcome to my chat room guys!","chat_topic_ru":"Welcome to my chat room guys!","flags":["spanish","english"],"online_time":757,"vs_url_root":"https:\/\/db.bngpt.com\/stream_PrettyMoon","chat_status":"public","marker":"average","gender":"female","members_count":7,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"ladyzlata","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/ladyzlata","display_name":"hotzlata","display_age":"47","profile_images":{"profile_image":"\/\/i.wlicdn.com\/04a\/00e\/287\/c9baef062ae383f2a6b5f3c4fcb02d99_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/04a\/00e\/287\/c9baef062ae383f2a6b5f3c4fcb02d99_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/04a\/00e\/287\/c9baef062ae383f2a6b5f3c4fcb02d99_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/04a\/00e\/287\/c9baef062ae383f2a6b5f3c4fcb02d99_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/04a\/00e\/287\/xbig_lq\/88faca.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/04a\/00e\/287\/xbig_lq\/88faca.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/04a\/00e\/287\/xbig\/88faca.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/ladyzlata","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/ladyzlata","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/ladyzlata","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/ladyzlata?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/ladyzlata","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_ladyzlata\/playlist.m3u8","chat_topic":"c2c and suck 100 LIKE VIBRO 38 like vibro 11223355100 dream 301 tok ","chat_topic_ru":"c2c 100 tok liubimaioa vibro 38) lubimie vibro 112255100...mecta 301 tok","flags":["russian","english"],"online_time":6023,"vs_url_root":"https:\/\/db.bngpt.com\/stream_ladyzlata","chat_status":"public","marker":"average","gender":"female","members_count":88,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"ShivaMurray","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/ShivaMurray","display_name":"ShivaMurray","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b0\/3d2\/399\/5036364cc5afe7b2a2c3da2a46c20bec_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b0\/3d2\/399\/5036364cc5afe7b2a2c3da2a46c20bec_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b0\/3d2\/399\/5036364cc5afe7b2a2c3da2a46c20bec_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b0\/3d2\/399\/5036364cc5afe7b2a2c3da2a46c20bec_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b0\/3d2\/399\/xbig_lq\/98ef9f.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b0\/3d2\/399\/xbig_lq\/98ef9f.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b0\/3d2\/399\/xbig\/98ef9f.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/ShivaMurray","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/ShivaMurray","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/ShivaMurray","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/ShivaMurray?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/ShivaMurray","stream_feed_url":"https:\/\/ded6740-edge20.bcvcdn.com\/hls\/stream_ShivaMurray\/playlist.m3u8","chat_topic":"@total for lush control 5 mins@remain ","chat_topic_ru":"@total \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u044c \u0438\u0433\u0440\u0443\u0448\u043a\u0438 \u0434\u043b\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0432\u0448\u0435\u0433\u043e \u0446\u0435\u043b\u044c))@remain ","flags":["russian","english"],"online_time":11176,"vs_url_root":"https:\/\/db.bngpt.com\/stream_ShivaMurray","chat_status":"public","marker":"above_average","gender":"female","members_count":37,"vibratoy":true,"hd_cam":false,"social_networks":["instagram"],"is_new":0},{"username":"11mollysweet","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/11mollysweet","display_name":"11mollysweet","display_age":"26","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b9\/387\/2ff\/bf9b88e90b2ac11e96875717a27b2cda_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b9\/387\/2ff\/bf9b88e90b2ac11e96875717a27b2cda_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b9\/387\/2ff\/bf9b88e90b2ac11e96875717a27b2cda_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b9\/387\/2ff\/bf9b88e90b2ac11e96875717a27b2cda_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b9\/387\/2ff\/xbig_lq\/9951c5.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b9\/387\/2ff\/xbig_lq\/9951c5.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b9\/387\/2ff\/xbig\/9951c5.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/11mollysweet","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/11mollysweet","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/11mollysweet","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/11mollysweet?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/11mollysweet","stream_feed_url":"https:\/\/ded4184-edge-us19.bcvcdn.com\/hls\/stream_11mollysweet\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":14437,"vs_url_root":"https:\/\/db.bngpt.com\/stream_11mollysweet","chat_status":"public","marker":"average","gender":"female","members_count":3,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"AmnesiaXWax","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AmnesiaXWax","display_name":"AmnesiaXWax","display_age":"28","profile_images":{"profile_image":"\/\/i.wlicdn.com\/05e\/3aa\/151\/791e763356c8b694477b06667d42753b_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/05e\/3aa\/151\/791e763356c8b694477b06667d42753b_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/05e\/3aa\/151\/791e763356c8b694477b06667d42753b_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/05e\/3aa\/151\/791e763356c8b694477b06667d42753b_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/05e\/3aa\/151\/xbig_lq\/ea3aab.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/05e\/3aa\/151\/xbig_lq\/ea3aab.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/05e\/3aa\/151\/xbig\/ea3aab.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AmnesiaXWax","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AmnesiaXWax","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AmnesiaXWax","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AmnesiaXWax?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AmnesiaXWax","stream_feed_url":"https:\/\/ded1163-edge30.bcvcdn.com\/hls\/stream_AmnesiaXWax\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["russian","english"],"online_time":818,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AmnesiaXWax","chat_status":"public","marker":"average","gender":"female","members_count":99,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"emilihornyx","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/emilihornyx","display_name":"emilihornyx","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/098\/0b6\/0f2\/f929c85bdc540f16a6c5b98712ff89c4_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/098\/0b6\/0f2\/f929c85bdc540f16a6c5b98712ff89c4_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/098\/0b6\/0f2\/f929c85bdc540f16a6c5b98712ff89c4_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/098\/0b6\/0f2\/f929c85bdc540f16a6c5b98712ff89c4_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/098\/0b6\/0f2\/xbig_lq\/f04971.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/098\/0b6\/0f2\/xbig_lq\/f04971.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/098\/0b6\/0f2\/xbig\/f04971.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/emilihornyx","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/emilihornyx","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/emilihornyx","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/emilihornyx?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/emilihornyx","stream_feed_url":"https:\/\/ded4184-edge-us19.bcvcdn.com\/hls\/stream_emilihornyx\/playlist.m3u8","chat_topic":"I want my pussy wet put your finger in my clean ass and give me penis, can you shout your name? \u2665 \u265b","chat_topic_ru":"I want my pussy wet put your finger in my clean ass and give me penis, can you shout your name? \u2665 \u265b","flags":["spanish","french"],"online_time":6141,"vs_url_root":"https:\/\/db.bngpt.com\/stream_emilihornyx","chat_status":"public","marker":null,"gender":"female","members_count":4,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"tiny-whore","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/tiny-whore","display_name":"tiny-whore","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/09f\/266\/24e\/ed76e14f3b9ff06a4ea1139d8e94772c_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/09f\/266\/24e\/ed76e14f3b9ff06a4ea1139d8e94772c_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/09f\/266\/24e\/ed76e14f3b9ff06a4ea1139d8e94772c_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/09f\/266\/24e\/ed76e14f3b9ff06a4ea1139d8e94772c_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/09f\/266\/24e\/xbig_lq\/7c24fd.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/09f\/266\/24e\/xbig_lq\/7c24fd.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/09f\/266\/24e\/xbig\/7c24fd.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/tiny-whore","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/tiny-whore","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/tiny-whore","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/tiny-whore?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/tiny-whore","stream_feed_url":"https:\/\/ded4160-edge-us4.bcvcdn.com\/hls\/stream_tiny-whore\/playlist.m3u8","chat_topic":"really naughty and juicy! just want to find a nice hard cock to play! @total - @sofar : @remain ","chat_topic_ru":"I am a very juicy and naughty girl, do you want to encourage yourself to play @total @remain ","flags":["english","russian"],"online_time":11830,"vs_url_root":"https:\/\/db.bngpt.com\/stream_tiny-whore","chat_status":"public","marker":"average","gender":"female","members_count":11,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"LolaMustaine","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/LolaMustaine","display_name":"LolaMustaine","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/092\/2ac\/1d2\/e769c93209066c9b294054e5f262836e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/092\/2ac\/1d2\/e769c93209066c9b294054e5f262836e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/092\/2ac\/1d2\/e769c93209066c9b294054e5f262836e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/092\/2ac\/1d2\/e769c93209066c9b294054e5f262836e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/092\/2ac\/1d2\/xbig_lq\/cc38f7.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/092\/2ac\/1d2\/xbig_lq\/cc38f7.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/092\/2ac\/1d2\/xbig\/cc38f7.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/LolaMustaine","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/LolaMustaine","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/LolaMustaine","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/LolaMustaine?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/LolaMustaine","stream_feed_url":"https:\/\/ded4184-edge-us19.bcvcdn.com\/hls\/stream_LolaMustaine\/playlist.m3u8","chat_topic":"IF I SAY JUMP U SAY HOW HIGH I DEMAND YOU HERE SLAVE ARE U READY TO ORDER YOU? PVT ON TO BE PUNISH #redhead #findom #mistress #face #humillation #tattoo","chat_topic_ru":"IF I SAY JUMP U SAY HOW HIGH I DEMAND YOU HERE SLAVE ARE U READY TO ORDER YOU? PVT ON TO BE PUNISH #redhead #findom #mistress #face #humillation #tattoo","flags":["english","french"],"online_time":3115,"vs_url_root":"https:\/\/db.bngpt.com\/stream_LolaMustaine","chat_status":"public","marker":"average","gender":"female","members_count":5,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"Evasummer1","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Evasummer1","display_name":"Evasummer1","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0a9\/0e2\/2c5\/eefa3890261b27434fff8a9cb2f70a13_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0a9\/0e2\/2c5\/eefa3890261b27434fff8a9cb2f70a13_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0a9\/0e2\/2c5\/eefa3890261b27434fff8a9cb2f70a13_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0a9\/0e2\/2c5\/eefa3890261b27434fff8a9cb2f70a13_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0a9\/0e2\/2c5\/xbig_lq\/21cf65.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0a9\/0e2\/2c5\/xbig_lq\/21cf65.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0a9\/0e2\/2c5\/xbig\/21cf65.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Evasummer1","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Evasummer1","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Evasummer1","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Evasummer1?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Evasummer1","stream_feed_url":"https:\/\/ded5985-edge-us21.bcvcdn.com\/hls\/stream_Evasummer1\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":565,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Evasummer1","chat_status":"public","marker":"average","gender":"female","members_count":6,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"cylielee","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/cylielee","display_name":"cylielee","display_age":"19","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b3\/196\/370\/e00121cba9a7d0e6a9e09512426740d9_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b3\/196\/370\/e00121cba9a7d0e6a9e09512426740d9_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b3\/196\/370\/e00121cba9a7d0e6a9e09512426740d9_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b3\/196\/370\/e00121cba9a7d0e6a9e09512426740d9_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b3\/196\/370\/xbig_lq\/41f7e1.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b3\/196\/370\/xbig_lq\/41f7e1.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b3\/196\/370\/xbig\/41f7e1.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/cylielee","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/cylielee","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/cylielee","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/cylielee?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/cylielee","stream_feed_url":"https:\/\/ded4037-edge-us66.bcvcdn.com\/hls\/stream_cylielee\/playlist.m3u8","chat_topic":"\u2764\ufe0fGlad to see you in my room\u2764\ufe0f","chat_topic_ru":"\u2764\ufe0fGlad to see you in my room\u2764\ufe0f","flags":["english","spanish"],"online_time":6768,"vs_url_root":"https:\/\/db.bngpt.com\/stream_cylielee","chat_status":"public","marker":"average","gender":"female","members_count":16,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"NaughtyBlond4","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/NaughtyBlond4","display_name":"NaughtyBlond4","display_age":"21","profile_images":{"profile_image":"\/\/i.wlicdn.com\/054\/256\/198\/68c3da5a10bbf46a44af5e9e187780ff_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/054\/256\/198\/68c3da5a10bbf46a44af5e9e187780ff_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/054\/256\/198\/68c3da5a10bbf46a44af5e9e187780ff_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/054\/256\/198\/68c3da5a10bbf46a44af5e9e187780ff_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/054\/256\/198\/xbig_lq\/06c59a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/054\/256\/198\/xbig_lq\/06c59a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/054\/256\/198\/xbig\/06c59a.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/NaughtyBlond4","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/NaughtyBlond4","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/NaughtyBlond4","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/NaughtyBlond4?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/NaughtyBlond4","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_NaughtyBlond4\/playlist.m3u8","chat_topic":"Guys )just have fun )ask about request if you have them!","chat_topic_ru":"Guys )just have fun )ask about request if you have them!","flags":["ukrainian","english"],"online_time":101,"vs_url_root":"https:\/\/db.bngpt.com\/stream_NaughtyBlond4","chat_status":"public","marker":"average","gender":"female","members_count":65,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0}],"initial_models":[{"username":"fitprincess","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/fitprincess","display_name":"fitprincess","display_age":"30","profile_images":{"profile_image":"\/\/i.wlicdn.com\/022\/32b\/176\/9f9ab8ebf6e8bc094104eeeb1a94440a_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/022\/32b\/176\/9f9ab8ebf6e8bc094104eeeb1a94440a_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/022\/32b\/176\/9f9ab8ebf6e8bc094104eeeb1a94440a_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/022\/32b\/176\/9f9ab8ebf6e8bc094104eeeb1a94440a_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/022\/32b\/176\/xbig_lq\/b00360.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/022\/32b\/176\/xbig_lq\/b00360.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/022\/32b\/176\/xbig\/b00360.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/fitprincess","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/fitprincess","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/fitprincess","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/fitprincess?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/fitprincess","stream_feed_url":"https:\/\/ded7120-edge60.bcvcdn.com\/hls\/stream_fitprincess\/playlist.m3u8","chat_topic":"Lovense in my ASS, tip me some vibes and make me SQUIRT !! #bigtits #skinny #squirt #anal #ass #doublepenetration #cum #lovense","chat_topic_ru":"Lovense in my ASS, tip me some vibes and make me SQUIRT !! #bigtits #skinny #squirt #anal #ass #doublepenetration #cum #lovense","flags":["english","french"],"online_time":6283,"vs_url_root":"https:\/\/db.bngpt.com\/stream_fitprincess","chat_status":"public","marker":"nice","gender":"female","members_count":473,"vibratoy":true,"hd_cam":true,"social_networks":["instagram"],"is_new":0},{"username":"OlgaMiss","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/OlgaMiss","display_name":"OlgaMiss","display_age":"29","profile_images":{"profile_image":"\/\/i.wlicdn.com\/036\/1f7\/3b0\/6c469e5f2719badaf3d699fe236f042d_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/036\/1f7\/3b0\/6c469e5f2719badaf3d699fe236f042d_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/036\/1f7\/3b0\/6c469e5f2719badaf3d699fe236f042d_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/036\/1f7\/3b0\/6c469e5f2719badaf3d699fe236f042d_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/036\/1f7\/3b0\/xbig_lq\/0d22b0.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/036\/1f7\/3b0\/xbig_lq\/0d22b0.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/036\/1f7\/3b0\/xbig\/0d22b0.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/OlgaMiss","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/OlgaMiss","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/OlgaMiss","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/OlgaMiss?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/OlgaMiss","stream_feed_url":"https:\/\/ded6895-edge4.bcvcdn.com\/hls\/stream_OlgaMiss\/playlist.m3u8","chat_topic":"Hi, I am Olga. Welcome to my room and lets have fun! ","chat_topic_ru":"\u042f \u041e\u043b\u044c\u0433\u0430. \u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c \u0438 \u043d\u0430\u0447\u043d\u0435\u043c \u0432\u0435\u0441\u0435\u043b\u044c\u0435! ","flags":["russian","english"],"online_time":4027,"vs_url_root":"https:\/\/db.bngpt.com\/stream_OlgaMiss","chat_status":"public","marker":"nice","gender":"female","members_count":160,"vibratoy":true,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"--Tati--","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/--Tati--","display_name":"Tina-","display_age":"29","profile_images":{"profile_image":"\/\/i.wlicdn.com\/02c\/1a2\/20b\/9202949d6cbb0766d4978bd5024b480e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/02c\/1a2\/20b\/9202949d6cbb0766d4978bd5024b480e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/02c\/1a2\/20b\/9202949d6cbb0766d4978bd5024b480e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/02c\/1a2\/20b\/9202949d6cbb0766d4978bd5024b480e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/02c\/1a2\/20b\/xbig_lq\/bf000a.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/02c\/1a2\/20b\/xbig_lq\/bf000a.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/02c\/1a2\/20b\/xbig\/bf000a.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/--Tati--","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/--Tati--","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/--Tati--","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/--Tati--?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/--Tati--","stream_feed_url":"https:\/\/ded6443-edge12.bcvcdn.com\/hls\/stream_--Tati--\/playlist.m3u8","chat_topic":"countdown to squirt @remain orgasm wet pussy, ultra random 44 - 29","chat_topic_ru":"\u043e\u0442\u0441\u0447\u0435\u0442 @remain - \u0441\u043a\u0432\u0438\u0440\u0442 \u0441\u043e\u0447\u043d\u044b\u0439 \u2764 \u0410\u041a\u0426\u0418\u042f 2 \u0442\u043e\u043a \u0443\u043b\u044c\u0442\u0440\u0430 \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f) \u043b\u044e\u0431\u0438\u043c\u0430\u044f \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f 77, \u0440\u0430\u043d\u0434\u043e\u043c-29 ","flags":["russian","english"],"online_time":3364,"vs_url_root":"https:\/\/db.bngpt.com\/stream_--Tati--","chat_status":"public","marker":"nice","gender":"female","members_count":274,"vibratoy":true,"hd_cam":true,"social_networks":["instagram"],"is_new":0},{"username":"AnnaDaisy1","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AnnaDaisy1","display_name":"AnnaPopy","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/054\/3d9\/28a\/be6c127beb6e1bfbab9e64cbb88968f2_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig_lq\/cc3ad2.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig_lq\/cc3ad2.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/054\/3d9\/28a\/xbig\/cc3ad2.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AnnaDaisy1","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AnnaDaisy1","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AnnaDaisy1","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AnnaDaisy1?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AnnaDaisy1","stream_feed_url":"https:\/\/ded6443-edge12.bcvcdn.com\/hls\/stream_AnnaDaisy1\/playlist.m3u8","chat_topic":"Show in privates \u2665 Tokens only in free chat NOT PM!!!\u2665 ","chat_topic_ru":"\u0428\u043e\u0443 \u0432 \u043f\u0440\u0438\u0432\u0430\u0442\u0430\u0445 \u2665 \u0422\u043e\u043a\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u041e\u0411\u0429\u0418\u0419 \u0447\u0430\u0442 !!! \u2665","flags":["russian","english"],"online_time":2806,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AnnaDaisy1","chat_status":"public","marker":"nice","gender":"female","members_count":744,"vibratoy":false,"hd_cam":true,"social_networks":[""],"is_new":0},{"username":"ingridblondy94","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/ingridblondy94","display_name":"Moona-One","display_age":"22","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0aa\/315\/29d\/a9838e330748439ec04a357d588cbd53_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0aa\/315\/29d\/a9838e330748439ec04a357d588cbd53_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0aa\/315\/29d\/a9838e330748439ec04a357d588cbd53_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0aa\/315\/29d\/a9838e330748439ec04a357d588cbd53_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig_lq\/721011.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig_lq\/721011.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0aa\/315\/29d\/xbig\/721011.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/ingridblondy94","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/ingridblondy94","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/ingridblondy94","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/ingridblondy94?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/ingridblondy94","stream_feed_url":"https:\/\/ded6685-edge34.bcvcdn.com\/hls\/stream_ingridblondy94\/playlist.m3u8","chat_topic":"make me horny! squirt show countdown end","chat_topic_ru":"make me horny! squirt show countdown end","flags":["english","german"],"online_time":17417,"vs_url_root":"https:\/\/db.bngpt.com\/stream_ingridblondy94","chat_status":"public","marker":"nice","gender":"female","members_count":5491,"vibratoy":true,"hd_cam":false,"social_networks":["twitter","snapchat"],"is_new":0},{"username":"Meegan","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/Meegan","display_name":"Meegan","display_age":"32","profile_images":{"profile_image":"\/\/i.wlicdn.com\/027\/1b6\/26c\/eb3cf87c846f706cdf7f6c2399a9af7b_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/027\/1b6\/26c\/eb3cf87c846f706cdf7f6c2399a9af7b_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/027\/1b6\/26c\/eb3cf87c846f706cdf7f6c2399a9af7b_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/027\/1b6\/26c\/eb3cf87c846f706cdf7f6c2399a9af7b_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/027\/1b6\/26c\/xbig_lq\/59b89c.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/027\/1b6\/26c\/xbig_lq\/59b89c.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/027\/1b6\/26c\/xbig\/59b89c.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/Meegan","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/Meegan","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/Meegan","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/Meegan?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/Meegan","stream_feed_url":"https:\/\/ded5992-edge-us24.bcvcdn.com\/hls\/stream_Meegan\/playlist.m3u8","chat_topic":"Hello! Put love & Let\u00b4s have fun \u2665 Pvt & Tip menu are ON| 33-44-77-111 are my favorite levels|Can you make me cum today","chat_topic_ru":"Hello! Put love & Let\u00b4s have fun \u2665 Pvt & Tip menu are ON| 33-44-77-111 are my favorite levels|Can you make me cum today","flags":["english","spanish"],"online_time":4111,"vs_url_root":"https:\/\/db.bngpt.com\/stream_Meegan","chat_status":"public","marker":"nice","gender":"female","members_count":309,"vibratoy":true,"hd_cam":true,"social_networks":["instagram","twitter","snapchat","tiktok"],"is_new":0},{"username":"-Lana-Chester-","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/-Lana-Chester-","display_name":"-Lana-Chester-","display_age":"20","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b9\/0e8\/11b\/64d6153d0eb32a8e902433dd2213c67e_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b9\/0e8\/11b\/64d6153d0eb32a8e902433dd2213c67e_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b9\/0e8\/11b\/64d6153d0eb32a8e902433dd2213c67e_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b9\/0e8\/11b\/64d6153d0eb32a8e902433dd2213c67e_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b9\/0e8\/11b\/xbig_lq\/fbc70f.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b9\/0e8\/11b\/xbig_lq\/fbc70f.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b9\/0e8\/11b\/xbig\/fbc70f.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/-Lana-Chester-","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/-Lana-Chester-","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/-Lana-Chester-","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/-Lana-Chester-?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/-Lana-Chester-","stream_feed_url":"https:\/\/ded1080-edge28.bcvcdn.com\/hls\/stream_-Lana-Chester-\/playlist.m3u8","chat_topic":"Meow, I'm Alena) Extreme things are what everyone loves. So welcome)) Love from 2 tokens. Low vibration 2-20 tk, Average 21-50, High 51-200, Favorite - 230, killer vibration - 666, @total \u2013 countdown: @sofar collected, @remain left for driving courses","chat_topic_ru":"\u041c\u044f\u0443 \u044f \u0410\u043b\u0451\u043d\u0430) \u042d\u043a\u0441\u0442\u0440\u0438\u043c\u0430\u043b\u044c\u043d\u044b\u0435 \u0448\u0442\u0443\u0447\u043a\u0438-\u0442\u043e, \u0447\u0442\u043e \u043b\u044e\u0431\u044f\u0442 \u0432\u0441\u0435.\u0422\u0430\u043a \u0447\u0442\u043e \u0434\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c))\u041b\u043e\u0432\u0435\u043d\u0441 \u043e\u0442 2\u0445 \u0442\u043e\u043a\u0435\u043d\u043e\u0432.\u041d\u0438\u0437\u043a\u0430\u044f \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f 2-20 \u0442\u043a,\u0421\u0440\u0435\u0434\u043d\u044f\u044f 21-50,\u0412\u044b\u0441\u043e\u043a\u0430\u044f 51-200,\u041b\u044e\u0431\u0438\u043c\u0430\u044f - 230,\u0443\u0431\u0438\u0439\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u0432\u0438\u0431\u0440\u0430\u0446\u0438\u044f - 666,@total \u2013 \u043e\u0431\u0440\u0430\u0442\u043d\u044b\u0439 \u043e\u0442\u0441\u0447\u0451\u0442: @sofar \u0441\u043e\u0431\u0440\u0430\u043d\u043e \u043d\u0430 \u043a\u0443\u0440\u0441\u044b \u043f\u043e \u0432\u043e\u0436\u0434\u0435\u043d\u0438\u044e","flags":["russian","english"],"online_time":6783,"vs_url_root":"https:\/\/db.bngpt.com\/stream_-Lana-Chester-","chat_status":"public","marker":"nice","gender":"female","members_count":2112,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"AshleysinnX","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/AshleysinnX","display_name":"AshleysinnX","display_age":"25","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ae\/1f2\/35f\/03fccd1637ff59f364e869bb7624743a_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ae\/1f2\/35f\/03fccd1637ff59f364e869bb7624743a_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ae\/1f2\/35f\/03fccd1637ff59f364e869bb7624743a_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ae\/1f2\/35f\/03fccd1637ff59f364e869bb7624743a_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ae\/1f2\/35f\/xbig_lq\/35f7b9.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ae\/1f2\/35f\/xbig_lq\/35f7b9.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ae\/1f2\/35f\/xbig\/35f7b9.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/AshleysinnX","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/AshleysinnX","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/AshleysinnX","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/AshleysinnX?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/AshleysinnX","stream_feed_url":"https:\/\/ded6740-edge20.bcvcdn.com\/hls\/stream_AshleysinnX\/playlist.m3u8","chat_topic":"Pin me down, kiss me hard, look me in the eyes and FUCK ME like you've never fucked someone before !","chat_topic_ru":"Pin me down, kiss me hard, look me in the eyes and FUCK ME like you've never fucked someone before !","flags":["romanian","english"],"online_time":8816,"vs_url_root":"https:\/\/db.bngpt.com\/stream_AshleysinnX","chat_status":"public","marker":"nice","gender":"female","members_count":674,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"NatyDesiree","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/NatyDesiree","display_name":"NatyDesiree","display_age":"24","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0ae\/394\/3d9\/b0e5de5903eda8a3daf1f8c573c272e7_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0ae\/394\/3d9\/b0e5de5903eda8a3daf1f8c573c272e7_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0ae\/394\/3d9\/b0e5de5903eda8a3daf1f8c573c272e7_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0ae\/394\/3d9\/b0e5de5903eda8a3daf1f8c573c272e7_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0ae\/394\/3d9\/xbig_lq\/32728e.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0ae\/394\/3d9\/xbig_lq\/32728e.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0ae\/394\/3d9\/xbig\/32728e.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/NatyDesiree","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/NatyDesiree","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/NatyDesiree","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/NatyDesiree?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/NatyDesiree","stream_feed_url":"https:\/\/ded6688-edge35.bcvcdn.com\/hls\/stream_NatyDesiree\/playlist.m3u8","chat_topic":"Indulge your Naughty Desires with NatyDesiree! Join the Fun Now!","chat_topic_ru":"Indulge your Naughty Desires with NatyDesiree! Join the Fun Now!","flags":["english","romanian"],"online_time":4832,"vs_url_root":"https:\/\/db.bngpt.com\/stream_NatyDesiree","chat_status":"public","marker":"nice","gender":"female","members_count":349,"vibratoy":true,"hd_cam":false,"social_networks":[""],"is_new":0},{"username":"11mollysweet","profile_page_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/profile\/11mollysweet","display_name":"11mollysweet","display_age":"26","profile_images":{"profile_image":"\/\/i.wlicdn.com\/0b9\/387\/2ff\/bf9b88e90b2ac11e96875717a27b2cda_profile.jpg","thumbnail_image_small":"\/\/i.wlicdn.com\/0b9\/387\/2ff\/bf9b88e90b2ac11e96875717a27b2cda_thumb.jpg","thumbnail_image_medium":"\/\/i.wlicdn.com\/0b9\/387\/2ff\/bf9b88e90b2ac11e96875717a27b2cda_thumb_medium.jpg","thumbnail_image_big":"\/\/i.wlicdn.com\/0b9\/387\/2ff\/bf9b88e90b2ac11e96875717a27b2cda_thumb_big.jpg","thumbnail_image_small_live":"\/\/i.wlicdn.com\/live\/0b9\/387\/2ff\/xbig_lq\/9951c5.jpg","thumbnail_image_medium_live":"\/\/i.wlicdn.com\/live\/0b9\/387\/2ff\/xbig_lq\/9951c5.jpg","thumbnail_image_big_live":"\/\/i.wlicdn.com\/live\/0b9\/387\/2ff\/xbig\/9951c5.jpg"},"chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat-popup\/11mollysweet","random_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/chat?livetab=female","popular_chat_url":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/popular-chat?livetab=female","chat_url_on_home_page":"https://bongacams.com/track?c=666639&ps=sticky_banner&csurl=http:\/\/bongacams.com\/11mollysweet","direct_chat_url":"http:\/\/bongacams.com\/chat-popup\/11mollysweet","chat_url_on_home_page_for_popunder":"http:\/\/bongacams.com\/11mollysweet?https://bongacams.com/track?c=666639&ps=sticky_banner","chat_url_on_home_page_for_bc_popup":"http:\/\/bongacams.com\/11mollysweet","stream_feed_url":"https:\/\/ded4184-edge-us19.bcvcdn.com\/hls\/stream_11mollysweet\/playlist.m3u8","chat_topic":"","chat_topic_ru":"","flags":["spanish","english"],"online_time":14437,"vs_url_root":"https:\/\/db.bngpt.com\/stream_11mollysweet","chat_status":"public","marker":"average","gender":"female","members_count":3,"vibratoy":false,"hd_cam":false,"social_networks":[""],"is_new":0}]}'); var geoEnabled = '0'; var autoUpdate = '1'; var videoPlayed, banner, boundary, avatar, status, logo, autoupdateTimer, fallbackPlayer, isBannerOpened, imagePlayer; var lockCookieName = 'bcsbtool'; var isUCBrowser = navigator.userAgent.indexOf('UCBrowser/') > -1; var isRandomChat = contentType === ContentTypeEnum.RANDOM_CHAT; var frequency = '21600000'; var modelData = { avatarUrl: '//i.wlicdn.com/022/32b/176/9f9ab8ebf6e8bc094104eeeb1a94440a_thumb_medium.jpg', snapshotUrl: '//i.wlicdn.com/live/022/32b/176/xbig/b00360.jpg', username: 'fitprincess', displayname: 'fitprincess', vsUrlRoot: 'https://db.bngpt.com/stream_fitprincess', 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; /***/ }) /******/ });