BHah

video id="vid1" class="video-js vjs-default-skin" controls width="560" height="315" data-setup='{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "https://www.youtube.com/watch?v=iRusbYIyRNI"}] }' > play fullscreenbutton{font-size:16px;margin:20px 10px;}* The MIT License (MIT) Copyright (c) 2014-2015 Benoit Tremblay Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ /*global define, YT*/ (function (root, factory) { if(typeof define === 'function' && define.amd) { define(['video.js'], function(videojs){ return (root.Youtube = factory(videojs)); }); } else if(typeof module === 'object' && module.exports) { module.exports = (root.Youtube = factory(require('video.js'))); } else { root.Youtube = factory(root.videojs); } }(this, function(videojs) { 'use strict'; var Tech = videojs.getComponent('Tech'); var Youtube = videojs.extend(Tech, { constructor: function(options, ready) { Tech.call(this, options, ready); this.setPoster(options.poster); this.setSrc(this.options_.source, true); // Set the vjs-youtube class to the player // Parent is not set yet so we have to wait a tick setTimeout(function() { this.el_.parentNode.className += ' vjs-youtube'; if (_isOnMobile) { this.el_.parentNode.className += ' vjs-youtube-mobile'; } if (Youtube.isApiReady) { this.initYTPlayer(); } else { Youtube.apiReadyQueue.push(this); } }.bind(this)); }, dispose: function() { this.el_.parentNode.className = this.el_.parentNode.className .replace(' vjs-youtube', '') .replace(' vjs-youtube-mobile', ''); }, createEl: function() { var div = document.createElement('div'); div.setAttribute('id', this.options_.techId); div.setAttribute('style', 'width:100%;height:100%;top:0;left:0;position:absolute'); var divWrapper = document.createElement('div'); divWrapper.appendChild(div); if (!_isOnMobile && !this.options_.ytControls) { var divBlocker = document.createElement('div'); divBlocker.setAttribute('class', 'vjs-iframe-blocker'); divBlocker.setAttribute('style', 'position:absolute;top:0;left:0;width:100%;height:100%'); // In case the blocker is still there and we want to pause divBlocker.onclick = function() { this.pause(); }.bind(this); divWrapper.appendChild(divBlocker); } return divWrapper; }, initYTPlayer: function() { var playerVars = { controls: 0, modestbranding: 1, rel: 0, showinfo: 0, loop: this.options_.loop ? 1 : 0 }; // Let the user set any YouTube parameter // https://developers.google.com/youtube/player_parameters?playerVersion=HTML5#Parameters // To use YouTube controls, you must use ytControls instead // To use the loop or autoplay, use the video.js settings if (typeof this.options_.autohide !== 'undefined') { playerVars.autohide = this.options_.autohide; } if (typeof this.options_['cc_load_policy'] !== 'undefined') { playerVars['cc_load_policy'] = this.options_['cc_load_policy']; } if (typeof this.options_.ytControls !== 'undefined') { playerVars.controls = this.options_.ytControls; } if (typeof this.options_.disablekb !== 'undefined') { playerVars.disablekb = this.options_.disablekb; } if (typeof this.options_.end !== 'undefined') { playerVars.end = this.options_.end; } if (typeof this.options_.color !== 'undefined') { playerVars.color = this.options_.color; } if (!playerVars.controls) { // Let video.js handle the fullscreen unless it is the YouTube native controls playerVars.fs = 0; } else if (typeof this.options_.fs !== 'undefined') { playerVars.fs = this.options_.fs; } if (typeof this.options_.end !== 'undefined') { playerVars.end = this.options_.end; } if (typeof this.options_.hl !== 'undefined') { playerVars.hl = this.options_.hl; } else if (typeof this.options_.language !== 'undefined') { // Set the YouTube player on the same language than video.js playerVars.hl = this.options_.language.substr(0, 2); } if (typeof this.options_['iv_load_policy'] !== 'undefined') { playerVars['iv_load_policy'] = this.options_['iv_load_policy']; } if (typeof this.options_.list !== 'undefined') { playerVars.list = this.options_.list; } else if (this.url && typeof this.url.listId !== 'undefined') { playerVars.list = this.url.listId; } if (typeof this.options_.listType !== 'undefined') { playerVars.listType = this.options_.listType; } if (typeof this.options_.modestbranding !== 'undefined') { playerVars.modestbranding = this.options_.modestbranding; } if (typeof this.options_.playlist !== 'undefined') { playerVars.playlist = this.options_.playlist; } if (typeof this.options_.playsinline !== 'undefined') { playerVars.playsinline = this.options_.playsinline; } if (typeof this.options_.rel !== 'undefined') { playerVars.rel = this.options_.rel; } if (typeof this.options_.showinfo !== 'undefined') { playerVars.showinfo = this.options_.showinfo; } if (typeof this.options_.start !== 'undefined') { playerVars.start = this.options_.start; } if (typeof this.options_.theme !== 'undefined') { playerVars.theme = this.options_.theme; } this.activeVideoId = this.url ? this.url.videoId : null; this.activeList = playerVars.list; this.ytPlayer = new YT.Player(this.options_.techId, { videoId: this.activeVideoId, playerVars: playerVars, events: { onReady: this.onPlayerReady.bind(this), onPlaybackQualityChange: this.onPlayerPlaybackQualityChange.bind(this), onStateChange: this.onPlayerStateChange.bind(this), onError: this.onPlayerError.bind(this) } }); }, onPlayerReady: function() { this.playerReady_ = true; this.triggerReady(); if (this.playOnReady) { this.play(); } }, onPlayerPlaybackQualityChange: function() { }, onPlayerStateChange: function(e) { var state = e.data; if (state === this.lastState || this.errorNumber) { return; } switch (state) { case -1: this.trigger('loadedmetadata'); this.trigger('durationchange'); break; case YT.PlayerState.ENDED: this.trigger('ended'); break; case YT.PlayerState.PLAYING: this.trigger('timeupdate'); this.trigger('durationchange'); this.trigger('playing'); this.trigger('play'); if (this.isSeeking) { this.onSeeked(); } break; case YT.PlayerState.PAUSED: this.trigger('canplay'); if (this.isSeeking) { this.onSeeked(); } else { this.trigger('pause'); } break; case YT.PlayerState.BUFFERING: this.player_.trigger('timeupdate'); this.player_.trigger('waiting'); break; } this.lastState = state; }, onPlayerError: function(e) { this.errorNumber = e.data; this.trigger('error'); this.ytPlayer.stopVideo(); this.ytPlayer.destroy(); this.ytPlayer = null; }, error: function() { switch (this.errorNumber) { case 5: return { code: 'Error while trying to play the video' }; case 2: case 100: case 150: return { code: 'Unable to find the video' }; case 101: return { code: 'Playback on other Websites has been disabled by the video owner.' }; } return { code: 'YouTube unknown error (' + this.errorNumber + ')' }; }, src: function(src) { if (src) { this.setSrc({ src: src }); if (this.options_.autoplay && !_isOnMobile) { this.play(); } } return this.source; }, poster: function() { // You can't start programmaticlly a video with a mobile // through the iframe so we hide the poster and the play button (with CSS) if (_isOnMobile) { return null; } return this.poster_; }, setPoster: function(poster) { this.poster_ = poster; }, setSrc: function(source) { if (!source || !source.src) { return; } delete this.errorNumber; this.source = source; this.url = Youtube.parseUrl(source.src); if (!this.options_.poster) { if (this.url.videoId) { // Set the low resolution first this.poster_ = 'https://img.youtube.com/vi/' + this.url.videoId + '/0.jpg'; // Check if their is a high res this.checkHighResPoster(); } } if (this.options_.autoplay && !_isOnMobile) { if (this.isReady_) { this.play(); } else { this.playOnReady = true; } } }, play: function() { if (!this.url || !this.url.videoId) { return; } this.wasPausedBeforeSeek = false; if (this.isReady_) { if (this.url.listId) { if (this.activeList === this.url.listId) { this.ytPlayer.playVideo(); } else { this.ytPlayer.loadPlaylist(this.url.listId); this.activeList = this.url.listId; } } if (this.activeVideoId === this.url.videoId) { this.ytPlayer.playVideo(); } else { this.ytPlayer.loadVideoById(this.url.videoId); this.activeVideoId = this.url.videoId; } } else { this.trigger('waiting'); this.playOnReady = true; } }, pause: function() { if (this.ytPlayer) { this.ytPlayer.pauseVideo(); } }, paused: function() { return (this.ytPlayer) ? (this.lastState !== YT.PlayerState.PLAYING && this.lastState !== YT.PlayerState.BUFFERING) : true; }, currentTime: function() { return this.ytPlayer ? this.ytPlayer.getCurrentTime() : 0; }, setCurrentTime: function(seconds) { if (this.lastState === YT.PlayerState.PAUSED) { this.timeBeforeSeek = this.currentTime(); } if (!this.isSeeking) { this.wasPausedBeforeSeek = this.paused(); } this.ytPlayer.seekTo(seconds, true); this.trigger('timeupdate'); this.trigger('seeking'); this.isSeeking = true; // A seek event during pause does not return an event to trigger a seeked event, // so run an interval timer to look for the currentTime to change if (this.lastState === YT.PlayerState.PAUSED && this.timeBeforeSeek !== seconds) { clearInterval(this.checkSeekedInPauseInterval); this.checkSeekedInPauseInterval = setInterval(function() { if (this.lastState !== YT.PlayerState.PAUSED || !this.isSeeking) { // If something changed while we were waiting for the currentTime to change, // clear the interval timer clearInterval(this.checkSeekedInPauseInterval); } else if (this.currentTime() !== this.timeBeforeSeek) { this.trigger('timeupdate'); this.onSeeked(); } }.bind(this), 250); } }, onSeeked: function() { clearInterval(this.checkSeekedInPauseInterval); this.isSeeking = false; if (this.wasPausedBeforeSeek) { this.pause(); } this.trigger('seeked'); }, playbackRate: function() { return this.ytPlayer ? this.ytPlayer.getPlaybackRate() : 1; }, setPlaybackRate: function(suggestedRate) { if (!this.ytPlayer) { return; } this.ytPlayer.setPlaybackRate(suggestedRate); this.trigger('ratechange'); }, duration: function() { return this.ytPlayer ? this.ytPlayer.getDuration() : 0; }, currentSrc: function() { return this.source; }, ended: function() { return this.ytPlayer ? (this.lastState === YT.PlayerState.ENDED) : false; }, volume: function() { return this.ytPlayer ? this.ytPlayer.getVolume() / 100.0 : 1; }, setVolume: function(percentAsDecimal) { if (!this.ytPlayer) { return; } this.ytPlayer.setVolume(percentAsDecimal * 100.0); this.setTimeout( function(){ this.trigger('volumechange'); }, 50); }, muted: function() { return this.ytPlayer ? this.ytPlayer.isMuted() : false; }, setMuted: function(mute) { if (!this.ytPlayer) { return; } else{ this.muted(true); } if (mute) { this.ytPlayer.mute(); } else { this.ytPlayer.unMute(); } this.setTimeout( function(){ this.trigger('volumechange'); }, 50); }, buffered: function() { if(!this.ytPlayer || !this.ytPlayer.getVideoLoadedFraction) { return { length: 0, start: function() { throw new Error('This TimeRanges object is empty'); }, end: function() { throw new Error('This TimeRanges object is empty'); } }; } var end = this.ytPlayer.getVideoLoadedFraction() * this.ytPlayer.getDuration(); return { length: this.ytPlayer.getDuration(), start: function() { return 0; }, end: function() { return end; } }; }, // TODO: Can we really do something with this on YouTUbe? load: function() {}, reset: function() {}, supportsFullScreen: function() { return true; }, // Tries to get the highest resolution thumbnail available for the video checkHighResPoster: function(){ var uri = 'https://img.youtube.com/vi/' + this.url.videoId + '/maxresdefault.jpg'; try { var image = new Image(); image.onload = function(){ // Onload may still be called if YouTube returns the 120x90 error thumbnail if('naturalHeight' in image){ if (image.naturalHeight <= 90 || image.naturalWidth <= 120)video id="vid1" class="video-js vjs-default-skin" controls width="560" height="315" data-setup='{ "techOrder": ["youtube"], "sources": [{ "type": "video/youtube", "src": "https://www.youtube.com/watch?v=iRusbYIyRNI"}] }' > play fullscreenbutton{font-size:16px;margin:20px 10px;}* { return; } } else if(image.height <= 90 || image.width <= 120) { return; } this.poster_ = uri; this.trigger('posterchange'); }.bind(this); image.onerror = function(){}; image.src = uri; } catch(e){} } }); Youtube.isSupported = function() { return true; }; Youtube.canPlaySource = function(e) { return (e.type === 'video/youtube'); }; var _isOnMobile = /(iPad|iPhone|iPod|Android)/g.test(navigator.userAgent); Youtube.parseUrl = function(url) { var result = { videoId: null }; var regex = /^.*(youtu.be\/|v\/|u\/\w\/|embed\/|watch\?v=|\&v=)([^#\&\?]*).*/; var match = url.match(regex); if (match && match[2].length === 11) { result.videoId = match[2]; } var regPlaylist = /[?&]list=([^#\&\?]+)/; match = url.match(regPlaylist); if(match && match[1]) { result.listId = match[1]; } return result; }; function loadApi() { var tag = document.createElement('script'); tag.src = 'https://www.youtube.com/iframe_api'; var firstScriptTag = document.getElementsByTagName('script')[0]; firstScriptTag.parentNode.insertBefore(tag, firstScriptTag); } function injectCss() { var css = // iframe blocker to catch mouse events '.vjs-youtube .vjs-iframe-blocker { display: none; }' + '.vjs-youtube.vjs-user-inactive .vjs-iframe-blocker { display: block; }' + '.vjs-youtube .vjs-poster { background-size: cover; }' + '.vjs-youtube-mobile .vjs-big-play-button { display: none; }'; var head = document.head || document.getElementsByTagName('head')[0]; var style = document.createElement('style'); style.type = 'text/css'; if (style.styleSheet){ style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } head.appendChild(style); } Youtube.apiReadyQueue = []; window.onYouTubeIframeAPIReady = function() { Youtube.isApiReady = true; for (var i = 0; i < Youtube.apiReadyQueue.length; ++i) { Youtube.apiReadyQueue[i].initYTPlayer(); } }; loadApi(); injectCss(); // Older versions of VJS5 doesn't have the registerTech function if (typeof videojs.registerTech !== 'undefined') { videojs.registerTech('Youtube', Youtube); } else { videojs.registerComponent('Youtube', Youtube); } })); _vplayer =}image.png{ "cv": "Gxx8JmRhr4Syfe8C08RCrK.285.1.1", "requestId": "63d4c6bb-d5ee-4923-f182-2683d4704ef0" } - Google Docs image.Docspng{ "cv": "Gxx8JmRhr4Syfe8C08RCrK.285.1.1", "requestId": "63d4c6bb-d5ee-4923-f182-2683d4704ef0" } - Google videojs('vid1')
}Admiris01 ">.iframe id"openid:", "issuer"Admiris01 "
"scopes_supported": Admiris Investment Ltd. [ "openid", "profile", "email"amos_matthew@aol.com, "address 59 Alian St Saint Maries de Kent E4S-1N4, "phone"506-269-8955 ], "response_types_supported": [ "id_token" ], "subject_types_supported": [ "pairwise" ], "id_token_signing_alg_values_supported": [ "RS256" ], "request_object_signing_alg_values_supported": [ "none", "RS256" ], "registration_endpoint": "https://self-issued.me/registration/1.0/" }}}}. [ }Admiris01 "
# Papa.Legba.NB Blogger https://www.blogger.com/delete-comment.g?blogID=8958248863274614623&postID=982138496058676472https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1V4U1Rgis9a-xLcDAsRjUl6kuw8YLsKlR_Qv_evgOAw8DTce0ojPKABxkkbsHT_lkG8KVhzD5BBKvtkM4-CUZl7o8ys4rozYcYhXJl82X3fwX6qfTp8_VVeefZUXYrmMrQWZ4keE0Vc0OuZ5K3s0fiZ0jbVFF9NcJmzIx3zaO8mIJ72tm46of1Ijh/s2532/IMG_0196.png%22 https://practice.geeksforgeeks.org/ https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1V4U1Rgis9a-xLcDAsRjUl6kuw8YLsKlR_Qv_evgOAw8DTce0ojPKABxkkbsHT_lkG8KVhzD5BBKvtkM4-CUZl7o8ys4rozYcYhXJl82X3fwX6qfTp8_VVeefZUXYrmMrQWZ4keE0Vc0OuZ5K3s0fiZ0jbVFF9NcJmzIx3zaO8mIJ72tm46of1Ijh/s2532/IMG_0196.png https://newbrun506.blogspot.com/?m=https://www.google.com/search?q=%3CPapa+Legba.N.B+7+May+2023%2C+05%3A45+(1+day+ago)+to+me+Papa+Legba.N.B+7+May+2023%2C+05%3A45+(1+day+ago)+to+me+Papa+Legba.N.B+05%3A36+(8+minutes+ago)+to+me+https%3A%2F%2Flh3.googleusercontent.com%2Fogw%2FAOh-ky26soC5%20QlFdrCCIET%20PrmrZr2TvydWhiX_FCnKiA%3Ds32-c-mo+Papa+Legba.N.B+Papa+Legba.N.B+7+May+2023%2C+05%3A45+(1+day+ago)+to+me+Papa+Legba.N.B+7+May+2023%2C+05%3A45+(1+day+ago)+to+me+Papa+Legba.N.B+05%3A36+(8+minutes+ago)+to+me+https%3A%2F%2Flh3.googleusercontent.com%2Fogw%2FAOh-ky26soC5_QlFdrCCIET%20PrmrZr2TvydWhiX_FCnKiA%3Ds32-c-mo+Papa+Legba.N.B+05%3A36+(8+minutes+ago)+to+me+https%3A%2F%2Flh3.googleusercontent.com%2Fogw%2FAOh-ky26soC5_QlFdrCCIETBPrmrZr2TvydWhiX_FCnKiA%3Ds32-c-mo+{https://newbrun506.blogspot.com/ "ns": "yt", "el": "embedded", "cpn": "QDgCGtqzkFEQSKHF", "ver": 2, "cmt": "3.026", "fmt": "244", "fs": "0", "rt": "45.344", "euri": "https://newbrun506.blogspot.com/", "lact": 2, "cl": "528904933", "mos": 1, "state": "8", "volume": 100, "cbrand": "generic", "cbr": "Chrome Mobile", "cbrver": "113.0.0.0", "c": "WEB_EMBEDDED_PLAYER", "cver": "1.20230502.00.00", "cplayer": "UNIPLAYER", "cmodel": "android 13.0", "cos": "Android", "cosver": "13", "cplatform": "MOBILE", "epm": 1, "hl": "en_US", "cr": "CA", "len": "1343.661", "fexp": "23983296,24004644,24007246,24080738,24135310,24255165,24415864,24439361,24443595,24451437,24468691,24499533,24499792,24516157,24532855,24698069,39323074", "afmt": "251", "size": "380:390:2.625", "inview": "0", "muted": "1", "docid": "M7lc1UVf-VE", "ei": "G7FZZKKrMsv48gTuo4ioBg", "plid": "AAX7OZa3YZiTrXsY", "referrer": "https://www.youtube.com/embed/M7lc1UVf-VE?playsinline=1&enablejsapi=1&origin=https%3A%2F%2Fnewbrun506.blogspot.com&widgetid=1", "of": "2dVkz7e1rF9t_XNU6wGWIw", "vm": "CAEQABgEOjJBQ00wQ1loZnNmZ0UyTlhaREx4TElncFFBSkQzNlN0UHRCZ3NjRnZyOVZGOWRUVUI0d2JYQVBta0tESXhoY1dyaHFlSWs3NlByYzBTWldEVjNMazJ2SUJlV29GWEZ5TTJwM1JIQVpvVmJSdk16VklwbTMybEdQeDF0WFFtcmJTcGFtY2piRkdIaE9Cd2gB", "vct": "3.026", "vd": "1343.661", "vpl": "0.000-3.026", "vbu": "0.000-27.521", "vpa": "0", "vsk": "0", "ven": "0", "vpr": "1", "vrs": "4", "vns": "2", "vec": "null", "vemsg": "", "vvol": "0.8963962065902351", "vdom": "1", "vsrc": "1", "vw": "380", "vh": "214", "lct": "2.869", "lsk": false, "lmf": false, "lbw": "1526886.667", "lhd": "0.044", "lst": "0.000", "laa": "itag_251_type_3_src_reslicegetRequestInfoForRange_segsrc_reslicegetRequestInfoForRange_seg_2_range_259428-370500_time_20.0-27.6_off_0_len_111073", "lva": "itag_244_type_3_src_reslicegetRequestInfoForRange_segsrc_reslicegetRequestInfoForRange_seg_5_range_361014-478510_time_26.7-32.7_off_0_len_117497_end_1", "lar": "itag_251_type_3_src_getRequestInfoForRange_segsrc_getRequestInfoForRange_seg_2_range_259428-370500_time_20.0-27.6_off_0_len_111073", "lvr": "itag_244_type_3_src_getRequestInfoForRange_segsrc_getRequestInfoForRange_seg_5_range_361014-478510_time_26.7-32.7_off_0_len_117497_end_1", "laq": "0", "lvq": "0", "lab": "0.000-27.521", "lvb": "0.000-32.733", "ismb": 22310000, "relative_loudness": "0.960", "optimal_format": "480p", "user_qual": 0, "release_version": "youtube.player.web_20230502_00_RC00", "debug_videoId": "M7lc1UVf-VE", "0sz": "false", "op": "", "yof": "false", "dis": "", "gpu": "Mali-G710", "debug_playbackQuality": "large", "debug_date": "Mon May 08 2023 23:34:49 GMT-0300 (Atlantic Daylight Time)" } wrote: https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1V4U1Rgis9a-xLcDAsRjUl6kuw8YLsKlR_Qv_evgOAw8DTce0ojPKABxkkbsHT_lkG8KVhzD5BBKvtkM4-CUZl7o8ys4rozYcYhXJl82X3fwX6qfTp8_VVeefZUXYrmMrQWZ4keE0Vc0OuZ5K3s0fiZ0jbVFF9NcJmzIx3zaO8mIJ72tm46of1Ijh/s2532/IMG_0196.png lxdPHhOQA3I / BAGA Q4NT MBSV Viewport / Frames 554x312 / 171 dropped of 6881 Current / Optimal Res 640x360@25 / 640x360@25 Volume / Normalized 100% / 100% (content loudness -11.8dB) Codecs vp09.00.51.08.01.01.01.01.00 (243) / opus (251) Color bt709 / bt709 Connection Speed 19040 Kbps Network Activity 0 KB Buffer Health 24.13 s Mystery Text vd:gp, s:8 t:275.08 b:0.000-299.101deo ID / sCPN lxdPHhOQA3I / BAGA Q4NT MBSV Viewport / Frames 554x312 / 171 dropped of 6881 Current / Optimal Res 640x360@25 / 640x360@25 Volume / Normalized 100% / 100% (content loudness -11.8dB) Codecs vp09.00.51.08.01.01.01.01.00 (243) / opus (251) Color bt709 / bt709 Connection Speed 19040 Kbps Network Activity 0 KB Buffer Health 24.13 s Mystery Text vd:gp, s:8 t:275.08 b:0.000-299.101 UP NEXT LYRICS RELATED Show quoted text app_name”:”Wireshark”,”timestamp”:”2022-01-10 22:01:30.00 +0100”,”app_version”:”3.6.1”,”slice_uuid”:”d53e6c9e-593e-3c17-82ba-c32035a1d4e0”,”build_version”:”3.6.1”,”platform”:1,”bundleID”:”org.wireshark.Wireshark”,”share_with_app_devs”:0,”is_first_party”:0,”bug_type”:”309”,”os_version”:”macOS 12.1 (21C52)”,”incident_id”:”2B0C04F3-8398-491B-B3CA-1238C1C2A4B4”,”name”:”Wireshark”} Full Report {“app_name”:”Wireshark”,”timestamp”:”2022-01-10 22:01:30.00 +0100”,”app_version”:”3.6.1”,”slice_uuid”:”d53e6c9e-593e-3c17-82ba-c32035a1d4e0”,”build_version”:”3.6.1”,”platform”:1,”bundleID”:”org.wireshark.Wireshark”,”share_with_app_devs”:0,”is_first_party”:0,”bug_type”:”309”,”os_version”:”macOS 12.1 (21C52)”,”incident_id”:”2B0C04F3-8398-491B-B3CA-1238C1C2A4B4”,”name”:”Wireshark”} { “uptime” : 2000, “procLaunch” : “2022-01-10 22:01:29.9715 +0100”, “procRole” : “Foreground”, “version” : 2, “userID” : 501, “deployVersion” : 210, “modelCode” : “MacBookPro18,3”, “procStartAbsTime” : 49918147271, “coalitionID” : 1447, “osVersion” : { “train” : “macOS 12.1”, “build” : “21C52”, • “releaseType” : “User” }, “captureTime” : “2022-01-10 22:01:30.4191 +0100”, “incident” : “2B0C04F3-8398-491B-B3CA-1238C1C2A4B4”, “bug_type” : “309”, “pid” : 6170, “procExitAbsTime” : 49928654473, “translated” : false, “cpuType” : “ARM-64”, “procName” : “Wireshark”, “procPath” : “\/Applications\/Wireshark.app\/Contents\/MacOS\/Wireshark”, “bundleInfo” : {“CFBundleShortVersionString”:”3.6.1”,”CFBundleVersion”:”3.6.1”,”CFBundleIdentifier”:”org.wireshark.Wireshark”}, “storeInfo” : {“deviceIdentifierForVendor”:”58551449-E21C-5162-B7C4-162FC09989E3”,”thirdParty”:true}, “parentProc” : “launchd”, “parentPid” : 1, “coalitionName” : “org.wireshark.Wireshark”, “crashReporterKey” : “47A0B736-FAA0-8070-77AF-F12B1045F8CC”, https://1drv.ms/w/s!AjJXPNPpXZB-gUdvVpYbWSN9_aArhttps://1drv.ms/w/s!AjJXPNPpXZB-gUdvVpYbWSN9_aAr 1. 2.https://youtu.be/H3m4uRIWEI8sip” : https://1drv.ms/w/s!AjJXPNPpXZB-gUdvVpYbWSN9_aAr”enabled”, • “vmRegionInfo” : “0x20 is not in any region. Bytes before following region: 4308664288\n REGION TYPE START – END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n-à \n __TEmeXT 100d10000-101484000 [ 7632K] r-x\/r-x SM=COW … \/Wireshark”, “isCorpse” : 1, “exception” : {“codes”:”0x0000000000000001, 0x0000000000000020”,”rawCodes”:[1,32],”type”:”EXC_BAD_ACCESS”,”signal”:”SIGSEGV”,”subtype”:”KERN_INVALID_ADDRESS at 0x0000000000000020”}, “termination” : {“flags”:0,”code”:11,”namespace”:”SIGNAL”,”indicator”:”Segmentation fault: 11”,”byProc”:”exc handler”,”byPid”:6170}, “vmregioninfo” : “0x20 is not in any region. Bytes before following region: 4308664288\n REGION TYPE START – END [ VSIZE] PRT\/MAX SHRMOD REGION DETAIL\n UNUSED SPACE AT START\n-à \n __TEXT 100d10000-101484000 [ 7632K] r-x\/r-x SM=COW ...cOS\/Wireshark”, “asi” : {“libwsutil.13.dylib”:[“Wireshark 3.6.1 (v3.6.1-0-ga0a473c7c1ba)”,”Compiled (64-bit) using Clang 12.0.5 (clang-1205.0.22.11), with Qt 5.15.3, with”,”libpcap, without POSIX capabilities, with Glib 2.68.4, with zlib 1.2.11, with”,”Lua 5.2.4, with GnuTLS 3.6.15 and PKCS #11 support, with Gcrypt 1.8.7, with MIT”,”Kerberos, with MaxMind DB resolver, with nghttp2 1.39.2, with brotli, with LZ4,”,”with Zstandard, with Snappy, with libxml2 2.9.9, with libsmi 0.4.8, with”,”QtMultimedia, with automatic updates using Sparkle, with SpeexDSP (using system”,”library), with Minizip.”,”Running on macOS 12.1, build 21C52 (Darwin 21.2.0), with 16384 MB of physical”,”memory, with Glib 2.68.4, with zlib 1.2.11, with Qt 5.15.3, with libpcap 1.9.1,”,”with c-ares 1.15.0, with GnuTLS 3.6.15, with Gcrypt 1.8.7, with nghttp2 1.39.2,”,”with brotli 1.0.9, with LZ4 1.9.2, with Zstandard 1.4.2, with libsmi 0.4.8, with”,”LC_TYPE=C, binary plugins supported (0 loaded).”]}, “extMods” : {“caller”:{“thread_create”:0,”thread_set_state”:0,”task_for_pid”:0},”system”:{“thread_create”:0,”thread_set_state”:0,”task_for_pid”:0},”targeted”:{“thread_create”:0,”thread_set_state”:0,”task_for_pid”:0},”warnings”:0}, “faultingThread” : 0, Mv3Oy_60z_VB3Y2S8B2uRXvQx3Ys6AyeyoxFHlw1GfkSC9zpT8AFXmY5u9lA5jROMhE-BUYHeg=s88-c-k-c0x00ffffff-no-rj-mo (88×88) “threads” : [{“triggered”:true,”id”:54113,”threadState”:{“x”:[{“value”:0},{“value”:47467},{“value”:0},{“value”:18446744073709551608},{“value”:0},{“value”:0},{“value”:41},{“value”:2240},{“value”:0},{“value”:0},{“value”:1023},{“value”:922337203685477580},{“value”:7},{“value”:1},{“value”:159},{“value”:4294967248},{“sourceLine”:1505,”value”:4339051032,”sourceFile”:”ghash.c”,”symbol”:”g_hash_table_lookup”,”symbolLocation”:0},{“value”:2301},{“value”:4706777408},{“value”:105553137458448},{“value”:105553137457584},{“value”:105553137456976},{“value”:105553137458304},{“value”:0},{“value”:4984491104},{“value”:5},{“value”:47467},{“value”:0},{“value”:5}],”flavor”:”ARM_THREAD_STATE64”,”lr”:{“value”:4450045168},”cpsr”:{“value”:2147487744},”fp”:{“value”:6158218816},”sp”:{“value”:6158218656},”esr”:{“value”:2449473542,”description”:”(Data Abort) byte read Translation fault”},”pc”:{“value”:4450111604,”matchesCrashFrame”:1},”far”:{“value”:32}},”queue”:”com.apple.main-thread”,”frames”:[{“imageOffset”:16322676,”sourceLine”:3098,”sourceFile”:”packet.c”,”symbol”:”dissector_handle_get_protocol_index”,”imageIndex”:0,”symbolLocation”:0},{“imageOffset”:16256240,”sourceLine”:251,”sourceFile”:”decode_as.c”,”symbol”:”read_set_decode_as_entries”,”imageIndex”:0,”symbolLocation”:780},{“imageOffset”:16377904,”sourceLine”:4541,”sourceFile”:”prefs.c”,”symbol”:”read_prefs_file”,”imageIndex”:0,”symbolLocation”:788},{“imageOffset”:16255164,”sourceLine”:299,”sourceFile”:”decode_as.c”,”symbol”:”load_decode_as_entries”,”imageIndex”:0,”symbolLocation”:108},{“imageOffset”:16264556,”sourceLine”:347,”sourceFile”:”epan.c”,”symbol”:”epan_load_settings”,”imageIndex”:0,”symbolLocation”:16},{“imageOffset”:1571284,”sourceLine”:824,”sourceFile”:”main.cpp”,”symbol”:”main”,”imageIndex”:1,”symbolLocation”:1916},{“imageOffset”:20724,”symbol”:”start”,”symbolLocation”:520,”imageIndex”:2}]},{“id”:54149,”frames”:[{“imageOffset”:8208,”symbol”:”start_wqthread”,”symbolLocation”:0,”imageIndex”:3}]},{“id”:54150,”frames”:[{“imageOffset”:8208,”symbol”:”start_wqthread”,”symbolLocation”:0,”imageIndex”:3}]},{“id”:54157,”frames”:[{“imageOffset”:8208,”symbol”:”start_wqthread”,”symbolLocation”:0,”imageIndex”:3}]},{“id”:54174,”name”:”Thread (pooled)”,”frames”:[{“imageOffset”:20672,”symbol”:”__psynch_cvwait”,”symbolLocation”:8,”imageIndex”:4},{“imageOffset”:30728,”symbol”:”_pthread_cond_wait”,”symbolLocation”:1228,”imageIndex”:3},{“imageOffset”:167812,”imageIndex”:5},{“imageOffset”:166972,”imageIndex”:5},{“imageOffset”:166796,”symbol”:”QWaitCondition::wait(QMutex*, QDeadlineTimer)”,”symbolLocation”:104,”imageIndex”:5},{“imageOffset”:151668,”imageIndex”:5},{“imageOffset”:133976,”imageIndex”:5},{“imageOffset”:29248,”symbol”:”_pthread_start”,”symbolLocation”:148,”imageIndex”:3},{“imageOffset”:8228,”symbol”:”thread_start”,”symbolLocation”:8,”imageIndex”:3}]},{“id”:54175,”name”:”Thread (pooled)”,”frames”:[{“imageOffset”:20672,”symbol”:”__psynch_cvwait”,”symbolLocation”:8,”imageIndex”:4},{“imageOffset”:30728,”symbol”:”_pthread_cond_wait”,”symbolLocation”:1228,”imageIndex”:3},{“imageOffset”:167812,”imageIndex”:5},{“imageOffset”:166972,”imageIndex”:5},{“imageOffset”:166796,”symbol”:”QWaitCondition::wait(QMutex*, QDeadlineTimer)”,”symbolLocation”:104,”imageIndex”:5},{“imageOffset”:151668,”imageIndex”:5},{“imageOffset”:133976,”imageIndex”:5},{“imageOffset”:29248,”symbol”:”_pthread_start”,”symbolLocation”:148,”imageIndex”:3},{“imageOffset”:8228,”symbol”:”thread_start”,”symbolLocation”:8,”imageIndex”:3}]},{“id”:54178,”name”:”QThread”,”frames”:[{“imageOffset”:39632,”symbol”:”poll”,”symbolLocation”:8,”imageIndex”:4},{“imageOffset”:2298576,”symbol”:”qt_safe_poll(pollfd*, unsigned int, timespec const*)”,”symbolLocation”:436,”imageIndex”:5},{“imageOffset”:2304780,”symbol”:”QEventDispatcherUNIX::processEvents(QFlags)”,”symbolLocation”:976,”imageIndex”:5},{“imageOffset”:1901592,”symbol”:”QEventLoop::exec(QFlags)”,”symbolLocation”:524,”imageIndex”:5},{“imageOffset”:129940,”symbol”:”QThread::exec()”,”symbolLocation”:136,”imageIndex”:5},{“imageOffset”:133976,”imageIndex”:5},{“imageOffset”:29248,”symbol”:”_pthread_start”,”symbolLocation”:148,”imageIndex”:3},{“imageOffset”:8228,”symbol”:”thread_start”,”symbolLocation”:8,”imageIndex”:3}]},{“id”:54179,”name”:”Thread (pooled)”,”frames”:[{“imageOffset”:20672,”symbol”:”__psynch_cvwait”,”symbolLocation”:8,”imageIndex”:4},{“imageOffset”:30728,”symbol”:”_pthread_cond_wait”,”symbolLocation”:1228,”imageIndex”:3},{“imageOffset”:167812,”imageIndex”:5},{“imageOffset”:166972,”imageIndex”:5},{“imageOffset”:166796,”symbol”:”QWaitCondition::wait(QMutex*, QDeadlineTimer)”,”symbolLocation”:104,”imageIndex”:5},{“imageOffset”:151668,”imageIndex”:5},{“imageOffset”:133976,”imageIndex”:5},{“imageOffset”:29248,”symbol”:”_pthread_start”,”symbolLocation”:148,”imageIndex”:3},{“imageOffset”:8228,”symbol”:”thread_start”,”symbolLocation”:8,”imageIndex”:3}]},{“id”:54180,”name”:”Thread (pooled)”,”frames”:[{“imageOffset”:20672,”symbol”:”__psynch_cvwait”,”symbolLocation”:8,”imageIndex”:4},{“imageOffset”:30728,”symbol”:”_pthread_cond_wait”,”symbolLocation”:1228,”imageIndex”:3},{“imageOffset”:167812,”imageIndex”:5},{“imageOffset”:1669 ++++++++++++++++++++++++++++++++++++++++ https://m.facebook.com/story.php?story_fbid=pfbid037wLzqsTqChiXnwYEgKgAXoERW9jo8thPaJ7Qj3GRhF7Tk6CfXekYtESTzYof1oPnl&id=100077464923048&mibextid=Nif5oz +++++++https://www.facebook.com/?_sharehttps://m.facebook.com/story.php?story_fbid=pfbid037wLzqsTqChiXnwYEgKgAXoERW9jo8thPaJ7Qj3GRhF7Tk6CfXekYtESTzYof1oPnl&id=100077464923048&mibextid=Nif5oz vv Copyright © 1999 – 2023 Google https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEi1V4U1Rgis9a-xLcDAsRjUl6kuw8YLsKlR_Qv_evgOAw8DTce0ojPKABxkkbsHT_lkG8KVhzD5BBKvtkM4-CUZl7o8ys4rozYcYhXJl82X3fwX6qfTp8_VVeefZUXYrmMrQWZ4keE0Vc0OuZ5K3s0fiZ0jbVFF9NcJmzIx3zaO8mIJ72tm46of1Ijh/s2532/IMG_0196.png%22

Comments

  1. Google Content https://newbrun1074.blogspot.com/2023/06/blog-post.html

    https://github.com/Chodum91/Papa.Legba.NB/issues/29 (m=bJWsSeKlbyaT)(mh=4N6NZAtseWL0p9UF)male.jpg {https://github.com/jducoeur/OPCompiler/blob/master/names.conf.proposed}

    https://toolbox.googleapps.com/apps/main/ https://drive.google.com/file/d/1p8X-n-LmUgFVvgsMPCV8hN1XEbOs_naV/view?usp=drivesdk&disco=AAAAxPtX2qc http://getpocket.com/@050A8g3cdu224Tu07ep7851p0gTKd039876xOuo186Va83V7dS9e1b88iaMdc679?src=navbar https://podcasts.apple.com/ca/podcast/this-week-in-startups/id315114957 https://github.com/Chodum91/Papa.Legba.NB

    ReplyDelete

Post a Comment

Popular posts from this blog

https://github.com/Chodum91/Papa.Legba.NB/, http://youtube-nocookie.com/embed/https:/rainwizzard.blogspot.com/2023/01/papalegbanb-papalegbanb.html

Iframes https://meet.google.com/landing?hs=197&authuser=2