@vkontakte/videoplayer-core 2.0.154-dev.b507ef65.0 → 2.0.154-dev.c0f690bfb.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (185) hide show
  1. package/es2018.cjs +75 -129
  2. package/es2018.esm.js +73 -127
  3. package/es2024.cjs +81 -135
  4. package/es2024.esm.js +79 -133
  5. package/esnext.cjs +81 -135
  6. package/esnext.esm.js +79 -133
  7. package/evergreen.esm.js +80 -134
  8. package/package.json +2 -2
  9. package/types/enums/AndroidPreferredFormat.d.ts +6 -6
  10. package/types/enums/IOSPreferredFormat.d.ts +2 -2
  11. package/types/enums/WebmCodecStrategy.d.ts +5 -5
  12. package/types/index.d.ts +16 -13
  13. package/types/player/Player.d.ts +218 -210
  14. package/types/player/types.d.ts +591 -591
  15. package/types/player/utils/optimisticPosition.d.ts +7 -7
  16. package/types/player/utils/selectContainer.d.ts +1 -1
  17. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiConnector.d.ts +106 -106
  18. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiInitializer.d.ts +23 -23
  19. package/types/providers/ChromecastPresentationApiProvider/ChromecastPresentationApiProvider.d.ts +34 -34
  20. package/types/providers/ChromecastPresentationApiProvider/ProgressTicker.d.ts +9 -9
  21. package/types/providers/ChromecastPresentationApiProvider/index.d.ts +3 -3
  22. package/types/providers/ChromecastPresentationApiProvider/types.d.ts +31 -31
  23. package/types/providers/ChromecastPresentationApiProvider/utils.d.ts +1 -1
  24. package/types/providers/ChromecastProvider/ChromecastInitializer/index.d.ts +22 -22
  25. package/types/providers/ChromecastProvider/ChromecastInitializer/types.d.ts +22 -22
  26. package/types/providers/ChromecastProvider/index.d.ts +23 -23
  27. package/types/providers/ChromecastProvider/types.d.ts +6 -6
  28. package/types/providers/ChromecastProvider/utils.d.ts +1 -1
  29. package/types/providers/DashLiveProvider/DashLiveProvider.d.ts +32 -33
  30. package/types/providers/DashLiveProvider/index.d.ts +1 -1
  31. package/types/providers/DashLiveProvider/types.d.ts +17 -17
  32. package/types/providers/DashLiveProvider/utils/FilesFetcher.d.ts +23 -23
  33. package/types/providers/DashLiveProvider/utils/LiveDashPlayer.d.ts +149 -150
  34. package/types/providers/DashLiveProvider/utils/ThroughputEstimator.d.ts +12 -30
  35. package/types/providers/DashLiveProvider/utils/liveDashPlayerUtil.d.ts +19 -22
  36. package/types/providers/DashProvider/baseDashProvider.d.ts +56 -56
  37. package/types/providers/DashProvider/dashCmafLiveProvider.d.ts +6 -6
  38. package/types/providers/DashProvider/dashProvider.d.ts +4 -4
  39. package/types/providers/DashProvider/index.d.ts +2 -2
  40. package/types/providers/DashProvider/lib/ElementSizeManager.d.ts +14 -14
  41. package/types/providers/DashProvider/lib/LiveTextManager.d.ts +21 -21
  42. package/types/providers/DashProvider/lib/buffer.d.ts +123 -122
  43. package/types/providers/DashProvider/lib/fetcher.d.ts +70 -69
  44. package/types/providers/DashProvider/lib/player.d.ts +109 -107
  45. package/types/providers/DashProvider/lib/sourceBufferTaskQueue.d.ts +17 -17
  46. package/types/providers/DashProvider/lib/types.d.ts +20 -20
  47. package/types/providers/DashProvider/lib/utils.d.ts +4 -4
  48. package/types/providers/DashProviderVirtual/baseDashProvider.d.ts +57 -57
  49. package/types/providers/DashProviderVirtual/consts.d.ts +2 -2
  50. package/types/providers/DashProviderVirtual/dashCmafLiveProvider.d.ts +8 -8
  51. package/types/providers/DashProviderVirtual/dashProvider.d.ts +6 -6
  52. package/types/providers/DashProviderVirtual/index.d.ts +2 -2
  53. package/types/providers/DashProviderVirtual/lib/ElementSizeManager.d.ts +15 -14
  54. package/types/providers/DashProviderVirtual/lib/LiveTextManager.d.ts +21 -21
  55. package/types/providers/DashProviderVirtual/lib/buffer/nativeBufferManager.d.ts +17 -17
  56. package/types/providers/DashProviderVirtual/lib/buffer/sourceBufferTaskQueue.d.ts +17 -17
  57. package/types/providers/DashProviderVirtual/lib/buffer/types.d.ts +39 -39
  58. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/baseVirtualBufferManager.d.ts +94 -92
  59. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/byteRangeVirtualBufferManager.d.ts +19 -19
  60. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/liveVirtualBuffer.d.ts +25 -25
  61. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/templateVirtualBufferManager.d.ts +19 -19
  62. package/types/providers/DashProviderVirtual/lib/buffer/virtualBuffer/virtualBufferFactory.d.ts +4 -4
  63. package/types/providers/DashProviderVirtual/lib/fetcher.d.ts +68 -67
  64. package/types/providers/DashProviderVirtual/lib/player/basePlayer.d.ts +103 -100
  65. package/types/providers/DashProviderVirtual/lib/player/livePlayer.d.ts +34 -34
  66. package/types/providers/DashProviderVirtual/lib/player/player.d.ts +9 -9
  67. package/types/providers/DashProviderVirtual/lib/player/types.d.ts +13 -13
  68. package/types/providers/DashProviderVirtual/lib/types.d.ts +20 -20
  69. package/types/providers/DashProviderVirtual/lib/utils.d.ts +4 -4
  70. package/types/providers/HlsLiveProvider/LiveTextManager.d.ts +35 -35
  71. package/types/providers/HlsLiveProvider/index.d.ts +28 -28
  72. package/types/providers/HlsLiveProvider/seekBackTimeExtractor.d.ts +1 -1
  73. package/types/providers/HlsProvider/index.d.ts +18 -19
  74. package/types/providers/HlsProvider/manifestDataExtractor.d.ts +13 -13
  75. package/types/providers/MpegProvider/index.d.ts +16 -17
  76. package/types/providers/ProviderContainer/index.d.ts +45 -45
  77. package/types/providers/ProviderContainer/types.d.ts +16 -16
  78. package/types/providers/ProviderContainer/utils/formatsSupport.d.ts +9 -9
  79. package/types/providers/ProviderContainer/utils/playbackHangup.d.ts +9 -8
  80. package/types/providers/WebRTCLiveProvider/WebRTCLiveClient.d.ts +185 -185
  81. package/types/providers/WebRTCLiveProvider/WebRTCLiveProvider.d.ts +57 -57
  82. package/types/providers/WebRTCLiveProvider/interface/WebRTCLiveClientOptions.d.ts +6 -6
  83. package/types/providers/types.d.ts +102 -102
  84. package/types/providers/utils/HTMLVideoElement/DroppedFramesManager.d.ts +40 -39
  85. package/types/providers/utils/HTMLVideoElement/TextTrackManager.d.ts +28 -28
  86. package/types/providers/utils/HTMLVideoElement/forcePlay.d.ts +5 -5
  87. package/types/providers/utils/HTMLVideoElement/observable.d.ts +25 -25
  88. package/types/providers/utils/HTMLVideoElement/pool.d.ts +2 -2
  89. package/types/providers/utils/LiveOffset/index.d.ts +12 -12
  90. package/types/providers/utils/LiveOffset/types.d.ts +8 -8
  91. package/types/providers/utils/StallsManager.d.ts +49 -49
  92. package/types/providers/utils/debug.d.ts +13 -12
  93. package/types/providers/utils/extractConnectionHeaders.d.ts +3 -3
  94. package/types/providers/utils/generateLiveUrl.d.ts +4 -4
  95. package/types/providers/utils/guessNetworkErrorCause.d.ts +1 -1
  96. package/types/providers/utils/mergeIntervals.d.ts +1 -1
  97. package/types/providers/utils/okQualityStringToVideoQuality.d.ts +1 -1
  98. package/types/providers/utils/parsers/ietf/index.d.ts +8 -8
  99. package/types/providers/utils/parsers/index.d.ts +1 -1
  100. package/types/providers/utils/parsers/mpd.d.ts +1 -1
  101. package/types/providers/utils/parsers/mpeg/BoxModel.d.ts +18 -17
  102. package/types/providers/utils/parsers/mpeg/BoxParser.d.ts +15 -15
  103. package/types/providers/utils/parsers/mpeg/BoxTypeEnum.d.ts +27 -27
  104. package/types/providers/utils/parsers/mpeg/box.d.ts +68 -68
  105. package/types/providers/utils/parsers/mpeg/boxes/avc1.d.ts +5 -5
  106. package/types/providers/utils/parsers/mpeg/boxes/equi.d.ts +18 -18
  107. package/types/providers/utils/parsers/mpeg/boxes/ftyp.d.ts +14 -14
  108. package/types/providers/utils/parsers/mpeg/boxes/index.d.ts +27 -26
  109. package/types/providers/utils/parsers/mpeg/boxes/mdat.d.ts +12 -12
  110. package/types/providers/utils/parsers/mpeg/boxes/mdia.d.ts +5 -5
  111. package/types/providers/utils/parsers/mpeg/boxes/mfhd.d.ts +8 -8
  112. package/types/providers/utils/parsers/mpeg/boxes/minf.d.ts +5 -5
  113. package/types/providers/utils/parsers/mpeg/boxes/moof.d.ts +5 -5
  114. package/types/providers/utils/parsers/mpeg/boxes/moov.d.ts +5 -5
  115. package/types/providers/utils/parsers/mpeg/boxes/mvhd.d.ts +32 -32
  116. package/types/providers/utils/parsers/mpeg/boxes/prhd.d.ts +13 -13
  117. package/types/providers/utils/parsers/mpeg/boxes/proj.d.ts +5 -5
  118. package/types/providers/utils/parsers/mpeg/boxes/sidx.d.ts +43 -43
  119. package/types/providers/utils/parsers/mpeg/boxes/st3d.d.ts +16 -16
  120. package/types/providers/utils/parsers/mpeg/boxes/stbl.d.ts +5 -5
  121. package/types/providers/utils/parsers/mpeg/boxes/stsd.d.ts +8 -8
  122. package/types/providers/utils/parsers/mpeg/boxes/sv3d.d.ts +5 -5
  123. package/types/providers/utils/parsers/mpeg/boxes/tfdt.d.ts +14 -14
  124. package/types/providers/utils/parsers/mpeg/boxes/tfhd.d.ts +19 -19
  125. package/types/providers/utils/parsers/mpeg/boxes/tkhd.d.ts +39 -39
  126. package/types/providers/utils/parsers/mpeg/boxes/traf.d.ts +5 -5
  127. package/types/providers/utils/parsers/mpeg/boxes/trak.d.ts +5 -5
  128. package/types/providers/utils/parsers/mpeg/boxes/trun.d.ts +28 -28
  129. package/types/providers/utils/parsers/mpeg/boxes/unknown.d.ts +4 -5
  130. package/types/providers/utils/parsers/mpeg/boxes/uuid.d.ts +10 -10
  131. package/types/providers/utils/parsers/mpeg/fullBox.d.ts +12 -12
  132. package/types/providers/utils/parsers/mpeg/isobmff.d.ts +7 -7
  133. package/types/providers/utils/parsers/types.d.ts +137 -139
  134. package/types/providers/utils/parsers/webm/ebml.d.ts +62 -62
  135. package/types/providers/utils/parsers/webm/webm.d.ts +1 -1
  136. package/types/providers/utils/restorePlaybackRateInSafari.d.ts +17 -17
  137. package/types/providers/utils/syncDesiredState.d.ts +7 -9
  138. package/types/providers/utils/syncPlaybackState.d.ts +2 -2
  139. package/types/providers/utils/videoStreamRepresentaionsFilter.d.ts +2 -2
  140. package/types/utils/3d/Camera3D.d.ts +11 -11
  141. package/types/utils/3d/CameraRotationManager.d.ts +59 -59
  142. package/types/utils/3d/Scene3D.d.ts +129 -129
  143. package/types/utils/3d/types.d.ts +14 -14
  144. package/types/utils/ClientChecker/ClientChecker.d.ts +19 -19
  145. package/types/utils/ClientChecker/index.d.ts +2 -2
  146. package/types/utils/ClientChecker/services/AudioChecker.d.ts +7 -7
  147. package/types/utils/ClientChecker/services/BrowserChecker.d.ts +36 -36
  148. package/types/utils/ClientChecker/services/DeviceChecker.d.ts +38 -38
  149. package/types/utils/ClientChecker/services/DisplayChecker.d.ts +20 -20
  150. package/types/utils/ClientChecker/services/VideoChecker.d.ts +35 -35
  151. package/types/utils/ClientChecker/types/checker.d.ts +1 -1
  152. package/types/utils/ClientChecker/types/currentClientBrowser.d.ts +10 -10
  153. package/types/utils/ClientChecker/types/currentClientDevice.d.ts +8 -8
  154. package/types/utils/ClientChecker/types/userAgentData.d.ts +21 -21
  155. package/types/utils/StateMachine/StateMachine.d.ts +17 -17
  156. package/types/utils/StateMachine/types.d.ts +56 -56
  157. package/types/utils/StatefulIterator/index.d.ts +13 -13
  158. package/types/utils/ThroughputEstimator.d.ts +22 -22
  159. package/types/utils/VolumeMultiplierManager/VolumeMultiplierManager.d.ts +20 -20
  160. package/types/utils/VolumeMultiplierManager/index.d.ts +1 -1
  161. package/types/utils/autoSelectTrack.d.ts +28 -27
  162. package/types/utils/buffer/createTimeRanges.d.ts +2 -1
  163. package/types/utils/buffer/getBufferedRangeForPosition.d.ts +2 -2
  164. package/types/utils/buffer/getForwardBufferDuration.d.ts +1 -1
  165. package/types/utils/buffer/getTotalBufferDuration.d.ts +1 -1
  166. package/types/utils/buffer/isPositionBuffered.d.ts +1 -1
  167. package/types/utils/buffer/isSourceBufferValid.d.ts +1 -1
  168. package/types/utils/changePlaybackRate.d.ts +1 -1
  169. package/types/utils/decodingInfoLogger.d.ts +1 -1
  170. package/types/utils/mediaSource.d.ts +1 -5
  171. package/types/utils/observeElementVisibility.d.ts +1 -1
  172. package/types/utils/playbackTelemetry.d.ts +4 -4
  173. package/types/utils/playerOptions.d.ts +3 -3
  174. package/types/utils/qualityLimits.d.ts +15 -14
  175. package/types/utils/setStateWithSubscribe.d.ts +6 -3
  176. package/types/utils/smoothedValue/baseSmoothedValue.d.ts +16 -16
  177. package/types/utils/smoothedValue/emaAndMaSmoothedValue.d.ts +5 -5
  178. package/types/utils/smoothedValue/emaTopExtremumValue.d.ts +8 -8
  179. package/types/utils/smoothedValue/smoothedValueFactory.d.ts +4 -4
  180. package/types/utils/smoothedValue/twoEmaSmoothedValue.d.ts +6 -6
  181. package/types/utils/smoothedValue/types.d.ts +16 -16
  182. package/types/utils/tuningConfig.d.ts +288 -287
  183. package/types/utils/videoFormat.d.ts +1 -1
  184. package/es2015.cjs +0 -184
  185. package/es2015.esm.js +0 -184
package/es2018.cjs CHANGED
@@ -1,184 +1,130 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.154-dev.b507ef65.0
3
- * Tue, 10 Mar 2026 12:36:35 GMT
2
+ * @vkontakte/videoplayer-core v2.0.154-dev.c0f690bfb.0
3
+ * Wed, 11 Mar 2026 17:00:09 GMT
4
4
  * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-154/doc/
5
5
  */
6
- "use strict";var vT=Object.create;var Zs=Object.defineProperty;var ST=Object.getOwnPropertyDescriptor;var yT=Object.getOwnPropertyNames;var TT=Object.getPrototypeOf,IT=Object.prototype.hasOwnProperty;var g=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),ET=(s,e)=>{for(var t in e)Zs(s,t,{get:e[t],enumerable:!0})},Bd=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of yT(e))!IT.call(s,r)&&r!==t&&Zs(s,r,{get:()=>e[r],enumerable:!(i=ST(e,r))||i.enumerable});return s};var G=(s,e,t)=>(t=s!=null?vT(TT(s)):{},Bd(e||!s||!s.__esModule?Zs(t,"default",{value:s,enumerable:!0}):t,s)),wT=s=>Bd(Zs({},"__esModule",{value:!0}),s);var Pe=g((Jo,Vd)=>{"use strict";var sa=function(s){return s&&s.Math===Math&&s};Vd.exports=sa(typeof globalThis=="object"&&globalThis)||sa(typeof window=="object"&&window)||sa(typeof self=="object"&&self)||sa(typeof global=="object"&&global)||sa(typeof Jo=="object"&&Jo)||function(){return this}()||Function("return this")()});var Ce=g((vL,_d)=>{"use strict";_d.exports=function(s){try{return!!s()}catch(e){return!0}}});var na=g((SL,Od)=>{"use strict";var xT=Ce();Od.exports=!xT(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var Zo=g((yL,qd)=>{"use strict";var PT=na(),Ud=Function.prototype,Nd=Ud.apply,Fd=Ud.call;qd.exports=typeof Reflect=="object"&&Reflect.apply||(PT?Fd.bind(Nd):function(){return Fd.apply(Nd,arguments)})});var De=g((TL,Wd)=>{"use strict";var jd=na(),Hd=Function.prototype,eu=Hd.call,kT=jd&&Hd.bind.bind(eu,eu);Wd.exports=jd?kT:function(s){return function(){return eu.apply(s,arguments)}}});var Ni=g((IL,zd)=>{"use strict";var Qd=De(),AT=Qd({}.toString),RT=Qd("".slice);zd.exports=function(s){return RT(AT(s),8,-1)}});var tu=g((EL,Gd)=>{"use strict";var MT=Ni(),$T=De();Gd.exports=function(s){if(MT(s)==="Function")return $T(s)}});var ke=g((wL,Yd)=>{"use strict";var iu=typeof document=="object"&&document.all;Yd.exports=typeof iu=="undefined"&&iu!==void 0?function(s){return typeof s=="function"||s===iu}:function(s){return typeof s=="function"}});var nt=g((xL,Kd)=>{"use strict";var LT=Ce();Kd.exports=!LT(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var ot=g((PL,Xd)=>{"use strict";var CT=na(),an=Function.prototype.call;Xd.exports=CT?an.bind(an):function(){return an.apply(an,arguments)}});var ru=g(ep=>{"use strict";var Jd={}.propertyIsEnumerable,Zd=Object.getOwnPropertyDescriptor,DT=Zd&&!Jd.call({1:2},1);ep.f=DT?function(e){var t=Zd(this,e);return!!t&&t.enumerable}:Jd});var oa=g((AL,tp)=>{"use strict";tp.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var rp=g((RL,ip)=>{"use strict";var BT=De(),VT=Ce(),_T=Ni(),au=Object,OT=BT("".split);ip.exports=VT(function(){return!au("z").propertyIsEnumerable(0)})?function(s){return _T(s)==="String"?OT(s,""):au(s)}:au});var ua=g((ML,ap)=>{"use strict";ap.exports=function(s){return s==null}});var li=g(($L,sp)=>{"use strict";var NT=ua(),FT=TypeError;sp.exports=function(s){if(NT(s))throw new FT("Can't call method on "+s);return s}});var Fi=g((LL,np)=>{"use strict";var UT=rp(),qT=li();np.exports=function(s){return UT(qT(s))}});var Ke=g((CL,op)=>{"use strict";var jT=ke();op.exports=function(s){return typeof s=="object"?s!==null:jT(s)}});var Ui=g((DL,up)=>{"use strict";up.exports={}});var zt=g((BL,lp)=>{"use strict";var su=Ui(),nu=Pe(),HT=ke(),cp=function(s){return HT(s)?s:void 0};lp.exports=function(s,e){return arguments.length<2?cp(su[s])||cp(nu[s]):su[s]&&su[s][e]||nu[s]&&nu[s][e]}});var ca=g((VL,dp)=>{"use strict";var WT=De();dp.exports=WT({}.isPrototypeOf)});var qi=g((_L,fp)=>{"use strict";var QT=Pe(),pp=QT.navigator,hp=pp&&pp.userAgent;fp.exports=hp?String(hp):""});var uu=g((OL,yp)=>{"use strict";var Sp=Pe(),ou=qi(),mp=Sp.process,bp=Sp.Deno,gp=mp&&mp.versions||bp&&bp.version,vp=gp&&gp.v8,wt,sn;vp&&(wt=vp.split("."),sn=wt[0]>0&&wt[0]<4?1:+(wt[0]+wt[1]));!sn&&ou&&(wt=ou.match(/Edge\/(\d+)/),(!wt||wt[1]>=74)&&(wt=ou.match(/Chrome\/(\d+)/),wt&&(sn=+wt[1])));yp.exports=sn});var cu=g((NL,Ip)=>{"use strict";var Tp=uu(),zT=Ce(),GT=Pe(),YT=GT.String;Ip.exports=!!Object.getOwnPropertySymbols&&!zT(function(){var s=Symbol("symbol detection");return!YT(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&Tp&&Tp<41})});var lu=g((FL,Ep)=>{"use strict";var KT=cu();Ep.exports=KT&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var du=g((UL,wp)=>{"use strict";var XT=zt(),JT=ke(),ZT=ca(),eI=lu(),tI=Object;wp.exports=eI?function(s){return typeof s=="symbol"}:function(s){var e=XT("Symbol");return JT(e)&&ZT(e.prototype,tI(s))}});var la=g((qL,xp)=>{"use strict";var iI=String;xp.exports=function(s){try{return iI(s)}catch(e){return"Object"}}});var Vt=g((jL,Pp)=>{"use strict";var rI=ke(),aI=la(),sI=TypeError;Pp.exports=function(s){if(rI(s))return s;throw new sI(aI(s)+" is not a function")}});var da=g((HL,kp)=>{"use strict";var nI=Vt(),oI=ua();kp.exports=function(s,e){var t=s[e];return oI(t)?void 0:nI(t)}});var Rp=g((WL,Ap)=>{"use strict";var pu=ot(),hu=ke(),fu=Ke(),uI=TypeError;Ap.exports=function(s,e){var t,i;if(e==="string"&&hu(t=s.toString)&&!fu(i=pu(t,s))||hu(t=s.valueOf)&&!fu(i=pu(t,s))||e!=="string"&&hu(t=s.toString)&&!fu(i=pu(t,s)))return i;throw new uI("Can't convert object to primitive value")}});var xt=g((QL,Mp)=>{"use strict";Mp.exports=!0});var Cp=g((zL,Lp)=>{"use strict";var $p=Pe(),cI=Object.defineProperty;Lp.exports=function(s,e){try{cI($p,s,{value:e,configurable:!0,writable:!0})}catch(t){$p[s]=e}return e}});var pa=g((GL,Vp)=>{"use strict";var lI=xt(),dI=Pe(),pI=Cp(),Dp="__core-js_shared__",Bp=Vp.exports=dI[Dp]||pI(Dp,{});(Bp.versions||(Bp.versions=[])).push({version:"3.43.0",mode:lI?"pure":"global",copyright:"© 2014-2025 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.43.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var mu=g((YL,Op)=>{"use strict";var _p=pa();Op.exports=function(s,e){return _p[s]||(_p[s]=e||{})}});var vr=g((KL,Np)=>{"use strict";var hI=li(),fI=Object;Np.exports=function(s){return fI(hI(s))}});var Pt=g((XL,Fp)=>{"use strict";var mI=De(),bI=vr(),gI=mI({}.hasOwnProperty);Fp.exports=Object.hasOwn||function(e,t){return gI(bI(e),t)}});var bu=g((JL,Up)=>{"use strict";var vI=De(),SI=0,yI=Math.random(),TI=vI(1.1.toString);Up.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+TI(++SI+yI,36)}});var je=g((ZL,jp)=>{"use strict";var II=Pe(),EI=mu(),qp=Pt(),wI=bu(),xI=cu(),PI=lu(),Sr=II.Symbol,gu=EI("wks"),kI=PI?Sr.for||Sr:Sr&&Sr.withoutSetter||wI;jp.exports=function(s){return qp(gu,s)||(gu[s]=xI&&qp(Sr,s)?Sr[s]:kI("Symbol."+s)),gu[s]}});var zp=g((eC,Qp)=>{"use strict";var AI=ot(),Hp=Ke(),Wp=du(),RI=da(),MI=Rp(),$I=je(),LI=TypeError,CI=$I("toPrimitive");Qp.exports=function(s,e){if(!Hp(s)||Wp(s))return s;var t=RI(s,CI),i;if(t){if(e===void 0&&(e="default"),i=AI(t,s,e),!Hp(i)||Wp(i))return i;throw new LI("Can't convert object to primitive value")}return e===void 0&&(e="number"),MI(s,e)}});var vu=g((tC,Gp)=>{"use strict";var DI=zp(),BI=du();Gp.exports=function(s){var e=DI(s,"string");return BI(e)?e:e+""}});var nn=g((iC,Kp)=>{"use strict";var VI=Pe(),Yp=Ke(),Su=VI.document,_I=Yp(Su)&&Yp(Su.createElement);Kp.exports=function(s){return _I?Su.createElement(s):{}}});var yu=g((rC,Xp)=>{"use strict";var OI=nt(),NI=Ce(),FI=nn();Xp.exports=!OI&&!NI(function(){return Object.defineProperty(FI("div"),"a",{get:function(){return 7}}).a!==7})});var eh=g(Zp=>{"use strict";var UI=nt(),qI=ot(),jI=ru(),HI=oa(),WI=Fi(),QI=vu(),zI=Pt(),GI=yu(),Jp=Object.getOwnPropertyDescriptor;Zp.f=UI?Jp:function(e,t){if(e=WI(e),t=QI(t),GI)try{return Jp(e,t)}catch(i){}if(zI(e,t))return HI(!qI(jI.f,e,t),e[t])}});var Tu=g((sC,th)=>{"use strict";var YI=Ce(),KI=ke(),XI=/#|\.prototype\./,ha=function(s,e){var t=ZI[JI(s)];return t===tE?!0:t===eE?!1:KI(e)?YI(e):!!e},JI=ha.normalize=function(s){return String(s).replace(XI,".").toLowerCase()},ZI=ha.data={},eE=ha.NATIVE="N",tE=ha.POLYFILL="P";th.exports=ha});var yr=g((nC,rh)=>{"use strict";var ih=tu(),iE=Vt(),rE=na(),aE=ih(ih.bind);rh.exports=function(s,e){return iE(s),e===void 0?s:rE?aE(s,e):function(){return s.apply(e,arguments)}}});var Iu=g((oC,ah)=>{"use strict";var sE=nt(),nE=Ce();ah.exports=sE&&nE(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var _t=g((uC,sh)=>{"use strict";var oE=Ke(),uE=String,cE=TypeError;sh.exports=function(s){if(oE(s))return s;throw new cE(uE(s)+" is not an object")}});var ji=g(oh=>{"use strict";var lE=nt(),dE=yu(),pE=Iu(),on=_t(),nh=vu(),hE=TypeError,Eu=Object.defineProperty,fE=Object.getOwnPropertyDescriptor,wu="enumerable",xu="configurable",Pu="writable";oh.f=lE?pE?function(e,t,i){if(on(e),t=nh(t),on(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Pu in i&&!i[Pu]){var r=fE(e,t);r&&r[Pu]&&(e[t]=i.value,i={configurable:xu in i?i[xu]:r[xu],enumerable:wu in i?i[wu]:r[wu],writable:!1})}return Eu(e,t,i)}:Eu:function(e,t,i){if(on(e),t=nh(t),on(i),dE)try{return Eu(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new hE("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Tr=g((lC,uh)=>{"use strict";var mE=nt(),bE=ji(),gE=oa();uh.exports=mE?function(s,e,t){return bE.f(s,e,gE(1,t))}:function(s,e,t){return s[e]=t,s}});var Me=g((dC,lh)=>{"use strict";var fa=Pe(),vE=Zo(),SE=tu(),yE=ke(),TE=eh().f,IE=Tu(),Ir=Ui(),EE=yr(),Er=Tr(),ch=Pt();pa();var wE=function(s){var e=function(t,i,r){if(this instanceof e){switch(arguments.length){case 0:return new s;case 1:return new s(t);case 2:return new s(t,i)}return new s(t,i,r)}return vE(s,this,arguments)};return e.prototype=s.prototype,e};lh.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?fa:r?fa[t]:fa[t]&&fa[t].prototype,o=i?Ir:Ir[t]||Er(Ir,t,{})[t],u=o.prototype,c,l,d,p,h,m,b,S,v;for(p in e)c=IE(i?p:t+(r?".":"#")+p,s.forced),l=!c&&n&&ch(n,p),m=o[p],l&&(s.dontCallGetSet?(v=TE(n,p),b=v&&v.value):b=n[p]),h=l&&b?b:e[p],!(!c&&!a&&typeof m==typeof h)&&(s.bind&&l?S=EE(h,fa):s.wrap&&l?S=wE(h):a&&yE(h)?S=SE(h):S=h,(s.sham||h&&h.sham||m&&m.sham)&&Er(S,"sham",!0),Er(o,p,S),a&&(d=t+"Prototype",ch(Ir,d)||Er(Ir,d,{}),Er(Ir[d],p,h),s.real&&u&&(c||!u[p])&&Er(u,p,h)))}});var un=g((pC,ph)=>{"use strict";var xE=mu(),PE=bu(),dh=xE("keys");ph.exports=function(s){return dh[s]||(dh[s]=PE(s))}});var fh=g((hC,hh)=>{"use strict";var kE=Ce();hh.exports=!kE(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var cn=g((fC,bh)=>{"use strict";var AE=Pt(),RE=ke(),ME=vr(),$E=un(),LE=fh(),mh=$E("IE_PROTO"),ku=Object,CE=ku.prototype;bh.exports=LE?ku.getPrototypeOf:function(s){var e=ME(s);if(AE(e,mh))return e[mh];var t=e.constructor;return RE(t)&&e instanceof t?t.prototype:e instanceof ku?CE:null}});var vh=g((mC,gh)=>{"use strict";var DE=Math.ceil,BE=Math.floor;gh.exports=Math.trunc||function(e){var t=+e;return(t>0?BE:DE)(t)}});var ma=g((bC,Sh)=>{"use strict";var VE=vh();Sh.exports=function(s){var e=+s;return e!==e||e===0?0:VE(e)}});var Th=g((gC,yh)=>{"use strict";var _E=ma(),OE=Math.max,NE=Math.min;yh.exports=function(s,e){var t=_E(s);return t<0?OE(t+e,0):NE(t,e)}});var Au=g((vC,Ih)=>{"use strict";var FE=ma(),UE=Math.min;Ih.exports=function(s){var e=FE(s);return e>0?UE(e,9007199254740991):0}});var wr=g((SC,Eh)=>{"use strict";var qE=Au();Eh.exports=function(s){return qE(s.length)}});var Ru=g((yC,xh)=>{"use strict";var jE=Fi(),HE=Th(),WE=wr(),wh=function(s){return function(e,t,i){var r=jE(e),a=WE(r);if(a===0)return!s&&-1;var n=HE(i,a),o;if(s&&t!==t){for(;a>n;)if(o=r[n++],o!==o)return!0}else for(;a>n;n++)if((s||n in r)&&r[n]===t)return s||n||0;return!s&&-1}};xh.exports={includes:wh(!0),indexOf:wh(!1)}});var ln=g((TC,Ph)=>{"use strict";Ph.exports={}});var Rh=g((IC,Ah)=>{"use strict";var QE=De(),Mu=Pt(),zE=Fi(),GE=Ru().indexOf,YE=ln(),kh=QE([].push);Ah.exports=function(s,e){var t=zE(s),i=0,r=[],a;for(a in t)!Mu(YE,a)&&Mu(t,a)&&kh(r,a);for(;e.length>i;)Mu(t,a=e[i++])&&(~GE(r,a)||kh(r,a));return r}});var $u=g((EC,Mh)=>{"use strict";Mh.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Lu=g((wC,$h)=>{"use strict";var KE=Rh(),XE=$u();$h.exports=Object.keys||function(e){return KE(e,XE)}});var Cu=g((xC,Vh)=>{"use strict";var Ch=nt(),JE=Ce(),Dh=De(),ZE=cn(),ew=Lu(),tw=Fi(),iw=ru().f,Bh=Dh(iw),rw=Dh([].push),aw=Ch&&JE(function(){var s=Object.create(null);return s[2]=2,!Bh(s,2)}),Lh=function(s){return function(e){for(var t=tw(e),i=ew(t),r=aw&&ZE(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!Ch||(r?u in t:Bh(t,u)))&&rw(o,s?[u,t[u]]:t[u]);return o}};Vh.exports={entries:Lh(!0),values:Lh(!1)}});var _h=g(()=>{"use strict";var sw=Me(),nw=Cu().values;sw({target:"Object",stat:!0},{values:function(e){return nw(e)}})});var Nh=g((AC,Oh)=>{"use strict";_h();var ow=Ui();Oh.exports=ow.Object.values});var Uh=g((RC,Fh)=>{"use strict";var uw=Nh();Fh.exports=uw});var Hi=g((MC,qh)=>{"use strict";var cw=Uh();qh.exports=cw});var ba=g(($C,jh)=>{"use strict";jh.exports=function(){}});var Hh=g(()=>{"use strict";var lw=Me(),dw=Ru().includes,pw=Ce(),hw=ba(),fw=pw(function(){return!Array(1).includes()});lw({target:"Array",proto:!0,forced:fw},{includes:function(e){return dw(this,e,arguments.length>1?arguments[1]:void 0)}});hw("includes")});var di=g((DC,Wh)=>{"use strict";var mw=zt();Wh.exports=mw});var zh=g((BC,Qh)=>{"use strict";Hh();var bw=di();Qh.exports=bw("Array","includes")});var Yh=g((VC,Gh)=>{"use strict";var gw=zh();Gh.exports=gw});var Xe=g((_C,Kh)=>{"use strict";var vw=Yh();Kh.exports=vw});var pf=g(()=>{"use strict";var Aw=Me(),Rw=Cu().entries;Aw({target:"Object",stat:!0},{entries:function(e){return Rw(e)}})});var ff=g((w0,hf)=>{"use strict";pf();var Mw=Ui();hf.exports=Mw.Object.entries});var bf=g((x0,mf)=>{"use strict";var $w=ff();mf.exports=$w});var mi=g((P0,gf)=>{"use strict";var Lw=bf();gf.exports=Lw});var Qi=g((k0,vf)=>{"use strict";vf.exports={}});var Tf=g((A0,yf)=>{"use strict";var Cw=Pe(),Dw=ke(),Sf=Cw.WeakMap;yf.exports=Dw(Sf)&&/native code/.test(String(Sf))});var Uu=g((R0,wf)=>{"use strict";var Bw=Tf(),Ef=Pe(),Vw=Ke(),_w=Tr(),Ou=Pt(),Nu=pa(),Ow=un(),Nw=ln(),If="Object already initialized",Fu=Ef.TypeError,Fw=Ef.WeakMap,En,Ta,wn,Uw=function(s){return wn(s)?Ta(s):En(s,{})},qw=function(s){return function(e){var t;if(!Vw(e)||(t=Ta(e)).type!==s)throw new Fu("Incompatible receiver, "+s+" required");return t}};Bw||Nu.state?(kt=Nu.state||(Nu.state=new Fw),kt.get=kt.get,kt.has=kt.has,kt.set=kt.set,En=function(s,e){if(kt.has(s))throw new Fu(If);return e.facade=s,kt.set(s,e),e},Ta=function(s){return kt.get(s)||{}},wn=function(s){return kt.has(s)}):(zi=Ow("state"),Nw[zi]=!0,En=function(s,e){if(Ou(s,zi))throw new Fu(If);return e.facade=s,_w(s,zi,e),e},Ta=function(s){return Ou(s,zi)?s[zi]:{}},wn=function(s){return Ou(s,zi)});var kt,zi;wf.exports={set:En,get:Ta,has:wn,enforce:Uw,getterFor:qw}});var Hu=g((M0,Pf)=>{"use strict";var qu=nt(),jw=Pt(),xf=Function.prototype,Hw=qu&&Object.getOwnPropertyDescriptor,ju=jw(xf,"name"),Ww=ju&&function(){}.name==="something",Qw=ju&&(!qu||qu&&Hw(xf,"name").configurable);Pf.exports={EXISTS:ju,PROPER:Ww,CONFIGURABLE:Qw}});var Af=g(kf=>{"use strict";var zw=nt(),Gw=Iu(),Yw=ji(),Kw=_t(),Xw=Fi(),Jw=Lu();kf.f=zw&&!Gw?Object.defineProperties:function(e,t){Kw(e);for(var i=Xw(t),r=Jw(t),a=r.length,n=0,o;a>n;)Yw.f(e,o=r[n++],i[o]);return e}});var Wu=g((L0,Rf)=>{"use strict";var Zw=zt();Rf.exports=Zw("document","documentElement")});var Yu=g((C0,Vf)=>{"use strict";var ex=_t(),tx=Af(),Mf=$u(),ix=ln(),rx=Wu(),ax=nn(),sx=un(),$f=">",Lf="<",zu="prototype",Gu="script",Df=sx("IE_PROTO"),Qu=function(){},Bf=function(s){return Lf+Gu+$f+s+Lf+"/"+Gu+$f},Cf=function(s){s.write(Bf("")),s.close();var e=s.parentWindow.Object;return s=null,e},nx=function(){var s=ax("iframe"),e="java"+Gu+":",t;return s.style.display="none",rx.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(Bf("document.F=Object")),t.close(),t.F},xn,Pn=function(){try{xn=new ActiveXObject("htmlfile")}catch(e){}Pn=typeof document!="undefined"?document.domain&&xn?Cf(xn):nx():Cf(xn);for(var s=Mf.length;s--;)delete Pn[zu][Mf[s]];return Pn()};ix[Df]=!0;Vf.exports=Object.create||function(e,t){var i;return e!==null?(Qu[zu]=ex(e),i=new Qu,Qu[zu]=null,i[Df]=e):i=Pn(),t===void 0?i:tx.f(i,t)}});var Pr=g((D0,_f)=>{"use strict";var ox=Tr();_f.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:ox(s,e,t),s}});var Zu=g((B0,Ff)=>{"use strict";var ux=Ce(),cx=ke(),lx=Ke(),dx=Yu(),Of=cn(),px=Pr(),hx=je(),fx=xt(),Ju=hx("iterator"),Nf=!1,Yt,Ku,Xu;[].keys&&(Xu=[].keys(),"next"in Xu?(Ku=Of(Of(Xu)),Ku!==Object.prototype&&(Yt=Ku)):Nf=!0);var mx=!lx(Yt)||ux(function(){var s={};return Yt[Ju].call(s)!==s});mx?Yt={}:fx&&(Yt=dx(Yt));cx(Yt[Ju])||px(Yt,Ju,function(){return this});Ff.exports={IteratorPrototype:Yt,BUGGY_SAFARI_ITERATORS:Nf}});var kn=g((V0,qf)=>{"use strict";var bx=je(),gx=bx("toStringTag"),Uf={};Uf[gx]="z";qf.exports=String(Uf)==="[object z]"});var Ia=g((_0,jf)=>{"use strict";var vx=kn(),Sx=ke(),An=Ni(),yx=je(),Tx=yx("toStringTag"),Ix=Object,Ex=An(function(){return arguments}())==="Arguments",wx=function(s,e){try{return s[e]}catch(t){}};jf.exports=vx?An:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=wx(e=Ix(s),Tx))=="string"?t:Ex?An(e):(i=An(e))==="Object"&&Sx(e.callee)?"Arguments":i}});var Wf=g((O0,Hf)=>{"use strict";var xx=kn(),Px=Ia();Hf.exports=xx?{}.toString:function(){return"[object "+Px(this)+"]"}});var Ea=g((N0,zf)=>{"use strict";var kx=kn(),Ax=ji().f,Rx=Tr(),Mx=Pt(),$x=Wf(),Lx=je(),Qf=Lx("toStringTag");zf.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(Mx(r,Qf)||Ax(r,Qf,{configurable:!0,value:e}),i&&!kx&&Rx(r,"toString",$x))}});var Yf=g((F0,Gf)=>{"use strict";var Cx=Zu().IteratorPrototype,Dx=Yu(),Bx=oa(),Vx=Ea(),_x=Qi(),Ox=function(){return this};Gf.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=Dx(Cx,{next:Bx(+!i,t)}),Vx(s,r,!1,!0),_x[r]=Ox,s}});var Xf=g((U0,Kf)=>{"use strict";var Nx=De(),Fx=Vt();Kf.exports=function(s,e,t){try{return Nx(Fx(Object.getOwnPropertyDescriptor(s,e)[t]))}catch(i){}}});var Zf=g((q0,Jf)=>{"use strict";var Ux=Ke();Jf.exports=function(s){return Ux(s)||s===null}});var tm=g((j0,em)=>{"use strict";var qx=Zf(),jx=String,Hx=TypeError;em.exports=function(s){if(qx(s))return s;throw new Hx("Can't set "+jx(s)+" as a prototype")}});var ec=g((H0,im)=>{"use strict";var Wx=Xf(),Qx=Ke(),zx=li(),Gx=tm();im.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=Wx(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch(i){}return function(r,a){return zx(r),Gx(a),Qx(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var hm=g((W0,pm)=>{"use strict";var Yx=Me(),Kx=ot(),Rn=xt(),lm=Hu(),Xx=ke(),Jx=Yf(),rm=cn(),am=ec(),Zx=Ea(),eP=Tr(),tc=Pr(),tP=je(),sm=Qi(),dm=Zu(),iP=lm.PROPER,rP=lm.CONFIGURABLE,nm=dm.IteratorPrototype,Mn=dm.BUGGY_SAFARI_ITERATORS,wa=tP("iterator"),om="keys",xa="values",um="entries",cm=function(){return this};pm.exports=function(s,e,t,i,r,a,n){Jx(t,e,i);var o=function(v){if(v===r&&p)return p;if(!Mn&&v&&v in l)return l[v];switch(v){case om:return function(){return new t(this,v)};case xa:return function(){return new t(this,v)};case um:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",c=!1,l=s.prototype,d=l[wa]||l["@@iterator"]||r&&l[r],p=!Mn&&d||o(r),h=e==="Array"&&l.entries||d,m,b,S;if(h&&(m=rm(h.call(new s)),m!==Object.prototype&&m.next&&(!Rn&&rm(m)!==nm&&(am?am(m,nm):Xx(m[wa])||tc(m,wa,cm)),Zx(m,u,!0,!0),Rn&&(sm[u]=cm))),iP&&r===xa&&d&&d.name!==xa&&(!Rn&&rP?eP(l,"name",xa):(c=!0,p=function(){return Kx(d,this)})),r)if(b={values:o(xa),keys:a?p:o(om),entries:o(um)},n)for(S in b)(Mn||c||!(S in l))&&tc(l,S,b[S]);else Yx({target:e,proto:!0,forced:Mn||c},b);return(!Rn||n)&&l[wa]!==p&&tc(l,wa,p,{name:r}),sm[e]=p,b}});var mm=g((Q0,fm)=>{"use strict";fm.exports=function(s,e){return{value:s,done:e}}});var rc=g((z0,ym)=>{"use strict";var aP=Fi(),ic=ba(),bm=Qi(),vm=Uu(),sP=ji().f,nP=hm(),$n=mm(),oP=xt(),uP=nt(),Sm="Array Iterator",cP=vm.set,lP=vm.getterFor(Sm);ym.exports=nP(Array,"Array",function(s,e){cP(this,{type:Sm,target:aP(s),index:0,kind:e})},function(){var s=lP(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=null,$n(void 0,!0);switch(s.kind){case"keys":return $n(t,!1);case"values":return $n(e[t],!1)}return $n([t,e[t]],!1)},"values");var gm=bm.Arguments=bm.Array;ic("keys");ic("values");ic("entries");if(!oP&&uP&&gm.name!=="values")try{sP(gm,"name",{value:"values"})}catch(s){}});var Im=g((G0,Tm)=>{"use strict";var dP=je(),pP=Qi(),hP=dP("iterator"),fP=Array.prototype;Tm.exports=function(s){return s!==void 0&&(pP.Array===s||fP[hP]===s)}});var ac=g((Y0,wm)=>{"use strict";var mP=Ia(),Em=da(),bP=ua(),gP=Qi(),vP=je(),SP=vP("iterator");wm.exports=function(s){if(!bP(s))return Em(s,SP)||Em(s,"@@iterator")||gP[mP(s)]}});var Pm=g((K0,xm)=>{"use strict";var yP=ot(),TP=Vt(),IP=_t(),EP=la(),wP=ac(),xP=TypeError;xm.exports=function(s,e){var t=arguments.length<2?wP(s):e;if(TP(t))return IP(yP(t,s));throw new xP(EP(s)+" is not iterable")}});var Rm=g((X0,Am)=>{"use strict";var PP=ot(),km=_t(),kP=da();Am.exports=function(s,e,t){var i,r;km(s);try{if(i=kP(s,"return"),!i){if(e==="throw")throw t;return t}i=PP(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return km(i),t}});var Cn=g((J0,Cm)=>{"use strict";var AP=yr(),RP=ot(),MP=_t(),$P=la(),LP=Im(),CP=wr(),Mm=ca(),DP=Pm(),BP=ac(),$m=Rm(),VP=TypeError,Ln=function(s,e){this.stopped=s,this.result=e},Lm=Ln.prototype;Cm.exports=function(s,e,t){var i=t&&t.that,r=!!(t&&t.AS_ENTRIES),a=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=AP(e,i),c,l,d,p,h,m,b,S=function(y){return c&&$m(c,"normal"),new Ln(!0,y)},v=function(y){return r?(MP(y),o?u(y[0],y[1],S):u(y[0],y[1])):o?u(y,S):u(y)};if(a)c=s.iterator;else if(n)c=s;else{if(l=BP(s),!l)throw new VP($P(s)+" is not iterable");if(LP(l)){for(d=0,p=CP(s);p>d;d++)if(h=v(s[d]),h&&Mm(Lm,h))return h;return new Ln(!1)}c=DP(s,l)}for(m=a?s.next:c.next;!(b=RP(m,c)).done;){try{h=v(b.value)}catch(y){$m(c,"throw",y)}if(typeof h=="object"&&h&&Mm(Lm,h))return h}return new Ln(!1)}});var Bm=g((Z0,Dm)=>{"use strict";var _P=nt(),OP=ji(),NP=oa();Dm.exports=function(s,e,t){_P?OP.f(s,e,NP(0,t)):s[e]=t}});var Vm=g(()=>{"use strict";var FP=Me(),UP=Cn(),qP=Bm();FP({target:"Object",stat:!0},{fromEntries:function(e){var t={};return UP(e,function(i,r){qP(t,i,r)},{AS_ENTRIES:!0}),t}})});var Om=g((iB,_m)=>{"use strict";rc();Vm();var jP=Ui();_m.exports=jP.Object.fromEntries});var Fm=g((rB,Nm)=>{"use strict";Nm.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}});var qm=g(()=>{"use strict";rc();var HP=Fm(),WP=Pe(),QP=Ea(),Um=Qi();for(Dn in HP)QP(WP[Dn],Dn),Um[Dn]=Um.Array;var Dn});var Hm=g((nB,jm)=>{"use strict";var zP=Om();qm();jm.exports=zP});var sc=g((oB,Wm)=>{"use strict";var GP=Hm();Wm.exports=GP});var Qm=g(()=>{"use strict"});var nc=g((lB,zm)=>{"use strict";var Pa=Pe(),YP=qi(),KP=Ni(),Bn=function(s){return YP.slice(0,s.length)===s};zm.exports=function(){return Bn("Bun/")?"BUN":Bn("Cloudflare-Workers")?"CLOUDFLARE":Bn("Deno/")?"DENO":Bn("Node.js/")?"NODE":Pa.Bun&&typeof Bun.version=="string"?"BUN":Pa.Deno&&typeof Deno.version=="object"?"DENO":KP(Pa.process)==="process"?"NODE":Pa.window&&Pa.document?"BROWSER":"REST"}()});var Vn=g((dB,Gm)=>{"use strict";var XP=nc();Gm.exports=XP==="NODE"});var Km=g((pB,Ym)=>{"use strict";var JP=ji();Ym.exports=function(s,e,t){return JP.f(s,e,t)}});var Zm=g((hB,Jm)=>{"use strict";var ZP=zt(),ek=Km(),tk=je(),ik=nt(),Xm=tk("species");Jm.exports=function(s){var e=ZP(s);ik&&e&&!e[Xm]&&ek(e,Xm,{configurable:!0,get:function(){return this}})}});var tb=g((fB,eb)=>{"use strict";var rk=ca(),ak=TypeError;eb.exports=function(s,e){if(rk(e,s))return s;throw new ak("Incorrect invocation")}});var uc=g((mB,ib)=>{"use strict";var sk=De(),nk=ke(),oc=pa(),ok=sk(Function.toString);nk(oc.inspectSource)||(oc.inspectSource=function(s){return ok(s)});ib.exports=oc.inspectSource});var lc=g((bB,ob)=>{"use strict";var uk=De(),ck=Ce(),rb=ke(),lk=Ia(),dk=zt(),pk=uc(),ab=function(){},sb=dk("Reflect","construct"),cc=/^\s*(?:class|function)\b/,hk=uk(cc.exec),fk=!cc.test(ab),ka=function(e){if(!rb(e))return!1;try{return sb(ab,[],e),!0}catch(t){return!1}},nb=function(e){if(!rb(e))return!1;switch(lk(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return fk||!!hk(cc,pk(e))}catch(t){return!0}};nb.sham=!0;ob.exports=!sb||ck(function(){var s;return ka(ka.call)||!ka(Object)||!ka(function(){s=!0})||s})?nb:ka});var cb=g((gB,ub)=>{"use strict";var mk=lc(),bk=la(),gk=TypeError;ub.exports=function(s){if(mk(s))return s;throw new gk(bk(s)+" is not a constructor")}});var dc=g((vB,db)=>{"use strict";var lb=_t(),vk=cb(),Sk=ua(),yk=je(),Tk=yk("species");db.exports=function(s,e){var t=lb(s).constructor,i;return t===void 0||Sk(i=lb(t)[Tk])?e:vk(i)}});var hb=g((SB,pb)=>{"use strict";var Ik=De();pb.exports=Ik([].slice)});var mb=g((yB,fb)=>{"use strict";var Ek=TypeError;fb.exports=function(s,e){if(s<e)throw new Ek("Not enough arguments");return s}});var pc=g((TB,bb)=>{"use strict";var wk=qi();bb.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(wk)});var Tc=g((IB,xb)=>{"use strict";var ct=Pe(),xk=Zo(),Pk=yr(),gb=ke(),kk=Pt(),wb=Ce(),vb=Wu(),Ak=hb(),Sb=nn(),Rk=mb(),Mk=pc(),$k=Vn(),vc=ct.setImmediate,Sc=ct.clearImmediate,Lk=ct.process,hc=ct.Dispatch,Ck=ct.Function,yb=ct.MessageChannel,Dk=ct.String,fc=0,Aa={},Tb="onreadystatechange",Ra,Gi,mc,bc;wb(function(){Ra=ct.location});var yc=function(s){if(kk(Aa,s)){var e=Aa[s];delete Aa[s],e()}},gc=function(s){return function(){yc(s)}},Ib=function(s){yc(s.data)},Eb=function(s){ct.postMessage(Dk(s),Ra.protocol+"//"+Ra.host)};(!vc||!Sc)&&(vc=function(e){Rk(arguments.length,1);var t=gb(e)?e:Ck(e),i=Ak(arguments,1);return Aa[++fc]=function(){xk(t,void 0,i)},Gi(fc),fc},Sc=function(e){delete Aa[e]},$k?Gi=function(s){Lk.nextTick(gc(s))}:hc&&hc.now?Gi=function(s){hc.now(gc(s))}:yb&&!Mk?(mc=new yb,bc=mc.port2,mc.port1.onmessage=Ib,Gi=Pk(bc.postMessage,bc)):ct.addEventListener&&gb(ct.postMessage)&&!ct.importScripts&&Ra&&Ra.protocol!=="file:"&&!wb(Eb)?(Gi=Eb,ct.addEventListener("message",Ib,!1)):Tb in Sb("script")?Gi=function(s){vb.appendChild(Sb("script"))[Tb]=function(){vb.removeChild(this),yc(s)}}:Gi=function(s){setTimeout(gc(s),0)});xb.exports={set:vc,clear:Sc}});var Ab=g((EB,kb)=>{"use strict";var Pb=Pe(),Bk=nt(),Vk=Object.getOwnPropertyDescriptor;kb.exports=function(s){if(!Bk)return Pb[s];var e=Vk(Pb,s);return e&&e.value}});var Ic=g((wB,Mb)=>{"use strict";var Rb=function(){this.head=null,this.tail=null};Rb.prototype={add:function(s){var e={item:s,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var s=this.head;if(s){var e=this.head=s.next;return e===null&&(this.tail=null),s.item}}};Mb.exports=Rb});var Lb=g((xB,$b)=>{"use strict";var _k=qi();$b.exports=/ipad|iphone|ipod/i.test(_k)&&typeof Pebble!="undefined"});var Db=g((PB,Cb)=>{"use strict";var Ok=qi();Cb.exports=/web0s(?!.*chrome)/i.test(Ok)});var Ub=g((kB,Fb)=>{"use strict";var Ar=Pe(),Nk=Ab(),Bb=yr(),Ec=Tc().set,Fk=Ic(),Uk=pc(),qk=Lb(),jk=Db(),wc=Vn(),Vb=Ar.MutationObserver||Ar.WebKitMutationObserver,_b=Ar.document,Ob=Ar.process,_n=Ar.Promise,kc=Nk("queueMicrotask"),kr,xc,Pc,On,Nb;kc||(Ma=new Fk,$a=function(){var s,e;for(wc&&(s=Ob.domain)&&s.exit();e=Ma.get();)try{e()}catch(t){throw Ma.head&&kr(),t}s&&s.enter()},!Uk&&!wc&&!jk&&Vb&&_b?(xc=!0,Pc=_b.createTextNode(""),new Vb($a).observe(Pc,{characterData:!0}),kr=function(){Pc.data=xc=!xc}):!qk&&_n&&_n.resolve?(On=_n.resolve(void 0),On.constructor=_n,Nb=Bb(On.then,On),kr=function(){Nb($a)}):wc?kr=function(){Ob.nextTick($a)}:(Ec=Bb(Ec,Ar),kr=function(){Ec($a)}),kc=function(s){Ma.head||kr(),Ma.add(s)});var Ma,$a;Fb.exports=kc});var jb=g((AB,qb)=>{"use strict";qb.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch(t){}}});var Nn=g((RB,Hb)=>{"use strict";Hb.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var Yi=g((MB,Wb)=>{"use strict";var Hk=Pe();Wb.exports=Hk.Promise});var Rr=g(($B,Yb)=>{"use strict";var Wk=Pe(),La=Yi(),Qk=ke(),zk=Tu(),Gk=uc(),Yk=je(),Qb=nc(),Kk=xt(),Ac=uu(),zb=La&&La.prototype,Xk=Yk("species"),Rc=!1,Gb=Qk(Wk.PromiseRejectionEvent),Jk=zk("Promise",function(){var s=Gk(La),e=s!==String(La);if(!e&&Ac===66||Kk&&!(zb.catch&&zb.finally))return!0;if(!Ac||Ac<51||!/native code/.test(s)){var t=new La(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[Xk]=i,Rc=t.then(function(){})instanceof i,!Rc)return!0}return!e&&(Qb==="BROWSER"||Qb==="DENO")&&!Gb});Yb.exports={CONSTRUCTOR:Jk,REJECTION_EVENT:Gb,SUBCLASSING:Rc}});var Mr=g((LB,Xb)=>{"use strict";var Kb=Vt(),Zk=TypeError,eA=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new Zk("Bad Promise constructor");e=i,t=r}),this.resolve=Kb(e),this.reject=Kb(t)};Xb.exports.f=function(s){return new eA(s)}});var gg=g(()=>{"use strict";var tA=Me(),iA=xt(),jn=Vn(),bi=Pe(),rA=Ui(),Dr=ot(),Jb=Pr(),Zb=ec(),aA=Ea(),sA=Zm(),nA=Vt(),qn=ke(),oA=Ke(),uA=tb(),cA=dc(),ag=Tc().set,Dc=Ub(),lA=jb(),dA=Nn(),pA=Ic(),sg=Uu(),Hn=Yi(),Bc=Rr(),ng=Mr(),Wn="Promise",og=Bc.CONSTRUCTOR,hA=Bc.REJECTION_EVENT,fA=Bc.SUBCLASSING,Mc=sg.getterFor(Wn),mA=sg.set,$r=Hn&&Hn.prototype,Ki=Hn,Fn=$r,ug=bi.TypeError,$c=bi.document,Vc=bi.process,Lc=ng.f,bA=Lc,gA=!!($c&&$c.createEvent&&bi.dispatchEvent),cg="unhandledrejection",vA="rejectionhandled",eg=0,lg=1,SA=2,_c=1,dg=2,Un,tg,pg,ig,hg=function(s){var e;return oA(s)&&qn(e=s.then)?e:!1},fg=function(s,e){var t=e.value,i=e.state===lg,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,c,l;try{r?(i||(e.rejection===dg&&TA(e),e.rejection=_c),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),l=!0)),u===s.promise?n(new ug("Promise-chain cycle")):(c=hg(u))?Dr(c,u,a,n):a(u)):n(t)}catch(d){o&&!l&&o.exit(),n(d)}},mg=function(s,e){s.notified||(s.notified=!0,Dc(function(){for(var t=s.reactions,i;i=t.get();)fg(i,s);s.notified=!1,e&&!s.rejection&&yA(s)}))},bg=function(s,e,t){var i,r;gA?(i=$c.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),bi.dispatchEvent(i)):i={promise:e,reason:t},!hA&&(r=bi["on"+s])?r(i):s===cg&&lA("Unhandled promise rejection",t)},yA=function(s){Dr(ag,bi,function(){var e=s.facade,t=s.value,i=rg(s),r;if(i&&(r=dA(function(){jn?Vc.emit("unhandledRejection",t,e):bg(cg,e,t)}),s.rejection=jn||rg(s)?dg:_c,r.error))throw r.value})},rg=function(s){return s.rejection!==_c&&!s.parent},TA=function(s){Dr(ag,bi,function(){var e=s.facade;jn?Vc.emit("rejectionHandled",e):bg(vA,e,s.value)})},Lr=function(s,e,t){return function(i){s(e,i,t)}},Cr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=SA,mg(s,!0))},Cc=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new ug("Promise can't be resolved itself");var i=hg(e);i?Dc(function(){var r={done:!1};try{Dr(i,e,Lr(Cc,r,s),Lr(Cr,r,s))}catch(a){Cr(r,a,s)}}):(s.value=e,s.state=lg,mg(s,!1))}catch(r){Cr({done:!1},r,s)}}};if(og&&(Ki=function(e){uA(this,Fn),nA(e),Dr(Un,this);var t=Mc(this);try{e(Lr(Cc,t),Lr(Cr,t))}catch(i){Cr(t,i)}},Fn=Ki.prototype,Un=function(e){mA(this,{type:Wn,done:!1,notified:!1,parent:!1,reactions:new pA,rejection:!1,state:eg,value:null})},Un.prototype=Jb(Fn,"then",function(e,t){var i=Mc(this),r=Lc(cA(this,Ki));return i.parent=!0,r.ok=qn(e)?e:!0,r.fail=qn(t)&&t,r.domain=jn?Vc.domain:void 0,i.state===eg?i.reactions.add(r):Dc(function(){fg(r,i)}),r.promise}),tg=function(){var s=new Un,e=Mc(s);this.promise=s,this.resolve=Lr(Cc,e),this.reject=Lr(Cr,e)},ng.f=Lc=function(s){return s===Ki||s===pg?new tg(s):bA(s)},!iA&&qn(Hn)&&$r!==Object.prototype)){ig=$r.then,fA||Jb($r,"then",function(e,t){var i=this;return new Ki(function(r,a){Dr(ig,i,r,a)}).then(e,t)},{unsafe:!0});try{delete $r.constructor}catch(s){}Zb&&Zb($r,Fn)}tA({global:!0,constructor:!0,wrap:!0,forced:og},{Promise:Ki});pg=rA.Promise;aA(Ki,Wn,!1,!0);sA(Wn)});var Ig=g((BB,Tg)=>{"use strict";var IA=je(),Sg=IA("iterator"),yg=!1;try{vg=0,Oc={next:function(){return{done:!!vg++}},return:function(){yg=!0}},Oc[Sg]=function(){return this},Array.from(Oc,function(){throw 2})}catch(s){}var vg,Oc;Tg.exports=function(s,e){try{if(!e&&!yg)return!1}catch(r){return!1}var t=!1;try{var i={};i[Sg]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch(r){}return t}});var Nc=g((VB,Eg)=>{"use strict";var EA=Yi(),wA=Ig(),xA=Rr().CONSTRUCTOR;Eg.exports=xA||!wA(function(s){EA.all(s).then(void 0,function(){})})});var wg=g(()=>{"use strict";var PA=Me(),kA=ot(),AA=Vt(),RA=Mr(),MA=Nn(),$A=Cn(),LA=Nc();PA({target:"Promise",stat:!0,forced:LA},{all:function(e){var t=this,i=RA.f(t),r=i.resolve,a=i.reject,n=MA(function(){var o=AA(t.resolve),u=[],c=0,l=1;$A(e,function(d){var p=c++,h=!1;l++,kA(o,t,d).then(function(m){h||(h=!0,u[p]=m,--l||r(u))},a)}),--l||r(u)});return n.error&&a(n.value),i.promise}})});var Pg=g(()=>{"use strict";var CA=Me(),DA=xt(),BA=Rr().CONSTRUCTOR,Uc=Yi(),VA=zt(),_A=ke(),OA=Pr(),xg=Uc&&Uc.prototype;CA({target:"Promise",proto:!0,forced:BA,real:!0},{catch:function(s){return this.then(void 0,s)}});!DA&&_A(Uc)&&(Fc=VA("Promise").prototype.catch,xg.catch!==Fc&&OA(xg,"catch",Fc,{unsafe:!0}));var Fc});var kg=g(()=>{"use strict";var NA=Me(),FA=ot(),UA=Vt(),qA=Mr(),jA=Nn(),HA=Cn(),WA=Nc();NA({target:"Promise",stat:!0,forced:WA},{race:function(e){var t=this,i=qA.f(t),r=i.reject,a=jA(function(){var n=UA(t.resolve);HA(e,function(o){FA(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var Ag=g(()=>{"use strict";var QA=Me(),zA=Mr(),GA=Rr().CONSTRUCTOR;QA({target:"Promise",stat:!0,forced:GA},{reject:function(e){var t=zA.f(this),i=t.reject;return i(e),t.promise}})});var qc=g((WB,Rg)=>{"use strict";var YA=_t(),KA=Ke(),XA=Mr();Rg.exports=function(s,e){if(YA(s),KA(e)&&e.constructor===s)return e;var t=XA.f(s),i=t.resolve;return i(e),t.promise}});var Lg=g(()=>{"use strict";var JA=Me(),ZA=zt(),Mg=xt(),eR=Yi(),$g=Rr().CONSTRUCTOR,tR=qc(),iR=ZA("Promise"),rR=Mg&&!$g;JA({target:"Promise",stat:!0,forced:Mg||$g},{resolve:function(e){return tR(rR&&this===iR?eR:this,e)}})});var Cg=g(()=>{"use strict";gg();wg();Pg();kg();Ag();Lg()});var _g=g(()=>{"use strict";var aR=Me(),sR=xt(),Qn=Yi(),nR=Ce(),Bg=zt(),Vg=ke(),oR=dc(),Dg=qc(),uR=Pr(),Hc=Qn&&Qn.prototype,cR=!!Qn&&nR(function(){Hc.finally.call({then:function(){}},function(){})});aR({target:"Promise",proto:!0,real:!0,forced:cR},{finally:function(s){var e=oR(this,Bg("Promise")),t=Vg(s);return this.then(t?function(i){return Dg(e,s()).then(function(){return i})}:s,t?function(i){return Dg(e,s()).then(function(){throw i})}:s)}});!sR&&Vg(Qn)&&(jc=Bg("Promise").prototype.finally,Hc.finally!==jc&&uR(Hc,"finally",jc,{unsafe:!0}));var jc});var Ng=g((JB,Og)=>{"use strict";Qm();Cg();_g();var lR=di();Og.exports=lR("Promise","finally")});var Ug=g((ZB,Fg)=>{"use strict";var dR=Ng();Fg.exports=dR});var Wc=g((eV,qg)=>{"use strict";var pR=Ug();qg.exports=pR});var Kg=g(()=>{"use strict";var yR=Me(),TR=vr(),IR=wr(),ER=ma(),wR=ba();yR({target:"Array",proto:!0},{at:function(e){var t=TR(this),i=IR(t),r=ER(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});wR("at")});var Jg=g((QV,Xg)=>{"use strict";Kg();var xR=di();Xg.exports=xR("Array","at")});var ev=g((zV,Zg)=>{"use strict";var PR=Jg();Zg.exports=PR});var bt=g((GV,tv)=>{"use strict";var kR=ev();tv.exports=kR});var hl=g((WN,Dv)=>{"use strict";var qR=Ni();Dv.exports=Array.isArray||function(e){return qR(e)==="Array"}});var Vv=g((QN,Bv)=>{"use strict";var jR=TypeError,HR=9007199254740991;Bv.exports=function(s){if(s>HR)throw jR("Maximum allowed index exceeded");return s}});var Nv=g((zN,Ov)=>{"use strict";var WR=hl(),QR=wr(),zR=Vv(),GR=yr(),_v=function(s,e,t,i,r,a,n,o){for(var u=r,c=0,l=n?GR(n,o):!1,d,p;c<i;)c in t&&(d=l?l(t[c],c,e):t[c],a>0&&WR(d)?(p=QR(d),u=_v(s,e,d,p,u,a-1)-1):(zR(u+1),s[u]=d),u++),c++;return u};Ov.exports=_v});var jv=g((GN,qv)=>{"use strict";var Fv=hl(),YR=lc(),KR=Ke(),XR=je(),JR=XR("species"),Uv=Array;qv.exports=function(s){var e;return Fv(s)&&(e=s.constructor,YR(e)&&(e===Uv||Fv(e.prototype))?e=void 0:KR(e)&&(e=e[JR],e===null&&(e=void 0))),e===void 0?Uv:e}});var Wv=g((YN,Hv)=>{"use strict";var ZR=jv();Hv.exports=function(s,e){return new(ZR(s))(e===0?0:e)}});var Qv=g(()=>{"use strict";var eM=Me(),tM=Nv(),iM=Vt(),rM=vr(),aM=wr(),sM=Wv();eM({target:"Array",proto:!0},{flatMap:function(e){var t=rM(this),i=aM(t),r;return iM(e),r=sM(t,0),r.length=tM(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var zv=g(()=>{"use strict";var nM=ba();nM("flatMap")});var Yv=g((eF,Gv)=>{"use strict";Qv();zv();var oM=di();Gv.exports=oM("Array","flatMap")});var Xv=g((tF,Kv)=>{"use strict";var uM=Yv();Kv.exports=uM});var Wa=g((iF,Jv)=>{"use strict";var cM=Xv();Jv.exports=cM});var za=g((SF,iS)=>{"use strict";var dM=Ia(),pM=String;iS.exports=function(s){if(dM(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return pM(s)}});var ml=g((yF,rS)=>{"use strict";rS.exports=`
7
- \v\f\r                 \u2028\u2029\uFEFF`});var nS=g((TF,sS)=>{"use strict";var hM=De(),fM=li(),mM=za(),gl=ml(),aS=hM("".replace),bM=RegExp("^["+gl+"]+"),gM=RegExp("(^|[^"+gl+"])["+gl+"]+$"),bl=function(s){return function(e){var t=mM(fM(e));return s&1&&(t=aS(t,bM,"")),s&2&&(t=aS(t,gM,"$1")),t}};sS.exports={start:bl(1),end:bl(2),trim:bl(3)}});var lS=g((IF,cS)=>{"use strict";var vM=Hu().PROPER,SM=Ce(),oS=ml(),uS="​…᠎";cS.exports=function(s){return SM(function(){return!!oS[s]()||uS[s]()!==uS||vM&&oS[s].name!==s})}});var vl=g((EF,dS)=>{"use strict";var yM=nS().start,TM=lS();dS.exports=TM("trimStart")?function(){return yM(this)}:"".trimStart});var hS=g(()=>{"use strict";var IM=Me(),pS=vl();IM({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==pS},{trimLeft:pS})});var mS=g(()=>{"use strict";hS();var EM=Me(),fS=vl();EM({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==fS},{trimStart:fS})});var gS=g((AF,bS)=>{"use strict";mS();var wM=di();bS.exports=wM("String","trimLeft")});var SS=g((RF,vS)=>{"use strict";var xM=gS();vS.exports=xM});var TS=g((MF,yS)=>{"use strict";var PM=SS();yS.exports=PM});var ES=g(()=>{"use strict"});var wS=g(()=>{"use strict"});var PS=g((cU,xS)=>{"use strict";var kM=Ke(),AM=Ni(),RM=je(),MM=RM("match");xS.exports=function(s){var e;return kM(s)&&((e=s[MM])!==void 0?!!e:AM(s)==="RegExp")}});var RS=g((lU,AS)=>{"use strict";var $M=Pe(),LM=Ce(),kS=$M.RegExp,CM=!LM(function(){var s=!0;try{kS(".","d")}catch(u){s=!1}var e={},t="",i=s?"dgimsy":"gimsy",r=function(u,c){Object.defineProperty(e,u,{get:function(){return t+=c,!0}})},a={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};s&&(a.hasIndices="d");for(var n in a)r(n,a[n]);var o=Object.getOwnPropertyDescriptor(kS.prototype,"flags").get.call(e);return o!==i||t!==i});AS.exports={correct:CM}});var $S=g((dU,MS)=>{"use strict";var DM=_t();MS.exports=function(){var s=DM(this),e="";return s.hasIndices&&(e+="d"),s.global&&(e+="g"),s.ignoreCase&&(e+="i"),s.multiline&&(e+="m"),s.dotAll&&(e+="s"),s.unicode&&(e+="u"),s.unicodeSets&&(e+="v"),s.sticky&&(e+="y"),e}});var DS=g((pU,CS)=>{"use strict";var BM=ot(),VM=Pt(),_M=ca(),LS=RS(),OM=$S(),NM=RegExp.prototype;CS.exports=LS.correct?function(s){return s.flags}:function(s){return!LS.correct&&_M(NM,s)&&!VM(s,"flags")?BM(OM,s):s.flags}});var VS=g((hU,BS)=>{"use strict";var Il=De(),FM=vr(),UM=Math.floor,yl=Il("".charAt),qM=Il("".replace),Tl=Il("".slice),jM=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,HM=/\$([$&'`]|\d{1,2})/g;BS.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=HM;return r!==void 0&&(r=FM(r),u=jM),qM(a,u,function(c,l){var d;switch(yl(l,0)){case"$":return"$";case"&":return s;case"`":return Tl(e,0,t);case"'":return Tl(e,n);case"<":d=r[Tl(l,1,-1)];break;default:var p=+l;if(p===0)return c;if(p>o){var h=UM(p/10);return h===0?c:h<=o?i[h-1]===void 0?yl(l,1):i[h-1]+yl(l,1):c}d=i[p-1]}return d===void 0?"":d})}});var NS=g(()=>{"use strict";var WM=Me(),QM=ot(),wl=De(),_S=li(),zM=ke(),GM=Ke(),YM=PS(),qr=za(),KM=da(),XM=DS(),JM=VS(),ZM=je(),e$=xt(),t$=ZM("replace"),i$=TypeError,El=wl("".indexOf),r$=wl("".replace),OS=wl("".slice),a$=Math.max;WM({target:"String",proto:!0},{replaceAll:function(e,t){var i=_S(this),r,a,n,o,u,c,l,d,p,h,m=0,b="";if(GM(e)){if(r=YM(e),r&&(a=qr(_S(XM(e))),!~El(a,"g")))throw new i$("`.replaceAll` does not allow non-global regexes");if(n=KM(e,t$),n)return QM(n,e,i,t);if(e$&&r)return r$(qr(i),e,t)}for(o=qr(i),u=qr(e),c=zM(t),c||(t=qr(t)),l=u.length,d=a$(1,l),p=El(o,u);p!==-1;)h=c?qr(t(u,p,o)):JM(u,o,p,[],void 0,t),b+=OS(o,m,p)+h,m=p+l,p=p+d>o.length?-1:El(o,u,p+d);return m<o.length&&(b+=OS(o,m)),b}})});var US=g((bU,FS)=>{"use strict";ES();wS();NS();var s$=di();FS.exports=s$("String","replaceAll")});var jS=g((gU,qS)=>{"use strict";var n$=US();qS.exports=n$});var WS=g((vU,HS)=>{"use strict";var o$=jS();HS.exports=o$});var zS=g((SU,QS)=>{"use strict";var u$=ma(),c$=za(),l$=li(),d$=RangeError;QS.exports=function(e){var t=c$(l$(this)),i="",r=u$(e);if(r<0||r===1/0)throw new d$("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var JS=g((yU,XS)=>{"use strict";var KS=De(),p$=Au(),GS=za(),h$=zS(),f$=li(),m$=KS(h$),b$=KS("".slice),g$=Math.ceil,YS=function(s){return function(e,t,i){var r=GS(f$(e)),a=p$(t),n=r.length,o=i===void 0?" ":GS(i),u,c;return a<=n||o===""?r:(u=a-n,c=m$(o,g$(u/o.length)),c.length>u&&(c=b$(c,0,u)),s?r+c:c+r)}};XS.exports={start:YS(!1),end:YS(!0)}});var ey=g((TU,ZS)=>{"use strict";var v$=qi();ZS.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(v$)});var ty=g(()=>{"use strict";var S$=Me(),y$=JS().start,T$=ey();S$({target:"String",proto:!0,forced:T$},{padStart:function(e){return y$(this,e,arguments.length>1?arguments[1]:void 0)}})});var ry=g((wU,iy)=>{"use strict";ty();var I$=di();iy.exports=I$("String","padStart")});var sy=g((xU,ay)=>{"use strict";var E$=ry();ay.exports=E$});var oy=g((PU,ny)=>{"use strict";var w$=sy();ny.exports=w$});var fL={};ET(fL,{ChromecastState:()=>gr,HttpConnectionType:()=>tn,Observable:()=>jt.Observable,PlaybackState:()=>qe,Player:()=>Os,PredefinedQualityLimits:()=>aa,SDK_VERSION:()=>hL,Subject:()=>jt.Subject,Subscription:()=>jt.Subscription,Surface:()=>rn,VERSION:()=>Xo,ValueSubject:()=>jt.ValueSubject,VideoCodec:()=>en,VideoFormat:()=>Bt,VideoQuality:()=>jt.VideoQuality,WebmCodecStrategy:()=>Ya,areValidLiveRecordSources:()=>cf,clientChecker:()=>j,isMobile:()=>hi});module.exports=wT(fL);var Xo="2.0.154-dev.b507ef65.0";var qe=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(qe||{}),Bt=(w=>(w.MPEG="MPEG",w.DASH="DASH",w.DASH_SEP="DASH_SEP",w.DASH_SEP_VK="DASH_SEP",w.DASH_WEBM="DASH_WEBM",w.DASH_WEBM_AV1="DASH_WEBM_AV1",w.DASH_STREAMS="DASH_STREAMS",w.DASH_WEBM_VK="DASH_WEBM",w.DASH_ONDEMAND="DASH_ONDEMAND",w.DASH_ONDEMAND_VK="DASH_ONDEMAND",w.DASH_LIVE="DASH_LIVE",w.DASH_LIVE_CMAF="DASH_LIVE_CMAF",w.DASH_LIVE_WEBM="DASH_LIVE_WEBM",w.HLS="HLS",w.HLS_ONDEMAND="HLS_ONDEMAND",w.HLS_JS="HLS",w.HLS_FMP4="HLS_FMP4",w.HLS_LIVE="HLS_LIVE",w.HLS_LIVE_CMAF="HLS_LIVE_CMAF",w.WEB_RTC_LIVE="WEB_RTC_LIVE",w))(Bt||{}),en=(r=>(r.AV1="av1",r.VP9="vp9",r.AVC1="avc1",r.HEV1="hev1",r))(en||{});var gr=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(gr||{}),tn=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(tn||{});var rn=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(rn||{}),aa=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(aa||{});var Kl=G(Hi(),1),lT=G(Xe(),1);var re=require("@vkontakte/videoplayer-shared/es2018");var Xh=s=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",s),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var dn=class{constructor(e){this.connection$=new re.ValueSubject(void 0);this.castState$=new re.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new re.Subject;this.realCastState$=new re.ValueSubject("NOT_AVAILABLE");this.subscription=new re.Subscription;this.isDestroyed=!1;var a;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastInitializer");let t="chrome"in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${t}`}),e.isDisabled||!t)return;let i=(0,re.isNonNullable)((a=window.chrome)==null?void 0:a.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=n=>{delete window.__onGCastApiAvailable,n&&!this.isDestroyed&&this.initializeCastApi()},r||Xh("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:re.ErrorCategory.NETWORK,message:"Script loading failed!"})))}connect(){var e;(e=cast.framework.CastContext.getInstance())==null||e.requestSession()}disconnect(){var e,t;(t=(e=cast.framework.CastContext.getInstance())==null?void 0:e.getCurrentSession())==null||t.endSession(!0)}stopMedia(){return new Promise((e,t)=>{var i,r,a;(a=(r=(i=cast.framework.CastContext.getInstance())==null?void 0:i.getCurrentSession())==null?void 0:r.getMediaSession())==null||a.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,re.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,re.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,re.isNullable)(t)||e!==t.remotePlayer.isMuted&&t.remotePlayerController.muteOrUnmute()}destroy(){this.isDestroyed=!0,this.subscription.unsubscribe()}initListeners(){let e=new cast.framework.RemotePlayer,t=new cast.framework.RemotePlayerController(e),i=cast.framework.CastContext.getInstance();this.subscription.add((0,re.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{var a,n,o;switch(r.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:this.contentId=(o=(n=(a=i.getCurrentSession())==null?void 0:a.getMediaSession())==null?void 0:n.media)==null?void 0:o.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return(0,re.assertNever)(r.sessionState)}})).add((0,re.merge)((0,re.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,re.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,re.map)(r=>r.castState)),(0,re.observableFrom)([i.getCastState()])).pipe((0,re.filterChanged)(),(0,re.map)(Sw),(0,re.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let a=r==="CONNECTED",n=(0,re.isNonNullable)(this.connection$.getValue());if(a&&!n){let c=i.getCurrentSession();(0,re.assertNonNullable)(c);let l=c.getCastDevice(),d=(u=(o=c.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,re.isNullable)(d)||d===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:c,castDevice:l}))}else!a&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,re.isNonNullable)(this.connection$.getValue())?"CONNECTED":"AVAILABLE":r)}))}initializeCastApi(){var r;let e,t,i;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,i=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch(a){return}try{e.setOptions({receiverApplicationId:(r=this.params.receiverApplicationId)!=null?r:t,autoJoinPolicy:i}),this.initListeners()}catch(a){this.errorEvent$.next({id:"ChromecastInitializer",category:re.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},Sw=s=>{switch(s){case cast.framework.CastState.NO_DEVICES_AVAILABLE:return"NOT_AVAILABLE";case cast.framework.CastState.NOT_CONNECTED:return"AVAILABLE";case cast.framework.CastState.CONNECTING:return"CONNECTING";case cast.framework.CastState.CONNECTED:return"CONNECTED";default:return(0,re.assertNever)(s)}};var se=require("@vkontakte/videoplayer-shared/es2018");var Be=require("@vkontakte/videoplayer-shared/es2018");var Du=require("@vkontakte/videoplayer-shared/es2018");var Ae=(s,e=0,t=0)=>{switch(t){case 0:return s.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return s;let i=new URL(s);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(s);return!i.searchParams.get("offset_p")&&e===0?s:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,Du.assertNever)(t)}return s},pi=(s,e)=>{var t;switch(e){case 0:return NaN;case 1:{let i=new URL(s);return Number(i.searchParams.get("playback_shift"))}case 2:{let i=new URL(s);return Number((t=i.searchParams.get("offset_p"))!=null?t:0)}default:(0,Du.assertNever)(e)}};var hn=s=>{var d;let{source:e,format:t,meta:i,output:r}=s,a,n,o;switch(t){case"MPEG":{let p=e[t];(0,Be.assertNonNullable)(p);let h=(0,Be.getHighestQuality)(Object.keys(p));(0,Be.assertNonNullable)(h);let m=p[h];(0,Be.assertNonNullable)(m),a=m,n="video/mp4",o=pn();break}case"HLS":case"HLS_FMP4":case"HLS_ONDEMAND":{let p=e[t];(0,Be.assertNonNullable)(p),a=p.url,n="application/x-mpegurl",o=pn();break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let p=e[t];(0,Be.assertNonNullable)(p),a=p.url,n="application/dash+xml",o=pn();break}case"DASH_LIVE_CMAF":{let p=e[t];(0,Be.assertNonNullable)(p),a=p.url,n="application/dash+xml",o=Jh();break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let p=e[t];(0,Be.assertNonNullable)(p),a=Ae(p.url),n="application/x-mpegurl",o=Jh();break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let p="Unsupported format for Chromecast",h=new Error(p);throw r.error$.next({id:"ChromecastProvider.createMediaInfo()",category:Be.ErrorCategory.VIDEO_PIPELINE,message:p,thrown:h}),h}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${t} is no longer supported`);default:return(0,Be.assertNever)(t)}let u=yw((d=i.videoId)!=null?d:a,n);u.contentUrl=a,u.streamType=o,u.metadata=Tw();let{title:c,subtitle:l}=i;return(0,Be.isNonNullable)(c)&&(u.metadata.title=c),(0,Be.isNonNullable)(l)&&(u.metadata.subtitle=l),u};function pn(){var s,e,t,i;return(i=(t=(e=(s=chrome.cast)==null?void 0:s.media)==null?void 0:e.StreamType)==null?void 0:t.BUFFERED)!=null?i:"BUFFERED"}function Jh(){var s,e,t,i;return(i=(t=(e=(s=chrome.cast)==null?void 0:s.media)==null?void 0:e.StreamType)==null?void 0:t.LIVE)!=null?i:"LIVE"}function yw(s,e){var t,i;return(i=(t=chrome.cast)==null?void 0:t.media)!=null&&i.MediaInfo?new chrome.cast.media.MediaInfo(s,e):{contentId:s,contentType:e,metadata:{title:"",subtitle:""},streamType:pn()}}function Tw(){var s,e;return(e=(s=chrome.cast)==null?void 0:s.media)!=null&&e.GenericMediaMetadata?new chrome.cast.media.GenericMediaMetadata:{images:[],metadataType:0,releaseDate:"",subtitle:"",title:"",releaseYear:1970,type:0}}var B=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var fn=class{constructor(e){this.interval=0;this.params=e}start(e=0){clearInterval(this.interval),this.startVideoPosition=e,this.startTs=Date.now(),this.interval=window.setInterval(()=>{let t=(Date.now()-this.startTs)/1e3,i=this.startVideoPosition+t;this.params.output.position$.next(i)},1e3)}pause(){clearInterval(this.interval)}destroy(){clearInterval(this.interval)}};var Vu=require("@vkontakte/videoplayer-shared/es2018");var In=require("@vkontakte/videoplayer-shared/es2018");var Zh=G(Xe(),1),ef=require("@vkontakte/videoplayer-shared/es2018");var mn=class{constructor(){this._isMiuiBrowser=!1}get current(){return this._current}get isChrome(){return this.current==="Chrome"}get isChromiumBased(){return(0,Zh.default)(["Chrome","Chromium","Opera","Yandex","Edge","SamsungBrowser"],this.current)}get isFirefox(){return this.current==="Firefox"}get isSafari(){return this.current==="Safari"}get isOpera(){return this.current==="Opera"}get isEdge(){return this.current==="Edge"}get isYandex(){return this.current==="Yandex"}get isSamsungBrowser(){return this.current==="SamsungBrowser"}get currentVersion(){return this._current_version}get chromeVersion(){return this._chromeVersion}get firefoxVersion(){return this._firefoxVersion}get safariVersion(){return this._safariVersion}get operaVersion(){return this._operaVersion}get edgeVersion(){return this._edgeVersion}get yandexVersion(){return this._yandexVersion}get isMiuiBrowser(){return this._isMiuiBrowser}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?"Yandex":void 0,i=/samsungbrowser/i.test(e)?"SamsungBrowser":void 0,r=/chrome|crios/i.test(e)?"Chrome":void 0,a=/chromium/i.test(e)?"Chromium":void 0,n=/firefox|fxios/i.test(e)?"Firefox":void 0,o=/webkit|safari|khtml/i.test(e)?"Safari":void 0,u=/opr\//i.test(e)?"Opera":void 0,c=/edg/i.test(e)?"Edge":void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||i||n||u||c||r||a||o||"Rest"}catch(t){console.error(t)}this.isChrome&&this.detectChromeVersion(),this.isFirefox&&this.detectFirefoxVersion(),this.isSafari&&this.detectSafariVersion(),this.isOpera&&this.detectOperaVersion(),this.isEdge&&this.detectEdgeVersion(),this.isYandex&&this.detectYandexVersion()}detectVersion(e){try{let{userAgent:t}=(0,ef.getWindow)().navigator,i=t.match(e);if(!i)return;let r=i[1],a=parseInt(r,10);if(!isNaN(a))return this._current_version=a,a}catch(t){console.error(t)}}detectChromeVersion(){this._chromeVersion=this.detectVersion(/Chrome\/(\d+\.\d+)/)}detectFirefoxVersion(){this._firefoxVersion=this.detectVersion(/Firefox\/(\d+\.\d+)/)}detectSafariVersion(){this._safariVersion=this.detectVersion(/Version\/(\d+)/)}detectOperaVersion(){this._operaVersion=this.detectVersion(/OPR\/(\d+\.\d+)/)}detectEdgeVersion(){this._edgeVersion=this.detectVersion(/Edg\/(\d+\.\d+)/)}detectYandexVersion(){this._yandexVersion=this.detectVersion(/YaBrowser\/(\d+\.\d+\.\d+)/)}};var tf=G(Xe(),1),fi=require("@vkontakte/videoplayer-shared/es2018");var hi=()=>{var s,e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test((s=navigator.appVersion)!=null?s:navigator.userAgent)||((e=navigator==null?void 0:navigator.userAgentData)==null?void 0:e.mobile)};var bn=class{constructor(e){this._highEntropyValues={};this._os={name:"Unknown",version:"Unknown",full:"Unknown"};this._details={vendor:"Unknown",model:"Unknown"};this._displayChecker=e}get current(){return this._current}get os(){return this._os}get details(){return this._details}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||this.os.name.toLowerCase().includes("ios")||(0,tf.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||this.os.name.toLowerCase().includes("mac")||this.current==="Mac"}get isApple(){return this.isIOS||this.isMac}get isIphoneOrOldIpad(){if(!this.isApple||!this._displayChecker.isTouch)return!1;let e=this.current==="iPad"||this._displayChecker.width>700,t=this._iosVersion;return!e||e&&!!t&&t<16}get isAndroid(){return this._highEntropyValues.platform==="Android"||this.os.name.toLowerCase().includes("android")||this.current==="Android"}get isWindows(){return this.os.name.toLowerCase().includes("windows")}get isLinux(){return this.os.name.toLowerCase().includes("linux")&&!this.isAndroid}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let e=(0,fi.getWindow)();if(!(0,fi.isBrowserWindow)(e))return;let{userAgent:t}=e.navigator;try{this._isMobile=hi()}catch(i){console.error("DeviceChecker: calling isMobile error - ",i)}this.detectDevice(t),this.detectOS(t),this.detectDeviceDetails(t),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let e=(0,fi.getWindow)();if(!(0,fi.isBrowserWindow)(e))return;let{userAgentData:t}=e.navigator;if(t!=null&&t.getHighEntropyValues){let i=await t.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=i,i.platform&&(this._os.name=this.normalizeOSName(i.platform),i.platformVersion&&(this._os.version=this.normalizeOSVersion(i.platformVersion),this._os.full=`${this._os.name} ${this._os.version}`)),i.model&&(this._details.model=i.model)}}detectDevice(e){try{let t=/android/i.test(e)?"Android":void 0,i=/iphone/i.test(e)?"iPhone":void 0,r=/ipad/i.test(e)?"iPad":void 0,a=/ipod/i.test(e)?"iPod":void 0,n=/mac/i.test(e)?"Mac":void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?"RestMobile":void 0;this._current=t||i||r||a||o||n||"Desktop"}catch(t){console.error("DeviceChecker: device detection error - ",t)}}detectOS(e){try{let t=[[/(windows nt) (6\.[23]); arm/i,["Windows RT"]],[/(windows nt) (6\.3); arm/i,["Windows RT 8.1"]],[/(windows (?:phone|mobile|iot))(?: os)?[/ ]?([\d.]+)/i,["Windows Mobile",2]],[/(windows)[/ ](xp|vista|7|8(\.1)?|10|11|2000|me)/i,[1,1]],[/windows nt ?([\d.]+)/i,["Windows",1]],[/(windows)[/ ](95|98|me|2000|xp|vista|7|8|8\.1|10|11)/i,[1,2]],[/(iphone os|cpu iphone os) ([\d_.]+)/i,["iOS",2]],[/(ipad os|cpu os) ([\d_.]+)/i,["iPadOS",2]],[/(ipod os|cpu ipod os) ([\d_.]+)/i,["iOS",2]],[/(?:ios|os) ([\d_.]+) like mac os x/i,["iOS",1]],[/cfnetwork\/.+darwin/i,["iOS"]],[/(mac os x) ?([\d_.]+)/i,["macOS",2]],[/(macintosh|mac os)/i,["macOS"]],[/(android) ([\d.]+)/i,[1,2]],[/(harmonyos)[/ ]?([\d.]*)/i,["HarmonyOS",2]],[/\b(ubuntu|debian|fedora|centos|arch|linux)(?:[-/ ]([\w.]+))?/i,[1,2]],[/(cros)\D*([\d.]+)/i,["Chrome OS",2]],[/(freebsd|openbsd|netbsd|dragonfly)[/ ]?([\w.]*)/i,[1,2]],[/(sunos|solaris)?([\d.]*)/i,["Solaris",2]],[/(aix)?([\d.]*)/i,["AIX",2]]];for(let[i,r]of t){let a=e.match(i);if(a){let n=r.length>0,o=r.length>1,u="Unknown",c="Unknown";if(n){let l=r[0];typeof l=="number"?l<a.length&&a[l]!==void 0&&(u=a[l]):u=l}if(o){let l=r[1];typeof l=="number"?l<a.length&&a[l]!==void 0&&(c=a[l]):l!==void 0&&(c=l)}else a[2]!==void 0?c=a[2]:a[1]!==void 0&&n&&typeof r[0]=="string"&&(c=a[1]);u=this.normalizeOSName(u),c=this.normalizeOSVersion(c,u),u==="iOS"&&/ipad/i.test(e)?u="iPadOS":u==="iPadOS"&&/ip(hone|od)/i.test(e)&&(u="iOS"),this._os={name:u,version:c||"Unknown",full:c&&c!=="Unknown"?`${u} ${c}`:u};break}}}catch(t){console.error("DeviceChecker: OS detection error - ",t)}}normalizeOSName(e){if(!e)return"Unknown";let t=e.toLowerCase();return t.includes("windows")?"Windows":t.includes("mac os")||t.includes("macintosh")?"macOS":t.includes("iphone")||t.includes("ios")?"iOS":t.includes("ipados")?"iPadOS":t.includes("android")?"Android":t.includes("harmonyos")?"HarmonyOS":t.includes("linux")?"Linux":t.includes("cros")?"Chrome OS":t.includes("freebsd")?"FreeBSD":t.includes("openbsd")?"OpenBSD":t.includes("solaris")||t.includes("sunos")?"Solaris":t.includes("aix")?"AIX":e}normalizeOSVersion(e,t){if(!e)return"Unknown";if(e!=="Unknown"&&(e=e.replace(/_/g,"."),t==="Windows")){let i=parseFloat(e);if(!isNaN(i)){if(i>=11)return"11";if(i>=10)return"10";if(i===6.3)return"8.1";if(i===6.2)return"8";if(i===6.1)return"7";if(i===6)return"Vista";if(i===5.1||i===5.2)return"XP";if(i===5)return"2000";if(i===4)return"NT 4.0"}}return e}detectDeviceDetails(e){try{let t=[[/(iphone)/i,["Apple","iPhone"]],[/(ipad)/i,["Apple","iPad"]],[/(ipod)/i,["Apple","iPod"]],[/(macintosh)/i,["Apple","Macintosh"]],[/(windows[\w\-_ ]*phone)/i,["Microsoft",0]],[/(windows nt|win64|win32|wow64)/i,["Microsoft","PC"]],[/\b(sch-i[89]0\d|shw-m380s|sm-[ptxs]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i,["Samsung",1]],[/\b((?:s[cgp]h|gt|sm)-(?![lr])\w+|sc[g-]?\d+a?|galaxy nexus)/i,["Samsung",1]],[/samsung[- ]((?!sm-[lr]|browser)[-\w]+)/i,["Samsung",1]],[/sec-(sgh\w+)/i,["Samsung",1]],[/smart-tv.+(samsung)/i,["Samsung","Smart TV"]],[/(samsung).*tizen/i,["Samsung","Smart TV"]],[/(pixel (?:c|tablet|[0-9a-z ]+))/i,["Google",1]],[/(pixelbook(?: go)?)/i,["Google",1]],[/nexus [0-9]/i,["Google",0]],[/(redmi[-_ ]?(?:note|k)?[\w_ ]+)(?: bui|\))/i,["Xiaomi",1]],[/\b(mi[\w\-_ ]+)(?: bui|\))/i,["Xiaomi",1]],[/\b(poco[\w ]+)(?: bui|\))/i,["Xiaomi",1]],[/\b(hm[-_ ]?note?[\w ]*)(?: bui|\))/i,["Xiaomi",1]],[/\b(?:xiao)?mi[\w\-_ ]+pad/i,["Xiaomi",0]],[/(?:huawei|honor) ?([-\w ]+)[;)]/i,["Huawei",1]],[/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][\dc][adnt]?)\b(?!.+d\/s)/i,["Huawei",1]],[/\b((?:ag[rs][2356]?k?|bah[234]?|bg[2o]|bt[kv]|cmr|cpn|db[ry]2?|jdn2|got|kob2?k?|mon|pce|scm|sht?|[tw]gr|vrd)-[ad]?[lw][0125][09]b?)/i,["Huawei",1]],[/(?:one)?(?:plus)? ?([a\d0]\d\d\d?)(?: b|\))/i,["OnePlus",1]],[/droid.+; (cph2[3-6]\d[13579]|((?:gm|hd)19|(?:ac|be|in|kb)20|(?:d[en]|eb|le|mt)21|ne22)[0-2]\d)(?: bui|\))/i,["OnePlus",1]],[/(oneplus)[-_ ]?([-\w]*)/i,["OnePlus",2]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i,["Realme",1]],[/(realme)[-_ ]?([-\w]*)/i,["Realme",2]],[/; (\w+) bui.+ oppo/i,["OPPO",1]],[/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i,["OPPO",1]],[/\b(opd2(\d{3}a?))(?: bui|\))/i,["OPPO",1]],[/(oppo)[-_ ]?([-\w]*)/i,["OPPO",2]],[/; vivo (\w+)(?: bui|\))/i,["Vivo",1]],[/\b(v[12]\d{3}\w?[at])(?: bui|;)/i,["Vivo",1]],[/(vivo)[-_ ]?([-\w]*)/i,["Vivo",2]],[/\bmot(?:orola)?[- ]([\w\s]+)(\)| bui)/i,["Motorola",1]],[/((?:moto(?! 360)[-\w() ]+|xt\d{3,4}[cgkosw+]?[-\d]*|nexus 6)(?= bui|\)))/i,["Motorola",1]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b/i,["Motorola",0]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i,["Motorola",0]],[/droid.+; ([a-z]?\d[0-2]{2}[a-z]{2}|[c-g]\d{4}|so[-gl]\w+|xq-[a-z]{2}\d\d)(?= bui|\))/i,["Sony",1]],[/sony tablet [ps]/i,["Sony","Xperia Tablet"]],[/\b(?:sony)?sgp\w+(?: bui|\))/i,["Sony",0]],[/(sony)[-_ ]?([-\w]*)/i,["Sony",2]],[/\blg[-e;/ ]+(?!.*(?:browser|netcast|android tv|watch|webos))(\w+)/i,["LG",1]],[/\blg-?([\d\w]+) bui/i,["LG",1]],[/(lm(?:-?f100[nv]?|-[\w.]+)(?= bui|\))|nexus [45])/i,["LG",1]],[/((?=lg)?[vl]k-?\d{3}) bui/i,["LG",0]],[/(lg)[-_ ]?([-\w]*)/i,["LG",2]],[/(?:maemo|nokia).*(n900|lumia \d+|rm-\d+)/i,["Nokia",1]],[/nokia[-_ ]?(([-\w. ]*?))(?: bui|\)|;|\/)/i,["Nokia",1]],[/(nokia) (t[12][01])/i,["Nokia",2]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i,["ASUS",1]],[/(?:asus[-_ ])?(zenfone[\w\-_ ]*)/i,["ASUS",1]],[/(rog[\w\-_ ]*)/i,["ASUS",1]],[/(asus)[-_ ]?([-\w]*)/i,["ASUS",2]],[/lenovo[-_ ]?([-\w ]+?)(?: bui|\)|\/)/i,["Lenovo",1]],[/(ideatab[-\w ]+|602lv|d-42a|a101lv|a2109a|a3500-hv|s[56]000|pb-6505[my]|tb-?x?\d{3,4}(?:f[cu]|xu|[av])|yt\d?-[jx]?\d+[lfmx])(?: bui|;|\)|\/)/i,["Lenovo",1]],[/(thinkpad[\w\-_ ]*)/i,["Lenovo",0]],[/(kf[a-z]{2}[a-z]*)(?: bui|\))/i,["Amazon",1]],[/(alexa)webm/i,["Amazon","Echo"]],[/(fire[\w\-_ ]*)/i,["Amazon",0]],[/(amazon)[-_ ]?([-\w]*)/i,["Amazon",2]],[/(?:blackberry|\(bb10;) (\w+)/i,["BlackBerry",1]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,["BlackBerry",1]],[/(playbook);[-\w),; ]+(rim)/i,["BlackBerry",1]],[/(microsoft); (lumia[\w ]+)/i,["Microsoft",2]],[/(surface duo)/i,["Microsoft","Surface Duo"]],[/(surface[\w\-_ ]*)/i,["Microsoft",0]],[/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,["ZTE",2]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,["HTC",2]],[/(alcatel|tcl)[-_ ]?([-\w]*)/i,[1,2]],[/(meizu)[-_ ]?([-\w]*)/i,["Meizu",2]],[/(tecno)[-_ ]?([-\w]*)/i,["Tecno",2]],[/(infinix)[-_ ]?([-\w]*)/i,["Infinix",2]],[/(micromax)[-_ ]?([-\w]*)/i,["Micromax",2]],[/(lava)[-_ ]?([-\w]*)/i,["Lava",2]],[/(panasonic)[-_ ]?([-\w]*)/i,["Panasonic",2]],[/(sharp)\/?([-\w]*)/i,["Sharp",2]],[/(benq)[-_ ]?([-\w]*)/i,["BenQ",2]],[/(palm)[-_ ]?([-\w]*)/i,["Palm",2]],[/(vertu)[-_ ]?([-\w]*)/i,["Vertu",2]],[/(gionee)[-_ ]?([-\w]*)/i,["Gionee",2]],[/(doogee)[-_ ]?([-\w]*)/i,["Doogee",2]],[/(ulefone)[-_ ]?([-\w]*)/i,["Ulefone",2]],[/(blackview)[-_ ]?([-\w]*)/i,["Blackview",2]],[/(cubot)[-_ ]?([-\w]*)/i,["Cubot",2]],[/(umidigi)[-_ ]?([-\w]*)/i,["UMIDIGI",2]],[/(oukitel)[-_ ]?([-\w]*)/i,["Oukitel",2]],[/(fairphone)[-_ ]?([-\w]*)/i,["Fairphone",2]],[/(cat)[-_ ]?([-\w]*)/i,["Cat",2]],[/(energy)[-_ ]?([-\w]*)/i,["Energizer",2]],[/(land rover)[-_ ]?([-\w]*)/i,["Land Rover",2]],[/(shield[\w\-_ ]*)/i,["Nvidia",0]],[/(crkey)/i,["Google","Chromecast"]],[/(roku)[\dx]*/i,["Roku",0]],[/(apple)[-_ ]?tv/i,["Apple","TV"]],[/(amazon)[-_ ]?tv/i,["Amazon","Fire TV"]],[/(google)[-_ ]?tv/i,["Google","TV"]],[/(smart[\w\-_ ]*tv)/i,[0,"Smart TV"]],[/(playstation[\w\-_ ]*)/i,["Sony",0]],[/(nintendo[\w\-_ ]*)/i,["Nintendo",0]],[/(xbox[\w\-_ ]*)/i,["Microsoft",0]],[/(googlebot)/i,["Google","Bot"]],[/(bingbot)/i,["Microsoft","Bing Bot"]],[/(yandexbot)/i,["Yandex","Bot"]],[/(slackbot)/i,["Slack","Bot"]],[/(twitterbot)/i,["Twitter","Bot"]],[/(facebookbot)/i,["Facebook","Bot"]],[/(linkedinbot)/i,["LinkedIn","Bot"]],[/(tesla)[-_ ]?([-\w]*)/i,["Tesla",2]],[/(raspberry[\w\-_ ]*)/i,["Raspberry Pi",0]]];for(let[i,r]of t){let a=e.match(i);if(a){let n=r[0],o=r[1],u=typeof n=="number"?a[n]!==void 0?this.normalizeVendorName(a[n]):"Unknown":this.normalizeVendorName(n),c="Unknown";typeof o=="number"?c=a[o]!==void 0?a[o]:"Unknown":o!==void 0?c=o:a[1]!==void 0?c=a[1]:a[0]!==void 0&&(c=a[0]),c=this.normalizeModelName(c,u),this.details.vendor=u,this.details.model=c;break}}}catch(t){console.error("DeviceChecker: device details detection error - ",t)}}normalizeVendorName(e){if(!e)return"Unknown";let t=e.toLowerCase();return{apple:"Apple",samsung:"Samsung",google:"Google",xiaomi:"Xiaomi",huawei:"Huawei",oneplus:"OnePlus",oppo:"OPPO",vivo:"Vivo",realme:"Realme",motorola:"Motorola",sony:"Sony",lg:"LG",nokia:"Nokia",asus:"ASUS",lenovo:"Lenovo",amazon:"Amazon",blackberry:"BlackBerry",microsoft:"Microsoft",zte:"ZTE",htc:"HTC",alcatel:"Alcatel",tcl:"TCL",meizu:"Meizu",tecno:"Tecno",infinix:"Infinix",micromax:"Micromax",lava:"Lava",panasonic:"Panasonic",sharp:"Sharp",benq:"BenQ",palm:"Palm",honor:"Honor",nvidia:"NVIDIA",roku:"Roku"}[t]||e.charAt(0).toUpperCase()+e.slice(1).toLowerCase()}normalizeModelName(e,t){if(!e||e==="Unknown")return e;if(e==="0")return"Unknown";let i=e.replace(/^build\//i,"").replace(/\s+bui$/i,"").replace(/\)$/,"").replace(/[;,)]/g,"").replace(/\s*\(.*?\)\s*/g,"").trim(),r=t.toLowerCase();return r.includes("samsung")?i=i.replace(/^(sm-|gt-|sgh-|sch-)/i,""):r.includes("xiaomi")?i=i.replace(/^(mi[\s\-_]*|redmi[\s\-_]*)/i,""):r.includes("oneplus")?i=i.replace(/^oneplus[\s\-_]*/i,""):r.includes("google")&&(i=i.replace(/^(pixel[\s\-_]*|nexus[\s\-_]*)/i,"")),i=i.replace(/_/g," ").replace(/-/g," ").replace(/\s+/g," ").trim(),i?(i.length>0&&/^[a-z]/.test(i)&&(i=i.charAt(0).toUpperCase()+i.slice(1)),i):"Unknown"}detectIOSVersion(){try{let e=(0,fi.getWindow)();if(!(0,fi.isBrowserWindow)(e))return;if(this._highEntropyValues.platformVersion){let i=this._highEntropyValues.platformVersion.split(".").slice(0,2).join(".");this._iosVersion=parseFloat(i);return}if(this._os.version!=="Unknown"){let i=this._os.version.split("."),r=i.length>=2?`${i[0]}.${i[1]}`:i[0];this._iosVersion=parseFloat(r);return}let t=e.navigator.userAgent.match(/OS (\d+(_\d+)?)/i);t!=null&&t[1]&&(this._iosVersion=parseFloat(t[1].replace(/_/g,".")))}catch(e){console.error("DeviceChecker: iOS version detection error - ",e)}}};var ga=require("@vkontakte/videoplayer-shared/es2018"),gn=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in(0,ga.getWindow)()}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){var a;let e=(0,ga.getWindow)();if(!(0,ga.isBrowserWindow)(e))return;let{navigator:t,screen:i}=e,{maxTouchPoints:r}=t;try{this._maxTouchPoints=r!=null?r:0,this._isHdr=!!((a=e.matchMedia("(dynamic-range: high)"))!=null&&a.matches),this._colorDepth=i.colorDepth}catch(n){console.error(n)}try{this._pixelRatio=e.devicePixelRatio||1,this._height=i.height,this._width=i.width,this._height=i.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(n){console.error(n)}}};var Wi=require("@vkontakte/videoplayer-shared/es2018");var ut=()=>window.ManagedMediaSource||window.MediaSource,xr=()=>{var s,e;return!!(window.ManagedMediaSource&&((e=(s=window.ManagedSourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},rf=()=>{var s,e;return!!(window.MediaSource&&((e=(s=window.SourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},vn=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var af,Iw=(af=(0,Wi.getWindow)().document)==null?void 0:af.createElement("video"),Ew='video/mp4; codecs="avc1.42000a,mp4a.40.2"',ww='video/mp4; codecs="hev1.1.6.L93.B0"',sf='video/webm; codecs="vp09.00.10.08"',nf='video/webm; codecs="av01.0.00M.08"',xw='audio/mp4; codecs="mp4a.40.2"',Pw='audio/webm; codecs="opus"',of,kw=async()=>{let s=(0,Wi.getWindow)();if(!(0,Wi.isBrowserWindow)(s))return;let e={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[t,i]=await Promise.all([s.navigator.mediaCapabilities.decodingInfo({...e,video:{...e.video,contentType:nf}}),s.navigator.mediaCapabilities.decodingInfo({...e,video:{...e.video,contentType:sf}})]);of={DASH_WEBM_AV1:t,DASH_WEBM:i}};kw().catch(s=>{console.log(Iw),console.error(s)});var Sn=class{constructor(e,t){this._deviceChecker=e,this._browserChecker=t}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return of}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){var i,r,a,n,o,u,c,l,d,p,h,m,b,S,v,y,x,w,M,_;let e=(0,Wi.getWindow)();if(!(0,Wi.isBrowserWindow)(e))return;let t=e.document;this._video=t.createElement("video");try{this._protocols={mms:xr(),mse:rf(),hls:!!((r=(i=this._video).canPlayType)!=null&&r.call(i,"application/x-mpegurl")||(n=(a=this._video).canPlayType)!=null&&n.call(a,"vnd.apple.mpegURL")),webrtc:!!e.RTCPeerConnection,ws:!!e.WebSocket},this._containers={mp4:!!((u=(o=this._video).canPlayType)!=null&&u.call(o,"video/mp4")),webm:!!((l=(c=this._video).canPlayType)!=null&&l.call(c,"video/webm")),cmaf:!0};let q=!!((p=(d=ut())==null?void 0:d.isTypeSupported)!=null&&p.call(d,Ew)),O=!!((m=(h=ut())==null?void 0:h.isTypeSupported)!=null&&m.call(h,ww)),H=!!((S=(b=ut())==null?void 0:b.isTypeSupported)!=null&&S.call(b,xw));this._codecs={h264:q,h265:O,vp9:!!((y=(v=ut())==null?void 0:v.isTypeSupported)!=null&&y.call(v,sf)),av1:!!((w=(x=ut())==null?void 0:x.isTypeSupported)!=null&&w.call(x,nf)),aac:H,opus:!!((_=(M=ut())==null?void 0:M.isTypeSupported)!=null&&_.call(M,Pw)),mpeg:(q||O)&&H},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(q){console.error(q)}try{this.destroyVideoElement()}catch(q){console.error("Error destroying video element:",q)}}destroyVideoElement(){var t;if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute("src"),this._video.src="",this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);(t=this._video.parentNode)==null||t.replaceChild(e,this._video),this._video=null}};var Tn=require("@vkontakte/videoplayer-shared/es2018");var uf="audio/mpeg",yn=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var i,r,a,n;let e=(0,Tn.getWindow)();if(!(0,Tn.isBrowserWindow)(e))return;let t=e.document;this._audio=t.createElement("audio");try{this._containers={mpeg:!!((r=(i=this._audio).canPlayType)!=null&&r.call(i,uf))},this._codecs={mp3:!!((n=(a=ut())==null?void 0:a.isTypeSupported)!=null&&n.call(a,uf))}}catch(o){console.error(o)}try{this.destroyAudioElement()}catch(o){console.error("Error destroying audio element:",o)}}destroyAudioElement(){var t;if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute("src"),this._audio.src="",this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);(t=this._audio.parentNode)==null||t.replaceChild(e,this._audio),this._audio=null}};var Bu=class{constructor(){this.isInited$=new In.ValueSubject(!1);this._displayChecker=new gn,this._deviceChecker=new bn(this._displayChecker),this._browserChecker=new mn,this._videoChecker=new Sn(this._deviceChecker,this._browserChecker),this._audioChecker=new yn,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}async detect(){(0,In.isBrowserWindow)()&&(this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0))}},j=new Bu;var _u=s=>{let{containers:e,protocols:t,codecs:i,nativeHlsSupported:r}=j.video,a=(i.h264||i.h265)&&i.aac,n=t.mse||t.mms;return s.filter(o=>{switch(o){case"DASH_SEP":return n&&e.mp4&&a;case"DASH_WEBM":return n&&e.webm&&i.vp9&&i.opus;case"DASH_WEBM_AV1":return n&&e.webm&&i.av1&&i.opus;case"DASH_STREAMS":return n&&(e.mp4&&a||e.webm&&(i.vp9||i.av1)&&(i.opus||i.aac));case"DASH_LIVE":return n&&e.mp4&&a;case"DASH_LIVE_CMAF":return n&&e.mp4&&a&&e.cmaf;case"DASH_ONDEMAND":return n&&e.mp4&&a;case"HLS":case"HLS_ONDEMAND":case"HLS_FMP4":case"HLS_LIVE":case"HLS_LIVE_CMAF":return r;case"MPEG":return e.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return t.webrtc&&t.ws&&i.h264&&(e.mp4||e.webm);default:return(0,Vu.assertNever)(o)}})},va=s=>{switch(s){case"MPEG":case"DASH":case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":case"HLS":case"HLS_FMP4":case"HLS_ONDEMAND":return!1;case"DASH_LIVE":case"DASH_LIVE_CMAF":case"HLS_LIVE":case"HLS_LIVE_CMAF":case"DASH_LIVE_WEBM":case"WEB_RTC_LIVE":return!0;default:return(0,Vu.assertNever)(s)}},cf=s=>{let t=Object.keys(s).filter(i=>!va(i));return _u(t).length>0};var Sa=class{constructor(e){this.subscription=new se.Subscription;this.sessionId$=new se.ValueSubject(null);this.mediaSessionId$=new se.ValueSubject(null);this.contentId$=new se.ValueSubject(null);this.isMobile=hi();this.mobileVolumeState={muted:!1,volume:0};this.media=null;this.lastRequestedVolume=null;this.syncMediaState=e=>{var a,n,o;if((0,se.isNullable)(e))return;this.media=e,this.mediaSessionId$.next((a=e.mediaSessionId)!=null?a:null);let t=(n=e.media)==null?void 0:n.contentId;t&&this.contentId$.next(t),this.syncPlaybackState(e);let i=(o=e.media)==null?void 0:o.duration;(0,se.isNonNullable)(i)&&this.params.output.duration$.next(Math.max(0,i));let r=e.currentTime;if((0,se.isNonNullable)(r)){this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.params.output.position$.next(r);let c=this.params.output.isLive$.getValue();e.playerState==="PLAYING"&&!c?this.progressTicker.start(r):this.progressTicker.pause()}};this.params=e,this.progressTicker=new fn(e),this.log=this.params.dependencies.logger.createComponentLog("ChromecastPresentationApiProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(va(e.format)),this.subscribe()}subscribe(){let e=r=>{var a;this.params.output.error$.next({category:se.ErrorCategory.WTF,id:"ChromecastPresentationApiProvider",message:(a=r==null?void 0:r.message)!=null?a:"Unknown error",thrown:r})};this.subscription.add(this.params.chromecastConnector.message$.pipe((0,se.filter)(r=>!!r)).subscribe(r=>{this.handleMessage(r)},e)),this.subscription.add(this.sessionId$.pipe((0,se.filter)(se.isNonNullable),(0,se.filterChanged)(),(0,se.debounce)(0)).subscribe(()=>{this.loadMedia()},e));let t=this.contentId$.pipe((0,se.filterChanged)(),(0,se.map)(Boolean));this.subscription.add((0,se.combine)({seekState:this.params.desiredState.seekState.stateChangeEnded$,mediaLoaded:t}).pipe((0,se.filter)(({mediaLoaded:r})=>r)).subscribe(()=>{let r=this.params.desiredState.seekState.getState();r.state==="requested"&&this.seek(r.position/1e3)},e));let i=(0,se.combine)({playbackState:this.params.desiredState.playbackState.stateChangeStarted$,mediaLoaded:t});this.subscription.add(i.pipe((0,se.filter)(({mediaLoaded:r})=>r),(0,se.debounce)(0)).subscribe(()=>{this.syncPlayback()},e)),this.subscription.add(i.pipe((0,se.filter)(({mediaLoaded:r,playbackState:{from:a,to:n}})=>!r&&a==="stopped"&&n==="playing")).subscribe(()=>{this.loadMedia()},e)),this.subscription.add((0,se.combine)({volumeState:this.params.desiredState.volume.stateChangeStarted$.pipe((0,se.debounce)(30)),mediaLoaded:t}).pipe((0,se.filter)(({mediaLoaded:r})=>r)).subscribe(({volumeState:r})=>{let{muted:a,volume:n}=r.to;this.setVolume(n,a)},e))}handleMessage(e){var t,i,r,a,n,o;switch(e.type){case"new_session":case"update_session":{this.sessionId$.next(e.message.sessionId);let u=(i=(t=e.message)==null?void 0:t.media)==null?void 0:i[0];this.syncMediaState(u);let c=(r=e.message)==null?void 0:r.receiver.volume;this.syncVolumeState(c)}break;case"v2_message":{switch((a=e.message)==null?void 0:a.type){case"MEDIA_STATUS":{let u=(o=(n=e.message)==null?void 0:n.status)==null?void 0:o[0];this.syncMediaState(u);break}}break}}}loadMedia(){var o;let e=hn(this.params),t=(o=this.media)==null?void 0:o.currentTime,i=this.params.desiredState.seekState.getState(),r=t!=null?t:i.state!=="none"?i.position/1e3:0,n=this.params.desiredState.playbackState.getState()==="playing";this.params.chromecastConnector.sendV2Message({type:"LOAD",requestId:0,media:e,autoplay:n,currentTime:r,customData:null,activeTrackIds:null}),this.params.output.willSeekEvent$.next()}stop(){this.params.chromecastConnector.stopMedia()}play(){let e=this.mediaSessionId$.getValue();(0,se.assertNonNullable)(e,"play on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"PLAY",mediaSessionId:e,customData:null})}pause(){let e=this.mediaSessionId$.getValue();(0,se.assertNonNullable)(e,"pause on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"PAUSE",mediaSessionId:e,customData:null})}seek(e){let t=this.mediaSessionId$.getValue();(0,se.assertNonNullable)(t,"seek on null mediaSessionId"),this.params.chromecastConnector.sendV2Message({type:"SEEK",currentTime:e,mediaSessionId:t}),this.params.output.willSeekEvent$.next()}setVolume(e,t){let i=e,r=`[setVolume] volume: ${e}, muted: ${t}`;this.isMobile&&(i=this.mobileVolumeState.volume,r+=`, mobile next volume: ${i}`),this.log({message:r}),this.lastRequestedVolume={volume:i,muted:t},this.params.chromecastConnector.sendV2Message({type:"SET_VOLUME",requestId:0,volume:{level:t?0:i,muted:t?!0:null}})}syncPlaybackState({playerState:e,idleReason:t}){let i=this.params.output.isBuffering$.getValue(),r=e==="BUFFERING";switch(i!==r&&this.params.output.isBuffering$.next(r),e){case"PAUSED":B(this.params.desiredState.playbackState,"paused");break;case"PLAYING":B(this.params.desiredState.playbackState,"playing");break;case"IDLE":{t==="FINISHED"?(this.params.output.endedEvent$.next(),B(this.params.desiredState.playbackState,"stopped"),this.contentId$.next(null)):B(this.params.desiredState.playbackState,"ready");break}case"BUFFERING":break}}syncPlayback(){let e=this.params.desiredState.playbackState.getState();switch(this.log({message:`[syncPlayback] ${e}`}),e){case"ready":break;case"playing":this.play();break;case"paused":this.pause();break;case"stopped":this.stop();break}}syncVolumeState(e){if((0,se.isNullable)(e))return;let{level:t,muted:i}=e,r={muted:i!=null?i:!1,volume:t!=null?t:0};this.lastRequestedVolume&&(i&&(r.volume=this.lastRequestedVolume.volume),this.lastRequestedVolume.muted&&!t&&!i&&(r.volume=this.lastRequestedVolume.volume,r.muted=!0),this.lastRequestedVolume=null);let a=`[syncVolumeState] volume: ${r.volume}, muted: ${r.muted}`;this.isMobile&&(this.mobileVolumeState.volume=r.volume,this.mobileVolumeState.muted=r.muted,r.volume=this.params.output.volume$.getValue().volume,a+=`, volume passed to state machine: ${r.volume}`),this.log({message:a}),this.params.output.volume$.next(r)}destroy(){this.progressTicker.destroy(),this.subscription.unsubscribe()}};var he=require("@vkontakte/videoplayer-shared/es2018");var lf=s=>({castDevice:{friendlyName:s},remotePlayer:{},remotePlayerController:{},session:{}}),df=()=>String(Date.now())+String(Math.floor(Math.random()*1e5));var ya=class{constructor(e){this.capabilities=["WEB"];this.presentationRequest$=new he.ValueSubject(null);this.sessionId$=new he.ValueSubject(null);this.broadcastChannel=new BroadcastChannel("vk_player_chromecast_events");this.subscription=new he.Subscription;this.subscriptionEvents=new he.Subscription;this.isDestroyed=!1;this.sequenceNumber=0;this.presentationAvailable$=new he.ValueSubject(!1);this.presentationConnection$=new he.ValueSubject(null);this.message$=new he.ValueSubject(null);this.friendlyName$=new he.ValueSubject(null);this.errorEvent$=new he.Subject;this.clientId=this.getClientId(),this.params=e,this.log=e.logger.createComponentLog("ChromecastPresentationApiConnector"),this.log({message:"constructor"}),this.reinitPresentation(),this.subscribe()}destroy(){this.log({message:"destroy"}),this.subscription.unsubscribe(),this.subscriptionEvents.unsubscribe(),this.broadcastChannel.close(),this.isDestroyed=!0}disconnect(e=!0){this.log({message:"disconnect"}),e&&this.stopMedia(),this.presentationRequest$.next(null);let t=this.presentationConnection$.getValue();t&&t.close(),this.presentationConnection$.next(null),this.friendlyName$.next(null),this.resetSequenceNumber(),this.resetSubscriptionEvents()}stopMedia(){this.log({message:"stopMedia"}),this.sendV2Message({type:"STOP"})}reinitPresentation(e=!0){let t=this.createCastUrl(),i=new PresentationRequest(t);this.presentationRequest$.next(i),this.log({message:"PresentationRequest created"}),i.getAvailability().then(r=>{let a=()=>{this.log({message:`PresentationRequest presentation availability: ${r.value}`}),this.presentationAvailable$.next(r.value)};this.subscriptionEvents.add((0,he.fromEvent)(r,"change").subscribe(()=>{a()})),a()}).catch(()=>{this.presentationAvailable$.next(!0)}),window.navigator.presentation.defaultRequest=i,e&&i.reconnect("auto-join").then(r=>{this.log({message:"PresentationRequest reconnect success"}),this.handleConnection(r)}).catch(()=>{this.log({message:"PresentationRequest reconnect failed"})})}async connect(){var e;this.log({message:"connect"});try{this.presentationRequest$.getValue()||(this.log({message:"reinitPresentation"}),this.reinitPresentation(!1));let t=this.presentationRequest$.getValue();(0,he.assertNonNullable)(t,"connect with null presentationRequest");let i=await t.start();this.handleConnection(i)}catch(t){switch(t==null?void 0:t.name){case"AbortError":case"NotAllowedError":break;default:this.errorEvent$.next({category:he.ErrorCategory.WTF,id:"ChromecastPresentationApiConnector",message:(e=t==null?void 0:t.message)!=null?e:"connect error",thrown:t});break}}}subscribe(){this.subscription.add((0,he.fromEvent)(this.broadcastChannel,"message").subscribe(e=>{this.log({message:`broadcast connection data: ${e.data}`}),e.data==="connection"&&this.disconnect(!1)})),this.subscription.add(this.presentationAvailable$.subscribe(e=>{this.log({message:`presentationAvailable$: ${e}`})})),this.subscription.add(this.presentationConnection$.pipe((0,he.tap)(e=>{this.log({message:`presentationConnection$: ${!!e}`})}),(0,he.filter)(e=>!!e)).subscribe(e=>{let t=(0,he.fromEvent)(e,"message").subscribe(a=>{let n=JSON.parse(a.data);n.clientId===this.clientId&&(this.log({message:`[onmessage] ${a.data}`}),this.handleMessage(n),this.message$.next(n))}),i=(0,he.fromEvent)(e,"connect").subscribe(()=>{this.send("client_connect")}),r=(0,he.fromEvent)(e,"close").subscribe(a=>{switch(a.reason){case"error":this.errorEvent$.next({category:he.ErrorCategory.WTF,id:"ChromecastPresentationApiConnector",message:"Session error",thrown:a});break;case"closed":break}});this.subscriptionEvents.add(t),this.subscriptionEvents.add(i),this.subscriptionEvents.add(r)}))}send(e){switch(e){case"client_connect":{let t={type:"client_connect",message:this.clientId,sequenceNumber:-1,timeoutMillis:0,clientId:this.clientId};this.safeSend(JSON.stringify(t));break}}}sendV2Message(e){let t=this.sessionId$.getValue();if(t){let i={type:"v2_message",sequenceNumber:this.getSequenceNumber(),timeoutMillis:0,clientId:this.clientId,message:{...e,sessionId:t}};this.safeSend(JSON.stringify(i))}}safeSend(e){try{this.log({message:`[send] ${e}`});let t=this.presentationConnection$.getValue();(t==null?void 0:t.state)==="connected"&&(t==null||t.send(e))}catch(t){this.errorEvent$.next({category:he.ErrorCategory.WTF,id:"ChromecastPresentationApiConnector",message:"PresentationConnection send error",data:{message:e},thrown:t})}}handleMessage(e){var t;switch(e.type){case"new_session":case"update_session":{this.sessionId$.next(e.message.sessionId),this.friendlyName$.next(e.message.receiver.friendlyName||"Chromecast Device");break}case"receiver_action":((t=e.message)==null?void 0:t.action)==="stop"&&this.disconnect();break}}createCastUrl(){return`cast:${this.params.appId}?clientId=${this.clientId}&autoJoinPolicy=tab_and_origin_scoped&defaultActionPolicy=create_session&launchTimeout=60000&supportedAppTypes=${this.capabilities}&appParams=%7B%22launchCheckerParams%22%3A%7B%7D%7D`}getSequenceNumber(){let e=this.sequenceNumber;return this.sequenceNumber=(this.sequenceNumber+1)%Number.MAX_SAFE_INTEGER,e}resetSequenceNumber(){this.sequenceNumber=0}getClientId(){let e="__vk_player_chromecast_id";return window[e]=window[e]||df()}resetSubscriptionEvents(){this.subscriptionEvents.unsubscribe(),this.subscriptionEvents=new he.Subscription}handleConnection(e){this.log({message:"connection available"}),this.isDestroyed?(this.log({message:"connected on already destroyed component"}),e.close()):(this.broadcastChannel.postMessage("connection"),this.presentationConnection$.next(e))}};var He=require("@vkontakte/videoplayer-shared/es2018");var Gt=class s{constructor(e){this.subscription=new He.Subscription;this.connection$=new He.ValueSubject(void 0);this.castState$=new He.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new He.Subject;let t=s.isSupported();this.log=e.dependencies.logger.createComponentLog("ChromecastPresentationApiInitializer"),this.log({message:`[constructor] receiverApplicationId: ${e.receiverApplicationId}, isDisabled: ${e.isDisabled}, isSupported: ${t}`}),!(!t||e.isDisabled||!e.receiverApplicationId)&&(this.chromecastConnector=new ya({appId:e.receiverApplicationId,logger:e.dependencies.logger}),this.subscribe())}static isSupported(){return"chrome"in window&&"presentation"in navigator&&"BroadcastChannel"in window}subscribe(){(0,He.assertNonNullable)(this.chromecastConnector,"subscribe with null chromecastConnector"),this.subscription.add(this.chromecastConnector.errorEvent$.subscribe(this.errorEvent$));let e=(0,He.combine)({connection:this.chromecastConnector.presentationConnection$,available:this.chromecastConnector.presentationAvailable$,friendlyName:this.chromecastConnector.friendlyName$.pipe((0,He.filterChanged)())});this.subscription.add(e.pipe((0,He.map)(({connection:t,friendlyName:i})=>!!(t&&i)),(0,He.filterChanged)()).subscribe(t=>{var r,a;let i=(a=(r=this.chromecastConnector)==null?void 0:r.friendlyName$.getValue())!=null?a:"";this.connection$.next(t?lf(i):void 0)})).add(e.subscribe(({available:t,connection:i})=>{t?i?this.castState$.next("CONNECTED"):this.castState$.next("AVAILABLE"):this.castState$.next("NOT_AVAILABLE")}))}connect(){var e;this.log({message:"connect"}),(e=this.chromecastConnector)==null||e.connect()}disconnect(){var e;this.log({message:"disconnect"}),(e=this.chromecastConnector)==null||e.disconnect()}async stopMedia(){var e;this.log({message:"stopMedia"}),(e=this.chromecastConnector)==null||e.stopMedia()}toggleConnection(){var t;let e=!!((t=this.chromecastConnector)!=null&&t.presentationConnection$.getValue());this.log({message:`toggleConnection: isConnected - ${e}`}),e?this.disconnect():this.connect()}setVolume(e){}setMuted(e){}destroy(){var e;this.log({message:"destroy"}),(e=this.chromecastConnector)==null||e.destroy(),this.subscription.unsubscribe()}};var Wl=G(Xe(),1),Ql=G(mi(),1),Xy=G(sc(),1);var Hg=G(Wc(),1);var Nt=require("@vkontakte/videoplayer-shared/es2018"),ae=class{constructor(e){this.transitionStarted$=new Nt.Subject;this.transitionEnded$=new Nt.Subject;this.transitionUpdated$=new Nt.Subject;this.forceChanged$=new Nt.Subject;this.stateChangeStarted$=(0,Nt.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,Nt.merge)(this.transitionEnded$,this.forceChanged$);this.state=e,this.prevState=void 0}setState(e){let t=this.transition,i=this.state;this.transition=void 0,this.prevState=i,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:i,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,i=this.state;i===e||(0,Nt.isNonNullable)(t)&&t.to===e||(this.prevState=i,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:i,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}};var ue=require("@vkontakte/videoplayer-shared/es2018");var hR=5,fR=5,mR=500,jg=7e3,Ca=class{constructor(e){this.subscription=new ue.Subscription;this.loadMediaTimeoutSubscription=new ue.Subscription;this.videoState=new ae("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&e!=="stopped"){this.seek(a.position/1e3);return}switch(i){case"ready":{switch(e){case"playing":case"paused":case"ready":break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,ue.assertNever)(e)}break}case"playing":{switch(e){case"playing":break;case"paused":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"ready":this.videoState.startTransitionTo("playing"),this.params.connection.remotePlayerController.playOrPause();break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,ue.assertNever)(e)}break}case"paused":{switch(e){case"playing":this.videoState.startTransitionTo("paused"),this.params.connection.remotePlayerController.playOrPause();break;case"paused":break;case"ready":this.videoState.startTransitionTo("paused"),this.videoState.setState("paused");break;case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();break;default:(0,ue.assertNever)(e)}break}default:(0,ue.assertNever)(i)}}};this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ChromecastProvider"),this.log({message:`constructor, format: ${e.format}`}),this.params.output.isLive$.next(va(e.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let t=this.params.connection.session.getMediaSession();t&&this.restoreSession(t),this.subscribe()}destroy(){this.log({message:"[destroy]"}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new ue.Subscription;this.subscription.add(e),this.subscription.add((0,ue.merge)(this.videoState.stateChangeStarted$.pipe((0,ue.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,ue.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,a)=>this.subscription.add(r.subscribe(a));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new ue.Subject;e.add(r.pipe((0,ue.debounce)(mR)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add((0,ue.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(n=>{this.logRemoteEvent(n);let o=n.value;this.params.output.position$.next(o),(this.params.desiredState.seekState.getState().state==="applying"||Math.abs(o-a)>hR)&&r.next(o),a=o})),e.add((0,ue.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,ue.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t((0,ue.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,ue.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:a}=this.params.connection,n=r.value,o=this.params.output.isBuffering$.getValue(),u=n===chrome.cast.media.PlayerState.BUFFERING;switch(o!==u&&this.params.output.isBuffering$.next(u),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&a.duration-a.currentTime<fR&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),B(this.params.desiredState.playbackState,"stopped");break;case chrome.cast.media.PlayerState.PAUSED:{this.handleRemotePause();break}case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:(0,ue.assertNever)(n)}}),t((0,ue.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,ue.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,ue.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ue.observableFrom)(["init"])).pipe((0,ue.debounce)(0));t(i,this.syncPlayback)}restoreSession(e){this.log({message:"restoreSession"});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),B(this.params.desiredState.playbackState,"playing"));let i=this.params.output.isLive$.getValue();this.params.output.duration$.next(i?0:t.duration),this.params.output.position$.next(i?0:t.currentTime),this.params.desiredState.seekState.setState({state:"none"})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=hn(this.params),i=this.createLoadRequest(t);this.loadMedia(i)}handleRemotePause(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="paused"||e==="playing")&&(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused"))}handleRemotePlay(){let e=this.videoState.getState(),t=this.videoState.getTransition();((t==null?void 0:t.to)==="playing"||e==="paused")&&(this.videoState.setState("playing"),B(this.params.desiredState.playbackState,"playing"))}handleRemoteReady(){var t;let e=this.videoState.getTransition();(e==null?void 0:e.to)==="ready"&&this.videoState.setState("ready"),((t=this.params.desiredState.playbackState.getTransition())==null?void 0:t.to)==="ready"&&B(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){var r,a;let t=this.params.output.volume$.getValue(),i={volume:(r=e.volume)!=null?r:t.volume,muted:(a=e.muted)!=null?a:t.muted};(i.volume!==t.volume||i.muted!==i.muted)&&this.params.output.volume$.next(i)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:i}=this.params.connection;t.currentTime=e,i.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let i=this.params.desiredState.seekState.getState();return i.state==="applying"||i.state==="requested"?t.currentTime=this.params.output.isLive$.getValue()?0:i.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),i=new Promise((r,a)=>{this.loadMediaTimeoutSubscription.add((0,ue.timeout)(jg).subscribe(()=>a(`timeout(${jg})`)))});(0,Hg.default)(Promise.race([t,i]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},r=>{let a=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:a}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:ue.ErrorCategory.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var nl=G(Xe(),1);var Da=require("@vkontakte/videoplayer-shared/es2018");var Wg=require("@vkontakte/videoplayer-shared/es2018"),Qg=(s,e)=>{try{s.pause(),s.playbackRate=0,(0,Wg.clearVideoElement)(s,e),s.remove()}catch(t){console.error(t)}};var Gn=require("@vkontakte/videoplayer-shared/es2018"),Qc=class{constructor(){this.attribute="data-pool-reused"}get(e){return e.hasAttribute(this.attribute)}set(e,t){e.toggleAttribute(this.attribute,t)}delete(e){e.removeAttribute(this.attribute)}},zn=(0,Da.getWindow)(),zc=zn.WeakMap?new zn.WeakMap:new Qc,Gc=zn.WeakMap?new zn.WeakMap:new Map,bR=(s,e=20)=>{let t=0;return(0,Gn.fromEvent)(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},Je=(s,{audioVideoSyncRate:e,disableYandexPiP:t,clearVideoElementInnerHTML:i})=>{let r=s.querySelector("video"),a=!!r;r?(0,Da.clearVideoElement)(r,i):(r=document.createElement("video"),s.appendChild(r)),zc.set(r,a);let n=new Gn.Subscription;return n.add(bR(r,e)),Gc.set(r,n),r.setAttribute("crossorigin","anonymous"),r.setAttribute("playsinline","playsinline"),t&&r.setAttribute("x-yandex-pip","false"),r.controls=!1,r.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),r},Ze=(s,e=!1,t=!1)=>{let i=Gc.get(s);i==null||i.unsubscribe(),Gc.delete(s);let r=zc.get(s);zc.delete(s),r||e?(0,Da.clearVideoElement)(s,t):Qg(s,t)};var Yc=G(Hi(),1),z=require("@vkontakte/videoplayer-shared/es2018");var gi=require("@vkontakte/videoplayer-shared/es2018"),Yn=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=(0,gi.isNullable)(r),c=new gi.Subscription;return r&&c.add(r.subscribe(l=>{let d=s.getState();i(l,d)&&s.setState(l)},a)),i(o,n)||(t(n),u&&s.setState(n)),c.add(s.stateChangeStarted$.subscribe(l=>{t(l.to),u&&s.setState(l.to)},a)),c},Ft=(s,e,t)=>Yn(e,()=>s.loop,i=>{(0,gi.isNonNullable)(i)&&(s.loop=i)},{onError:t}),et=(s,e,t,i)=>Yn(e,()=>({muted:s.muted,volume:s.volume}),r=>{(0,gi.isNonNullable)(r)&&(s.muted=r.muted,s.volume=r.volume)},{equal:(r,a)=>r===a||(r==null?void 0:r.muted)===(a==null?void 0:a.muted)&&(r==null?void 0:r.volume)===(a==null?void 0:a.volume),changed$:t,onError:i}),ft=(s,e,t,i)=>Yn(e,()=>s.playbackRate,r=>{(0,gi.isNonNullable)(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),Ba=Yn;var gR=s=>["__",s.language,s.label].join("|"),vR=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},Kc=class s{constructor(e){this.available$=new z.Subject;this.current$=new z.ValueSubject(void 0);this.error$=new z.Subject;this.subscription=new z.Subscription;this.externalTracks=new Map;this.internalTracks=new Map;this.baseURL=e}connect(e,t,i){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=a=>{this.error$.next({id:"TextTracksManager",category:z.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:a})};this.subscription.add(this.available$.subscribe(i.availableTextTracks$)),this.subscription.add(this.current$.subscribe(i.currentTextTrack$)),this.subscription.add(this.error$.subscribe(i.error$)),this.subscription.add(Ba(t.internalTextTracks,()=>(0,Yc.default)(this.internalTracks),a=>{(0,z.isNonNullable)(a)&&this.setInternal(a)},{equal:(a,n)=>(0,z.isNonNullable)(a)&&(0,z.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,z.map)(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(Ba(t.externalTextTracks,()=>(0,Yc.default)(this.externalTracks),a=>{(0,z.isNonNullable)(a)&&this.setExternal(a)},{equal:(a,n)=>(0,z.isNonNullable)(a)&&(0,z.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,z.map)(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(Ba(t.currentTextTrack,()=>{if(this.video)return;let a=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return a&&this.htmlTextTrackToITextTrack(a).id},a=>this.select(a),{changed$:this.current$,onError:r})),this.subscription.add(Ba(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){(0,z.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,z.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,z.merge)((0,z.fromEvent)(e,"addtrack"),(0,z.fromEvent)(e,"removetrack"),(0,z.observableFrom)(["init"])).pipe((0,z.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,z.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add((0,z.merge)((0,z.fromEvent)(e,"change"),(0,z.observableFrom)(["init"])).pipe((0,z.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,z.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,z.filterChanged)()).subscribe(this.current$));let t=i=>{var r,a;return this.applyCueSettings((a=(r=i.target)==null?void 0:r.activeCues)!=null?a:null)};this.subscription.add((0,z.fromEvent)(e,"addtrack").subscribe(i=>{var a,n;(a=i.track)==null||a.addEventListener("cuechange",t);let r=o=>{var c,l,d,p,h;let u=(l=(c=o.target)==null?void 0:c.cues)!=null?l:null;u&&u.length&&(this.applyCueSettings((p=(d=o.target)==null?void 0:d.cues)!=null?p:null),(h=o.target)==null||h.removeEventListener("cuechange",r))};(n=i.track)==null||n.addEventListener("cuechange",r)})),this.subscription.add((0,z.fromEvent)(e,"removetrack").subscribe(i=>{var r;(r=i.track)==null||r.removeEventListener("cuechange",t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let i of Array.from(e)){let r=i;(0,z.isNonNullable)(t.align)&&(r.align=t.align),(0,z.isNonNullable)(t.position)&&(r.position=t.position),(0,z.isNonNullable)(t.size)&&(r.size=t.size),(0,z.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,z.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,c,l,d;let{language:t,label:i}=e,r=e.id?e.id:gR(e),a=this.externalTracks.has(r),n=(c=a?(o=this.externalTracks.get(r))==null?void 0:o.isAuto:(u=this.internalTracks.get(r))==null?void 0:u.isAuto)!=null?c:r.includes("auto");return a?{id:r,type:"external",isAuto:n,language:t,label:i,url:(l=this.externalTracks.get(r))==null?void 0:l.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:(d=this.internalTracks.get(r))==null?void 0:d.url}}static isHealthyTrack(e){return!(e.kind==="metadata"||e.groupId||e.id===""&&e.label===""&&e.language==="")}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,t])=>this.detach(t)),e.filter(({id:t})=>!this.externalTracks.has(t)).forEach(t=>this.attach(t)),Array.from(this.externalTracks).filter(([t])=>!e.find(i=>i.id===t)).forEach(([,t])=>this.detach(t))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:i,language:r,isAuto:a})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===a)).forEach(i=>this.attach(i)),Array.from(this.internalTracks).filter(([i])=>!e.find(r=>r.id===i)).forEach(([,i])=>this.detach(i))}select(e){(0,z.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,z.isNullable)(e)||!vR(t,e))&&(t.mode="disabled")}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName("track"))){let t=e.getAttribute("id");t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){(0,z.assertNonNullable)(this.video);let t=document.createElement("track");this.baseURL?t.setAttribute("src",new URL(e.url,this.baseURL).toString()):t.setAttribute("src",e.url),t.setAttribute("id",e.id),e.label&&t.setAttribute("label",e.label),e.language&&t.setAttribute("srclang",e.language),e.type==="external"?this.externalTracks.set(e.id,e):e.type==="internal"&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){(0,z.assertNonNullable)(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName("track"),i=>i.getAttribute("id")===e.id);t&&this.video.removeChild(t),e.type==="external"?this.externalTracks.delete(e.id):e.type==="internal"&&this.internalTracks.delete(e.id)}},mt=Kc;var Xi=class{constructor(){this.pausedTime=0;this.streamOffset=0;this.pauseTimestamp=0}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}};var zg=s=>{let e=s;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e==null?void 0:e.parentNode;return e!=null?e:void 0},Xc=s=>{let e=zg(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},Gg=s=>{let e=zg(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};var L=require("@vkontakte/videoplayer-shared/es2018");var SR=3,Yg=(s,e,t=SR)=>{let i=0,r=0;for(let a=0;a<s.length;a++){let n=s.start(a),o=s.end(a);if(n<=e&&e<=o){if(i=n,r=o,!t)return{from:i,to:r};for(let u=a-1;u>=0;u--)s.end(u)+t>=i&&(i=s.start(u));for(let u=a+1;u<s.length;u++)s.start(u)-t<=r&&(r=s.end(u))}}return{from:i,to:r}};var tt=s=>{let e=V=>(0,L.fromEvent)(s,V).pipe((0,L.mapTo)(void 0),(0,L.shareReplay)(1)),t=new L.Subscription,i=()=>t.unsubscribe(),r=(0,L.merge)((0,L.fromEvent)(s,"progress"),(0,L.fromEvent)(s,"timeupdate")).pipe((0,L.map)(()=>Yg(s.buffered,s.currentTime)),(0,L.shareReplay)(1)),a=j.browser.isSafari?(0,L.combine)({play:e("play").pipe((0,L.once)()),playing:e("playing")}).pipe((0,L.mapTo)(void 0),(0,L.shareReplay)(1)):e("playing"),n=(0,L.fromEvent)(s,"volumechange").pipe((0,L.map)(()=>({muted:s.muted,volume:s.volume})),(0,L.shareReplay)(1)),o=(0,L.fromEvent)(s,"ratechange").pipe((0,L.map)(()=>s.playbackRate),(0,L.shareReplay)(1)),u=(0,L.fromEvent)(s,"error").pipe((0,L.filter)(()=>!!(s.error||s.played.length)),(0,L.map)(()=>{var Q;let V=s.error;return{id:V?`MediaError#${V.code}`:"HtmlVideoError",category:L.ErrorCategory.VIDEO_PIPELINE,message:V?V.message:"Error event from HTML video element",thrown:(Q=s.error)!=null?Q:void 0}}),(0,L.shareReplay)(1)),c=(0,L.fromEvent)(s,"timeupdate").pipe((0,L.map)(()=>s.currentTime),(0,L.shareReplay)(1)),l=["waiting","seeking","seeked","timeupdate"],d=new L.Subject,p=.3,h;t.add((0,L.merge)(...l.map(V=>(0,L.fromEvent)(s,V))).subscribe(V=>{let Q=s.currentTime;s.loop&&(0,L.isNonNullable)(h)&&(0,L.isNonNullable)(Q)&&h>=s.duration-p&&Q<=p&&d.next(h),h=Q}));let m=e("pause").pipe((0,L.filter)(()=>!s.error&&h!==s.duration),(0,L.shareReplay)(1)),b=(0,L.fromEvent)(s,"enterpictureinpicture").pipe((0,L.shareReplay)(1)),S=(0,L.fromEvent)(s,"leavepictureinpicture").pipe((0,L.shareReplay)(1)),v=new L.ValueSubject(Gg(s));t.add(b.subscribe(()=>v.next(!0))),t.add(S.subscribe(()=>v.next(!1)));let y=new L.ValueSubject(Xc(s)),x=(0,L.fromEvent)(s,"fullscreenchange").pipe((0,L.shareReplay)(1));t.add(x.pipe((0,L.map)(()=>Xc(s))).subscribe(y));let w=.1,M=1e3,_=(0,L.fromEvent)(s,"timeupdate").pipe((0,L.map)(V=>s.duration-s.currentTime<w),(0,L.filterChanged)(),(0,L.shareReplay)(1)),q=(0,L.merge)(_.pipe((0,L.filter)(V=>!s.loop&&V)),(0,L.fromEvent)(s,"ended")).pipe((0,L.throttle)(M),(0,L.mapTo)(void 0),(0,L.shareReplay)(1)),H=(0,L.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(V=>(0,L.fromEvent)(s,V)),_.pipe((0,L.map)(V=>({type:V?"ended":"unknown"})))).pipe((0,L.map)(V=>j.browser.isFirefox&&V.type==="ended"?s.readyState<2:s.readyState<3),(0,L.filterChanged)(),(0,L.shareReplay)(1));return{playing$:a,pause$:m,canplay$:e("canplay"),ended$:q,looped$:d,error$:u,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:c,durationChange$:(0,L.fromEvent)(s,"durationchange").pipe((0,L.map)(()=>s.duration),(0,L.shareReplay)(1)),isBuffering$:H,currentBuffer$:r,volumeState$:n,playbackRateState$:o,inPiP$:v,inFullscreen$:y,enterPip$:b,leavePip$:S,destroy:i}};var Kt=require("@vkontakte/videoplayer-shared/es2018"),vi=s=>{switch(s){case"mobile":return Kt.VideoQuality.Q_144P;case"lowest":return Kt.VideoQuality.Q_240P;case"low":return Kt.VideoQuality.Q_360P;case"sd":case"medium":return Kt.VideoQuality.Q_480P;case"hd":case"high":return Kt.VideoQuality.Q_720P;case"fullhd":case"full":return Kt.VideoQuality.Q_1080P;case"quadhd":case"quad":return Kt.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Kt.VideoQuality.Q_2160P}};var Ge=G(bt(),1),Zc=G(Xe(),1),Ji=G(mi(),1),D=require("@vkontakte/videoplayer-shared/es2018");var Jc=!1,Xt={},iv=s=>{Jc=s},rv=()=>{Xt={}},av=s=>{s(Xt)},Va=(s,e)=>{var t;Jc&&(Xt.meta=(t=Xt.meta)!=null?t:{},Xt.meta[s]=e)},ze=class{constructor(e){this.name=e}next(e){var i,r;if(!Jc)return;Xt.series=(i=Xt.series)!=null?i:{};let t=(r=Xt.series[this.name])!=null?r:[];t.push([Date.now(),e]),Xt.series[this.name]=t}};var $e=require("@vkontakte/videoplayer-shared/es2018");function sv(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function Br(s,e,t){return(0,$e.isNullable)(s)||(0,$e.isNonNullable)(s.min)&&(0,$e.isNonNullable)(s.max)&&(0,$e.isLower)(s.max,s.min)||(0,$e.isNonNullable)(s.min)&&e&&(0,$e.isHigher)(s.min,e)||(0,$e.isNonNullable)(s.max)&&t&&(0,$e.isLower)(s.max,t)}function nv({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return Br({max:s!=null&&s.max?(0,$e.videoHeightToQuality)(s.max):void 0,min:s!=null&&s.min?(0,$e.videoHeightToQuality)(s.min):void 0},e?(0,$e.videoHeightToQuality)(e):void 0,t?(0,$e.videoHeightToQuality)(t):void 0)}var dv=new ze("best_bitrate"),Xn=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var Vr=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),Si=class{constructor(){this.history={}}recordSelection(e){this.history[e.id]=(0,D.now)()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}},Jn='Assertion "ABR Tracks is empty array" failed',Kn=new WeakMap,ov=new WeakMap,uv=new WeakMap,_a=(s,e,t,i)=>{var u;let r=[...e].sort(Vr(1)),a=[...t].sort(Vr(1)),n=a.filter(c=>(0,D.isNonNullable)(c.bitrate)&&(0,D.isNonNullable)(s.bitrate)?s.bitrate/c.bitrate>i:!0),o=(u=(0,Ge.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Ge.default)(a,-1);return o&&(0,Zc.default)(n,o)?o:n.length?(0,Ge.default)(n,-1):(0,Ge.default)(a,0)},Oa=(s,e,t,i)=>{var u;let r=Kn.get(e);r||(r=[...e].sort(Vr(1)),Kn.set(e,r));let a=Kn.get(t);a||(a=[...t].sort(Vr(1)),Kn.set(t,a));let n=uv.get(s);n||(n=a.filter(c=>(0,D.isNonNullable)(c.bitrate)&&(0,D.isNonNullable)(s.bitrate)?s.bitrate/c.bitrate>i:!0),uv.set(s,n));let o=(u=(0,Ge.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,Ge.default)(a,-1);return o&&(0,Zc.default)(n,o)?o:n.length?(0,Ge.default)(n,-1):(0,Ge.default)(a,0)},cv=s=>"quality"in s,Zn=(s,e,t,i)=>{var n;let r=(0,D.isNonNullable)((n=i==null?void 0:i.last)==null?void 0:n.bitrate)&&(0,D.isNonNullable)(t==null?void 0:t.bitrate)&&i.last.bitrate<t.bitrate?s.trackCooldownIncreaseQuality:s.trackCooldownDecreaseQuality,a=t&&i&&i.history[t.id]&&(0,D.now)()-i.history[t.id]<=r&&(!i.last||t.id!==i.last.id);if(t!=null&&t.id&&i&&!a&&i.recordSelection(t),a&&(i!=null&&i.last)){let o=i.last;i==null||i.recordSwitch(o);let u=cv(o)?"video":"audio",c=cv(o)?o.quality:o.bitrate;return e({message:`
8
- [last ${u} selected] ${c}
9
- `}),o}return i==null||i.recordSwitch(t),t},AR=(s,e)=>Math.log(e)/Math.log(s),pv=({tuning:s,container:e,limits:t,panelSize:i})=>{let r=s.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(s.usePixelRatio&&j.display.pixelRatio){let a=j.display.pixelRatio;if(s.pixelRatioMultiplier)r*=s.pixelRatioMultiplier*(a-1)+1;else{let n=s.pixelRatioLogBase,[o=0,u=0,c=0]=s.pixelRatioLogCoefficients,l=AR(n,o*a+u)+c;Number.isFinite(l)&&(r*=l)}}return(0,D.isNonNullable)(t==null?void 0:t.min)&&(0,D.isHigherOrEqual)(t.min,s.highQualityLimit)&&(r*=2),{containerSizeLimit:s.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},lv=new WeakMap,Ut=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:c,visible:l,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:p,stallsPredictedThroughput:h,abrLogger:m,panelSize:b})=>{var ie,le,oe,A,$;(0,D.assertNotEmptyArray)(s,Jn);let{containerSizeFactor:S,containerSizeLimit:v}=pv({container:e,tuning:i,limits:r,panelSize:b}),y=i.considerPlaybackRate&&(0,D.isNonNullable)(o)?o:1,x=lv.get(s);x||(x=s.filter(k=>!(0,D.isInvariantQuality)(k.quality)).sort((k,R)=>(0,D.isHigher)(k.quality,R.quality)?-1:1),lv.set(s,x));let w=(ie=(0,Ge.default)(x,-1))==null?void 0:ie.quality,M=(le=(0,Ge.default)(x,0))==null?void 0:le.quality,_=Br(r,M,w),q=y*Xn(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),O={},H=null;for(let k of x){if(k.tvDisabled){O[k.quality]="TvDisabled";continue}let R=!0;if(v)if(k.size)R=k.size.width<=v.width&&k.size.height<=v.height;else{let st=v&&(0,D.videoSizeToQuality)(v);R=st?(0,D.isLowerOrEqual)(k.quality,st):!0}if(!R){O[k.quality]="FitsContainer";continue}let Z=h||t,K=(0,D.isNonNullable)(Z)&&isFinite(Z)&&(0,D.isNonNullable)(k.bitrate)?Z-a>=k.bitrate*q:!0,$t=(r==null?void 0:r.min)===k.quality;if(!K&&!$t){O[k.quality]="FitsThroughput";continue}if(i.lazyQualitySwitch&&(0,D.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,D.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,D.isHigher)(k.quality,u.quality)){O[k.quality]="Buffer";continue}if(!!d&&(0,D.isHigherOrEqual)(k.quality,d)&&!$t){O[k.quality]="DroppedFramesLimit";continue}if(!!p&&(0,D.isHigherOrEqual)(k.quality,p)&&!$t){O[k.quality]="StallsLimit";continue}let Fe=_||((0,D.isNullable)(r==null?void 0:r.max)||(0,D.isLowerOrEqual)(k.quality,r.max))&&((0,D.isNullable)(r==null?void 0:r.min)||(0,D.isHigherOrEqual)(k.quality,r.min)),Ue=(0,D.isNonNullable)(l)&&!l?(0,D.isLowerOrEqual)(k.quality,i.backgroundVideoQualityLimit):!0;if(!Fe||!Ue){O[k.quality]="FitsQualityLimits";continue}H||(H=k)}H&&H.bitrate&&dv.next(H.bitrate);let V=(oe=H!=null?H:(0,Ge.default)(x,-1))!=null?oe:s[0],Q=c==null?void 0:c.last,U=Zn(i,m,V,c);return(0,D.isNonNullable)(c)&&U.quality!==(Q==null?void 0:Q.quality)&&m({message:`
6
+ var e=require(`@oxc-project/runtime/helpers/defineProperty`),t=Object.create,n=Object.getPrototypeOf,r=Object.defineProperty,i=Object.getOwnPropertyNames,a=Object.getOwnPropertyDescriptor,o=Object.prototype.hasOwnProperty;function s(e){return this[e]}var c,l,u=(e,a,u)=>{var d=typeof e==`object`&&!!e;if(d){var f=a?c??=new WeakMap:l??=new WeakMap,p=f.get(e);if(p)return p}u=e==null?{}:t(n(e));let m=a||!e||!e.__esModule?r(u,`default`,{value:e,enumerable:!0}):u;for(let t of i(e))o.call(m,t)||r(m,t,{get:s.bind(e,t),enumerable:!0});return d&&f.set(e,m),m},d=e=>{var t=(f??=new WeakMap).get(e),n;if(t)return t;if(t=r({},`__esModule`,{value:!0}),e&&typeof e==`object`||typeof e==`function`)for(var c of i(e))o.call(t,c)||r(t,c,{get:s.bind(e,c),enumerable:!(n=a(e,c))||n.enumerable});return f.set(e,t),t},f,p=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),m=e=>e;function h(e,t){this[e]=m.bind(null,t)}var g=(e,t)=>{for(var n in t)r(e,n,{get:t[n],enumerable:!0,configurable:!0,set:h.bind(t,n)})},_=p((e,t)=>{var n=function(e){return e&&e.Math===Math&&e};t.exports=n(typeof globalThis==`object`&&globalThis)||n(typeof window==`object`&&window)||n(typeof self==`object`&&self)||n(typeof global==`object`&&global)||n(typeof e==`object`&&e)||function(){return this}()||Function(`return this`)()}),v=p((e,t)=>{t.exports=function(e){try{return!!e()}catch{return!0}}}),y=p((e,t)=>{t.exports=!v()(function(){var e=function(){}.bind();return typeof e!=`function`||e.hasOwnProperty(`prototype`)})}),b=p((e,t)=>{var n=y(),r=Function.prototype,i=r.apply,a=r.call;t.exports=typeof Reflect==`object`&&Reflect.apply||(n?a.bind(i):function(){return a.apply(i,arguments)})}),x=p((e,t)=>{var n=y(),r=Function.prototype,i=r.call,a=n&&r.bind.bind(i,i);t.exports=n?a:function(e){return function(){return i.apply(e,arguments)}}}),S=p((e,t)=>{var n=x(),r=n({}.toString),i=n(``.slice);t.exports=function(e){return i(r(e),8,-1)}}),C=p((e,t)=>{var n=S(),r=x();t.exports=function(e){if(n(e)===`Function`)return r(e)}}),w=p((e,t)=>{var n=typeof document==`object`&&document.all;t.exports=n===void 0&&n!==void 0?function(e){return typeof e==`function`||e===n}:function(e){return typeof e==`function`}}),T=p((e,t)=>{t.exports=!v()(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})}),E=p((e,t)=>{var n=y(),r=Function.prototype.call;t.exports=n?r.bind(r):function(){return r.apply(r,arguments)}}),D=p(e=>{var t={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor;e.f=n&&!t.call({1:2},1)?function(e){var t=n(this,e);return!!t&&t.enumerable}:t}),O=p((e,t)=>{t.exports=function(e,t){return{enumerable:!(e&1),configurable:!(e&2),writable:!(e&4),value:t}}}),ee=p((e,t)=>{var n=x(),r=v(),i=S(),a=Object,o=n(``.split);t.exports=r(function(){return!a(`z`).propertyIsEnumerable(0)})?function(e){return i(e)===`String`?o(e,``):a(e)}:a}),k=p((e,t)=>{t.exports=function(e){return e==null}}),te=p((e,t)=>{var n=k(),r=TypeError;t.exports=function(e){if(n(e))throw new r(`Can't call method on `+e);return e}}),ne=p((e,t)=>{var n=ee(),r=te();t.exports=function(e){return n(r(e))}}),re=p((e,t)=>{var n=w();t.exports=function(e){return typeof e==`object`?e!==null:n(e)}}),ie=p((e,t)=>{t.exports={}}),ae=p((e,t)=>{var n=ie(),r=_(),i=w(),a=function(e){return i(e)?e:void 0};t.exports=function(e,t){return arguments.length<2?a(n[e])||a(r[e]):n[e]&&n[e][t]||r[e]&&r[e][t]}}),oe=p((e,t)=>{t.exports=x()({}.isPrototypeOf)}),se=p((e,t)=>{var n=_().navigator,r=n&&n.userAgent;t.exports=r?String(r):``}),ce=p((e,t)=>{var n=_(),r=se(),i=n.process,a=n.Deno,o=i&&i.versions||a&&a.version,s=o&&o.v8,c,l;s&&(c=s.split(`.`),l=c[0]>0&&c[0]<4?1:+(c[0]+c[1])),!l&&r&&(c=r.match(/Edge\/(\d+)/),(!c||c[1]>=74)&&(c=r.match(/Chrome\/(\d+)/),c&&(l=+c[1]))),t.exports=l}),le=p((e,t)=>{var n=ce(),r=v(),i=_().String;t.exports=!!Object.getOwnPropertySymbols&&!r(function(){var e=Symbol(`symbol detection`);return!i(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41})}),ue=p((e,t)=>{t.exports=le()&&!Symbol.sham&&typeof Symbol.iterator==`symbol`}),de=p((e,t)=>{var n=ae(),r=w(),i=oe(),a=ue(),o=Object;t.exports=a?function(e){return typeof e==`symbol`}:function(e){var t=n(`Symbol`);return r(t)&&i(t.prototype,o(e))}}),fe=p((e,t)=>{var n=String;t.exports=function(e){try{return n(e)}catch{return`Object`}}}),pe=p((e,t)=>{var n=w(),r=fe(),i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not a function`)}}),me=p((e,t)=>{var n=pe(),r=k();t.exports=function(e,t){var i=e[t];return r(i)?void 0:n(i)}}),he=p((e,t)=>{var n=E(),r=w(),i=re(),a=TypeError;t.exports=function(e,t){var o,s;if(t===`string`&&r(o=e.toString)&&!i(s=n(o,e))||r(o=e.valueOf)&&!i(s=n(o,e))||t!==`string`&&r(o=e.toString)&&!i(s=n(o,e)))return s;throw new a(`Can't convert object to primitive value`)}}),ge=p((e,t)=>{t.exports=!0}),_e=p((e,t)=>{var n=_(),r=Object.defineProperty;t.exports=function(e,t){try{r(n,e,{value:t,configurable:!0,writable:!0})}catch{n[e]=t}return t}}),ve=p((e,t)=>{var n=ge(),r=_(),i=_e(),a=`__core-js_shared__`,o=t.exports=r[a]||i(a,{});(o.versions||=[]).push({version:`3.43.0`,mode:n?`pure`:`global`,copyright:`© 2014-2025 Denis Pushkarev (zloirock.ru)`,license:`https://github.com/zloirock/core-js/blob/v3.43.0/LICENSE`,source:`https://github.com/zloirock/core-js`})}),ye=p((e,t)=>{var n=ve();t.exports=function(e,t){return n[e]||(n[e]=t||{})}}),be=p((e,t)=>{var n=te(),r=Object;t.exports=function(e){return r(n(e))}}),xe=p((e,t)=>{var n=x(),r=be(),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(e,t){return i(r(e),t)}}),Se=p((e,t)=>{var n=x(),r=0,i=Math.random(),a=n(1.1.toString);t.exports=function(e){return`Symbol(`+(e===void 0?``:e)+`)_`+a(++r+i,36)}}),Ce=p((e,t)=>{var n=_(),r=ye(),i=xe(),a=Se(),o=le(),s=ue(),c=n.Symbol,l=r(`wks`),u=s?c.for||c:c&&c.withoutSetter||a;t.exports=function(e){return i(l,e)||(l[e]=o&&i(c,e)?c[e]:u(`Symbol.`+e)),l[e]}}),we=p((e,t)=>{var n=E(),r=re(),i=de(),a=me(),o=he(),s=Ce(),c=TypeError,l=s(`toPrimitive`);t.exports=function(e,t){if(!r(e)||i(e))return e;var s=a(e,l),u;if(s){if(t===void 0&&(t=`default`),u=n(s,e,t),!r(u)||i(u))return u;throw new c(`Can't convert object to primitive value`)}return t===void 0&&(t=`number`),o(e,t)}}),Te=p((e,t)=>{var n=we(),r=de();t.exports=function(e){var t=n(e,`string`);return r(t)?t:t+``}}),Ee=p((e,t)=>{var n=_(),r=re(),i=n.document,a=r(i)&&r(i.createElement);t.exports=function(e){return a?i.createElement(e):{}}}),De=p((e,t)=>{var n=T(),r=v(),i=Ee();t.exports=!n&&!r(function(){return Object.defineProperty(i(`div`),`a`,{get:function(){return 7}}).a!==7})}),Oe=p(e=>{var t=T(),n=E(),r=D(),i=O(),a=ne(),o=Te(),s=xe(),c=De(),l=Object.getOwnPropertyDescriptor;e.f=t?l:function(e,t){if(e=a(e),t=o(t),c)try{return l(e,t)}catch{}if(s(e,t))return i(!n(r.f,e,t),e[t])}}),ke=p((e,t)=>{var n=v(),r=w(),i=/#|\.prototype\./,a=function(e,t){var i=s[o(e)];return i===l?!0:i===c?!1:r(t)?n(t):!!t},o=a.normalize=function(e){return String(e).replace(i,`.`).toLowerCase()},s=a.data={},c=a.NATIVE=`N`,l=a.POLYFILL=`P`;t.exports=a}),Ae=p((e,t)=>{var n=C(),r=pe(),i=y(),a=n(n.bind);t.exports=function(e,t){return r(e),t===void 0?e:i?a(e,t):function(){return e.apply(t,arguments)}}}),je=p((e,t)=>{var n=T(),r=v();t.exports=n&&r(function(){return Object.defineProperty(function(){},`prototype`,{value:42,writable:!1}).prototype!==42})}),Me=p((e,t)=>{var n=re(),r=String,i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not an object`)}}),Ne=p(e=>{var t=T(),n=De(),r=je(),i=Me(),a=Te(),o=TypeError,s=Object.defineProperty,c=Object.getOwnPropertyDescriptor,l=`enumerable`,u=`configurable`,d=`writable`;e.f=t?r?function(e,t,n){if(i(e),t=a(t),i(n),typeof e==`function`&&t===`prototype`&&`value`in n&&d in n&&!n[d]){var r=c(e,t);r&&r[d]&&(e[t]=n.value,n={configurable:u in n?n[u]:r[u],enumerable:l in n?n[l]:r[l],writable:!1})}return s(e,t,n)}:s:function(e,t,r){if(i(e),t=a(t),i(r),n)try{return s(e,t,r)}catch{}if(`get`in r||`set`in r)throw new o(`Accessors not supported`);return`value`in r&&(e[t]=r.value),e}}),Pe=p((e,t)=>{var n=T(),r=Ne(),i=O();t.exports=n?function(e,t,n){return r.f(e,t,i(1,n))}:function(e,t,n){return e[t]=n,e}}),Fe=p((e,t)=>{var n=_(),r=b(),i=C(),a=w(),o=Oe().f,s=ke(),c=ie(),l=Ae(),u=Pe(),d=xe();ve();var f=function(e){var t=function(n,i,a){if(this instanceof t){switch(arguments.length){case 0:return new e;case 1:return new e(n);case 2:return new e(n,i)}return new e(n,i,a)}return r(e,this,arguments)};return t.prototype=e.prototype,t};t.exports=function(e,t){var r=e.target,p=e.global,m=e.stat,h=e.proto,g=p?n:m?n[r]:n[r]&&n[r].prototype,_=p?c:c[r]||u(c,r,{})[r],v=_.prototype,y,b,x,S,C,w,T,E,D;for(S in t)y=s(p?S:r+(m?`.`:`#`)+S,e.forced),b=!y&&g&&d(g,S),w=_[S],b&&(e.dontCallGetSet?(D=o(g,S),T=D&&D.value):T=g[S]),C=b&&T?T:t[S],!(!y&&!h&&typeof w==typeof C)&&(E=e.bind&&b?l(C,n):e.wrap&&b?f(C):h&&a(C)?i(C):C,(e.sham||C&&C.sham||w&&w.sham)&&u(E,`sham`,!0),u(_,S,E),h&&(x=r+`Prototype`,d(c,x)||u(c,x,{}),u(c[x],S,C),e.real&&v&&(y||!v[S])&&u(v,S,C)))}}),Ie=p((e,t)=>{var n=ye(),r=Se(),i=n(`keys`);t.exports=function(e){return i[e]||(i[e]=r(e))}}),Le=p((e,t)=>{t.exports=!v()(function(){function e(){}return e.prototype.constructor=null,Object.getPrototypeOf(new e)!==e.prototype})}),Re=p((e,t)=>{var n=xe(),r=w(),i=be(),a=Ie(),o=Le(),s=a(`IE_PROTO`),c=Object,l=c.prototype;t.exports=o?c.getPrototypeOf:function(e){var t=i(e);if(n(t,s))return t[s];var a=t.constructor;return r(a)&&t instanceof a?a.prototype:t instanceof c?l:null}}),ze=p((e,t)=>{var n=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(e){var t=+e;return(t>0?r:n)(t)}}),Be=p((e,t)=>{var n=ze();t.exports=function(e){var t=+e;return t!==t||t===0?0:n(t)}}),Ve=p((e,t)=>{var n=Be(),r=Math.max,i=Math.min;t.exports=function(e,t){var a=n(e);return a<0?r(a+t,0):i(a,t)}}),He=p((e,t)=>{var n=Be(),r=Math.min;t.exports=function(e){var t=n(e);return t>0?r(t,9007199254740991):0}}),Ue=p((e,t)=>{var n=He();t.exports=function(e){return n(e.length)}}),We=p((e,t)=>{var n=ne(),r=Ve(),i=Ue(),a=function(e){return function(t,a,o){var s=n(t),c=i(s);if(c===0)return!e&&-1;var l=r(o,c),u;if(e&&a!==a){for(;c>l;)if(u=s[l++],u!==u)return!0}else for(;c>l;l++)if((e||l in s)&&s[l]===a)return e||l||0;return!e&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}}),Ge=p((e,t)=>{t.exports={}}),Ke=p((e,t)=>{var n=x(),r=xe(),i=ne(),a=We().indexOf,o=Ge(),s=n([].push);t.exports=function(e,t){var n=i(e),c=0,l=[],u;for(u in n)!r(o,u)&&r(n,u)&&s(l,u);for(;t.length>c;)r(n,u=t[c++])&&(~a(l,u)||s(l,u));return l}}),qe=p((e,t)=>{t.exports=[`constructor`,`hasOwnProperty`,`isPrototypeOf`,`propertyIsEnumerable`,`toLocaleString`,`toString`,`valueOf`]}),Je=p((e,t)=>{var n=Ke(),r=qe();t.exports=Object.keys||function(e){return n(e,r)}}),Ye=p((e,t)=>{var n=T(),r=v(),i=x(),a=Re(),o=Je(),s=ne(),c=D().f,l=i(c),u=i([].push),d=n&&r(function(){var e=Object.create(null);return e[2]=2,!l(e,2)}),f=function(e){return function(t){for(var r=s(t),i=o(r),c=d&&a(r)===null,f=i.length,p=0,m=[],h;f>p;)h=i[p++],(!n||(c?h in r:l(r,h)))&&u(m,e?[h,r[h]]:r[h]);return m}};t.exports={entries:f(!0),values:f(!1)}}),Xe=p(()=>{var e=Fe(),t=Ye().values;e({target:`Object`,stat:!0},{values:function(e){return t(e)}})}),Ze=p((e,t)=>{Xe(),t.exports=ie().Object.values}),Qe=p((e,t)=>{t.exports=Ze()}),$e=p((e,t)=>{t.exports=Qe()}),et=p((e,t)=>{t.exports=function(){}}),tt=p(()=>{var e=Fe(),t=We().includes,n=v(),r=et();e({target:`Array`,proto:!0,forced:n(function(){return![,].includes()})},{includes:function(e){return t(this,e,arguments.length>1?arguments[1]:void 0)}}),r(`includes`)}),nt=p((e,t)=>{t.exports=ae()}),rt=p((e,t)=>{tt(),t.exports=nt()(`Array`,`includes`)}),it=p((e,t)=>{t.exports=rt()}),at=p((e,t)=>{t.exports=it()}),ot=p(()=>{var e=Fe(),t=Ye().entries;e({target:`Object`,stat:!0},{entries:function(e){return t(e)}})}),st=p((e,t)=>{ot(),t.exports=ie().Object.entries}),ct=p((e,t)=>{t.exports=st()}),lt=p((e,t)=>{t.exports=ct()}),ut=p((e,t)=>{t.exports={}}),dt=p((e,t)=>{var n=_(),r=w(),i=n.WeakMap;t.exports=r(i)&&/native code/.test(String(i))}),ft=p((e,t)=>{var n=dt(),r=_(),i=re(),a=Pe(),o=xe(),s=ve(),c=Ie(),l=Ge(),u=`Object already initialized`,d=r.TypeError,f=r.WeakMap,p,m,h,g=function(e){return h(e)?m(e):p(e,{})},v=function(e){return function(t){var n;if(!i(t)||(n=m(t)).type!==e)throw new d(`Incompatible receiver, `+e+` required`);return n}};n||s.state?(y=s.state||=new f,y.get=y.get,y.has=y.has,y.set=y.set,p=function(e,t){if(y.has(e))throw new d(u);return t.facade=e,y.set(e,t),t},m=function(e){return y.get(e)||{}},h=function(e){return y.has(e)}):(b=c(`state`),l[b]=!0,p=function(e,t){if(o(e,b))throw new d(u);return t.facade=e,a(e,b,t),t},m=function(e){return o(e,b)?e[b]:{}},h=function(e){return o(e,b)});var y,b;t.exports={set:p,get:m,has:h,enforce:g,getterFor:v}}),pt=p((e,t)=>{var n=T(),r=xe(),i=Function.prototype,a=n&&Object.getOwnPropertyDescriptor,o=r(i,`name`);t.exports={EXISTS:o,PROPER:o&&function(){}.name===`something`,CONFIGURABLE:o&&(!n||n&&a(i,`name`).configurable)}}),mt=p(e=>{var t=T(),n=je(),r=Ne(),i=Me(),a=ne(),o=Je();e.f=t&&!n?Object.defineProperties:function(e,t){i(e);for(var n=a(t),s=o(t),c=s.length,l=0,u;c>l;)r.f(e,u=s[l++],n[u]);return e}}),ht=p((e,t)=>{t.exports=ae()(`document`,`documentElement`)}),gt=p((e,t)=>{var n=Me(),r=mt(),i=qe(),a=Ge(),o=ht(),s=Ee(),c=Ie(),l=`>`,u=`<`,d=`prototype`,f=`script`,p=c(`IE_PROTO`),m=function(){},h=function(e){return u+f+l+e+u+`/`+f+l},g=function(e){e.write(h(``)),e.close();var t=e.parentWindow.Object;return e=null,t},_=function(){var e=s(`iframe`),t=`java`+f+`:`,n;return e.style.display=`none`,o.appendChild(e),e.src=String(t),n=e.contentWindow.document,n.open(),n.write(h(`document.F=Object`)),n.close(),n.F},v,y=function(){try{v=new ActiveXObject(`htmlfile`)}catch{}y=typeof document<`u`?document.domain&&v?g(v):_():g(v);for(var e=i.length;e--;)delete y[d][i[e]];return y()};a[p]=!0,t.exports=Object.create||function(e,t){var i;return e===null?i=y():(m[d]=n(e),i=new m,m[d]=null,i[p]=e),t===void 0?i:r.f(i,t)}}),_t=p((e,t)=>{var n=Pe();t.exports=function(e,t,r,i){return i&&i.enumerable?e[t]=r:n(e,t,r),e}}),vt=p((e,t)=>{var n=v(),r=w(),i=re(),a=gt(),o=Re(),s=_t(),c=Ce(),l=ge(),u=c(`iterator`),d=!1,f,p,m;[].keys&&(m=[].keys(),`next`in m?(p=o(o(m)),p!==Object.prototype&&(f=p)):d=!0),!i(f)||n(function(){var e={};return f[u].call(e)!==e})?f={}:l&&(f=a(f)),r(f[u])||s(f,u,function(){return this}),t.exports={IteratorPrototype:f,BUGGY_SAFARI_ITERATORS:d}}),yt=p((e,t)=>{var n=Ce()(`toStringTag`),r={};r[n]=`z`,t.exports=String(r)===`[object z]`}),bt=p((e,t)=>{var n=yt(),r=w(),i=S(),a=Ce()(`toStringTag`),o=Object,s=i(function(){return arguments}())===`Arguments`,c=function(e,t){try{return e[t]}catch{}};t.exports=n?i:function(e){var t,n,l;return e===void 0?`Undefined`:e===null?`Null`:typeof(n=c(t=o(e),a))==`string`?n:s?i(t):(l=i(t))===`Object`&&r(t.callee)?`Arguments`:l}}),xt=p((e,t)=>{var n=yt(),r=bt();t.exports=n?{}.toString:function(){return`[object `+r(this)+`]`}}),St=p((e,t)=>{var n=yt(),r=Ne().f,i=Pe(),a=xe(),o=xt(),s=Ce()(`toStringTag`);t.exports=function(e,t,c,l){var u=c?e:e&&e.prototype;u&&(a(u,s)||r(u,s,{configurable:!0,value:t}),l&&!n&&i(u,`toString`,o))}}),Ct=p((e,t)=>{var n=vt().IteratorPrototype,r=gt(),i=O(),a=St(),o=ut(),s=function(){return this};t.exports=function(e,t,c,l){var u=t+` Iterator`;return e.prototype=r(n,{next:i(+!l,c)}),a(e,u,!1,!0),o[u]=s,e}}),wt=p((e,t)=>{var n=x(),r=pe();t.exports=function(e,t,i){try{return n(r(Object.getOwnPropertyDescriptor(e,t)[i]))}catch{}}}),Tt=p((e,t)=>{var n=re();t.exports=function(e){return n(e)||e===null}}),Et=p((e,t)=>{var n=Tt(),r=String,i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(`Can't set `+r(e)+` as a prototype`)}}),Dt=p((e,t)=>{var n=wt(),r=re(),i=te(),a=Et();t.exports=Object.setPrototypeOf||(`__proto__`in{}?function(){var e=!1,t={},o;try{o=n(Object.prototype,`__proto__`,`set`),o(t,[]),e=t instanceof Array}catch{}return function(t,n){return i(t),a(n),r(t)&&(e?o(t,n):t.__proto__=n),t}}():void 0)}),Ot=p((e,t)=>{var n=Fe(),r=E(),i=ge(),a=pt(),o=w(),s=Ct(),c=Re(),l=Dt(),u=St(),d=Pe(),f=_t(),p=Ce(),m=ut(),h=vt(),g=a.PROPER,_=a.CONFIGURABLE,v=h.IteratorPrototype,y=h.BUGGY_SAFARI_ITERATORS,b=p(`iterator`),x=`keys`,S=`values`,C=`entries`,T=function(){return this};t.exports=function(e,t,a,p,h,w,E){s(a,t,p);var D=function(e){if(e===h&&ne)return ne;if(!y&&e&&e in k)return k[e];switch(e){case x:return function(){return new a(this,e)};case S:return function(){return new a(this,e)};case C:return function(){return new a(this,e)}}return function(){return new a(this)}},O=t+` Iterator`,ee=!1,k=e.prototype,te=k[b]||k[`@@iterator`]||h&&k[h],ne=!y&&te||D(h),re=t===`Array`&&k.entries||te,ie,ae,oe;if(re&&(ie=c(re.call(new e)),ie!==Object.prototype&&ie.next&&(!i&&c(ie)!==v&&(l?l(ie,v):o(ie[b])||f(ie,b,T)),u(ie,O,!0,!0),i&&(m[O]=T))),g&&h===S&&te&&te.name!==S&&(!i&&_?d(k,`name`,S):(ee=!0,ne=function(){return r(te,this)})),h)if(ae={values:D(S),keys:w?ne:D(x),entries:D(C)},E)for(oe in ae)(y||ee||!(oe in k))&&f(k,oe,ae[oe]);else n({target:t,proto:!0,forced:y||ee},ae);return(!i||E)&&k[b]!==ne&&f(k,b,ne,{name:h}),m[t]=ne,ae}}),kt=p((e,t)=>{t.exports=function(e,t){return{value:e,done:t}}}),At=p((e,t)=>{var n=ne(),r=et(),i=ut(),a=ft(),o=Ne().f,s=Ot(),c=kt(),l=ge(),u=T(),d=`Array Iterator`,f=a.set,p=a.getterFor(d);t.exports=s(Array,`Array`,function(e,t){f(this,{type:d,target:n(e),index:0,kind:t})},function(){var e=p(this),t=e.target,n=e.index++;if(!t||n>=t.length)return e.target=null,c(void 0,!0);switch(e.kind){case`keys`:return c(n,!1);case`values`:return c(t[n],!1)}return c([n,t[n]],!1)},`values`);var m=i.Arguments=i.Array;if(r(`keys`),r(`values`),r(`entries`),!l&&u&&m.name!==`values`)try{o(m,`name`,{value:`values`})}catch{}}),jt=p((e,t)=>{var n=Ce(),r=ut(),i=n(`iterator`),a=Array.prototype;t.exports=function(e){return e!==void 0&&(r.Array===e||a[i]===e)}}),Mt=p((e,t)=>{var n=bt(),r=me(),i=k(),a=ut(),o=Ce()(`iterator`);t.exports=function(e){if(!i(e))return r(e,o)||r(e,`@@iterator`)||a[n(e)]}}),Nt=p((e,t)=>{var n=E(),r=pe(),i=Me(),a=fe(),o=Mt(),s=TypeError;t.exports=function(e,t){var c=arguments.length<2?o(e):t;if(r(c))return i(n(c,e));throw new s(a(e)+` is not iterable`)}}),Pt=p((e,t)=>{var n=E(),r=Me(),i=me();t.exports=function(e,t,a){var o,s;r(e);try{if(o=i(e,`return`),!o){if(t===`throw`)throw a;return a}o=n(o,e)}catch(e){s=!0,o=e}if(t===`throw`)throw a;if(s)throw o;return r(o),a}}),Ft=p((e,t)=>{var n=Ae(),r=E(),i=Me(),a=fe(),o=jt(),s=Ue(),c=oe(),l=Nt(),u=Mt(),d=Pt(),f=TypeError,p=function(e,t){this.stopped=e,this.result=t},m=p.prototype;t.exports=function(e,t,h){var g=h&&h.that,_=!!(h&&h.AS_ENTRIES),v=!!(h&&h.IS_RECORD),y=!!(h&&h.IS_ITERATOR),b=!!(h&&h.INTERRUPTED),x=n(t,g),S,C,w,T,E,D,O,ee=function(e){return S&&d(S,`normal`),new p(!0,e)},k=function(e){return _?(i(e),b?x(e[0],e[1],ee):x(e[0],e[1])):b?x(e,ee):x(e)};if(v)S=e.iterator;else if(y)S=e;else{if(C=u(e),!C)throw new f(a(e)+` is not iterable`);if(o(C)){for(w=0,T=s(e);T>w;w++)if(E=k(e[w]),E&&c(m,E))return E;return new p(!1)}S=l(e,C)}for(D=v?e.next:S.next;!(O=r(D,S)).done;){try{E=k(O.value)}catch(e){d(S,`throw`,e)}if(typeof E==`object`&&E&&c(m,E))return E}return new p(!1)}}),It=p((e,t)=>{var n=T(),r=Ne(),i=O();t.exports=function(e,t,a){n?r.f(e,t,i(0,a)):e[t]=a}}),Lt=p(()=>{var e=Fe(),t=Ft(),n=It();e({target:`Object`,stat:!0},{fromEntries:function(e){var r={};return t(e,function(e,t){n(r,e,t)},{AS_ENTRIES:!0}),r}})}),Rt=p((e,t)=>{At(),Lt(),t.exports=ie().Object.fromEntries}),zt=p((e,t)=>{t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}}),Bt=p(()=>{At();var e=zt(),t=_(),n=St(),r=ut();for(i in e)n(t[i],i),r[i]=r.Array;var i}),Vt=p((e,t)=>{var n=Rt();Bt(),t.exports=n}),Ht=p((e,t)=>{t.exports=Vt()}),Ut=p((e,t)=>{var n=_(),r=se(),i=S(),a=function(e){return r.slice(0,e.length)===e};t.exports=function(){return a(`Bun/`)?`BUN`:a(`Cloudflare-Workers`)?`CLOUDFLARE`:a(`Deno/`)?`DENO`:a(`Node.js/`)?`NODE`:n.Bun&&typeof Bun.version==`string`?`BUN`:n.Deno&&typeof Deno.version==`object`?`DENO`:i(n.process)===`process`?`NODE`:n.window&&n.document?`BROWSER`:`REST`}()}),Wt=p((e,t)=>{t.exports=Ut()===`NODE`}),Gt=p((e,t)=>{var n=Ne();t.exports=function(e,t,r){return n.f(e,t,r)}}),Kt=p((e,t)=>{var n=ae(),r=Gt(),i=Ce(),a=T(),o=i(`species`);t.exports=function(e){var t=n(e);a&&t&&!t[o]&&r(t,o,{configurable:!0,get:function(){return this}})}}),qt=p((e,t)=>{var n=oe(),r=TypeError;t.exports=function(e,t){if(n(t,e))return e;throw new r(`Incorrect invocation`)}}),Jt=p((e,t)=>{var n=x(),r=w(),i=ve(),a=n(Function.toString);r(i.inspectSource)||(i.inspectSource=function(e){return a(e)}),t.exports=i.inspectSource}),Yt=p((e,t)=>{var n=x(),r=v(),i=w(),a=bt(),o=ae(),s=Jt(),c=function(){},l=o(`Reflect`,`construct`),u=/^\s*(?:class|function)\b/,d=n(u.exec),f=!u.test(c),p=function(e){if(!i(e))return!1;try{return l(c,[],e),!0}catch{return!1}},m=function(e){if(!i(e))return!1;switch(a(e)){case`AsyncFunction`:case`GeneratorFunction`:case`AsyncGeneratorFunction`:return!1}try{return f||!!d(u,s(e))}catch{return!0}};m.sham=!0,t.exports=!l||r(function(){var e;return p(p.call)||!p(Object)||!p(function(){e=!0})||e})?m:p}),Xt=p((e,t)=>{var n=Yt(),r=fe(),i=TypeError;t.exports=function(e){if(n(e))return e;throw new i(r(e)+` is not a constructor`)}}),Zt=p((e,t)=>{var n=Me(),r=Xt(),i=k(),a=Ce()(`species`);t.exports=function(e,t){var o=n(e).constructor,s;return o===void 0||i(s=n(o)[a])?t:r(s)}}),Qt=p((e,t)=>{t.exports=x()([].slice)}),$t=p((e,t)=>{var n=TypeError;t.exports=function(e,t){if(e<t)throw new n(`Not enough arguments`);return e}}),en=p((e,t)=>{var n=se();t.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(n)}),tn=p((e,t)=>{var n=_(),r=b(),i=Ae(),a=w(),o=xe(),s=v(),c=ht(),l=Qt(),u=Ee(),d=$t(),f=en(),p=Wt(),m=n.setImmediate,h=n.clearImmediate,g=n.process,y=n.Dispatch,x=n.Function,S=n.MessageChannel,C=n.String,T=0,E={},D=`onreadystatechange`,O,ee,k,te;s(function(){O=n.location});var ne=function(e){if(o(E,e)){var t=E[e];delete E[e],t()}},re=function(e){return function(){ne(e)}},ie=function(e){ne(e.data)},ae=function(e){n.postMessage(C(e),O.protocol+`//`+O.host)};(!m||!h)&&(m=function(e){d(arguments.length,1);var t=a(e)?e:x(e),n=l(arguments,1);return E[++T]=function(){r(t,void 0,n)},ee(T),T},h=function(e){delete E[e]},p?ee=function(e){g.nextTick(re(e))}:y&&y.now?ee=function(e){y.now(re(e))}:S&&!f?(k=new S,te=k.port2,k.port1.onmessage=ie,ee=i(te.postMessage,te)):n.addEventListener&&a(n.postMessage)&&!n.importScripts&&O&&O.protocol!==`file:`&&!s(ae)?(ee=ae,n.addEventListener(`message`,ie,!1)):ee=D in u(`script`)?function(e){c.appendChild(u(`script`))[D]=function(){c.removeChild(this),ne(e)}}:function(e){setTimeout(re(e),0)}),t.exports={set:m,clear:h}}),nn=p((e,t)=>{var n=_(),r=T(),i=Object.getOwnPropertyDescriptor;t.exports=function(e){if(!r)return n[e];var t=i(n,e);return t&&t.value}}),rn=p((e,t)=>{var n=function(){this.head=null,this.tail=null};n.prototype={add:function(e){var t={item:e,next:null},n=this.tail;n?n.next=t:this.head=t,this.tail=t},get:function(){var e=this.head;if(e)return(this.head=e.next)===null&&(this.tail=null),e.item}},t.exports=n}),an=p((e,t)=>{var n=se();t.exports=/ipad|iphone|ipod/i.test(n)&&typeof Pebble<`u`}),on=p((e,t)=>{var n=se();t.exports=/web0s(?!.*chrome)/i.test(n)}),sn=p((e,t)=>{var n=_(),r=nn(),i=Ae(),a=tn().set,o=rn(),s=en(),c=an(),l=on(),u=Wt(),d=n.MutationObserver||n.WebKitMutationObserver,f=n.document,p=n.process,m=n.Promise,h=r(`queueMicrotask`),g,v,y,b,x;h||=(S=new o,C=function(){var e,t;for(u&&(e=p.domain)&&e.exit();t=S.get();)try{t()}catch(e){throw S.head&&g(),e}e&&e.enter()},!s&&!u&&!l&&d&&f?(v=!0,y=f.createTextNode(``),new d(C).observe(y,{characterData:!0}),g=function(){y.data=v=!v}):!c&&m&&m.resolve?(b=m.resolve(void 0),b.constructor=m,x=i(b.then,b),g=function(){x(C)}):u?g=function(){p.nextTick(C)}:(a=i(a,n),g=function(){a(C)}),function(e){S.head||g(),S.add(e)});var S,C;t.exports=h}),cn=p((e,t)=>{t.exports=function(e,t){try{arguments.length===1?console.error(e):console.error(e,t)}catch{}}}),ln=p((e,t)=>{t.exports=function(e){try{return{error:!1,value:e()}}catch(e){return{error:!0,value:e}}}}),un=p((e,t)=>{t.exports=_().Promise}),dn=p((e,t)=>{var n=_(),r=un(),i=w(),a=ke(),o=Jt(),s=Ce(),c=Ut(),l=ge(),u=ce(),d=r&&r.prototype,f=s(`species`),p=!1,m=i(n.PromiseRejectionEvent);t.exports={CONSTRUCTOR:a(`Promise`,function(){var e=o(r),t=e!==String(r);if(!t&&u===66||l&&!(d.catch&&d.finally))return!0;if(!u||u<51||!/native code/.test(e)){var n=new r(function(e){e(1)}),i=function(e){e(function(){},function(){})},a=n.constructor={};if(a[f]=i,p=n.then(function(){})instanceof i,!p)return!0}return!t&&(c===`BROWSER`||c===`DENO`)&&!m}),REJECTION_EVENT:m,SUBCLASSING:p}}),fn=p((e,t)=>{var n=pe(),r=TypeError,i=function(e){var t,i;this.promise=new e(function(e,n){if(t!==void 0||i!==void 0)throw new r(`Bad Promise constructor`);t=e,i=n}),this.resolve=n(t),this.reject=n(i)};t.exports.f=function(e){return new i(e)}}),pn=p(()=>{var e=Fe(),t=ge(),n=Wt(),r=_(),i=ie(),a=E(),o=_t(),s=Dt(),c=St(),l=Kt(),u=pe(),d=w(),f=re(),p=qt(),m=Zt(),h=tn().set,g=sn(),v=cn(),y=ln(),b=rn(),x=ft(),S=un(),C=dn(),T=fn(),D=`Promise`,O=C.CONSTRUCTOR,ee=C.REJECTION_EVENT,k=C.SUBCLASSING,te=x.getterFor(D),ne=x.set,ae=S&&S.prototype,oe=S,se=ae,ce=r.TypeError,le=r.document,ue=r.process,de=T.f,fe=de,me=!!(le&&le.createEvent&&r.dispatchEvent),he=`unhandledrejection`,_e=`rejectionhandled`,ve=0,ye=1,be=2,xe=1,Se=2,Ce,we,Te,Ee,De=function(e){var t;return f(e)&&d(t=e.then)?t:!1},Oe=function(e,t){var n=t.value,r=t.state===ye,i=r?e.ok:e.fail,o=e.resolve,s=e.reject,c=e.domain,l,u,d;try{i?(r||(t.rejection===Se&&Ne(t),t.rejection=xe),i===!0?l=n:(c&&c.enter(),l=i(n),c&&(c.exit(),d=!0)),l===e.promise?s(new ce(`Promise-chain cycle`)):(u=De(l))?a(u,l,o,s):o(l)):s(n)}catch(e){c&&!d&&c.exit(),s(e)}},ke=function(e,t){e.notified||(e.notified=!0,g(function(){for(var n=e.reactions,r;r=n.get();)Oe(r,e);e.notified=!1,t&&!e.rejection&&je(e)}))},Ae=function(e,t,n){var i,a;me?(i=le.createEvent(`Event`),i.promise=t,i.reason=n,i.initEvent(e,!1,!0),r.dispatchEvent(i)):i={promise:t,reason:n},!ee&&(a=r[`on`+e])?a(i):e===he&&v(`Unhandled promise rejection`,n)},je=function(e){a(h,r,function(){var t=e.facade,r=e.value,i=Me(e),a;if(i&&(a=y(function(){n?ue.emit(`unhandledRejection`,r,t):Ae(he,t,r)}),e.rejection=n||Me(e)?Se:xe,a.error))throw a.value})},Me=function(e){return e.rejection!==xe&&!e.parent},Ne=function(e){a(h,r,function(){var t=e.facade;n?ue.emit(`rejectionHandled`,t):Ae(_e,t,e.value)})},Pe=function(e,t,n){return function(r){e(t,r,n)}},Ie=function(e,t,n){e.done||(e.done=!0,n&&(e=n),e.value=t,e.state=be,ke(e,!0))},Le=function(e,t,n){if(!e.done){e.done=!0,n&&(e=n);try{if(e.facade===t)throw new ce(`Promise can't be resolved itself`);var r=De(t);r?g(function(){var n={done:!1};try{a(r,t,Pe(Le,n,e),Pe(Ie,n,e))}catch(t){Ie(n,t,e)}}):(e.value=t,e.state=ye,ke(e,!1))}catch(t){Ie({done:!1},t,e)}}};if(O&&(oe=function(e){p(this,se),u(e),a(Ce,this);var t=te(this);try{e(Pe(Le,t),Pe(Ie,t))}catch(e){Ie(t,e)}},se=oe.prototype,Ce=function(e){ne(this,{type:D,done:!1,notified:!1,parent:!1,reactions:new b,rejection:!1,state:ve,value:null})},Ce.prototype=o(se,`then`,function(e,t){var r=te(this),i=de(m(this,oe));return r.parent=!0,i.ok=d(e)?e:!0,i.fail=d(t)&&t,i.domain=n?ue.domain:void 0,r.state===ve?r.reactions.add(i):g(function(){Oe(i,r)}),i.promise}),we=function(){var e=new Ce,t=te(e);this.promise=e,this.resolve=Pe(Le,t),this.reject=Pe(Ie,t)},T.f=de=function(e){return e===oe||e===Te?new we(e):fe(e)},!t&&d(S)&&ae!==Object.prototype)){Ee=ae.then,k||o(ae,`then`,function(e,t){var n=this;return new oe(function(e,t){a(Ee,n,e,t)}).then(e,t)},{unsafe:!0});try{delete ae.constructor}catch{}s&&s(ae,se)}e({global:!0,constructor:!0,wrap:!0,forced:O},{Promise:oe}),Te=i.Promise,c(oe,D,!1,!0),l(D)}),mn=p((e,t)=>{var n=Ce()(`iterator`),r=!1;try{i=0,a={next:function(){return{done:!!i++}},return:function(){r=!0}},a[n]=function(){return this},Array.from(a,function(){throw 2})}catch{}var i,a;t.exports=function(e,t){try{if(!t&&!r)return!1}catch{return!1}var i=!1;try{var a={};a[n]=function(){return{next:function(){return{done:i=!0}}}},e(a)}catch{}return i}}),hn=p((e,t)=>{var n=un(),r=mn();t.exports=dn().CONSTRUCTOR||!r(function(e){n.all(e).then(void 0,function(){})})}),gn=p(()=>{var e=Fe(),t=E(),n=pe(),r=fn(),i=ln(),a=Ft();e({target:`Promise`,stat:!0,forced:hn()},{all:function(e){var o=this,s=r.f(o),c=s.resolve,l=s.reject,u=i(function(){var r=n(o.resolve),i=[],s=0,u=1;a(e,function(e){var n=s++,a=!1;u++,t(r,o,e).then(function(e){a||(a=!0,i[n]=e,--u||c(i))},l)}),--u||c(i)});return u.error&&l(u.value),s.promise}})}),_n=p(()=>{var e=Fe(),t=ge(),n=dn().CONSTRUCTOR,r=un(),i=ae(),a=w(),o=_t(),s=r&&r.prototype;e({target:`Promise`,proto:!0,forced:n,real:!0},{catch:function(e){return this.then(void 0,e)}}),!t&&a(r)&&(c=i(`Promise`).prototype.catch,s.catch!==c&&o(s,`catch`,c,{unsafe:!0}));var c}),vn=p(()=>{var e=Fe(),t=E(),n=pe(),r=fn(),i=ln(),a=Ft();e({target:`Promise`,stat:!0,forced:hn()},{race:function(e){var o=this,s=r.f(o),c=s.reject,l=i(function(){var r=n(o.resolve);a(e,function(e){t(r,o,e).then(s.resolve,c)})});return l.error&&c(l.value),s.promise}})}),yn=p(()=>{var e=Fe(),t=fn(),n=dn().CONSTRUCTOR;e({target:`Promise`,stat:!0,forced:n},{reject:function(e){var n=t.f(this),r=n.reject;return r(e),n.promise}})}),bn=p((e,t)=>{var n=Me(),r=re(),i=fn();t.exports=function(e,t){if(n(e),r(t)&&t.constructor===e)return t;var a=i.f(e),o=a.resolve;return o(t),a.promise}}),xn=p(()=>{var e=Fe(),t=ae(),n=ge(),r=un(),i=dn().CONSTRUCTOR,a=bn(),o=t(`Promise`),s=n&&!i;e({target:`Promise`,stat:!0,forced:n||i},{resolve:function(e){return a(s&&this===o?r:this,e)}})}),Sn=p(()=>{pn(),gn(),_n(),vn(),yn(),xn()}),Cn=p(()=>{var e=Fe(),t=ge(),n=un(),r=v(),i=ae(),a=w(),o=Zt(),s=bn(),c=_t(),l=n&&n.prototype;e({target:`Promise`,proto:!0,real:!0,forced:!!n&&r(function(){l.finally.call({then:function(){}},function(){})})},{finally:function(e){var t=o(this,i(`Promise`)),n=a(e);return this.then(n?function(n){return s(t,e()).then(function(){return n})}:e,n?function(n){return s(t,e()).then(function(){throw n})}:e)}}),!t&&a(n)&&(u=i(`Promise`).prototype.finally,l.finally!==u&&c(l,`finally`,u,{unsafe:!0}));var u}),wn=p((e,t)=>{Sn(),Cn(),t.exports=nt()(`Promise`,`finally`)}),Tn=p((e,t)=>{t.exports=wn()}),En=p((e,t)=>{t.exports=Tn()}),Dn=p(()=>{var e=Fe(),t=be(),n=Ue(),r=Be(),i=et();e({target:`Array`,proto:!0},{at:function(e){var i=t(this),a=n(i),o=r(e),s=o>=0?o:a+o;return s<0||s>=a?void 0:i[s]}}),i(`at`)}),On=p((e,t)=>{Dn(),t.exports=nt()(`Array`,`at`)}),kn=p((e,t)=>{t.exports=On()}),An=p((e,t)=>{t.exports=kn()}),jn=p((e,t)=>{var n=bt(),r=String;t.exports=function(e){if(n(e)===`Symbol`)throw TypeError(`Cannot convert a Symbol value to a string`);return r(e)}}),Mn=p(()=>{var e=Fe(),t=x(),n=te(),r=Be(),i=jn(),a=v(),o=t(``.charAt);e({target:`String`,proto:!0,forced:a(function(){return`𠮷`.at(-2)!==`\ud842`})},{at:function(e){var t=i(n(this)),a=t.length,s=r(e),c=s>=0?s:a+s;return c<0||c>=a?void 0:o(t,c)}})}),Nn=p((e,t)=>{Mn(),t.exports=nt()(`String`,`at`)}),Pn=p((e,t)=>{t.exports=Nn()}),Fn=p((e,t)=>{t.exports=Pn()}),In=p((e,t)=>{var n=S();t.exports=Array.isArray||function(e){return n(e)===`Array`}}),Ln=p((e,t)=>{var n=TypeError,r=9007199254740991;t.exports=function(e){if(e>r)throw n(`Maximum allowed index exceeded`);return e}}),Rn=p((e,t)=>{var n=In(),r=Ue(),i=Ln(),a=Ae(),o=function(e,t,s,c,l,u,d,f){for(var p=l,m=0,h=d?a(d,f):!1,g,_;m<c;)m in s&&(g=h?h(s[m],m,t):s[m],u>0&&n(g)?(_=r(g),p=o(e,t,g,_,p,u-1)-1):(i(p+1),e[p]=g),p++),m++;return p};t.exports=o}),zn=p((e,t)=>{var n=In(),r=Yt(),i=re(),a=Ce()(`species`),o=Array;t.exports=function(e){var t;return n(e)&&(t=e.constructor,r(t)&&(t===o||n(t.prototype))?t=void 0:i(t)&&(t=t[a],t===null&&(t=void 0))),t===void 0?o:t}}),Bn=p((e,t)=>{var n=zn();t.exports=function(e,t){return new(n(e))(t===0?0:t)}}),Vn=p(()=>{var e=Fe(),t=Rn(),n=pe(),r=be(),i=Ue(),a=Bn();e({target:`Array`,proto:!0},{flatMap:function(e){var o=r(this),s=i(o),c;return n(e),c=a(o,0),c.length=t(c,o,o,s,0,1,e,arguments.length>1?arguments[1]:void 0),c}})}),Hn=p(()=>{et()(`flatMap`)}),Un=p((e,t)=>{Vn(),Hn(),t.exports=nt()(`Array`,`flatMap`)}),Wn=p((e,t)=>{t.exports=Un()}),Gn=p((e,t)=>{t.exports=Wn()}),Kn=p((e,t)=>{t.exports=`
7
+ \v\f\r \xA0               \u2028\u2029`}),qn=p((e,t)=>{var n=x(),r=te(),i=jn(),a=Kn(),o=n(``.replace),s=RegExp(`^[`+a+`]+`),c=RegExp(`(^|[^`+a+`])[`+a+`]+$`),l=function(e){return function(t){var n=i(r(t));return e&1&&(n=o(n,s,``)),e&2&&(n=o(n,c,`$1`)),n}};t.exports={start:l(1),end:l(2),trim:l(3)}}),Jn=p((e,t)=>{var n=pt().PROPER,r=v(),i=Kn(),a=`​…᠎`;t.exports=function(e){return r(function(){return!!i[e]()||a[e]()!==a||n&&i[e].name!==e})}}),Yn=p((e,t)=>{var n=qn().start;t.exports=Jn()(`trimStart`)?function(){return n(this)}:``.trimStart}),Xn=p(()=>{var e=Fe(),t=Yn();e({target:`String`,proto:!0,name:`trimStart`,forced:``.trimLeft!==t},{trimLeft:t})}),Zn=p(()=>{Xn();var e=Fe(),t=Yn();e({target:`String`,proto:!0,name:`trimStart`,forced:``.trimStart!==t},{trimStart:t})}),Qn=p((e,t)=>{Zn(),t.exports=nt()(`String`,`trimLeft`)}),$n=p((e,t)=>{t.exports=Qn()}),er=p((e,t)=>{t.exports=$n()}),tr=p((e,t)=>{var n=re(),r=S(),i=Ce()(`match`);t.exports=function(e){var t;return n(e)&&((t=e[i])===void 0?r(e)===`RegExp`:!!t)}}),nr=p((e,t)=>{var n=_(),r=v(),i=n.RegExp;t.exports={correct:!r(function(){var e=!0;try{i(`.`,`d`)}catch{e=!1}var t={},n=``,r=e?`dgimsy`:`gimsy`,a=function(e,r){Object.defineProperty(t,e,{get:function(){return n+=r,!0}})},o={dotAll:`s`,global:`g`,ignoreCase:`i`,multiline:`m`,sticky:`y`};for(var s in e&&(o.hasIndices=`d`),o)a(s,o[s]);return Object.getOwnPropertyDescriptor(i.prototype,`flags`).get.call(t)!==r||n!==r})}}),rr=p((e,t)=>{var n=Me();t.exports=function(){var e=n(this),t=``;return e.hasIndices&&(t+=`d`),e.global&&(t+=`g`),e.ignoreCase&&(t+=`i`),e.multiline&&(t+=`m`),e.dotAll&&(t+=`s`),e.unicode&&(t+=`u`),e.unicodeSets&&(t+=`v`),e.sticky&&(t+=`y`),t}}),ir=p((e,t)=>{var n=E(),r=xe(),i=oe(),a=nr(),o=rr(),s=RegExp.prototype;t.exports=a.correct?function(e){return e.flags}:function(e){return!a.correct&&i(s,e)&&!r(e,`flags`)?n(o,e):e.flags}}),ar=p((e,t)=>{var n=x(),r=be(),i=Math.floor,a=n(``.charAt),o=n(``.replace),s=n(``.slice),c=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,l=/\$([$&'`]|\d{1,2})/g;t.exports=function(e,t,n,u,d,f){var p=n+e.length,m=u.length,h=l;return d!==void 0&&(d=r(d),h=c),o(f,h,function(r,o){var c;switch(a(o,0)){case`$`:return`$`;case`&`:return e;case"`":return s(t,0,n);case`'`:return s(t,p);case`<`:c=d[s(o,1,-1)];break;default:var l=+o;if(l===0)return r;if(l>m){var f=i(l/10);return f===0?r:f<=m?u[f-1]===void 0?a(o,1):u[f-1]+a(o,1):r}c=u[l-1]}return c===void 0?``:c})}}),or=p(()=>{var e=Fe(),t=E(),n=x(),r=te(),i=w(),a=re(),o=tr(),s=jn(),c=me(),l=ir(),u=ar(),d=Ce(),f=ge(),p=d(`replace`),m=TypeError,h=n(``.indexOf),g=n(``.replace),_=n(``.slice),v=Math.max;e({target:`String`,proto:!0},{replaceAll:function(e,n){var d=r(this),y,b,x,S,C,w,T,E,D,O,ee=0,k=``;if(a(e)){if(y=o(e),y&&(b=s(r(l(e))),!~h(b,`g`)))throw new m("`.replaceAll` does not allow non-global regexes");if(x=c(e,p),x)return t(x,e,d,n);if(f&&y)return g(s(d),e,n)}for(S=s(d),C=s(e),w=i(n),w||(n=s(n)),T=C.length,E=v(1,T),D=h(S,C);D!==-1;)O=w?s(n(C,D,S)):u(C,S,D,[],void 0,n),k+=_(S,ee,D)+O,ee=D+T,D=D+E>S.length?-1:h(S,C,D+E);return ee<S.length&&(k+=_(S,ee)),k}})}),sr=p((e,t)=>{or(),t.exports=nt()(`String`,`replaceAll`)}),cr=p((e,t)=>{t.exports=sr()}),lr=p((e,t)=>{t.exports=cr()}),ur=p((e,t)=>{var n=Be(),r=jn(),i=te(),a=RangeError;t.exports=function(e){var t=r(i(this)),o=``,s=n(e);if(s<0||s===1/0)throw new a(`Wrong number of repetitions`);for(;s>0;(s>>>=1)&&(t+=t))s&1&&(o+=t);return o}}),dr=p((e,t)=>{var n=x(),r=He(),i=jn(),a=ur(),o=te(),s=n(a),c=n(``.slice),l=Math.ceil,u=function(e){return function(t,n,a){var u=i(o(t)),d=r(n),f=u.length,p=a===void 0?` `:i(a),m,h;return d<=f||p===``?u:(m=d-f,h=s(p,l(m/p.length)),h.length>m&&(h=c(h,0,m)),e?u+h:h+u)}};t.exports={start:u(!1),end:u(!0)}}),fr=p((e,t)=>{var n=se();t.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(n)}),pr=p(()=>{var e=Fe(),t=dr().start;e({target:`String`,proto:!0,forced:fr()},{padStart:function(e){return t(this,e,arguments.length>1?arguments[1]:void 0)}})}),mr=p((e,t)=>{pr(),t.exports=nt()(`String`,`padStart`)}),hr=p((e,t)=>{t.exports=mr()}),gr=p((e,t)=>{t.exports=hr()}),_r={};g(_r,{isMobile:()=>Jr,clientChecker:()=>N,areValidLiveRecordSources:()=>vi,WebmCodecStrategy:()=>nc,VideoQuality:()=>zd.VideoQuality,VideoFormat:()=>br,VideoCodec:()=>xr,ValueSubject:()=>zd.ValueSubject,VERSION:()=>vr,Surface:()=>wr,Subscription:()=>zd.Subscription,Subject:()=>zd.Subject,SDK_VERSION:()=>Bd,PredefinedQualityLimits:()=>Tr,Player:()=>Rd,PlaybackState:()=>yr,Observable:()=>zd.Observable,HttpConnectionType:()=>Cr,ChromecastState:()=>Sr}),module.exports=d(_r);var vr=`2.0.154-dev.c0f690bfb.0`,yr;(e=>{e.STOPPED=`stopped`,e.READY=`ready`,e.PLAYING=`playing`,e.PAUSED=`paused`})(yr||={});var br;(e=>{e.MPEG=`MPEG`,e.DASH=`DASH`,e.DASH_SEP=`DASH_SEP`,e.DASH_SEP_VK=`DASH_SEP`,e.DASH_WEBM=`DASH_WEBM`,e.DASH_WEBM_AV1=`DASH_WEBM_AV1`,e.DASH_STREAMS=`DASH_STREAMS`,e.DASH_WEBM_VK=`DASH_WEBM`,e.DASH_ONDEMAND=`DASH_ONDEMAND`,e.DASH_ONDEMAND_VK=`DASH_ONDEMAND`,e.DASH_LIVE=`DASH_LIVE`,e.DASH_LIVE_CMAF=`DASH_LIVE_CMAF`,e.DASH_LIVE_WEBM=`DASH_LIVE_WEBM`,e.HLS=`HLS`,e.HLS_ONDEMAND=`HLS_ONDEMAND`,e.HLS_JS=`HLS`,e.HLS_FMP4=`HLS_FMP4`,e.HLS_LIVE=`HLS_LIVE`,e.HLS_LIVE_CMAF=`HLS_LIVE_CMAF`,e.WEB_RTC_LIVE=`WEB_RTC_LIVE`})(br||={});var xr;(e=>{e.AV1=`av1`,e.VP9=`vp9`,e.AVC1=`avc1`,e.HEV1=`hev1`})(xr||={});var Sr;(e=>{e.NOT_AVAILABLE=`NOT_AVAILABLE`,e.AVAILABLE=`AVAILABLE`,e.CONNECTING=`CONNECTING`,e.CONNECTED=`CONNECTED`})(Sr||={});var Cr;(e=>{e.HTTP1=`http1`,e.HTTP2=`http2`,e.QUIC=`quic`})(Cr||={});var wr;(e=>{e.NONE=`none`,e.INLINE=`inline`,e.FULLSCREEN=`fullscreen`,e.SECOND_SCREEN=`second_screen`,e.PIP=`pip`,e.INVISIBLE=`invisible`})(wr||={});var Tr;(e=>{e.TRAFFIC_SAVING=`traffic_saving`,e.HIGH_QUALITY=`high_quality`,e.UNKNOWN=`unknown`})(Tr||={});var Er=u($e(),1),Dr=u(at(),1),A=require(`@vkontakte/videoplayer-shared/es2018`),Or=e=>new Promise((t,n)=>{let r=document.createElement(`script`);r.setAttribute(`src`,e),r.onload=()=>t(),r.onerror=e=>n(e),document.body.appendChild(r)});class kr{constructor(t){e(this,`connection$`,new A.ValueSubject(void 0)),e(this,`castState$`,new A.ValueSubject(`NOT_AVAILABLE`)),e(this,`errorEvent$`,new A.Subject),e(this,`contentId`,void 0),e(this,`realCastState$`,new A.ValueSubject(`NOT_AVAILABLE`)),e(this,`subscription`,new A.Subscription),e(this,`log`,void 0),e(this,`params`,void 0),e(this,`isDestroyed`,!1),this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`ChromecastInitializer`);let n=`chrome`in window;if(this.log({message:`[constructor] receiverApplicationId: ${this.params.receiverApplicationId}, isDisabled: ${this.params.isDisabled}, isSupported: ${n}`}),t.isDisabled||!n)return;let r=A.isNonNullable(window.chrome?.cast),i=!!window.__onGCastApiAvailable;r?this.initializeCastApi():(window.__onGCastApiAvailable=e=>{delete window.__onGCastApiAvailable,e&&!this.isDestroyed&&this.initializeCastApi()},i||Or(`https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1`).catch(()=>this.errorEvent$.next({id:`ChromecastLoading`,category:A.ErrorCategory.NETWORK,message:`Script loading failed!`})))}connect(){cast.framework.CastContext.getInstance()?.requestSession()}disconnect(){var e;(e=cast.framework.CastContext.getInstance())==null||(e=e.getCurrentSession())==null||e.endSession(!0)}stopMedia(){return new Promise((e,t)=>{var n;(n=cast.framework.CastContext.getInstance())==null||(n=n.getCurrentSession())==null||(n=n.getMediaSession())==null||n.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){A.isNonNullable(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();A.isNullable(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();A.isNullable(t)||e!==t.remotePlayer.isMuted&&t.remotePlayerController.muteOrUnmute()}destroy(){this.isDestroyed=!0,this.subscription.unsubscribe()}initListeners(){let e=new cast.framework.RemotePlayer,t=new cast.framework.RemotePlayerController(e),n=cast.framework.CastContext.getInstance();this.subscription.add(A.fromEvent(n,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(e=>{switch(e.sessionState){case cast.framework.SessionState.SESSION_STARTED:case cast.framework.SessionState.SESSION_STARTING:case cast.framework.SessionState.SESSION_RESUMED:var t;this.contentId=(t=n.getCurrentSession())==null||(t=t.getMediaSession())==null||(t=t.media)==null?void 0:t.contentId;break;case cast.framework.SessionState.NO_SESSION:case cast.framework.SessionState.SESSION_ENDING:case cast.framework.SessionState.SESSION_ENDED:case cast.framework.SessionState.SESSION_START_FAILED:this.contentId=void 0;break;default:return A.assertNever(e.sessionState)}})).add(A.merge(A.fromEvent(n,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe(A.tap(e=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(e)}`})}),A.map(e=>e.castState)),A.observableFrom([n.getCastState()])).pipe(A.filterChanged(),A.map(Ar),A.tap(e=>{this.log({message:`realCastState$: ${e}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{let i=r===`CONNECTED`,a=A.isNonNullable(this.connection$.getValue());if(i&&!a){var o;let r=n.getCurrentSession();A.assertNonNullable(r);let i=r.getCastDevice(),a=(o=r.getMediaSession())==null||(o=o.media)==null?void 0:o.contentId;(A.isNullable(a)||a===this.contentId)&&(this.log({message:`connection created`}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:r,castDevice:i}))}else !i&&a&&(this.log({message:`connection destroyed`}),this.connection$.next(void 0));this.castState$.next(r===`CONNECTED`?A.isNonNullable(this.connection$.getValue())?`CONNECTED`:`AVAILABLE`:r)}))}initializeCastApi(){let e,t,n;try{e=cast.framework.CastContext.getInstance(),t=chrome.cast.media.DEFAULT_MEDIA_RECEIVER_APP_ID,n=chrome.cast.AutoJoinPolicy.ORIGIN_SCOPED}catch{return}try{e.setOptions({receiverApplicationId:this.params.receiverApplicationId??t,autoJoinPolicy:n}),this.initListeners()}catch(e){this.errorEvent$.next({id:`ChromecastInitializer`,category:A.ErrorCategory.EXTERNAL_API,message:`[initializeCastApi] failed`,thrown:e})}}}var Ar=e=>{switch(e){case cast.framework.CastState.NO_DEVICES_AVAILABLE:return`NOT_AVAILABLE`;case cast.framework.CastState.NOT_CONNECTED:return`AVAILABLE`;case cast.framework.CastState.CONNECTING:return`CONNECTING`;case cast.framework.CastState.CONNECTED:return`CONNECTED`;default:return A.assertNever(e)}},j=require(`@vkontakte/videoplayer-shared/es2018`),jr=require(`@vkontakte/videoplayer-shared/es2018`),Mr=require(`@vkontakte/videoplayer-shared/es2018`),Nr=(e,t=0,n=0)=>{switch(n){case 0:return e.replace(`_offset_p`,t===0?``:`_`+t.toFixed(0));case 1:{if(t===0)return e;let n=new URL(e);return n.searchParams.append(`playback_shift`,t.toFixed(0)),n.toString()}case 2:{let n=new URL(e);return!n.searchParams.get(`offset_p`)&&t===0?e:(n.searchParams.set(`offset_p`,t.toFixed(0)),n.toString())}default:Mr.assertNever(n)}return e},Pr=(e,t)=>{switch(t){case 0:return NaN;case 1:{let t=new URL(e);return Number(t.searchParams.get(`playback_shift`))}case 2:{let t=new URL(e);return Number(t.searchParams.get(`offset_p`)??0)}default:Mr.assertNever(t)}},Fr=e=>{let{source:t,format:n,meta:r,output:i}=e,a,o,s;switch(n){case`MPEG`:{let e=t[n];jr.assertNonNullable(e);let r=jr.getHighestQuality(Object.keys(e));jr.assertNonNullable(r);let i=e[r];jr.assertNonNullable(i),a=i,o=`video/mp4`,s=Ir();break}case`HLS`:case`HLS_FMP4`:case`HLS_ONDEMAND`:{let e=t[n];jr.assertNonNullable(e),a=e.url,o=`application/x-mpegurl`,s=Ir();break}case`DASH_SEP`:case`DASH_ONDEMAND`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_STREAMS`:{let e=t[n];jr.assertNonNullable(e),a=e.url,o=`application/dash+xml`,s=Ir();break}case`DASH_LIVE_CMAF`:{let e=t[n];jr.assertNonNullable(e),a=e.url,o=`application/dash+xml`,s=Lr();break}case`HLS_LIVE`:case`HLS_LIVE_CMAF`:{let e=t[n];jr.assertNonNullable(e),a=Nr(e.url),o=`application/x-mpegurl`,s=Lr();break}case`DASH_LIVE`:case`WEB_RTC_LIVE`:{let e=`Unsupported format for Chromecast`,t=Error(e);throw i.error$.next({id:`ChromecastProvider.createMediaInfo()`,category:jr.ErrorCategory.VIDEO_PIPELINE,message:e,thrown:t}),t}case`DASH`:case`DASH_LIVE_WEBM`:throw Error(`${n} is no longer supported`);default:return jr.assertNever(n)}let c=Rr(r.videoId??a,o);c.contentUrl=a,c.streamType=s,c.metadata=zr();let{title:l,subtitle:u}=r;return jr.isNonNullable(l)&&(c.metadata.title=l),jr.isNonNullable(u)&&(c.metadata.subtitle=u),c};function Ir(){var e;return((e=chrome.cast)==null||(e=e.media)==null||(e=e.StreamType)==null?void 0:e.BUFFERED)??`BUFFERED`}function Lr(){var e;return((e=chrome.cast)==null||(e=e.media)==null||(e=e.StreamType)==null?void 0:e.LIVE)??`LIVE`}function Rr(e,t){var n;return!((n=chrome.cast)==null||(n=n.media)==null)&&n.MediaInfo?new chrome.cast.media.MediaInfo(e,t):{contentId:e,contentType:t,metadata:{title:``,subtitle:``},streamType:Ir()}}function zr(){var e;return!((e=chrome.cast)==null||(e=e.media)==null)&&e.GenericMediaMetadata?new chrome.cast.media.GenericMediaMetadata:{images:[],metadataType:0,releaseDate:``,subtitle:``,title:``,releaseYear:1970,type:0}}var M=(e,t,n=!1)=>{let r=e.getTransition();(n||!r||r.to===t)&&e.setState(t)};class Br{constructor(t){e(this,`params`,void 0),e(this,`interval`,0),e(this,`startVideoPosition`,void 0),e(this,`startTs`,void 0),this.params=t}start(e=0){clearInterval(this.interval),this.startVideoPosition=e,this.startTs=Date.now(),this.interval=window.setInterval(()=>{let e=(Date.now()-this.startTs)/1e3,t=this.startVideoPosition+e;this.params.output.position$.next(t)},1e3)}pause(){clearInterval(this.interval)}destroy(){clearInterval(this.interval)}}var Vr=require(`@vkontakte/videoplayer-shared/es2018`),Hr=require(`@vkontakte/videoplayer-shared/es2018`),Ur=u(at(),1),Wr=require(`@vkontakte/videoplayer-shared/es2018`);class Gr{constructor(){e(this,`_current`,void 0),e(this,`_current_version`,void 0),e(this,`_chromeVersion`,void 0),e(this,`_firefoxVersion`,void 0),e(this,`_safariVersion`,void 0),e(this,`_operaVersion`,void 0),e(this,`_edgeVersion`,void 0),e(this,`_yandexVersion`,void 0),e(this,`_isMiuiBrowser`,!1)}get current(){return this._current}get isChrome(){return this.current===`Chrome`}get isChromiumBased(){return Ur.default([`Chrome`,`Chromium`,`Opera`,`Yandex`,`Edge`,`SamsungBrowser`],this.current)}get isFirefox(){return this.current===`Firefox`}get isSafari(){return this.current===`Safari`}get isOpera(){return this.current===`Opera`}get isEdge(){return this.current===`Edge`}get isYandex(){return this.current===`Yandex`}get isSamsungBrowser(){return this.current===`SamsungBrowser`}get currentVersion(){return this._current_version}get chromeVersion(){return this._chromeVersion}get firefoxVersion(){return this._firefoxVersion}get safariVersion(){return this._safariVersion}get operaVersion(){return this._operaVersion}get edgeVersion(){return this._edgeVersion}get yandexVersion(){return this._yandexVersion}get isMiuiBrowser(){return this._isMiuiBrowser}detect(){let{userAgent:e}=navigator;try{let t=/yabrowser/i.test(e)?`Yandex`:void 0,n=/samsungbrowser/i.test(e)?`SamsungBrowser`:void 0,r=/chrome|crios/i.test(e)?`Chrome`:void 0,i=/chromium/i.test(e)?`Chromium`:void 0,a=/firefox|fxios/i.test(e)?`Firefox`:void 0,o=/webkit|safari|khtml/i.test(e)?`Safari`:void 0,s=/opr\//i.test(e)?`Opera`:void 0,c=/edg/i.test(e)?`Edge`:void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||n||a||s||c||r||i||o||`Rest`}catch(e){console.error(e)}this.isChrome&&this.detectChromeVersion(),this.isFirefox&&this.detectFirefoxVersion(),this.isSafari&&this.detectSafariVersion(),this.isOpera&&this.detectOperaVersion(),this.isEdge&&this.detectEdgeVersion(),this.isYandex&&this.detectYandexVersion()}detectVersion(e){try{let{userAgent:t}=Wr.getWindow().navigator,n=t.match(e);if(!n)return;let r=n[1],i=parseInt(r,10);if(!isNaN(i))return this._current_version=i,i}catch(e){console.error(e)}}detectChromeVersion(){this._chromeVersion=this.detectVersion(/Chrome\/(\d+\.\d+)/)}detectFirefoxVersion(){this._firefoxVersion=this.detectVersion(/Firefox\/(\d+\.\d+)/)}detectSafariVersion(){this._safariVersion=this.detectVersion(/Version\/(\d+)/)}detectOperaVersion(){this._operaVersion=this.detectVersion(/OPR\/(\d+\.\d+)/)}detectEdgeVersion(){this._edgeVersion=this.detectVersion(/Edg\/(\d+\.\d+)/)}detectYandexVersion(){this._yandexVersion=this.detectVersion(/YaBrowser\/(\d+\.\d+\.\d+)/)}}var Kr=u(at(),1),qr=require(`@vkontakte/videoplayer-shared/es2018`),Jr=()=>{var e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test(navigator.appVersion??navigator.userAgent)||((e=navigator)==null||(e=e.userAgentData)==null?void 0:e.mobile)};class Yr{constructor(t){e(this,`_displayChecker`,void 0),e(this,`_isMobile`,void 0),e(this,`_current`,void 0),e(this,`_iosVersion`,void 0),e(this,`_highEntropyValues`,{}),e(this,`_os`,{name:`Unknown`,version:`Unknown`,full:`Unknown`}),e(this,`_details`,{vendor:`Unknown`,model:`Unknown`}),this._displayChecker=t}get current(){return this._current}get os(){return this._os}get details(){return this._details}get isIOS(){return this._highEntropyValues.platform===`iOS`||this.os.name.toLowerCase().includes(`ios`)||Kr.default([`iPhone`,`iPad`,`iPod`],this.current)}get isMac(){return this._highEntropyValues.platform===`macOS`||this.os.name.toLowerCase().includes(`mac`)||this.current===`Mac`}get isApple(){return this.isIOS||this.isMac}get isIphoneOrOldIpad(){if(!this.isApple||!this._displayChecker.isTouch)return!1;let e=this.current===`iPad`||this._displayChecker.width>700,t=this._iosVersion;return!e||e&&!!t&&t<16}get isAndroid(){return this._highEntropyValues.platform===`Android`||this.os.name.toLowerCase().includes(`android`)||this.current===`Android`}get isWindows(){return this.os.name.toLowerCase().includes(`windows`)}get isLinux(){return this.os.name.toLowerCase().includes(`linux`)&&!this.isAndroid}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let e=qr.getWindow();if(!qr.isBrowserWindow(e))return;let{userAgent:t}=e.navigator;try{this._isMobile=Jr()}catch(e){console.error(`DeviceChecker: calling isMobile error - `,e)}this.detectDevice(t),this.detectOS(t),this.detectDeviceDetails(t),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let e=qr.getWindow();if(!qr.isBrowserWindow(e))return;let{userAgentData:t}=e.navigator;if(t?.getHighEntropyValues){let e=await t.getHighEntropyValues([`architecture`,`bitness`,`brands`,`mobile`,`platform`,`formFactor`,`model`,`platformVersion`,`wow64`]);this._highEntropyValues=e,e.platform&&(this._os.name=this.normalizeOSName(e.platform),e.platformVersion&&(this._os.version=this.normalizeOSVersion(e.platformVersion),this._os.full=`${this._os.name} ${this._os.version}`)),e.model&&(this._details.model=e.model)}}detectDevice(e){try{let t=/android/i.test(e)?`Android`:void 0,n=/iphone/i.test(e)?`iPhone`:void 0,r=/ipad/i.test(e)?`iPad`:void 0,i=/ipod/i.test(e)?`iPod`:void 0,a=/mac/i.test(e)?`Mac`:void 0,o=/webOS|BlackBerry|IEMobile|Opera Mini/i.test(e)?`RestMobile`:void 0;this._current=t||n||r||i||o||a||`Desktop`}catch(e){console.error(`DeviceChecker: device detection error - `,e)}}detectOS(e){try{for(let[t,n]of[[/(windows nt) (6\.[23]); arm/i,[`Windows RT`]],[/(windows nt) (6\.3); arm/i,[`Windows RT 8.1`]],[/(windows (?:phone|mobile|iot))(?: os)?[/ ]?([\d.]+)/i,[`Windows Mobile`,2]],[/(windows)[/ ](xp|vista|7|8(\.1)?|10|11|2000|me)/i,[1,1]],[/windows nt ?([\d.]+)/i,[`Windows`,1]],[/(windows)[/ ](95|98|me|2000|xp|vista|7|8|8\.1|10|11)/i,[1,2]],[/(iphone os|cpu iphone os) ([\d_.]+)/i,[`iOS`,2]],[/(ipad os|cpu os) ([\d_.]+)/i,[`iPadOS`,2]],[/(ipod os|cpu ipod os) ([\d_.]+)/i,[`iOS`,2]],[/(?:ios|os) ([\d_.]+) like mac os x/i,[`iOS`,1]],[/cfnetwork\/.+darwin/i,[`iOS`]],[/(mac os x) ?([\d_.]+)/i,[`macOS`,2]],[/(macintosh|mac os)/i,[`macOS`]],[/(android) ([\d.]+)/i,[1,2]],[/(harmonyos)[/ ]?([\d.]*)/i,[`HarmonyOS`,2]],[/\b(ubuntu|debian|fedora|centos|arch|linux)(?:[-/ ]([\w.]+))?/i,[1,2]],[/(cros)\D*([\d.]+)/i,[`Chrome OS`,2]],[/(freebsd|openbsd|netbsd|dragonfly)[/ ]?([\w.]*)/i,[1,2]],[/(sunos|solaris)?([\d.]*)/i,[`Solaris`,2]],[/(aix)?([\d.]*)/i,[`AIX`,2]]]){let r=e.match(t);if(r){let t=n.length>0,i=n.length>1,a=`Unknown`,o=`Unknown`;if(t){let e=n[0];typeof e==`number`?e<r.length&&r[e]!==void 0&&(a=r[e]):a=e}if(i){let e=n[1];typeof e==`number`?e<r.length&&r[e]!==void 0&&(o=r[e]):e!==void 0&&(o=e)}else r[2]===void 0?r[1]!==void 0&&t&&typeof n[0]==`string`&&(o=r[1]):o=r[2];a=this.normalizeOSName(a),o=this.normalizeOSVersion(o,a),a===`iOS`&&/ipad/i.test(e)?a=`iPadOS`:a===`iPadOS`&&/ip(hone|od)/i.test(e)&&(a=`iOS`),this._os={name:a,version:o||`Unknown`,full:o&&o!==`Unknown`?`${a} ${o}`:a};break}}}catch(e){console.error(`DeviceChecker: OS detection error - `,e)}}normalizeOSName(e){if(!e)return`Unknown`;let t=e.toLowerCase();return t.includes(`windows`)?`Windows`:t.includes(`mac os`)||t.includes(`macintosh`)?`macOS`:t.includes(`iphone`)||t.includes(`ios`)?`iOS`:t.includes(`ipados`)?`iPadOS`:t.includes(`android`)?`Android`:t.includes(`harmonyos`)?`HarmonyOS`:t.includes(`linux`)?`Linux`:t.includes(`cros`)?`Chrome OS`:t.includes(`freebsd`)?`FreeBSD`:t.includes(`openbsd`)?`OpenBSD`:t.includes(`solaris`)||t.includes(`sunos`)?`Solaris`:t.includes(`aix`)?`AIX`:e}normalizeOSVersion(e,t){if(!e)return`Unknown`;if(e!==`Unknown`&&(e=e.replace(/_/g,`.`),t===`Windows`)){let t=parseFloat(e);if(!isNaN(t)){if(t>=11)return`11`;if(t>=10)return`10`;if(t===6.3)return`8.1`;if(t===6.2)return`8`;if(t===6.1)return`7`;if(t===6)return`Vista`;if(t===5.1||t===5.2)return`XP`;if(t===5)return`2000`;if(t===4)return`NT 4.0`}}return e}detectDeviceDetails(e){try{for(let[t,n]of[[/(iphone)/i,[`Apple`,`iPhone`]],[/(ipad)/i,[`Apple`,`iPad`]],[/(ipod)/i,[`Apple`,`iPod`]],[/(macintosh)/i,[`Apple`,`Macintosh`]],[/(windows[\w\-_ ]*phone)/i,[`Microsoft`,0]],[/(windows nt|win64|win32|wow64)/i,[`Microsoft`,`PC`]],[/\b(sch-i[89]0\d|shw-m380s|sm-[ptxs]\w{2,4}|gt-[pn]\d{2,4}|sgh-t8[56]9|nexus 10)/i,[`Samsung`,1]],[/\b((?:s[cgp]h|gt|sm)-(?![lr])\w+|sc[g-]?\d+a?|galaxy nexus)/i,[`Samsung`,1]],[/samsung[- ]((?!sm-[lr]|browser)[-\w]+)/i,[`Samsung`,1]],[/sec-(sgh\w+)/i,[`Samsung`,1]],[/smart-tv.+(samsung)/i,[`Samsung`,`Smart TV`]],[/(samsung).*tizen/i,[`Samsung`,`Smart TV`]],[/(pixel (?:c|tablet|[0-9a-z ]+))/i,[`Google`,1]],[/(pixelbook(?: go)?)/i,[`Google`,1]],[/nexus [0-9]/i,[`Google`,0]],[/(redmi[-_ ]?(?:note|k)?[\w_ ]+)(?: bui|\))/i,[`Xiaomi`,1]],[/\b(mi[\w\-_ ]+)(?: bui|\))/i,[`Xiaomi`,1]],[/\b(poco[\w ]+)(?: bui|\))/i,[`Xiaomi`,1]],[/\b(hm[-_ ]?note?[\w ]*)(?: bui|\))/i,[`Xiaomi`,1]],[/\b(?:xiao)?mi[\w\-_ ]+pad/i,[`Xiaomi`,0]],[/(?:huawei|honor) ?([-\w ]+)[;)]/i,[`Huawei`,1]],[/\b(nexus 6p|\w{2,4}e?-[atu]?[ln][\dx][\dc][adnt]?)\b(?!.+d\/s)/i,[`Huawei`,1]],[/\b((?:ag[rs][2356]?k?|bah[234]?|bg[2o]|bt[kv]|cmr|cpn|db[ry]2?|jdn2|got|kob2?k?|mon|pce|scm|sht?|[tw]gr|vrd)-[ad]?[lw][0125][09]b?)/i,[`Huawei`,1]],[/(?:one)?(?:plus)? ?([a\d0]\d\d\d?)(?: b|\))/i,[`OnePlus`,1]],[/droid.+; (cph2[3-6]\d[13579]|((?:gm|hd)19|(?:ac|be|in|kb)20|(?:d[en]|eb|le|mt)21|ne22)[0-2]\d)(?: bui|\))/i,[`OnePlus`,1]],[/(oneplus)[-_ ]?([-\w]*)/i,[`OnePlus`,2]],[/\b(rmx[1-3]\d{3})(?: bui|;|\))/i,[`Realme`,1]],[/(realme)[-_ ]?([-\w]*)/i,[`Realme`,2]],[/; (\w+) bui.+ oppo/i,[`OPPO`,1]],[/\b(cph[12]\d{3}|p(?:af|c[al]|d\w|e[ar])[mt]\d0|x9007|a101op)\b/i,[`OPPO`,1]],[/\b(opd2(\d{3}a?))(?: bui|\))/i,[`OPPO`,1]],[/(oppo)[-_ ]?([-\w]*)/i,[`OPPO`,2]],[/; vivo (\w+)(?: bui|\))/i,[`Vivo`,1]],[/\b(v[12]\d{3}\w?[at])(?: bui|;)/i,[`Vivo`,1]],[/(vivo)[-_ ]?([-\w]*)/i,[`Vivo`,2]],[/\bmot(?:orola)?[- ]([\w\s]+)(\)| bui)/i,[`Motorola`,1]],[/((?:moto(?! 360)[-\w() ]+|xt\d{3,4}[cgkosw+]?[-\d]*|nexus 6)(?= bui|\)))/i,[`Motorola`,1]],[/\b(milestone|droid(?:[2-4x]| (?:bionic|x2|pro|razr))?:?( 4g)?)\b/i,[`Motorola`,0]],[/\b(mz60\d|xoom[2 ]{0,2}) build\//i,[`Motorola`,0]],[/droid.+; ([a-z]?\d[0-2]{2}[a-z]{2}|[c-g]\d{4}|so[-gl]\w+|xq-[a-z]{2}\d\d)(?= bui|\))/i,[`Sony`,1]],[/sony tablet [ps]/i,[`Sony`,`Xperia Tablet`]],[/\b(?:sony)?sgp\w+(?: bui|\))/i,[`Sony`,0]],[/(sony)[-_ ]?([-\w]*)/i,[`Sony`,2]],[/\blg[-e;/ ]+(?!.*(?:browser|netcast|android tv|watch|webos))(\w+)/i,[`LG`,1]],[/\blg-?([\d\w]+) bui/i,[`LG`,1]],[/(lm(?:-?f100[nv]?|-[\w.]+)(?= bui|\))|nexus [45])/i,[`LG`,1]],[/((?=lg)?[vl]k-?\d{3}) bui/i,[`LG`,0]],[/(lg)[-_ ]?([-\w]*)/i,[`LG`,2]],[/(?:maemo|nokia).*(n900|lumia \d+|rm-\d+)/i,[`Nokia`,1]],[/nokia[-_ ]?(([-\w. ]*?))(?: bui|\)|;|\/)/i,[`Nokia`,1]],[/(nokia) (t[12][01])/i,[`Nokia`,2]],[/(?:\b|asus_)(transfo[prime ]{4,10} \w+|eeepc|slider \w+|nexus 7|padfone|p00[cj])/i,[`ASUS`,1]],[/(?:asus[-_ ])?(zenfone[\w\-_ ]*)/i,[`ASUS`,1]],[/(rog[\w\-_ ]*)/i,[`ASUS`,1]],[/(asus)[-_ ]?([-\w]*)/i,[`ASUS`,2]],[/lenovo[-_ ]?([-\w ]+?)(?: bui|\)|\/)/i,[`Lenovo`,1]],[/(ideatab[-\w ]+|602lv|d-42a|a101lv|a2109a|a3500-hv|s[56]000|pb-6505[my]|tb-?x?\d{3,4}(?:f[cu]|xu|[av])|yt\d?-[jx]?\d+[lfmx])(?: bui|;|\)|\/)/i,[`Lenovo`,1]],[/(thinkpad[\w\-_ ]*)/i,[`Lenovo`,0]],[/(kf[a-z]{2}[a-z]*)(?: bui|\))/i,[`Amazon`,1]],[/(alexa)webm/i,[`Amazon`,`Echo`]],[/(fire[\w\-_ ]*)/i,[`Amazon`,0]],[/(amazon)[-_ ]?([-\w]*)/i,[`Amazon`,2]],[/(?:blackberry|\(bb10;) (\w+)/i,[`BlackBerry`,1]],[/\b((?:bb[a-f]|st[hv])100-\d)/i,[`BlackBerry`,1]],[/(playbook);[-\w),; ]+(rim)/i,[`BlackBerry`,1]],[/(microsoft); (lumia[\w ]+)/i,[`Microsoft`,2]],[/(surface duo)/i,[`Microsoft`,`Surface Duo`]],[/(surface[\w\-_ ]*)/i,[`Microsoft`,0]],[/(zte)[- ]([\w ]+?)(?: bui|\/|\))/i,[`ZTE`,2]],[/(htc)[-;_ ]{1,2}([\w ]+(?=\)| bui)|\w+)/i,[`HTC`,2]],[/(alcatel|tcl)[-_ ]?([-\w]*)/i,[1,2]],[/(meizu)[-_ ]?([-\w]*)/i,[`Meizu`,2]],[/(tecno)[-_ ]?([-\w]*)/i,[`Tecno`,2]],[/(infinix)[-_ ]?([-\w]*)/i,[`Infinix`,2]],[/(micromax)[-_ ]?([-\w]*)/i,[`Micromax`,2]],[/(lava)[-_ ]?([-\w]*)/i,[`Lava`,2]],[/(panasonic)[-_ ]?([-\w]*)/i,[`Panasonic`,2]],[/(sharp)\/?([-\w]*)/i,[`Sharp`,2]],[/(benq)[-_ ]?([-\w]*)/i,[`BenQ`,2]],[/(palm)[-_ ]?([-\w]*)/i,[`Palm`,2]],[/(vertu)[-_ ]?([-\w]*)/i,[`Vertu`,2]],[/(gionee)[-_ ]?([-\w]*)/i,[`Gionee`,2]],[/(doogee)[-_ ]?([-\w]*)/i,[`Doogee`,2]],[/(ulefone)[-_ ]?([-\w]*)/i,[`Ulefone`,2]],[/(blackview)[-_ ]?([-\w]*)/i,[`Blackview`,2]],[/(cubot)[-_ ]?([-\w]*)/i,[`Cubot`,2]],[/(umidigi)[-_ ]?([-\w]*)/i,[`UMIDIGI`,2]],[/(oukitel)[-_ ]?([-\w]*)/i,[`Oukitel`,2]],[/(fairphone)[-_ ]?([-\w]*)/i,[`Fairphone`,2]],[/(cat)[-_ ]?([-\w]*)/i,[`Cat`,2]],[/(energy)[-_ ]?([-\w]*)/i,[`Energizer`,2]],[/(land rover)[-_ ]?([-\w]*)/i,[`Land Rover`,2]],[/(shield[\w\-_ ]*)/i,[`Nvidia`,0]],[/(crkey)/i,[`Google`,`Chromecast`]],[/(roku)[\dx]*/i,[`Roku`,0]],[/(apple)[-_ ]?tv/i,[`Apple`,`TV`]],[/(amazon)[-_ ]?tv/i,[`Amazon`,`Fire TV`]],[/(google)[-_ ]?tv/i,[`Google`,`TV`]],[/(smart[\w\-_ ]*tv)/i,[0,`Smart TV`]],[/(playstation[\w\-_ ]*)/i,[`Sony`,0]],[/(nintendo[\w\-_ ]*)/i,[`Nintendo`,0]],[/(xbox[\w\-_ ]*)/i,[`Microsoft`,0]],[/(googlebot)/i,[`Google`,`Bot`]],[/(bingbot)/i,[`Microsoft`,`Bing Bot`]],[/(yandexbot)/i,[`Yandex`,`Bot`]],[/(slackbot)/i,[`Slack`,`Bot`]],[/(twitterbot)/i,[`Twitter`,`Bot`]],[/(facebookbot)/i,[`Facebook`,`Bot`]],[/(linkedinbot)/i,[`LinkedIn`,`Bot`]],[/(tesla)[-_ ]?([-\w]*)/i,[`Tesla`,2]],[/(raspberry[\w\-_ ]*)/i,[`Raspberry Pi`,0]]]){let r=e.match(t);if(r){let e=n[0],t=n[1],i=typeof e==`number`?r[e]===void 0?`Unknown`:this.normalizeVendorName(r[e]):this.normalizeVendorName(e),a=`Unknown`;typeof t==`number`?a=r[t]===void 0?`Unknown`:r[t]:t===void 0?r[1]===void 0?r[0]!==void 0&&(a=r[0]):a=r[1]:a=t,a=this.normalizeModelName(a,i),this.details.vendor=i,this.details.model=a;break}}}catch(e){console.error(`DeviceChecker: device details detection error - `,e)}}normalizeVendorName(e){return e?{apple:`Apple`,samsung:`Samsung`,google:`Google`,xiaomi:`Xiaomi`,huawei:`Huawei`,oneplus:`OnePlus`,oppo:`OPPO`,vivo:`Vivo`,realme:`Realme`,motorola:`Motorola`,sony:`Sony`,lg:`LG`,nokia:`Nokia`,asus:`ASUS`,lenovo:`Lenovo`,amazon:`Amazon`,blackberry:`BlackBerry`,microsoft:`Microsoft`,zte:`ZTE`,htc:`HTC`,alcatel:`Alcatel`,tcl:`TCL`,meizu:`Meizu`,tecno:`Tecno`,infinix:`Infinix`,micromax:`Micromax`,lava:`Lava`,panasonic:`Panasonic`,sharp:`Sharp`,benq:`BenQ`,palm:`Palm`,honor:`Honor`,nvidia:`NVIDIA`,roku:`Roku`}[e.toLowerCase()]||e.charAt(0).toUpperCase()+e.slice(1).toLowerCase():`Unknown`}normalizeModelName(e,t){if(!e||e===`Unknown`)return e;if(e===`0`)return`Unknown`;let n=e.replace(/^build\//i,``).replace(/\s+bui$/i,``).replace(/\)$/,``).replace(/[;,)]/g,``).replace(/\s*\(.*?\)\s*/g,``).trim(),r=t.toLowerCase();return r.includes(`samsung`)?n=n.replace(/^(sm-|gt-|sgh-|sch-)/i,``):r.includes(`xiaomi`)?n=n.replace(/^(mi[\s\-_]*|redmi[\s\-_]*)/i,``):r.includes(`oneplus`)?n=n.replace(/^oneplus[\s\-_]*/i,``):r.includes(`google`)&&(n=n.replace(/^(pixel[\s\-_]*|nexus[\s\-_]*)/i,``)),n=n.replace(/_/g,` `).replace(/-/g,` `).replace(/\s+/g,` `).trim(),n?(n.length>0&&/^[a-z]/.test(n)&&(n=n.charAt(0).toUpperCase()+n.slice(1)),n):`Unknown`}detectIOSVersion(){try{let e=qr.getWindow();if(!qr.isBrowserWindow(e))return;if(this._highEntropyValues.platformVersion){let e=this._highEntropyValues.platformVersion.split(`.`).slice(0,2).join(`.`);this._iosVersion=parseFloat(e);return}if(this._os.version!==`Unknown`){let e=this._os.version.split(`.`),t=e.length>=2?`${e[0]}.${e[1]}`:e[0];this._iosVersion=parseFloat(t);return}let t=e.navigator.userAgent.match(/OS (\d+(_\d+)?)/i);t?.[1]&&(this._iosVersion=parseFloat(t[1].replace(/_/g,`.`)))}catch(e){console.error(`DeviceChecker: iOS version detection error - `,e)}}}var Xr=require(`@vkontakte/videoplayer-shared/es2018`);class Zr{constructor(){e(this,`_maxTouchPoints`,void 0),e(this,`_height`,void 0),e(this,`_width`,void 0),e(this,`_isHdr`,void 0),e(this,`_pixelRatio`,void 0),e(this,`_screenHeight`,void 0),e(this,`_screenWidth`,void 0),e(this,`_colorDepth`,void 0)}get isTouch(){return typeof this._maxTouchPoints==`number`?this._maxTouchPoints>1:`ontouchstart`in Xr.getWindow()}get maxTouchPoints(){return this._maxTouchPoints}get height(){return this._height}get width(){return this._width}get screenHeight(){return this._screenHeight}get screenWidth(){return this._screenWidth}get pixelRatio(){return this._pixelRatio}get isHDR(){return this._isHdr}get colorDepth(){return this._colorDepth}detect(){let e=Xr.getWindow();if(!Xr.isBrowserWindow(e))return;let{navigator:t,screen:n}=e,{maxTouchPoints:r}=t;try{this._maxTouchPoints=r??0,this._isHdr=!!e.matchMedia(`(dynamic-range: high)`)?.matches,this._colorDepth=n.colorDepth}catch(e){console.error(e)}try{this._pixelRatio=e.devicePixelRatio||1,this._height=n.height,this._width=n.width,this._height=n.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(e){console.error(e)}}}var Qr=require(`@vkontakte/videoplayer-shared/es2018`),$r=()=>window.ManagedMediaSource||window.MediaSource,ei=()=>{var e;return!!(window.ManagedMediaSource&&!((e=window.ManagedSourceBuffer)==null||(e=e.prototype)==null)&&e.appendBuffer)},ti=()=>{var e;return!!(window.MediaSource&&!((e=window.SourceBuffer)==null||(e=e.prototype)==null)&&e.appendBuffer)},ni=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource,ri=Qr.getWindow().document?.createElement(`video`),ii=`video/mp4; codecs="avc1.42000a,mp4a.40.2"`,ai=`video/mp4; codecs="hev1.1.6.L93.B0"`,oi=`video/webm; codecs="vp09.00.10.08"`,si=`video/webm; codecs="av01.0.00M.08"`,ci=`audio/mp4; codecs="mp4a.40.2"`,li=`audio/webm; codecs="opus"`,ui;(async()=>{let e=Qr.getWindow();if(!Qr.isBrowserWindow(e))return;let t={type:`media-source`,video:{contentType:`video/webm`,width:1280,height:720,bitrate:1e6,framerate:30}},[n,r]=await Promise.all([e.navigator.mediaCapabilities.decodingInfo({...t,video:{...t.video,contentType:si}}),e.navigator.mediaCapabilities.decodingInfo({...t,video:{...t.video,contentType:oi}})]);ui={DASH_WEBM_AV1:n,DASH_WEBM:r}})().catch(e=>{console.log(ri),console.error(e)});class di{constructor(t,n){e(this,`_video`,void 0),e(this,`_deviceChecker`,void 0),e(this,`_browserChecker`,void 0),e(this,`_protocols`,void 0),e(this,`_containers`,void 0),e(this,`_codecs`,void 0),e(this,`_nativeHlsSupported`,void 0),this._deviceChecker=t,this._browserChecker=n}get protocols(){return this._protocols}get containers(){return this._containers}get codecs(){return this._codecs}get webmDecodingInfo(){return ui}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){let e=Qr.getWindow();if(Qr.isBrowserWindow(e)){this._video=e.document.createElement(`video`);try{var t,n,r,i,a,o,s,c,l,u,d,f,p,m,h,g;this._protocols={mms:ei(),mse:ti(),hls:!!((t=this._video).canPlayType?.call(t,`application/x-mpegurl`)||(n=this._video).canPlayType?.call(n,`vnd.apple.mpegURL`)),webrtc:!!e.RTCPeerConnection,ws:!!e.WebSocket},this._containers={mp4:!!(r=this._video).canPlayType?.call(r,`video/mp4`),webm:!!(i=this._video).canPlayType?.call(i,`video/webm`),cmaf:!0};let _=!!(!((a=$r())==null||(o=a.isTypeSupported)==null)&&o.call(a,ii)),v=!!(!((s=$r())==null||(c=s.isTypeSupported)==null)&&c.call(s,ai)),y=!!(!((l=$r())==null||(u=l.isTypeSupported)==null)&&u.call(l,ci));this._codecs={h264:_,h265:v,vp9:!!(!((d=$r())==null||(f=d.isTypeSupported)==null)&&f.call(d,oi)),av1:!!(!((p=$r())==null||(m=p.isTypeSupported)==null)&&m.call(p,si)),aac:y,opus:!!(!((h=$r())==null||(g=h.isTypeSupported)==null)&&g.call(h,li)),mpeg:(_||v)&&y},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(e){console.error(e)}try{this.destroyVideoElement()}catch(e){console.error(`Error destroying video element:`,e)}}}destroyVideoElement(){if(!this._video)return;if(this._video.pause(),this._video.currentTime=0,this._video.removeAttribute(`src`),this._video.src=``,this._video.load(),this._video.remove){this._video.remove(),this._video=null;return}this._video.parentNode&&this._video.parentNode.removeChild(this._video);let e=this._video.cloneNode(!1);this._video.parentNode?.replaceChild(e,this._video),this._video=null}}var fi=require(`@vkontakte/videoplayer-shared/es2018`),pi=`audio/mpeg`;class mi{constructor(){e(this,`_audio`,void 0),e(this,`_containers`,void 0),e(this,`_codecs`,void 0)}supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){let e=fi.getWindow();if(fi.isBrowserWindow(e)){this._audio=e.document.createElement(`audio`);try{var t,n,r;this._containers={mpeg:!!(t=this._audio).canPlayType?.call(t,pi)},this._codecs={mp3:!!(!((n=$r())==null||(r=n.isTypeSupported)==null)&&r.call(n,pi))}}catch(e){console.error(e)}try{this.destroyAudioElement()}catch(e){console.error(`Error destroying audio element:`,e)}}}destroyAudioElement(){if(!this._audio)return;if(this._audio.pause(),this._audio.currentTime=0,this._audio.removeAttribute(`src`),this._audio.src=``,this._audio.load(),this._audio.remove){this._audio.remove(),this._audio=null;return}this._audio.parentNode&&this._audio.parentNode.removeChild(this._audio);let e=this._audio.cloneNode(!1);this._audio.parentNode?.replaceChild(e,this._audio),this._audio=null}}class hi{constructor(){e(this,`isInited$`,new Hr.ValueSubject(!1)),e(this,`_displayChecker`,void 0),e(this,`_deviceChecker`,void 0),e(this,`_browserChecker`,void 0),e(this,`_videoChecker`,void 0),e(this,`_audioChecker`,void 0),this._displayChecker=new Zr,this._deviceChecker=new Yr(this._displayChecker),this._browserChecker=new Gr,this._videoChecker=new di(this._deviceChecker,this._browserChecker),this._audioChecker=new mi,this.detect()}get display(){return this._displayChecker}get device(){return this._deviceChecker}get browser(){return this._browserChecker}get video(){return this._videoChecker}get audio(){return this._audioChecker}async detect(){Hr.isBrowserWindow()&&(this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0))}}var N=new hi,gi=e=>{let{containers:t,protocols:n,codecs:r,nativeHlsSupported:i}=N.video,a=(r.h264||r.h265)&&r.aac,o=n.mse||n.mms;return e.filter(e=>{switch(e){case`DASH_SEP`:return o&&t.mp4&&a;case`DASH_WEBM`:return o&&t.webm&&r.vp9&&r.opus;case`DASH_WEBM_AV1`:return o&&t.webm&&r.av1&&r.opus;case`DASH_STREAMS`:return o&&(t.mp4&&a||t.webm&&(r.vp9||r.av1)&&(r.opus||r.aac));case`DASH_LIVE`:return o&&t.mp4&&a;case`DASH_LIVE_CMAF`:return o&&t.mp4&&a&&t.cmaf;case`DASH_ONDEMAND`:return o&&t.mp4&&a;case`HLS`:case`HLS_ONDEMAND`:case`HLS_FMP4`:case`HLS_LIVE`:case`HLS_LIVE_CMAF`:return i;case`MPEG`:return t.mp4;case`DASH`:case`DASH_LIVE_WEBM`:return!1;case`WEB_RTC_LIVE`:return n.webrtc&&n.ws&&r.h264&&(t.mp4||t.webm);default:return Vr.assertNever(e)}})},_i=e=>{switch(e){case`MPEG`:case`DASH`:case`DASH_SEP`:case`DASH_ONDEMAND`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_STREAMS`:case`HLS`:case`HLS_FMP4`:case`HLS_ONDEMAND`:return!1;case`DASH_LIVE`:case`DASH_LIVE_CMAF`:case`HLS_LIVE`:case`HLS_LIVE_CMAF`:case`DASH_LIVE_WEBM`:case`WEB_RTC_LIVE`:return!0;default:return Vr.assertNever(e)}},vi=e=>gi(Object.keys(e).filter(e=>!_i(e))).length>0;class yi{constructor(t){e(this,`subscription`,new j.Subscription),e(this,`log`,void 0),e(this,`params`,void 0),e(this,`sessionId$`,new j.ValueSubject(null)),e(this,`mediaSessionId$`,new j.ValueSubject(null)),e(this,`contentId$`,new j.ValueSubject(null)),e(this,`progressTicker`,void 0),e(this,`isMobile`,Jr()),e(this,`mobileVolumeState`,{muted:!1,volume:0}),e(this,`media`,null),e(this,`lastRequestedVolume`,null),e(this,`syncMediaState`,e=>{if(j.isNullable(e))return;this.media=e,this.mediaSessionId$.next(e.mediaSessionId??null);let t=e.media?.contentId;t&&this.contentId$.next(t),this.syncPlaybackState(e);let n=e.media?.duration;j.isNonNullable(n)&&this.params.output.duration$.next(Math.max(0,n));let r=e.currentTime;if(j.isNonNullable(r)){this.params.desiredState.seekState.getState().state===`applying`&&this.params.output.seekedEvent$.next(),this.params.output.position$.next(r);let t=this.params.output.isLive$.getValue();e.playerState===`PLAYING`&&!t?this.progressTicker.start(r):this.progressTicker.pause()}}),this.params=t,this.progressTicker=new Br(t),this.log=this.params.dependencies.logger.createComponentLog(`ChromecastPresentationApiProvider`),this.log({message:`constructor, format: ${t.format}`}),this.params.output.isLive$.next(_i(t.format)),this.subscribe()}subscribe(){let e=e=>{this.params.output.error$.next({category:j.ErrorCategory.WTF,id:`ChromecastPresentationApiProvider`,message:e?.message??`Unknown error`,thrown:e})};this.subscription.add(this.params.chromecastConnector.message$.pipe(j.filter(e=>!!e)).subscribe(e=>{this.handleMessage(e)},e)),this.subscription.add(this.sessionId$.pipe(j.filter(j.isNonNullable),j.filterChanged(),j.debounce(0)).subscribe(()=>{this.loadMedia()},e));let t=this.contentId$.pipe(j.filterChanged(),j.map(Boolean));this.subscription.add(j.combine({seekState:this.params.desiredState.seekState.stateChangeEnded$,mediaLoaded:t}).pipe(j.filter(({mediaLoaded:e})=>e)).subscribe(()=>{let e=this.params.desiredState.seekState.getState();e.state===`requested`&&this.seek(e.position/1e3)},e));let n=j.combine({playbackState:this.params.desiredState.playbackState.stateChangeStarted$,mediaLoaded:t});this.subscription.add(n.pipe(j.filter(({mediaLoaded:e})=>e),j.debounce(0)).subscribe(()=>{this.syncPlayback()},e)),this.subscription.add(n.pipe(j.filter(({mediaLoaded:e,playbackState:{from:t,to:n}})=>!e&&t===`stopped`&&n===`playing`)).subscribe(()=>{this.loadMedia()},e)),this.subscription.add(j.combine({volumeState:this.params.desiredState.volume.stateChangeStarted$.pipe(j.debounce(30)),mediaLoaded:t}).pipe(j.filter(({mediaLoaded:e})=>e)).subscribe(({volumeState:e})=>{let{muted:t,volume:n}=e.to;this.setVolume(n,t)},e))}handleMessage(e){switch(e.type){case`new_session`:case`update_session`:{var t;this.sessionId$.next(e.message.sessionId);let n=(t=e.message)==null||(t=t.media)==null?void 0:t[0];this.syncMediaState(n);let r=e.message?.receiver.volume;this.syncVolumeState(r)}break;case`v2_message`:switch(e.message?.type){case`MEDIA_STATUS`:{var n;let t=(n=e.message)==null||(n=n.status)==null?void 0:n[0];this.syncMediaState(t);break}}break}}loadMedia(){let e=Fr(this.params),t=this.media?.currentTime,n=this.params.desiredState.seekState.getState(),r=t??(n.state===`none`?0:n.position/1e3),i=this.params.desiredState.playbackState.getState()===`playing`;this.params.chromecastConnector.sendV2Message({type:`LOAD`,requestId:0,media:e,autoplay:i,currentTime:r,customData:null,activeTrackIds:null}),this.params.output.willSeekEvent$.next()}stop(){this.params.chromecastConnector.stopMedia()}play(){let e=this.mediaSessionId$.getValue();j.assertNonNullable(e,`play on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`PLAY`,mediaSessionId:e,customData:null})}pause(){let e=this.mediaSessionId$.getValue();j.assertNonNullable(e,`pause on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`PAUSE`,mediaSessionId:e,customData:null})}seek(e){let t=this.mediaSessionId$.getValue();j.assertNonNullable(t,`seek on null mediaSessionId`),this.params.chromecastConnector.sendV2Message({type:`SEEK`,currentTime:e,mediaSessionId:t}),this.params.output.willSeekEvent$.next()}setVolume(e,t){let n=e,r=`[setVolume] volume: ${e}, muted: ${t}`;this.isMobile&&(n=this.mobileVolumeState.volume,r+=`, mobile next volume: ${n}`),this.log({message:r}),this.lastRequestedVolume={volume:n,muted:t},this.params.chromecastConnector.sendV2Message({type:`SET_VOLUME`,requestId:0,volume:{level:t?0:n,muted:t?!0:null}})}syncPlaybackState({playerState:e,idleReason:t}){let n=this.params.output.isBuffering$.getValue(),r=e===`BUFFERING`;switch(n!==r&&this.params.output.isBuffering$.next(r),e){case`PAUSED`:M(this.params.desiredState.playbackState,`paused`);break;case`PLAYING`:M(this.params.desiredState.playbackState,`playing`);break;case`IDLE`:t===`FINISHED`?(this.params.output.endedEvent$.next(),M(this.params.desiredState.playbackState,`stopped`),this.contentId$.next(null)):M(this.params.desiredState.playbackState,`ready`);break;case`BUFFERING`:break}}syncPlayback(){let e=this.params.desiredState.playbackState.getState();switch(this.log({message:`[syncPlayback] ${e}`}),e){case`ready`:break;case`playing`:this.play();break;case`paused`:this.pause();break;case`stopped`:this.stop();break}}syncVolumeState(e){if(j.isNullable(e))return;let{level:t,muted:n}=e,r={muted:n??!1,volume:t??0};this.lastRequestedVolume&&=(n&&(r.volume=this.lastRequestedVolume.volume),this.lastRequestedVolume.muted&&!t&&!n&&(r.volume=this.lastRequestedVolume.volume,r.muted=!0),null);let i=`[syncVolumeState] volume: ${r.volume}, muted: ${r.muted}`;this.isMobile&&(this.mobileVolumeState.volume=r.volume,this.mobileVolumeState.muted=r.muted,r.volume=this.params.output.volume$.getValue().volume,i+=`, volume passed to state machine: ${r.volume}`),this.log({message:i}),this.params.output.volume$.next(r)}destroy(){this.progressTicker.destroy(),this.subscription.unsubscribe()}}var bi=require(`@vkontakte/videoplayer-shared/es2018`),xi=e=>({castDevice:{friendlyName:e},remotePlayer:{},remotePlayerController:{},session:{}}),Si=()=>String(Date.now())+String(Math.floor(Math.random()*1e5));class Ci{constructor(t){e(this,`params`,void 0),e(this,`clientId`,void 0),e(this,`capabilities`,[`WEB`]),e(this,`presentationRequest$`,new bi.ValueSubject(null)),e(this,`log`,void 0),e(this,`sessionId$`,new bi.ValueSubject(null)),e(this,`broadcastChannel`,new BroadcastChannel(`vk_player_chromecast_events`)),e(this,`subscription`,new bi.Subscription),e(this,`subscriptionEvents`,new bi.Subscription),e(this,`isDestroyed`,!1),e(this,`sequenceNumber`,0),e(this,`presentationAvailable$`,new bi.ValueSubject(!1)),e(this,`presentationConnection$`,new bi.ValueSubject(null)),e(this,`message$`,new bi.ValueSubject(null)),e(this,`friendlyName$`,new bi.ValueSubject(null)),e(this,`errorEvent$`,new bi.Subject),this.clientId=this.getClientId(),this.params=t,this.log=t.logger.createComponentLog(`ChromecastPresentationApiConnector`),this.log({message:`constructor`}),this.reinitPresentation(),this.subscribe()}destroy(){this.log({message:`destroy`}),this.subscription.unsubscribe(),this.subscriptionEvents.unsubscribe(),this.broadcastChannel.close(),this.isDestroyed=!0}disconnect(e=!0){this.log({message:`disconnect`}),e&&this.stopMedia(),this.presentationRequest$.next(null);let t=this.presentationConnection$.getValue();t&&t.close(),this.presentationConnection$.next(null),this.friendlyName$.next(null),this.resetSequenceNumber(),this.resetSubscriptionEvents()}stopMedia(){this.log({message:`stopMedia`}),this.sendV2Message({type:`STOP`})}reinitPresentation(e=!0){let t=this.createCastUrl(),n=new PresentationRequest(t);this.presentationRequest$.next(n),this.log({message:`PresentationRequest created`}),n.getAvailability().then(e=>{let t=()=>{this.log({message:`PresentationRequest presentation availability: ${e.value}`}),this.presentationAvailable$.next(e.value)};this.subscriptionEvents.add(bi.fromEvent(e,`change`).subscribe(()=>{t()})),t()}).catch(()=>{this.presentationAvailable$.next(!0)}),window.navigator.presentation.defaultRequest=n,e&&n.reconnect(`auto-join`).then(e=>{this.log({message:`PresentationRequest reconnect success`}),this.handleConnection(e)}).catch(()=>{this.log({message:`PresentationRequest reconnect failed`})})}async connect(){this.log({message:`connect`});try{this.presentationRequest$.getValue()||(this.log({message:`reinitPresentation`}),this.reinitPresentation(!1));let e=this.presentationRequest$.getValue();bi.assertNonNullable(e,`connect with null presentationRequest`);let t=await e.start();this.handleConnection(t)}catch(e){switch(e?.name){case`AbortError`:case`NotAllowedError`:break;default:this.errorEvent$.next({category:bi.ErrorCategory.WTF,id:`ChromecastPresentationApiConnector`,message:e?.message??`connect error`,thrown:e});break}}}subscribe(){this.subscription.add(bi.fromEvent(this.broadcastChannel,`message`).subscribe(e=>{this.log({message:`broadcast connection data: ${e.data}`}),e.data===`connection`&&this.disconnect(!1)})),this.subscription.add(this.presentationAvailable$.subscribe(e=>{this.log({message:`presentationAvailable$: ${e}`})})),this.subscription.add(this.presentationConnection$.pipe(bi.tap(e=>{this.log({message:`presentationConnection$: ${!!e}`})}),bi.filter(e=>!!e)).subscribe(e=>{let t=bi.fromEvent(e,`message`).subscribe(e=>{let t=JSON.parse(e.data);t.clientId===this.clientId&&(this.log({message:`[onmessage] ${e.data}`}),this.handleMessage(t),this.message$.next(t))}),n=bi.fromEvent(e,`connect`).subscribe(()=>{this.send(`client_connect`)}),r=bi.fromEvent(e,`close`).subscribe(e=>{switch(e.reason){case`error`:this.errorEvent$.next({category:bi.ErrorCategory.WTF,id:`ChromecastPresentationApiConnector`,message:`Session error`,thrown:e});break;case`closed`:break}});this.subscriptionEvents.add(t),this.subscriptionEvents.add(n),this.subscriptionEvents.add(r)}))}send(e){switch(e){case`client_connect`:{let e={type:`client_connect`,message:this.clientId,sequenceNumber:-1,timeoutMillis:0,clientId:this.clientId};this.safeSend(JSON.stringify(e));break}}}sendV2Message(e){let t=this.sessionId$.getValue();if(t){let n={type:`v2_message`,sequenceNumber:this.getSequenceNumber(),timeoutMillis:0,clientId:this.clientId,message:{...e,sessionId:t}};this.safeSend(JSON.stringify(n))}}safeSend(e){try{this.log({message:`[send] ${e}`});let t=this.presentationConnection$.getValue();t?.state===`connected`&&t?.send(e)}catch(t){this.errorEvent$.next({category:bi.ErrorCategory.WTF,id:`ChromecastPresentationApiConnector`,message:`PresentationConnection send error`,data:{message:e},thrown:t})}}handleMessage(e){switch(e.type){case`new_session`:case`update_session`:this.sessionId$.next(e.message.sessionId),this.friendlyName$.next(e.message.receiver.friendlyName||`Chromecast Device`);break;case`receiver_action`:e.message?.action===`stop`&&this.disconnect();break}}createCastUrl(){return`cast:${this.params.appId}?clientId=${this.clientId}&autoJoinPolicy=tab_and_origin_scoped&defaultActionPolicy=create_session&launchTimeout=60000&supportedAppTypes=${this.capabilities}&appParams=%7B%22launchCheckerParams%22%3A%7B%7D%7D`}getSequenceNumber(){let e=this.sequenceNumber;return this.sequenceNumber=(this.sequenceNumber+1)%(2**53-1),e}resetSequenceNumber(){this.sequenceNumber=0}getClientId(){let e=`__vk_player_chromecast_id`;return window[e]=window[e]||Si()}resetSubscriptionEvents(){this.subscriptionEvents.unsubscribe(),this.subscriptionEvents=new bi.Subscription}handleConnection(e){this.log({message:`connection available`}),this.isDestroyed?(this.log({message:`connected on already destroyed component`}),e.close()):(this.broadcastChannel.postMessage(`connection`),this.presentationConnection$.next(e))}}var wi=require(`@vkontakte/videoplayer-shared/es2018`);class Ti{static isSupported(){return`chrome`in window&&`presentation`in navigator&&`BroadcastChannel`in window}constructor(t){e(this,`subscription`,new wi.Subscription),e(this,`log`,void 0),e(this,`contentId`,void 0),e(this,`connection$`,new wi.ValueSubject(void 0)),e(this,`castState$`,new wi.ValueSubject(`NOT_AVAILABLE`)),e(this,`errorEvent$`,new wi.Subject),e(this,`chromecastConnector`,void 0);let n=Ti.isSupported();this.log=t.dependencies.logger.createComponentLog(`ChromecastPresentationApiInitializer`),this.log({message:`[constructor] receiverApplicationId: ${t.receiverApplicationId}, isDisabled: ${t.isDisabled}, isSupported: ${n}`}),!(!n||t.isDisabled||!t.receiverApplicationId)&&(this.chromecastConnector=new Ci({appId:t.receiverApplicationId,logger:t.dependencies.logger}),this.subscribe())}subscribe(){wi.assertNonNullable(this.chromecastConnector,`subscribe with null chromecastConnector`),this.subscription.add(this.chromecastConnector.errorEvent$.subscribe(this.errorEvent$));let e=wi.combine({connection:this.chromecastConnector.presentationConnection$,available:this.chromecastConnector.presentationAvailable$,friendlyName:this.chromecastConnector.friendlyName$.pipe(wi.filterChanged())});this.subscription.add(e.pipe(wi.map(({connection:e,friendlyName:t})=>!!(e&&t)),wi.filterChanged()).subscribe(e=>{let t=this.chromecastConnector?.friendlyName$.getValue()??``;this.connection$.next(e?xi(t):void 0)})).add(e.subscribe(({available:e,connection:t})=>{e?t?this.castState$.next(`CONNECTED`):this.castState$.next(`AVAILABLE`):this.castState$.next(`NOT_AVAILABLE`)}))}connect(){this.log({message:`connect`}),this.chromecastConnector?.connect()}disconnect(){this.log({message:`disconnect`}),this.chromecastConnector?.disconnect()}async stopMedia(){this.log({message:`stopMedia`}),this.chromecastConnector?.stopMedia()}toggleConnection(){let e=!!this.chromecastConnector?.presentationConnection$.getValue();this.log({message:`toggleConnection: isConnected - ${e}`}),e?this.disconnect():this.connect()}setVolume(e){}setMuted(e){}destroy(){this.log({message:`destroy`}),this.chromecastConnector?.destroy(),this.subscription.unsubscribe()}}var Ei=u(at(),1),Di=(e,...t)=>typeof e==`string`?e.includes(...t):Ei.default(e,...t),Oi=u(lt(),1),ki=u(Ht(),1),Ai=u(En(),1),ji=require(`@vkontakte/videoplayer-shared/es2018`);class P{constructor(t){e(this,`state`,void 0),e(this,`prevState`,void 0),e(this,`transition`,void 0),e(this,`transitionStarted$`,new ji.Subject),e(this,`transitionEnded$`,new ji.Subject),e(this,`transitionUpdated$`,new ji.Subject),e(this,`forceChanged$`,new ji.Subject),e(this,`stateChangeStarted$`,ji.merge(this.transitionStarted$,this.transitionUpdated$)),e(this,`stateChangeEnded$`,ji.merge(this.transitionEnded$,this.forceChanged$)),this.state=t,this.prevState=void 0}setState(e){let t=this.transition,n=this.state;this.transition=void 0,this.prevState=n,this.state=e,t?t.to===e?this.transitionEnded$.next(t):this.forceChanged$.next({from:t.from,to:e,canceledTransition:t}):this.forceChanged$.next({from:n,to:e,canceledTransition:t})}startTransitionTo(e){let t=this.transition,n=this.state;n===e||ji.isNonNullable(t)&&t.to===e||(this.prevState=n,this.state=e,t?(this.transition={from:t.from,to:e,canceledTransition:t},this.transitionUpdated$.next(this.transition)):(this.transition={from:n,to:e},this.transitionStarted$.next(this.transition)))}getTransition(){return this.transition}getState(){return this.state}getPrevState(){return this.prevState}}var F=require(`@vkontakte/videoplayer-shared/es2018`),Mi=5,Ni=5,Pi=500,Fi=7e3;class Ii{constructor(t){e(this,`subscription`,new F.Subscription),e(this,`loadMediaTimeoutSubscription`,new F.Subscription),e(this,`videoState`,new P(`stopped`)),e(this,`params`,void 0),e(this,`log`,void 0),e(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),n=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),i=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${n}; desiredPlaybackStateTransition: ${this.params.desiredState.playbackState.getTransition()}; seekState: ${JSON.stringify(i)};`}),n===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.stop());return}if(!t){if(r?.to!==`paused`&&i.state===`requested`&&e!==`stopped`){this.seek(i.position/1e3);return}switch(n){case`ready`:switch(e){case`playing`:case`paused`:case`ready`:break;case`stopped`:this.videoState.startTransitionTo(`ready`),this.prepare();break;default:F.assertNever(e)}break;case`playing`:switch(e){case`playing`:break;case`paused`:this.videoState.startTransitionTo(`playing`),this.params.connection.remotePlayerController.playOrPause();break;case`ready`:this.videoState.startTransitionTo(`playing`),this.params.connection.remotePlayerController.playOrPause();break;case`stopped`:this.videoState.startTransitionTo(`ready`),this.prepare();break;default:F.assertNever(e)}break;case`paused`:switch(e){case`playing`:this.videoState.startTransitionTo(`paused`),this.params.connection.remotePlayerController.playOrPause();break;case`paused`:break;case`ready`:this.videoState.startTransitionTo(`paused`),this.videoState.setState(`paused`);break;case`stopped`:this.videoState.startTransitionTo(`ready`),this.prepare();break;default:F.assertNever(e)}break;default:F.assertNever(n)}}}),this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`ChromecastProvider`),this.log({message:`constructor, format: ${t.format}`}),this.params.output.isLive$.next(_i(t.format)),this.params.output.isAudioAvailable$.next(!0),this.handleRemoteVolumeChange({volume:this.params.connection.remotePlayer.volumeLevel,muted:this.params.connection.remotePlayer.isMuted});let n=this.params.connection.session.getMediaSession();n&&this.restoreSession(n),this.subscribe()}destroy(){this.log({message:`[destroy]`}),this.subscription.unsubscribe()}subscribe(){this.subscription.add(this.loadMediaTimeoutSubscription);let e=new F.Subscription;this.subscription.add(e),this.subscription.add(F.merge(this.videoState.stateChangeStarted$.pipe(F.map(e=>`stateChangeStarted$ ${JSON.stringify(e)}`)),this.videoState.stateChangeEnded$.pipe(F.map(e=>`stateChangeEnded$ ${JSON.stringify(e)}`))).subscribe(e=>this.log({message:`[videoState] ${e}`})));let t=(e,t)=>this.subscription.add(e.subscribe(t));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let t=new F.Subject;e.add(t.pipe(F.debounce(Pi)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let n=NaN;e.add(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.CURRENT_TIME_CHANGED).subscribe(e=>{this.logRemoteEvent(e);let r=e.value;this.params.output.position$.next(r),(this.params.desiredState.seekState.getState().state===`applying`||Math.abs(r-n)>Mi)&&t.next(r),n=r})),e.add(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(e=>{this.logRemoteEvent(e),this.params.output.duration$.next(e.value)}))}t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MEDIA_LOADED_CHANGED),t=>{this.logRemoteEvent(t),t.value?this.handleRemoteReady():(this.handleRemoteStop(),e.unsubscribe())}),t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),e=>{this.logRemoteEvent(e),e.value?this.handleRemotePause():this.handleRemotePlay()}),t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),e=>{this.logRemoteEvent(e);let{remotePlayer:t}=this.params.connection,n=e.value,r=this.params.output.isBuffering$.getValue(),i=n===chrome.cast.media.PlayerState.BUFFERING;switch(r!==i&&this.params.output.isBuffering$.next(i),n){case chrome.cast.media.PlayerState.IDLE:!this.params.output.isLive$.getValue()&&t.duration-t.currentTime<Ni&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),M(this.params.desiredState.playbackState,`stopped`);break;case chrome.cast.media.PlayerState.PAUSED:this.handleRemotePause();break;case chrome.cast.media.PlayerState.PLAYING:this.handleRemotePlay();break;case chrome.cast.media.PlayerState.BUFFERING:break;default:F.assertNever(n)}}),t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),e=>{this.logRemoteEvent(e),this.handleRemoteVolumeChange({volume:e.value})}),t(F.fromEvent(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),e=>{this.logRemoteEvent(e),this.handleRemoteVolumeChange({muted:e.value})}),t(F.merge(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,F.observableFrom([`init`])).pipe(F.debounce(0)),this.syncPlayback)}restoreSession(e){this.log({message:`restoreSession`});let{remotePlayer:t}=this.params.connection;if(e.playerState!==chrome.cast.media.PlayerState.IDLE){t.isPaused?(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`)):(this.videoState.setState(`playing`),M(this.params.desiredState.playbackState,`playing`));let e=this.params.output.isLive$.getValue();this.params.output.duration$.next(e?0:t.duration),this.params.output.position$.next(e?0:t.currentTime),this.params.desiredState.seekState.setState({state:`none`})}}prepare(){let e=this.params.format;this.log({message:`[prepare] format: ${e}`});let t=Fr(this.params),n=this.createLoadRequest(t);this.loadMedia(n)}handleRemotePause(){let e=this.videoState.getState();(this.videoState.getTransition()?.to===`paused`||e===`playing`)&&(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`))}handleRemotePlay(){let e=this.videoState.getState();(this.videoState.getTransition()?.to===`playing`||e===`paused`)&&(this.videoState.setState(`playing`),M(this.params.desiredState.playbackState,`playing`))}handleRemoteReady(){this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`),this.params.desiredState.playbackState.getTransition()?.to===`ready`&&M(this.params.desiredState.playbackState,`ready`)}handleRemoteStop(){this.videoState.getState()!==`stopped`&&this.videoState.setState(`stopped`)}handleRemoteVolumeChange(e){let t=this.params.output.volume$.getValue(),n={volume:e.volume??t.volume,muted:e.muted??t.muted};(n.volume!==t.volume||n.muted!==n.muted)&&this.params.output.volume$.next(n)}seek(e){this.params.output.willSeekEvent$.next();let{remotePlayer:t,remotePlayerController:n}=this.params.connection;t.currentTime=e,n.seek()}stop(){let{remotePlayerController:e}=this.params.connection;e.stop()}createLoadRequest(e){let t=new chrome.cast.media.LoadRequest(e);t.autoplay=!1;let n=this.params.desiredState.seekState.getState();return n.state===`applying`||n.state===`requested`?t.currentTime=this.params.output.isLive$.getValue()?0:n.position/1e3:t.currentTime=0,t}loadMedia(e){let t=this.params.connection.session.loadMedia(e),n=new Promise((e,t)=>{this.loadMediaTimeoutSubscription.add(F.timeout(Fi).subscribe(()=>t(`timeout(${Fi})`)))});Ai.default(Promise.race([t,n]).then(()=>{this.log({message:`[loadMedia] completed, format: ${this.params.format}`}),this.params.desiredState.seekState.getState().state===`applying`&&this.params.output.seekedEvent$.next(),this.handleRemoteReady()},e=>{let t=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${e}`;this.log({message:t}),this.params.output.error$.next({id:`ChromecastProvider.loadMedia`,category:F.ErrorCategory.VIDEO_PIPELINE,message:t,thrown:e})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}}var Li=u(at(),1),Ri=require(`@vkontakte/videoplayer-shared/es2018`),zi=require(`@vkontakte/videoplayer-shared/es2018`),Bi=(e,t)=>{try{e.pause(),e.playbackRate=0,zi.clearVideoElement(e,t),e.remove()}catch(e){console.error(e)}},Vi=require(`@vkontakte/videoplayer-shared/es2018`);class Hi{constructor(){e(this,`attribute`,`data-pool-reused`)}get(e){return e.hasAttribute(this.attribute)}set(e,t){e.toggleAttribute(this.attribute,t)}delete(e){e.removeAttribute(this.attribute)}}var Ui=Ri.getWindow(),Wi=Ui.WeakMap?new Ui.WeakMap:new Hi,Gi=Ui.WeakMap?new Ui.WeakMap:new Map,Ki=(e,t=20)=>{let n=0;return Vi.fromEvent(e,`ratechange`).subscribe(r=>{n++,n>=t&&(e.currentTime=e.currentTime,n=0)})},qi=(e,{audioVideoSyncRate:t,disableYandexPiP:n,clearVideoElementInnerHTML:r})=>{let i=e.querySelector(`video`),a=!!i;i?Ri.clearVideoElement(i,r):(i=document.createElement(`video`),e.appendChild(i)),Wi.set(i,a);let o=new Vi.Subscription;return o.add(Ki(i,t)),Gi.set(i,o),i.setAttribute(`crossorigin`,`anonymous`),i.setAttribute(`playsinline`,`playsinline`),n&&i.setAttribute(`x-yandex-pip`,`false`),i.controls=!1,i.setAttribute(`poster`,`data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII=`),i},Ji=(e,t=!1,n=!1)=>{Gi.get(e)?.unsubscribe(),Gi.delete(e);let r=Wi.get(e);Wi.delete(e),r||t?Ri.clearVideoElement(e,n):Bi(e,n)},Yi=u($e(),1),I=require(`@vkontakte/videoplayer-shared/es2018`),Xi=require(`@vkontakte/videoplayer-shared/es2018`),Zi=(e,t,n,{equal:r=(e,t)=>e===t,changed$:i,onError:a}={})=>{let o=e.getState(),s=t(),c=Xi.isNullable(i),l=new Xi.Subscription;return i&&l.add(i.subscribe(t=>{r(t,e.getState())&&e.setState(t)},a)),r(s,o)||(n(o),c&&e.setState(o)),l.add(e.stateChangeStarted$.subscribe(t=>{n(t.to),c&&e.setState(t.to)},a)),l},Qi=(e,t,n)=>Zi(t,()=>e.loop,t=>{Xi.isNonNullable(t)&&(e.loop=t)},{onError:n}),$i=(e,t,n,r)=>Zi(t,()=>({muted:e.muted,volume:e.volume}),t=>{Xi.isNonNullable(t)&&(e.muted=t.muted,e.volume=t.volume)},{equal:(e,t)=>e===t||e?.muted===t?.muted&&e?.volume===t?.volume,changed$:n,onError:r}),ea=(e,t,n,r)=>Zi(t,()=>e.playbackRate,t=>{Xi.isNonNullable(t)&&(e.playbackRate=t)},{changed$:n,onError:r}),ta=Zi,na=e=>[`__`,e.language,e.label].join(`|`),ra=(e,t)=>{if(e.id===t)return!0;let[n,r,i]=t.split(`|`);return e.language===r&&e.label===i};class ia{constructor(t){e(this,`available$`,new I.Subject),e(this,`current$`,new I.ValueSubject(void 0)),e(this,`error$`,new I.Subject),e(this,`video`,void 0),e(this,`cueSettings`,void 0),e(this,`subscription`,new I.Subscription),e(this,`externalTracks`,new Map),e(this,`internalTracks`,new Map),e(this,`baseURL`,void 0),this.baseURL=t}connect(e,t,n){this.video=e,this.cueSettings=t.textTrackCuesSettings,this.subscribe();let r=e=>{this.error$.next({id:`TextTracksManager`,category:I.ErrorCategory.WTF,message:`Generic HtmlVideoTextTrackManager error`,thrown:e})};this.subscription.add(this.available$.subscribe(n.availableTextTracks$)),this.subscription.add(this.current$.subscribe(n.currentTextTrack$)),this.subscription.add(this.error$.subscribe(n.error$)),this.subscription.add(ta(t.internalTextTracks,()=>Yi.default(this.internalTracks),e=>{I.isNonNullable(e)&&this.setInternal(e)},{equal:(e,t)=>I.isNonNullable(e)&&I.isNonNullable(t)&&e.length===t.length&&e.every(({id:e},n)=>e===t[n].id),changed$:this.available$.pipe(I.map(e=>e.filter(({type:e})=>e===`internal`))),onError:r})),this.subscription.add(ta(t.externalTextTracks,()=>Yi.default(this.externalTracks),e=>{I.isNonNullable(e)&&this.setExternal(e)},{equal:(e,t)=>I.isNonNullable(e)&&I.isNonNullable(t)&&e.length===t.length&&e.every(({id:e},n)=>e===t[n].id),changed$:this.available$.pipe(I.map(e=>e.filter(({type:e})=>e===`external`))),onError:r})),this.subscription.add(ta(t.currentTextTrack,()=>{if(this.video)return;let e=this.htmlTextTracksAsArray().find(({mode:e})=>e===`showing`);return e&&this.htmlTextTrackToITextTrack(e).id},e=>this.select(e),{changed$:this.current$,onError:r})),this.subscription.add(ta(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let e of this.htmlTextTracksAsArray())this.applyCueSettings(e.cues),this.applyCueSettings(e.activeCues)}))}subscribe(){I.assertNonNullable(this.video);let{textTracks:e}=this.video;this.subscription.add(I.fromEvent(e,`addtrack`).subscribe(()=>{let e=this.current$.getValue();e&&this.select(e)})),this.subscription.add(I.merge(I.fromEvent(e,`addtrack`),I.fromEvent(e,`removetrack`),I.observableFrom([`init`])).pipe(I.map(()=>this.htmlTextTracksAsArray().map(e=>this.htmlTextTrackToITextTrack(e))),I.filterChanged((e,t)=>e.length===t.length&&e.every(({id:e},n)=>e===t[n].id))).subscribe(this.available$)),this.subscription.add(I.merge(I.fromEvent(e,`change`),I.observableFrom([`init`])).pipe(I.map(()=>this.htmlTextTracksAsArray().find(({mode:e})=>e===`showing`)),I.map(e=>e&&this.htmlTextTrackToITextTrack(e).id),I.filterChanged()).subscribe(this.current$));let t=e=>this.applyCueSettings(e.target?.activeCues??null);this.subscription.add(I.fromEvent(e,`addtrack`).subscribe(e=>{e.track?.addEventListener(`cuechange`,t);let n=e=>{let t=e.target?.cues??null;t&&t.length&&(this.applyCueSettings(e.target?.cues??null),e.target?.removeEventListener(`cuechange`,n))};e.track?.addEventListener(`cuechange`,n)})),this.subscription.add(I.fromEvent(e,`removetrack`).subscribe(e=>{e.track?.removeEventListener(`cuechange`,t)}))}applyCueSettings(e){if(!e||!e.length)return;let t=this.cueSettings.getState();for(let n of Array.from(e)){let e=n;I.isNonNullable(t.align)&&(e.align=t.align),I.isNonNullable(t.position)&&(e.position=t.position),I.isNonNullable(t.size)&&(e.size=t.size),I.isNonNullable(t.line)&&(e.line=t.line)}}htmlTextTracksAsArray(e=!1){I.assertNonNullable(this.video);let t=[...this.video.textTracks];return e?t:t.filter(ia.isHealthyTrack)}htmlTextTrackToITextTrack(e){let{language:t,label:n}=e,r=e.id?e.id:na(e),i=this.externalTracks.has(r),a=(i?this.externalTracks.get(r)?.isAuto:this.internalTracks.get(r)?.isAuto)??r.includes(`auto`);return i?{id:r,type:`external`,isAuto:a,language:t,label:n,url:this.externalTracks.get(r)?.url}:{id:r,type:`internal`,isAuto:a,language:t,label:n,url:this.internalTracks.get(r)?.url}}static isHealthyTrack(e){return!(e.kind===`metadata`||e.groupId||e.id===``&&e.label===``&&e.language===``)}setExternal(e){this.internalTracks.size>0&&Array.from(this.internalTracks).forEach(([,e])=>this.detach(e)),e.filter(({id:e})=>!this.externalTracks.has(e)).forEach(e=>this.attach(e)),Array.from(this.externalTracks).filter(([t])=>!e.find(e=>e.id===t)).forEach(([,e])=>this.detach(e))}setInternal(e){let t=[...this.externalTracks];e.filter(({id:e,language:n,isAuto:r})=>!this.internalTracks.has(e)&&!t.some(([,e])=>e.language===n&&e.isAuto===r)).forEach(e=>this.attach(e)),Array.from(this.internalTracks).filter(([t])=>!e.find(e=>e.id===t)).forEach(([,e])=>this.detach(e))}select(e){I.assertNonNullable(this.video);for(let e of this.htmlTextTracksAsArray(!0))e.mode=`showing`;for(let t of this.htmlTextTracksAsArray(!0))(I.isNullable(e)||!ra(t,e))&&(t.mode=`disabled`)}destroy(){if(this.subscription.unsubscribe(),this.video)for(let e of Array.from(this.video.getElementsByTagName(`track`))){let t=e.getAttribute(`id`);t&&this.externalTracks.has(t)&&this.video.removeChild(e)}this.externalTracks.clear()}attach(e){I.assertNonNullable(this.video);let t=document.createElement(`track`);this.baseURL?t.setAttribute(`src`,new URL(e.url,this.baseURL).toString()):t.setAttribute(`src`,e.url),t.setAttribute(`id`,e.id),e.label&&t.setAttribute(`label`,e.label),e.language&&t.setAttribute(`srclang`,e.language),e.type===`external`?this.externalTracks.set(e.id,e):e.type===`internal`&&this.internalTracks.set(e.id,e),this.video.appendChild(t)}detach(e){I.assertNonNullable(this.video);let t=Array.prototype.find.call(this.video.getElementsByTagName(`track`),t=>t.getAttribute(`id`)===e.id);t&&this.video.removeChild(t),e.type===`external`?this.externalTracks.delete(e.id):e.type===`internal`&&this.internalTracks.delete(e.id)}}var aa=ia;class oa{constructor(){e(this,`pausedTime`,0),e(this,`streamOffset`,0),e(this,`pauseTimestamp`,0)}getTotalPausedTime(){return this.pausedTime+this.getCurrentPausedTime()}getCurrentPausedTime(){return this.pauseTimestamp>0?Date.now()-this.pauseTimestamp:0}getStreamOffset(){return this.streamOffset}getTotalOffset(){return this.getTotalPausedTime()+this.streamOffset}pause(){this.pauseTimestamp===0&&(this.pauseTimestamp=Date.now())}resume(){this.pauseTimestamp>0&&(this.pausedTime+=this.getCurrentPausedTime(),this.pauseTimestamp=0)}resetTo(e,t=!1){this.streamOffset=e,this.pauseTimestamp=0,this.pausedTime=0,t&&this.pause()}}var sa=e=>{let t=e;for(;!(t instanceof Document)&&!(t instanceof ShadowRoot)&&t!==null;)t=t?.parentNode;return t??void 0},ca=e=>{let t=sa(e);return!!(t&&t.fullscreenElement&&t.fullscreenElement===e)},la=e=>{let t=sa(e);return!!(t&&t.pictureInPictureElement&&t.pictureInPictureElement===e)},L=require(`@vkontakte/videoplayer-shared/es2018`),ua=3,da=(e,t,n=ua)=>{let r=0,i=0;for(let a=0;a<e.length;a++){let o=e.start(a),s=e.end(a);if(o<=t&&t<=s){if(r=o,i=s,!n)return{from:r,to:i};for(let t=a-1;t>=0;t--)e.end(t)+n>=r&&(r=e.start(t));for(let t=a+1;t<e.length;t++)e.start(t)-n<=i&&(i=e.end(t))}}return{from:r,to:i}},fa=e=>{let t=t=>L.fromEvent(e,t).pipe(L.mapTo(void 0),L.shareReplay(1)),n=new L.Subscription,r=()=>n.unsubscribe(),i=L.merge(L.fromEvent(e,`progress`),L.fromEvent(e,`timeupdate`)).pipe(L.map(()=>da(e.buffered,e.currentTime)),L.shareReplay(1)),a=N.browser.isSafari?L.combine({play:t(`play`).pipe(L.once()),playing:t(`playing`)}).pipe(L.mapTo(void 0),L.shareReplay(1)):t(`playing`),o=L.fromEvent(e,`volumechange`).pipe(L.map(()=>({muted:e.muted,volume:e.volume})),L.shareReplay(1)),s=L.fromEvent(e,`ratechange`).pipe(L.map(()=>e.playbackRate),L.shareReplay(1)),c=L.fromEvent(e,`error`).pipe(L.filter(()=>!!(e.error||e.played.length)),L.map(()=>{let t=e.error;return{id:t?`MediaError#${t.code}`:`HtmlVideoError`,category:L.ErrorCategory.VIDEO_PIPELINE,message:t?t.message:`Error event from HTML video element`,thrown:e.error??void 0}}),L.shareReplay(1)),l=L.fromEvent(e,`timeupdate`).pipe(L.map(()=>e.currentTime),L.shareReplay(1)),u=[`waiting`,`seeking`,`seeked`,`timeupdate`],d=new L.Subject,f=.3,p;n.add(L.merge(...u.map(t=>L.fromEvent(e,t))).subscribe(t=>{let n=e.currentTime;e.loop&&L.isNonNullable(p)&&L.isNonNullable(n)&&p>=e.duration-f&&n<=f&&d.next(p),p=n}));let m=t(`pause`).pipe(L.filter(()=>!e.error&&p!==e.duration),L.shareReplay(1)),h=L.fromEvent(e,`enterpictureinpicture`).pipe(L.shareReplay(1)),g=L.fromEvent(e,`leavepictureinpicture`).pipe(L.shareReplay(1)),_=new L.ValueSubject(la(e));n.add(h.subscribe(()=>_.next(!0))),n.add(g.subscribe(()=>_.next(!1)));let v=new L.ValueSubject(ca(e)),y=L.fromEvent(e,`fullscreenchange`).pipe(L.shareReplay(1));n.add(y.pipe(L.map(()=>ca(e))).subscribe(v));let b=L.fromEvent(e,`timeupdate`).pipe(L.map(t=>e.duration-e.currentTime<.1),L.filterChanged(),L.shareReplay(1)),x=L.merge(b.pipe(L.filter(t=>!e.loop&&t)),L.fromEvent(e,`ended`)).pipe(L.throttle(1e3),L.mapTo(void 0),L.shareReplay(1)),S=L.merge(...[`waiting`,`pause`,`canplay`,`play`,`canplaythrough`,`playing`,`seeking`,`seeked`,`ended`].map(t=>L.fromEvent(e,t)),b.pipe(L.map(e=>({type:e?`ended`:`unknown`})))).pipe(L.map(t=>N.browser.isFirefox&&t.type===`ended`?e.readyState<2:e.readyState<3),L.filterChanged(),L.shareReplay(1));return{playing$:a,pause$:m,canplay$:t(`canplay`),ended$:x,looped$:d,error$:c,seeked$:t(`seeked`),seeking$:t(`seeking`),progress$:t(`progress`),loadStart$:t(`loadstart`),loadedMetadata$:t(`loadedmetadata`),loadedData$:t(`loadeddata`),timeUpdate$:l,durationChange$:L.fromEvent(e,`durationchange`).pipe(L.map(()=>e.duration),L.shareReplay(1)),isBuffering$:S,currentBuffer$:i,volumeState$:o,playbackRateState$:s,inPiP$:_,inFullscreen$:v,enterPip$:h,leavePip$:g,destroy:r}},pa=require(`@vkontakte/videoplayer-shared/es2018`),ma=e=>{switch(e){case`mobile`:return pa.VideoQuality.Q_144P;case`lowest`:return pa.VideoQuality.Q_240P;case`low`:return pa.VideoQuality.Q_360P;case`sd`:case`medium`:return pa.VideoQuality.Q_480P;case`hd`:case`high`:return pa.VideoQuality.Q_720P;case`fullhd`:case`full`:return pa.VideoQuality.Q_1080P;case`quadhd`:case`quad`:return pa.VideoQuality.Q_1440P;case`ultrahd`:case`ultra`:return pa.VideoQuality.Q_2160P}},ha=u(An(),1),ga=u(at(),1),_a=u(lt(),1),R=require(`@vkontakte/videoplayer-shared/es2018`),va=!1,ya={},ba=e=>{va=e},xa=()=>{ya={}},Sa=e=>{e(ya)},Ca=(e,t)=>{va&&(ya.meta=ya.meta??{},ya.meta[e]=t)};class wa{constructor(t){e(this,`name`,void 0),this.name=t}next(e){if(!va)return;ya.series=ya.series??{};let t=ya.series[this.name]??[];t.push([Date.now(),e]),ya.series[this.name]=t}}var Ta=require(`@vkontakte/videoplayer-shared/es2018`);function Ea(e,t,n){return!e.max&&e.min===t?`high_quality`:!e.min&&e.max===n?`traffic_saving`:`unknown`}function Da(e,t,n){return Ta.isNullable(e)||Ta.isNonNullable(e.min)&&Ta.isNonNullable(e.max)&&Ta.isLower(e.max,e.min)||Ta.isNonNullable(e.min)&&Ta.isNonNullable(t)&&Ta.isHigher(e.min,t)||Ta.isNonNullable(e.max)&&Ta.isNonNullable(n)&&Ta.isLower(e.max,n)}function Oa({limits:e,highestAvailableHeight:t,lowestAvailableHeight:n}){return Da({max:e?.max?Ta.videoHeightToQuality(e.max):void 0,min:e?.min?Ta.videoHeightToQuality(e.min):void 0},t?Ta.videoHeightToQuality(t):void 0,n?Ta.videoHeightToQuality(n):void 0)}var ka=new wa(`best_bitrate`),Aa=(e,t,n)=>(t-n)*2**(-10*e)+n,ja=e=>(t,n)=>e*(Number(t.bitrate)-Number(n.bitrate));class Ma{constructor(){e(this,`last`,void 0),e(this,`history`,{})}recordSelection(e){this.history[e.id]=R.now()}recordSwitch(e){this.last=e}clear(){this.last=void 0,this.history={}}}var Na=`Assertion "ABR Tracks is empty array" failed`,Pa=new WeakMap,Fa=new WeakMap,Ia=new WeakMap,La=(e,t,n,r)=>{let i=[...t].sort(ja(1)),a=[...n].sort(ja(1)),o=a.filter(t=>R.isNonNullable(t.bitrate)&&R.isNonNullable(e.bitrate)?e.bitrate/t.bitrate>r:!0),s=ha.default(a,Math.round(a.length*i.indexOf(e)/(i.length+1)))??ha.default(a,-1);return s&&ga.default(o,s)?s:o.length?ha.default(o,-1):ha.default(a,0)},Ra=(e,t,n,r)=>{let i=Pa.get(t);i||(i=[...t].sort(ja(1)),Pa.set(t,i));let a=Pa.get(n);a||(a=[...n].sort(ja(1)),Pa.set(n,a));let o=Ia.get(e);o||(o=a.filter(t=>R.isNonNullable(t.bitrate)&&R.isNonNullable(e.bitrate)?e.bitrate/t.bitrate>r:!0),Ia.set(e,o));let s=ha.default(a,Math.round(a.length*i.indexOf(e)/(i.length+1)))??ha.default(a,-1);return s&&ga.default(o,s)?s:o.length?ha.default(o,-1):ha.default(a,0)},za=e=>`quality`in e,Ba=(e,t,n,r)=>{var i;let a=R.isNonNullable(r==null||(i=r.last)==null?void 0:i.bitrate)&&R.isNonNullable(n?.bitrate)&&r.last.bitrate<n.bitrate?e.trackCooldownIncreaseQuality:e.trackCooldownDecreaseQuality,o=n&&r&&r.history[n.id]&&R.now()-r.history[n.id]<=a&&(!r.last||n.id!==r.last.id);if(n?.id&&r&&!o&&r.recordSelection(n),o&&r?.last){let e=r.last;return r?.recordSwitch(e),t({message:`
8
+ [last ${za(e)?`video`:`audio`} selected] ${za(e)?e.quality:e.bitrate}
9
+ `}),e}return r?.recordSwitch(n),n},Va=(e,t)=>Math.log(t)/Math.log(e),Ha=({tuning:e,container:t,limits:n,panelSize:r})=>{let i=e.containerSizeFactor;if(r)return{containerSizeLimit:r,containerSizeFactor:i};if(e.usePixelRatio&&N.display.pixelRatio){let t=N.display.pixelRatio;if(e.pixelRatioMultiplier)i*=e.pixelRatioMultiplier*(t-1)+1;else{let n=e.pixelRatioLogBase,[r=0,a=0,o=0]=e.pixelRatioLogCoefficients,s=Va(n,r*t+a)+o;Number.isFinite(s)&&(i*=s)}}return R.isNonNullable(n?.min)&&R.isHigherOrEqual(n.min,e.highQualityLimit)&&(i*=2),{containerSizeLimit:e.limitByContainer&&t&&t.width>0&&t.height>0?{width:t.width*i,height:t.height*i}:void 0,containerSizeFactor:i}},Ua=new WeakMap,Wa=(e,{container:t,estimatedThroughput:n,tuning:r,limits:i,reserve:a=0,forwardBufferHealth:o,playbackRate:s,current:c,history:l,visible:u,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:f,stallsPredictedThroughput:p,abrLogger:m,panelSize:h})=>{R.assertNotEmptyArray(e,Na);let{containerSizeFactor:g,containerSizeLimit:_}=Ha({container:t,tuning:r,limits:i,panelSize:h}),v=r.considerPlaybackRate&&R.isNonNullable(s)?s:1,y=Ua.get(e);y||(y=e.filter(e=>!R.isInvariantQuality(e.quality)).sort((e,t)=>R.isHigher(e.quality,t.quality)?-1:1),Ua.set(e,y));let b=ha.default(y,-1)?.quality,x=ha.default(y,0)?.quality,S=Da(i,x,b),C=v*Aa(o??.5,r.bitrateFactorAtEmptyBuffer,r.bitrateFactorAtFullBuffer),w={},T=null;for(let e of y){if(e.tvDisabled){w[e.quality]=`TvDisabled`;continue}let t=!0;if(_)if(e.size)t=e.size.width<=_.width&&e.size.height<=_.height;else{let n=_&&R.videoSizeToQuality(_);t=n?R.isLowerOrEqual(e.quality,n):!0}if(!t){w[e.quality]=`FitsContainer`;continue}let s=p||n,l=R.isNonNullable(s)&&isFinite(s)&&R.isNonNullable(e.bitrate)?s-a>=e.bitrate*C:!0,m=i?.min===e.quality;if(!l&&!m){w[e.quality]=`FitsThroughput`;continue}if(r.lazyQualitySwitch&&R.isNonNullable(r.minBufferToSwitchUp)&&c&&!R.isInvariantQuality(c.quality)&&(o??0)<r.minBufferToSwitchUp&&R.isHigher(e.quality,c.quality)){w[e.quality]=`Buffer`;continue}if(d&&R.isHigherOrEqual(e.quality,d)&&!m){w[e.quality]=`DroppedFramesLimit`;continue}if(f&&R.isHigherOrEqual(e.quality,f)&&!m){w[e.quality]=`StallsLimit`;continue}let h=S||(R.isNullable(i?.max)||R.isLowerOrEqual(e.quality,i.max))&&(R.isNullable(i?.min)||R.isHigherOrEqual(e.quality,i.min)),g=R.isNonNullable(u)&&!u?R.isLowerOrEqual(e.quality,r.backgroundVideoQualityLimit):!0;if(!h||!g){w[e.quality]=`FitsQualityLimits`;continue}T||=e}T&&T.bitrate&&ka.next(T.bitrate);let E=T??ha.default(y,-1)??e[0],D=l?.last,O=Ba(r,m,E,l);return R.isNonNullable(l)&&O.quality!==D?.quality&&m({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${s.map(k=>{var R,Z;return`{ id: ${k.id}, quality: ${k.quality}, bitrate: ${k.bitrate}, size: ${(R=k.size)==null?void 0:R.width}:${(Z=k.size)==null?void 0:Z.height} }`}).join(`
12
+ ${e.map(e=>`{ id: ${e.id}, quality: ${e.quality}, bitrate: ${e.bitrate}, size: ${e.size?.width}:${e.size?.height} }`).join(`
13
13
  `)}
14
14
 
15
15
  [tuning]
16
- ${(0,Ji.default)(i!=null?i:{}).map(([k,R])=>`${k}: ${R}`).join(`
16
+ ${_a.default(r??{}).map(([e,t])=>`${e}: ${t}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
- containerSizeFactor: ${S},
21
- containerSizeLimit: ${(A=v==null?void 0:v.width)!=null?A:0} x ${($=v==null?void 0:v.height)!=null?$:0},
22
- estimatedThroughput: ${t},
23
- stallsPredictedThroughput: ${h},
20
+ containerSizeFactor: ${g},
21
+ containerSizeLimit: ${_?.width??0} x ${_?.height??0},
22
+ estimatedThroughput: ${n},
23
+ stallsPredictedThroughput: ${p},
24
24
  reserve: ${a},
25
- playbackRate: ${o},
26
- playbackRateFactor: ${y},
27
- forwardBufferHealth: ${n},
28
- bitrateFactor: ${q},
29
- minBufferToSwitchUp: ${i.minBufferToSwitchUp},
25
+ playbackRate: ${s},
26
+ playbackRateFactor: ${v},
27
+ forwardBufferHealth: ${o},
28
+ bitrateFactor: ${C},
29
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
30
30
  droppedVideoMaxQualityLimit: ${d},
31
- stallsVideoMaxQualityLimit: ${p},
32
- limitsAreInvalid: ${_},
33
- maxQualityLimit: ${r==null?void 0:r.max},
34
- minQualityLimit: ${r==null?void 0:r.min},
31
+ stallsVideoMaxQualityLimit: ${f},
32
+ limitsAreInvalid: ${S},
33
+ maxQualityLimit: ${i?.max},
34
+ minQualityLimit: ${i?.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,Ji.default)(O).map(([k,R])=>`${k}: ${R}`).join(`
38
- `)||"All tracks are available"}
37
+ ${_a.default(w).map(([e,t])=>`${e}: ${t}`).join(`
38
+ `)||`All tracks are available`}
39
39
 
40
- [best video track] ${H==null?void 0:H.quality}
41
- [selected video track] ${U==null?void 0:U.quality}
42
- `}),U},eo=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:c,visible:l,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:p,stallsPredictedThroughput:h,abrLogger:m,panelSize:b})=>{var le,oe,A,$,k;(0,D.assertNotEmptyArray)(s,Jn);let{containerSizeFactor:S,containerSizeLimit:v}=pv({container:e,tuning:i,limits:r,panelSize:b}),y=i.considerPlaybackRate&&(0,D.isNonNullable)(o)?o:1,x=s.filter(R=>!(0,D.isInvariantQuality)(R.quality)).sort((R,Z)=>(0,D.isHigher)(R.quality,Z.quality)?-1:1),w=(le=(0,Ge.default)(x,-1))==null?void 0:le.quality,M=(oe=(0,Ge.default)(x,0))==null?void 0:oe.quality,_=Br(r,M,w),q=y*Xn(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),O={},V=x.filter(R=>{let Z=!0;if(v)if(R.size)Z=R.size.width<=v.width&&R.size.height<=v.height;else{let Ht=v&&(0,D.videoSizeToQuality)(v);Z=Ht?(0,D.isLowerOrEqual)(R.quality,Ht):!0}if(!Z)return O[R.quality]="FitsContainer",!1;let K=h||t,$t=(0,D.isNonNullable)(K)&&isFinite(K)&&(0,D.isNonNullable)(R.bitrate)?K-a>=R.bitrate*q:!0,Lt=(r==null?void 0:r.min)===R.quality;if(!$t&&!Lt)return O[R.quality]="FitsThroughput",!1;if(i.lazyQualitySwitch&&(0,D.isNonNullable)(i.minBufferToSwitchUp)&&u&&!(0,D.isInvariantQuality)(u.quality)&&(n!=null?n:0)<i.minBufferToSwitchUp&&(0,D.isHigher)(R.quality,u.quality))return O[R.quality]="Buffer",!1;if(!!d&&(0,D.isHigherOrEqual)(R.quality,d)&&!Lt)return O[R.quality]="DroppedFramesLimit",!1;if(!!p&&(0,D.isHigherOrEqual)(R.quality,p)&&!Lt)return O[R.quality]="StallsLimit",!1;let Ue=_||((0,D.isNullable)(r==null?void 0:r.max)||(0,D.isLowerOrEqual)(R.quality,r.max))&&((0,D.isNullable)(r==null?void 0:r.min)||(0,D.isHigherOrEqual)(R.quality,r.min)),st=(0,D.isNonNullable)(l)&&!l?(0,D.isLowerOrEqual)(R.quality,i.backgroundVideoQualityLimit):!0;return!Ue||!st?(O[R.quality]="FitsQualityLimits",!1):!0})[0];V&&V.bitrate&&dv.next(V.bitrate);let Q=(A=V!=null?V:(0,Ge.default)(x,-1))!=null?A:s[0],U=c==null?void 0:c.last,ie=Zn(i,m,Q,c);return(0,D.isNonNullable)(c)&&ie.quality!==(U==null?void 0:U.quality)&&m({message:`
40
+ [best video track] ${T?.quality}
41
+ [selected video track] ${O?.quality}
42
+ `}),O},Ga=(e,{container:t,estimatedThroughput:n,tuning:r,limits:i,reserve:a=0,forwardBufferHealth:o,playbackRate:s,current:c,history:l,visible:u,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:f,stallsPredictedThroughput:p,abrLogger:m,panelSize:h})=>{R.assertNotEmptyArray(e,Na);let{containerSizeFactor:g,containerSizeLimit:_}=Ha({container:t,tuning:r,limits:i,panelSize:h}),v=r.considerPlaybackRate&&R.isNonNullable(s)?s:1,y=e.filter(e=>!R.isInvariantQuality(e.quality)).sort((e,t)=>R.isHigher(e.quality,t.quality)?-1:1),b=ha.default(y,-1)?.quality,x=ha.default(y,0)?.quality,S=Da(i,x,b),C=v*Aa(o??.5,r.bitrateFactorAtEmptyBuffer,r.bitrateFactorAtFullBuffer),w={},T=y.filter(e=>{let t=!0;if(_)if(e.size)t=e.size.width<=_.width&&e.size.height<=_.height;else{let n=_&&R.videoSizeToQuality(_);t=n?R.isLowerOrEqual(e.quality,n):!0}if(!t)return w[e.quality]=`FitsContainer`,!1;let s=p||n,l=R.isNonNullable(s)&&isFinite(s)&&R.isNonNullable(e.bitrate)?s-a>=e.bitrate*C:!0,m=i?.min===e.quality;if(!l&&!m)return w[e.quality]=`FitsThroughput`,!1;if(r.lazyQualitySwitch&&R.isNonNullable(r.minBufferToSwitchUp)&&c&&!R.isInvariantQuality(c.quality)&&(o??0)<r.minBufferToSwitchUp&&R.isHigher(e.quality,c.quality))return w[e.quality]=`Buffer`,!1;if(d&&R.isHigherOrEqual(e.quality,d)&&!m)return w[e.quality]=`DroppedFramesLimit`,!1;if(f&&R.isHigherOrEqual(e.quality,f)&&!m)return w[e.quality]=`StallsLimit`,!1;let h=S||(R.isNullable(i?.max)||R.isLowerOrEqual(e.quality,i.max))&&(R.isNullable(i?.min)||R.isHigherOrEqual(e.quality,i.min)),g=R.isNonNullable(u)&&!u?R.isLowerOrEqual(e.quality,r.backgroundVideoQualityLimit):!0;return!h||!g?(w[e.quality]=`FitsQualityLimits`,!1):!0})[0];T&&T.bitrate&&ka.next(T.bitrate);let E=T??ha.default(y,-1)??e[0],D=l?.last,O=Ba(r,m,E,l);return R.isNonNullable(l)&&O.quality!==D?.quality&&m({message:`
43
43
  [VIDEO TRACKS ABR]
44
44
  [available video tracks]
45
- ${s.map(R=>{var Z,K;return`{ id: ${R.id}, quality: ${R.quality}, bitrate: ${R.bitrate}, size: ${(Z=R.size)==null?void 0:Z.width}:${(K=R.size)==null?void 0:K.height} }`}).join(`
45
+ ${e.map(e=>`{ id: ${e.id}, quality: ${e.quality}, bitrate: ${e.bitrate}, size: ${e.size?.width}:${e.size?.height} }`).join(`
46
46
  `)}
47
47
 
48
48
  [tuning]
49
- ${(0,Ji.default)(i!=null?i:{}).map(([R,Z])=>`${R}: ${Z}`).join(`
49
+ ${_a.default(r??{}).map(([e,t])=>`${e}: ${t}`).join(`
50
50
  `)}
51
51
 
52
52
  [limit params]
53
- containerSizeFactor: ${S},
54
- containerSizeLimit: ${($=v==null?void 0:v.width)!=null?$:0} x ${(k=v==null?void 0:v.height)!=null?k:0},
55
- estimatedThroughput: ${t},
56
- stallsPredictedThroughput: ${h},
53
+ containerSizeFactor: ${g},
54
+ containerSizeLimit: ${_?.width??0} x ${_?.height??0},
55
+ estimatedThroughput: ${n},
56
+ stallsPredictedThroughput: ${p},
57
57
  reserve: ${a},
58
- playbackRate: ${o},
59
- playbackRateFactor: ${y},
60
- forwardBufferHealth: ${n},
61
- bitrateFactor: ${q},
62
- minBufferToSwitchUp: ${i.minBufferToSwitchUp},
58
+ playbackRate: ${s},
59
+ playbackRateFactor: ${v},
60
+ forwardBufferHealth: ${o},
61
+ bitrateFactor: ${C},
62
+ minBufferToSwitchUp: ${r.minBufferToSwitchUp},
63
63
  droppedVideoMaxQualityLimit: ${d},
64
- stallsVideoMaxQualityLimit: ${p},
65
- limitsAreInvalid: ${_},
66
- maxQualityLimit: ${r==null?void 0:r.max},
67
- minQualityLimit: ${r==null?void 0:r.min},
64
+ stallsVideoMaxQualityLimit: ${f},
65
+ limitsAreInvalid: ${S},
66
+ maxQualityLimit: ${i?.max},
67
+ minQualityLimit: ${i?.min},
68
68
 
69
69
  [limited video tracks]
70
- ${(0,Ji.default)(O).map(([R,Z])=>`${R}: ${Z}`).join(`
71
- `)||"All tracks are available"}
70
+ ${_a.default(w).map(([e,t])=>`${e}: ${t}`).join(`
71
+ `)||`All tracks are available`}
72
72
 
73
- [best video track] ${V==null?void 0:V.quality}
74
- [selected video track] ${ie==null?void 0:ie.quality}
75
- `}),ie},to=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:c})=>{(0,D.assertNotEmptyArray)(t,Jn);let l=r.considerPlaybackRate&&(0,D.isNonNullable)(a)?a:1,d=[...t].sort(Vr(-1)),p=s.bitrate;(0,D.assertNonNullable)(p);let h=l*Xn(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),m,b=_a(s,e,t,r.minVideoAudioRatio),S=c||i;(0,D.isNonNullable)(S)&&isFinite(S)&&(m=d.find(x=>(0,D.isNonNullable)(x.bitrate)&&(0,D.isNonNullable)(b==null?void 0:b.bitrate)?S-p>=x.bitrate*h&&x.bitrate>=b.bitrate:!1)),m||(m=b);let v=o==null?void 0:o.last,y=m&&Zn(r,u,m,o);return(0,D.isNonNullable)(o)&&(y==null?void 0:y.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
73
+ [best video track] ${T?.quality}
74
+ [selected video track] ${O?.quality}
75
+ `}),O},Ka=(e,t,n,{estimatedThroughput:r,tuning:i,playbackRate:a,forwardBufferHealth:o,history:s,abrLogger:c,stallsPredictedThroughput:l})=>{R.assertNotEmptyArray(n,Na);let u=i.considerPlaybackRate&&R.isNonNullable(a)?a:1,d=[...n].sort(ja(-1)),f=e.bitrate;R.assertNonNullable(f);let p=u*Aa(o??.5,i.bitrateAudioFactorAtEmptyBuffer,i.bitrateAudioFactorAtFullBuffer),m,h=La(e,t,n,i.minVideoAudioRatio),g=l||r;R.isNonNullable(g)&&isFinite(g)&&(m=d.find(e=>R.isNonNullable(e.bitrate)&&R.isNonNullable(h?.bitrate)?g-f>=e.bitrate*p&&e.bitrate>=h.bitrate:!1)),m||=h;let _=s?.last,v=m&&Ba(i,c,m,s);return R.isNonNullable(s)&&v?.bitrate!==_?.bitrate&&c({message:`
76
76
  [AUDIO TRACKS ABR]
77
77
  [available audio tracks]
78
- ${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
78
+ ${n.map(e=>`{ id: ${e.id}, bitrate: ${e.bitrate} }`).join(`
79
79
  `)}
80
80
 
81
81
  [tuning]
82
- ${(0,Ji.default)(r!=null?r:{}).map(([x,w])=>`${x}: ${w}`).join(`
82
+ ${_a.default(i??{}).map(([e,t])=>`${e}: ${t}`).join(`
83
83
  `)}
84
84
 
85
85
  [limit params]
86
- estimatedThroughput: ${i},
87
- stallsPredictedThroughput: ${c},
88
- reserve: ${p},
86
+ estimatedThroughput: ${r},
87
+ stallsPredictedThroughput: ${l},
88
+ reserve: ${f},
89
89
  playbackRate: ${a},
90
- playbackRateFactor: ${l},
91
- forwardBufferHealth: ${n},
92
- bitrateFactor: ${h},
93
- minBufferToSwitchUp: ${r.minBufferToSwitchUp},
90
+ playbackRateFactor: ${u},
91
+ forwardBufferHealth: ${o},
92
+ bitrateFactor: ${p},
93
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
94
94
 
95
- [selected audio track] ${y==null?void 0:y.id}
96
- `}),y},io=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:c})=>{(0,D.assertNotEmptyArray)(t,Jn);let l=r.considerPlaybackRate&&(0,D.isNonNullable)(a)?a:1,d=ov.get(t);d||(d=[...t].sort(Vr(-1)),ov.set(t,d));let p=s.bitrate;(0,D.assertNonNullable)(p);let h=l*Xn(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),m,b=Oa(s,e,t,r.minVideoAudioRatio),S=c||i;(0,D.isNonNullable)(S)&&isFinite(S)&&(m=d.find(x=>(0,D.isNonNullable)(x.bitrate)&&(0,D.isNonNullable)(b==null?void 0:b.bitrate)?S-p>=x.bitrate*h&&x.bitrate>=b.bitrate:!1)),m||(m=b);let v=o==null?void 0:o.last,y=m&&Zn(r,u,m,o);return(0,D.isNonNullable)(o)&&(y==null?void 0:y.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
95
+ [selected audio track] ${v?.id}
96
+ `}),v},qa=(e,t,n,{estimatedThroughput:r,tuning:i,playbackRate:a,forwardBufferHealth:o,history:s,abrLogger:c,stallsPredictedThroughput:l})=>{R.assertNotEmptyArray(n,Na);let u=i.considerPlaybackRate&&R.isNonNullable(a)?a:1,d=Fa.get(n);d||(d=[...n].sort(ja(-1)),Fa.set(n,d));let f=e.bitrate;R.assertNonNullable(f);let p=u*Aa(o??.5,i.bitrateAudioFactorAtEmptyBuffer,i.bitrateAudioFactorAtFullBuffer),m,h=Ra(e,t,n,i.minVideoAudioRatio),g=l||r;R.isNonNullable(g)&&isFinite(g)&&(m=d.find(e=>R.isNonNullable(e.bitrate)&&R.isNonNullable(h?.bitrate)?g-f>=e.bitrate*p&&e.bitrate>=h.bitrate:!1)),m||=h;let _=s?.last,v=m&&Ba(i,c,m,s);return R.isNonNullable(s)&&v?.bitrate!==_?.bitrate&&c({message:`
97
97
  [AUDIO TRACKS ABR]
98
98
  [available audio tracks]
99
- ${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
99
+ ${n.map(e=>`{ id: ${e.id}, bitrate: ${e.bitrate} }`).join(`
100
100
  `)}
101
101
 
102
102
  [tuning]
103
- ${(0,Ji.default)(r!=null?r:{}).map(([x,w])=>`${x}: ${w}`).join(`
103
+ ${_a.default(i??{}).map(([e,t])=>`${e}: ${t}`).join(`
104
104
  `)}
105
105
 
106
106
  [limit params]
107
- estimatedThroughput: ${i},
108
- stallsPredictedThroughput: ${c},
109
- reserve: ${p},
107
+ estimatedThroughput: ${r},
108
+ stallsPredictedThroughput: ${l},
109
+ reserve: ${f},
110
110
  playbackRate: ${a},
111
- playbackRateFactor: ${l},
112
- forwardBufferHealth: ${n},
113
- bitrateFactor: ${h},
114
- minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
-
116
- [selected audio track] ${y==null?void 0:y.id}
117
- `}),y};var We=s=>new URL(s).hostname;var ee=require("@vkontakte/videoplayer-shared/es2018");var yv=G(bt(),1);var fv=G(Xe(),1),hv=s=>{if(s instanceof DOMException&&(0,fv.default)(["Failed to load because no supported source was found.","The element has no supported sources."],s.message))throw s;return!(s instanceof DOMException&&(s.code===20||s.name==="AbortError"))},it=async(s,e)=>{let t=s.muted;try{await s.play()}catch(i){if(!hv(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{await s.play()}catch(r){return hv(r)&&(s.muted=!1,console.warn(r)),!1}}return!0};var lt=require("@vkontakte/videoplayer-shared/es2018");var mv=G(Hi(),1),qt=require("@vkontakte/videoplayer-shared/es2018");function Ve(){return(0,qt.now)()}function el(s){return Ve()-s}function tl(s){let e=s.split("/"),t=e.slice(0,e.length-1).join("/"),i=/^([a-z]+:)?\/\//i,r=n=>i.test(n);return{resolve:(n,o,u=!1)=>{r(n)||(n.startsWith("/")||(n="/"+n),n=t+n);let c=n.indexOf("?")>-1?"&":"?";return u&&(n+=c+"lowLat=1",c="&"),o&&(n+=c+"_rnd="+Math.floor(999999999*Math.random())),n}}}function bv(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function _r(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,c=0,l,d,p=!1,h="arraybuffer",m=7e3,b=2e3,S=()=>{if(u)return;(0,qt.assertNonNullable)(l);let U=el(l),ie;if(U<b){ie=b-U,setTimeout(S,ie);return}b*=2,b>m&&(b=m),n&&n.abort(),n=new r,_()},v=U=>(a=U,Q),y=U=>(d=U,Q),x=()=>(h="json",Q),w=()=>{if(!u){if(--c>=0){S(),i&&i();return}u=!0,d&&d(),t&&t()}},M=U=>(p=U,Q),_=()=>{l=Ve(),n=new r,n.open("get",s);let U=0,ie,le=0,oe=()=>((0,qt.assertNonNullable)(l),Math.max(l,Math.max(ie||0,le||0)));if(a&&n.addEventListener("progress",A=>{let $=Ve();a.updateChunk&&A.loaded>U&&(a.updateChunk(oe(),A.loaded-U),U=A.loaded,ie=$)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>w())),n.addEventListener("load",()=>{if(u)return;(0,qt.assertNonNullable)(n);let A=n.status;if(A>=200&&A<300){let{response:$,responseType:k}=n,R=$==null?void 0:$.byteLength;if(typeof R=="number"&&a){let Z=R-U;Z&&a.updateChunk&&a.updateChunk(oe(),Z)}k==="json"&&(!$||!(0,mv.default)($).length)?w():(d&&d(),e($))}else w()}),n.addEventListener("error",()=>{w()}),p){let A=()=>{(0,qt.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(le=Ve(),n.removeEventListener("readystatechange",A))};n.addEventListener("readystatechange",A)}return n.responseType=h,n.send(),Q},Q={withBitrateReporting:v,withParallel:M,withJSONResponse:x,withRetryCount:U=>(c=U,Q),withRetryInterval:(U,ie)=>((0,qt.isNonNullable)(U)&&(b=U),(0,qt.isNonNullable)(ie)&&(m=ie),Q),withTimeout:U=>(o=U,Q),withFinally:y,send:_,abort:()=>{n&&(n.abort(),n=void 0),u=!0,d&&d()}};return Q}var Na=class{constructor(e){this.intervals=[];this.currentRate=0;this.logger=e}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,i){return{start:e,end:t,bytes:i}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-500;if(t-e>2e3){let i=0,r=0;for(;this.intervals.length>0;){let a=this.intervals[0];if(a.end<=t)i+=a.end-a.start,r+=a.bytes,this.intervals.splice(0,1);else{if(a.start>=t)break;{let n=t-a.start,o=a.end-a.start;i+=n;let u=a.bytes*n/o;r+=u,a.start=t,a.bytes-=u}}}if(r>0&&i>0){let a=r*8/(i/1e3);return this._updateRate(a),this.logger(`rate updated, new=${Math.round(a/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(i)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,i){return this.intervals.push(this._createInterval(e,t,i)),this._joinIntervals(),this.intervals.length>100&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:"warn"}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}};var gv=G(Hi(),1);var Fa=class{constructor(e,t,i,r,a){this.pendingQueue=[];this.activeRequests={};this.completeRequests={};this.averageSegmentDuration=2e3;this.lastPrefetchStart=0;this.throttleTimeout=null;this.RETRY_COUNT=e,this.TIMEOUT=t,this.BITRATE_ESTIMATOR=i,this.MAX_PARALLEL_REQUESTS=r,this.logger=a}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:"warn"}),delete this.completeRequests[t]}}_sendRequest(e,t){let i=Ve(),r=u=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=u,e._errorCB?e._errorCB(u):(this.limitCompleteCount(),this.completeRequests[t]=e)},a=u=>{e._complete=1,e._responseData=u,e._downloadTime=Ve()-i,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(u,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},n=()=>{e._finallyCB&&e._finallyCB()},o=()=>{e._retry=1,e._retryCB&&e._retryCB()};e._request=_r(t,a,()=>r("error"),o),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(n),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=Ve()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=Ve();if(Object.keys(this.activeRequests).length>=e)return!1;let i=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),i>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),i),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){(0,gv.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let a={};return a.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,n._finallyCB=a._finallyCB,n._error||n._complete?(this._removeFromActive(e),setTimeout(()=>{n._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(n._responseData,n._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),i(n._errorMsg)),a._finallyCB&&a._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let o=this.pendingQueue.indexOf(e);o!==-1&&this.pendingQueue.splice(o,1),this.logger(`Request not prefetched, starting new request, url=${e}${o===-1?"":"; removed pending"}`),this._sendRequest(a,e)}},a._cb=t,a._errorCB=i,a._retryCB=r,a.abort=function(){a.request&&a.request.abort()},a.withFinally=n=>(a._finallyCB=n,a),a}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}};var Tv=require("@vkontakte/videoplayer-shared/es2018");var il=require("@vkontakte/videoplayer-shared/es2018"),Se=(s,e)=>(0,il.isNonNullable)(s)&&(0,il.isNonNullable)(e)&&s.readyState==="open"&&RR(s,e);function RR(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var vv=G(mi(),1),Sv=require("@vkontakte/videoplayer-shared/es2018"),rl=class{constructor(e,t,i,r){this.tag=e;this.time=t;this.data=i;this.stack=r}toString(){return`${this.tag}: ${this.time}: ${JSON.stringify(this.data)}${this.stack?`, stack: ${this.stack}`:""}`}toDevNullEntry(){var t;let e=(0,vv.default)(this.data).map(([i,r])=>`${i}:${r}`).join(",");return{key:this.tag,strings:[e,(t=this.stack)!=null?t:""],numbers:[this.time]}}},MR=(s,e="warn")=>{let t=(0,Sv.getWindow)(),i=[];function r(a,n=!1){var c,l,d;let o=(d=(l=(c=t.performance)==null?void 0:c.timing)==null?void 0:l.navigationStart)!=null?d:0,u=new rl(s,Math.round((Date.now()-o)/1e3),a,n?new Error().stack:void 0);i.push(u),e&&t.console[e](u.toString())}return r.reset=()=>{i=[]},r.drain=()=>{let a=i;return i=[],a},r},X=MR("vp_dash_live_debug",!1);var ro=1e4,al=3;var LR=6e4,CR=10,DR=1,BR=500,Ua=class{constructor(e){this.paused=!1;this.autoQuality=!0;this.autoQualityLimits=void 0;this.buffering=!0;this.destroyed=!1;this.videoPlayStarted=!1;this.lowLatency=!1;this.bitrate=0;this.manifest=[];this.sourceBuffer=0;this.bufferStates=[];this.sourceJitter=-1;this.waitingForFirstBufferAfterSrcChange=!1;this.params=e,this.soundProhibitedEvent$=new Tv.Subject,this.chunkRateEstimator=new Na(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=tl(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let i=0;i<this.manifest.length;++i)if(t=this.manifest[i],t.name===e){this._switchToQuality(t);return}}catchUp(){if(this.rep&&(X({m:"ldp.catchUp.1"}),this.rep.stop()),this.currentManifestEntry){let e=this.params.playbackState.getState();this.paused=e==="paused",X({m:"ldp.catchUp.2"}),this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0)}}stop(){this.params.videoElement.pause(),this.rep&&(this.rep.stop(),this.rep=null)}pause(){this.paused=!0,this.params.videoElement.pause(),this.videoPlayStarted=!1,this._notifyBuffering(!1)}play(){this.paused=!1;let e=this.lowLatency&&this._getBufferSizeSec()>this.sourceJitter+5;this.rep&&!e?(this.bufferStates=[],this.videoPlayStarted=!1,this.shouldPlay()?(X({m:"ldp.play.1"}),this._playVideoElement()):(X({m:"ldp.play.2"}),this._notifyBuffering(!0))):(X({m:"ldp.play.3"}),this.catchUp())}startPlay(e,t){this.autoQuality=t,X({m:"startPlay",url:e.jidxUrl}),this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&(this.rep.stop(),this.rep=null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&(clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=tl(e),X({m:"ldp.reinit",url:e}),this.catchUp()}_handleNetworkError(){this.params.logger("Fatal network error"),this.params.playerCallback({name:"error",type:"network"})}_retryCallback(){this.params.playerCallback({name:"retry"})}_getBufferSizeSec(){let e=this.params.videoElement,t=0,i=e.buffered.length;return i!==0&&(t=e.buffered.end(i-1)-Math.max(e.currentTime,e.buffered.start(0))),t}_notifyBuffering(e){this.destroyed||(this.params.logger(`buffering: ${e}`),this.params.playerCallback({name:"buffering",isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e,logger:t}=this.params;X({m:"iv"}),e.addEventListener("error",()=>{var r,a,n,o;!!e.error&&!this.destroyed&&(X({m:"iv.err",e:((r=e.error)==null?void 0:r.code)+":"+((a=e.error)==null?void 0:a.message)}),t(`Video element error: ${(n=e.error)==null?void 0:n.code}, details: ${(o=e.error)==null?void 0:o.message}`),this.params.playerCallback({name:"error",type:"media"}))}),e.addEventListener("timeupdate",()=>{let i=this._getBufferSizeSec();!this.paused&&i<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(i+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener("playing",()=>{t("playing")}),e.addEventListener("stalled",()=>this._fixupStall()),e.addEventListener("waiting",()=>this._fixupStall())}_fixupStall(){let{logger:e,videoElement:t}=this.params,i=t.buffered.length,r;i!==0&&!this.waitingForFirstBufferAfterSrcChange&&(r=t.buffered.start(i-1),t.currentTime<r&&(e("Fixup stall"),X({m:"ldp.fs",t:r}),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,a,n=t&&1.62*(j.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){a=this.manifest[o];let{max:u,min:c}=this.autoQualityLimits||{};!nv({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,yv.default)(this.manifest,-1).video.height})&&(u&&a.video.height>u||c&&a.video.height<c)||(a.bitrate<e&&n>Math.min(a.video.height,a.video.width)?(!r||a.bitrate>r.bitrate)&&(r=a):(!i||i.bitrate>a.bitrate)&&(i=a))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,lt.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){var o;let{logger:i,videoElement:r,playerCallback:a}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{var u,c;if(((u=this.mediaSource)==null?void 0:u.readyState)!=="open"){X({m:"sourceopen",err:`not open: ${(c=this.mediaSource)==null?void 0:c.readyState}`});return}X({m:"sourceopen",c:e.codecs}),this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t()}),(o=this.mediaSource)==null||o.addEventListener("sourceclose",u=>{X({m:"sourceclose"})}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{X({m:"canplay"}),this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{bv(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,a({name:"playing"})):n()})};this.waitingForFirstBufferAfterSrcChange=!0,n()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new Fa(al,ro,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:i,playerCallback:r}=this.params,a=!1,n=null,o=null,u=null,c=null,l=!1,d=()=>{let w=a&&(!l||l===this.rep);return w||t("Not running!"),w},p=(w,M,_)=>{u&&u.abort(),u=_r(this.urlResolver.resolve(w,!1),M,_,()=>this._retryCallback()).withTimeout(ro).withBitrateReporting(this.bitrateSwitcher).withRetryCount(al).withFinally(()=>{u=null}).send()},h=(w,M,_)=>{(0,lt.assertNonNullable)(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(w,!1),M,_,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},m=w=>{let M=i.playbackRate;i.playbackRate!==w&&(t(`Playback rate switch: ${M}=>${w}`),i.playbackRate=w)},b=w=>{this.lowLatency=w,t(`lowLatency changed to ${w}`),S()},S=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)m(1);else{let w=this._getBufferSizeSec();if(this.bufferStates.length<5){m(1);return}let _=Ve()-1e4,q=0;for(let H=0;H<this.bufferStates.length;H++){let V=this.bufferStates[H];w=Math.min(w,V.buf),V.ts<_&&q++}this.bufferStates.splice(0,q),t(`update playback rate; minBuffer=${w} drop=${q} jitter=${this.sourceJitter}`);let O=w-DR;this.sourceJitter>=0?O-=this.sourceJitter/2:this.sourceJitter-=1,O>3?m(1.15):O>1?m(1.1):O>.3?m(1.05):m(1)}},v=w=>{let M,_=()=>M&&M.start?M.start.length:0,q=A=>M.start[A]/1e3,O=A=>M.dur[A]/1e3,H=A=>M.fragIndex+A,V=(A,$)=>({chunkIdx:H(A),startTS:q(A),dur:O(A),discontinuity:$}),Q=()=>{let A=0;if(M&&M.dur){let $=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,k=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,R=$;this.sourceJitter>1&&(R+=this.sourceJitter-1);let Z=M.dur.length-1;for(;Z>=0&&(R-=M.dur[Z],!(R<=0));--Z);A=Math.min(Z,M.dur.length-1-k),A=Math.max(A,0)}return V(A,!0)},U=A=>{let $=_();if(!($<=0)){if((0,lt.isNonNullable)(A)){for(let k=0;k<$;k++)if(q(k)>A)return V(k)}return Q()}},ie=A=>{let $=_(),k=A?A.chunkIdx+1:0,R=k-M.fragIndex;if(!($<=0)){if(!A||R<0||R-$>CR)return t(`Resync: offset=${R} bChunks=${$} chunk=`+JSON.stringify(A)),Q();if(!(R>=$))return V(k-M.fragIndex,!1)}},le=(A,$,k)=>{c&&c.abort(),c=_r(this.urlResolver.resolve(A,!0,this.lowLatency),$,k,()=>this._retryCallback()).withTimeout(ro).withRetryCount(al).withFinally(()=>{c=null}).withJSONResponse().send()};return{seek:(A,$)=>{le(w,k=>{if(!d())return;M=k;let R=!!M.lowLatency;R!==this.lowLatency&&b(R);let Z=0;for(let K=0;K<M.dur.length;++K)Z+=M.dur[K];Z>0&&((0,lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(Z/M.dur.length)),r({name:"index",zeroTime:M.zeroTime,shiftDuration:M.shiftDuration}),this.sourceJitter=M.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,M.jitter/1e3)):1,A(U($))},()=>this._handleNetworkError())},nextChunk:ie}},y=()=>{a=!1,o&&o.abort(),u&&u.abort(),c&&c.abort(),(0,lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return l={start:w=>{let{videoElement:M,logger:_}=this.params,q=v(e.jidxUrl),O,H,V,Q,U=0,ie,le,oe,A=()=>{ie&&(clearTimeout(ie),ie=void 0);let pe=Math.max(BR,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Ne=U+pe,Fe=Ve(),Ue=Math.min(1e4,Ne-Fe);U=Fe;let st=()=>{c||d()&&q.seek(()=>{d()&&(U=Ve(),$(),A())})};Ue>0?ie=window.setTimeout(()=>{this.paused?A():st()},Ue):st()},$=()=>{let pe;for(;pe=q.nextChunk(Q);)Q=pe,$t(pe);let Ne=q.nextChunk(V);if(Ne){if(V&&Ne.discontinuity){_("Detected discontinuity; restarting playback"),this.paused?A():(y(),X({m:"ldp.fetchChunkIdx.0"}),this._initPlayerWith(e));return}K(Ne)}else A()},k=(pe,Ne)=>{if(!d()||!this.sourceBuffer){X({m:"ab.0",c:[!d(),!this.sourceBuffer]});return}let Fe,Ue,st,Ht=Wt=>{X({m:"ldp.postpone",t:Wt}),window.setTimeout(()=>{d()&&k(pe,Ne)},Wt)};if(this.sourceBuffer.updating)_("Source buffer is updating; delaying appendBuffer"),X({m:"ldp.ab.1"}),Ht(100);else{let Wt=Ve(),$i=M.currentTime;!this.paused&&M.buffered.length>1&&le===$i&&Wt-oe>500&&(_("Stall suspected; trying to fix"),this._fixupStall()),le!==$i&&(le=$i,oe=Wt);let lr=this._getBufferSizeSec();if(lr>30)X({m:"ldp.ab.3"}),_(`Buffered ${lr} seconds; delaying appendBuffer`),Ht(2e3);else try{if(this.params.config.useInvalidBufferFix&&Se(this.mediaSource,this.sourceBuffer))return;this.sourceBuffer.appendBuffer(pe),this.videoPlayStarted?(X({m:"ldp.ab.5"}),this.bufferStates.push({ts:Wt,buf:lr}),S(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(X({m:"ldp.ab.4"}),this.videoPlayStarted=!0,this._playVideoElement()),Ne&&Ne()}catch(Li){X({m:"ldp.ab.err",e:Li.name}),Li.name==="QuotaExceededError"?(_("QuotaExceededError; delaying appendBuffer"),st=this.sourceBuffer.buffered.length,st!==0&&(Fe=this.sourceBuffer.buffered.start(0),Ue=$i,Ue-Fe>4&&this.sourceBuffer.remove(Fe,Ue-3)),Ht(1e3)):(_(Li.name),r({name:"error",type:"buffer",message:`appendBuffer failed due to ${Li.name}`}))}}},R=()=>{H&&O&&(_([`Appending chunk, sz=${H.byteLength}:`,JSON.stringify(V)]),k(H,function(){H=null,$()}))},Z=pe=>e.fragUrlTemplate.replace("%%id%%",pe.chunkIdx),K=pe=>{d()&&h(Z(pe),(Ne,Fe)=>{if(d()){if(Fe/=1e3,H=Ne,V=pe,n=pe.startTS,Fe){let Ue=Math.min(10,pe.dur/Fe);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*Ue:Ue}R()}},()=>this._handleNetworkError())},$t=pe=>{d()&&((0,lt.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(Z(pe),!1)))},Lt=pe=>{d()&&(e.cachedHeader=pe,k(pe,()=>{O=!0,R()}))};a=!0,q.seek(pe=>{if(d()){if(U=Ve(),!pe){A();return}Q=pe,!(0,lt.isNullable)(w)||pe.startTS>w?K(pe):(V=pe,$())}},w),e.cachedHeader?Lt(e.cachedHeader):p(e.headerUrl,Lt,()=>this._handleNetworkError())},stop:y,getTimestampSec:()=>n},l}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,lt.isNonNullable)(r)&&(r+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,(0,lt.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,lt.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=d=>{if(!this.autoQuality)return;let p,h,m;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&d<this.bitrate&&(h=this._getBufferSizeSec(),m=d/this.bitrate,h>10&&m>.8||h>15&&m>.5||h>20&&m>.3)){e(`Not switching: buffer=${Math.floor(h)}; bitrate=${this.bitrate}; newRate=${Math.floor(d)}`);return}p=this._selectQuality(d),p?this._switchToQuality(p):e(`Could not find quality by bitrate ${d}`)},a={updateChunk:(p,h)=>{let m=Ve();if(this.chunkRateEstimator.addInterval(p,m,h)){let S=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:h,duration:m-p,speed:S}),!0}},get:()=>{let p=this.chunkRateEstimator.getBitRate();return p?p*.85:0}},n=-1/0,o,u=!0,c=()=>{let d=a.get();if(d&&o&&this.autoQuality){if(u&&d>o&&el(n)<3e4)return;i(d)}u=this.autoQuality};return{updateChunk:(d,p)=>{let h=a.updateChunk(d,p);return h&&c(),h},notifySwitch:d=>{let p=Ve();d<o&&(n=p),o=d}}}_fetchManifest(e,t,i){this.manifestRequest=_r(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(ro).withRetryCount(this.params.config.manifestRetryMaxCount).withRetryInterval(this.params.config.manifestRetryInterval,this.params.config.manifestRetryMaxInterval).send().withFinally(()=>{this.manifestRequest=void 0})}_playVideoElement(){let{videoElement:e}=this.params;it(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{X({m:"ldp.pve.1"}),t||(X({m:"ldp.pve.2"}),this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:r}=this.params,a=n=>{let o=[];return n!=null&&n.length?(n.forEach((u,c)=>{var l,d;u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&((d=(l=window.MediaSource)==null?void 0:l.isTypeSupported)!=null&&d.call(l,u.codecs))&&(u.index=c,o.push(u))}),o.sort(function(u,c){return u.video&&c.video?c.video.height-u.video.height:c.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=a(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),i({name:"manifest",manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},LR))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var Iv=G(mi(),1),xe=require("@vkontakte/videoplayer-shared/es2018"),sl=class{constructor(){this.onDroopedVideoFramesLimit$=new xe.Subject;this.subscription=new xe.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new xe.Subject;this.isForceCheckCounter=0;this.prevTotalVideoFrames=0;this.prevDroppedVideoFrames=0;this.limitCounts={};this.handleChangeVideoQuality=()=>{let e=this.tracks.find(({size:t})=>(t==null?void 0:t.height)===this.video.videoHeight&&(t==null?void 0:t.width)===this.video.videoWidth);e&&!(0,xe.isInvariantQuality)(e.quality)&&this.onChangeQuality(e.quality)};this.checkDroppedFrames=()=>{var n;let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),i=e-this.prevTotalVideoFrames,r=t-this.prevDroppedVideoFrames,a=1-(i-r)/i;!isNaN(a)&&a>0&&this.log({message:`[dropped]. current dropped percent: ${a}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(a)&&a>=this.droppedFramesChecker.percentLimit&&(0,xe.isHigher)(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=((n=this.limitCounts[this.currentQuality])!=null?n:0)+1,this.maxQualityLimit=this.getMaxQualityLimit(this.currentQuality),this.currentTimer&&window.clearTimeout(this.currentTimer),this.currentTimer=window.setTimeout(()=>this.maxQualityLimit=this.getMaxQualityLimit(),this.droppedFramesChecker.qualityUpWaitingTime),this.onDroopedVideoFramesLimitTrigger()),this.savePrevFrameCounts(e,t)}}connect(e){this.log=e.logger.createComponentLog("DroppedFramesManager"),this.video=e.video,this.isAuto=e.isAuto,this.tracks=e.tracks,this.droppedFramesChecker=e.droppedFramesChecker,this.subscription.add(e.playing$.subscribe(()=>this.playing=!0)),this.subscription.add(e.pause$.subscribe(()=>this.playing=!1)),this.isEnabled&&this.subscribe()}destroy(){this.currentTimer&&window.clearTimeout(this.currentTimer),this.subscription.unsubscribe()}get droppedVideoMaxQualityLimit(){return this.maxQualityLimit}subscribe(){this.subscription.add((0,xe.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,xe.interval)(this.droppedFramesChecker.checkTime).pipe((0,xe.filter)(()=>this.playing),(0,xe.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,xe.debounce)(this.droppedFramesChecker.checkTime)),i=(0,xe.merge)(e,t);this.subscription.add(i.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:i}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,i),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){var i,r;let t=(r=(i=(0,Iv.default)(this.limitCounts).filter(([,a])=>a>=this.droppedFramesChecker.countLimit).sort(([a],[n])=>(0,xe.isLower)(a,n)?-1:1))==null?void 0:i[0])==null?void 0:r[0];return e!=null?e:t}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality=="function"}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}},Or=sl;var ao=require("@vkontakte/videoplayer-shared/es2018"),Ev=require("@vkontakte/videoplayer-shared/es2018");var qa=()=>{var s;return!!((s=window.documentPictureInPicture)!=null&&s.window)||!!document.pictureInPictureElement};var VR=(s,e)=>new ao.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||qa()))},{...i,...e});r.observe(s);let a=(0,Ev.fromEvent)(document,"visibilitychange").pipe((0,ao.map)(n=>!document.hidden||qa())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),gt=VR;var _R=["paused","playing","ready"],OR=["paused","playing","ready"],ja=class{constructor(e){this.subscription=new ee.Subscription;this.videoState=new ae("stopped");this.representations$=new ee.ValueSubject([]);this.droppedFramesManager=new Or;this.maxSeekBackTime$=new ee.ValueSubject(1/0);this.zeroTime$=new ee.ValueSubject(void 0);this.liveOffset=new Xi;this._dashCb=e=>{var t,i,r,a;switch(e.name){case"buffering":{let n=e.isBuffering;this.params.output.isBuffering$.next(n);break}case"error":{this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:ee.ErrorCategory.WTF,message:`LiveDashPlayer reported error${e.message?`: ${e.message}`:""}`});break}case"manifest":{let n=e.manifest,o=[];for(let u of n){let c=(t=u.name)!=null?t:u.index.toString(10),l=(i=vi(u.name))!=null?i:(0,ee.videoSizeToQuality)(u.video),d=u.bitrate/1e3,p={...u.video};if(!l)continue;let h={id:c,quality:l,bitrate:d,size:p};o.push({track:h,representation:u})}this.representations$.next(o),this.params.output.availableVideoTracks$.next(o.map(({track:u})=>u)),((r=this.videoState.getTransition())==null?void 0:r.to)==="manifest_ready"&&this.videoState.setState("manifest_ready");break}case"qualitySwitch":{let n=e.quality,o=(a=this.representations$.getValue().find(({representation:u})=>u===n))==null?void 0:a.track;this.params.output.hostname$.next(new URL(n.headerUrl,this.params.source.url).hostname),(0,ee.isNonNullable)(o)&&this.params.output.currentVideoTrack$.next(o);break}case"bandwidth":{let{size:n,duration:o}=e;this.params.dependencies.throughputEstimator.addRawSpeed(n,o);break}case"index":{this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}};this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(a)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.dash.destroy(),this.video.removeAttribute("src"),this.video.load(),this.videoState.setState("stopped"));return}if(t)return;let n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if((0,nl.default)(OR,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&(0,nl.default)(_R,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(Ae(this.params.source.url));return;case"manifest_ready":this.videoState.startTransitionTo("ready"),this.prepare();break;case"ready":if(i==="paused")this.videoState.setState("paused");else if(i==="playing"){X({m:"dlp.sync.1"}),this.videoState.startTransitionTo("playing");let u=r==null?void 0:r.from;u&&u==="ready"&&(X({m:"dlp.sync.2"}),this.dash.catchUp()),X({m:"dlp.sync.3"}),this.dash.play()}return;case"playing":i==="paused"&&(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.dash.pause());return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let u=this.liveOffset.getTotalOffset();u>=this.maxSeekBackTime$.getValue()&&(u=0,this.liveOffset.resetTo(u)),this.liveOffset.resume(),this.params.output.position$.next(-u/1e3),this.dash.reinit(Ae(this.params.source.url,u))}return;default:return(0,ee.assertNever)(e)}};this.textTracksManager=new mt(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:ee.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,ee.merge)(this.videoState.stateChangeStarted$.pipe((0,ee.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,ee.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{X({m:"dlp.s.1",t:a+`:${r.from}-${r.to}`}),this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=Je(e.container,e.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(We(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let i=tt(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,ee.map)(r=>r.map(({track:a})=>a)),(0,ee.filter)(r=>!!r.length),(0,ee.once)()).subscribe(r=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:r}))),this.subscription.add(i.canplay$.subscribe(()=>{var r;((r=this.videoState.getTransition())==null?void 0:r.to)==="ready"&&this.videoState.setState("ready")},t)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused")},t)).add(i.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state==="applying"&&this.params.output.seekedEvent$.next(),this.videoState.setState("playing")},t)).add(i.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe((0,ee.filterChanged)(),(0,ee.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,ee.combine)({zeroTime:this.zeroTime$.pipe((0,ee.filter)(ee.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>{a===0&&this.videoState.getTransition()||this.params.output.liveTime$.next(r+a*1e3)},t)).add(Ft(this.video,this.params.desiredState.isLooped,t)).add(et(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(ft(this.video,this.params.desiredState.playbackRate,i.playbackRateState$,t)).add(i.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(i.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(i.playing$.subscribe(this.params.output.firstFrameEvent$)).add(i.canplay$.subscribe(this.params.output.canplay$)).add(i.inPiP$.subscribe(this.params.output.inPiP$)).add(i.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(gt(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:a}})=>{this.dash.setAutoQualityLimits({max:r&&(0,ee.videoQualityToHeight)(r),min:a&&(0,ee.videoQualityToHeight)(a)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:a})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{var a;switch(r.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),X({m:"dlp.vse.s"}),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":((a=this.params.desiredState.playbackState.getTransition())==null?void 0:a.to)==="ready"&&(X({m:"dlp.vse.r"}),this.params.desiredState.playbackState.setState("ready"));break;case"paused":X({m:"dlp.vse.pa"}),this.params.desiredState.playbackState.setState("paused");break;case"playing":X({m:"dlp.vse.pl"}),this.params.desiredState.playbackState.setState("playing");break;default:return(0,ee.assertNever)(r.to)}},t)).add((0,ee.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,ee.observableFrom)(["init"])).pipe((0,ee.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){X({m:"dlp.destroy"}),this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Ze(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}createLiveDashPlayer(){let e=new Ua({videoElement:this.video,videoState:this.videoState,playbackState:this.params.desiredState.playbackState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount,useInvalidBufferFix:this.params.tuning.useInvalidBufferFix||!1},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){var c,l,d,p,h,m;let e=this.representations$.getValue(),t=(l=(c=this.params.desiredState.videoTrack.getTransition())==null?void 0:c.to)!=null?l:this.params.desiredState.videoTrack.getState(),i=(p=(d=this.params.desiredState.autoVideoTrackSwitching.getTransition())==null?void 0:d.to)!=null?p:this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,ee.isNonNullable)(t)?t:Ut(e.map(({track:b})=>b),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),a=r==null?void 0:r.id,n=this.params.desiredState.videoTrack.getTransition(),o=(h=this.params.desiredState.videoTrack.getState())==null?void 0:h.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||a!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||a!==o){let b=(m=e.find(({track:S})=>S.id===a))==null?void 0:m.representation;(0,ee.assertNonNullable)(b,"Representations missing"),this.dash.startPlay(b,i)}}setVideoTrack(e){var i;let t=(i=this.representations$.getValue().find(({track:r})=>r.id===e.id))==null?void 0:i.representation;(0,ee.assertNonNullable)(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),i=this.videoState.getState(),r=t==="paused"&&i==="paused",a=-e,n=a<=this.maxSeekBackTime$.getValue()?a:0;this.params.output.position$.next(e/1e3),X({m:"dlp.seek",p:e,no:n,url:this.params.source.url}),this.dash.reinit(Ae(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var wv=ja;var zr=require("@vkontakte/videoplayer-shared/es2018");var te=require("@vkontakte/videoplayer-shared/es2018");var ol=G(bt(),1);var xv=require("@vkontakte/videoplayer-shared/es2018"),Pv=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?vi(a):void 0)!=null?u:(0,xv.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},kv=({id:s,bitrate:e})=>({id:s,bitrate:e}),Av=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),Rv=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),ul=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,ol.default)(i.split("."),0),isDefault:r}),cl=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,ol.default)(r.split("."),0)});var _e=s=>s.type==="template";var so=class{constructor(e,t){this.fov=e,this.orientation=t}};var no=class{constructor(e,t){this.rotating=!1;this.fading=!1;this.lastTickTS=0;this.lastCameraTurnTS=0;this.fadeStartSpeed=null;this.fadeTime=0;this.camera=e,this.options=t,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/(this.options.speedFadeTime/1e3)**2}turnCamera(e=0,t=0,i=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+i)}pointCameraTo(e=0,t=0,i=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,a=t-this.camera.orientation.y,n=i-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=i,this.lastCameraTurn={x:r,y:a,z:n},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,i){this.rotationSpeed.x=e!=null?e:this.rotationSpeed.x,this.rotationSpeed.y=t!=null?t:this.rotationSpeed.y,this.rotationSpeed.z=i!=null?i:this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,i){this.setRotationSpeed(e,t,i),this.fadeStartSpeed={...this.rotationSpeed},this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,i=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i);else if(this.fading&&this.fadeStartSpeed){let r=-this.fadeCorrection*(this.fadeTime/1e3)**2+1;this.setRotationSpeed(this.fadeStartSpeed.x*r,this.fadeStartSpeed.y*r,this.fadeStartSpeed.z*r),r>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*i,this.rotationSpeed.y*this.options.rotationSpeedCorrection*i,this.rotationSpeed.z*this.options.rotationSpeedCorrection*i):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}};var Mv=`attribute vec2 a_vertex;
118
- attribute vec2 a_texel;
119
-
120
- varying vec2 v_texel;
121
-
122
- void main(void) {
123
- // direct vertex drawing
124
- gl_Position = vec4(a_vertex, 0.0, 1.0);
125
- // save texel vector to pass to fragment shader
126
- v_texel = a_texel;
127
- }
128
- `;var $v=`#ifdef GL_ES
129
- precision highp float;
130
- precision highp int;
131
- #else
132
- precision highp float;
133
- #endif
134
-
135
- #define PI 3.14159265358979323846264
136
-
137
- varying vec2 v_texel; // [0..1, 0..1]
138
-
139
- uniform sampler2D u_texture;
140
- uniform vec2 u_focus; // current central point [-180..180, -90..90] (degrees)
141
-
142
- void main(void) {
143
- // center point of output projection
144
- float lambda0 = u_focus.x / 360.0;
145
- float phi0 = u_focus.y / 180.0;
146
-
147
- float lambda = PI * 2.0 * (v_texel.x - 0.5 - lambda0); // [-pi..+pi] (rad)
148
- float phi = PI * (v_texel.y - 0.5 - phi0); // [-pi/2..+pi/2] (rad)
149
-
150
- float p = sqrt(lambda * lambda + phi * phi); // rou
151
- float c = atan(p);
152
- float cos_c = cos(c);
153
- float sin_c = sin(c);
154
-
155
- // geo coordinates of projection
156
- float x = lambda0 + atan(
157
- lambda * sin_c,
158
- p * cos(phi0) * cos_c - phi * sin(phi0) * sin_c
159
- );
160
- float y = asin(cos_c * sin(phi0) + (phi * sin_c * cos(phi0)) / p);
161
-
162
- // reprojected texture coordinates
163
- vec2 tc = vec2(
164
- mod(x / (PI * 2.0) - 0.5, 1.0), // [0..1]
165
- mod(y / PI - 0.5, 1.0) // [0..1]
166
- );
111
+ playbackRateFactor: ${u},
112
+ forwardBufferHealth: ${o},
113
+ bitrateFactor: ${p},
114
+ minBufferToSwitchUp: ${i.minBufferToSwitchUp},
167
115
 
168
- // sample using new coordinates
169
- gl_FragColor = texture2D(u_texture, tc);
170
- }
171
- `;var Nr=class{constructor(e,t,i){this.videoInitialized=!1;this.active=!1;this.container=e,this.sourceVideoElement=t,this.params=i,this.canvas=this.createCanvas();let r=this.canvas.getContext("webgl");if(!r)throw new Error("Could not initialize WebGL context");this.gl=r,this.container.appendChild(this.canvas),this.camera=new so(this.params.fov,this.params.orientation),this.cameraRotationManager=new no(this.camera,{rotationSpeed:this.params.rotationSpeed,maxYawAngle:this.params.maxYawAngle,rotationSpeedCorrection:this.params.rotationSpeedCorrection,degreeToPixelCorrection:this.params.degreeToPixelCorrection,speedFadeTime:this.params.speedFadeTime,speedFadeThreshold:this.params.speedFadeThreshold}),this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.textureMappingBuffer=this.createTextureMappingBuffer(),this.updateTextureMappingBuffer(),this.program=this.createProgram(),this.videoTexture=this.createTexture(),this.gl.useProgram(this.program),this.videoElementDataLoadedFn=this.onDataLoadedHandler.bind(this),this.renderFn=this.render.bind(this)}play(){this.active||(this.videoInitialized?this.doPlay():this.sourceVideoElement.readyState>=2?(this.videoInitialized=!0,this.doPlay()):this.sourceVideoElement.addEventListener("loadeddata",this.videoElementDataLoadedFn))}stop(){this.active=!1}startCameraManualRotation(e,t){this.cameraRotationManager.setRotationSpeed(e*this.params.rotationSpeed,t*this.params.rotationSpeed,0),this.cameraRotationManager.startRotation()}stopCameraManualRotation(e=!1){this.cameraRotationManager.stopRotation(e)}turnCamera(e,t){this.cameraRotationManager.turnCamera(e,t)}pointCameraTo(e,t){this.cameraRotationManager.pointCameraTo(e,t)}pixelToDegree(e){return{x:this.params.degreeToPixelCorrection*this.params.fov.x*-e.x/this.viewportWidth,y:this.params.degreeToPixelCorrection*this.params.fov.y*e.y/this.viewportHeight}}getCameraRotation(){return this.camera.orientation}holdCamera(){this.cameraRotationManager.stopRotation(!0)}releaseCamera(){this.cameraRotationManager.onCameraRelease()}destroy(){this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),this.stop(),this.canvas.remove()}setViewportSize(e,t){this.viewportWidth=e,this.viewportHeight=t,this.canvas.width=this.viewportWidth,this.canvas.height=this.viewportHeight,this.gl.viewport(0,0,this.canvas.width,this.canvas.height)}onDataLoadedHandler(){this.videoInitialized=!0,this.doPlay()}doPlay(){this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.active=!0,this.sourceVideoElement.removeEventListener("loadeddata",this.videoElementDataLoadedFn),requestAnimationFrame(this.renderFn)}render(e){this.cameraRotationManager.tick(e),this.updateTexture(),this.updateTextureMappingBuffer();let t=this.gl.getAttribLocation(this.program,"a_vertex"),i=this.gl.getAttribLocation(this.program,"a_texel"),r=this.gl.getUniformLocation(this.program,"u_texture"),a=this.gl.getUniformLocation(this.program,"u_focus");this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(i),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(i,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(r,0),this.gl.uniform2f(a,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(i),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let i=this.gl.createShader(t);if(!i)throw this.destroy(),new Error(`Could not create shader (${t})`);if(this.gl.shaderSource(i,e),this.gl.compileShader(i),!this.gl.getShaderParameter(i,this.gl.COMPILE_STATUS))throw this.destroy(),new Error("An error occurred while compiling the shader: "+this.gl.getShaderInfoLog(i));return i}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),new Error("Could not create shader program");let t=this.createShader(Mv,this.gl.VERTEX_SHADER),i=this.createShader($v,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,i),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),new Error("Could not link shader program.");return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),new Error("Could not create texture");return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create vertex buffer");let t=1,i=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:i=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-i,t,-i,t,i,-t,i]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),new Error("Could not create texture mapping buffer");return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,i=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2,a=e-i,n=t-r,o=e+i,u=t-r,c=e+i,l=t+r,d=e-i,p=t+r;return[a,n,o,u,c,l,d,p]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([...this.calculateTexturePosition()]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement("canvas");return e.style.position="absolute",e.style.left="0",e.style.top="0",e.style.width="100%",e.style.height="100%",e}};var Te=require("@vkontakte/videoplayer-shared/es2018");var Jt=(s,e,t)=>t*e+(1-t)*s,ll=(s,e)=>s.reduce((t,i)=>t+i,0)/e,Lv=(s,e,t,i)=>{let r=0,a=t,n=ll(s,e),o=e<i?e:i;for(let u=0;u<o;u++)s[a]>n?r++:r--,a=(s.length+a-1)%s.length;return Math.abs(r)===o};var oo="stalls_manager_metrics",dl="stalls_manager_abr_params",Cv="stalls_manager_default_tuning_abr_params",pl=class{constructor(){this.isSeeked$=new Te.ValueSubject(!1);this.isBuffering$=new Te.ValueSubject(!1);this.maxQualityLimit=void 0;this.currentStallsCount=0;this.sumStallsDuration=0;this.lastStallDuration=0;this.providerStartWatchingTimestamp=0;this.lastUniqueVideoTrackSelectedTimestamp=0;this.predictedThroughputWithoutData=0;this.subscription=new Te.Subscription;this.severeStallOccurred$=new Te.ValueSubject(!1)}init(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.tuning=e.tuning,this.abrParams=e.abrParams,this.duration=e.duration,this.resetStoredAbrParamsIfNeeded(),this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){let t=(this.tuning.ignoreDynamicAbrForShortVideo?this.tuning.enabled&&this.duration>this.tuning.minTvtToBeCounted:this.tuning.enabled)?this.getStoredData(dl):{};return{...this.abrParams,...t}}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,Te.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,Te.now)()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}resetStoredAbrParamsIfNeeded(){let{bitrateFactorAtEmptyBuffer:e,bitrateFactorAtFullBuffer:t,containerSizeFactor:i}={...this.getStoredData(Cv)},{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:a,containerSizeFactor:n}={...this.abrParams};this.tuning.enabled&&e===r&&t===a&&i===n||(this.removeStoredData(dl),this.setStoredData(Cv,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:a,containerSizeFactor:n}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(oo,"[]");if(!this.tuning.enabled||t.length<this.tuning.stallsMetricsHistoryLength)return;let i=t.reduce((a,n)=>a+n.tvt,0);if(this.tuning.useTotalStallsDurationPerTvt){let n=t.reduce((o,u)=>o+u.stallsDuration,0)/i;e.push(this.calculateOptimalAbrParams(n,i))}if(this.tuning.useAverageStallsDurationPerTvt){let a=t.reduce((n,o)=>n+o.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(a,i))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed,i));let r={bitrateFactorAtEmptyBuffer:Math.max(...e.map(a=>a.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(a=>a.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(a=>a.containerSizeFactor))};this.setStoredData(oo,[]),this.setStoredData(dl,r)}calculateOptimalAbrParams(e,t){let{targetStallsDurationPerTvt:i,deviationStallsDurationPerTvt:r,criticalStallsDurationPerTvt:a,abrAdjustingSpeed:n,significantTvt:o}=this.tuning,u=n*Math.min(t/o,1),c=this.abrTuningParams;return e<i-r?c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer-u,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer-u,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor+u,this.abrParams.maxContainerSizeFactor)}:e>i+r&&(c={bitrateFactorAtEmptyBuffer:Math.min(c.bitrateFactorAtEmptyBuffer+u,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(c.bitrateFactorAtFullBuffer+u,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(c.containerSizeFactor-u,this.abrParams.minContainerSizeFactor)}),e>a&&(c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer,this.abrParams.bitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer,this.abrParams.bitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor,this.abrParams.containerSizeFactor)}),c}getStoredData(e,t="{}"){var i;return JSON.parse((i=Te.safeStorage.get(e))!=null?i:t)}setStoredData(e,t){Te.safeStorage.set(e,JSON.stringify(t))}removeStoredData(e){Te.safeStorage.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(oo,"[]"),r=t/e,a=i.length?Jt(i[i.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r,n={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:a};i.push(n),i.length>this.tuning.stallsMetricsHistoryLength&&i.shift(),this.setStoredData(oo,i)}updateStallData(){this.providerStartWatchingTimestamp&&!this.isSeeked$.getValue()&&(this.sumStallsDuration+=Math.min(this.lastStallDuration,this.tuning.maxPossibleStallDuration),this.currentStallsCount++)}subscribe(e){this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(t=>this.currentStallsCount=0)),this.subscription.add(e.playing$.pipe((0,Te.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,Te.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,Te.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if((0,Te.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),c=this.videoLastDataObtainedTimestamp$.getValue(),l=(0,Te.now)(),d=r&&this.currentStallsCount>=r,p=i&&l-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&l-c>=i+o&&t>=i;(d||p)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,Te.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,Te.now)()-this.providerStartWatchingTimestamp>this.lastStallDuration&&(this.updateStallData(),this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},a)),this.lastStallDuration=t}))}},uo=pl;var rt=require("@vkontakte/videoplayer-shared/es2018"),co=class{constructor(){this.subscription=new rt.Subscription;this.pipSize$=new rt.ValueSubject(void 0);this.videoSize$=new rt.ValueSubject(void 0);this.elementSize$=new rt.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=rt.noop}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add((0,rt.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,rt.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,rt.map)(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var yi=require("@vkontakte/videoplayer-shared/es2018");var Ti=({subscription:s,desiredState:e,videoElement$:t,observableVideo:i})=>{if(!j.browser.isSafari)return;let r=0,a=!1;s.add(e.volume.stateChangeStarted$.pipe((0,yi.map)(()=>{let n=e.volume.getTransition(),o=t.getValue();return!o||!n?!1:!n.to.muted&&o.muted}),(0,yi.filter)(n=>!!n),(0,yi.once)()).subscribe(()=>{r=performance.now(),a=!0})),s.add(i.playbackRateState$.pipe((0,yi.filter)(()=>a),(0,yi.once)()).subscribe(()=>{let n=t.getValue(),o=e.playbackRate.getState();n&&o!==n.playbackRate&&performance.now()-r<1e3&&(n.playbackRate=o)}))};var Zi=class{constructor(e){this.subscription=new te.Subscription;this.videoState=new ae("stopped");this.observableVideo=null;this.droppedFramesManager=new Or;this.stallsManager=new uo;this.elementSizeManager=new co;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Si;this.audioTrackSwitchHistory=new Si;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&(i==null?void 0:i.to)!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),B(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&B(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&B(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&B(this.params.desiredState.playbackState,"paused");return;default:return(0,te.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new Nr(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((a=e.projectionData)==null?void 0:a.pose.roll)||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new mt(e.source.url),this.params=e,this.video=Je(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(We(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=this.getPlayer(),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;(0,te.isNullable)(this.observableVideo)&&(this.observableVideo=tt(this.video),this.subscription.add(()=>{var n;return(n=this.observableVideo)==null?void 0:n.destroy()}));let i=this.constructor.name,r=n=>{e.error$.next({id:i,category:te.ErrorCategory.WTF,message:`${i} internal logic error`,thrown:n})},a=(n,o)=>this.subscription.add(n.subscribe(o,r));return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:a}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,te.filter)(d=>!!d.length),(0,te.once)()).subscribe(d=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:d})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,te.map)(d=>d.to.state!=="none"),(0,te.filterChanged)());this.stallsManager.init({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$,duration:this.video.duration}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentNativeBuffer$),a(i.playing$,e.firstFrameEvent$),a(i.canplay$,e.canplay$),a(i.inPiP$,e.inPiP$),a(i.inFullscreen$,e.inFullscreen$),a(i.loadedMetadata$,e.loadedMetadataEvent$),a(this.player.error$,e.error$),a(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),a(this.player.fetcherError$,e.fetcherError$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),a(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),a(this.player.isLive$,e.isLive$),a(this.player.currentBuffer$,e.currentBuffer$),a(this.player.lastRequestFirstBytes$.pipe((0,te.filter)(te.isNonNullable),(0,te.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,te.map)(d=>d.to)),this.params.output.playbackState$),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Ft(this.video,t.isLooped,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),Ti({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:i}),this.subscription.add(et(this.video,t.volume,i.volumeState$,r)),this.subscription.add(ft(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(gt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),B(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(i.ended$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")})),this.subscription.add(this.player.manifestRequested.subscribe(this.params.output.manifestRequested$)).add(this.player.manifestReceived.subscribe(this.params.output.manifestReceived$)).add(this.player.firstBytesRequested.subscribe(this.params.output.firstBytesRequested$)).add(this.player.firstBytesReceived.subscribe(this.params.output.firstBytesReceived$)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:d})=>{if(d==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let p=this.player.getStreams(),h=this.player.getCodecs();if((0,te.assertNonNullable)(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let b=[];for(let S of p.audio){b.push(ul(S));let v=[];for(let y of S.representations){let x=kv(y);v.push(x),this.audioTracksMap.set(x,{stream:S,representation:y})}this.audioStreamsMap.set(S,v)}this.params.output.availableAudioStreams$.next(b)}let m=[];for(let b of p.video){m.push(cl(b));let S=[];for(let v of b.representations){let y=Pv({...v,streamId:b.id});y&&(S.push(y),this.videoTracksMap.set(y,{stream:b,representation:v}))}this.videoStreamsMap.set(b,S)}this.params.output.availableVideoStreams$.next(m);for(let b of p.text)for(let S of b.representations){let v=Av(b,S);this.textTracksMap.set(v,{stream:b,representation:S})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),h!=null&&h.video&&this.params.output.availableVideoCodecs$.next(h.video),h!=null&&h.audio&&this.params.output.availableAudioCodecs$.next(h.audio),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else d==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r));let o=(0,te.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,te.fromEvent)(this.video,"progress")).pipe((0,te.filter)(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(o=o.pipe((0,te.throttle)(u))),this.subscription.add(o.subscribe(async()=>{let d=this.player.state$.getState(),p=this.player.state$.getTransition(),h=t.autoVideoTrackSwitching.getState();if(d!=="manifest_ready"&&d!=="running"||p)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let m=this.selectVideoAudioRepresentations();if(!m)return;let[b,S]=m,v=[...this.videoTracksMap.keys()].find(x=>{var w;return((w=this.videoTracksMap.get(x))==null?void 0:w.representation.id)===b.id});(0,te.isNonNullable)(v)&&(this.stallsManager.lastVideoTrackSelected=v);let y=this.params.desiredState.autoVideoTrackLimits.getTransition();y&&this.params.output.autoVideoTrackLimits$.next(y.to),d==="manifest_ready"?await this.player.initRepresentations(b.id,S==null?void 0:S.id,this.params.sourceHls):(await this.player.switchRepresentation("video",b.id,h),S&&await this.player.switchRepresentation("audio",S.id,h))},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:d})=>{this.scene3D&&d&&this.scene3D.pointCameraTo(d.x,d.y)})),this.subscription.add(this.elementSizeManager.subscribe(d=>{this.scene3D&&d&&this.scene3D.setViewportSize(d.width,d.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,te.filterChanged)()).subscribe(d=>{let p=[...this.videoTracksMap.entries()].find(([,{representation:S}])=>S.id===d);if(!p){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[h,{stream:m}]=p,b=this.params.desiredState.videoStream.getTransition();b&&b.to&&b.to.id===m.id&&this.params.desiredState.videoStream.setState(b.to),e.currentVideoTrack$.next(h),e.currentVideoStream$.next(cl(m))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,te.filterChanged)()).subscribe(d=>{let p=[...this.audioTracksMap.entries()].find(([,{representation:S}])=>S.id===d);if(!p){e.currentAudioStream$.next(void 0);return}let[h,{stream:m}]=p,b=this.params.desiredState.audioStream.getTransition();b&&b.to&&b.to.id===m.id&&this.params.desiredState.audioStream.setState(b.to),e.currentAudioStream$.next(ul(m))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(d=>{var p,h;if(d!=null&&d.is3dVideo&&((p=this.params.tuning.spherical)!=null&&p.enabled))try{this.init3DScene(d),e.is3DVideo$.next(!0)}catch(m){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${m}`})}else this.destroy3DScene(),(h=this.params.tuning.spherical)!=null&&h.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let c=t.playbackState.stateChangeStarted$.pipe((0,te.map)(({to:d})=>d==="ready"),(0,te.filterChanged)());this.subscription.add((0,te.merge)(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,te.observableFrom)(["init"])).subscribe(()=>{let d=t.autoVideoTrackSwitching.getState(),h=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:d?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(h)})),this.subscription.add((0,te.merge)(c,this.player.state$.stateChangeEnded$,(0,te.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let l=(0,te.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,te.observableFrom)(["init"])).pipe((0,te.debounce)(0));this.subscription.add(l.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var O,H,V,Q,U,ie,le,oe,A,$,k,R,Z;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Oa:_a,t=this.params.tuning.useNewAutoSelectVideoTrack?io:to,i=this.params.tuning.useNewAutoSelectVideoTrack?Ut:eo,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(O=r.videoTrack.getState())==null?void 0:O.id,u=[...this.videoTracksMap.keys()].find(({id:K})=>K===o),c=a.currentVideoTrack$.getValue(),l=((Q=(V=r.videoStream.getState())!=null?V:u&&((H=this.videoTracksMap.get(u))==null?void 0:H.stream))!=null?Q:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!l)return;let d=[...this.videoStreamsMap.keys()].find(({id:K})=>K===l.id),p=d&&this.videoStreamsMap.get(d);if(!p)return;let h=this.player.bufferLength$.getValue(),m;this.player.isActiveLive$.getValue()?m=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?m=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:m=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,S=Math.min(h/Math.min(m,b||1/0),1),v=(U=r.audioStream.getState())!=null?U:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,y=(ie=[...this.audioStreamsMap.keys()].find(({id:K})=>K===(v==null?void 0:v.id)))!=null?ie:this.audioStreamsMap.keys().next().value,x=0;if(y){if(u&&!n){let K=e(u,p,(le=this.audioStreamsMap.get(y))!=null?le:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,(oe=K==null?void 0:K.bitrate)!=null?oe:-1/0)}if(c){let K=e(c,p,(A=this.audioStreamsMap.get(y))!=null?A:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,($=K==null?void 0:K.bitrate)!=null?$:-1/0)}}let w=u;(n||!w)&&(w=i(p,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:x,forwardBufferHealth:S,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let M=y&&t(w,p,(k=this.audioStreamsMap.get(y))!=null?k:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:S,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),_=(R=this.videoTracksMap.get(w))==null?void 0:R.representation,q=M&&((Z=this.audioTracksMap.get(M))==null?void 0:Z.representation);if(_&&q)return[_,q];if(_&&!q&&this.audioTracksMap.size===0)return[_,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){it(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:te.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Ze(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML),this.tracer.end()}};var Vl=G(Wa(),1);var{NativeAbortSignal:rF,NativeAbortController:aF}=function(s){return{NativeAbortSignal:s.AbortSignal,NativeAbortController:s.AbortController}}(typeof self!="undefined"?self:global);function Zv(s){let e;try{e=new Event("abort")}catch(t){typeof document!="undefined"?document.createEvent?(e=document.createEvent("Event"),e.initEvent("abort",!1,!1)):(e=document.createEventObject(),e.type="abort"):e={type:"abort",bubbles:!1,cancelable:!1}}return e.reason=s,e}function eS(s){if(s===void 0)if(typeof document=="undefined")s=new Error("This operation was aborted"),s.name="AbortError";else try{s=new DOMException("signal is aborted without reason"),Object.defineProperty(s,"name",{value:"AbortError"})}catch(e){s=new Error("This operation was aborted"),s.name="AbortError"}return s}var lo=class{constructor(){Object.defineProperty(this,"listeners",{value:{},writable:!0,configurable:!0})}addEventListener(e,t,i){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:i})}removeEventListener(e,t){if(!(e in this.listeners))return;let i=this.listeners[e];for(let r=0,a=i.length;r<a;r++)if(i[r].callback===t){i.splice(r,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let i=this.listeners[e.type].slice();for(let r=0,a=i.length;r<a;r++){let n=i[r];try{n.callback.call(this,e)}catch(o){Promise.resolve().then(()=>{throw o})}n.options&&n.options.once&&this.removeEventListener(e.type,n.callback)}return!e.defaultPrevented}},Fr=class extends lo{constructor(){super(),this.listeners||lo.call(this),Object.defineProperty(this,"aborted",{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,"onabort",{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,"reason",{value:void 0,writable:!0,configurable:!0})}toString(){return"[object AbortSignal]"}dispatchEvent(e){e.type==="abort"&&(this.aborted=!0,typeof this.onabort=="function"&&this.onabort.call(this,e)),super.dispatchEvent(e)}throwIfAborted(){let{aborted:e,reason:t="Aborted"}=this;if(e)throw t}static timeout(e){let t=new tr;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,"TimeoutError")),e),t.signal}static any(e){let t=new tr;function i(){t.abort(this.reason),r()}function r(){for(let a of e)a.removeEventListener("abort",i)}for(let a of e)if(a.aborted){t.abort(a.reason);break}else a.addEventListener("abort",i);return t.signal}},tr=class{constructor(){Object.defineProperty(this,"signal",{value:new Fr,writable:!0,configurable:!0})}abort(e){let t=eS(e),i=Zv(t);this.signal.reason=t,this.signal.dispatchEvent(i)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(tr.prototype[Symbol.toStringTag]="AbortController",Fr.prototype[Symbol.toStringTag]="AbortSignal");function po(s){return s.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof s.Request=="function"&&!s.Request.prototype.hasOwnProperty("signal")||!s.AbortController}function fl(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!po({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:a};let a=t;(a&&!a.prototype.hasOwnProperty("signal")||r)&&(a=function(c,l){let d;l&&l.signal&&(d=l.signal,delete l.signal);let p=new t(c,l);return d&&Object.defineProperty(p,"signal",{writable:!1,enumerable:!1,configurable:!0,value:d}),p},a.prototype=t.prototype);let n=e;return{fetch:(u,c)=>{let l=a&&a.prototype.isPrototypeOf(u)?u.signal:c?c.signal:void 0;if(l){let d;try{d=new DOMException("Aborted","AbortError")}catch(h){d=new Error("Aborted"),d.name="AbortError"}if(l.aborted)return Promise.reject(d);let p=new Promise((h,m)=>{l.addEventListener("abort",()=>m(d),{once:!0})});return c&&c.signal&&delete c.signal,Promise.race([p,n(u,c)])}return n(u,c)},Request:a}}var Le=typeof globalThis=="object"&&globalThis||typeof window=="object"&&window;var lM=()=>"fetch"in Le,Qa=lM()&&po({fetch:Le.fetch,Request:Le.Request,AbortController:Le.AbortController}),tS=Qa?fl({fetch:Le.fetch,Request:Le.Request,AbortController:Le.AbortController}):void 0,vt=Qa?tS.fetch:Le.fetch,bF=Qa?tS.Request:Le.Request,ye=Qa?tr:Le.AbortController,gF=Qa?Fr:Le.AbortSignal;var _y=G(Xe(),1);var IS=G(TS(),1),Ur=require("@vkontakte/videoplayer-shared/es2018"),ho=s=>{if(!s)return{id:"EmptyResponse",category:Ur.ErrorCategory.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:Ur.ErrorCategory.NETWORK,message:`UV Error ${s}`};let e=(0,IS.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Ur.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(s,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:Ur.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Ur.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var I=require("@vkontakte/videoplayer-shared/es2018");var Ii=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var fo=s=>{var a;let e=s.get("X-Delivery-Type"),t=s.get("X-Reused"),i=e===null?"http1":e!=null?e:void 0,r=t===null?void 0:(a={1:!0,0:!1}[t])!=null?a:void 0;return{type:i,reused:r}};var N=require("@vkontakte/videoplayer-shared/es2018");var mo=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var bo=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.manifestRequested=new N.Subject;this.manifestReceived=new N.Subject;this.firstBytesRequested=new N.Subject;this.firstBytesReceived=new N.Subject;this.lastConnectionType$=new N.ValueSubject(void 0);this.lastConnectionReused$=new N.ValueSubject(void 0);this.lastRequestFirstBytes$=new N.ValueSubject(void 0);this.lastConnectionMetrics$=new N.ValueSubject(void 0);this.lastDownloadMetrics$=new N.ValueSubject(void 0);this.recoverableError$=new N.Subject;this.error$=new N.Subject;this.abortAllController=new ye;this.subscription=new N.Subscription;this.performanceObserver=null;this.pendingConnectionMetrics=new Map;this.fetchManifest=(0,N.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Ii(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=mo(i)),this.trackRequestStart(i,performance.now());let r=(0,N.now)();this.manifestRequested.next();let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(N.suppressAbort);if(a){let n=(0,N.now)();t.log("success",(0,N.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.manifestReceived.next(),this.onHeadersReceived(a.headers);let o=a.headers.get("content-length"),u=0;o&&(u=parseInt(o,10));let c=await a.text();if((!o||isNaN(u)||u<=0)&&(u=new TextEncoder().encode(c).length),u>0){let l=n-r,p=u/(l/1e3)*8/1024,h={bytes:u,speed:p,url:e};this.lastDownloadMetrics$.next(h)}return c}else return t.error("error",(0,N.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null}.bind(this));this.fetch=(0,N.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:c=!1}={}){var ie,le,oe;let l=e,d=new Headers,p=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let A=new URL(l,(0,N.getWindow)().location.href);A.searchParams.append("bytes",`${i.from}-${i.to}`),l=A.toString();break}default:(0,N.assertNever)(t)}this.requestQuic&&(l=Ii(l));let h=this.abortAllController.signal,m;if(n){let A=new ye;if(m=(0,N.merge)((0,N.fromEvent)(this.abortAllController.signal,"abort"),(0,N.fromEvent)(n,"abort")).subscribe(()=>{try{A.abort()}catch($){(0,N.suppressAbort)($)}}),this.subscription.add(m),this.abortAllController.signal.aborted||n.aborted)try{A.abort()}catch($){(0,N.suppressAbort)($)}h=A.signal}let b=0,S=(0,N.now)();p.log("startRequest",(0,N.flattenObject)({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:S})),this.trackRequestStart(l,performance.now()),this.firstBytesRequested.next();let v=yield this.doFetch(l,{priority:a,headers:d,signal:h}),y=(0,N.now)();if(!v)return p.error("error",{message:"No response in request"}),p.end(),m==null||m.unsubscribe(),null;if((ie=this.throughputEstimator)==null||ie.addRawRtt(y-S),!v.ok||!v.body){m==null||m.unsubscribe();let A=`Fetch error ${v.status}: ${v.statusText}`;return p.error("error",{message:A}),p.end(),Promise.reject(new Error(`Fetch error ${v.status}: ${v.statusText}`))}if(this.onHeadersReceived(v.headers),!r&&!o){m==null||m.unsubscribe();let A=(0,N.now)(),$={requestStartedAt:S,requestEndedAt:A,duration:A-S};return p.log("endRequest",(0,N.flattenObject)($)),p.end(),v.arrayBuffer()}let x=v.body;if(o){let A;[x,A]=v.body.tee(),(le=this.throughputEstimator)==null||le.trackStream(A,u)}let w=x.getReader(),M,_=parseInt((oe=v.headers.get("content-length"))!=null?oe:"",10);Number.isFinite(_)&&(M=_),!M&&i&&(M=i.to-i.from+1);let q=M?new Uint8Array(M):new Uint8Array(0),O=!1,H=A=>{m==null||m.unsubscribe(),O=!0,(0,N.suppressAbort)(A)},V=(0,N.abortable)(h,async function*({done:A,value:$}){if(b===0&&(this.lastRequestFirstBytes$.next((0,N.now)()-S),this.firstBytesReceived.next()),h.aborted){m==null||m.unsubscribe();return}if(!A&&$){if(c&&M)q.set($,b),b+=$.byteLength;else{let k=new Uint8Array(q.length+$.length);k.set(q),k.set($,q.length),q=k,b+=$.byteLength}r==null||r(new DataView(q.buffer),b),yield w==null?void 0:w.read().then(V,H)}}.bind(this));yield w==null?void 0:w.read().then(V,H),m==null||m.unsubscribe();let Q=(0,N.now)(),U={failed:O,requestStartedAt:S,requestEndedAt:Q,duration:Q-S};if(O)return p.error("endRequest",(0,N.flattenObject)(U)),p.end(),null;if(b>0){let A=Q-S,k=b/(A/1e3)*8/1024,R={bytes:b,speed:k,url:e};this.lastDownloadMetrics$.next(R)}return p.log("endRequest",(0,N.flattenObject)(U)),p.end(),q.buffer}.bind(this));this.fetchByteRangeRepresentation=(0,N.abortable)(this.abortAllController.signal,async function*(e,t,i){var v;if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,c,l;e.indexRange&&(c=e.indexRange.from,l=e.indexRange.to,u=a+1===c,u&&(n=Math.min(c,r),o=Math.max(l,a))),n=Math.min(n,0);let d=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!d)return null;let p=new DataView(d,r-n,a-n+1);if(!t.validateData(p))throw new Error("Invalid media file");let h=t.parseInit(p),m=(v=e.indexRange)!=null?v:t.getIndexRange(h);if(!m)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(d,m.from-n,m.to-m.from+1);else{let y=yield this.fetch(e.url,{range:m,priority:i,measureThroughput:!1});if(!y)return null;b=new DataView(y)}let S=t.parseSegments(b,h,m).map(y=>({networkStatus:"none",bufferStatus:"none",status:"none",time:y.time,byte:y.byte}));return{initMetadata:h,initDataView:new DataView(d),segments:S}}.bind(this));this.fetchTemplateRepresentation=(0,N.abortable)(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{priority:t,measureThroughput:!1});if(!r)return null;let a=e.segments.map(n=>({...n,networkStatus:"none",bufferStatus:"none",status:"none",size:void 0}));return{initMetadata:null,initDataView:new DataView(r),segments:a}}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a,(0,N.getWindow)().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:i}=fo(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}setupPerformanceObserver(){this.performanceObserver=new((0,N.getWindow)()).PerformanceObserver(e=>{e.getEntriesByType("resource").forEach(t=>{this.processResourceTiming(t)})}),this.performanceObserver.observe({entryTypes:["resource"]})}processResourceTiming(e){let t=this.findMatchingRequest(e);if(!t||!this.pendingConnectionMetrics.get(t))return;this.pendingConnectionMetrics.delete(t);let r=this.extractConnectionMetrics(e);r&&this.lastConnectionMetrics$.next(r)}estimateNetworkType(){if(!("connection"in(0,N.getWindow)().navigator))return"unknown";let e=(0,N.getWindow)().navigator.connection;return e.effectiveType?{"slow-2g":"2g","2g":"2g","3g":"3g","4g":"lte"}[e.effectiveType]||e.effectiveType:e.downlink?e.downlink<1?"2g":e.downlink<5?"3g":e.downlink<50?"lte":"wifi":e.rtt?e.rtt>500?"2g":e.rtt>250?"3g":e.rtt>50?"lte":"wifi":"unknown"}extractConnectionMetrics(e){let t=0,i=0,r=0,a=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(a=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,i=e.secureConnectionStart-e.connectStart):i=a),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,i),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,a),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,i]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),a=r.origin+r.pathname,n=new URL(i.url),o=n.origin+n.pathname;if(a===o&&e.startTime>=i.startTime-10&&e.startTime<=i.startTime+1e3)return t}}catch(t){this.recoverableError$.next({id:"VideoDataFetchError",message:"Video data fetch error with getting download metrics",category:N.ErrorCategory.WTF})}return null}trackRequestStart(e,t){let i=`${e}_${t}_${Math.random().toString(36).substr(2,9)}`;this.pendingConnectionMetrics.set(i,{url:e,startTime:t})}async fetchRepresentation(e,t,i="auto"){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,N.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&(this.performanceObserver.disconnect(),this.performanceObserver=null),this.pendingConnectionMetrics.clear(),this.tracer.end()}async doFetch(e,t){let i=await vt(e,t);if(i.ok)return i;let r=await i.text(),a=parseInt(r);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:N.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:N.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:N.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:N.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:N.ErrorCategory.FATAL,httpCode:i.status,UVBackendErrorCode:r})}}};var Pl=G(WS(),1),py=G(mi(),1),hy=G(oy(),1),fy=G(bt(),1),kl=G(Hi(),1);var uy=G(Xe(),1),xl=s=>{let e=s.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,a,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,a,n]=i;return!!(r&&parseInt(r,10)>=2&&n&&parseInt(n,10)>8)}case"avc1":{let r=i[0];if(!r||r.length!==6)return!1;let[a,n]=r.toUpperCase(),o=a+n;return(0,uy.default)(["6E","7A","F4"],o)}}return!1};var Ga=require("@vkontakte/videoplayer-shared/es2018");var cy=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var ly=s=>{var e;try{let t=x$(),i=s.match(t),{groups:r}=i!=null?i:{};if(r){let a={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(c=>{a[c[0]]=c.slice(2)})}let n=(e=r.variants)==null?void 0:e.split(/-/).filter(u=>u!==""),o={extlang:r.extlang,langtag:r.langtag,language:r.language,privateuse:r.privateuse||r.privateuse2,region:r.region,script:r.script,extensions:a,variants:n};return Object.keys(o).forEach(u=>{let c=o[u];(typeof c=="undefined"||c==="")&&delete o[u]}),o}return null}catch(t){return null}};function x$(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",l=`^(?:(?<langtag>${`
172
- (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
116
+ [selected audio track] ${v?.id}
117
+ `}),v},Ja=e=>new URL(e).hostname,z=require(`@vkontakte/videoplayer-shared/es2018`),Ya=u(An(),1),Xa=u(Fn(),1),Za=(e,t)=>typeof e==`string`?Xa.default(e,t):Ya.default(e,t),Qa=u(at(),1),$a=e=>{if(e instanceof DOMException&&Qa.default([`Failed to load because no supported source was found.`,`The element has no supported sources.`],e.message))throw e;return!(e instanceof DOMException&&(e.code===20||e.name===`AbortError`))},eo=async(e,t)=>{let n=e.muted;try{await e.play()}catch(r){if(!$a(r))return!1;if(t&&t(),n)return console.warn(r),!1;e.muted=!0;try{await e.play()}catch(t){return $a(t)?(e.muted=!1,console.warn(t),!1):!1}}return!0},to=require(`@vkontakte/videoplayer-shared/es2018`),no=u($e(),1),ro=require(`@vkontakte/videoplayer-shared/es2018`);function io(){return ro.now()}function ao(e){return io()-e}function oo(e){let t=e.split(`/`),n=t.slice(0,t.length-1).join(`/`),r=/^([a-z]+:)?\/\//i,i=e=>r.test(e);return{resolve:(e,t,r=!1)=>{i(e)||(e.startsWith(`/`)||(e=`/`+e),e=n+e);let a=e.indexOf(`?`)>-1?`&`:`?`;return r&&(e+=a+`lowLat=1`,a=`&`),t&&(e+=a+`_rnd=`+Math.floor(999999999*Math.random())),e}}}function so(e,t,n){let r=(...i)=>{n.apply(null,i),e.removeEventListener(t,r)};e.addEventListener(t,r)}function co(e,t,n,r){let i=window.XMLHttpRequest,a,o,s,c=!1,l=0,u,d,f=!1,p=`arraybuffer`,m=7e3,h=2e3,g=()=>{if(c)return;ro.assertNonNullable(u);let e=ao(u),t;if(e<h){t=h-e,setTimeout(g,t);return}h*=2,h>m&&(h=m),o&&o.abort(),o=new i,S()},_=e=>(a=e,C),v=e=>(d=e,C),y=()=>(p=`json`,C),b=()=>{if(!c){if(--l>=0){g(),r&&r();return}c=!0,d&&d(),n&&n()}},x=e=>(f=e,C),S=()=>{u=io(),o=new i,o.open(`get`,e);let n=0,r,l=0,m=()=>(ro.assertNonNullable(u),Math.max(u,Math.max(r||0,l||0)));if(a&&o.addEventListener(`progress`,e=>{let t=io();a.updateChunk&&e.loaded>n&&(a.updateChunk(m(),e.loaded-n),n=e.loaded,r=t)}),s&&(o.timeout=s,o.addEventListener(`timeout`,()=>b())),o.addEventListener(`load`,()=>{if(c)return;ro.assertNonNullable(o);let e=o.status;if(e>=200&&e<300){let{response:e,responseType:r}=o,i=e?.byteLength;if(typeof i==`number`&&a){let e=i-n;e&&a.updateChunk&&a.updateChunk(m(),e)}r===`json`&&(!e||!no.default(e).length)?b():(d&&d(),t(e))}else b()}),o.addEventListener(`error`,()=>{b()}),f){let e=()=>{ro.assertNonNullable(o),o.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(l=io(),o.removeEventListener(`readystatechange`,e))};o.addEventListener(`readystatechange`,e)}return o.responseType=p,o.send(),C},C={withBitrateReporting:_,withParallel:x,withJSONResponse:y,withRetryCount:e=>(l=e,C),withRetryInterval:(e,t)=>(ro.isNonNullable(e)&&(h=e),ro.isNonNullable(t)&&(m=t),C),withTimeout:e=>(s=e,C),withFinally:v,send:S,abort:()=>{o&&=(o.abort(),void 0),c=!0,d&&d()}};return C}var lo=100,uo=2e3,fo=500;class po{constructor(t){e(this,`intervals`,[]),e(this,`currentRate`,0),e(this,`logger`,void 0),this.logger=t}_updateRate(e){let t=.2;this.currentRate&&(e<this.currentRate*.1?t=.8:e<this.currentRate*.5?t=.5:e<this.currentRate*.7&&(t=.3)),e=Math.max(1,Math.min(e,100*1024*1024)),this.currentRate=this.currentRate?this.currentRate*(1-t)+e*t:e}_createInterval(e,t,n){return{start:e,end:t,bytes:n}}_doMergeIntervals(e,t){e.start=Math.min(t.start,e.start),e.end=Math.max(t.end,e.end),e.bytes+=t.bytes}_mergeIntervals(e,t){return e.start<=t.end&&t.start<=e.end?(this._doMergeIntervals(e,t),!0):!1}_flushIntervals(){if(!this.intervals.length)return!1;let e=this.intervals[0].start,t=this.intervals[this.intervals.length-1].end-fo;if(t-e>uo){let n=0,r=0;for(;this.intervals.length>0;){let e=this.intervals[0];if(e.end<=t)n+=e.end-e.start,r+=e.bytes,this.intervals.splice(0,1);else if(e.start>=t)break;else{let i=t-e.start,a=e.end-e.start;n+=i;let o=e.bytes*i/a;r+=o,e.start=t,e.bytes-=o}}if(r>0&&n>0){let i=r*8/(n/1e3);return this._updateRate(i),this.logger(`rate updated, new=${Math.round(i/1024)}K; average=${Math.round(this.currentRate/1024)}K bytes/ms=${Math.round(r)}/${Math.round(n)} interval=${Math.round(t-e)}`),!0}}return!1}_joinIntervals(){let e;do{e=!1;for(let t=0;t<this.intervals.length-1;++t)this._mergeIntervals(this.intervals[t],this.intervals[t+1])&&(this.intervals.splice(t+1,1),e=!0)}while(e)}addInterval(e,t,n){return this.intervals.push(this._createInterval(e,t,n)),this._joinIntervals(),this.intervals.length>lo&&(this.logger(`too many intervals (${this.intervals.length}); will merge`,{type:`warn`}),this._doMergeIntervals(this.intervals[1],this.intervals[0]),this.intervals.splice(0,1)),this._flushIntervals()}getBitRate(){return this.currentRate}}var mo=u($e(),1);class ho{constructor(t,n,r,i,a){e(this,`pendingQueue`,[]),e(this,`activeRequests`,{}),e(this,`completeRequests`,{}),e(this,`averageSegmentDuration`,2e3),e(this,`lastPrefetchStart`,0),e(this,`throttleTimeout`,null),e(this,`RETRY_COUNT`,void 0),e(this,`TIMEOUT`,void 0),e(this,`BITRATE_ESTIMATOR`,void 0),e(this,`MAX_PARALLEL_REQUESTS`,void 0),e(this,`logger`,void 0),this.RETRY_COUNT=t,this.TIMEOUT=n,this.BITRATE_ESTIMATOR=r,this.MAX_PARALLEL_REQUESTS=i,this.logger=a}limitCompleteCount(){let e;for(;(e=Object.keys(this.completeRequests)).length>this._getParallelRequestCount()+2;){let t=e[Math.floor(Math.random()*e.length)];this.logger(`Dropping completed request for url ${t}`,{type:`warn`}),delete this.completeRequests[t]}}_sendRequest(e,t){let n=io(),r=n=>{delete this.activeRequests[t],this.limitCompleteCount(),this.completeRequests[t]=e,this._sendPending(),e._error=1,e._errorMsg=n,e._errorCB?e._errorCB(n):(this.limitCompleteCount(),this.completeRequests[t]=e)};e._request=co(t,r=>{e._complete=1,e._responseData=r,e._downloadTime=io()-n,delete this.activeRequests[t],this._sendPending(),e._cb?e._cb(r,e._downloadTime):(this.limitCompleteCount(),this.completeRequests[t]=e)},()=>r(`error`),()=>{e._retry=1,e._retryCB&&e._retryCB()}),e._request.withRetryCount(this.RETRY_COUNT).withTimeout(this.TIMEOUT).withBitrateReporting(this.BITRATE_ESTIMATOR).withParallel(this._getParallelRequestCount()>1).withFinally(()=>{e._finallyCB&&e._finallyCB()}),this.activeRequests[t]=e,e._request.send(),this.lastPrefetchStart=io()}_getParallelRequestCount(){return Math.min(this.MAX_PARALLEL_REQUESTS,this.averageSegmentDuration<3e3?3:2)}_getPrefetchDelay(){return Math.max(100,Math.min(5e3,this.averageSegmentDuration/3))}_canSendPending(){let e=this._getParallelRequestCount(),t=io();if(Object.keys(this.activeRequests).length>=e)return!1;let n=this._getPrefetchDelay()-(t-this.lastPrefetchStart);return this.throttleTimeout&&clearTimeout(this.throttleTimeout),n>0?(this.throttleTimeout=window.setTimeout(()=>this._sendPending(),n),!1):!0}_sendPending(){for(;this._canSendPending();){let e=this.pendingQueue.pop();if(e){if(this.activeRequests[e]||this.completeRequests[e])continue;this.logger(`Submitting pending request url=${e}`),this._sendRequest({},e)}else return}}_removeFromActive(e){delete this.completeRequests[e],delete this.activeRequests[e]}abortAll(){mo.default(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,n,r){let i={};return i.send=()=>{let a=this.activeRequests[e]||this.completeRequests[e];if(a)a._cb=t,a._errorCB=n,a._retryCB=r,a._finallyCB=i._finallyCB,a._error||a._complete?(this._removeFromActive(e),setTimeout(()=>{a._complete?(this.logger(`Requested url already prefetched, url=${e}`),t(a._responseData,a._downloadTime)):(this.logger(`Requested url already prefetched with error, url=${e}`),n(a._errorMsg)),i._finallyCB&&i._finallyCB()},0)):this.logger(`Attached to active request, url=${e}`);else{let t=this.pendingQueue.indexOf(e);t!==-1&&this.pendingQueue.splice(t,1),this.logger(`Request not prefetched, starting new request, url=${e}${t===-1?``:`; removed pending`}`),this._sendRequest(i,e)}},i._cb=t,i._errorCB=n,i._retryCB=r,i.abort=function(){i.request&&i.request.abort()},i.withFinally=e=>(i._finallyCB=e,i),i}prefetch(e){this.activeRequests[e]||this.completeRequests[e]?this.logger(`Request already active for url=${e}`):(this.logger(`Added to pending queue; url=${e}`),this.pendingQueue.unshift(e),this._sendPending())}optimizeForSegDuration(e){this.averageSegmentDuration=e}}var go=require(`@vkontakte/videoplayer-shared/es2018`),_o=require(`@vkontakte/videoplayer-shared/es2018`),vo=(e,t)=>_o.isNonNullable(e)&&_o.isNonNullable(t)&&e.readyState===`open`&&yo(e,t);function yo(e,t){for(let n=0;n<e.activeSourceBuffers.length;++n)if(e.activeSourceBuffers[n]===t)return!0;return!1}var bo=u(lt(),1),xo=require(`@vkontakte/videoplayer-shared/es2018`);class So{constructor(t,n,r,i){e(this,`tag`,void 0),e(this,`time`,void 0),e(this,`data`,void 0),e(this,`stack`,void 0),this.tag=t,this.time=n,this.data=r,this.stack=i}toString(){return`${this.tag}: ${this.time}: ${JSON.stringify(this.data)}${this.stack?`, stack: ${this.stack}`:``}`}toDevNullEntry(){let e=bo.default(this.data).map(([e,t])=>`${e}:${t}`).join(`,`);return{key:this.tag,strings:[e,this.stack??``],numbers:[this.time]}}}var B=((e,t=`warn`)=>{let n=xo.getWindow(),r=[];function i(i,a=!1){var o;let s=((o=n.performance)==null||(o=o.timing)==null?void 0:o.navigationStart)??0,c=new So(e,Math.round((Date.now()-s)/1e3),i,a?Error().stack:void 0);r.push(c),t&&n.console[t](c.toString())}return i.reset=()=>{r=[]},i.drain=()=>{let e=r;return r=[],e},i})(`vp_dash_live_debug`,!1),Co=1e4,wo=3,To=6e4,Eo=10,Do=1,Oo=500;class ko{constructor(t){e(this,`paused`,!1),e(this,`autoQuality`,!0),e(this,`autoQualityLimits`,void 0),e(this,`buffering`,!0),e(this,`destroyed`,!1),e(this,`videoPlayStarted`,!1),e(this,`lowLatency`,!1),e(this,`rep`,void 0),e(this,`bitrate`,0),e(this,`manifest`,[]),e(this,`bitrateSwitcher`,void 0),e(this,`filesFetcher`,void 0),e(this,`sourceBuffer`,0),e(this,`mediaSource`,void 0),e(this,`currentManifestEntry`,void 0),e(this,`manifestRequest`,void 0),e(this,`manifestRefetchTimer`,void 0),e(this,`bufferStates`,[]),e(this,`downloadRate`,void 0),e(this,`sourceJitter`,-1),e(this,`chunkRateEstimator`,void 0),e(this,`manifestUrl`,void 0),e(this,`urlResolver`,void 0),e(this,`waitingForFirstBufferAfterSrcChange`,!1),e(this,`params`,void 0),e(this,`soundProhibitedEvent$`,void 0),this.params=t,this.soundProhibitedEvent$=new go.Subject,this.chunkRateEstimator=new po(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=oo(e),this.bitrateSwitcher=this._initBitrateSwitcher(),this._initManifest()}setAutoQualityEnabled(e){this.autoQuality=e}setAutoQualityLimits(e){this.autoQualityLimits=e}switchByName(e){let t;for(let n=0;n<this.manifest.length;++n)if(t=this.manifest[n],t.name===e){this._switchToQuality(t);return}}catchUp(){this.rep&&(B({m:`ldp.catchUp.1`}),this.rep.stop()),this.currentManifestEntry&&(this.paused=this.params.playbackState.getState()===`paused`,B({m:`ldp.catchUp.2`}),this._initPlayerWith(this.currentManifestEntry),this._notifyBuffering(!0))}stop(){this.params.videoElement.pause(),this.rep&&=(this.rep.stop(),null)}pause(){this.paused=!0,this.params.videoElement.pause(),this.videoPlayStarted=!1,this._notifyBuffering(!1)}play(){this.paused=!1;let e=this.lowLatency&&this._getBufferSizeSec()>this.sourceJitter+5;this.rep&&!e?(this.bufferStates=[],this.videoPlayStarted=!1,this.shouldPlay()?(B({m:`ldp.play.1`}),this._playVideoElement()):(B({m:`ldp.play.2`}),this._notifyBuffering(!0))):(B({m:`ldp.play.3`}),this.catchUp())}startPlay(e,t){this.autoQuality=t,B({m:`startPlay`,url:e.jidxUrl}),this._initPlayerWith(e)}destroy(){this.destroyed=!0,this.rep&&=(this.rep.stop(),null),this.manifestRequest&&this.manifestRequest.abort(),this.manifestRefetchTimer&&=(clearTimeout(this.manifestRefetchTimer),void 0)}reinit(e){this.manifestUrl=e,this.urlResolver=oo(e),B({m:`ldp.reinit`,url:e}),this.catchUp()}_handleNetworkError(){this.params.logger(`Fatal network error`),this.params.playerCallback({name:`error`,type:`network`})}_retryCallback(){this.params.playerCallback({name:`retry`})}_getBufferSizeSec(){let e=this.params.videoElement,t=0,n=e.buffered.length;return n!==0&&(t=e.buffered.end(n-1)-Math.max(e.currentTime,e.buffered.start(0))),t}_notifyBuffering(e){this.destroyed||(this.params.logger(`buffering: ${e}`),this.params.playerCallback({name:`buffering`,isBuffering:e}),this.buffering=e)}_initVideo(){let{videoElement:e,logger:t}=this.params;B({m:`iv`}),e.addEventListener(`error`,()=>{e.error&&!this.destroyed&&(B({m:`iv.err`,e:e.error?.code+`:`+e.error?.message}),t(`Video element error: ${e.error?.code}, details: ${e.error?.message}`),this.params.playerCallback({name:`error`,type:`media`}))}),e.addEventListener(`timeupdate`,()=>{let e=this._getBufferSizeSec();!this.paused&&e<.3?this.buffering||(this.buffering=!0,window.setTimeout(()=>{!this.paused&&this.buffering&&this._notifyBuffering(!0)},(e+.1)*1e3)):this.buffering&&this.videoPlayStarted&&this._notifyBuffering(!1)}),e.addEventListener(`playing`,()=>{t(`playing`)}),e.addEventListener(`stalled`,()=>this._fixupStall()),e.addEventListener(`waiting`,()=>this._fixupStall())}_fixupStall(){let{logger:e,videoElement:t}=this.params,n=t.buffered.length,r;n!==0&&!this.waitingForFirstBufferAfterSrcChange&&(r=t.buffered.start(n-1),t.currentTime<r&&(e(`Fixup stall`),B({m:`ldp.fs`,t:r}),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,n,r,i,a=t&&1.62*(N.display.pixelRatio||1)*t.offsetHeight||520;for(let t=0;t<this.manifest.length;++t){i=this.manifest[t];let{max:o,min:s}=this.autoQualityLimits||{};!Oa({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:Za(this.manifest,-1).video.height})&&(o&&i.video.height>o||s&&i.video.height<s)||(i.bitrate<e&&a>Math.min(i.video.height,i.video.width)?(!r||i.bitrate>r.bitrate)&&(r=i):(!n||n.bitrate>i.bitrate)&&(n=i))}return r||n}shouldPlay(){if(this.paused)return!1;let e=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return e>3||to.isNonNullable(this.downloadRate)&&(this.downloadRate>1.5&&e>2||this.downloadRate>2&&e>1)}_setVideoSrc(e,t){let{logger:n,videoElement:r,playerCallback:i}=this.params;this.mediaSource=new window.MediaSource,n(`setting video src`),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener(`sourceopen`,()=>{if(this.mediaSource?.readyState!==`open`){B({m:`sourceopen`,err:`not open: ${this.mediaSource?.readyState}`});return}B({m:`sourceopen`,c:e.codecs}),this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t()}),this.mediaSource?.addEventListener(`sourceclose`,e=>{B({m:`sourceclose`})}),this.videoPlayStarted=!1,r.addEventListener(`canplay`,()=>{B({m:`canplay`}),this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let a=()=>{so(r,`progress`,()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,i({name:`playing`})):a()})};this.waitingForFirstBufferAfterSrcChange=!0,a()}_initPlayerWith(e){this.bitrate=0,this.rep=0,this.sourceBuffer=0,this.bufferStates=[],this.filesFetcher&&this.filesFetcher.abortAll(),this.filesFetcher=new ho(wo,Co,this.bitrateSwitcher,this.params.config.maxParallelRequests,this.params.logger),this._setVideoSrc(e,()=>this._switchToQuality(e))}_representation(e){let{logger:t,videoElement:n,playerCallback:r}=this.params,i=!1,a=null,o=null,s=null,c=null,l=!1,u=()=>{let e=i&&(!l||l===this.rep);return e||t(`Not running!`),e},d=(e,t,n)=>{s&&s.abort(),s=co(this.urlResolver.resolve(e,!1),t,n,()=>this._retryCallback()).withTimeout(Co).withBitrateReporting(this.bitrateSwitcher).withRetryCount(wo).withFinally(()=>{s=null}).send()},f=(e,t,n)=>{to.assertNonNullable(this.filesFetcher),o?.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(e,!1),t,n,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},p=e=>{let r=n.playbackRate;n.playbackRate!==e&&(t(`Playback rate switch: ${r}=>${e}`),n.playbackRate=e)},m=e=>{this.lowLatency=e,t(`lowLatency changed to ${e}`),h()},h=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)p(1);else{let e=this._getBufferSizeSec();if(this.bufferStates.length<5){p(1);return}let n=io()-1e4,r=0;for(let t=0;t<this.bufferStates.length;t++){let i=this.bufferStates[t];e=Math.min(e,i.buf),i.ts<n&&r++}this.bufferStates.splice(0,r),t(`update playback rate; minBuffer=${e} drop=${r} jitter=${this.sourceJitter}`);let i=e-Do;this.sourceJitter>=0?i-=this.sourceJitter/2:--this.sourceJitter,p(i>3?1.15:i>1?1.1:i>.3?1.05:1)}},g=e=>{let n,i=()=>n&&n.start?n.start.length:0,a=e=>n.start[e]/1e3,o=e=>n.dur[e]/1e3,s=e=>n.fragIndex+e,l=(e,t)=>({chunkIdx:s(e),startTS:a(e),dur:o(e),discontinuity:t}),d=()=>{let e=0;if(n&&n.dur){let t=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,r=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,i=t;this.sourceJitter>1&&(i+=this.sourceJitter-1);let a=n.dur.length-1;for(;a>=0&&(i-=n.dur[a],!(i<=0));--a);e=Math.min(a,n.dur.length-1-r),e=Math.max(e,0)}return l(e,!0)},f=e=>{let t=i();if(!(t<=0)){if(to.isNonNullable(e)){for(let n=0;n<t;n++)if(a(n)>e)return l(n)}return d()}},p=e=>{let r=i(),a=e?e.chunkIdx+1:0,o=a-n.fragIndex;if(!(r<=0)){if(!e||o<0||o-r>Eo)return t(`Resync: offset=${o} bChunks=${r} chunk=`+JSON.stringify(e)),d();if(!(o>=r))return l(a-n.fragIndex,!1)}},h=(e,t,n)=>{c&&c.abort(),c=co(this.urlResolver.resolve(e,!0,this.lowLatency),t,n,()=>this._retryCallback()).withTimeout(Co).withRetryCount(wo).withFinally(()=>{c=null}).withJSONResponse().send()};return{seek:(t,i)=>{h(e,e=>{if(!u())return;n=e;let a=!!n.lowLatency;a!==this.lowLatency&&m(a);let o=0;for(let e=0;e<n.dur.length;++e)o+=n.dur[e];o>0&&(to.assertNonNullable(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(o/n.dur.length)),r({name:`index`,zeroTime:n.zeroTime,shiftDuration:n.shiftDuration}),this.sourceJitter=n.hasOwnProperty(`jitter`)?Math.min(10,Math.max(.01,n.jitter/1e3)):1,t(f(i))},()=>this._handleNetworkError())},nextChunk:p}},_=()=>{i=!1,o&&o.abort(),s&&s.abort(),c&&c.abort(),to.assertNonNullable(this.filesFetcher),this.filesFetcher.abortAll()};return l={start:t=>{let{videoElement:n,logger:o}=this.params,s=g(e.jidxUrl),l,p,m,v,y=0,b,x,S,C=()=>{b&&=(clearTimeout(b),void 0);let e=Math.max(Oo,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),t=y+e,n=io(),r=Math.min(1e4,t-n);y=n;let i=()=>{c||u()&&s.seek(()=>{u()&&(y=io(),w(),C())})};r>0?b=window.setTimeout(()=>{this.paused?C():i()},r):i()},w=()=>{let t;for(;t=s.nextChunk(v);)v=t,ee(t);let n=s.nextChunk(m);if(n){if(m&&n.discontinuity){o(`Detected discontinuity; restarting playback`),this.paused?C():(_(),B({m:`ldp.fetchChunkIdx.0`}),this._initPlayerWith(e));return}O(n)}else C()},T=(e,t)=>{if(!u()||!this.sourceBuffer){B({m:`ab.0`,c:[!u(),!this.sourceBuffer]});return}let i,a,s,c=n=>{B({m:`ldp.postpone`,t:n}),window.setTimeout(()=>{u()&&T(e,t)},n)};if(this.sourceBuffer.updating)o(`Source buffer is updating; delaying appendBuffer`),B({m:`ldp.ab.1`}),c(100);else{let l=io(),u=n.currentTime;!this.paused&&n.buffered.length>1&&x===u&&l-S>500&&(o(`Stall suspected; trying to fix`),this._fixupStall()),x!==u&&(x=u,S=l);let d=this._getBufferSizeSec();if(d>30)B({m:`ldp.ab.3`}),o(`Buffered ${d} seconds; delaying appendBuffer`),c(2e3);else try{if(this.params.config.useInvalidBufferFix&&vo(this.mediaSource,this.sourceBuffer))return;this.sourceBuffer.appendBuffer(e),this.videoPlayStarted?(B({m:`ldp.ab.5`}),this.bufferStates.push({ts:l,buf:d}),h(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(B({m:`ldp.ab.4`}),this.videoPlayStarted=!0,this._playVideoElement()),t&&t()}catch(e){B({m:`ldp.ab.err`,e:e.name}),e.name===`QuotaExceededError`?(o(`QuotaExceededError; delaying appendBuffer`),s=this.sourceBuffer.buffered.length,s!==0&&(i=this.sourceBuffer.buffered.start(0),a=u,a-i>4&&this.sourceBuffer.remove(i,a-3)),c(1e3)):(o(e.name),r({name:`error`,type:`buffer`,message:`appendBuffer failed due to ${e.name}`}))}}},E=()=>{p&&l&&(o([`Appending chunk, sz=${p.byteLength}:`,JSON.stringify(m)]),T(p,function(){p=null,w()}))},D=t=>e.fragUrlTemplate.replace(`%%id%%`,t.chunkIdx),O=e=>{u()&&f(D(e),(t,n)=>{if(u()){if(n/=1e3,p=t,m=e,a=e.startTS,n){let t=Math.min(10,e.dur/n);this.downloadRate=this.downloadRate?.7*this.downloadRate+.3*t:t}E()}},()=>this._handleNetworkError())},ee=e=>{u()&&(to.assertNonNullable(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(D(e),!1)))},k=t=>{u()&&(e.cachedHeader=t,T(t,()=>{l=!0,E()}))};i=!0,s.seek(e=>{if(u()){if(y=io(),!e){C();return}v=e,!to.isNullable(t)||e.startTS>t?O(e):(m=e,w())}},t),e.cachedHeader?k(e.cachedHeader):d(e.headerUrl,k,()=>this._handleNetworkError())},stop:_,getTimestampSec:()=>a},l}_switchToQuality(e){let{logger:t,playerCallback:n}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),to.isNonNullable(r)&&(r+=.1),this.rep.stop()),this.currentManifestEntry=e,this.rep=this._representation(e),t(`switch to quality: codecs=${e.codecs}; headerUrl=${e.headerUrl}; bitrate=${e.bitrate}`),this.bitrate=e.bitrate,to.assertNonNullable(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),n({name:`qualitySwitch`,quality:e}))}_qualityAvailable(e){return to.isNonNullable(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,n=t=>{if(!this.autoQuality)return;let n,r,i;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&t<this.bitrate&&(r=this._getBufferSizeSec(),i=t/this.bitrate,r>10&&i>.8||r>15&&i>.5||r>20&&i>.3)){e(`Not switching: buffer=${Math.floor(r)}; bitrate=${this.bitrate}; newRate=${Math.floor(t)}`);return}n=this._selectQuality(t),n?this._switchToQuality(n):e(`Could not find quality by bitrate ${t}`)},r={updateChunk:(e,n)=>{let r=io();if(this.chunkRateEstimator.addInterval(e,r,n)){let i=this.chunkRateEstimator.getBitRate();return t({name:`bandwidth`,size:n,duration:r-e,speed:i}),!0}},get:()=>{let e=this.chunkRateEstimator.getBitRate();return e?e*.85:0}},i=-1/0,a,o=!0,s=()=>{let e=r.get();if(e&&a&&this.autoQuality){if(o&&e>a&&ao(i)<3e4)return;n(e)}o=this.autoQuality};return{updateChunk:(e,t)=>{let n=r.updateChunk(e,t);return n&&s(),n},notifySwitch:e=>{let t=io();e<a&&(i=t),a=e}}}_fetchManifest(e,t,n){this.manifestRequest=co(this.urlResolver.resolve(e,!0),t,n,()=>this._retryCallback()).withJSONResponse().withTimeout(Co).withRetryCount(this.params.config.manifestRetryMaxCount).withRetryInterval(this.params.config.manifestRetryInterval,this.params.config.manifestRetryMaxInterval).send().withFinally(()=>{this.manifestRequest=void 0})}_playVideoElement(){let{videoElement:e}=this.params;eo(e,()=>{this.soundProhibitedEvent$.next()}).then(e=>{B({m:`ldp.pve.1`}),e||(B({m:`ldp.pve.2`}),this.params.liveOffset.pause(),this.params.videoState.setState(`paused`))})}_handleManifestUpdate(e){let{logger:t,playerCallback:n,videoElement:r}=this.params;this.manifest=(e=>{let t=[];return e?.length?(e.forEach((e,n)=>{var i,a;e.video&&r.canPlayType(e.codecs).replace(/no/,``)&&!((i=window.MediaSource)==null||(a=i.isTypeSupported)==null)&&a.call(i,e.codecs)&&(e.index=n,t.push(e))}),t.sort(function(e,t){return e.video&&t.video?t.video.height-e.video.height:t.bitrate-e.bitrate}),t):(n({name:`error`,type:`empty_manifest`}),[])})(e),t(`Valid manifest entries: ${this.manifest.length}/${e.length}`),n({name:`manifest`,manifest:this.manifest})}_refetchManifest(e){this.destroyed||(this.manifestRefetchTimer&&clearTimeout(this.manifestRefetchTimer),this.manifestRefetchTimer=window.setTimeout(()=>{this._fetchManifest(e,t=>{this.destroyed||(this._handleManifestUpdate(t),this._refetchManifest(e))},()=>this._refetchManifest(e))},To))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}}var Ao=u(lt(),1),jo=require(`@vkontakte/videoplayer-shared/es2018`);class Mo{constructor(){e(this,`onDroopedVideoFramesLimit$`,new jo.Subject),e(this,`subscription`,new jo.Subscription),e(this,`log`,void 0),e(this,`video`,void 0),e(this,`droppedFramesChecker`,void 0),e(this,`isAuto`,void 0),e(this,`playing`,!1),e(this,`tracks`,[]),e(this,`forceChecker$`,new jo.Subject),e(this,`isForceCheckCounter`,0),e(this,`prevTotalVideoFrames`,0),e(this,`prevDroppedVideoFrames`,0),e(this,`currentTimer`,void 0),e(this,`limitCounts`,{}),e(this,`currentQuality`,void 0),e(this,`maxQualityLimit`,void 0),e(this,`handleChangeVideoQuality`,()=>{let e=this.tracks.find(({size:e})=>e?.height===this.video.videoHeight&&e?.width===this.video.videoWidth);e&&!jo.isInvariantQuality(e.quality)&&this.onChangeQuality(e.quality)}),e(this,`checkDroppedFrames`,()=>{let{totalVideoFrames:e,droppedVideoFrames:t}=this.video.getVideoPlaybackQuality(),n=e-this.prevTotalVideoFrames,r=1-(n-(t-this.prevDroppedVideoFrames))/n;!isNaN(r)&&r>0&&this.log({message:`[dropped]. current dropped percent: ${r}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(r)&&r>=this.droppedFramesChecker.percentLimit&&jo.isHigher(this.currentQuality,this.droppedFramesChecker.minQualityBanLimit)&&(this.limitCounts[this.currentQuality]=(this.limitCounts[this.currentQuality]??0)+1,this.maxQualityLimit=this.getMaxQualityLimit(this.currentQuality),this.currentTimer&&window.clearTimeout(this.currentTimer),this.currentTimer=window.setTimeout(()=>this.maxQualityLimit=this.getMaxQualityLimit(),this.droppedFramesChecker.qualityUpWaitingTime),this.onDroopedVideoFramesLimitTrigger()),this.savePrevFrameCounts(e,t)})}connect(e){this.log=e.logger.createComponentLog(`DroppedFramesManager`),this.video=e.video,this.isAuto=e.isAuto,this.tracks=e.tracks,this.droppedFramesChecker=e.droppedFramesChecker,this.subscription.add(e.playing$.subscribe(()=>this.playing=!0)),this.subscription.add(e.pause$.subscribe(()=>this.playing=!1)),this.isEnabled&&this.subscribe()}destroy(){this.currentTimer&&window.clearTimeout(this.currentTimer),this.subscription.unsubscribe()}get droppedVideoMaxQualityLimit(){return this.maxQualityLimit}subscribe(){this.subscription.add(jo.fromEvent(this.video,`resize`).subscribe(this.handleChangeVideoQuality));let e=jo.interval(this.droppedFramesChecker.checkTime).pipe(jo.filter(()=>this.playing),jo.filter(()=>{let e=!!this.isForceCheckCounter;return e&&--this.isForceCheckCounter,!e})),t=this.forceChecker$.pipe(jo.debounce(this.droppedFramesChecker.checkTime)),n=jo.merge(e,t);this.subscription.add(n.subscribe(this.checkDroppedFrames))}onChangeQuality(e){this.currentQuality=e;let{totalVideoFrames:t,droppedVideoFrames:n}=this.video.getVideoPlaybackQuality();this.savePrevFrameCounts(t,n),this.isForceCheckCounter=this.droppedFramesChecker.tickCountAfterQualityChange,this.forceChecker$.next()}onDroopedVideoFramesLimitTrigger(){this.isAuto.getState()&&(this.log({message:`[onDroopedVideoFramesLimit]. maxQualityLimit: ${this.maxQualityLimit}`}),this.onDroopedVideoFramesLimit$.next())}getMaxQualityLimit(e){var t;let n=(t=Ao.default(this.limitCounts).filter(([,e])=>e>=this.droppedFramesChecker.countLimit).sort(([e],[t])=>jo.isLower(e,t)?-1:1))==null||(t=t[0])==null?void 0:t[0];return e??n}get isEnabled(){return this.droppedFramesChecker.enabled&&this.isDroppedFramesCheckerSupport}get isDroppedFramesCheckerSupport(){return!!this.video&&typeof this.video.getVideoPlaybackQuality==`function`}savePrevFrameCounts(e,t){this.prevTotalVideoFrames=e,this.prevDroppedVideoFrames=t}}var No=Mo,Po=require(`@vkontakte/videoplayer-shared/es2018`),Fo=require(`@vkontakte/videoplayer-shared/es2018`),Io=()=>!!window.documentPictureInPicture?.window||!!document.pictureInPictureElement,Lo=(e,t)=>new Po.Observable(n=>{if(!window.IntersectionObserver)return;let r=new IntersectionObserver((e,t)=>{e.forEach(e=>n.next(e.isIntersecting||Io()))},{root:null,...t});r.observe(e);let i=Fo.fromEvent(document,`visibilitychange`).pipe(Po.map(e=>!document.hidden||Io())).subscribe(e=>n.next(e));return()=>{r.unobserve(e),i.unsubscribe()}}),Ro=[`paused`,`playing`,`ready`],zo=[`paused`,`playing`,`ready`];class Bo{constructor(t){e(this,`subscription`,new z.Subscription),e(this,`video`,void 0),e(this,`videoState`,new P(`stopped`)),e(this,`dash`,void 0),e(this,`representations$`,new z.ValueSubject([])),e(this,`textTracksManager`,void 0),e(this,`droppedFramesManager`,new No),e(this,`maxSeekBackTime$`,new z.ValueSubject(1/0)),e(this,`zeroTime$`,new z.ValueSubject(void 0)),e(this,`liveOffset`,new oa),e(this,`log`,void 0),e(this,`params`,void 0),e(this,`_dashCb`,e=>{switch(e.name){case`buffering`:{let t=e.isBuffering;this.params.output.isBuffering$.next(t);break}case`error`:this.params.output.error$.next({id:`DashLiveProviderInternal:${e.type}`,category:z.ErrorCategory.WTF,message:`LiveDashPlayer reported error${e.message?`: ${e.message}`:``}`});break;case`manifest`:{let t=e.manifest,n=[];for(let e of t){let t=e.name??e.index.toString(10),r=ma(e.name)??z.videoSizeToQuality(e.video),i=e.bitrate/1e3,a={...e.video};if(!r)continue;let o={id:t,quality:r,bitrate:i,size:a};n.push({track:o,representation:e})}this.representations$.next(n),this.params.output.availableVideoTracks$.next(n.map(({track:e})=>e)),this.videoState.getTransition()?.to===`manifest_ready`&&this.videoState.setState(`manifest_ready`);break}case`qualitySwitch`:{let t=e.quality,n=this.representations$.getValue().find(({representation:e})=>e===t)?.track;this.params.output.hostname$.next(new URL(t.headerUrl,this.params.source.url).hostname),z.isNonNullable(n)&&this.params.output.currentVideoTrack$.next(n);break}case`bandwidth`:{let{size:t,duration:n}=e;this.params.dependencies.throughputEstimator.addRawSpeed(t,n);break}case`index`:this.maxSeekBackTime$.next(e.shiftDuration||0),this.zeroTime$.next(e.zeroTime);break}}),e(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),n=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),i=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${n}; seekState: ${JSON.stringify(i)};`}),n===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.dash.destroy(),this.video.removeAttribute(`src`),this.video.load(),this.videoState.setState(`stopped`));return}if(t)return;let a=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(Li.default(zo,e)&&(a||o)){this.prepare();return}if(r?.to!==`paused`&&i.state===`requested`&&Li.default(Ro,e)){this.seek(i.position-this.liveOffset.getTotalPausedTime());return}switch(e){case`stopped`:this.videoState.startTransitionTo(`manifest_ready`),this.dash.attachSource(Nr(this.params.source.url));return;case`manifest_ready`:this.videoState.startTransitionTo(`ready`),this.prepare();break;case`ready`:if(n===`paused`)this.videoState.setState(`paused`);else if(n===`playing`){B({m:`dlp.sync.1`}),this.videoState.startTransitionTo(`playing`);let e=r?.from;e&&e===`ready`&&(B({m:`dlp.sync.2`}),this.dash.catchUp()),B({m:`dlp.sync.3`}),this.dash.play()}return;case`playing`:n===`paused`&&(this.videoState.startTransitionTo(`paused`),this.liveOffset.pause(),this.dash.pause());return;case`paused`:if(n===`playing`)if(this.videoState.startTransitionTo(`playing`),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.dash.play(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let e=this.liveOffset.getTotalOffset();e>=this.maxSeekBackTime$.getValue()&&(e=0,this.liveOffset.resetTo(e)),this.liveOffset.resume(),this.params.output.position$.next(-e/1e3),this.dash.reinit(Nr(this.params.source.url,e))}return;default:return z.assertNever(e)}}),this.textTracksManager=new aa(t.source.url),this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`DashLiveProvider`);let n=e=>{t.output.error$.next({id:`DashLiveProvider`,category:z.ErrorCategory.WTF,message:`DashLiveProvider internal logic error`,thrown:e})};this.subscription.add(z.merge(this.videoState.stateChangeStarted$.pipe(z.map(e=>({transition:e,type:`start`}))),this.videoState.stateChangeEnded$.pipe(z.map(e=>({transition:e,type:`end`})))).subscribe(({transition:e,type:t})=>{B({m:`dlp.s.1`,t:t+`:${e.from}-${e.to}`}),this.log({message:`[videoState change] ${t}: ${JSON.stringify(e)}`})})),this.video=qi(t.container,t.tuning),this.params.output.element$.next(this.video),this.dash=this.createLiveDashPlayer(),this.subscription.add(this.dash.soundProhibitedEvent$.subscribe(this.params.output.soundProhibitedEvent$)),this.params.output.duration$.next(1/0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Ja(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.textTracksManager.connect(this.video,this.params.desiredState,this.params.output);let r=fa(this.video);this.subscription.add(()=>r.destroy()),this.subscription.add(this.representations$.pipe(z.map(e=>e.map(({track:e})=>e)),z.filter(e=>!!e.length),z.once()).subscribe(e=>this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:r.playing$,pause$:r.pause$,tracks:e}))),this.subscription.add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`)},n)).add(r.playing$.subscribe(()=>{this.params.desiredState.seekState.getState().state===`applying`&&this.params.output.seekedEvent$.next(),this.videoState.setState(`playing`)},n)).add(r.error$.subscribe(this.params.output.error$)).add(this.maxSeekBackTime$.pipe(z.filterChanged(),z.map(e=>-e/1e3)).subscribe(this.params.output.duration$)).add(z.combine({zeroTime:this.zeroTime$.pipe(z.filter(z.isNonNullable)),position:r.timeUpdate$}).subscribe(({zeroTime:e,position:t})=>{t===0&&this.videoState.getTransition()||this.params.output.liveTime$.next(e+t*1e3)},n)).add(Qi(this.video,this.params.desiredState.isLooped,n)).add($i(this.video,this.params.desiredState.volume,r.volumeState$,n)).add(r.volumeState$.subscribe(this.params.output.volume$,n)).add(ea(this.video,this.params.desiredState.playbackRate,r.playbackRateState$,n)).add(r.loadStart$.subscribe(this.params.output.firstBytesEvent$)).add(r.loadedMetadata$.subscribe(this.params.output.loadedMetadataEvent$)).add(r.playing$.subscribe(this.params.output.firstFrameEvent$)).add(r.canplay$.subscribe(this.params.output.canplay$)).add(r.inPiP$.subscribe(this.params.output.inPiP$)).add(r.inFullscreen$.subscribe(this.params.output.inFullscreen$)).add(Lo(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:e,min:t}})=>{this.dash.setAutoQualityLimits({max:e&&z.videoQualityToHeight(e),min:t&&z.videoQualityToHeight(t)}),this.params.output.autoVideoTrackLimits$.next({max:e,min:t})})).add(this.videoState.stateChangeEnded$.subscribe(e=>{switch(e.to){case`stopped`:this.params.output.position$.next(0),this.params.output.duration$.next(1/0),B({m:`dlp.vse.s`}),this.params.desiredState.playbackState.setState(`stopped`);break;case`manifest_ready`:case`ready`:this.params.desiredState.playbackState.getTransition()?.to===`ready`&&(B({m:`dlp.vse.r`}),this.params.desiredState.playbackState.setState(`ready`));break;case`paused`:B({m:`dlp.vse.pa`}),this.params.desiredState.playbackState.setState(`paused`);break;case`playing`:B({m:`dlp.vse.pl`}),this.params.desiredState.playbackState.setState(`playing`);break;default:return z.assertNever(e.to)}},n)).add(z.merge(t.desiredState.playbackState.stateChangeStarted$,t.desiredState.seekState.stateChangeEnded$,t.desiredState.videoTrack.stateChangeStarted$,t.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,z.observableFrom([`init`])).pipe(z.debounce(0)).subscribe(this.syncPlayback,n))}destroy(){B({m:`dlp.destroy`}),this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),Ji(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}createLiveDashPlayer(){let e=new ko({videoElement:this.video,videoState:this.videoState,playbackState:this.params.desiredState.playbackState,liveOffset:this.liveOffset,config:{maxParallelRequests:this.params.config.maxParallelRequests,minBuffer:this.params.tuning.live.minBuffer,minBufferSegments:this.params.tuning.live.minBufferSegments,lowLatencyMinBuffer:this.params.tuning.live.lowLatencyMinBuffer,lowLatencyMinBufferSegments:this.params.tuning.live.lowLatencyMinBufferSegments,isLiveCatchUpMode:this.params.tuning.live.isLiveCatchUpMode,manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount,useInvalidBufferFix:this.params.tuning.useInvalidBufferFix||!1},playerCallback:this._dashCb,logger:e=>{this.params.dependencies.logger.log({message:String(e),component:`LiveDashPlayer`})}});return e.pause(),e}prepare(){let e=this.representations$.getValue(),t=this.params.desiredState.videoTrack.getTransition()?.to??this.params.desiredState.videoTrack.getState(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition()?.to??this.params.desiredState.autoVideoTrackSwitching.getState(),r=!n&&z.isNonNullable(t)?t:Wa(e.map(({track:e})=>e),{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,limits:this.params.desiredState.autoVideoTrackLimits.getState(),droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,abrLogger:this.params.dependencies.abrLogger}),i=r?.id,a=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.videoTrack.getState()?.id,s=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(a||i!==o)&&this.setVideoTrack(r),s&&this.setAutoQuality(n),a||s||i!==o){let t=e.find(({track:e})=>e.id===i)?.representation;z.assertNonNullable(t,`Representations missing`),this.dash.startPlay(t,n)}}setVideoTrack(e){let t=this.representations$.getValue().find(({track:t})=>t.id===e.id)?.representation;z.assertNonNullable(t,`No such representation ${e.id}`),this.dash.switchByName(t.name),this.params.desiredState.videoTrack.setState(e)}setAutoQuality(e){this.dash.setAutoQualityEnabled(e),this.params.desiredState.autoVideoTrackSwitching.setState(e)}seek(e){this.log({message:`[seek] position: ${e}`}),this.params.output.willSeekEvent$.next();let t=this.params.desiredState.playbackState.getState(),n=this.videoState.getState(),r=t===`paused`&&n===`paused`,i=-e,a=i<=this.maxSeekBackTime$.getValue()?i:0;this.params.output.position$.next(e/1e3),B({m:`dlp.seek`,p:e,no:a,url:this.params.source.url}),this.dash.reinit(Nr(this.params.source.url,a)),r&&this.dash.pause(),this.liveOffset.resetTo(a,r)}}var Vo=Bo,Ho=require(`@vkontakte/videoplayer-shared/es2018`),V=require(`@vkontakte/videoplayer-shared/es2018`),Uo=u(Fn(),1),Wo=require(`@vkontakte/videoplayer-shared/es2018`),Go=({id:e,width:t,height:n,bitrate:r,fps:i,quality:a,streamId:o})=>{let s=(a?ma(a):void 0)??Wo.videoSizeToQuality({width:t,height:n});return s&&{id:e,quality:s,bitrate:r,size:{width:t,height:n},fps:i,streamId:o}},Ko=({id:e,bitrate:t})=>({id:e,bitrate:t}),qo=({language:e,label:t},{id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),Jo=({language:e,label:t,id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),Yo=({id:e,language:t,label:n,codecs:r,isDefault:i})=>({id:e,language:t,label:n,codec:Uo.default(r.split(`.`),0),isDefault:i}),Xo=({id:e,language:t,label:n,hdr:r,codecs:i})=>({id:e,language:t,hdr:r,label:n,codec:Uo.default(i.split(`.`),0)}),Zo=e=>e.type===`template`;class Qo{constructor(t,n){e(this,`fov`,void 0),e(this,`orientation`,void 0),this.fov=t,this.orientation=n}}class $o{constructor(t,n){e(this,`options`,void 0),e(this,`camera`,void 0),e(this,`rotating`,!1),e(this,`fading`,!1),e(this,`lastTickTS`,0),e(this,`lastCameraTurn`,void 0),e(this,`lastCameraTurnTS`,0),e(this,`fadeStartSpeed`,null),e(this,`fadeCorrection`,void 0),e(this,`fadeTime`,0),e(this,`rotationSpeed`,void 0),this.camera=t,this.options=n,this.rotationSpeed={x:0,y:0,z:0},this.fadeCorrection=1/(this.options.speedFadeTime/1e3)**2}turnCamera(e=0,t=0,n=0){this.pointCameraTo(this.camera.orientation.x+e,this.camera.orientation.y+t,this.camera.orientation.z+n)}pointCameraTo(e=0,t=0,n=0){t=this.limitCameraRotationY(t);let r=e-this.camera.orientation.x,i=t-this.camera.orientation.y,a=n-this.camera.orientation.z;this.camera.orientation.x=e,this.camera.orientation.y=t,this.camera.orientation.z=n,this.lastCameraTurn={x:r,y:i,z:a},this.lastCameraTurnTS=Date.now()}setRotationSpeed(e,t,n){this.rotationSpeed.x=e??this.rotationSpeed.x,this.rotationSpeed.y=t??this.rotationSpeed.y,this.rotationSpeed.z=n??this.rotationSpeed.z}startRotation(){this.rotating=!0}stopRotation(e=!1){e?(this.setRotationSpeed(0,0,0),this.fadeStartSpeed=null):this.startFading(this.rotationSpeed.x,this.rotationSpeed.y,this.rotationSpeed.z),this.rotating=!1}onCameraRelease(){if(this.lastCameraTurn&&this.lastCameraTurnTS){let e=Date.now()-this.lastCameraTurnTS;if(e<this.options.speedFadeThreshold){let t=(1-e/this.options.speedFadeThreshold)*this.options.rotationSpeedCorrection;this.startFading(this.lastCameraTurn.x*t,this.lastCameraTurn.y*t,this.lastCameraTurn.z*t)}}}startFading(e,t,n){this.setRotationSpeed(e,t,n),this.fadeStartSpeed={...this.rotationSpeed},this.fading=!0}stopFading(){this.fadeStartSpeed=null,this.fading=!0,this.fadeTime=0}limitCameraRotationY(e){return Math.max(-this.options.maxYawAngle,Math.min(e,this.options.maxYawAngle))}tick(e){if(!this.lastTickTS){this.lastTickTS=e,this.lastCameraTurnTS=Date.now();return}let t=e-this.lastTickTS,n=t/1e3;if(this.rotating)this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*n,this.rotationSpeed.y*this.options.rotationSpeedCorrection*n,this.rotationSpeed.z*this.options.rotationSpeedCorrection*n);else if(this.fading&&this.fadeStartSpeed){let e=-this.fadeCorrection*(this.fadeTime/1e3)**2+1;this.setRotationSpeed(this.fadeStartSpeed.x*e,this.fadeStartSpeed.y*e,this.fadeStartSpeed.z*e),e>0?this.turnCamera(this.rotationSpeed.x*this.options.rotationSpeedCorrection*n,this.rotationSpeed.y*this.options.rotationSpeedCorrection*n,this.rotationSpeed.z*this.options.rotationSpeedCorrection*n):(this.stopRotation(!0),this.stopFading()),this.fadeTime=Math.min(this.fadeTime+t,this.options.speedFadeTime)}this.lastTickTS=e}}var es=`./vertex_shader-xzkp5kyx.glsl`,ts=`./fragment_shader-66qz233h.glsl`;class ns{constructor(t,n,r){e(this,`container`,void 0),e(this,`sourceVideoElement`,void 0),e(this,`canvas`,void 0),e(this,`gl`,void 0),e(this,`params`,void 0),e(this,`frameWidth`,void 0),e(this,`frameHeight`,void 0),e(this,`viewportWidth`,void 0),e(this,`viewportHeight`,void 0),e(this,`videoInitialized`,!1),e(this,`program`,void 0),e(this,`videoTexture`,void 0),e(this,`vertexBuffer`,void 0),e(this,`textureMappingBuffer`,void 0),e(this,`camera`,void 0),e(this,`cameraRotationManager`,void 0),e(this,`videoElementDataLoadedFn`,void 0),e(this,`renderFn`,void 0),e(this,`active`,!1),this.container=t,this.sourceVideoElement=n,this.params=r,this.canvas=this.createCanvas();let i=this.canvas.getContext(`webgl`);if(!i)throw Error(`Could not initialize WebGL context`);this.gl=i,this.container.appendChild(this.canvas),this.camera=new Qo(this.params.fov,this.params.orientation),this.cameraRotationManager=new $o(this.camera,{rotationSpeed:this.params.rotationSpeed,maxYawAngle:this.params.maxYawAngle,rotationSpeedCorrection:this.params.rotationSpeedCorrection,degreeToPixelCorrection:this.params.degreeToPixelCorrection,speedFadeTime:this.params.speedFadeTime,speedFadeThreshold:this.params.speedFadeThreshold}),this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.textureMappingBuffer=this.createTextureMappingBuffer(),this.updateTextureMappingBuffer(),this.program=this.createProgram(),this.videoTexture=this.createTexture(),this.gl.useProgram(this.program),this.videoElementDataLoadedFn=this.onDataLoadedHandler.bind(this),this.renderFn=this.render.bind(this)}play(){this.active||(this.videoInitialized?this.doPlay():this.sourceVideoElement.readyState>=2?(this.videoInitialized=!0,this.doPlay()):this.sourceVideoElement.addEventListener(`loadeddata`,this.videoElementDataLoadedFn))}stop(){this.active=!1}startCameraManualRotation(e,t){this.cameraRotationManager.setRotationSpeed(e*this.params.rotationSpeed,t*this.params.rotationSpeed,0),this.cameraRotationManager.startRotation()}stopCameraManualRotation(e=!1){this.cameraRotationManager.stopRotation(e)}turnCamera(e,t){this.cameraRotationManager.turnCamera(e,t)}pointCameraTo(e,t){this.cameraRotationManager.pointCameraTo(e,t)}pixelToDegree(e){return{x:this.params.degreeToPixelCorrection*this.params.fov.x*-e.x/this.viewportWidth,y:this.params.degreeToPixelCorrection*this.params.fov.y*e.y/this.viewportHeight}}getCameraRotation(){return this.camera.orientation}holdCamera(){this.cameraRotationManager.stopRotation(!0)}releaseCamera(){this.cameraRotationManager.onCameraRelease()}destroy(){this.sourceVideoElement.removeEventListener(`loadeddata`,this.videoElementDataLoadedFn),this.stop(),this.canvas.remove()}setViewportSize(e,t){this.viewportWidth=e,this.viewportHeight=t,this.canvas.width=this.viewportWidth,this.canvas.height=this.viewportHeight,this.gl.viewport(0,0,this.canvas.width,this.canvas.height)}onDataLoadedHandler(){this.videoInitialized=!0,this.doPlay()}doPlay(){this.updateFrameSize(),this.vertexBuffer=this.createVertexBuffer(),this.active=!0,this.sourceVideoElement.removeEventListener(`loadeddata`,this.videoElementDataLoadedFn),requestAnimationFrame(this.renderFn)}render(e){this.cameraRotationManager.tick(e),this.updateTexture(),this.updateTextureMappingBuffer();let t=this.gl.getAttribLocation(this.program,`a_vertex`),n=this.gl.getAttribLocation(this.program,`a_texel`),r=this.gl.getUniformLocation(this.program,`u_texture`),i=this.gl.getUniformLocation(this.program,`u_focus`);this.gl.enableVertexAttribArray(t),this.gl.enableVertexAttribArray(n),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.vertexBuffer),this.gl.vertexAttribPointer(t,2,this.gl.FLOAT,!1,0,0),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.vertexAttribPointer(n,2,this.gl.FLOAT,!1,0,0),this.gl.activeTexture(this.gl.TEXTURE0),this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.uniform1i(r,0),this.gl.uniform2f(i,-this.camera.orientation.x,-this.camera.orientation.y),this.gl.drawArrays(this.gl.TRIANGLE_FAN,0,4),this.gl.bindTexture(this.gl.TEXTURE_2D,null),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),this.gl.disableVertexAttribArray(t),this.gl.disableVertexAttribArray(n),this.active&&requestAnimationFrame(this.renderFn)}createShader(e,t){let n=this.gl.createShader(t);if(!n)throw this.destroy(),Error(`Could not create shader (${t})`);if(this.gl.shaderSource(n,e),this.gl.compileShader(n),!this.gl.getShaderParameter(n,this.gl.COMPILE_STATUS))throw this.destroy(),Error(`An error occurred while compiling the shader: `+this.gl.getShaderInfoLog(n));return n}createProgram(){let e=this.gl.createProgram();if(!e)throw this.destroy(),Error(`Could not create shader program`);let t=this.createShader(es,this.gl.VERTEX_SHADER),n=this.createShader(ts,this.gl.FRAGMENT_SHADER);if(this.gl.attachShader(e,t),this.gl.attachShader(e,n),this.gl.linkProgram(e),!this.gl.getProgramParameter(e,this.gl.LINK_STATUS))throw this.destroy(),Error(`Could not link shader program.`);return e}createTexture(){let e=this.gl.createTexture();if(!e)throw this.destroy(),Error(`Could not create texture`);return this.gl.bindTexture(this.gl.TEXTURE_2D,e),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MAG_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_MIN_FILTER,this.gl.LINEAR),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_S,this.gl.CLAMP_TO_EDGE),this.gl.texParameteri(this.gl.TEXTURE_2D,this.gl.TEXTURE_WRAP_T,this.gl.CLAMP_TO_EDGE),this.gl.bindTexture(this.gl.TEXTURE_2D,null),e}updateTexture(){this.gl.bindTexture(this.gl.TEXTURE_2D,this.videoTexture),this.gl.pixelStorei(this.gl.UNPACK_FLIP_Y_WEBGL,!0),this.gl.texImage2D(this.gl.TEXTURE_2D,0,this.gl.RGBA,this.gl.RGBA,this.gl.UNSIGNED_BYTE,this.sourceVideoElement),this.gl.bindTexture(this.gl.TEXTURE_2D,null)}createVertexBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),Error(`Could not create vertex buffer`);let t=1,n=1,r=this.frameHeight/(this.frameWidth/this.viewportWidth);return r>this.viewportHeight?t=this.viewportHeight/r:n=r/this.viewportHeight,this.gl.bindBuffer(this.gl.ARRAY_BUFFER,e),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array([-t,-n,t,-n,t,n,-t,n]),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null),e}createTextureMappingBuffer(){let e=this.gl.createBuffer();if(!e)throw this.destroy(),Error(`Could not create texture mapping buffer`);return e}calculateTexturePosition(){let e=.5-this.camera.orientation.x/360,t=.5-this.camera.orientation.y/180,n=this.camera.fov.x/360/2,r=this.camera.fov.y/180/2;return[e-n,t-r,e+n,t-r,e+n,t+r,e-n,t+r]}updateTextureMappingBuffer(){this.gl.bindBuffer(this.gl.ARRAY_BUFFER,this.textureMappingBuffer),this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array(this.calculateTexturePosition()),this.gl.STATIC_DRAW),this.gl.bindBuffer(this.gl.ARRAY_BUFFER,null)}updateFrameSize(){this.frameWidth=this.sourceVideoElement.videoWidth,this.frameHeight=this.sourceVideoElement.videoHeight}createCanvas(){let e=document.createElement(`canvas`);return e.style.position=`absolute`,e.style.left=`0`,e.style.top=`0`,e.style.width=`100%`,e.style.height=`100%`,e}}var rs=require(`@vkontakte/videoplayer-shared/es2018`),is=(e,t,n)=>n*t+(1-n)*e,as=(e,t)=>e.reduce((e,t)=>e+t,0)/t,os=(e,t,n,r)=>{let i=0,a=n,o=as(e,t),s=t<r?t:r;for(let t=0;t<s;t++)e[a]>o?i++:i--,a=(e.length+a-1)%e.length;return Math.abs(i)===s},ss=`stalls_manager_metrics`,cs=`stalls_manager_abr_params`,ls=`stalls_manager_default_tuning_abr_params`;class us{constructor(){e(this,`currentStallDuration$`,void 0),e(this,`videoLastDataObtainedTimestamp$`,void 0),e(this,`throughput$`,void 0),e(this,`rtt$`,void 0),e(this,`tuning`,void 0),e(this,`abrParams`,void 0),e(this,`duration`,void 0),e(this,`isSeeked$`,new rs.ValueSubject(!1)),e(this,`isBuffering$`,new rs.ValueSubject(!1)),e(this,`maxQualityLimit`,void 0),e(this,`lastUniqueVideoTrackSelected`,void 0),e(this,`currentStallsCount`,0),e(this,`sumStallsDuration`,0),e(this,`lastStallDuration`,0),e(this,`providerStartWatchingTimestamp`,0),e(this,`lastUniqueVideoTrackSelectedTimestamp`,0),e(this,`predictedThroughputWithoutData`,0),e(this,`qualityRestrictionTimer`,void 0),e(this,`subscription`,new rs.Subscription),e(this,`severeStallOccurred$`,new rs.ValueSubject(!1))}init(e){this.currentStallDuration$=e.currentStallDuration$,this.videoLastDataObtainedTimestamp$=e.videoLastDataObtainedTimestamp$,this.throughput$=e.throughput$,this.rtt$=e.rtt$,this.tuning=e.tuning,this.abrParams=e.abrParams,this.duration=e.duration,this.resetStoredAbrParamsIfNeeded(),this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){let e=(this.tuning.ignoreDynamicAbrForShortVideo?this.tuning.enabled&&this.duration>this.tuning.minTvtToBeCounted:this.tuning.enabled)?this.getStoredData(cs):{};return{...this.abrParams,...e}}set lastVideoTrackSelected(e){this.lastUniqueVideoTrackSelected?.id!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=rs.now(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=(rs.now()-this.providerStartWatchingTimestamp-this.sumStallsDuration)/1e3,t=this.sumStallsDuration;this.addStallInfoToHistory(e,t),this.updateStoredAbrParams()}resetStoredAbrParamsIfNeeded(){let{bitrateFactorAtEmptyBuffer:e,bitrateFactorAtFullBuffer:t,containerSizeFactor:n}={...this.getStoredData(ls)},{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:i,containerSizeFactor:a}={...this.abrParams};this.tuning.enabled&&e===r&&t===i&&n===a||(this.removeStoredData(cs),this.setStoredData(ls,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:i,containerSizeFactor:a}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(ss,`[]`);if(!this.tuning.enabled||t.length<this.tuning.stallsMetricsHistoryLength)return;let n=t.reduce((e,t)=>e+t.tvt,0);if(this.tuning.useTotalStallsDurationPerTvt){let r=t.reduce((e,t)=>e+t.stallsDuration,0)/n;e.push(this.calculateOptimalAbrParams(r,n))}if(this.tuning.useAverageStallsDurationPerTvt){let r=t.reduce((e,t)=>e+t.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(r,n))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed,n));let r={bitrateFactorAtEmptyBuffer:Math.max(...e.map(e=>e.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(e=>e.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(e=>e.containerSizeFactor))};this.setStoredData(ss,[]),this.setStoredData(cs,r)}calculateOptimalAbrParams(e,t){let{targetStallsDurationPerTvt:n,deviationStallsDurationPerTvt:r,criticalStallsDurationPerTvt:i,abrAdjustingSpeed:a,significantTvt:o}=this.tuning,s=a*Math.min(t/o,1),c=this.abrTuningParams;return e<n-r?c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer-s,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer-s,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor+s,this.abrParams.maxContainerSizeFactor)}:e>n+r&&(c={bitrateFactorAtEmptyBuffer:Math.min(c.bitrateFactorAtEmptyBuffer+s,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(c.bitrateFactorAtFullBuffer+s,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(c.containerSizeFactor-s,this.abrParams.minContainerSizeFactor)}),e>i&&(c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer,this.abrParams.bitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer,this.abrParams.bitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor,this.abrParams.containerSizeFactor)}),c}getStoredData(e,t=`{}`){return JSON.parse(rs.safeStorage.get(e)??t)}setStoredData(e,t){rs.safeStorage.set(e,JSON.stringify(t))}removeStoredData(e){rs.safeStorage.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let n=this.getStoredData(ss,`[]`),r=t/e,i={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:n.length?is(n[n.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r};n.push(i),n.length>this.tuning.stallsMetricsHistoryLength&&n.shift(),this.setStoredData(ss,n)}updateStallData(){this.providerStartWatchingTimestamp&&!this.isSeeked$.getValue()&&(this.sumStallsDuration+=Math.min(this.lastStallDuration,this.tuning.maxPossibleStallDuration),this.currentStallsCount++)}subscribe(e){this.subscription.add(e.isSeeked$.subscribe(this.isSeeked$)),this.subscription.add(e.isBuffering$.subscribe(this.isBuffering$)),this.subscription.add(e.looped$.subscribe(e=>this.currentStallsCount=0)),this.subscription.add(e.playing$.pipe(rs.once()).subscribe(e=>this.providerStartWatchingTimestamp=rs.now())),this.subscription.add(this.currentStallDuration$.pipe(rs.filterChanged()).subscribe(e=>{let{stallDurationNoDataBeforeQualityDecrease:t,stallCountBeforeQualityDecrease:n,resetQualityRestrictionTimeout:r,ignoreStallsOnSeek:i}=this.tuning;if(rs.isNullable(this.lastUniqueVideoTrackSelected)||i&&this.isSeeked$.getValue())return;let a=this.rtt$.getValue(),o=this.throughput$.getValue(),s=this.videoLastDataObtainedTimestamp$.getValue(),c=rs.now(),l=n&&this.currentStallsCount>=n,u=t&&c-this.lastUniqueVideoTrackSelectedTimestamp>=t+a&&c-s>=t+a&&e>=t;(l||u)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,rs.isNonNullable(this.lastUniqueVideoTrackSelected.bitrate)&&o>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!e&&rs.now()-this.providerStartWatchingTimestamp>this.lastStallDuration&&(this.updateStallData(),this.severeStallOccurred$.next(!1),window.clearTimeout(this.qualityRestrictionTimer),this.qualityRestrictionTimer=window.setTimeout(()=>{this.maxQualityLimit=void 0,this.predictedThroughputWithoutData=0},r)),this.lastStallDuration=e}))}}var ds=us,fs=require(`@vkontakte/videoplayer-shared/es2018`);class ps{constructor(){e(this,`subscription`,new fs.Subscription),e(this,`pipSize$`,new fs.ValueSubject(void 0)),e(this,`videoSize$`,new fs.ValueSubject(void 0)),e(this,`elementSize$`,new fs.ValueSubject(void 0)),e(this,`pictureInPictureWindowRemoveEventListener`,fs.noop)}connect({observableVideo:e,video:t}){let n=e=>{let t=e.target;this.pipSize$.next({width:t.width,height:t.height})};this.subscription.add(fs.observeElementSize(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:e})=>{this.pipSize$.next({width:e.width,height:e.height}),e.addEventListener(`resize`,n),this.pictureInPictureWindowRemoveEventListener=()=>{e.removeEventListener(`resize`,n)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add(fs.combine({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(fs.map(({videoSize:e,inPip:t,pipSize:n})=>t?n:e)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}}var ms=require(`@vkontakte/videoplayer-shared/es2018`),hs=({subscription:e,desiredState:t,videoElement$:n,observableVideo:r})=>{if(!N.browser.isSafari)return;let i=0,a=!1;e.add(t.volume.stateChangeStarted$.pipe(ms.map(()=>{let e=t.volume.getTransition(),r=n.getValue();return!r||!e?!1:!e.to.muted&&r.muted}),ms.filter(e=>!!e),ms.once()).subscribe(()=>{i=performance.now(),a=!0})),e.add(r.playbackRateState$.pipe(ms.filter(()=>a),ms.once()).subscribe(()=>{let e=n.getValue(),r=t.playbackRate.getState();e&&r!==e.playbackRate&&performance.now()-i<1e3&&(e.playbackRate=r)}))};class gs{constructor(t){e(this,`scene3D`,void 0),e(this,`subscription`,new V.Subscription),e(this,`videoState`,new P(`stopped`)),e(this,`video`,void 0),e(this,`observableVideo`,null),e(this,`player`,void 0),e(this,`params`,void 0),e(this,`tracer`,void 0),e(this,`textTracksManager`,void 0),e(this,`droppedFramesManager`,new No),e(this,`stallsManager`,new ds),e(this,`elementSizeManager`,new ps),e(this,`videoTracksMap`,new Map),e(this,`audioTracksMap`,new Map),e(this,`textTracksMap`,new Map),e(this,`videoStreamsMap`,new Map),e(this,`audioStreamsMap`,new Map),e(this,`videoTrackSwitchHistory`,new Ma),e(this,`audioTrackSwitchHistory`,new Ma),e(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state===`requested`&&n?.to!==`paused`&&e!==`stopped`&&t!==`stopped`&&this.seek(r.position,r.forcePrecise),t===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),M(this.params.desiredState.playbackState,`stopped`,!0));return}switch(e){case`stopped`:this.videoState.startTransitionTo(`ready`),this.prepare();return;case`ready`:t===`paused`?(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`)):t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`ready`&&M(this.params.desiredState.playbackState,`ready`);return;case`playing`:t===`paused`?(this.videoState.startTransitionTo(`paused`),this.video.paused?this.videoState.setState(`paused`):this.video.pause()):t===`playing`&&this.video.paused?this.playIfAllowed():n?.to===`playing`&&M(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&M(this.params.desiredState.playbackState,`paused`);return;default:return V.assertNever(e)}}}),e(this,`init3DScene`,e=>{if(this.scene3D)return;this.scene3D=new ns(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)}),e(this,`destroy3DScene`,()=>{this.scene3D&&=(this.scene3D.destroy(),void 0)}),this.textTracksManager=new aa(t.source.url),this.params=t,this.video=qi(t.container,t.tuning),this.tracer=t.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ja(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=this.getPlayer(),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;V.isNullable(this.observableVideo)&&(this.observableVideo=fa(this.video),this.subscription.add(()=>this.observableVideo?.destroy()));let n=this.constructor.name,r=t=>{e.error$.next({id:n,category:V.ErrorCategory.WTF,message:`${n} internal logic error`,thrown:t})};return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:(e,t)=>this.subscription.add(e.subscribe(t,r))}}subscribe(){let{output:e,desiredState:t,observableVideo:n,genericErrorListener:r,connect:i}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe(V.filter(e=>!!e.length),V.once()).subscribe(e=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:n.playing$,pause$:n.pause$,tracks:e})}));let a=this.params.desiredState.seekState.stateChangeEnded$.pipe(V.map(e=>e.to.state!==`none`),V.filterChanged());this.stallsManager.init({isSeeked$:a,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:n.isBuffering$,looped$:n.looped$,playing$:n.playing$,duration:this.video.duration}),i(n.ended$,e.endedEvent$),i(n.looped$,e.loopedEvent$),i(n.error$,e.error$),i(n.isBuffering$,e.isBuffering$),i(n.currentBuffer$,e.currentNativeBuffer$),i(n.playing$,e.firstFrameEvent$),i(n.canplay$,e.canplay$),i(n.inPiP$,e.inPiP$),i(n.inFullscreen$,e.inFullscreen$),i(n.loadedMetadata$,e.loadedMetadataEvent$),i(this.player.error$,e.error$),i(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),i(this.player.fetcherError$,e.fetcherError$),i(this.player.lastConnectionType$,e.httpConnectionType$),i(this.player.lastConnectionReused$,e.httpConnectionReused$),i(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),i(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),i(this.player.isLive$,e.isLive$),i(this.player.currentBuffer$,e.currentBuffer$),i(this.player.lastRequestFirstBytes$.pipe(V.filter(V.isNonNullable),V.once()),e.firstBytesEvent$),i(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),i(this.videoState.stateChangeEnded$.pipe(V.map(e=>e.to)),this.params.output.playbackState$),this.subscription.add(n.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(n.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Qi(this.video,t.isLooped,r)),this.subscription.add(n.volumeState$.subscribe(this.params.output.volume$,r)),hs({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:n}),this.subscription.add($i(this.video,t.volume,n.volumeState$,r)),this.subscription.add(ea(this.video,t.playbackRate,n.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:n}),i(Lo(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(n.playing$.subscribe(()=>{this.videoState.setState(`playing`),M(t.playbackState,`playing`),this.scene3D&&this.scene3D.play()},r)).add(n.pause$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)},r)).add(n.canplay$.subscribe(()=>{this.videoState.getState()===`playing`&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(n.ended$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)})),this.subscription.add(this.player.manifestRequested.subscribe(this.params.output.manifestRequested$)).add(this.player.manifestReceived.subscribe(this.params.output.manifestReceived$)).add(this.player.firstBytesRequested.subscribe(this.params.output.firstBytesRequested$)).add(this.player.firstBytesReceived.subscribe(this.params.output.firstBytesReceived$)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:e})=>{if(e===`manifest_ready`){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let e=this.player.getStreams(),t=this.player.getCodecs();if(V.assertNonNullable(e,`Manifest not loaded or empty`),!this.params.tuning.isAudioDisabled){let t=[];for(let n of e.audio){t.push(Yo(n));let e=[];for(let t of n.representations){let r=Ko(t);e.push(r),this.audioTracksMap.set(r,{stream:n,representation:t})}this.audioStreamsMap.set(n,e)}this.params.output.availableAudioStreams$.next(t)}let n=[];for(let t of e.video){n.push(Xo(t));let e=[];for(let n of t.representations){let r=Go({...n,streamId:t.id});r&&(e.push(r),this.videoTracksMap.set(r,{stream:t,representation:n}))}this.videoStreamsMap.set(t,e)}this.params.output.availableVideoStreams$.next(n);for(let t of e.text)for(let e of t.representations){let n=qo(t,e);this.textTracksMap.set(n,{stream:t,representation:e})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),t?.video&&this.params.output.availableVideoCodecs$.next(t.video),t?.audio&&this.params.output.availableAudioCodecs$.next(t.audio),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else e===`representations_ready`&&(this.videoState.setState(`ready`),this.player.initBuffer())},r));let o=V.merge(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,V.fromEvent(this.video,`progress`)).pipe(V.filter(()=>this.videoTracksMap.size>0)),{abrThrottle:s}=this.params.tuning.dash;s&&(o=o.pipe(V.throttle(s))),this.subscription.add(o.subscribe(async()=>{let e=this.player.state$.getState(),n=this.player.state$.getTransition(),r=t.autoVideoTrackSwitching.getState();if(e!==`manifest_ready`&&e!==`running`||n)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let i=this.selectVideoAudioRepresentations();if(!i)return;let[a,o]=i,s=[...this.videoTracksMap.keys()].find(e=>this.videoTracksMap.get(e)?.representation.id===a.id);V.isNonNullable(s)&&(this.stallsManager.lastVideoTrackSelected=s);let c=this.params.desiredState.autoVideoTrackLimits.getTransition();c&&this.params.output.autoVideoTrackLimits$.next(c.to),e===`manifest_ready`?await this.player.initRepresentations(a.id,o?.id,this.params.sourceHls):(await this.player.switchRepresentation(`video`,a.id,r),o&&await this.player.switchRepresentation(`audio`,o.id,r))},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:e})=>{this.scene3D&&e&&this.scene3D.pointCameraTo(e.x,e.y)})),this.subscription.add(this.elementSizeManager.subscribe(e=>{this.scene3D&&e&&this.scene3D.setViewportSize(e.width,e.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe(V.filterChanged()).subscribe(t=>{let n=[...this.videoTracksMap.entries()].find(([,{representation:e}])=>e.id===t);if(!n){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[r,{stream:i}]=n,a=this.params.desiredState.videoStream.getTransition();a&&a.to&&a.to.id===i.id&&this.params.desiredState.videoStream.setState(a.to),e.currentVideoTrack$.next(r),e.currentVideoStream$.next(Xo(i))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(V.filterChanged()).subscribe(t=>{let n=[...this.audioTracksMap.entries()].find(([,{representation:e}])=>e.id===t);if(!n){e.currentAudioStream$.next(void 0);return}let[r,{stream:i}]=n,a=this.params.desiredState.audioStream.getTransition();a&&a.to&&a.to.id===i.id&&this.params.desiredState.audioStream.setState(a.to),e.currentAudioStream$.next(Yo(i))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(t=>{if(t?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(t),e.is3DVideo$.next(!0)}catch(t){e.warning$.next({id:`DashProvider`,message:`DashProvider could not initialize 3D-scene: ${t}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let c=t.playbackState.stateChangeStarted$.pipe(V.map(({to:e})=>e===`ready`),V.filterChanged());this.subscription.add(V.merge(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,V.observableFrom([`init`])).subscribe(()=>{let e=t.autoVideoTrackSwitching.getState(),n=t.playbackState.getState()===`ready`?this.params.tuning.dash.forwardBufferTargetPreload:e?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(n)})),this.subscription.add(V.merge(c,this.player.state$.stateChangeEnded$,V.observableFrom([`init`])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()===`ready`)));let l=V.merge(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,V.observableFrom([`init`])).pipe(V.debounce(0));this.subscription.add(l.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ra:La,t=this.params.tuning.useNewAutoSelectVideoTrack?qa:Ka,n=this.params.tuning.useNewAutoSelectVideoTrack?Wa:Ga,{desiredState:r,output:i}=this.params,a=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,s=[...this.videoTracksMap.keys()].find(({id:e})=>e===o),c=i.currentVideoTrack$.getValue(),l=r.videoStream.getState()??(s&&this.videoTracksMap.get(s)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!l)return;let u=[...this.videoStreamsMap.keys()].find(({id:e})=>e===l.id),d=u&&this.videoStreamsMap.get(u);if(!d)return;let f=this.player.bufferLength$.getValue(),p;p=this.player.isActiveLive$.getValue()?this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:a?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,h=Math.min(f/Math.min(p,m||1/0),1),g=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),_=[...this.audioStreamsMap.keys()].find(({id:e})=>e===g?.id)??this.audioStreamsMap.keys().next().value,v=0;if(_){if(s&&!a){let t=e(s,d,this.audioStreamsMap.get(_)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,t?.bitrate??-1/0)}if(c){let t=e(c,d,this.audioStreamsMap.get(_)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,t?.bitrate??-1/0)}}let y=s;(a||!y)&&(y=n(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:v,forwardBufferHealth:h,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let b=_&&t(y,d,this.audioStreamsMap.get(_)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:h,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),x=this.videoTracksMap.get(y)?.representation,S=b&&this.audioTracksMap.get(b)?.representation;if(x&&S)return[x,S];if(x&&!S&&this.audioTracksMap.size===0)return[x,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){eo(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:V.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Ji(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML),this.tracer.end()}}var _s=u(Gn(),1),{NativeAbortSignal:vs,NativeAbortController:ys}=function(e){return{NativeAbortSignal:e.AbortSignal,NativeAbortController:e.AbortController}}(typeof self<`u`?self:global);function bs(e){let t;try{t=new Event(`abort`)}catch{typeof document<`u`?document.createEvent?(t=document.createEvent(`Event`),t.initEvent(`abort`,!1,!1)):(t=document.createEventObject(),t.type=`abort`):t={type:`abort`,bubbles:!1,cancelable:!1}}return t.reason=e,t}function xs(e){if(e===void 0)if(typeof document>`u`)e=Error(`This operation was aborted`),e.name=`AbortError`;else try{e=new DOMException(`signal is aborted without reason`),Object.defineProperty(e,`name`,{value:`AbortError`})}catch{e=Error(`This operation was aborted`),e.name=`AbortError`}return e}class Ss{constructor(){Object.defineProperty(this,`listeners`,{value:{},writable:!0,configurable:!0})}addEventListener(e,t,n){e in this.listeners||(this.listeners[e]=[]),this.listeners[e].push({callback:t,options:n})}removeEventListener(e,t){if(!(e in this.listeners))return;let n=this.listeners[e];for(let e=0,r=n.length;e<r;e++)if(n[e].callback===t){n.splice(e,1);return}}dispatchEvent(e){if(!(e.type in this.listeners))return;let t=this.listeners[e.type].slice();for(let n=0,r=t.length;n<r;n++){let r=t[n];try{r.callback.call(this,e)}catch(e){Promise.resolve().then(()=>{throw e})}r.options&&r.options.once&&this.removeEventListener(e.type,r.callback)}return!e.defaultPrevented}}class Cs extends Ss{constructor(){super(),this.listeners||Ss.call(this),Object.defineProperty(this,`aborted`,{value:!1,writable:!0,configurable:!0}),Object.defineProperty(this,`onabort`,{value:null,writable:!0,configurable:!0}),Object.defineProperty(this,`reason`,{value:void 0,writable:!0,configurable:!0})}toString(){return`[object AbortSignal]`}dispatchEvent(e){e.type===`abort`&&(this.aborted=!0,typeof this.onabort==`function`&&this.onabort.call(this,e)),super.dispatchEvent(e)}throwIfAborted(){let{aborted:e,reason:t=`Aborted`}=this;if(e)throw t}static timeout(e){let t=new ws;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,`TimeoutError`)),e),t.signal}static any(e){let t=new ws;function n(){t.abort(this.reason),r()}function r(){for(let t of e)t.removeEventListener(`abort`,n)}for(let r of e)if(r.aborted){t.abort(r.reason);break}else r.addEventListener(`abort`,n);return t.signal}}class ws{constructor(){Object.defineProperty(this,`signal`,{value:new Cs,writable:!0,configurable:!0})}abort(e){let t=xs(e),n=bs(t);this.signal.reason=t,this.signal.dispatchEvent(n)}toString(){return`[object AbortController]`}}typeof Symbol<`u`&&Symbol.toStringTag&&(ws.prototype[Symbol.toStringTag]=`AbortController`,Cs.prototype[Symbol.toStringTag]=`AbortSignal`);function Ts(e){return e.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log(`__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill`),!0):typeof e.Request==`function`&&!e.Request.prototype.hasOwnProperty(`signal`)||!e.AbortController}function Es(e){typeof e==`function`&&(e={fetch:e});let{fetch:t,Request:n=t.Request,AbortController:r,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:i=!1}=e;if(!Ts({fetch:t,Request:n,AbortController:r,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:i}))return{fetch:t,Request:a};let a=n;(a&&!a.prototype.hasOwnProperty(`signal`)||i)&&(a=function(e,t){let r;t&&t.signal&&(r=t.signal,delete t.signal);let i=new n(e,t);return r&&Object.defineProperty(i,`signal`,{writable:!1,enumerable:!1,configurable:!0,value:r}),i},a.prototype=n.prototype);let o=t;return{fetch:(e,t)=>{let n=a&&a.prototype.isPrototypeOf(e)?e.signal:t?t.signal:void 0;if(n){let r;try{r=new DOMException(`Aborted`,`AbortError`)}catch{r=Error(`Aborted`),r.name=`AbortError`}if(n.aborted)return Promise.reject(r);let i=new Promise((e,t)=>{n.addEventListener(`abort`,()=>t(r),{once:!0})});return t&&t.signal&&delete t.signal,Promise.race([i,o(e,t)])}return o(e,t)},Request:a}}var Ds=typeof globalThis==`object`&&globalThis||typeof window==`object`&&window,Os=`fetch`in Ds&&Ts({fetch:Ds.fetch,Request:Ds.Request,AbortController:Ds.AbortController}),ks=Os?Es({fetch:Ds.fetch,Request:Ds.Request,AbortController:Ds.AbortController}):void 0,As=Os?ks.fetch:Ds.fetch;Os?ks.Request:Ds.Request;var js=Os?ws:Ds.AbortController;Os||Ds.AbortSignal;var Ms=u(er(),1),Ns=require(`@vkontakte/videoplayer-shared/es2018`),Ps=e=>{if(!e)return{id:`EmptyResponse`,category:Ns.ErrorCategory.PARSER,message:`Empty response`};if(e.length<=2&&e.match(/^\d+$/))return{id:`UVError#${e}`,category:Ns.ErrorCategory.NETWORK,message:`UV Error ${e}`};let t=Ms.default(e).substring(0,100).toLowerCase();if(t.startsWith(`<!doctype`)||t.startsWith(`<html>`)||t.startsWith(`<body>`)||t.startsWith(`<head>`))return{id:`UnexpectedHTML`,category:Ns.ErrorCategory.NETWORK,message:`Received unexpected HTML, possibly a ISP block`};if(t.startsWith(`<?xml`))return new DOMParser().parseFromString(e,`text/xml`).querySelector(`parsererror`)?{id:`InvalidXML`,category:Ns.ErrorCategory.PARSER,message:`XML parsing error`}:{id:`XMLParserLogicError`,category:Ns.ErrorCategory.PARSER,message:`Response is valid XML, but parser failed`}},H=require(`@vkontakte/videoplayer-shared/es2018`),Fs=e=>{let t=new URL(e);return t.searchParams.set(`quic`,`1`),t.toString()},Is=e=>{let t=e.get(`X-Delivery-Type`),n=e.get(`X-Reused`);return{type:t===null?`http1`:t??void 0,reused:n===null?void 0:{1:!0,0:!1}[n]??void 0}},U=require(`@vkontakte/videoplayer-shared/es2018`),Ls=e=>{let t=new URL(e);return t.searchParams.set(`enable-subtitles`,`yes`),t.toString()};class Rs{constructor({throughputEstimator:t,requestQuic:n,tracer:r,compatibilityMode:i=!1,useEnableSubtitlesParam:a=!1}){e(this,`throughputEstimator`,void 0),e(this,`requestQuic`,void 0),e(this,`tracer`,void 0),e(this,`manifestRequested`,new U.Subject),e(this,`manifestReceived`,new U.Subject),e(this,`firstBytesRequested`,new U.Subject),e(this,`firstBytesReceived`,new U.Subject),e(this,`lastConnectionType$`,new U.ValueSubject(void 0)),e(this,`lastConnectionReused$`,new U.ValueSubject(void 0)),e(this,`lastRequestFirstBytes$`,new U.ValueSubject(void 0)),e(this,`lastConnectionMetrics$`,new U.ValueSubject(void 0)),e(this,`lastDownloadMetrics$`,new U.ValueSubject(void 0)),e(this,`recoverableError$`,new U.Subject),e(this,`error$`,new U.Subject),e(this,`abortAllController`,new js),e(this,`subscription`,new U.Subscription),e(this,`compatibilityMode`,void 0),e(this,`useEnableSubtitlesParam`,void 0),e(this,`performanceObserver`,null),e(this,`pendingConnectionMetrics`,new Map),e(this,`fetchManifest`,U.abortable(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer(`FetchManifest`),n=e;this.requestQuic&&(n=Fs(n)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(n=Ls(n)),this.trackRequestStart(n,performance.now());let r=U.now();this.manifestRequested.next();let i=yield this.doFetch(n,{signal:this.abortAllController.signal}).catch(U.suppressAbort);if(i){let a=U.now();t.log(`success`,U.flattenObject({url:n,message:`Request successfully executed`})),t.end(),this.manifestReceived.next(),this.onHeadersReceived(i.headers);let o=i.headers.get(`content-length`),s=0;o&&(s=parseInt(o,10));let c=await i.text();if((!o||isNaN(s)||s<=0)&&(s=new TextEncoder().encode(c).length),s>0){let t=a-r,n=s/(t/1e3)*8/1024,i={bytes:s,speed:n,url:e};this.lastDownloadMetrics$.next(i)}return c}else return t.error(`error`,U.flattenObject({url:n,message:`No data in request manifest`})),t.end(),null}.bind(this))),e(this,`fetch`,U.abortable(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:n,onProgress:r,priority:i=`auto`,signal:a,measureThroughput:o=!0,isLowLatency:s=!1,bufferOptimisation:c=!1}={}){let l=e,u=new Headers,d=this.tracer.createComponentTracer(`Fetch`);if(n)switch(t){case 0:u.append(`Range`,`bytes=${n.from}-${n.to}`);break;case 1:{let e=new URL(l,U.getWindow().location.href);e.searchParams.append(`bytes`,`${n.from}-${n.to}`),l=e.toString();break}default:U.assertNever(t)}this.requestQuic&&(l=Fs(l));let f=this.abortAllController.signal,p;if(a){let e=new js;if(p=U.merge(U.fromEvent(this.abortAllController.signal,`abort`),U.fromEvent(a,`abort`)).subscribe(()=>{try{e.abort()}catch(e){U.suppressAbort(e)}}),this.subscription.add(p),this.abortAllController.signal.aborted||a.aborted)try{e.abort()}catch(e){U.suppressAbort(e)}f=e.signal}let m=0,h=U.now();d.log(`startRequest`,U.flattenObject({url:l,priority:i,rangeMethod:t,range:n,isLowLatency:s,requestStartedAt:h})),this.trackRequestStart(l,performance.now()),this.firstBytesRequested.next();let g=yield this.doFetch(l,{priority:i,headers:u,signal:f}),_=U.now();if(!g)return d.error(`error`,{message:`No response in request`}),d.end(),p?.unsubscribe(),null;if(this.throughputEstimator?.addRawRtt(_-h),!g.ok||!g.body){p?.unsubscribe();let e=`Fetch error ${g.status}: ${g.statusText}`;return d.error(`error`,{message:e}),d.end(),Promise.reject(Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){p?.unsubscribe();let e=U.now(),t={requestStartedAt:h,requestEndedAt:e,duration:e-h};return d.log(`endRequest`,U.flattenObject(t)),d.end(),g.arrayBuffer()}let v=g.body;if(o){let e;[v,e]=g.body.tee(),this.throughputEstimator?.trackStream(e,s)}let y=v.getReader(),b,x=parseInt(g.headers.get(`content-length`)??``,10);Number.isFinite(x)&&(b=x),!b&&n&&(b=n.to-n.from+1);let S=b?new Uint8Array(b):new Uint8Array,C=!1,w=e=>{p?.unsubscribe(),C=!0,U.suppressAbort(e)},T=U.abortable(f,async function*({done:e,value:t}){if(m===0&&(this.lastRequestFirstBytes$.next(U.now()-h),this.firstBytesReceived.next()),f.aborted){p?.unsubscribe();return}if(!e&&t){if(c&&b)S.set(t,m),m+=t.byteLength;else{let e=new Uint8Array(S.length+t.length);e.set(S),e.set(t,S.length),S=e,m+=t.byteLength}r?.(new DataView(S.buffer),m),yield y?.read().then(T,w)}}.bind(this));yield y?.read().then(T,w),p?.unsubscribe();let E=U.now(),D={failed:C,requestStartedAt:h,requestEndedAt:E,duration:E-h};if(C)return d.error(`endRequest`,U.flattenObject(D)),d.end(),null;if(m>0){let t=E-h,n=m/(t/1e3)*8/1024,r={bytes:m,speed:n,url:e};this.lastDownloadMetrics$.next(r)}return d.log(`endRequest`,U.flattenObject(D)),d.end(),S.buffer}.bind(this))),e(this,`fetchByteRangeRepresentation`,U.abortable(this.abortAllController.signal,async function*(e,t,n){if(e.type!==`byteRange`)return null;let{from:r,to:i}=e.initRange,a=r,o=i,s=!1,c,l;e.indexRange&&(c=e.indexRange.from,l=e.indexRange.to,s=i+1===c,s&&(a=Math.min(c,r),o=Math.max(l,i))),a=Math.min(a,0);let u=yield this.fetch(e.url,{range:{from:a,to:o},priority:n,measureThroughput:!1});if(!u)return null;let d=new DataView(u,r-a,i-a+1);if(!t.validateData(d))throw Error(`Invalid media file`);let f=t.parseInit(d),p=e.indexRange??t.getIndexRange(f);if(!p)throw ReferenceError(`No way to load representation index`);let m;if(s)m=new DataView(u,p.from-a,p.to-p.from+1);else{let t=yield this.fetch(e.url,{range:p,priority:n,measureThroughput:!1});if(!t)return null;m=new DataView(t)}let h=t.parseSegments(m,f,p).map(e=>({networkStatus:`none`,bufferStatus:`none`,status:`none`,time:e.time,byte:e.byte}));return{initMetadata:f,initDataView:new DataView(u),segments:h}}.bind(this))),e(this,`fetchTemplateRepresentation`,U.abortable(this.abortAllController.signal,async function*(e,t){if(e.type!==`template`)return null;let n=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(n,{priority:t,measureThroughput:!1});if(!r)return null;let i=e.segments.map(e=>({...e,networkStatus:`none`,bufferStatus:`none`,status:`none`,size:void 0}));return{initMetadata:null,initDataView:new DataView(r),segments:i}}.bind(this))),this.throughputEstimator=t,this.requestQuic=n,this.compatibilityMode=i,this.tracer=r.createComponentTracer(`Fetcher`),this.useEnableSubtitlesParam=a,U.getWindow().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:n}=Is(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(n)}setupPerformanceObserver(){this.performanceObserver=new(U.getWindow()).PerformanceObserver(e=>{e.getEntriesByType(`resource`).forEach(e=>{this.processResourceTiming(e)})}),this.performanceObserver.observe({entryTypes:[`resource`]})}processResourceTiming(e){let t=this.findMatchingRequest(e);if(!t||!this.pendingConnectionMetrics.get(t))return;this.pendingConnectionMetrics.delete(t);let n=this.extractConnectionMetrics(e);n&&this.lastConnectionMetrics$.next(n)}estimateNetworkType(){if(!(`connection`in U.getWindow().navigator))return`unknown`;let e=U.getWindow().navigator.connection;return e.effectiveType?{"slow-2g":`2g`,"2g":`2g`,"3g":`3g`,"4g":`lte`}[e.effectiveType]||e.effectiveType:e.downlink?e.downlink<1?`2g`:e.downlink<5?`3g`:e.downlink<50?`lte`:`wifi`:e.rtt?e.rtt>500?`2g`:e.rtt>250?`3g`:e.rtt>50?`lte`:`wifi`:`unknown`}extractConnectionMetrics(e){let t=0,n=0,r=0,i=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(i=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,n=e.secureConnectionStart-e.connectStart):n=i),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,n),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,i),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,n]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),i=r.origin+r.pathname,a=new URL(n.url);if(i===a.origin+a.pathname&&e.startTime>=n.startTime-10&&e.startTime<=n.startTime+1e3)return t}}catch{this.recoverableError$.next({id:`VideoDataFetchError`,message:`Video data fetch error with getting download metrics`,category:U.ErrorCategory.WTF})}return null}trackRequestStart(e,t){let n=`${e}_${t}_${Math.random().toString(36).substr(2,9)}`;this.pendingConnectionMetrics.set(n,{url:e,startTime:t})}async fetchRepresentation(e,t,n=`auto`){let{type:r}=e;switch(r){case`byteRange`:return this.fetchByteRangeRepresentation(e,t,n)??null;case`template`:return this.fetchTemplateRepresentation(e,n)??null;default:U.assertNever(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&=(this.performanceObserver.disconnect(),null),this.pendingConnectionMetrics.clear(),this.tracer.end()}async doFetch(e,t){let n=await As(e,t);if(n.ok)return n;let r=await n.text(),i=parseInt(r);if(!isNaN(i))switch(i){case 1:this.recoverableError$.next({id:`VideoDataLinkExpiredError`,message:`Video data links have expired`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 8:this.recoverableError$.next({id:`VideoDataLinkBlockedForFloodError`,message:`Url blocked for flood`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 18:this.recoverableError$.next({id:`VideoDataLinkIllegalIpChangeError`,message:`Client IP has changed`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;case 21:this.recoverableError$.next({id:`VideoDataLinkIllegalHostChangeError`,message:`Request HOST has changed`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r});break;default:this.error$.next({id:`GeneralVideoDataFetchError`,message:`Generic video data fetch error (${i})`,category:U.ErrorCategory.FATAL,httpCode:n.status,UVBackendErrorCode:r})}}}var zs=u(lr(),1),Bs=u(lt(),1),Vs=u(gr(),1),Hs=u(An(),1),Us=u($e(),1),Ws=u(at(),1),Gs=e=>{let[t,...n]=e.split(`.`);if(!t)return!1;switch(t){case`av01`:{let[e,t,r]=n;return!!(r&&parseInt(r,10)>8)}case`vp09`:{let[e,t,r]=n;return!!(e&&parseInt(e,10)>=2&&r&&parseInt(r,10)>8)}case`avc1`:{let e=n[0];if(!e||e.length!==6)return!1;let[t,r]=e.toUpperCase(),i=t+r;return Ws.default([`6E`,`7A`,`F4`],i)}}return!1},Ks=require(`@vkontakte/videoplayer-shared/es2018`),qs=e=>{if(e.includes(`/`)){let t=e.split(`/`);return parseInt(t[0])/parseInt(t[1])}else return parseFloat(e)},Js=e=>{try{let t=Ys(),{groups:n}=e.match(t)??{};if(n){let e={};if(n.extensions){let t=n.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(t||[]).forEach(t=>{e[t[0]]=t.slice(2)})}let t=n.variants?.split(/-/).filter(e=>e!==``),r={extlang:n.extlang,langtag:n.langtag,language:n.language,privateuse:n.privateuse||n.privateuse2,region:n.region,script:n.script,extensions:e,variants:t};return Object.keys(r).forEach(e=>{let t=r[e];(t===void 0||t===``)&&delete r[e]}),r}return null}catch{return null}};function Ys(){let e=`x(?:-[a-z0-9]{1,8})+`,t=`^(?:(?<langtag>${`
118
+ (?<language>(?:[a-z]{2,3}(?:-(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2})))?|[a-z]{4}|[a-z]{5,8}))
173
119
  (-(?<script>[a-z]{4}))?
174
120
  (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
175
121
  (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
176
122
  (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
177
123
  (?:-(?<privateuse>(?:${e})))?
178
- `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(l,"i")}var dy=s=>{if(!(s!=null&&s.startsWith("P")))return;let e=(n,o)=>{let u=n?parseFloat(n.replace(",",".")):NaN;return(isNaN(u)?0:u)*o},i=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(s),r=(i==null?void 0:i[1])==="-"?-1:1,a={days:e(i==null?void 0:i[5],r),hours:e(i==null?void 0:i[6],r),minutes:e(i==null?void 0:i[7],r),seconds:e(i==null?void 0:i[8],r)};return a.days*24*60*60*1e3+a.hours*60*60*1e3+a.minutes*60*1e3+a.seconds*1e3},At=(s,e)=>{let t=s;t=(0,Pl.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,py.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Pl.default)(t,n,(o,u)=>(0,Ga.isNullable)(a)?o:(0,Ga.isNullable)(u)?a:(0,hy.default)(a,parseInt(u,10),"0"))}return t},So=(s,e)=>{var H,V,Q,U,ie,le,oe,A,$,k,R,Z,K,$t,Lt,pe,Ne,Fe,Ue,st,Ht,Wt,$i,lr,Li,Xl,Jl,Zl,ed,td,id,rd,ad,sd,nd,od,ud,cd,ld,dd,pd,hd,fd,md,bd,gd,vd,Sd,yd,Td,Id,Ed,wd,xd,Pd,kd,Ad,Rd,Md,$d,Ld;let i=new DOMParser().parseFromString(s,"application/xml"),r={video:[],audio:[],text:[]},a=i.children[0],n=Array.from(a.querySelectorAll("MPD > BaseURL").values()).map(Tt=>{var ve,Ci;return(Ci=(ve=Tt.textContent)==null?void 0:ve.trim())!=null?Ci:""}),o=(H=(0,fy.default)(n,0))!=null?H:"",u=a.getAttribute("type")==="dynamic",c=a.getAttribute("availabilityStartTime"),l=a.getAttribute("publishTime"),d=a.getElementsByTagName("vk:Attrs")[0],p=d==null?void 0:d.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,h=d==null?void 0:d.getElementsByTagName("vk:XStreamIsLive")[0].textContent,m=d==null?void 0:d.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=d==null?void 0:d.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:c?new Date(c).getTime():0,publishTime:l?new Date(l).getTime():0,latestSegmentPublishTime:p?new Date(p).getTime():0,streamIsAlive:h==="yes",streamIsUnpublished:m==="yes"});let v,y=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],w=x.reduce((Tt,ve)=>({...Tt,[ve.id]:ve.children}),{}),M=x.reduce((Tt,ve)=>({...Tt,[ve.id]:ve.getAttribute("duration")}),{});y?v=dy(y):(0,kl.default)(M).filter(Tt=>Tt).length&&!u?v=(0,kl.default)(M).reduce((Tt,ve)=>{var Ci;return Tt+((Ci=dy(ve))!=null?Ci:0)},0):b&&(v=parseInt(b,10));let _=0,q=(Q=(V=a.getAttribute("profiles"))==null?void 0:V.split(","))!=null?Q:[];for(let Tt of x.map(ve=>ve.id))for(let ve of w[Tt]){let Ci=(U=ve.getAttribute("id"))!=null?U:"id"+(_++).toString(10),Zr=(ie=ve.getAttribute("mimeType"))!=null?ie:"",Qo=(le=ve.getAttribute("codecs"))!=null?le:"",zo=(oe=ve.getAttribute("contentType"))!=null?oe:Zr==null?void 0:Zr.split("/")[0],dT=($=(A=ve.getAttribute("profiles"))==null?void 0:A.split(","))!=null?$:[],Cd=(R=ly((k=ve.getAttribute("lang"))!=null?k:""))!=null?R:{},Ns=($t=(K=(Z=ve.querySelector("Label"))==null?void 0:Z.textContent)==null?void 0:K.trim())!=null?$t:void 0,pT=ve.querySelectorAll("Representation"),hT=ve.querySelector("SegmentTemplate"),fT=(pe=(Lt=ve.querySelector("Role"))==null?void 0:Lt.getAttribute("value"))!=null?pe:void 0,dr=zo,Re={id:Ci,language:Cd.language,isDefault:fT==="main",label:Ns,codecs:Qo,hdr:dr==="video"&&xl(Qo),mime:Zr,representations:[]};for(let me of pT){let ai=(Ne=me.getAttribute("lang"))!=null?Ne:void 0,Fs=(Ue=(Fe=Ns!=null?Ns:ve.getAttribute("label"))!=null?Fe:me.getAttribute("label"))!=null?Ue:void 0,Us=(Wt=(Ht=(st=me.querySelector("BaseURL"))==null?void 0:st.textContent)==null?void 0:Ht.trim())!=null?Wt:"",Di=new URL(Us||o,e).toString(),si=($i=me.getAttribute("mimeType"))!=null?$i:Zr,qs=(Li=(lr=me.getAttribute("codecs"))!=null?lr:Qo)!=null?Li:"",js;if(zo==="text"){let ni=me.getAttribute("id")||"",Hs=((Xl=Cd.privateuse)==null?void 0:Xl.includes("x-auto"))||ni.includes("_auto"),Bi=me.querySelector("SegmentTemplate");if(Bi){let ea={representationId:(Jl=me.getAttribute("id"))!=null?Jl:void 0,bandwidth:(Zl=me.getAttribute("bandwidth"))!=null?Zl:void 0},Ws=parseInt((ed=me.getAttribute("bandwidth"))!=null?ed:"",10)/1e3,Qs=(id=parseInt((td=Bi.getAttribute("startNumber"))!=null?td:"",10))!=null?id:1,pr=parseInt((rd=Bi.getAttribute("timescale"))!=null?rd:"",10),Go=(ad=Bi.querySelectorAll("SegmentTimeline S"))!=null?ad:[],hr=Bi.getAttribute("media");if(!hr)continue;let zs=[],Gs=0,Ys="",fr=0,ta=Qs,Qe=0;for(let It of Go){let Vi=parseInt((sd=It.getAttribute("d"))!=null?sd:"",10),ht=parseInt((nd=It.getAttribute("r"))!=null?nd:"",10)||0,oi=parseInt((od=It.getAttribute("t"))!=null?od:"",10);Qe=Number.isFinite(oi)?oi:Qe;let _i=Vi/pr*1e3,ui=Qe/pr*1e3;for(let Ct=0;Ct<ht+1;Ct++){let ci=At(hr,{...ea,segmentNumber:ta.toString(10),segmentTime:(Qe+Ct*Vi).toString(10)}),mr=(ui!=null?ui:0)+Ct*_i,ra=mr+_i;ta++,zs.push({time:{from:mr,to:ra},url:ci})}Qe+=(ht+1)*Vi,Gs+=(ht+1)*_i}fr=Qe/pr*1e3,Ys=At(hr,{...ea,segmentNumber:ta.toString(10),segmentTime:Qe.toString(10)});let ia={time:{from:fr,to:1/0},url:Ys},Qt={type:"template",baseUrl:Di,segmentTemplateUrl:hr,initUrl:"",totalSegmentsDurationMs:Gs,segments:zs,nextSegmentBeyondManifest:ia,timescale:pr};js={id:ni,kind:"text",segmentReference:Qt,profiles:[],duration:v,bitrate:Ws,mime:"",codecs:"",width:0,height:0,isAuto:Hs}}else js={id:ni,isAuto:Hs,kind:"text",url:Di}}else{let ni=(cd=(ud=me.getAttribute("contentType"))!=null?ud:si==null?void 0:si.split("/")[0])!=null?cd:zo,Hs=(dd=(ld=ve.getAttribute("profiles"))==null?void 0:ld.split(","))!=null?dd:[],Bi=parseInt((pd=me.getAttribute("width"))!=null?pd:"",10),ea=parseInt((hd=me.getAttribute("height"))!=null?hd:"",10),Ws=parseInt((fd=me.getAttribute("bandwidth"))!=null?fd:"",10)/1e3,Qs=(md=me.getAttribute("frameRate"))!=null?md:"",pr=(bd=me.getAttribute("quality"))!=null?bd:void 0,Go=Qs?cy(Qs):void 0,hr=(gd=me.getAttribute("id"))!=null?gd:"id"+(_++).toString(10),zs=ni==="video"?`${ea}p`:ni==="audio"?`${Ws}Kbps`:qs,Gs=`${hr}@${zs}`,Ys=[...q,...dT,...Hs],fr,ta=me.querySelector("SegmentBase"),Qe=(vd=me.querySelector("SegmentTemplate"))!=null?vd:hT;if(ta){let Qt=(yd=(Sd=me.querySelector("SegmentBase Initialization"))==null?void 0:Sd.getAttribute("range"))!=null?yd:"",[It,Vi]=Qt.split("-").map(ci=>parseInt(ci,10)),ht={from:It,to:Vi},oi=(Td=me.querySelector("SegmentBase"))==null?void 0:Td.getAttribute("indexRange"),[_i,ui]=oi?oi.split("-").map(ci=>parseInt(ci,10)):[],Ct=oi?{from:_i,to:ui}:void 0;fr={type:"byteRange",url:Di,initRange:ht,indexRange:Ct}}else if(Qe){let Qt={representationId:(Id=me.getAttribute("id"))!=null?Id:void 0,bandwidth:(Ed=me.getAttribute("bandwidth"))!=null?Ed:void 0},It=parseInt((wd=Qe.getAttribute("timescale"))!=null?wd:"",10),Vi=(xd=Qe.getAttribute("initialization"))!=null?xd:"",ht=Qe.getAttribute("media"),oi=(kd=parseInt((Pd=Qe.getAttribute("startNumber"))!=null?Pd:"",10))!=null?kd:1,_i=At(Vi,Qt);if(!ht)throw new ReferenceError("No media attribute in SegmentTemplate");let ui=(Ad=Qe.querySelectorAll("SegmentTimeline S"))!=null?Ad:[],Ct=[],ci=0,mr="",ra=0;if(ui.length){let Ks=oi,Et=0;for(let br of ui){let Dt=parseInt((Rd=br.getAttribute("d"))!=null?Rd:"",10),Oi=parseInt((Md=br.getAttribute("r"))!=null?Md:"",10)||0,Xs=parseInt(($d=br.getAttribute("t"))!=null?$d:"",10);Et=Number.isFinite(Xs)?Xs:Et;let Yo=Dt/It*1e3,Ko=Et/It*1e3;for(let Js=0;Js<Oi+1;Js++){let bT=At(ht,{...Qt,segmentNumber:Ks.toString(10),segmentTime:(Et+Js*Dt).toString(10)}),Dd=(Ko!=null?Ko:0)+Js*Yo,gT=Dd+Yo;Ks++,Ct.push({time:{from:Dd,to:gT},url:bT})}Et+=(Oi+1)*Dt,ci+=(Oi+1)*Yo}ra=Et/It*1e3,mr=At(ht,{...Qt,segmentNumber:Ks.toString(10),segmentTime:Et.toString(10)})}else if((0,Ga.isNonNullable)(v)){let Et=parseInt((Ld=Qe.getAttribute("duration"))!=null?Ld:"",10)/It*1e3,br=Math.ceil(v/Et),Dt=0;for(let Oi=1;Oi<br;Oi++){let Xs=At(ht,{...Qt,segmentNumber:Oi.toString(10),segmentTime:Dt.toString(10)});Ct.push({time:{from:Dt,to:Dt+Et},url:Xs}),Dt+=Et}ra=Dt,mr=At(ht,{...Qt,segmentNumber:br.toString(10),segmentTime:Dt.toString(10)})}let mT={time:{from:ra,to:1/0},url:mr};fr={type:"template",baseUrl:Di,segmentTemplateUrl:ht,initUrl:_i,totalSegmentsDurationMs:ci,segments:Ct,nextSegmentBeyondManifest:mT,timescale:It}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!ni||!si)continue;let ia={video:"video",audio:"audio",text:"text"}[ni];if(!ia)continue;dr||(dr=ia),js={id:Gs,kind:ia,segmentReference:fr,profiles:Ys,duration:v,bitrate:Ws,mime:si,codecs:qs,width:Bi,height:ea,fps:Go,quality:pr}}Re.language||(Re.language=ai),Re.label||(Re.label=Fs),Re.mime||(Re.mime=si),Re.codecs||(Re.codecs=qs),Re.hdr||(Re.hdr=dr==="video"&&xl(qs)),Re.representations.push(js)}if(dr){let me=r[dr].find(ai=>ai.id===Re.id);if(me&&Re.representations.every(ai=>ai.segmentReference.type==="template"))for(let ai of me.representations){let Fs=Re.representations.find(si=>si.id===ai.id);if(!Fs)continue;let Us=Fs.segmentReference,Di=ai.segmentReference;Di.segments.push(...Us.segments),Di.nextSegmentBeyondManifest=Us.nextSegmentBeyondManifest}else r[dr].push(Re)}}return{duration:v,streams:r,baseUrls:n,live:S}};var To=G(bt(),1),Al=G(Xe(),1),Ka=require("@vkontakte/videoplayer-shared/es2018");var Ya=(a=>(a.VP9="vp9",a.AV1="av1",a.NONE="none",a.SMOOTH="smooth",a.POWER_EFFICIENT="power_efficient",a))(Ya||{});var yo=s=>{let{webmDecodingInfo:e}=j.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(s){case"vp9":return[t,i];case"av1":return[i,t];case"none":return[];case"smooth":return e?e[i].smooth?[i,t]:e[t].smooth?[t,i]:[i,t]:[t,i];case"power_efficient":return e?e[i].powerEfficient?[i,t]:e[t].powerEfficient?[t,i]:[i,t]:[t,i];default:(0,Ka.assertNever)(s)}},my=({webmCodec:s,androidPreferredFormat:e,iosPreferredFormat:t,preferMultiStream:i})=>{let r=[...i?["DASH_STREAMS"]:[],...yo(s),"DASH_SEP","DASH_ONDEMAND",...i?[]:["DASH_STREAMS"]],a=[...i?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...i?[]:["DASH_STREAMS"]];if(j.device.isAndroid)switch(e){case"mpeg":return["MPEG",...r,"HLS","HLS_ONDEMAND"];case"hls":return["HLS","HLS_ONDEMAND",...r,"MPEG"];case"dash":return[...r,"HLS","HLS_ONDEMAND","MPEG"];case"dash_any_mpeg":return[...a,"MPEG",...yo(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...yo(s),"MPEG",...a,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...yo(s),...a,"HLS","HLS_ONDEMAND"];default:(0,Ka.assertNever)(e)}if(j.video.nativeHlsSupported)switch(t){case"hls":return[...r,"HLS","HLS_FMP4","HLS_ONDEMAND","MPEG"];case"hls_fmp4":return[...r,"HLS_FMP4","HLS","HLS_ONDEMAND","MPEG"];default:(0,Ka.assertNever)(t)}return[...r,"HLS","HLS_ONDEMAND","MPEG"]},by=({androidPreferredFormat:s,preferCMAF:e,preferWebRTC:t})=>{let i=e?["DASH_LIVE_CMAF","DASH_LIVE"]:["DASH_LIVE","DASH_LIVE_CMAF"],r=e?["HLS_LIVE_CMAF","HLS_LIVE"]:["HLS_LIVE","HLS_LIVE_CMAF"],a=[...i,...r],n=[...r,...i],o,u=j.device.isMac&&j.browser.isSafari;if(j.device.isAndroid)switch(s){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=a;break}case"hls":case"mpeg":{o=n;break}default:(0,Ka.assertNever)(s)}else j.video.nativeHlsSupported&&!u&&!j.browser.isChromiumBased?o=n:u?o=e?["DASH_LIVE_CMAF","HLS_LIVE_CMAF","HLS_LIVE","DASH_LIVE"]:["HLS_LIVE","DASH_LIVE","DASH_LIVE_CMAF","HLS_LIVE_CMAF"]:o=a;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},Rl=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],Io=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,To.default)(t.value.split("."),0)}for(let t of s){let i=(0,To.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,To.default)(e.value.split("."),0)},Eo=s=>{let e=s.map(i=>Ei(i)),{codecs:t}=j.video;return A$().filter(i=>{if((0,Al.default)(e,i))switch(i){case"av1":return t.av1;case"vp9":return t.vp9;case"avc1":return t.h264;case"hev1":return t.h265;default:return!1}else return!1})},wo=s=>{let e=s.map(i=>Ei(i)),{codecs:t}=j.video;return R$().filter(i=>{if((0,Al.default)(e,i))switch(i){case"opus":return t.opus;case"mp4a":return t.aac;default:return!1}else return!1})},Ei=s=>s.split(".")[0].replace("0",""),A$=()=>["av1","vp9","hev1","avc1"],R$=()=>["opus","mp4a"];var $y=G(bt(),1);var M$=(s,e={})=>{let i=e.timeout||1,r=performance.now();return Le.setTimeout(()=>{s({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},$$=s=>Le.clearTimeout(s),gy=s=>typeof s=="function"&&(s==null?void 0:s.toString().endsWith("{ [native code] }")),vy=!gy(Le.requestIdleCallback)||!gy(Le.cancelIdleCallback),ir=vy?M$:Le.requestIdleCallback,rr=vy?$$:Le.cancelIdleCallback;var C=require("@vkontakte/videoplayer-shared/es2018");var yy=G(bt(),1);var xo=s=>s.valid,ce=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),i===1&&(this.cursor+=8);let r=e.byteOffset+this.cursor,a;i===0?(this.size=void 0,this.valid=!1,a=void 0):i===1?(this.size=void 0,this.valid=!1,a=void 0):i>e.byteLength?(this.size=i,this.valid=!1,a=Math.min(i-this.cursor,e.byteLength-this.cursor)):(this.size=i,this.valid=!0,a=i-this.cursor),this.content=new DataView(e.buffer,r,a)}get id(){return this.type}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t="ascii"){let r=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,r}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}};var jr=class extends ce{};var Sy=require("@vkontakte/videoplayer-shared/es2018");var Xa=class extends ce{constructor(e,t){if(super(e,t),!this.valid)return;let i=this.readString(16),r=new DataView(this.content.buffer,this.content.byteOffset+16,this.content.byteLength-16);this.userData=this.parseData(i,r)}parseData(e,t){switch(e){case"ondemandlivejson":{let i=new TextDecoder("ascii").decode(t),r=JSON.parse(i);return{received:r["t-in"],prepared:r["t-out"]}}default:(0,Sy.assertNever)(e)}}};var Ja=class extends ce{constructor(e,t){if(super(e,t),!this.valid)return;this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8);for(let r=0;r<i.byteLength;r+=4){let a=this.readString(4);this.compatibleBrands.push(a)}}};var Za=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ie=class extends ce{constructor(e,t){if(super(e,t),!this.valid)return;let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215,this.content=new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)}};var es=class extends Ie{constructor(e,t){super(e,t),this.valid&&(this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16())}};var ts=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var is=class extends ce{constructor(e,t){super(e,t),this.data=this.content}};var ar=class extends Ie{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){if(super(e,t),!!this.valid){this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let i=0;i<this.referenceCount;i++){let r=this.readUint32(),a=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,c=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:c})}}}};var rs=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var as=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ss=class extends Ie{constructor(e,t){if(super(e,t),!this.valid)return;switch(this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}};var ns=class extends Ie{constructor(e,t){super(e,t),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}};var os=class extends Ie{constructor(e,t){super(e,t),this.valid&&(this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32())}};var us=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var cs=class extends Ie{constructor(e,t){super(e,t),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}};var ls=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ds=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ps=class extends Ie{constructor(e,t){super(e,t),this.valid&&(this.sequenceNumber=this.readUint32())}};var hs=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var fs=class extends Ie{constructor(e,t){super(e,t),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}};var ms=class extends Ie{constructor(t,i){super(t,i);this.baseMediaDecodeTime32=0;this.baseMediaDecodeTime64=BigInt(0);this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}};var bs=class extends Ie{constructor(t,i){super(t,i);this.sampleDuration=[];this.sampleSize=[];this.sampleFlags=[];this.sampleCompositionTimeOffset=[];this.optionalFields=0;this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let r=0;r<this.sampleCount;r++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}};var gs=class extends ce{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var vs=class extends Ie{constructor(e,t){super(e,t),this.valid&&(this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)))}};var Ss=class extends ce{constructor(e,t){super(e,t),this.valid&&(this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78)))}};var C$={ftyp:Ja,moov:Za,mvhd:es,moof:ts,mdat:is,sidx:ar,trak:rs,mdia:us,mfhd:ps,tkhd:cs,traf:hs,tfhd:fs,tfdt:ms,trun:bs,minf:ls,sv3d:as,st3d:ss,prhd:ns,proj:ds,equi:os,uuid:Xa,stbl:gs,stsd:vs,avc1:Ss,unknown:jr},Zt=class s{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;){let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n;try{n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i,e.byteLength-i))}catch(o){if(!(o instanceof RangeError))throw o}if(!n||!xo(n))break;t.push(n),i+=n.size}return t}createBox(e,t){let i=C$[e];return i?new i(t,new s):new jr(t,new s)}};var wi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;xo(t)&&((a=(i=this.index)[r=t.type])!=null||(i[r]=[]),this.index[t.type].push(t),t.children.length>0&&this.indexBoxLevel(t.children))})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}};var B$=new TextDecoder("ascii"),V$=s=>B$.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",_$=s=>{let e=new ar(s,new Zt),t=e.earliestPresentationTime/e.timescale*1e3,i=s.byteOffset+s.byteLength+e.firstOffset;return e.segments.map(a=>{if(a.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=a.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+a.referencedSize-1}};return t+=n,i+=a.referencedSize,o})},O$=(s,e)=>{let i=new Zt().parse(s),r=new wi(i),a=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&a.length))return null;let o=a[0],u=n[n.length-1],c=o.source.byteOffset,d=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,c,d)},N$=s=>{let t=new Zt().parse(s),i=new wi(t),r={},a=i.findAll("uuid"),n=(0,yy.default)(a,-1);return n?{serverDataReceivedTimestamp:n.userData.received,serverDataPreparedTime:n.userData.received}:r},F$=s=>{var r;let t=new Zt().parse(s);return(r=new wi(t).find("sidx"))==null?void 0:r.timescale},U$=(s,e)=>{let i=new Zt().parse(s),a=new wi(i).findAll("traf"),n=a[a.length-1].children.find(d=>d.type==="tfhd"),o=a[a.length-1].children.find(d=>d.type==="tfdt"),u=a[a.length-1].children.find(d=>d.type==="trun"),c=0;return u.sampleDuration.length?c=u.sampleDuration.reduce((d,p)=>d+p,0):c=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+c)/e*1e3},q$=s=>{let e={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},i=new Zt().parse(s),r=new wi(i);if(r.find("sv3d")){e.is3dVideo=!0;let n=r.find("st3d");n&&(e.stereoMode=n.stereoMode);let o=r.find("prhd");o&&(e.projectionData.pose.yaw=o.poseYawDegrees,e.projectionData.pose.pitch=o.posePitchDegrees,e.projectionData.pose.roll=o.poseRollDegrees);let u=r.find("equi");u&&(e.projectionData.bounds.top=u.projectionBoundsTop,e.projectionData.bounds.right=u.projectionBoundsRight,e.projectionData.bounds.bottom=u.projectionBoundsBottom,e.projectionData.bounds.left=u.projectionBoundsLeft)}return e},Ty={validateData:V$,parseInit:q$,getIndexRange:()=>{},parseSegments:_$,parseFeedableSegmentChunk:O$,getChunkEndTime:U$,getServerLatencyTimestamps:N$,getTimescaleFromIndex:F$};var Ts=G(Xe(),1),ei=require("@vkontakte/videoplayer-shared/es2018");var Ey=require("@vkontakte/videoplayer-shared/es2018");var Iy={440786851:{type:"master"},17030:{type:"uint"},17143:{type:"uint"},17138:{type:"uint"},17139:{type:"uint"},17026:{type:"string"},17031:{type:"uint"},17029:{type:"uint"},236:{type:"binary"},408125543:{type:"master"},290298740:{type:"master"},19899:{type:"master"},21419:{type:"binary"},21420:{type:"uint"},357149030:{type:"master"},2807729:{type:"uint"},17545:{type:"float"},374648427:{type:"master"},174:{type:"master"},224:{type:"master"},30320:{type:"master"},30321:{type:"uint"},30322:{type:"master"},272869232:{type:"master"},524531317:{type:"master"},231:{type:"uint"},22612:{type:"master"},22743:{type:"uint"},167:{type:"uint"},171:{type:"uint"},163:{type:"binary"},160:{type:"master"},175:{type:"binary"},423732329:{type:"master"},307544935:{type:"master"},475249515:{type:"master"},187:{type:"master"},179:{type:"uint"},183:{type:"master"},247:{type:"uint"},241:{type:"uint"},240:{type:"uint"},178:{type:"uint"},21368:{type:"uint"},234:{type:"uint"},219:{type:"master"},150:{type:"uint"}},wy=s=>{let e=s.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=ys(s,t),r=i in Iy,a=r?Iy[i].type:"binary",n=s.getUint8(t),o=0;n&128?o=1:n&64?o=2:n&32?o=3:n&16?o=4:n&8?o=5:n&4?o=6:n&2?o=7:n&1&&(o=8);let u=new DataView(s.buffer,s.byteOffset+t+1,o-1),c=n&255>>o,l=ys(u),d=c*2**((o-1)*8)+l,p=t+o,h;return p+d>s.byteLength?h=new DataView(s.buffer,s.byteOffset+p):h=new DataView(s.buffer,s.byteOffset+p,d),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:p,tagSize:p+d,value:h,valueSize:d}},ys=(s,e=s.byteLength)=>{switch(e){case 1:return s.getUint8(0);case 2:return s.getUint16(0);case 3:return s.getUint8(0)*2**16+s.getUint16(1);case 4:return s.getUint32(0);case 5:return s.getUint8(0)*2**32+s.getUint32(1);case 6:return s.getUint16(0)*2**32+s.getUint32(2);case 7:{let t=s.getUint8(0)*281474976710656+s.getUint16(1)*4294967296+s.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},Rt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return ys(s);case"float":return s.byteLength===4?s.getFloat32(0):s.getFloat64(0);case"string":return new TextDecoder("ascii").decode(s);case"utf8":return new TextDecoder("utf-8").decode(s);case"date":return new Date(Date.UTC(2001,0)+s.getInt8(0)).getTime();case"master":return s;case"binary":return s;default:(0,Ey.assertNever)(e)}},sr=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=wy(i);if(!e(r))return;r.type==="master"&&sr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},xy=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=wy(s);return sr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=Rt(o,n):a===17026?t=Rt(o,n):a===17029&&(i=Rt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Py=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],j$=[231,22612,22743,167,171,163,160,175],H$=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,c,l=!1,d=0;return sr(s,({tag:p,type:h,value:m,valueSize:b})=>{if(p===21419){let S=Rt(m,h);c=ys(S)}else p!==21420&&(c=void 0);return p===408125543?(e=m.byteOffset,t=m.byteOffset+b):p===357149030?a=!0:p===290298740?n=!0:p===2807729?i=Rt(m,h):p===17545?r=Rt(m,h):p===21420&&c===475249515?u=Rt(m,h):p===374648427?sr(m,({tag:S,type:v,value:y})=>S===30321?(l=Rt(y,v)===1,!1):!0):a&&n&&(0,Ts.default)(Py,p)&&(o=!0),!o}),(0,ei.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,ei.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,ei.assertNonNullable)(r,"Failed to parse webm Segment duration"),i=i!=null?i:1e6,{segmentStart:Math.round(e/1e9*i*1e3),segmentEnd:Math.round(t/1e9*i*1e3),timeScale:i,segmentDuration:Math.round(r/1e9*i*1e3),cuesSeekPosition:u,is3dVideo:l,stereoMode:d,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},W$=s=>{if((0,ei.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},Q$=(s,e)=>{let t=!1,i=!1,r=o=>(0,ei.isNonNullable)(o.time)&&(0,ei.isNonNullable)(o.position),a=[],n;return sr(s,({tag:o,type:u,value:c})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=Rt(c,u));break;case 183:break;case 241:n&&(n.position=Rt(c,u));break;default:t&&(0,Ts.default)(Py,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:c,position:l}=o,d=a[u+1];return{status:"none",time:{from:c,to:d?d.time:e.segmentDuration},byte:{from:e.segmentStart+l,to:d?e.segmentStart+d.position-1:e.segmentEnd-1}}})},z$=s=>{let e=0,t=!1;try{sr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,Ts.default)(j$,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,Ts.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=s.byteLength&&t?new DataView(s.buffer,s.byteOffset,e):null},ky={validateData:xy,parseInit:H$,getIndexRange:W$,parseSegments:Q$,parseFeedableSegmentChunk:z$};var nr=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return ky;case"mp4":return Ty}}throw new ReferenceError(`Unsupported mime type ${s}`)};var Ml=G(bt(),1);var Ay=require("@vkontakte/videoplayer-shared/es2018"),xi=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n,tvDisabled:o})=>{var c;let u=(c=a?vi(a):void 0)!=null?c:(0,Ay.videoSizeToQuality)({width:e,height:t});return u&&{id:s,quality:u,bitrate:i,size:{width:e,height:t},fps:r,streamId:n,tvDisabled:o}},Is=({id:s,bitrate:e})=>({id:s,bitrate:e}),Ry=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),My=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),$l=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,Ml.default)(i.split("."),0),isDefault:r}),Ll=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,Ml.default)(r.split("."),0)}),Cl=s=>"url"in s,dt=s=>s.type==="template";var Hr=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,getCurrentStallDuration:o,manifest:u}){this.error$=new C.Subject;this.playingRepresentation$=new C.ValueSubject(void 0);this.playingRepresentationInit$=new C.ValueSubject(void 0);this.currentSegmentLength$=new C.ValueSubject(0);this.onLastSegment$=new C.ValueSubject(!1);this.fullyBuffered$=new C.ValueSubject(!1);this.initData=new Map;this.initDataPromises=new Map;this.idleCallbacks=new Map;this.parsedInitData=new Map;this.segments=new Map;this.bufferPlaybackQueue=[];this.downloadingBufferItems=[];this.preloadOnly=!1;this.failedDownloads=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.currentVirtualBufferSize=0;this.baseUrls=[];this.baseUrlsIndex=0;this.maintainPlaybackBufferMutex=!1;this.maintainNativeBufferMutex=!1;this.bufferClearingMutex=!1;this.abortNativeBufferMutex=!1;this.switchMutex=!1;this.destroyAbortController=new ye;this.downloadAbortController=new ye;this.subscription=new C.Subscription;this.startWith=(0,C.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,C.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.containerParser=nr(t.mime),this.nativeBufferManager.init(t.mime,t.codecs,this.tuning.dash.useAbortMSEFix),yield this.loadInits(t);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);(0,C.assertNonNullable)(i,"No init buffer for starting representation"),(0,C.assertNonNullable)(r,"No segments for starting representation"),await this.nativeBufferManager.addInitSegment(i),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a)}.bind(this));this.switchTo=(0,C.abortable)(this.destroyAbortController.signal,async function*(e,t=!0){var d;if((0,C.isNullable)(this.downloadingRepresentationId)||e===this.downloadingRepresentationId||e===this.switchingRepresentationId)return;this.switchMutex=!0,this.switchingRepresentationId=e;let i=this.representations.get(this.downloadingRepresentationId),r=this.representations.get(e);(0,C.assertNonNullable)(r,`No such representation ${e}`),(0,C.assertNonNullable)(i,`No such representation ${this.downloadingRepresentationId}`),yield this.loadInitIfNeeded(r,"high");let a=this.initData.get(r.id),n=this.segments.get(r.id);(0,C.assertNonNullable)(a,"No init buffer for switching representation"),(0,C.assertNonNullable)(n,"No segments for switching representation");let o=(d=this.getCurrentPosition())!=null?d:0,u=p=>p.segment.bufferStatus!=="fed",c=p=>{let h=this.representations.get(p.representationId);return(0,C.assertNonNullable)(h,"No itemRepresentation for previous track before switch"),p.segment.networkStatus!=="downloaded"||this.forceSwitchCondition(h,r)},l=p=>t?u(p)&&c(p):u(p);this.bufferPlaybackQueue.filter(l).forEach(p=>p.segment.bufferStatus="none"),this.bufferPlaybackQueue=this.bufferPlaybackQueue.filter(p=>!l(p)),this.downloadingRepresentationId=e,this.switchingRepresentationId=null,this.bufferPlaybackQueue.length?(this.abortDownload(),yield this.maintain()):yield this.seek(o),this.switchMutex=!1}.bind(this));this.waitExponentialDownloadDelay=(0,C.abortable)(this.downloadAbortController.signal,async function*(){let e=(0,C.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{let i=(0,C.getWindow)();this.loadByteRangeSegmentsTimeoutId=i.setTimeout(t,e),this.subscription.add((0,C.fromEvent)(i,"online").pipe((0,C.once)()).subscribe(()=>{t(),i.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}))})}.bind(this));var c;this.kind=e,this.nativeBufferManager=t,this.fetcher=r,this.tuning=a,this.getCurrentPosition=n,this.getCurrentStallDuration=o,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.baseUrls=(c=u==null?void 0:u.baseUrls)!=null?c:[],this.representations=new Map(i.map(l=>[l.id,l]))}async seek(e){await this.abort(),await this.clearBuffer(),await this.maintain(e)}async maintain(e=this.getCurrentPosition()){(0,C.isNullable)(e)||(await this.maintainPlaybackBuffer(e),await this.maintainNativeBuffer(),this.actualizeLastSegmentInfo(e))}getForwardPlaybackBufferDuration(e=this.getCurrentPosition()){let t=this.bufferPlaybackQueue.filter(a=>a.segment.networkStatus==="downloaded"),i=t[t.length-1],r=(0,C.isNonNullable)(e)&&(0,C.isNonNullable)(i)?i.segment.time.to-e:0;return Math.max(r,0)}getPlaybackBufferState(){if(!this.bufferPlaybackQueue.length)return null;let t=this.bufferPlaybackQueue[0].segment.time.from,i=this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segment.time.to;return{from:t,to:i}}async abort(){this.abortDownload(),await this.abortNativeBuffer()}findSegmentStartTime(e){var a,n;let t=(n=(a=this.downloadingRepresentationId)!=null?a:this.playingRepresentationId)!=null?n:"",i=this.segments.get(t),r=i==null?void 0:i.find(o=>o.time.from<=e&&o.time.to>=e);return r==null?void 0:r.time.from}getRepresentationInitialTime(){var t;if((0,C.isNullable)(this.playingRepresentationId))return 0;let e=this.segments.get(this.playingRepresentationId);return((t=e==null?void 0:e[0].time.from)!=null?t:0)/1e3}calculateDurationFromSegments(e){var i;let t=this.segments.get(e);return(t?(i=(0,$y.default)(t,-1))==null?void 0:i.time.to:0)||0}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){let e=(0,C.getWindow)();if(this.initData.clear(),this.initDataPromises.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.downloadAbortController.abort(),this.destroyAbortController.abort(),this.subscription.unsubscribe(),e.__polyfill_cancelIdleCallback_7n99jeej6nif)for(let t of this.idleCallbacks.values())e.__polyfill_cancelIdleCallback_7n99jeej6nif(t);this.idleCallbacks.clear(),e.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}forceSwitchCondition(e,t){let i=!0;if(this.kind==="video"){let r=xi(e),a=xi(t);i=(0,C.isNonNullable)(r)&&(0,C.isNonNullable)(a)&&(0,C.isHigher)(a.quality,r.quality)}else if(this.kind==="audio"){let r=Is(e),a=Is(t);i=(0,C.isNonNullable)(r==null?void 0:r.bitrate)&&(0,C.isNonNullable)(a==null?void 0:a.bitrate)&&a.bitrate>r.bitrate}return i}async clearBuffer(){this.bufferClearingMutex=!0,await this.nativeBufferManager.clear(this.destroyAbortController.signal),this.bufferPlaybackQueue.forEach(e=>e.segment.bufferStatus="none"),this.bufferPlaybackQueue=[],this.bufferClearingMutex=!1}abortDownload(){this.downloadAbortController.abort(),this.downloadAbortController=new ye,this.abortDownloadingItems(),this.maintainPlaybackBufferMutex=!1}abortDownloadingItems(){for(let e of this.downloadingBufferItems)e.segment.networkStatus==="downloading"&&(e.segment.networkStatus="none",e.segment.size=0,e.segment.loadedBytes=0,e.segment.feedingBytes=0,e.segment.fedBytes=0,e.segment.data=null);this.downloadingBufferItems=[]}async abortNativeBuffer(){this.abortNativeBufferMutex=!0;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0,i=await this.nativeBufferManager.abortBuffer(t);return this.abortNativeBufferMutex=!1,this.maintainNativeBufferMutex=!1,i}async loadInits(e){await this.loadInit(e,"high",!0);for(let[t,i]of this.representations)this.idleCallbacks.set(i.id,ir(async r=>await this.loadInitIfNeeded(i,"low",!1)))}async loadInitIfNeeded(e,t="auto",i=!1){let r=this.initDataPromises.get(e.id),a;this.initData.has(e.id)&&this.segments.has(e.id)?a=Promise.resolve():(0,C.isNonNullable)(r)?a=r:a=this.loadInit(e,t,i),await a}async loadInit(e,t="auto",i=!1){var r;try{let a=this.tuning.dash.useFetchPriorityHints?t:"auto",n=this.fetcher.fetchRepresentation(e.segmentReference,this.containerParser,a);this.initDataPromises.set(e.id,n);let{initMetadata:o,initDataView:u,segments:c}=(r=await n)!=null?r:{};if(this.initDataPromises.delete(e.id),(0,C.isNullable)(u)||(0,C.isNullable)(c))return;o&&this.parsedInitData.set(e.id,o);let l=u.buffer.slice(u.byteOffset,u.byteOffset+u.byteLength);this.initData.set(e.id,l),this.segments.set(e.id,c),this.failedDownloads=0}catch(a){i&&this.error$.next({id:"LoadInits",category:C.ErrorCategory.WTF,message:"loadInit threw",thrown:a})}}async maintainNativeBuffer(){var h,m,b;let e=this.getCurrentPosition(),t=this.segments.get((h=this.downloadingRepresentationId)!=null?h:""),i=t==null?void 0:t[(t==null?void 0:t.length)-1];if((0,C.isNullable)(e)||(0,C.isNullable)(i)||this.maintainNativeBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex||this.preloadOnly)return;this.maintainNativeBufferMutex=!0;let r=this.bufferPlaybackQueue.find(S=>this.withinInterval(e,S.segment.time)),a=this.bufferPlaybackQueue.find(S=>S.segment.bufferStatus!=="fed"),n=this.initData.get((m=a==null?void 0:a.representationId)!=null?m:""),o=this.bufferPlaybackQueue[0],u=this.downloadAbortController.signal,l=((b=this.getCurrentStallDuration())!=null?b:0)>0;this.tuning.dash.useBufferHoldingOnlyOnStall&&l&&(l=e>0);let d=Math.min(this.tuning.dash.minSafeBufferToPlay,i.time.to-e),p=l?this.getForwardPlaybackBufferDuration()>=d:!0;(0,C.isNonNullable)(n)&&(0,C.isNonNullable)(a)&&(0,C.isNonNullable)(r)&&this.playingRepresentationId!==a.representationId&&this.withinAppendInterval(e,a.segment.time)&&(a===r||r.segment.bufferStatus==="fed")&&(await this.abortNativeBuffer(),await this.nativeBufferManager.addInitSegment(n,this.downloadAbortController.signal),this.playingRepresentationId=a.representationId,this.playingRepresentation$.next(this.playingRepresentationId)),(0,C.isNonNullable)(a)&&this.withinAppendInterval(e,a.segment.time)&&p&&(a.segment.loadedBytes===a.segment.size&&a.segment.bufferStatus==="none"?await this.appendSegmentFully(a,u):await this.appendSegmentPartially(a,u)),(0,C.isNonNullable)(o)&&this.withinRemoveInterval(e,o.segment.time)&&await this.removeSegment(o,u),this.pruneVirtualBuffer(e),this.maintainNativeBufferMutex=!1}async maintainPlaybackBuffer(e){(0,C.assertNonNullable)(this.downloadingRepresentationId);let t=this.segments.get(this.downloadingRepresentationId),i=this.representations.get(this.downloadingRepresentationId);if((0,C.isNullable)(t)||(0,C.isNullable)(i)||this.maintainPlaybackBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex)return;this.maintainPlaybackBufferMutex=!0;let r=t.find(n=>e>=n.time.from&&e<n.time.to);(0,C.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from),this.downloadingBufferItems.length||(this.downloadingBufferItems=this.selectDownloadingItems(e,t)),await this.processCachedItems();let a=this.selectItemsToLoad();await this.loadItems(a,i),this.maintainPlaybackBufferMutex=!1}actualizeLastSegmentInfo(e){var r;let t=this.segments.get((r=this.downloadingRepresentationId)!=null?r:"");if((0,C.isNullable)(t)||t.length===0)return;let i=t[(t==null?void 0:t.length)-1];(0,C.isNullable)(i)||(this.fullyBuffered$.next(i.time.to-e-this.getForwardPlaybackBufferDuration(e)<this.tuning.dash.bufferTolerance),this.onLastSegment$.next(e-i.time.from>0))}selectDownloadingItems(e,t){(0,C.assertNonNullable)(this.downloadingRepresentationId);let i=this.getPlaybackBufferState(),r,a;(0,C.isNonNullable)(i)&&this.withinInterval(e,i)?(a=this.forwardBufferTarget-this.getForwardPlaybackBufferDuration(e),r=this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segmentIndex+1):(a=this.forwardBufferTarget,r=t.findIndex(o=>this.withinInterval(e,o.time))),r=r===-1?0:r;let n=[];for(;r<t.length&&a>0;){n.push({representationId:this.downloadingRepresentationId,segmentIndex:r,segment:t[r]});let{from:o,to:u}=t[r].time;a-=u-o,r++}return n}async processCachedItems(){let e=[...this.downloadingBufferItems];for(;e.length&&e[0].segment.networkStatus==="downloaded";)await this.onDownloadItem(e[0]),e.shift()}withinInterval(e,{from:t,to:i},r=this.tuning.dash.bufferTolerance){return(0,C.isNonNullable)(e)?e+r>=t&&e<i:!1}withinAppendInterval(e,{from:t,to:i}){let{actionTimeShiftFromSegment:r}=this.tuning.dash;return(0,C.isNonNullable)(e)?e+r>=t&&e+r<i||this.withinInterval(e,{from:t,to:i}):!1}withinRemoveInterval(e,{to:t}){let{actionTimeShiftFromSegment:i}=this.tuning.dash;return(0,C.isNonNullable)(e)?e-i>t:!1}async appendSegmentFully(e,t){if((0,C.isNullable)(e.segment.data))return;e.segment.feedingBytes=e.segment.size,await this.nativeBufferManager.append(e.segment.data,t)&&(e.segment.fedBytes=e.segment.size,this.onItemFullyAppended(e))}async appendSegmentPartially(e,t){if((0,C.isNullable)(e.segment.data)||(0,C.isNullable)(e.segment.loadedBytes)||(0,C.isNullable)(e.segment.feedingBytes)||(0,C.isNullable)(e.segment.fedBytes)||(0,C.isNullable)(e.segment.size))return;let i=e.segment.data,r=new DataView(i.buffer,i.byteOffset+e.segment.feedingBytes,i.byteLength-e.segment.feedingBytes),a=e.segment.loadedBytes!==e.segment.size?this.parseFeedableSegmentChunk(r):r;a!=null&&a.byteLength&&(e.segment.bufferStatus="partially_fed",e.segment.feedingBytes+=a.byteLength,await this.nativeBufferManager.append(a,t)&&(e.segment.fedBytes+=a.byteLength,e.segment.fedBytes===e.segment.size&&this.onItemFullyAppended(e)))}parseFeedableSegmentChunk(e){return this.containerParser.parseFeedableSegmentChunk(e,!1)}onItemFullyDownloaded(e){e.segment.networkStatus="downloaded"}onItemFullyAppended(e){e.segment.bufferStatus="fed"}async removeSegment(e,t){let{from:i,to:r}=e.segment.time,a=(r-i)/4;await this.nativeBufferManager.remove(0,r-a,t)&&(e.segment.fedBytes=0,e.segment.feedingBytes=0,e.segment.bufferStatus="none",this.bufferPlaybackQueue.shift())}async onDownloadItem(e){if(!this.downloadingBufferItems.find(i=>i===e))return;let t=this.getCurrentPosition();return this.downloadingBufferItems=this.downloadingBufferItems.filter(i=>i!==e||i.segment.networkStatus!=="downloaded"),(this.preloadOnly||(0,C.isNonNullable)(t)&&!this.withinRemoveInterval(t,e.segment.time))&&!this.bufferPlaybackQueue.find(i=>i===e)&&this.bufferPlaybackQueue.push(e),this.maintainNativeBuffer()}pruneVirtualBuffer(e){let{maxVirtualBufferSize:t,virtualBufferPruneSize:i,bufferPruningSafeZone:r}=this.tuning.dash;if(this.currentVirtualBufferSize<t)return;let a=this.currentVirtualBufferSize-t+i;for(let n of this.segments.values())for(let o of n)(0,C.isNonNullable)(o.size)&&a>0&&o.time.to<=e-r&&o.bufferStatus==="none"&&o.networkStatus==="downloaded"&&(o.data=null,o.networkStatus="none",this.currentVirtualBufferSize-=o.size,a-=o.size);for(let n of this.segments.values())for(let o of[...n].reverse())(0,C.isNonNullable)(o.size)&&a>0&&o.time.from>=e+r&&o.bufferStatus==="none"&&o.networkStatus==="downloaded"&&!this.bufferPlaybackQueue.find(u=>u.segment===o)&&!this.downloadingBufferItems.find(u=>u.segment===o)&&(o.data=null,o.networkStatus="none",this.currentVirtualBufferSize-=o.size,a-=o.size)}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())this.updateRepresentationBaseUrl(t,e)}};var St=require("@vkontakte/videoplayer-shared/es2018"),Po=class extends Hr{constructor(e,t,i,r){super(e,t,i,r)}async loadItems(e,t,i="auto"){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let{url:a,...n}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{await this.fetcher.fetch(a,{...n,priority:i}),this.lastDataObtainedTimestampMs=(0,St.now)(),this.failedDownloads=0}catch(o){this.abortDownloadingItems(),(0,St.isAbortError)(o)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}selectItemsToLoad(){let e=0,t=0,i=[],r=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,a=this.preloadOnly?this.forwardBufferTarget:0,n=0;for(;n<this.downloadingBufferItems.length&&this.downloadingBufferItems[n].segment.networkStatus==="none"&&(e<=r||t<=a);){let o=this.downloadingBufferItems[n].segment;o.networkStatus="downloading",o.size=1/0,o.loadedBytes=0,o.feedingBytes=0,o.fedBytes=0,i.push(this.downloadingBufferItems[n]),e+=o.byte.to+1-o.byte.from,t+=o.time.to+1-o.time.from,n++}return i}prepareFetchParams(e,t){if(_e(t.segmentReference))throw new Error("Representation is not byte range type");let{signal:i}=this.downloadAbortController,r=t.segmentReference.url,a={from:e[0].segment.byte.from,to:e[e.length-1].segment.byte.to};return{url:r,range:a,onProgress:async(o,u)=>{if(!i.aborted)try{this.lastDataObtainedTimestampMs=(0,St.now)(),await this.onSomeDataLoaded({downloadingItems:e,dataView:o,loaded:u,signal:i,globalFrom:a?a.from:0,representationId:t.id})}catch(c){this.error$.next({id:"SegmentFeeding",category:St.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}},signal:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}async onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:i,globalFrom:r,loaded:a,signal:n}){let o=this.representations.get(i);if(!(!this.downloadingBufferItems.length||(0,St.isNullable)(o)||(0,St.isNullable)(r)||n.aborted))for(let u of e){let{segment:c}=u,l=c.byte.from-r,d=c.byte.to-r,p=d-l+1,h=l<a,m=d<=a;c.size=p,h&&(c.networkStatus==="downloading"&&c.bufferStatus==="none"&&m?(c.data=new DataView(t.buffer,t.byteOffset+l,p),this.currentVirtualBufferSize+=c.size,this.onItemFullyDownloaded(u),c.loadedBytes=Math.min(p,a-l),await this.onDownloadItem(u)):(0,St.isNonNullable)(c.feedingBytes)&&this.tuning.dash.enableSubSegmentBufferFeeding&&c.networkStatus==="downloading"&&(c.loadedBytes=Math.min(p,a-l),m&&(this.currentVirtualBufferSize+=c.size,this.onItemFullyDownloaded(u)),c.loadedBytes>c.feedingBytes&&(c.data=new DataView(t.buffer,t.byteOffset+l,c.loadedBytes),await this.onDownloadItem(u))))}}updateRepresentationBaseUrl(e,t){if(_e(e.segmentReference))throw new Error("Representation is not byte range type");e.segmentReference.url=t}};var Mt=require("@vkontakte/videoplayer-shared/es2018"),Wr=class extends Hr{constructor(e,t,i,r){super(e,t,i,r)}async loadItems(e,t,i="auto"){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let{url:a,...n}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{let o=await this.fetcher.fetch(a,{...n,priority:i});if(this.lastDataObtainedTimestampMs=(0,Mt.now)(),(0,Mt.isNullable)(o))return;let u=e[0],c=new DataView(o);u.segment.size=c.byteLength,u.segment.loadedBytes=c.byteLength,u.segment.data=c,this.onItemFullyDownloaded(u),await this.onDownloadItem(u),this.failedDownloads=0}catch(o){this.abortDownloadingItems(),(0,Mt.isAbortError)(o)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}selectItemsToLoad(){let e=[];for(let t of this.downloadingBufferItems){let i=t.segment;i.networkStatus="downloading",i.size=1/0,i.loadedBytes=0,i.feedingBytes=0,i.fedBytes=0,e.push(t)}return e}prepareFetchParams(e,t){let i=this.getFetchUrl(e,t).toString(),{signal:r}=this.downloadAbortController;return{url:i,onProgress:async(n,o)=>{if(!r.aborted)try{this.lastDataObtainedTimestampMs=(0,Mt.now)(),await this.onSomeDataLoaded({downloadingItems:e,dataView:n,loaded:o,signal:r,representationId:t.id})}catch(u){this.error$.next({id:"SegmentFeeding",category:Mt.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:u})}},signal:r,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}getFetchUrl(e,t){if(!_e(t.segmentReference))throw new Error("Representation is not template type");return new URL(e[0].segment.url,t.segmentReference.baseUrl)}async onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:i,loaded:r,signal:a}){let n=e[0],{segment:o}=n,u=this.representations.get(i);!this.downloadingBufferItems.length||(0,Mt.isNullable)(u)||(0,Mt.isNullable)(o.feedingBytes)||o.networkStatus!=="downloading"||a.aborted||(o.loadedBytes=r,o.loadedBytes>o.feedingBytes&&this.tuning.dash.enableSubSegmentBufferFeeding&&(o.data=new DataView(t.buffer,t.byteOffset,o.loadedBytes),await this.onDownloadItem(n)))}updateRepresentationBaseUrl(e,t){if(!_e(e.segmentReference))throw new Error("Representation is not template type");e.segmentReference.baseUrl=t}};var Dl=G(Wa(),1),Ly=G(bt(),1);var Oe=require("@vkontakte/videoplayer-shared/es2018");var ko=class extends Wr{constructor(t,i,r,a){super(t,i,r,a);this.currentLiveSegmentServerLatency$=new Oe.ValueSubject(0);this.currentLowLatencySegmentLength$=new Oe.ValueSubject(0);this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.isActiveLowLatency=a.isActiveLowLatency}updateManifest(t){var r,a,n;if(!t||[...this.segments.values()].every(o=>!o.length))return;let i=(0,Dl.default)(t.streams[this.kind],o=>o.representations);for(let o of i){if((0,Oe.isNullable)(o)||!_e(o.segmentReference))return;let u=o.segmentReference.segments.map(h=>({...h,networkStatus:"none",bufferStatus:"none",size:void 0})),c=100,l=(r=this.segments.get(o.id))!=null?r:[],d=(n=(a=(0,Ly.default)(l,-1))==null?void 0:a.time.to)!=null?n:0,p=u==null?void 0:u.findIndex(h=>d>=h.time.from+c&&d<=h.time.to+c);if(p===-1){let h=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,h)}else{let h=u.slice(p+1);this.segments.set(o.id,[...l,...h])}this.representations.set(o.id,o)}}proceedLowLatencyLive(){let t=this.downloadingRepresentationId;(0,Oe.assertNonNullable)(t);let i=this.segments.get(t);if(i!=null&&i.length){let r={representationId:t,segmentIndex:i.length-1,segment:i[i.length-1]};this.updateLowLatencyLive(r)}}getLiveSegmentsToLoadState(t){let i=t==null?void 0:t.streams[this.kind],r=(0,Dl.default)(i,n=>n.representations).find(n=>n.id===this.downloadingRepresentationId);if((0,Oe.isNullable)(r))return;let a=this.segments.get(r.id);if(a!=null&&a.length)return{from:a[0].time.from,to:a[a.length-1].time.to}}getRepresentationInitialTime(){var r;if((0,Oe.isNullable)(this.playingRepresentationId))return 0;let t=(r=this.representations.get(this.playingRepresentationId))==null?void 0:r.segmentReference;return(0,Oe.isNullable)(t)||!_e(t)?0:this.getActualLiveStartingSegments(t)[0].time.from+this.tuning.dash.bufferTolerance}prepareFetchParams(t,i){return{...super.prepareFetchParams(t,i),isLowLatency:this.isActiveLowLatency()}}async onSomeDataLoaded({downloadingItems:t,...i}){await super.onSomeDataLoaded({downloadingItems:t,...i}),this.isActiveLowLatency()&&this.updateLowLatencyItemTime(t[0])}onItemFullyDownloaded(t){if(super.onItemFullyDownloaded(t),(0,Oe.isNullable)(t.segment.data)||!this.isActiveLowLatency())return;let i=t.segment.data,r=this.containerParser,{serverDataReceivedTimestamp:a,serverDataPreparedTime:n}=r.getServerLatencyTimestamps(i);a&&n&&this.currentLiveSegmentServerLatency$.next(n-a),this.updateLowLatencyItemTime(t),this.updateLowLatencyLive(t)}updateLowLatencyItemTime(t){var n;let i=t.segment.data,r=(n=this.representations.get(t.representationId))==null?void 0:n.segmentReference;if((0,Oe.isNullable)(t.segment.data)||(0,Oe.isNullable)(r)||!_e(r))return;let a=this.containerParser;if(t.segment.isCurrentLowLatency){let{timescale:o}=r;t.segment.time.to=a.getChunkEndTime(i,o)}}updateLowLatencyLive(t){var r;let i=0;for(let a of this.representations.values()){let n=a.segmentReference;if(!_e(n))return;let o=(r=this.segments.get(a.id))!=null?r:[],u=o.find(l=>Math.floor(l.time.from)===Math.floor(t.segment.time.from));if(u!=null&&u.isCurrentLowLatency&&(u.time.to=t.segment.time.to,i=u.time.to-u.time.from,u.isCurrentLowLatency=!1),!!!o.find(l=>Math.floor(l.time.from)===Math.floor(t.segment.time.to))&&this.isActiveLowLatency()){let l=Math.round(t.segment.time.to*n.timescale/1e3).toString(10),d=At(n.segmentTemplateUrl,{segmentTime:l});o.push({networkStatus:"none",bufferStatus:"none",time:{from:t.segment.time.to,to:t.segment.time.to+this.tuning.dash.bufferTolerance},url:d,isCurrentLowLatency:!0})}}this.currentLowLatencySegmentLength$.next(i)}parseFeedableSegmentChunk(t){return this.containerParser.parseFeedableSegmentChunk(t,!0)}getFetchUrl(t,i){let r=super.getFetchUrl(t,i);return this.isActiveLowLatency()&&r.searchParams.set("low-latency","yes"),r}async loadInit(t,i="auto",r=!1){var a;try{let n=this.tuning.dash.useFetchPriorityHints?i:"auto",o=this.fetcher.fetchRepresentation(t.segmentReference,this.containerParser,n);this.initDataPromises.set(t.id,o);let{initMetadata:u,initDataView:c,segments:l}=(a=await o)!=null?a:{};if(this.initDataPromises.delete(t.id),(0,Oe.isNullable)(c)||(0,Oe.isNullable)(l))return;u&&this.parsedInitData.set(t.id,u);let d=this.getActualLiveStartingSegments(t.segmentReference);this.segments.has(t.id)||this.segments.set(t.id,d);let p=c.buffer.slice(c.byteOffset,c.byteOffset+c.byteLength);this.initData.set(t.id,p),this.failedDownloads=0}catch(n){r&&this.error$.next({id:"LoadInits",category:Oe.ErrorCategory.WTF,message:"loadInit threw",thrown:n})}}getActualLiveStartingSegments(t){let i=t.segments,r=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,a=[],n=0,o=i.length-1;do a.unshift(i[o]),n+=i[o].time.to-i[o].time.from,o--;while(n<r&&o>=0);return this.liveInitialAdditionalOffset=n-r,this.isActiveLowLatency()?[a[0]]:a}};var Es=class{static getBufferManager(e,t,i,r){var a;return(a=r.manifest)!=null&&a.live?new ko(e,t,i,r):_e(i[0].segmentReference)?new Wr(e,t,i,r):new Po(e,t,i,r)}};var Ye=require("@vkontakte/videoplayer-shared/es2018");var Pi=require("@vkontakte/videoplayer-shared/es2018");var G$=18,Cy=!1;try{Cy=j.browser.isSafari&&!!j.browser.safariVersion&&j.browser.safariVersion<=G$}catch(s){console.error(s)}var Bl=class{constructor(e,t=!1){this.bufferFull$=new Pi.Subject;this.error$=new Pi.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.isAbortFixEnabled=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null,this.isAbortFixEnabled&&this.queue.shift()}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:Pi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.isAbortFixEnabled=t,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})}async abort(e){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};Cy&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:a}of this.queue)a(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.isAbortFixEnabled?this.queue[0]:this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(a){a instanceof DOMException&&a.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):a instanceof DOMException&&a.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:Pi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:a}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,Pi.assertNever)(t)}}},Dy=Bl;var ki=(s,e)=>{let t=0;for(let i=0;i<s.length;i++){let r=s.start(i)*1e3,a=s.end(i)*1e3;r<=e&&e<=a&&(t=a)}return Math.max(t-e,0)};var ws=class{constructor(e){this.error$=new Ye.Subject;this.subscription=new Ye.Subscription;this.mediaSource=e}init(e,t,i=!1){this.sourceBuffer=this.mediaSource.addSourceBuffer(`${e}; codecs="${t}"`),this.sourceBufferTaskQueue=new Dy(this.sourceBuffer,i),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(r=>this.error$.next(r))),this.subscription.add((0,Ye.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:Ye.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"})))}addInitSegment(e,t){return this.sourceBufferTaskQueue.append(e,t)}append(e,t){return this.sourceBufferTaskQueue.append(e,t)}remove(e,t,i){return this.sourceBufferTaskQueue.remove(e,t,i)}async clear(e){let t=this.getBufferState();if((0,Ye.isNullable)(t))return Promise.resolve(!1);let i=!0;await this.sourceBufferTaskQueue.abort();for(let r of t)i&&(i=await this.sourceBufferTaskQueue.remove(r.from,r.to,e));return i}warmUpMediaSource(){!(0,Ye.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}getBufferState(){if((0,Ye.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length)return null;let e=[];for(let t=0;t<this.sourceBuffer.buffered.length;t++)e.push({from:this.sourceBuffer.buffered.start(t)*1e3,to:this.sourceBuffer.buffered.end(t)*1e3});return e}getForwardBufferDuration(e){return(0,Ye.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,Ye.isNullable)(e)?0:ki(this.sourceBuffer.buffered,e)}async abortBuffer(e){return(0,Ye.isNullable)(this.sourceBuffer)?!1:this.sourceBufferTaskQueue.abort(e)}destroy(){var e;if(this.subscription.unsubscribe(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}this.sourceBuffer=null}};var Ao=(s,e)=>{s.video.forEach(t=>{t.representations.forEach(i=>{var c;let{height:r,codecs:a,fps:n}=i,o=(c=e.find(([l,d,p])=>l===`${r}p`&&Ei(a)===p))==null?void 0:c[1],u=By(o)&&By(n)&&n>o;i.tvDisabled=u})})};function By(s){return typeof s=="number"&&Number.isInteger(s)}var Y$=["timeupdate","progress","play","seeked","stalled","waiting"],Vy=["timeupdate","progress","loadeddata","playing","seeked"],Qr=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.bufferManagers=[];this.nativeBufferManagers=[];this.subscription=new I.Subscription;this.subscriptionRemovable=new I.SubscriptionRemovable;this.representationSubscription=new I.Subscription;this.forceEnded$=new I.Subject;this.destroyController=new ye;this.state$=new ae("none");this.currentVideoRepresentation$=new I.ValueSubject(void 0);this.currentVideoRepresentationInit$=new I.ValueSubject(void 0);this.currentAudioRepresentation$=new I.ValueSubject(void 0);this.currentVideoSegmentLength$=new I.ValueSubject(0);this.currentAudioSegmentLength$=new I.ValueSubject(0);this.error$=new I.Subject;this.manifestRequested=new I.Subject;this.manifestReceived=new I.Subject;this.firstBytesRequested=new I.Subject;this.firstBytesReceived=new I.Subject;this.lastConnectionType$=new I.ValueSubject(void 0);this.lastConnectionReused$=new I.ValueSubject(void 0);this.lastRequestFirstBytes$=new I.ValueSubject(void 0);this.lastConnectionMetrics$=new I.ValueSubject(void 0);this.lastDownloadMetrics$=new I.ValueSubject(void 0);this.currentLiveTextRepresentation$=new I.ValueSubject(null);this.isLive$=new I.ValueSubject(!1);this.isActiveLive$=new I.ValueSubject(!1);this.isLowLatency$=new I.ValueSubject(!1);this.liveDuration$=new I.ValueSubject(0);this.liveSeekableDuration$=new I.ValueSubject(0);this.liveAvailabilityStartTime$=new I.ValueSubject(0);this.liveStreamStatus$=new I.ValueSubject(void 0);this.currentBuffer$=new I.ValueSubject({from:0,to:0});this.bufferLength$=new I.ValueSubject(0);this.nativeBufferLength$=new I.ValueSubject(0);this.liveLatency$=new I.ValueSubject(void 0);this.liveLoadBufferLength$=new I.ValueSubject(0);this.livePositionFromPlayer$=new I.ValueSubject(0);this.currentStallDuration$=new I.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new I.ValueSubject(0);this.fetcherRecoverableError$=new I.Subject;this.fetcherError$=new I.Subject;this.initRepresentations=(0,I.abortable)(this.destroyController.signal,async function*(e,t,i){var a;this.tracer.log("initRepresentationsStart",(0,I.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,getCurrentStallDuration:()=>this.currentStallDuration$.getValue(),isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest};this.createBuffers(r,e,t,i),this.initRepresentationSubscriptions(),yield this.waitStreamToOpen(),this.setSourceDuration(),(0,I.assertNonNullable)(this.videoBufferManager),yield Promise.all([this.videoBufferManager.startWith(e),t?(a=this.audioBufferManager)==null?void 0:a.startWith(t):Promise.resolve()]),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.fetchManifest=(0,I.abortable)(this.destroyController.signal,async function*(){try{return yield this.fetcher.fetchManifest(this.manifestUrlString)}catch(e){(0,I.isNullable)(this.manifest)&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:I.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:e})}}.bind(this));this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new bo({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.initTracerSubscription()}async initManifest(e,t,i){var r;this.tracer.log("initManifest"),this.state$.startTransitionTo("manifest_ready"),this.element=e,this.manifestUrlString=this.prepareManifestUrlString(t,i),this.manifest=await this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:I.ErrorCategory.PARSER,message:"No playable video representations"})}initBuffer(){var t,i;(0,I.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,I.merge)(...Y$.map(r=>(0,I.fromEvent)(this.element,r)),(0,I.fromEvent)((0,I.getWindow)(),"online"),(0,I.interval)(this.tuning.dash.tickMaintainInterval)).subscribe(()=>this.tick(),r=>this.error$.next({id:"DashVKPlayer",category:I.ErrorCategory.WTF,message:"Internal logic error",thrown:r})));let e=[...(i=(t=this.source)==null?void 0:t.activeSourceBuffers)!=null?i:[]];this.subscription.add((0,I.merge)(...e.map(r=>(0,I.fromEvent)(r,"updateend"))).subscribe(r=>this.reinitDecoderIfNeeded())),this.subscription.add((0,I.fromEvent)(this.element,"waiting").subscribe(r=>{this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=(0,I.interval)(this.tuning.dash.stallWatchdogInterval).subscribe(()=>this.stallWatchdogIntervalCallback(),a=>this.error$.next({id:"StallWatchdogCallback",category:I.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:a})),this.subscriptionRemovable.add(this.stallWatchdogSubscription)}))}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return r==null?void 0:r.switchTo(t,i)}async seek(e,t=!1){var r,a,n,o,u;(0,I.assertNonNullable)(this.element),(0,I.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(a=this.audioBufferManager)==null?void 0:a.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),this.element.currentTime=i/1e3,j.browser.isSafari?(await((o=this.audioBufferManager)==null?void 0:o.seek(i)),await this.videoBufferManager.seek(i)):(await this.videoBufferManager.seek(i),await((u=this.audioBufferManager)==null?void 0:u.seek(i))),this.tracer.log("seek",(0,I.flattenObject)({requestedPosition:e,forcePrecise:t,position:i}))}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){(0,I.isNonNullable)(this.element)&&(0,I.isNonNullable)(this.source)&&(0,I.isNonNullable)(e)&&this.isStreamEnded&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.nativeBufferManagers.forEach(i=>i.warmUpMediaSource())}calculateDurationFromSegments(e){var t,i;return Math.max(((t=this.videoBufferManager)==null?void 0:t.calculateDurationFromSegments(e))||0,((i=this.audioBufferManager)==null?void 0:i.calculateDurationFromSegments(e))||0)}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}getCodecs(){var e;return(e=this.manifest)==null?void 0:e.codecs}setBufferTarget(e){this.bufferManagers.forEach(t=>t.setTarget(e))}setPreloadOnly(e){this.bufferManagers.forEach(t=>t.setPreloadOnly(e))}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.nativeBufferManagers.forEach(r=>r.destroy()),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}destroy(){this.subscription.unsubscribe(),this.subscriptionRemovable.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&(0,I.getWindow)().clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),(0,I.isNonNullable)(this.source)&&this.isStreamNotOpen&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}get isStreamNotOpen(){var e;return((e=this.source)==null?void 0:e.readyState)!=="open"}async reinitDecoderIfNeeded(e=!1){var r,a;let t=(a=(r=this.videoNativeBufferManager)==null?void 0:r.getBufferState())!=null?a:[];if((0,I.isNullable)(this.element)||!t.length)return;let i=this.element.currentTime*1e3;this.element.readyState<3&&t.some(n=>i>=n.from&&i<=n.to)&&(e?await this.seek(i):this.element.currentTime=this.element.currentTime)}async stallWatchdogIntervalCallback(){(0,I.assertNonNullable)(this.element),(0,I.assertNonNullable)(this.source);let{stallWatchdogInterval:e}=this.tuning.dash;if(this.isStreamNotOpen)return;let t=this.currentStallDuration$.getValue()+e;this.currentStallDuration$.next(t);let i={timeInWaiting:t};if(await this.reinitDecoderIfNeeded(t%1e3===0),this.isStallExceeded(t)){if(this.tuning.dash.useNewStallExitPolicy)return this.seek(this.element.currentTime*1e3);throw new Error(`Stall timeout exceeded: ${t} ms`)}await this.restoreAfterDeepStall(i),this.tracer.log("stallIntervalCallback",(0,I.flattenObject)(i))}isStallExceeded(e){var p,h,m,b,S,v,y,x;let{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:i}=this.tuning.dash,r=(0,I.now)(),a=100,n=(h=(p=this.videoBufferManager)==null?void 0:p.lastDataObtainedTimestamp)!=null?h:0;this.videoLastDataObtainedTimestamp$.next(n);let o=(b=(m=this.audioBufferManager)==null?void 0:m.lastDataObtainedTimestamp)!=null?b:0,u=(v=(S=this.videoBufferManager)==null?void 0:S.getForwardPlaybackBufferDuration())!=null?v:0,c=(x=(y=this.audioBufferManager)==null?void 0:y.getForwardPlaybackBufferDuration())!=null?x:0,l=(0,I.isNonNullable)(this.videoBufferManager)&&u<a&&r-n>i,d=(0,I.isNonNullable)(this.audioBufferManager)&&c<a&&r-o>i;return(l||d)&&e>i||e>=t}async updateManifest(){this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=await this.fetchManifest();if((0,I.isNullable)(e))return null;let t=this.parseManifest(e);if(!t)return null;let i=this.getResultManifest(t);return this.tracer.log("updateManifestEnd",(0,I.flattenObject)(i)),i}parseManifest(e){var t;try{return So(e!=null?e:"",this.manifestUrlString)}catch(i){let r=(t=ho(e))!=null?t:{id:"ManifestParsing",category:I.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:i};this.error$.next(r)}}getResultManifest(e){let t={text:e.streams.text,video:[],audio:[]},i=(o,u,c)=>{var l,d,p,h;return!!((d=(l=this.element)==null?void 0:l.canPlayType)!=null&&d.call(l,u)&&((h=(p=ut())==null?void 0:p.isTypeSupported)!=null&&h.call(p,`${u}; codecs="${c}"`))||o==="text")},r,a;for(let o of["video","audio"]){let c=e.streams[o].filter(({mime:d,codecs:p})=>i(o,d,p));t[o]=c;let l;if(this.tuning.dash.codecsPrioritizeEnabled){let d=c.map(({codecs:p})=>p);o==="audio"&&(a=wo(d),l=a[0]),o==="video"&&(r=Eo(d),this.forceVideoCodec&&(0,_y.default)(r,this.forceVideoCodec)?l=this.forceVideoCodec:l=r[0]),l&&(t[o]=c.filter(({codecs:p})=>Ei(p)===l))}else{let d=new Set(c.map(({codecs:p})=>p));l=Io(d),l&&(t[o]=c.filter(({codecs:p})=>p.startsWith(l)))}if(o==="video"){let d=this.tuning.preferHDR,p=t.video.some(b=>b.hdr),h=t.video.some(b=>!b.hdr);j.display.isHDR&&d&&p?t.video=t.video.filter(b=>b.hdr):h&&(t.video=t.video.filter(b=>!b.hdr));let{videoStreamRepresentaionsFilter:m}=this.tuning.dash;m.length&&Ao(t,m)}}let n={...e,streams:t};return this.tuning.dash.codecsPrioritizeEnabled&&(n.codecs={video:r,audio:a}),n}stopStallWatchdogSubscription(){var e;(e=this.stallWatchdogSubscription)==null||e.unsubscribe(),this.currentStallDuration$.next(0)}createBuffers(e,t,i,r){(0,I.assertNonNullable)(this.manifest),(0,I.assertNonNullable)(this.element);let a=c=>{this.representationSubscription.add((0,I.fromEvent)(c,"error").pipe((0,I.filter)(l=>{var d;return!!((d=this.element)!=null&&d.played.length)})).subscribe(l=>{this.error$.next({id:"VideoSource",category:I.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:l})}))};this.source=vn();let n=(0,I.getWindow)().document,o=n.createElement("source");if(a(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),xr())if(r){let c=n.createElement("source");a(c),c.type="application/x-mpegurl",c.src=r.url,this.element.appendChild(c)}else this.element.disableRemotePlayback=!0;let u=this.manifest.streams.video.reduce((c,l)=>[...c,...l.representations],[]);if(this.videoNativeBufferManager=new ws(this.source),this.videoBufferManager=Es.getBufferManager("video",this.videoNativeBufferManager,u,e),this.bufferManagers=[this.videoBufferManager],this.nativeBufferManagers=[this.videoNativeBufferManager],(0,I.isNonNullable)(i)){this.audioNativeBufferManager=new ws(this.source);let c=this.manifest.streams.audio.reduce((l,d)=>[...l,...d.representations],[]);this.audioBufferManager=Es.getBufferManager("audio",this.audioNativeBufferManager,c,e),this.bufferManagers.push(this.audioBufferManager),this.nativeBufferManagers.push(this.audioNativeBufferManager)}}async waitStreamToOpen(){if(this.isStreamNotOpen){let e=this.tuning.dash.sourceOpenTimeout>=0;await new Promise(t=>{var i;e&&(this.timeoutSourceOpenId=(0,I.getWindow)().setTimeout(()=>{if(this.isStreamNotOpen){t();return}this.error$.next({id:"OpenOfStream",category:I.ErrorCategory.VIDEO_PIPELINE,message:"Failed to open MediaSource",thrown:new Error("Timeout reject when wait sourceopen event"),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),(i=this.source)==null||i.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&(0,I.getWindow)().clearTimeout(this.timeoutSourceOpenId),t()},{once:!0})})}}initRepresentationSubscriptions(){this.representationSubscription.add(this.fetcher.manifestRequested.subscribe(this.manifestRequested)),this.representationSubscription.add(this.fetcher.manifestReceived.subscribe(this.manifestReceived)),this.representationSubscription.add(this.fetcher.firstBytesRequested.subscribe(this.firstBytesRequested)),this.representationSubscription.add(this.fetcher.firstBytesReceived.subscribe(this.firstBytesReceived)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add(this.fetcher.lastConnectionMetrics$.subscribe(this.lastConnectionMetrics$)),this.representationSubscription.add(this.fetcher.lastDownloadMetrics$.subscribe(this.lastDownloadMetrics$)),this.representationSubscription.add((0,I.merge)(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),(0,I.assertNonNullable)(this.videoBufferManager),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.initBufferLengthSubscription()}initBufferLengthSubscription(){this.representationSubscription.add((0,I.merge)(...Vy.map(e=>(0,I.fromEvent)(this.element,e))).pipe((0,I.map)(e=>{var t;return(t=this.videoBufferManager)==null?void 0:t.getPlaybackBufferState()}),(0,I.filter)(I.isNonNullable),(0,I.map)(({from:e,to:t})=>({from:e/1e3,to:t/1e3}))).subscribe(this.currentBuffer$)),this.representationSubscription.add((0,I.merge)(...Vy.map(e=>(0,I.fromEvent)(this.element,e))).pipe((0,I.map)(e=>{var t,i,r,a,n,o;return Math.min((i=(t=this.videoBufferManager)==null?void 0:t.getForwardPlaybackBufferDuration())!=null?i:0,(a=(r=this.audioBufferManager)==null?void 0:r.getForwardPlaybackBufferDuration())!=null?a:0,(o=(n=this.audioBufferManager)==null?void 0:n.getForwardPlaybackBufferDuration())!=null?o:0)}),(0,I.filterChanged)()).subscribe(this.bufferLength$)),this.representationSubscription.add(this.nativeBufferLength$.pipe((0,I.filter)(e=>e>this.tuning.dash.bufferEmptinessTolerance)).subscribe(e=>this.stopStallWatchdogSubscription()))}initTracerSubscription(){let e=(0,I.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}async tick(){var r,a,n;if((0,I.isNullable)(this.element)||(0,I.isNullable)(this.videoBufferManager)||this.isStreamNotOpen)return;let e=this.element.currentTime*1e3,i=((a=(r=this.videoNativeBufferManager)==null?void 0:r.getBufferState())!=null?a:[]).find(o=>e>=o.from&&e<=o.to);this.nativeBufferLength$.next(i?i.to-e:0),await this.videoBufferManager.maintain(e),await((n=this.audioBufferManager)==null?void 0:n.maintain(e))}};var fe=require("@vkontakte/videoplayer-shared/es2018");var Ro=class extends Qr{constructor(e){super(e)}prepareManifestUrlString(e,t){return e}initRepresentationSubscriptions(){super.initRepresentationSubscriptions(),this.initDisableStallWatchdogSubscription(),this.initEndOfVideoSubscription()}setSourceDuration(){var t;(0,fe.assertNonNullable)(this.manifest),(0,fe.assertNonNullable)(this.source);let e=[(t=this.manifest.duration)!=null?t:0,...(0,Vl.default)((0,Vl.default)([...this.manifest.streams.audio,...this.manifest.streams.video],i=>i.representations),i=>{let r=[];return i.duration&&r.push(i.duration),_e(i.segmentReference)&&i.segmentReference.totalSegmentsDurationMs&&r.push(i.segmentReference.totalSegmentsDurationMs),r})];this.source.duration=Math.max(...e)/1e3}async restoreAfterDeepStall(e){var i,r;(0,fe.assertNonNullable)(this.element);let t=this.element.currentTime*1e3;await Promise.all([(i=this.videoBufferManager)==null?void 0:i.maintain(t),(r=this.audioBufferManager)==null?void 0:r.maintain(t)]),e.position=t}initDisableStallWatchdogSubscription(){(0,fe.assertNonNullable)(this.element);let e=(0,fe.merge)((0,fe.fromEvent)(this.element,"ended"),this.forceEnded$),t=this.nativeBufferLength$.pipe((0,fe.filter)(i=>i>this.tuning.dash.bufferEmptinessTolerance));this.representationSubscription.add((0,fe.merge)(e,t).subscribe(i=>this.stopStallWatchdogSubscription()))}initEndOfVideoSubscription(){let e=(0,fe.merge)(...this.bufferManagers.map(a=>a.fullyBuffered$)).pipe((0,fe.map)(()=>this.bufferManagers.every(a=>a.fullyBuffered$.getValue()))),t=(0,fe.merge)(...this.bufferManagers.map(a=>a.onLastSegment$)).pipe((0,fe.map)(()=>this.bufferManagers.some(a=>a.onLastSegment$.getValue()))),i=(0,fe.combine)({allBuffersFull:e,someBufferEnded:t}).pipe((0,fe.filterChanged)(),(0,fe.map)(({allBuffersFull:a,someBufferEnded:n})=>a&&n),(0,fe.filter)(a=>a)),r=()=>{var a;try{(a=this.source)==null||a.endOfStream()}catch(n){this.error$.next({id:"EndOfStream",category:fe.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:n})}};this.representationSubscription.add((0,fe.merge)(this.forceEnded$,i).pipe((0,fe.filter)(a=>(0,fe.isNonNullable)(this.source)&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(n=>!n.updating))).subscribe(r))}};var xs=class extends Zi{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i,genericErrorListener:r}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,zr.filterChanged)(),(0,zr.filter)(a=>(0,zr.isNonNullable)(a))).subscribe(a=>{let n=this.player.calculateDurationFromSegments(a);n&&this.params.output.duration$.next(n/1e3)},r))}getPlayer(){return new Ro({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec})}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var be=require("@vkontakte/videoplayer-shared/es2018");var Ps=require("@vkontakte/videoplayer-shared/es2018"),Ai=class{constructor(e){this.prevReported=void 0;this.pastMeasures=[];this.takenMeasures=0;this.measuresCursor=0;var i;this.params=e,this.pastMeasures=Array(e.deviationDepth),this.smoothed=this.prevReported=e.initial,this.smoothed$=new Ps.ValueSubject(e.initial),this.debounced$=new Ps.ValueSubject(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new ze(`raw_${t}`),this.smoothedSeries$=new ze(`smoothed_${t}`),this.reportedSeries$=new ze(`reported_${t}`),this.rawSeries$.next(e.initial),this.smoothedSeries$.next(e.initial),this.reportedSeries$.next(e.initial)}next(e){let t=0,i=0;for(let o=0;o<this.pastMeasures.length;o++)this.pastMeasures[o]!==void 0&&(t+=(this.pastMeasures[o]-this.smoothed)**2,i++);this.takenMeasures=i,t/=i;let r=Math.sqrt(t),a=this.smoothed+this.params.deviationFactor*r,n=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>a||this.smoothed<n)&&((0,Ps.isNullable)(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed),this.reportedSeries$.next(this.smoothed))}};var Mo=class extends Ai{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Jt(this.slow,e,this.params.emaAlphaSlow),this.fast=Jt(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var $o=class extends Ai{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=ll(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Jt(this.emaSmoothed,e,this.params.emaAlpha);let i=Lv(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var Lo=class extends Ai{constructor(t){super(t);this.furtherValues=[];this.currentTopExtremumValue=0;this.extremumInterval=t.extremumInterval}next(t){this.currentTopExtremumValue<=t?(this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=t,this.furtherValues=[]):this.furtherValues.push(t)}updateSmoothedValue(t){this.smoothed=this.smoothed?Jt(this.smoothed,t,this.params.emaAlpha):t}};var ti=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new Mo({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new $o({initial:e,emaAlpha:i.emaAlpha,basisTrendChangeCount:i.basisTrendChangeCount,changeThreshold:i.changeThreshold,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"})}static getLiveBufferSmoothedValue(e,t){return new Lo({initial:e,label:"liveEdgeDelay",...t})}};var Y=require("@vkontakte/videoplayer-shared/es2018");var Gr=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};var Co=require("@vkontakte/videoplayer-shared/es2018");var ks=class s{constructor(e,t){this.currentRepresentation$=new Co.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!(0,Co.isNullable)(e))for(let i of this.representations)for(let r of i){let a=r.segmentReference,n=a.segments.length,o=a.segments[0].time.from,u=a.segments[n-1].time.to;if(e<o||e>u)continue;let c=a.segments.find(l=>l.time.from<=e&&l.time.to>=e);!c||((t=this.currentSegment)==null?void 0:t.time.from)===c.time.from&&this.currentSegment.time.to===c.time.to||(this.currentSegment=c,this.currentRepresentation$.next({...r,label:"Live Text",language:"ru",isAuto:!0,url:new URL(c.url,a.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?e:[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!(e!=null&&e.some(t=>s.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&_e(t.segmentReference))}};var Do=class extends Qr{constructor(t){super(t);this.liveStreamEndTimestamp=0;this.liveWasInterrupted=!1;this.liveBuffer=ti.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...t.tuning.dashCmafLive.lowLatency.bufferEstimator})}async seek(t){(0,Y.assertNonNullable)(this.element),this.updateManifestUrlWithTimeOffset(t),this.manifest=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()}initBuffer(){super.initBuffer(),this.forcePositionToRepresentationInitialTime()}async forcePositionToRepresentationInitialTime(){var r;let t=this.videoBufferManager,i=(r=t==null?void 0:t.getRepresentationInitialTime())!=null?r:0;await super.seek(i,!1)}async tick(){var i,r,a;await super.tick();let t=((r=(i=this.element)==null?void 0:i.currentTime)!=null?r:0)*1e3;(a=this.liveTextManager)==null||a.maintain(t)}setSourceDuration(){(0,Y.assertNonNullable)(this.source),this.source.duration=Number.MAX_SAFE_INTEGER}isStallExceeded(t){let{keepSilentStallWatchdogWhenNotActive:i}=this.tuning.dashCmafLive,a=this.liveStreamStatus$.getValue()==="active";return(!i||a)&&super.isStallExceeded(t)}async restoreAfterDeepStall(t){let{liveStallReinitInterval:i}=this.tuning.dash,{keepSilentStallWatchdogWhenNotActive:r}=this.tuning.dashCmafLive,a=this.currentStallDuration$.getValue(),o=this.liveStreamStatus$.getValue()==="active";if(a%i===0){let u=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);t.liveLastOffset=u,!o&&r?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(u),this.manifest=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()):this.seek(u).catch(c=>{this.error$.next({id:"stallIntervalCallback",category:Y.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:c})})}}async updateManifest(){var l,d;let t=await super.updateManifest();if((0,Y.isNullable)(t))return null;if((0,Y.isNullable)(t.live))return this.error$.next({id:"ManifestParsing",category:Y.ErrorCategory.PARSER,message:"MPD doesnt contain live section for live stream"}),null;this.isLive$.next(!0);let{availabilityStartTime:i,latestSegmentPublishTime:r,streamIsUnpublished:a,streamIsAlive:n}=t.live,o=((l=t.duration)!=null?l:0)/1e3;this.liveSeekableDuration$.next(-1*o),this.liveDuration$.next((r-i)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let u="active";if(n||(u=a?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(u),this.bufferManagers.forEach(p=>p.updateManifest(t)),(d=this.liveTextManager)==null||d.updateLive(t),n&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let p=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seek(p).catch(h=>{this.error$.next({id:"updateManifest",category:Y.ErrorCategory.VIDEO_PIPELINE,message:"seekLive after stream restore failed",thrown:h})})}return t}prepareManifestUrlString(t,i){return Ae(t,i,2)}updateManifestUrlWithTimeOffset(t){let i=this.liveStreamStatus$.getValue()!=="active"?(0,Y.now)()-this.liveStreamEndTimestamp:0,r=this.normalizeLiveOffset(t+i);this.isActiveLive$.next(r===0),this.manifestUrlString=Ae(this.manifestUrlString,r,2)}createBuffers(t,i,r,a){(0,Y.assertNonNullable)(this.manifest),super.createBuffers(t,i,r,a),ks.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new ks(this.manifest.streams.text,t))}initRepresentationSubscriptions(){(0,Y.assertNonNullable)(this.element),(0,Y.assertNonNullable)(this.videoBufferManager),this.isActiveLive$.next(this.isLive$.getValue()),super.initRepresentationSubscriptions();let t=this.videoBufferManager,i=this.bufferManagers;this.initStreamDurationOnPauseSubscription(),this.initLiveChangePlaybackRateSubscriptions(),this.initLiveDurationSubscriptions(t),this.initLiveBufferInfoSubscriptions(t,i),this.initLiveMaintainSubscription(i),(0,Y.isNonNullable)(this.liveTextManager)&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$))}initStreamDurationOnPauseSubscription(){(0,Y.assertNonNullable)(this.element);let{liveUpdateInterval:t}=this.tuning.dash,i=()=>(0,Y.interval)(t).subscribe(async r=>{let a=pi(this.manifestUrlString,2);this.manifestUrlString=Ae(this.manifestUrlString,a+t,2),this.liveStreamStatus$.getValue()==="active"&&(this.manifest=await this.updateManifest())});this.representationSubscription.add((0,Y.fromEvent)(this.element,"pause").subscribe(r=>{this.livePauseWatchdogSubscription=i(),this.representationSubscription.add(this.livePauseWatchdogSubscription)})),this.representationSubscription.add((0,Y.fromEvent)(this.element,"play").subscribe(r=>{var a;return(a=this.livePauseWatchdogSubscription)==null?void 0:a.unsubscribe()}))}initLiveDurationSubscriptions(t){this.representationSubscription.add(this.liveDuration$.pipe((0,Y.filterChanged)()).subscribe(i=>this.liveStreamEndTimestamp=(0,Y.now)())),this.representationSubscription.add(t.currentLowLatencySegmentLength$.subscribe(i=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!i)return;let r=this.liveSeekableDuration$.getValue()-i/1e3;this.liveSeekableDuration$.next(Math.max(r,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+i/1e3)}))}initLiveChangePlaybackRateSubscriptions(){this.representationSubscription.add((0,Y.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,Y.map)(({isActiveLive:t,isLowLatency:i})=>t&&i),(0,Y.filterChanged)(),(0,Y.filter)(t=>!this.isManualDecreasePlaybackInLive())).subscribe(t=>Gr(this.element,1))),this.representationSubscription.add((0,Y.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,Y.filter)(t=>!this.isManualDecreasePlaybackInLive())).subscribe(({liveBuffer:t,isActiveLive:i,isLowLatency:r})=>{if(!r||!i)return;let a=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,n=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,o=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,u=t-a,c=1;Math.abs(u)>n&&(c=1+Math.sign(u)*o),Gr(this.element,c)}))}initLiveBufferInfoSubscriptions(t,i){this.representationSubscription.add((0,Y.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,Y.filter)(({bufferLength:r,isActiveLive:a,isLowLatency:n})=>a&&n&&!!r),(0,Y.map)(({bufferLength:r})=>r)).subscribe(this.liveBuffer)),this.representationSubscription.add(this.bufferLength$.subscribe(r=>{var n,o;let a=0;if(r){let u=((o=(n=this.element)==null?void 0:n.currentTime)!=null?o:0)*1e3;a=Math.min(...i.map(l=>{var d,p;return(p=(d=l.getLiveSegmentsToLoadState(this.manifest))==null?void 0:d.to)!=null?p:u}))-u}this.liveLoadBufferLength$.getValue()!==a&&this.liveLoadBufferLength$.next(a)})),this.representationSubscription.add((0,Y.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:t.currentLiveSegmentServerLatency$}).pipe((0,Y.filter)(({isLive:r})=>r),(0,Y.filterChanged)((r,a)=>a.bufferLength<r.bufferLength),(0,Y.map)(({rtt:r,bufferLength:a,segmentServerLatency:n})=>{let o=pi(this.manifestUrlString,2);return(r/2+a+n+o)/1e3})).subscribe(this.liveLatency$))}initLiveMaintainSubscription(t){let i=0;this.representationSubscription.add((0,Y.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,Y.throttle)(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:r,bufferLength:a})=>{(0,Y.assertNonNullable)(this.element);let n=this.element.playbackRate,o=pi(this.manifestUrlString,2),u=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,c=Math.min(u,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*n),l=this.tuning.dashCmafLive.normalizedActualBufferOffset*n,d=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*n,p=isFinite(r)?r:a,h=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),m=u<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(m);let b="none";if(h?b="active_low_latency":this.isLowLatency$.getValue()&&m?(t.forEach(S=>S.proceedLowLatencyLive()),b="active_low_latency"):o!==0&&p<c?b="live_forward_buffering":p<c+d&&(b="live_with_target_offset"),isFinite(r)&&(i=r>i?r:i),b==="live_forward_buffering"||b==="live_with_target_offset"){let S=i-(c+l),v=this.normalizeLiveOffset(Math.trunc(o+S/n)),y=Math.abs(v-o),x=0;!r||y<=this.tuning.dashCmafLive.offsetCalculationError?x=o:v>0&&y>this.tuning.dashCmafLive.offsetCalculationError&&(x=v),this.manifestUrlString=Ae(this.manifestUrlString,x,2)}(b==="live_with_target_offset"||b==="live_forward_buffering")&&(i=0,this.manifest=await this.updateManifest())},r=>{this.error$.next({id:"updateLive",category:Y.ErrorCategory.VIDEO_PIPELINE,thrown:r,message:"Failed to update live with subscription"})}))}isManualDecreasePlaybackInLive(){if(!this.element||!this.isLive$.getValue())return!1;let t=1-this.element.playbackRate;return Number(t.toFixed(2))>Number(this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup.toFixed(2))}normalizeLiveOffset(t){return Math.trunc(t/1e3)*1e3}};var Yr=class extends Zi{constructor(e){super(e),this.textTracksManager.destroy()}getPlayer(){return new Do({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec})}subscribe(){super.subscribe();let e=!1,t=-1,{output:i,observableVideo:r,desiredState:a,connect:n}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canPlayLiveTailBuffer$.next(!0);let o=new be.ValueSubject(1);n(r.playbackRateState$,o),n(r.timeUpdate$,i.liveBufferTime$),n(this.player.liveSeekableDuration$,i.duration$),n(this.player.liveLatency$,i.liveLatency$),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe((0,be.filterChanged)()).subscribe(u=>{let c=i.position$.getValue(),l=i.volume$.getValue(),d=!l.volume||l.muted;!u&&!c&&d?e=!0:u&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(a.isLowLatency.stateChangeEnded$.pipe((0,be.map)(u=>u.to)).subscribe(this.player.isLowLatency$)).add((0,be.combine)({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,be.map)(({liveBufferTime:u,liveAvailabilityStartTime:c})=>u&&c?u+c:void 0)).subscribe(i.liveTime$)).add((0,be.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,be.merge)(r.playbackRateState$,new be.ValueSubject(1))}).pipe((0,be.filter)(({liveStreamStatus:u,liveDuration:c})=>u==="active"&&!!c)).subscribe(({liveDuration:u,playbackRate:c})=>{let l=i.liveBufferTime$.getValue(),d=i.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;d||c<1-p||this.video.paused||(0,be.isNullable)(l)||(t=u-l)})).add((0,be.combine)({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,be.merge)(r.playbackRateState$,new be.ValueSubject(1))}).pipe((0,be.filterChanged)((u,c)=>this.player.liveStreamStatus$.getValue()==="active"?u.liveDuration===c.liveDuration:u.time===c.time)).subscribe(({time:u,liveDuration:c,playbackRate:l})=>{let d=i.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-p||(0,be.isNullable)(u)||(0,be.isNullable)(c))return;let h=-1*(c-u-t);i.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(u=>{if(u){let c=Rv(u);this.params.output.availableTextTracks$.next([c])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe((0,be.filter)(u=>(0,be.isNonNullable)(u))).subscribe(u=>i.isLiveEnded$.next(u==="unpublished"&&i.position$.getValue()===0)))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seek(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var W=require("@vkontakte/videoplayer-shared/es2018");var qy=G(Xe(),1),Nl=G(Wa(),1);var Ri=(s,e,t=0)=>{for(let i=0;i<s.length;i++)if(s.start(i)*1e3-t<=e&&s.end(i)*1e3+t>e)return!0;return!1};var T=require("@vkontakte/videoplayer-shared/es2018");var Bo=G(Xe(),1),or=G(bt(),1),Vo=G(Wa(),1);var Uy=G(Wc(),1);var Mi=require("@vkontakte/videoplayer-shared/es2018");var X$=18,Ny=!1;try{Ny=j.browser.isSafari&&!!j.browser.safariVersion&&j.browser.safariVersion<=X$}catch(s){console.error(s)}var _l=class{constructor(e,t=!1){this.bufferFull$=new Mi.Subject;this.error$=new Mi.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!1;this.isAbortFixEnabled=!1;this.completeTask=()=>{var e;try{if(this.currentTask){let t=(e=this.currentTask.signal)==null?void 0:e.aborted;this.currentTask.callback(!t),this.currentTask=null,this.isAbortFixEnabled&&this.queue.shift()}this.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:Mi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,this.isAbortFixEnabled=t,this.buffer.addEventListener("updateend",this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(i=>{let r={operation:"append",data:e,signal:t,callback:i};this.queue.push(r),this.pull()})}async remove(e,t,i){return i&&i.aborted?!1:new Promise(r=>{let a={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(a),this.pull()})}async abort(e){return new Promise(t=>{let i,r=a=>{this.abortRequested=!1,t(a)};Ny&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:a}of this.queue)a(!1);this.abortRequested=!0,i&&(this.queue=[i]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener("updateend",this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name==="InvalidStateError"))throw e}}pull(){var r;if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.isAbortFixEnabled?this.queue[0]:this.queue.shift();if(!e)return;if((r=e.signal)!=null&&r.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(a){a instanceof DOMException&&a.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):a instanceof DOMException&&a.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:Mi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:a}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation==="abort"&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case"append":this.buffer.appendBuffer(e.data);break;case"remove":this.buffer.remove(e.from/1e3,e.to/1e3);break;case"abort":this.buffer.abort();break;case"safariAbort":{this.buffer.abort(),this.buffer.appendBuffer(e.init);break}default:(0,Mi.assertNever)(t)}}},Fy=_l;var Ol=s=>{let e=0;for(let t=0;t<s.length;t++)e+=s.end(t)-s.start(t);return e*1e3};var P=require("@vkontakte/videoplayer-shared/es2018");var As=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:c}){this.currentLiveSegmentServerLatency$=new P.ValueSubject(0);this.currentLowLatencySegmentLength$=new P.ValueSubject(0);this.currentSegmentLength$=new P.ValueSubject(0);this.onLastSegment$=new P.ValueSubject(!1);this.fullyBuffered$=new P.ValueSubject(!1);this.playingRepresentation$=new P.ValueSubject(void 0);this.playingRepresentationInit$=new P.ValueSubject(void 0);this.error$=new P.Subject;this.gaps=[];this.subscription=new P.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ye;this.switchAbortController=new ye;this.destroyAbortController=new ye;this.useSmartRepresentationSwitch=!1;this.bufferLimit=1/0;this.failedDownloads=0;this.baseUrls=[];this.baseUrlsIndex=0;this.isLive=!1;this.liveUpdateSegmentIndex=0;this.liveInitialAdditionalOffset=0;this.isSeekingLive=!1;this.index=0;this.lastDataObtainedTimestampMs=0;this.loadByteRangeSegmentsTimeoutId=0;this.startWith=(0,P.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,P.assertNonNullable)(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new Fy(this.sourceBuffer,this.tuning.dash.useAbortMSEFix),this.subscription.add((0,P.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,P.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:P.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!Se(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Ol(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let c=this.getForwardBufferDuration(o),l=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,c<l).catch(d=>{this.handleAsyncError(d,"pruneBuffer")})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(n=>this.error$.next(n))),yield this.loadInit(t,"high",!0);let i=this.initData.get(t.id),r=this.segments.get(t.id),a=this.parsedInitData.get(t.id);(0,P.assertNonNullable)(i,"No init buffer for starting representation"),(0,P.assertNonNullable)(r,"No segments for starting representation"),i instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(i,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(a))}.bind(this));this.switchTo=(0,P.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,P.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,P.isNullable)(a)||(0,P.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,P.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,P.isNonNullable)(n)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this));this.switchToOld=(0,P.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,P.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,P.isNullable)(a)||(0,P.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,P.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(a,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,P.isNonNullable)(n)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(n,1/0,!0)),this.maintain(n)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this));this.seekLive=(0,P.abortable)(this.destroyAbortController.signal,async function*(e){var u;let t=(0,Vo.default)(e,c=>c.representations);if(!this.downloadingRepresentationId||!t.length)return;this.isSeekingLive=!0;for(let c of this.representations.keys()){let l=t.find(h=>h.id===c);l&&this.representations.set(c,l);let d=this.representations.get(c);if(!d||!dt(d.segmentReference)){this.isSeekingLive=!1;return}let p=this.getActualLiveStartingSegments(d.segmentReference);this.segments.set(d.id,p)}let i=(u=this.switchingToRepresentationId)!=null?u:this.downloadingRepresentationId,r=this.representations.get(i);(0,P.assertNonNullable)(r,`Representation not found by id ${i}`);let a=this.segments.get(i);(0,P.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,P.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer)){this.isSeekingLive=!1;return}let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(a,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));var l;this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(c!=null&&c.live),this.baseUrls=(l=c==null?void 0:c.baseUrls)!=null?l:[],this.initData=new Map(i.map(d=>[d.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(d=>[d.id,d])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!Se(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ye,(0,P.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,P.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,P.isNullable)(o)||(0,P.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,P.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(o,this.downloadAbortController.signal),r)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=i,yield this.dropBuffer();else{let u=this.getCurrentPosition();(0,P.isNonNullable)(u)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(u,1/0,!0)),this.downloadingRepresentationId=i,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!(0,P.isNullable)(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode="segments")}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new ye,this.abortBuffer()}maintain(e=this.getCurrentPosition()){var p;if((0,P.isNullable)(e)||(0,P.isNullable)(this.downloadingRepresentationId)||(0,P.isNullable)(this.playingRepresentationId)||(0,P.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer)||(0,P.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.representations.get(this.playingRepresentationId),r=this.segments.get(this.downloadingRepresentationId),a=this.segments.get(this.playingRepresentationId);if((0,P.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),(0,P.assertNonNullable)(i,`No such representation ${this.playingRepresentationId}`),(0,P.isNullable)(r)||(0,P.isNullable)(a))return;let n=r.find(h=>e>=h.time.from&&e<h.time.to);(0,P.isNonNullable)(n)&&isFinite(n.time.from)&&isFinite(n.time.to)&&this.currentSegmentLength$.next((n==null?void 0:n.time.to)-n.time.from);let o=e,u=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let h=this.getForwardBufferDuration(e),m=xi(i),b=xi(t),S=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useSmartRepresentationSwitch&&(0,P.isNonNullable)(m)&&(0,P.isNonNullable)(b)&&(0,P.isHigher)(m.quality,b.quality),v=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useDelayedRepresentationSwitch;if(S||v?o+=Math.min(h,this.tuning.dash.representationSwitchForwardBufferGap):n&&n.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&h>=n.time.to-e+u&&(o=n?n.time.to+u:-1/0),this.tuning.dash.useNewRepresentationSwitch){let x=(p=[...this.segments.entries()].map(([w,M])=>{let _=M.find(q=>e>=q.time.from&&e<q.time.to);return{representationId:w,status:_==null?void 0:_.status}}).find(w=>w.status==="fed"))==null?void 0:p.representationId;x&&(this.playingRepresentationId=x,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)))}}if(isFinite(this.bufferLimit)&&Ol(this.sourceBuffer.buffered)>=this.bufferLimit){let h=this.getForwardBufferDuration(e),m=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,h<m).catch(b=>{this.handleAsyncError(b,"pruneBuffer")});return}let l=[];if(!this.activeSegments.size&&(l=this.selectForwardBufferSegments(r,t.segmentReference.type,o),l.length)){let h="auto";if(this.tuning.dash.useFetchPriorityHints&&n)if((0,Bo.default)(l,n))h="high";else{let m=(0,or.default)(l,0);m&&m.time.from-n.time.to>=this.forwardBufferTarget/2&&(h="low")}this.loadSegments(l,t,h).catch(m=>{this.handleAsyncError(m,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&n&&n.status==="fed"&&!l.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let d=(0,or.default)(r,-1);!this.isLive&&d&&(this.fullyBuffered$.next(d.time.to-e-this.getForwardBufferDuration(e)<u),this.onLastSegment$.next(e-d.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let a of e)Math.trunc(a.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:a.time.from+r,persistent:!0}),i=a.time.to;(0,P.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration,persistent:!0})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],a=0,n=t.length-1;do r.unshift(t[n]),a+=t[n].time.to-t[n].time.from,n--;while(a<i&&n>=0);return this.liveInitialAdditionalOffset=a-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=e==null?void 0:e.streams[this.kind];if(!t)return;let i=(0,Vo.default)(t,a=>a.representations).find(a=>a.id===this.downloadingRepresentationId);if(!i)return;let r=this.segments.get(i.id);if(r!=null&&r.length)return{from:r[0].time.from,to:r[r.length-1].time.to}}updateLive(e){var i,r,a;if(!e||[...this.segments.values()].every(n=>!n.length))return;let t=(0,Vo.default)(e.streams[this.kind],n=>n.representations);for(let n of t){if(!n||!dt(n.segmentReference))return;let o=n.segmentReference.segments.map(p=>({...p,status:"none",size:void 0})),u=100,c=(i=this.segments.get(n.id))!=null?i:[],l=(a=(r=(0,or.default)(c,-1))==null?void 0:r.time.to)!=null?a:0,d=o==null?void 0:o.findIndex(p=>l>=p.time.from+u&&l<=p.time.to+u);if(d===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(n.segmentReference);this.segments.set(n.id,p)}else{let p=o.slice(d+1);this.segments.set(n.id,[...c,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,P.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&t.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}calculateDurationFromSegments(){var t;if(!this.playingRepresentationId)return 0;let e=this.segments.get(this.playingRepresentationId);return(e?(t=(0,or.default)(e,-1))==null?void 0:t.time.to:0)||0}setSmartRepresentationSwitch(e){this.useSmartRepresentationSwitch=e}updateLowLatencyLiveIfNeeded(e){var i;let t=0;for(let r of this.representations.values()){let a=r.segmentReference;if(!dt(a))return;let n=(i=this.segments.get(r.id))!=null?i:[],o=n.find(c=>Math.floor(c.time.from)===Math.floor(e.time.from));if(o&&!isFinite(o.time.to)&&(o.time.to=e.time.to,t=o.time.to-o.time.from),!!!n.find(c=>Math.floor(c.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let c=Math.round(e.time.to*a.timescale/1e3).toString(10),l=At(a.segmentTemplateUrl,{segmentTime:c});n.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var a,n,o;let t=(n=(a=this.switchingToRepresentationId)!=null?a:this.downloadingRepresentationId)!=null?n:this.playingRepresentationId;if(!t)return;let i=this.segments.get(t);if(!i)return;let r=i.find(u=>u.time.from<=e&&u.time.to>=e);return(o=r==null?void 0:r.time.from)!=null?o:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){var e;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),this.gapDetectionIdleCallback&&rr&&rr(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&rr&&rr(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(t){if(!(t instanceof DOMException&&t.name==="NotFoundError"))throw t}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=i),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,i){let r=this.getForwardBufferDuration(i),a=e.findIndex(({status:p,time:{from:h,to:m}},b)=>{let S=h<=i&&m>=i,v=h>i||S||b===0&&i===0,y=Math.min(this.forwardBufferTarget,this.bufferLimit),x=this.preloadOnly&&h<=i+y||r<y&&m-h>=y||m<=i+y;return(p==="none"||p==="partially_ejected"&&v&&x&&this.sourceBuffer&&Se(this.mediaSource,this.sourceBuffer)&&!(Ri(this.sourceBuffer.buffered,h)&&Ri(this.sourceBuffer.buffered,m)))&&v&&x});if(a===-1)return[];if(t!=="byteRange")return e.slice(a,a+1);let n=e,o=0,u=0,c=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,d=this.preloadOnly?this.forwardBufferTarget:0;for(let p=a;p<n.length&&(o<=l||u<=d);p++){let h=n[p];if(o+=h.byte.to+1-h.byte.from,u+=h.time.to+1-h.time.from,h.status==="none"||h.status==="partially_ejected")c.push(h);else break}return c}async loadSegments(e,t,i="auto"){dt(t.segmentReference)?await this.loadTemplateSegment(e[0],t,i):await this.loadByteRangeSegments(e,t,i)}async loadTemplateSegment(e,t,i="auto"){e.status="downloading";let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:a,url:n,signal:o,onProgress:u,onProgressTasks:c}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,P.abortable)(o,async function*(){let l=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(d=>setTimeout(d,l))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let l=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency(),bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation});if(this.lastDataObtainedTimestampMs=(0,P.now)(),!l)return;let d=new DataView(l),p=nr(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=p.getChunkEndTime(d,b)}u&&r.feedingBytes&&c?await Promise.all(c):await this.sourceBufferTaskQueue.append(d,o);let{serverDataReceivedTimestamp:h,serverDataPreparedTime:m}=p.getServerLatencyTimestamps(d);h&&m&&this.currentLiveSegmentServerLatency$.next(m-h),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(l){this.abortActiveSegments([e]),(0,P.isAbortError)(l)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())dt(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,i="auto"){if(!e.length)return;for(let u of e)u.status="downloading",this.activeSegments.add({segment:u,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:a,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,P.abortable)(n,async function*(){let u=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(c,u),(0,P.fromEvent)(window,"online").pipe((0,P.once)()).subscribe(()=>{c(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(a,{range:r,onProgress:o,signal:n,priority:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}),this.lastDataObtainedTimestampMs=(0,P.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),(0,P.isAbortError)(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(dt(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,or.default)(e,0).byte.from,to:(0,or.default)(e,-1).byte.to},{signal:a}=this.downloadAbortController;return{url:i,range:r,signal:a,onProgress:async(o,u)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,P.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(c){this.error$.next({id:"SegmentFeeding",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}}}prepareTemplateFetchSegmentParams(e,t){if(!dt(t.segmentReference))throw new Error("Representation is not template type");let i=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&i.searchParams.set("low-latency","yes");let r=i.toString(),{signal:a}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(c,l)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,P.now)();let d=this.onSomeTemplateDataLoaded({dataView:c,loaded:l,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(d)}catch(d){this.error$.next({id:"SegmentFeeding",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:d})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Bo.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!Se(this.mediaSource,this.sourceBuffer))return;let n=this.representations.get(t);if(n)for(let o of this.activeSegments){let{segment:u}=o;if(o.representationId===t){if(a.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let c=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),l=nr(n.mime).parseFeedableSegmentChunk(c,this.isLive);l!=null&&l.byteLength&&(u.status="partially_fed",o.feedingBytes+=l.byteLength,await this.sourceBufferTaskQueue.append(l),o.fedBytes+=l.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Se(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:c}=u;if(u.representationId!==t)continue;if(a.aborted){await n();continue}let l=c.byte.from-i,d=c.byte.to-i,p=d-l+1,h=l<r,m=d<=r;if(!h)continue;let b=nr(o.mime);if(c.status==="downloading"&&m){c.status="downloaded";let S=new DataView(e.buffer,e.byteOffset+l,p);await this.sourceBufferTaskQueue.append(S,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(c.status==="downloading"||c.status==="partially_fed")&&(u.loadedBytes=Math.min(p,r-l),u.loadedBytes>u.feedingBytes)){let S=new DataView(e.buffer,e.byteOffset+l+u.feedingBytes,u.loadedBytes-u.feedingBytes),v=u.loadedBytes===p?S:b.parseFeedableSegmentChunk(S);v!=null&&v.byteLength&&(c.status="partially_fed",u.feedingBytes+=v.byteLength,await this.sourceBufferTaskQueue.append(v,a)&&!a.aborted?(u.fedBytes+=v.byteLength,u.fedBytes===p&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){var i;if(!((0,P.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer))){!this.isLive&&j.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(Ri(this.sourceBuffer.buffered,e.segment.time.from,100)&&Ri(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.tuning.dash.useNewRepresentationSwitch||(this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId))),e.segment.status="fed",Cl(e.segment)&&(e.segment.size=e.fedBytes);for(let r of this.representations.values())if(r.id!==t)for(let a of(i=this.segments.get(r.id))!=null?i:[])a.status==="fed"&&Math.round(a.time.from)===Math.round(e.segment.time.from)&&Math.round(a.time.to)===Math.round(e.segment.time.to)&&(a.status="none");this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status==="partially_fed"?e.status="partially_ejected":e.status!=="partially_ejected"&&(e.status="none");for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[r,a]of this.initData.entries()){let n=a instanceof Promise;t||(t=n),a===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=ir(()=>(0,Uy.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",a=!i&&this.tuning.dash.ignoreNetworkErrorsOnLoadInit,o=(!i&&this.failedDownloads>0?(0,P.abortable)(this.destroyAbortController.signal,async function*(){let u=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,u))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,nr(e.mime),{priority:r,ignoreNetworkErrors:a})).then(async u=>{if(!u)return;let{init:c,dataView:l,segments:d}=u,p=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,p);let h=d;this.isLive&&dt(e.segmentReference)&&(h=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,h),c&&this.parsedInitData.set(e.id,c)}).then(()=>this.failedDownloads=0,u=>{a||this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:P.ErrorCategory.WTF,message:"loadInit threw",thrown:u})});return this.initData.set(e.id,o),o}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status="none";await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,i=!1){if(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,P.isNullable)(e))return!1;let r=[],a=0,n=u=>{u.sort((l,d)=>l.from-d.from);let c=[u[0]];for(let l=1;l<u.length;l++){let{from:d,to:p}=u[l],h=c[c.length-1];h.to>=d?h.to=Math.max(h.to,p):c.push(u[l])}return c},o=u=>{var l;if(a>=t)return r;r.push({...u.time}),r=n(r);let c=Cl(u)?(l=u.size)!=null?l:0:u.byte.to-u.byte.from;a+=c};for(let u of this.segments.values())for(let c of u){let l=c.time.to<=e-this.tuning.dash.bufferPruningSafeZone,d=c.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||d)&&c.status==="fed"&&o(c)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let c=this.sourceBuffer.buffered.start(u)*1e3,l=this.sourceBuffer.buffered.end(u)*1e3,d=0;for(let p of this.segments.values())for(let h of p)(0,Bo.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(c)&&Math.round(h.time.to)>=Math.round(l)&&d++;if(d===this.segments.size){let p={time:{from:c,to:l},url:"",status:"none"};o(p)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let c of this.segments.values())for(let l of c)l.time.from>=e+u&&l.status==="fed"&&o(l)}return r.length?(await Promise.all(r.map(c=>this.sourceBufferTaskQueue.remove(c.from,c.to)))).reduce((c,l)=>c||l,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,P.isNullable)(e)?0:ki(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer)))for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to,persistent:!1},{buffered:a}=this.sourceBuffer;for(let n=0;n<a.length;n++){let o=a.start(n)*1e3,u=a.end(n)*1e3;if(!(u<=i.time.from||o>=i.time.to)){if(o<=i.time.from&&u>=i.time.to){r=void 0;break}u>i.time.from&&u<i.time.to&&(r.from=u),o<i.time.to&&o>i.time.from&&(r.to=o)}}r&&r.to-r.from>1&&!this.gaps.some(n=>r&&n.from===r.from&&n.to===r.to)&&this.gaps.push(r)}}detectGapsWhenIdle(e,t){if(this.gapDetectionIdleCallback||!this.sourceBuffer||!Se(this.mediaSource,this.sourceBuffer))return;let{buffered:i}=this.sourceBuffer,{usePersistentGaps:r}=this.tuning.dash;this.gaps=this.gaps.filter(a=>{if(r&&a.persistent)return!0;let n=Math.round(a.from),o=Math.round(a.to);for(let u=0;u<i.length;u++)if(n>=Math.round(i.start(u)*1e3)&&o<=Math.round(i.end(u)*1e3))return!1;return!0}),this.gapDetectionIdleCallback=ir(()=>{try{this.detectGaps(e,t)}catch(a){this.error$.next({id:"GapDetection",category:P.ErrorCategory.WTF,message:"detectGaps threw",thrown:a})}finally{this.gapDetectionIdleCallback=null}})}checkEjectedSegments(){if((0,P.isNullable)(this.sourceBuffer)||!Se(this.mediaSource,this.sourceBuffer)||(0,P.isNullable)(this.playingRepresentationId))return;let e=[];for(let i=0;i<this.sourceBuffer.buffered.length;i++){let r=Math.floor(this.sourceBuffer.buffered.start(i)*1e3),a=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:a})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:a}=r;if(a!=="fed"&&a!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(l=>l.from-t<=n&&l.to+t>=o),c=e.filter(l=>n>=l.from&&n<l.to-t||o>l.from+t&&o<=l.to);u||(c.length===1?r.status="partially_ejected":this.gaps.some(l=>l.from===r.time.from||l.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:P.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var F=require("@vkontakte/videoplayer-shared/es2018");var _o=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.manifestRequested$=new F.Subject;this.firstBytesManifest$=new F.Subject;this.firstBytesRequested$=new F.Subject;this.firstBytesReceived$=new F.Subject;this.lastConnectionType$=new F.ValueSubject(void 0);this.lastConnectionReused$=new F.ValueSubject(void 0);this.lastRequestFirstBytes$=new F.ValueSubject(void 0);this.lastConnectionMetrics$=new F.ValueSubject(void 0);this.lastDownloadMetrics$=new F.ValueSubject(void 0);this.recoverableError$=new F.Subject;this.error$=new F.Subject;this.abortAllController=new ye;this.subscription=new F.SubscriptionRemovable;this.performanceObserver=null;this.pendingConnectionMetrics=new Map;this.fetchManifest=(0,F.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Ii(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=mo(i)),this.trackRequestStart(i,performance.now());let r=(0,F.now)();this.manifestRequested$.next();let a=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(F.suppressAbort);if(a){let n=(0,F.now)();t.log("success",(0,F.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(a.headers),this.firstBytesManifest$.next();let o=a.headers.get("content-length"),u=0;o&&(u=parseInt(o,10));let c=await a.text();if((!o||isNaN(u)||u<=0)&&(u=new TextEncoder().encode(c).length),u>0){let l=n-r,p=u/(l/1e3)*8/1024,h={bytes:u,speed:p,url:e};this.lastDownloadMetrics$.next(h)}return c}else return t.error("error",(0,F.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null}.bind(this));this.fetch=(0,F.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:a="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:c=!1,ignoreNetworkErrors:l=!1}={}){var le,oe,A;let d=e,p=new Headers,h=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{p.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let $=new URL(d,(0,F.getWindow)().location.href);$.searchParams.append("bytes",`${i.from}-${i.to}`),d=$.toString();break}default:(0,F.assertNever)(t)}this.requestQuic&&(d=Ii(d));let m=this.abortAllController.signal,b;if(n){let $=new ye;if(b=(0,F.merge)((0,F.fromEvent)(this.abortAllController.signal,"abort"),(0,F.fromEvent)(n,"abort")).subscribe(()=>{try{$.abort()}catch(k){(0,F.suppressAbort)(k)}}),this.subscription.add(b),this.abortAllController.signal.aborted||n.aborted)try{$.abort()}catch(k){(0,F.suppressAbort)(k)}m=$.signal}let S=0,v=(0,F.now)();h.log("startRequest",(0,F.flattenObject)({url:d,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:v})),this.trackRequestStart(d,performance.now()),this.firstBytesRequested$.next();let y=yield this.doFetch(d,{priority:a,headers:p,signal:m},{ignoreNetworkErrors:l}),x=(0,F.now)();if(!y)return h.error("error",{message:"No response in request"}),h.end(),this.unsubscribeAbortSubscription(b),null;if((le=this.throughputEstimator)==null||le.addRawRtt(x-v),!y.ok||!y.body){this.unsubscribeAbortSubscription(b);let $=`Fetch error ${y.status}: ${y.statusText}`;return h.error("error",{message:$}),h.end(),Promise.reject(new Error(`Fetch error ${y.status}: ${y.statusText}`))}if(this.onHeadersReceived(y.headers),!r&&!o){this.unsubscribeAbortSubscription(b);let $=(0,F.now)(),k={requestStartedAt:v,requestEndedAt:$,duration:$-v};return h.log("endRequest",(0,F.flattenObject)(k)),h.end(),y.arrayBuffer()}let w=y.body;if(o){let $;[w,$]=y.body.tee(),(oe=this.throughputEstimator)==null||oe.trackStream($,u)}let M=w.getReader(),_,q=parseInt((A=y.headers.get("content-length"))!=null?A:"",10);Number.isFinite(q)&&(_=q),!_&&i&&(_=i.to-i.from+1);let O=_?new Uint8Array(_):new Uint8Array(0),H=!1,V=$=>{this.unsubscribeAbortSubscription(b),H=!0,(0,F.suppressAbort)($)},Q=(0,F.abortable)(m,async function*({done:$,value:k}){if(S===0&&(this.lastRequestFirstBytes$.next((0,F.now)()-v),this.firstBytesReceived$.next()),m.aborted){this.unsubscribeAbortSubscription(b);return}if(!$&&k){if(c&&_)O.set(k,S),S+=k.byteLength;else{let R=new Uint8Array(O.length+k.length);R.set(O),R.set(k,O.length),O=R,S+=k.byteLength}r==null||r(new DataView(O.buffer),S),yield M==null?void 0:M.read().then(Q,V)}}.bind(this));yield M==null?void 0:M.read().then(Q,V),this.unsubscribeAbortSubscription(b);let U=(0,F.now)(),ie={failed:H,requestStartedAt:v,requestEndedAt:U,duration:U-v};if(H)return h.error("endRequest",(0,F.flattenObject)(ie)),h.end(),null;if(S>0){let $=U-v,R=S/($/1e3)*8/1024,Z={bytes:S,speed:R,url:e};this.lastDownloadMetrics$.next(Z)}return h.log("endRequest",(0,F.flattenObject)(ie)),h.end(),O.buffer}.bind(this));this.fetchByteRangeRepresentation=(0,F.abortable)(this.abortAllController.signal,async function*(e,t,i){var v;if(e.type!=="byteRange")return null;let{from:r,to:a}=e.initRange,n=r,o=a,u=!1,c,l;e.indexRange&&(c=e.indexRange.from,l=e.indexRange.to,u=a+1===c,u&&(n=Math.min(c,r),o=Math.max(l,a))),n=Math.min(n,0);let d=yield this.fetch(e.url,{range:{from:n,to:o},measureThroughput:!1,...i});if(!d)return null;let p=new DataView(d,r-n,a-n+1);if(!t.validateData(p))throw new Error("Invalid media file");let h=t.parseInit(p),m=(v=e.indexRange)!=null?v:t.getIndexRange(h);if(!m)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(d,m.from-n,m.to-m.from+1);else{let y=yield this.fetch(e.url,{range:m,measureThroughput:!1});if(!y)return null;b=new DataView(y)}let S=t.parseSegments(b,h,m);return{init:h,dataView:new DataView(d),segments:S}}.bind(this));this.fetchTemplateRepresentation=(0,F.abortable)(this.abortAllController.signal,async function*(e,t){if(e.type!=="template")return null;let i=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(i,{measureThroughput:!1,...t});return r?{init:null,segments:e.segments.map(n=>({...n,status:"none",size:void 0})),dataView:new DataView(r)}:null}.bind(this));this.throughputEstimator=e,this.requestQuic=t,this.compatibilityMode=r,this.tracer=i.createComponentTracer("Fetcher"),this.useEnableSubtitlesParam=a,(0,F.getWindow)().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:i}=fo(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}setupPerformanceObserver(){this.performanceObserver=new((0,F.getWindow)()).PerformanceObserver(e=>{e.getEntriesByType("resource").forEach(t=>{this.processPerformanceResourceTiming(t)})}),this.performanceObserver.observe({entryTypes:["resource"]})}processPerformanceResourceTiming(e){let t=this.findMatchingRequest(e);if(!t||!this.pendingConnectionMetrics.get(t))return;this.pendingConnectionMetrics.delete(t);let r=this.extractConnectionMetrics(e);r&&this.lastConnectionMetrics$.next(r)}estimateNetworkType(){if(!("connection"in(0,F.getWindow)().navigator))return"unknown";let e=(0,F.getWindow)().navigator.connection;return e.effectiveType?{"slow-2g":"2g","2g":"2g","3g":"3g","4g":"lte"}[e.effectiveType]||e.effectiveType:e.downlink?e.downlink<1?"2g":e.downlink<5?"3g":e.downlink<50?"lte":"wifi":e.rtt?e.rtt>500?"2g":e.rtt>250?"3g":e.rtt>50?"lte":"wifi":"unknown"}extractConnectionMetrics(e){let t=0,i=0,r=0,a=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(a=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,i=e.secureConnectionStart-e.connectStart):i=a),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,i),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,a),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,i]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),a=r.origin+r.pathname,n=new URL(i.url),o=n.origin+n.pathname;if(a===o&&e.startTime>=i.startTime-10&&e.startTime<=i.startTime+1e3)return t}}catch(t){this.recoverableError$.next({id:"VideoDataFetchError",message:"Video data fetch error with getting download metrics",category:F.ErrorCategory.WTF})}return null}trackRequestStart(e,t){let i=`${e}_${t}_${Math.random().toString(36).substr(2,9)}`;this.pendingConnectionMetrics.set(i,{url:e,startTime:t})}async fetchRepresentation(e,t,i){var a,n;let{type:r}=e;switch(r){case"byteRange":return(a=await this.fetchByteRangeRepresentation(e,t,i))!=null?a:null;case"template":return(n=await this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,F.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&(this.performanceObserver.disconnect(),this.performanceObserver=null),this.pendingConnectionMetrics.clear(),this.tracer.end()}async doFetch(e,t,i){let r=await vt(e,t);if(r.ok)return r;if(i!=null&&i.ignoreNetworkErrors)return;let a=await r.text(),n=parseInt(a);if(!isNaN(n))switch(n){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:F.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:F.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:F.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:F.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:a});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${n})`,category:F.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:a})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}};var Oo=require("@vkontakte/videoplayer-shared/es2018");var Rs=class s{constructor(e,t){this.currentRepresentation$=new Oo.ValueSubject(null);this.maxRepresentations=4;this.representationsCursor=0;this.representations=[];this.currentSegment=null;this.getCurrentPosition=t.getCurrentPosition,this.processStreams(e)}updateLive(e){this.processStreams(e==null?void 0:e.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){var t;if(!(0,Oo.isNullable)(e))for(let i of this.representations)for(let r of i){let a=r.segmentReference,n=a.segments.length,o=a.segments[0].time.from,u=a.segments[n-1].time.to;if(e<o||e>u)continue;let c=a.segments.find(l=>l.time.from<=e&&l.time.to>=e);!c||((t=this.currentSegment)==null?void 0:t.time.from)===c.time.from&&this.currentSegment.time.to===c.time.to||(this.currentSegment=c,this.currentRepresentation$.next({...r,label:"Live Text",language:"ru",isAuto:!0,url:new URL(c.url,a.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?e:[]){let i=s.filterRepresentations(t.representations);if(i){this.representations[this.representationsCursor]=i,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!(e!=null&&e.some(t=>s.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&dt(t.segmentReference))}};var Z$=["timeupdate","progress","play","seeked","stalled","waiting"],eL=["timeupdate","progress","loadeddata","playing","seeked"];var No=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.bufferManagers=[];this.subscription=new T.Subscription;this.subscriptionRemovable=new T.SubscriptionRemovable;this.representationSubscription=new T.Subscription;this.state$=new ae("none");this.currentVideoRepresentation$=new T.ValueSubject(void 0);this.currentVideoRepresentationInit$=new T.ValueSubject(void 0);this.currentAudioRepresentation$=new T.ValueSubject(void 0);this.currentVideoSegmentLength$=new T.ValueSubject(0);this.currentAudioSegmentLength$=new T.ValueSubject(0);this.error$=new T.Subject;this.manifestRequested$=new T.Subject;this.firstBytesManifest$=new T.Subject;this.manifestReceived$=new T.Subject;this.firstBytesRequested$=new T.Subject;this.firstBytesReceived$=new T.Subject;this.lastConnectionType$=new T.ValueSubject(void 0);this.lastConnectionReused$=new T.ValueSubject(void 0);this.lastRequestFirstBytes$=new T.ValueSubject(void 0);this.lastConnectionMetrics$=new T.ValueSubject(void 0);this.lastDownloadMetrics$=new T.ValueSubject(void 0);this.currentLiveTextRepresentation$=new T.ValueSubject(null);this.isLive$=new T.ValueSubject(!1);this.isActiveLive$=new T.ValueSubject(!1);this.isLowLatency$=new T.ValueSubject(!1);this.liveDuration$=new T.ValueSubject(0);this.liveSeekableDuration$=new T.ValueSubject(0);this.liveAvailabilityStartTime$=new T.ValueSubject(0);this.liveStreamStatus$=new T.ValueSubject(void 0);this.bufferLength$=new T.ValueSubject(0);this.liveLatency$=new T.ValueSubject(void 0);this.liveLoadBufferLength$=new T.ValueSubject(0);this.livePositionFromPlayer$=new T.ValueSubject(0);this.currentStallDuration$=new T.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new T.ValueSubject(0);this.fetcherRecoverableError$=new T.Subject;this.fetcherError$=new T.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new T.Subject;this.gapWatchdogActive=!1;this.liveWasInterrupted=!1;this.destroyController=new ye;this.initManifest=(0,T.abortable)(this.destroyController.signal,async function*(e,t,i){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=Ae(t,i,2),this.state$.startTransitionTo("manifest_ready"),this.manifest=yield this.updateManifest(),(r=this.manifest)!=null&&r.streams.video.length?this.state$.setState("manifest_ready"):this.error$.next({id:"NoRepresentations",category:T.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,T.abortable)(this.destroyController.signal,async function*(){var u,c;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(l=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:T.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:l})});if(!e)return null;let t=null;try{t=So(e!=null?e:"",this.manifestUrlString),this.manifestReceived$.next()}catch(l){let d=(u=ho(e))!=null?u:{id:"ManifestParsing",category:T.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:l};this.error$.next(d)}if(!t)return null;let i=(l,d,p)=>{var h,m,b,S;return!!((m=(h=this.element)==null?void 0:h.canPlayType)!=null&&m.call(h,d)&&((S=(b=ut())==null?void 0:b.isTypeSupported)!=null&&S.call(b,`${d}; codecs="${p}"`))||l==="text")};if(t.live){this.isLive$.next(!0);let{availabilityStartTime:l,latestSegmentPublishTime:d,streamIsUnpublished:p,streamIsAlive:h}=t.live,m=((c=t.duration)!=null?c:0)/1e3;this.liveSeekableDuration$.next(-1*m),this.liveDuration$.next((d-l)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let b="active";if(h||(b=p?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(b),h&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let S=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(S).catch(v=>{this.error$.next({id:"updateManifest",category:T.ErrorCategory.VIDEO_PIPELINE,message:"seekLive after stream restore failed",thrown:v})})}}let r={text:t.streams.text,video:[],audio:[]},a,n;for(let l of["video","audio"]){let p=t.streams[l].filter(({mime:m,codecs:b})=>i(l,m,b));r[l]=p;let h;if(this.tuning.dash.codecsPrioritizeEnabled){let m=p.map(({codecs:b})=>b);l==="audio"&&(n=wo(m),h=n[0]),l==="video"&&(a=Eo(m),this.forceVideoCodec&&(0,qy.default)(a,this.forceVideoCodec)?h=this.forceVideoCodec:h=a[0]),h&&(r[l]=p.filter(({codecs:b})=>Ei(b)===h))}else{let m=new Set(p.map(({codecs:b})=>b));h=Io(m),h&&(r[l]=p.filter(({codecs:b})=>b.startsWith(h)))}if(l==="video"){let m=this.tuning.preferHDR,b=r.video.some(y=>y.hdr),S=r.video.some(y=>!y.hdr);j.display.isHDR&&m&&b?r.video=r.video.filter(y=>y.hdr):S&&(r.video=r.video.filter(y=>!y.hdr));let{videoStreamRepresentaionsFilter:v}=this.tuning.dash;v.length&&Ao(r,v)}}let o={...t,streams:r};return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:a,audio:n}),this.tracer.log("updateManifestEnd",(0,T.flattenObject)(o)),o}.bind(this));this.initRepresentations=(0,T.abortable)(this.destroyController.signal,async function*(e,t,i){var d;this.tracer.log("initRepresentationsStart",(0,T.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,T.assertNonNullable)(this.manifest),(0,T.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,T.fromEvent)(p,"error").pipe((0,T.filter)(h=>{var m;return!!((m=this.element)!=null&&m.played.length)})).subscribe(h=>{this.error$.next({id:"VideoSource",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=vn();let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),xr())if(i){let p=document.createElement("source");r(p),p.type="application/x-mpegurl",p.src=i.url,this.element.appendChild(p)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let n={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((p,h)=>[...p,...h.representations],[]);if(this.videoBufferManager=new As("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,T.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((h,m)=>[...h,...m.representations],[]);this.audioBufferManager=new As("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}if(Rs.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Rs(this.manifest.streams.text,n)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add((0,T.merge)(...eL.map(p=>(0,T.fromEvent)(this.element,p))).pipe((0,T.map)(p=>this.element?ki(this.element.buffered,this.element.currentTime*1e3):0),(0,T.filterChanged)(),(0,T.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&this.stopStallWatchdogSubscription()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,T.merge)((0,T.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{this.stopStallWatchdogSubscription()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,T.filterChanged)()).subscribe(h=>this.liveStreamEndTimestamp=(0,T.now)())),this.subscription.add((0,T.fromEvent)(this.element,"pause").subscribe(()=>{let{liveUpdateInterval:h}=this.tuning.dash;this.livePauseWatchdogSubscription=(0,T.interval)(h).subscribe(m=>{let b=pi(this.manifestUrlString,2);this.manifestUrlString=Ae(this.manifestUrlString,b+h,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,T.fromEvent)(this.element,"play").subscribe(h=>{var m;return(m=this.livePauseWatchdogSubscription)==null?void 0:m.unsubscribe()})),this.representationSubscription.add((0,T.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,T.map)(({isActiveLive:h,isLowLatency:m})=>h&&m),(0,T.filterChanged)()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Gr(this.element,1)})),this.representationSubscription.add((0,T.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,T.filter)(({bufferLength:h,isActiveLive:m,isLowLatency:b})=>m&&b&&!!h)).subscribe(({bufferLength:h})=>this.liveBuffer.next(h))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(h=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!h)return;let m=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(m,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add((0,T.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,T.filter)(({isLive:h})=>h),(0,T.filterChanged)((h,m)=>m.bufferLength<h.bufferLength),(0,T.map)(({rtt:h,bufferLength:m,segmentServerLatency:b})=>{let S=pi(this.manifestUrlString,2);return(h/2+m+b+S)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,T.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:m,isLowLatency:b})=>{if(!b||!m)return;let S=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,v=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,y=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,x=h-S;if(this.isManualDecreasePlaybackInLive())return;let w=1;Math.abs(x)>v&&(w=1+Math.sign(x)*y),Gr(this.element,w)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{var b,S;let m=0;if(h){let v=((S=(b=this.element)==null?void 0:b.currentTime)!=null?S:0)*1e3;m=Math.min(...this.bufferManagers.map(x=>{var w,M;return(M=(w=x.getLiveSegmentsToLoadState(this.manifest))==null?void 0:w.to)!=null?M:v}))-v}this.liveLoadBufferLength$.getValue()!==m&&this.liveLoadBufferLength$.next(m)}));let p=0;this.representationSubscription.add((0,T.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,T.throttle)(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:h,bufferLength:m})=>{if(!this.element||this.isUpdatingLive)return;let b=this.element.playbackRate,S=pi(this.manifestUrlString,2),v=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,y=Math.min(v,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*b),x=this.tuning.dashCmafLive.normalizedActualBufferOffset*b,w=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*b,M=isFinite(h)?h:m,_=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),q=v<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(q);let O="none";if(_?O="active_low_latency":this.isLowLatency$.getValue()&&q?(this.bufferManagers.forEach(H=>H.proceedLowLatencyLive()),O="active_low_latency"):S!==0&&M<y?O="live_forward_buffering":M<y+w&&(O="live_with_target_offset"),isFinite(h)&&(p=h>p?h:p),O==="live_forward_buffering"||O==="live_with_target_offset"){let H=p-(y+x),V=this.normalizeLiveOffset(Math.trunc(S+H/b)),Q=Math.abs(V-S),U=0;!h||Q<=this.tuning.dashCmafLive.offsetCalculationError?U=S:V>0&&Q>this.tuning.dashCmafLive.offsetCalculationError&&(U=V),this.manifestUrlString=Ae(this.manifestUrlString,U,2)}(O==="live_with_target_offset"||O==="live_forward_buffering")&&(p=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:T.ErrorCategory.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let u=(0,T.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,T.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),c=(0,T.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,T.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),l=(0,T.combine)({allBuffersFull:u,someBufferEnded:c}).pipe((0,T.filterChanged)(),(0,T.map)(({allBuffersFull:p,someBufferEnded:h})=>p&&h),(0,T.filter)(p=>p));if(this.representationSubscription.add((0,T.merge)(this.forceEnded$,l).subscribe(()=>{var p;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(h=>!h.updating))try{(p=this.source)==null||p.endOfStream()}catch(h){this.error$.next({id:"EndOfStream",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:h})}})),this.representationSubscription.add((0,T.merge)(...this.bufferManagers.map(p=>p.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!=="open"){let p=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise(h=>{var m;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var b;if(((b=this.source)==null?void 0:b.readyState)==="open"){h();return}this.error$.next({id:"OpenOfStream",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Failed to open MediaSource",thrown:new Error("Timeout reject when wait sourceopen event"),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),(m=this.source)==null||m.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(d=this.manifest.duration)!=null?d:0,...(0,Nl.default)((0,Nl.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let m=[];return h.duration&&m.push(h.duration),dt(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&m.push(h.segmentReference.totalSegmentsDurationMs),m})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,T.isNonNullable)(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState("representations_ready"),this.tracer.log("initRepresentationsEnd")}.bind(this));this.tick=()=>{var t,i,r,a;if(!this.element||!this.videoBufferManager||((t=this.source)==null?void 0:t.readyState)!=="open")return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),(i=this.audioBufferManager)==null||i.maintain(e),(r=this.liveTextManager)==null||r.maintain(e),(this.videoBufferManager.gaps.length||(a=this.audioBufferManager)!=null&&a.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,T.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:T.ErrorCategory.WTF,message:"Error handling gaps",thrown:n})}),this.subscription.add(this.gapWatchdogSubscription))};this.throughputEstimator=e.throughputEstimator,this.tuning=e.tuning,this.tracer=e.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=e.forceVideoCodec,this.fetcher=new _o({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:e.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:e.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.subscription.add(this.fetcher.manifestRequested$.subscribe(this.manifestRequested$)),this.subscription.add(this.fetcher.firstBytesManifest$.subscribe(this.firstBytesManifest$)),this.subscription.add(this.fetcher.firstBytesRequested$.subscribe(this.firstBytesRequested$)),this.subscription.add(this.fetcher.firstBytesReceived$.subscribe(this.firstBytesReceived$)),this.subscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.subscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.subscription.add(this.fetcher.lastConnectionMetrics$.subscribe(this.lastConnectionMetrics$)),this.subscription.add(this.fetcher.lastDownloadMetrics$.subscribe(this.lastDownloadMetrics$)),this.liveBuffer=ti.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}setSmartRepresentationSwitch(e){this.bufferManagers.forEach(t=>t.setSmartRepresentationSwitch(e))}async seekLive(e){(0,T.assertNonNullable)(this.element),this.updateManifestUrlWithTimeOffset(e),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.updateLiveBuffersFromManifest(this.manifest))}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()!=="active"?(0,T.now)()-this.liveStreamEndTimestamp:0,i=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=Ae(this.manifestUrlString,i,2)}async updateLiveBuffersFromManifest(e){var t,i,r;await((t=this.videoBufferManager)==null?void 0:t.seekLive(e.streams.video)),await((i=this.audioBufferManager)==null?void 0:i.seekLive(e.streams.audio)),(r=this.liveTextManager)==null||r.seekLive(e.streams.text)}stopStallWatchdogSubscription(){var e;(e=this.stallWatchdogSubscription)==null||e.unsubscribe(),this.currentStallDuration$.next(0)}initBuffer(){(0,T.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,T.merge)(...Z$.map(e=>(0,T.fromEvent)(this.element,e)),(0,T.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:T.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,T.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,T.fromEvent)(this.element,"waiting").subscribe(()=>{this.tuning.dash.useVideoElementWaitingCurrentTimeReassign&&this.element&&this.element.readyState===2&&!this.element.seeking&&Ri(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var w,M,_,q,O,H,V,Q,U,ie,le;let{keepSilentStallWatchdogWhenNotActive:t}=this.tuning.dashCmafLive,{crashOnStallTimeout:i,crashOnStallTWithoutDataTimeout:r,liveStallReinitInterval:a,stallWatchdogInterval:n}=this.tuning.dash,o=this.isLive$.getValue(),c=this.liveStreamStatus$.getValue()==="active";if(!this.element||((w=this.source)==null?void 0:w.readyState)!=="open")return;let l=this.currentStallDuration$.getValue();l+=n,this.currentStallDuration$.next(l);let d={timeInWaiting:l},p=(0,T.now)(),h=100,m=(_=(M=this.videoBufferManager)==null?void 0:M.lastDataObtainedTimestamp)!=null?_:0;this.videoLastDataObtainedTimestamp$.next(m);let b=(O=(q=this.audioBufferManager)==null?void 0:q.lastDataObtainedTimestamp)!=null?O:0,S=(V=(H=this.videoBufferManager)==null?void 0:H.getForwardBufferDuration())!=null?V:0,v=(U=(Q=this.audioBufferManager)==null?void 0:Q.getForwardBufferDuration())!=null?U:0,y=S<h&&p-m>r,x=this.audioBufferManager&&v<h&&p-b>r;if((!t||c)&&((y||x)&&l>r||l>=i))throw new Error(`Stall timeout exceeded: ${l} ms`);if(o&&l%a===0){let oe=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);!c&&t?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(oe),this.updateManifest()):this.seekLive(oe).catch(A=>{this.error$.next({id:"stallIntervalCallback",category:T.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:A})}),d.liveLastOffset=oe}else{let oe=this.element.currentTime*1e3;(ie=this.videoBufferManager)==null||ie.maintain(oe),(le=this.audioBufferManager)==null||le.maintain(oe),d.position=oe}this.tracer.log("stallIntervalCallback",(0,T.flattenObject)(d))};this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=(0,T.interval)(this.tuning.dash.stallWatchdogInterval).subscribe(e,t=>{this.error$.next({id:"StallWatchdogCallback",category:T.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:t})}),this.subscriptionRemovable.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,i=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r==null?void 0:r.switchToWithPreviousAbort(t,i):r==null?void 0:r.switchTo(t,i):r==null?void 0:r.switchToOld(t,i)}async seek(e,t){var r,a,n,o,u;(0,T.assertNonNullable)(this.element),(0,T.assertNonNullable)(this.videoBufferManager);let i;t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?i=e:i=Math.max((r=this.videoBufferManager.findSegmentStartTime(e))!=null?r:e,(n=(a=this.audioBufferManager)==null?void 0:a.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),Ri(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()]),!((0,T.isNullable)(this.element)||(0,T.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,T.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,T.isNonNullable)(this.element)&&(0,T.isNonNullable)(this.source)&&(0,T.isNonNullable)(e)&&((i=this.source)==null?void 0:i.readyState)==="ended"&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(r=>r.warmUpMediaSource())}get isStreamEnded(){var e;return((e=this.source)==null?void 0:e.readyState)==="ended"}stop(){var e,t,i;this.tracer.log("stop"),(e=this.element)==null||e.querySelectorAll("source").forEach(r=>{URL.revokeObjectURL(r.src),r.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),(t=this.videoBufferManager)==null||t.destroy(),this.videoBufferManager=null,(i=this.audioBufferManager)==null||i.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState("none")}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){var e;return(e=this.manifest)==null?void 0:e.streams}getCodecs(){var e;return(e=this.manifest)==null?void 0:e.codecs}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.unsubscribe(),this.subscriptionRemovable.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),((e=this.source)==null?void 0:e.readyState)==="open"&&Array.from(this.source.sourceBuffers).every(t=>!t.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=(0,T.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){if(!this.element||!this.isLive$.getValue())return!1;let e=1-this.element.playbackRate;return Number(e.toFixed(2))>Number(this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup.toFixed(2))}normalizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){var e;this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers.forEach(t=>t.updateLive(this.manifest)),(e=this.liveTextManager)==null||e.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime},{usePersistentGaps:r}=this.tuning.dash;this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let a=this.element.currentTime*1e3,n=[],o=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let u of this.bufferManagers)for(let c of u.gaps)(r&&c.persistent||u.playingRepresentation$.getValue()===c.representation)&&c.from-o<=a&&c.to+o>a&&(this.element.duration*1e3-c.to<this.tuning.endGapTolerance?n.push(1/0):n.push(c.to));if(n.length){let u=Math.max(...n)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,u===1/0?this.forceEnded$.next():(this.element.currentTime=u/1e3,i={...i,gapEnds:n,jumpTo:u,resultCurrentTime:this.element.currentTime},this.tracer.log("jumpGap",(0,T.flattenObject)(i)))}}calculateDurationFromSegments(){var e,t;return Math.max(((e=this.videoBufferManager)==null?void 0:e.calculateDurationFromSegments())||0,((t=this.audioBufferManager)==null?void 0:t.calculateDurationFromSegments())||0)}};var at=require("@vkontakte/videoplayer-shared/es2018"),Fo=class{constructor(){this.subscription=new at.Subscription;this.pipSize$=new at.ValueSubject(void 0);this.videoSize$=new at.ValueSubject(void 0);this.elementSize$=new at.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=at.noop}connect({observableVideo:e,video:t}){let i=r=>{let a=r.target;this.pipSize$.next({width:a.width,height:a.height})};this.subscription.add((0,at.observeElementSize)(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:r})=>{this.pipSize$.next({width:r.width,height:r.height}),r.addEventListener("resize",i),this.pictureInPictureWindowRemoveEventListener=()=>{r.removeEventListener("resize",i)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add((0,at.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,at.map)(({videoSize:r,inPip:a,pipSize:n})=>a?n:r)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}};var ur=class{constructor(e){this.subscription=new W.Subscription;this.videoState=new ae("stopped");this.observableVideo=null;this.droppedFramesManager=new Or;this.stallsManager=new uo;this.elementSizeManager=new Fo;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Si;this.audioTrackSwitchHistory=new Si;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state==="requested"&&(i==null?void 0:i.to)!=="paused"&&e!=="stopped"&&t!=="stopped"&&this.seek(r.position,r.forcePrecise),t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),B(this.params.desiredState.playbackState,"stopped",!0));return}switch(e){case"stopped":this.videoState.startTransitionTo("ready"),this.prepare();return;case"ready":t==="paused"?(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&B(this.params.desiredState.playbackState,"ready");return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):t==="playing"&&this.video.paused?this.playIfAllowed():(i==null?void 0:i.to)==="playing"&&B(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&B(this.params.desiredState.playbackState,"paused");return;default:return(0,W.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new Nr(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:((i=e.projectionData)==null?void 0:i.pose.yaw)||0,y:((r=e.projectionData)==null?void 0:r.pose.pitch)||0,z:((a=e.projectionData)==null?void 0:a.pose.roll)||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)};this.destroy3DScene=()=>{this.scene3D&&(this.scene3D.destroy(),this.scene3D=void 0)};this.textTracksManager=new mt(e.source.url),this.params=e,this.video=Je(e.container,e.tuning),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(We(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new No({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;(0,W.isNullable)(this.observableVideo)&&(this.observableVideo=tt(this.video),this.subscription.add(()=>{var n;return(n=this.observableVideo)==null?void 0:n.destroy()}));let i=this.constructor.name,r=n=>{e.error$.next({id:i,category:W.ErrorCategory.WTF,message:`${i} internal logic error`,thrown:n})},a=(n,o)=>this.subscription.add(n.subscribe(o,r));return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:a}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:a}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,W.filter)(d=>!!d.length),(0,W.once)()).subscribe(d=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:i.playing$,pause$:i.pause$,tracks:d})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,W.map)(d=>d.to.state!=="none"),(0,W.filterChanged)());this.stallsManager.init({isSeeked$:n,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:i.isBuffering$,looped$:i.looped$,playing$:i.playing$,duration:this.video.duration}),a(i.ended$,e.endedEvent$),a(i.looped$,e.loopedEvent$),a(i.error$,e.error$),a(i.isBuffering$,e.isBuffering$),a(i.currentBuffer$,e.currentBuffer$),a(i.currentBuffer$,e.currentNativeBuffer$),a(i.playing$,e.firstFrameEvent$),a(i.canplay$,e.canplay$),a(i.inPiP$,e.inPiP$),a(i.inFullscreen$,e.inFullscreen$),a(i.loadedMetadata$,e.loadedMetadataEvent$),a(this.player.error$,e.error$),a(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),a(this.player.fetcherError$,e.fetcherError$),a(this.player.manifestRequested$,e.manifestRequested$),a(this.player.firstBytesManifest$,e.firstBytesManifest$),a(this.player.manifestReceived$,e.manifestReceived$),a(this.player.firstBytesRequested$,e.firstBytesRequested$),a(this.player.firstBytesReceived$,e.firstBytesReceived$),a(this.player.lastConnectionType$,e.httpConnectionType$),a(this.player.lastConnectionReused$,e.httpConnectionReused$),a(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),a(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),a(this.player.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe((0,W.filter)(W.isNonNullable),(0,W.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,W.map)(d=>d.to)),this.params.output.playbackState$),this.subscription.add(i.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(i.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Ft(this.video,t.isLooped,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),Ti({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:i}),this.subscription.add(et(this.video,t.volume,i.volumeState$,r)),this.subscription.add(ft(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(gt(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),B(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&!this.video.ended&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(i.ended$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")})),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:d})=>{if(d==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let p=this.player.getStreams(),h=this.player.getCodecs();if((0,W.assertNonNullable)(p,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let b=[];for(let S of p.audio){b.push($l(S));let v=[];for(let y of S.representations){let x=Is(y);v.push(x),this.audioTracksMap.set(x,{stream:S,representation:y})}this.audioStreamsMap.set(S,v)}this.params.output.availableAudioStreams$.next(b)}let m=[];for(let b of p.video){m.push(Ll(b));let S=[];for(let v of b.representations){let y=xi({...v,streamId:b.id});y&&(S.push(y),this.videoTracksMap.set(y,{stream:b,representation:v}))}this.videoStreamsMap.set(b,S)}this.params.output.availableVideoStreams$.next(m);for(let b of p.text)for(let S of b.representations){let v=Ry(b,S);this.textTracksMap.set(v,{stream:b,representation:S})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),h!=null&&h.video&&this.params.output.availableVideoCodecs$.next(h.video),h!=null&&h.audio&&this.params.output.availableAudioCodecs$.next(h.audio),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else d==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r));let o=(0,W.merge)(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,W.fromEvent)(this.video,"progress")).pipe((0,W.filter)(()=>this.videoTracksMap.size>0)),{abrThrottle:u}=this.params.tuning.dash;u&&(o=o.pipe((0,W.throttle)(u))),this.subscription.add(o.subscribe(async()=>{let d=this.player.state$.getState(),p=this.player.state$.getTransition();if(d!=="manifest_ready"&&d!=="running"||p)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let h=this.selectVideoAudioRepresentations();if(!h)return;let[m,b]=h,S=[...this.videoTracksMap.keys()].find(y=>{var x;return((x=this.videoTracksMap.get(y))==null?void 0:x.representation.id)===m.id});(0,W.isNonNullable)(S)&&(this.stallsManager.lastVideoTrackSelected=S);let v=this.params.desiredState.autoVideoTrackLimits.getTransition();if(v&&this.params.output.autoVideoTrackLimits$.next(v.to),d==="manifest_ready")await this.player.initRepresentations(m.id,b==null?void 0:b.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",m.id),b){let y=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",b.id,y)}},r)),this.subscription.add((0,W.combine)({videoState:this.videoState.stateChangeEnded$,autoVideoTrackState:(0,W.merge)((0,W.observableFrom)([t.autoVideoTrackSwitching.getState()]),t.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,W.map)(d=>d.to)))}).pipe((0,W.map)(({videoState:d,autoVideoTrackState:p})=>d.to!=="stopped"&&p),(0,W.filterChanged)()).subscribe(d=>this.player.setSmartRepresentationSwitch(d))),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:d})=>{this.scene3D&&d&&this.scene3D.pointCameraTo(d.x,d.y)})),this.subscription.add(this.elementSizeManager.subscribe(d=>{this.scene3D&&d&&this.scene3D.setViewportSize(d.width,d.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,W.filterChanged)()).subscribe(d=>{let p=[...this.videoTracksMap.entries()].find(([,{representation:v}])=>v.id===d);if(!p){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[h,{stream:m}]=p,b=this.params.desiredState.videoStream.getTransition();b&&b.to&&b.to.id===m.id&&this.params.desiredState.videoStream.setState(b.to),e.currentVideoTrack$.next(h),e.currentVideoStream$.next(Ll(m));let S=this.player.calculateDurationFromSegments();S&&this.params.output.duration$.next(S/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,W.filterChanged)()).subscribe(d=>{let p=[...this.audioTracksMap.entries()].find(([,{representation:S}])=>S.id===d);if(!p){e.currentAudioStream$.next(void 0);return}let[h,{stream:m}]=p,b=this.params.desiredState.audioStream.getTransition();b&&b.to&&b.to.id===m.id&&this.params.desiredState.audioStream.setState(b.to),e.currentAudioStream$.next($l(m))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(d=>{var p,h;if(d!=null&&d.is3dVideo&&((p=this.params.tuning.spherical)!=null&&p.enabled))try{this.init3DScene(d),e.is3DVideo$.next(!0)}catch(m){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${m}`})}else this.destroy3DScene(),(h=this.params.tuning.spherical)!=null&&h.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let c=t.playbackState.stateChangeStarted$.pipe((0,W.map)(({to:d})=>d==="ready"),(0,W.filterChanged)());this.subscription.add((0,W.merge)(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,W.observableFrom)(["init"])).subscribe(()=>{let d=t.autoVideoTrackSwitching.getState(),h=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:d?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(h)})),this.subscription.add((0,W.merge)(c,this.player.state$.stateChangeEnded$,(0,W.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let l=(0,W.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,W.observableFrom)(["init"])).pipe((0,W.debounce)(0));this.subscription.add(l.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var O,H,V,Q,U,ie,le,oe,A,$,k,R,Z;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Oa:_a,t=this.params.tuning.useNewAutoSelectVideoTrack?io:to,i=this.params.tuning.useNewAutoSelectVideoTrack?Ut:eo,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(O=r.videoTrack.getState())==null?void 0:O.id,u=[...this.videoTracksMap.keys()].find(({id:K})=>K===o),c=a.currentVideoTrack$.getValue(),l=((Q=(V=r.videoStream.getState())!=null?V:u&&((H=this.videoTracksMap.get(u))==null?void 0:H.stream))!=null?Q:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!l)return;let d=[...this.videoStreamsMap.keys()].find(({id:K})=>K===l.id),p=d&&this.videoStreamsMap.get(d);if(!p)return;let h=ki(this.video.buffered,this.video.currentTime*1e3),m;this.player.isActiveLive$.getValue()?m=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?m=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:m=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,S=Math.min(h/Math.min(m,b||1/0),1),v=(U=r.audioStream.getState())!=null?U:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,y=(ie=[...this.audioStreamsMap.keys()].find(({id:K})=>K===(v==null?void 0:v.id)))!=null?ie:this.audioStreamsMap.keys().next().value,x=0;if(y){if(u&&!n){let K=e(u,p,(le=this.audioStreamsMap.get(y))!=null?le:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,(oe=K==null?void 0:K.bitrate)!=null?oe:-1/0)}if(c){let K=e(c,p,(A=this.audioStreamsMap.get(y))!=null?A:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,($=K==null?void 0:K.bitrate)!=null?$:-1/0)}}let w=u;(n||!w)&&(w=i(p,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:x,forwardBufferHealth:S,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let M=y&&t(w,p,(k=this.audioStreamsMap.get(y))!=null?k:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:S,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),_=(R=this.videoTracksMap.get(w))==null?void 0:R.representation,q=M&&((Z=this.audioTracksMap.get(M))==null?void 0:Z.representation);if(_&&q)return[_,q];if(_&&!q&&this.audioTracksMap.size===0)return[_,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){it(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:W.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Ze(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML),this.tracer.end()}};var Ms=class extends ur{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:i}=this.getProviderSubscriptionInfo();i(t.timeUpdate$,e.position$),i(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}};var ge=require("@vkontakte/videoplayer-shared/es2018");var $s=class extends ur{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=!1,t=-1,{output:i,observableVideo:r,desiredState:a,connect:n}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canPlayLiveTailBuffer$.next(!0),n(r.timeUpdate$,i.liveBufferTime$),n(this.player.liveSeekableDuration$,i.duration$),n(this.player.liveLatency$,i.liveLatency$);let o=new ge.ValueSubject(1);n(r.playbackRateState$,o),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe((0,ge.filterChanged)()).subscribe(u=>{let c=i.position$.getValue(),l=i.volume$.getValue(),d=!l.volume||l.muted;!u&&!c&&d?e=!0:u&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(a.isLowLatency.stateChangeEnded$.pipe((0,ge.map)(u=>u.to)).subscribe(this.player.isLowLatency$)).add((0,ge.combine)({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,ge.map)(({liveBufferTime:u,liveAvailabilityStartTime:c})=>u&&c?u*1e3+c+t:void 0)).subscribe(i.liveTime$)).add((0,ge.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,ge.merge)(r.playbackRateState$,new ge.ValueSubject(1))}).pipe((0,ge.filter)(({liveStreamStatus:u,liveDuration:c})=>u==="active"&&!!c)).subscribe(({liveDuration:u,playbackRate:c})=>{let l=i.liveBufferTime$.getValue(),d=i.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;d||c<1-p||this.video.paused||(0,ge.isNullable)(l)||(t=u-l)})).add((0,ge.combine)({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,ge.merge)(r.playbackRateState$,new ge.ValueSubject(1))}).pipe((0,ge.filterChanged)((u,c)=>this.player.liveStreamStatus$.getValue()==="active"?u.liveDuration===c.liveDuration:u.time===c.time)).subscribe(({time:u,liveDuration:c,playbackRate:l})=>{let d=i.position$.getValue(),{playbackCatchupSpeedup:p}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-p||(0,ge.isNullable)(u)||(0,ge.isNullable)(c))return;let h=-1*(c-u-t);i.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(u=>{if(u){let c=My(u);this.params.output.availableTextTracks$.next([c])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe((0,ge.filter)(u=>(0,ge.isNonNullable)(u))).subscribe(u=>i.isLiveEnded$.next(u==="unpublished"&&i.position$.getValue()===0)))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(i).then(()=>{this.params.output.position$.next(e/1e3)})}};var jy="X-Playback-Duration",Fl=async s=>{var r;let e=await vt(s),t=await e.text(),i=(r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(t))==null?void 0:r[1];return i?parseInt(i,10):e.headers.has(jy)?parseInt(e.headers.get(jy),10):void 0};var ne=require("@vkontakte/videoplayer-shared/es2018");var ql=G(sc(),1);var Uo=require("@vkontakte/videoplayer-shared/es2018");var iL=s=>{let e=null;if(s.QUALITY&&(e=vi(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,Uo.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},rL=(s,e)=>{var a,n;let t=s.split(`
179
- `),i=[],r=[];for(let o=0;o<t.length;o++){let u=t[o],c=u.match(/^#EXT-X-STREAM-INF:(.+)/),l=u.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!c&&!l)){if(c){let d=(0,ql.default)(c[1].split(",").map(y=>y.split("="))),p=(a=d.QUALITY)!=null?a:`stream-${d.BANDWIDTH}`,h=iL(d),m;d.BANDWIDTH&&(m=parseInt(d.BANDWIDTH,10)/1e3||void 0),!m&&d["AVERAGE-BANDWIDTH"]&&(m=parseInt(d["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let b=d["FRAME-RATE"]?parseFloat(d["FRAME-RATE"]):void 0,S;if(d.RESOLUTION){let[y,x]=d.RESOLUTION.split("x").map(w=>parseInt(w,10));y&&x&&(S={width:y,height:x})}let v=new URL(t[++o],e).toString();h&&i.push({id:p,quality:h,url:v,bandwidth:m,size:S,fps:b})}if(l){let d=(0,ql.default)(l[1].split(",").map(b=>{let S=b.indexOf("=");return[b.substring(0,S),b.substring(S+1)]}).map(([b,S])=>[b,S.replace(/^"|"$/g,"")])),p=(n=d.URI)==null?void 0:n.replace(/playlist$/,"subtitles.vtt"),h=d.LANGUAGE,m=d.NAME;p&&h&&r.push({type:"internal",id:h,label:m,language:h,url:p,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},aL=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),Ul=0,Hy=async(s,e=s,t,i)=>{let a=await(await vt(s,i)).text();Ul+=1;try{let{qualityManifests:n,textTracks:o}=rL(a,e);return{qualityManifests:n,textTracks:o}}catch(n){if(Ul<=t.manifestRetryMaxCount)return await aL((0,Uo.getExponentialDelay)(Ul-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),Hy(s,e,t)}return{qualityManifests:[],textTracks:[]}},qo=Hy;var pt=require("@vkontakte/videoplayer-shared/es2018");var jo=class{constructor(e,t,i,r,a){this.subscription=new pt.Subscription;this.abortControllers={destroy:new ye,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new pt.ValueSubject(null);this.getCurrentTime$=new pt.ValueSubject(null);this.error$=new pt.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe((0,pt.throttle)(1e3)).subscribe(n=>{this.processLiveTime(n)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+t.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}async prepare(e){try{let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),this.prepareUrl=t.toString();let{textTracks:i}=await this.fetchManifestData();await this.processTextTracks(i,this.params.sourceUrl)}catch(t){this.error("prepare",t)}}async processTextTracks(e,t){try{let i=await this.parseTextTracks(e,t);i&&(this.currentTextTrackData=i)}catch(i){this.error("processTextTracks",i)}}async parseTextTracks(e,t){for(let i of e){let r=new URL(i.url,t).toString(),n=await(await vt(r,{signal:this.abortControllers.destroy.signal})).text(),o=this.parsePlaylist(n,r);return{textTrack:i,playlist:o}}}parsePlaylist(e,t){let i={mediaSequence:0,programDateTime:"",segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:""},r=e.split(`
180
- `),a=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],c=new URL(u,t).toString(),l=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+l},url:c}),a=a+l,!i.segmentStartTime){let d=new Date(i.vkStartTime).valueOf(),p=new Date(i.programDateTime).valueOf();i.segmentStartTime=p-d}break}case o.startsWith("#EXT-X-TARGETDURATION:"):i.targetDuration=Number(this.extractPlaylistRowValue("#EXT-X-TARGETDURATION:",o));break;case o.startsWith("#EXT-X-MEDIA-SEQUENCE:"):i.mediaSequence=Number(this.extractPlaylistRowValue("#EXT-X-MEDIA-SEQUENCE:",o));break;case o.startsWith("#EXT-X-VK-PLAYBACK-DURATION:"):i.vkPlaybackDuration=Number(this.extractPlaylistRowValue("#EXT-X-VK-PLAYBACK-DURATION:",o));break;case o.startsWith("#EXT-X-PROGRAM-DATE-TIME:"):{let u=this.extractPlaylistRowValue("#EXT-X-PROGRAM-DATE-TIME:",o);i.programDateTime=u;let c=new Date(u);c.setMilliseconds(0),a=c.valueOf();break}case o.startsWith("#EXT-X-VK-START-TIME:"):i.vkStartTime=this.extractPlaylistRowValue("#EXT-X-VK-START-TIME:",o);break}}return i}extractPlaylistRowValue(e,t){switch(e){case"#EXTINF:":return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if((0,pt.isNonNullable)(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:i}=t[0].time,{to:r}=t[t.length-1].time;if(e<i||e>r)return;r-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new ye;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error("fetchNextManifestData",e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){var t;let e=(t=this.prepareUrl)!=null?t:this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:"[LiveTextManager][HLS_LIVE_CMAF]",category:pt.ErrorCategory.WTF,thrown:t,message:e})}};var Ls=class{constructor(e){this.subscription=new ne.Subscription;this.videoState=new ae("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new ne.ValueSubject([]);this.liveOffset=new Xi;this.manifestStartTime$=new ne.ValueSubject(void 0);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),B(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let c=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let l=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(l),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),c.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if((r==null?void 0:r.to)!=="paused"&&c.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(c.position&&c.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?B(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),B(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.liveOffset.pause(),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&B(this.params.desiredState.playbackState,"playing");return;case"paused":if(i==="playing")if(this.videoState.startTransitionTo("playing"),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let l=this.liveOffset.getTotalOffset();l>=this.maxSeekBackTime$.getValue()&&(l=0,this.liveOffset.resetTo(l)),this.liveOffset.resume(),this.params.output.position$.next(-l/1e3),this.prepare()}else(r==null?void 0:r.to)==="paused"&&(B(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,ne.assertNever)(t)}};var i;this.params=e,this.video=Je(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:ne.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,a)=>qo(r,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},a);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new jo(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new mt(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:r,textTracks:a})=>{var n;r.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:ne.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),(n=this.liveTextManager)==null||n.processTextTracks(a,this.params.source.url),this.manifests$.next([this.masterManifest,...r])}).catch(r=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:ne.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:r})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(We(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new ne.ValueSubject((i=e.source.maxSeekBackTime)!=null?i:1/0),this.subscribe()}selectManifest(){var u,c,l,d;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(d=(l=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?l:(c=t.getState())==null?void 0:c.id)!=null?d:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(p=>p.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:ne.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=tt(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.ended$,e.endedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.currentBuffer$,e.currentNativeBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(et(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ft(this.video,t.playbackRate,r.playbackRateState$,i)),a(gt(this.video),e.elementVisible$),this.liveTextManager?(a(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),a(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),B(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(o=>{o&&this.params.output.availableTextTracks$.next(o)})),this.subscription.add(this.maxSeekBackTime$.pipe((0,ne.filterChanged)(),(0,ne.map)(o=>-o/1e3)).subscribe(this.params.output.duration$,i)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),c=this.params.desiredState.videoTrack.getTransition(),l=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(c&&(0,ne.isNonNullable)(c.to)){let d=c.to.id;this.params.desiredState.videoTrack.setState(c.to);let p=this.manifests$.getValue().find(h=>h.id===d);p&&(this.params.output.currentVideoTrack$.next(p),this.params.output.hostname$.next(We(p.url)))}l&&this.params.desiredState.autoVideoTrackSwitching.setState(l.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o&&o.state==="requested"&&this.seek(o.position)},i)),this.subscription.add(r.loadedData$.subscribe(()=>{var u,c,l;let o=(l=(c=(u=this.video)==null?void 0:u.getStartDate)==null?void 0:c.call(u))==null?void 0:l.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,ne.combine)({startTime:this.manifestStartTime$.pipe((0,ne.filter)(ne.isNonNullable)),currentTime:r.timeUpdate$}).subscribe(({startTime:o,currentTime:u})=>this.params.output.liveTime$.next(o+u*1e3),i)),this.subscription.add(this.manifests$.pipe((0,ne.map)(o=>o.map(({id:u,quality:c,size:l,bandwidth:d,fps:p})=>({id:u,quality:c,size:l,fps:p,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,ne.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,ne.observableFrom)(["init"])).pipe((0,ne.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){var e,t;this.subscription.unsubscribe(),(e=this.textTracksManager)==null||e.destroy(),(t=this.liveTextManager)==null||t.destroy(),this.params.output.element$.next(void 0),Ze(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){var o,u,c;let e=this.selectManifest();if((0,ne.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:l,min:d}=(u=(o=t==null?void 0:t.to)!=null?o:i)!=null?u:{};for(let[p,h]of[[l,"mq"],[d,"lq"]]){let m=String(parseFloat(p||""));h&&p&&r.searchParams.set(h,m)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=Ae(r.toString(),this.liveOffset.getTotalOffset(),a);(c=this.liveTextManager)==null||c.prepare(n),this.video.setAttribute("src",n),this.video.load(),Fl(n).then(l=>{var d;if(!(0,ne.isNullable)(l))this.maxSeekBackTime$.next(l);else{let p=(d=this.params.source.maxSeekBackTime)!=null?d:this.maxSeekBackTime$.getValue();((0,ne.isNullable)(p)||!isFinite(p))&&vt(n).then(h=>h.text()).then(h=>{var b;let m=(b=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(h))==null?void 0:b[1];if(m){let S=new URL(m,n).toString();Fl(S).then(v=>{(0,ne.isNullable)(v)||this.maxSeekBackTime$.next(v)})}}).catch(()=>{})}})}playIfAllowed(){it(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),B(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ne.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,i=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(i),this.params.output.position$.next(-i/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=Ae(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set("enable-subtitles","yes"),e=t.toString()}return e}};var de=require("@vkontakte/videoplayer-shared/es2018");var Cs=class{constructor(e){this.subscription=new de.Subscription;this.videoState=new ae("stopped");this.manifests$=new de.ValueSubject([]);this.unmuteAfterBrowserResetsHappened=new de.ValueSubject(!1);this.syncPlayback=()=>{if(!this.manifests$.getValue().length)return;let t=this.videoState.getState(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),a=this.params.desiredState.videoTrack.getTransition(),n=this.params.desiredState.autoVideoTrackSwitching.getTransition(),o=this.params.desiredState.autoVideoTrackLimits.getTransition();if(i==="stopped"){t!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),B(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let c=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let l=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(l);let{currentTime:d}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),c.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:d*1e3,forcePrecise:!0});return}switch((r==null?void 0:r.to)!=="paused"&&c.state==="requested"&&this.seek(c.position),t){case"ready":i==="ready"?B(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused")):i==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":i==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(r==null?void 0:r.to)==="playing"&&B(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&B(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,de.assertNever)(t)}};this.textTracksManager=new mt(e.source.url),this.params=e,this.video=Je(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:de.VideoQuality.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(We(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.manifestRequested$.next(),qo(Ae(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:t,textTracks:i})=>{this.params.output.firstBytesManifest$.next(),this.manifests$.next([this.masterManifest,...t]),this.params.output.manifestReceived$.next(),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:de.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){var u,c,l,d;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(d=(l=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?l:(c=t.getState())==null?void 0:c.id)!=null?d:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),n.find(p=>p.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:de.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=tt(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u));if(a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.currentBuffer$,e.currentNativeBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.seeked$,e.seekedEvent$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),a(this.videoState.stateChangeEnded$.pipe((0,de.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Ft(this.video,t.isLooped,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ft(this.video,t.playbackRate,r.playbackRateState$,i)),Ti({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(et(this.video,t.volume,r.volumeState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),B(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var o;((o=this.videoState.getTransition())==null?void 0:o.to)==="ready"&&this.videoState.setState("ready"),this.videoState.getState()==="playing"&&this.playIfAllowed()},i).add(r.loadedMetadata$.subscribe(()=>{var h;let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),c=this.params.desiredState.videoTrack.getTransition(),l=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(c&&(0,de.isNonNullable)(c.to)){let m=c.to.id;this.params.desiredState.videoTrack.setState(c.to);let b=this.manifests$.getValue().find(S=>S.id===m);b&&(this.params.output.currentVideoTrack$.next(b),this.params.output.hostname$.next(We(b.url)))}let d=this.params.desiredState.playbackRate.getState(),p=(h=this.params.output.element$.getValue())==null?void 0:h.playbackRate;if(d!==p){let m=this.params.output.element$.getValue();m&&(this.params.desiredState.playbackRate.setState(d),m.playbackRate=d)}l&&this.params.desiredState.autoVideoTrackSwitching.setState(l.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")})),this.subscription.add(this.manifests$.pipe((0,de.map)(o=>o.map(({id:u,quality:c,size:l,bandwidth:d,fps:p})=>({id:u,quality:c,size:l,fps:p,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i)),!j.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,de.merge)((0,de.fromEvent)(o,"addtrack"),(0,de.fromEvent)(o,"removetrack"),(0,de.fromEvent)(o,"change"),(0,de.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,de.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,de.observableFrom)(["init"])).pipe((0,de.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Ze(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){var a,n;let e=this.selectManifest();if((0,de.isNullable)(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||i)&&e.id===this.masterManifest.id){let{max:o,min:u}=(n=(a=t==null?void 0:t.to)!=null?a:i)!=null?n:{};for(let[c,l]of[[o,"mq"],[u,"lq"]]){let d=String(parseFloat(c||""));l&&c&&r.searchParams.set(l,d)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){it(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:de.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var Wy=G(mi(),1),jl=G(Hi(),1),Qy=G(bt(),1);var Ee=require("@vkontakte/videoplayer-shared/es2018");var Ds=class{constructor(e){this.subscription=new Ee.Subscription;this.videoState=new ae("stopped");this.trackUrls={};this.textTracksManager=new mt;this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.removeAttribute("src"),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),B(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(a&&e!=="ready"&&!n){this.handleQualityLimitTransition(a.to);return}if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(n){let{currentTime:u}=this.video;this.prepare(),o.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:u*1e3,forcePrecise:!0});return}switch((i==null?void 0:i.to)!=="paused"&&o.state==="requested"&&this.seek(o.position),e){case"ready":t==="ready"?B(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&B(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&B(this.params.desiredState.playbackState,"paused");return;default:return(0,Ee.assertNever)(e)}};this.params=e,this.video=Je(e.container,e.tuning),this.params.output.element$.next(this.video),(0,Wy.default)(this.params.source).reverse().forEach(([t,i],r)=>{let a=r.toString(10);this.trackUrls[a]={track:{quality:t,id:a},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,jl.default)(this.trackUrls).map(({track:t})=>t)),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.desiredState.autoVideoTrackSwitching.setState(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.subscribe()}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"MpegProvider",category:Ee.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=tt(this.video);this.subscription.add(()=>r.destroy());let a=(o,u)=>this.subscription.add(o.subscribe(u,i));a(r.timeUpdate$,e.position$),a(r.durationChange$,e.duration$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentNativeBuffer$),a(r.currentBuffer$,e.currentBuffer$),a(r.loadedMetadata$,e.firstBytesEvent$),a(r.loadedMetadata$,e.loadedMetadataEvent$),a(r.playing$,e.firstFrameEvent$),a(r.canplay$,e.canplay$),a(r.seeked$,e.seekedEvent$),a(r.inPiP$,e.inPiP$),a(r.inFullscreen$,e.inFullscreen$),a(this.videoState.stateChangeEnded$.pipe((0,Ee.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(Ft(this.video,t.isLooped,i)),Ti({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add(et(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ft(this.video,t.playbackRate,r.playbackRateState$,i)),a(gt(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),B(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var u,c;((u=this.videoState.getTransition())==null?void 0:u.to)==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,Ee.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let l=this.params.desiredState.playbackRate.getState(),d=(c=this.params.output.element$.getValue())==null?void 0:c.playbackRate;if(l!==d){let p=this.params.output.element$.getValue();p&&(this.params.desiredState.playbackRate.setState(l),p.playbackRate=l)}}this.videoState.getState()==="playing"&&!this.video.ended&&this.playIfAllowed()},i)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState("paused"),B(t.playbackState,"paused")})),this.textTracksManager.connect(this.video,t,e);let n=(0,Ee.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,Ee.observableFrom)(["init"])).pipe((0,Ee.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Ze(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;(0,Ee.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,Ee.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Ii(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(We(t))}playIfAllowed(){it(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Ee.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){var c,l;this.params.output.autoVideoTrackLimits$.next(e);let t=d=>{this.params.output.currentVideoTrack$.next(d),this.params.desiredState.videoTrack.startTransitionTo(d)},i=d=>{let p=Ut(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:d,abrLogger:this.params.dependencies.abrLogger});t(p)},r=(c=this.params.output.currentVideoTrack$.getValue())==null?void 0:c.quality,a=!!(e.max||e.min),n=(0,jl.default)(this.trackUrls).map(d=>d.track);if(!r||!a||Br(e,n[0].quality,(l=(0,Qy.default)(n,-1))==null?void 0:l.quality)){i();return}let o=e.max?(0,Ee.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,Ee.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var we=require("@vkontakte/videoplayer-shared/es2018");var Gy=require("@vkontakte/videoplayer-shared/es2018"),zy=["stun:videostun.mycdn.me:80"],sL=1e3,nL=3,Hl=()=>null,Ho=class{constructor(e,t){this.ws=null;this.peerConnection=null;this.serverUrl="";this.streamKey="";this.stream=null;this.signalingType="JOIN";this.retryCount=0;this.externalStartCallback=Hl;this.externalStopCallback=Hl;this.externalErrorCallback=Hl;this.options=this.normalizeOptions(t);let i=e.split("/");this.serverUrl=i.slice(0,i.length-1).join("/"),this.streamKey=i[i.length-1]}onStart(e){try{this.externalStartCallback=e}catch(t){this.handleSystemError(t)}}onStop(e){try{this.externalStopCallback=e}catch(t){this.handleSystemError(t)}}onError(e){try{this.externalErrorCallback=e}catch(t){this.handleSystemError(t)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(t){this.handleRTCError(t)}}onSocketError(e){try{this.externalErrorCallback(new Error(e.toString()))}catch(t){this.handleRTCError(t)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case"JOIN":case"CALL_JOIN":this.handleJoinMessage(t);break;case"UPDATE":this.handleUpdateMessage(t);break;case"STATUS":this.handleStatusMessage(t);break}}catch(t){this.handleRTCError(t)}}handleJoinMessage(e){switch(e.inviteType){case"ANSWER":this.handleAnswer(e.sdp);break;case"CANDIDATE":this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case"UNPUBLISHED":this.handleUnpublished();break}}async handleUpdateMessage(e){try{let t=await this.createOffer();this.peerConnection&&await this.peerConnection.setLocalDescription(t),this.handleAnswer(e.sdp)}catch(t){this.handleRTCError(t)}}async handleLogin(){try{let e={iceServers:[{urls:zy}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=await this.createOffer();await this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:"OFFER",streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}}async handleAnswer(e){try{this.peerConnection&&await this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:"answer",sdp:e}))}catch(t){this.handleRTCError(t)}}async handleCandidate(e){if(e)try{this.peerConnection&&await this.peerConnection.addIceCandidate(e)}catch(t){this.handleRTCError(t)}}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:"webrtc-provider-error",category:Gy.ErrorCategory.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:"CANDIDATE",candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;["failed","closed"].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw new Error("Can not create offer - no peer connection instance ");let t=await this.peerConnection.createOffer(e),i=t.sdp||"";if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(i))throw new Error("No h264 codec support error");return t}handleRTCError(e){try{this.externalErrorCallback(e||new Error("RTC connection error"))}catch(t){this.handleSystemError(t)}}handleNetworkError(){try{this.externalErrorCallback(new Error("Network error"))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch(t){throw new Error("Can not parse socket message")}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,e=null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),sL)}normalizeOptions(e={}){let t={stunServerList:zy,maxRetryNumber:nL,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Bs=class{constructor(e){this.videoState=new ae("stopped");this.maxSeekBackTime$=new we.ValueSubject(0);this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),i=this.params.desiredState.playbackState.getTransition();if(t==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.video.pause(),this.video.srcObject=null,this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState("stopped"),B(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let a=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused")):t==="playing"&&(this.videoState.startTransitionTo("playing"),this.playIfAllowed());return;case"playing":t==="paused"?(this.videoState.startTransitionTo("paused"),this.video.paused?this.videoState.setState("paused"):this.video.pause()):(i==null?void 0:i.to)==="playing"&&B(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&B(this.params.desiredState.playbackState,"paused");return;default:return(0,we.assertNever)(e)}};this.subscription=new we.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=Je(e.container,e.tuning),this.liveStreamClient=new Ho(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Ze(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:we.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,we.merge)(this.videoState.stateChangeStarted$.pipe((0,we.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,we.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=tt(this.video);this.subscription.add(()=>r.destroy());let a=(n,o)=>this.subscription.add(n.subscribe(o,i));a(r.timeUpdate$,e.liveTime$),a(r.ended$,e.endedEvent$),a(r.looped$,e.loopedEvent$),a(r.error$,e.error$),a(r.isBuffering$,e.isBuffering$),a(r.currentBuffer$,e.currentBuffer$),a(r.currentBuffer$,e.currentNativeBuffer$),a(gt(this.video),this.params.output.elementVisible$),this.subscription.add(r.durationChange$.subscribe(n=>{e.duration$.next(n===1/0?0:n)})).add(r.canplay$.subscribe(()=>{var n;((n=this.videoState.getTransition())==null?void 0:n.to)==="ready"&&this.videoState.setState("ready")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused")},i)).add(r.playing$.subscribe(()=>{this.videoState.setState("playing")},i)).add(r.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add(et(this.video,t.volume,r.volumeState$,i)).add(r.volumeState$.subscribe(e.volume$,i)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case"stopped":e.position$.next(0),e.duration$.next(0),t.playbackState.setState("stopped");break;case"ready":break;case"paused":t.playbackState.setState("paused");break;case"playing":t.playbackState.setState("playing");break;default:return(0,we.assertNever)(n.to)}},i)).add((0,we.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,we.observableFrom)(["init"])).pipe((0,we.debounce)(0)).subscribe(this.syncPlayback.bind(this),i)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),i))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(We(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:"webrtc",quality:we.VideoQuality.INVARIANT}),this.video.srcObject=e,B(this.params.desiredState.playbackState,"playing")}onLiveStreamStop(){this.videoState.startTransitionTo("stopped"),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:we.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){it(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),B(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:we.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var Kr=class{constructor(e){this.length=e.length,this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next(),this.index=this.index===void 0?0:this.index+1}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}isLast(){return this.index===this.length-1}};var E=require("@vkontakte/videoplayer-shared/es2018");var ii=require("@vkontakte/videoplayer-shared/es2018");var Yy=s=>new ii.Observable(e=>{let t=new ii.Subscription,i=s.desiredPlaybackState$.stateChangeStarted$.pipe((0,ii.map)(({from:c,to:l})=>`${c}-${l}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe((0,ii.map)(({type:c})=>c!==void 0)),n=new ii.Subject,o=0,u="unknown";return t.add(i.subscribe(c=>{o&&window.clearTimeout(o),u=c,o=window.setTimeout(()=>n.next(c),s.maxTransitionInterval),X({m:"hangup.set",l:c,id:o})})),t.add(r.subscribe(()=>{X({m:"hangup.cl",id:o}),window.clearTimeout(o),u="unknown",o=0})),t.add(a.subscribe(c=>{o&&(X({m:"hangup.rs.0",id:o}),window.clearTimeout(o),o=0,c&&(o=window.setTimeout(()=>n.next(u),s.maxTransitionInterval),X({m:"hangup.rs.1",id:o})))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var yt=require("@vkontakte/videoplayer-shared/es2018");function Ky(){return new(window.AudioContext||window.webkitAudioContext)}var Vs=class Vs{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new ye;this.subscriptions=new yt.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,yt.filter)(a=>!!a.type),(0,yt.once)()).subscribe(({type:a})=>this.subscribe(a)))}subscribe(e){j.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,yt.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,yt.filter)(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),(0,yt.once)()).subscribe(({video:t})=>{this.initAudioContextOnce(t).then(i=>{i||this.destroy()}).catch(i=>{this.handleError(i),this.destroy()})}))}static isSupported(){return"AudioContext"in window&&"GainNode"in window&&"MediaElementAudioSourceNode"in window}async initAudioContextOnce(e){let{volumeMultiplier:t}=this,i=Ky();this.audioContext=i;let r=i.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(i.destination),i.state==="suspended"&&(await i.resume(),this.destroyController.signal.aborted))return!1;let a=i.createMediaElementSource(e);return this.mediaElementSource=a,a.connect(r),!0}cleanup(){this.mediaElementSource&&(this.mediaElementSource.disconnect(),this.mediaElementSource=null),this.gainNode&&(this.gainNode.disconnect(),this.gainNode=null),this.audioContext&&(this.audioContext.state!=="closed"&&this.audioContext.close(),this.audioContext=null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){var t;this.volumeMultiplierError$.next({id:Vs.errorId,category:yt.ErrorCategory.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${Vs.errorId} exception`,thrown:e})}};Vs.errorId="VolumeMultiplierManager";var Xr=Vs;var oL={chunkDuration:5e3,maxParallelRequests:5},_s=class{constructor(e){this.current$=new E.ValueSubject({type:void 0});this.providerError$=new E.Subject;this.noAvailableProvidersError$=new E.Subject;this.volumeMultiplierError$=new E.Subject;this.providerOutput={position$:new E.ValueSubject(0),duration$:new E.ValueSubject(1/0),volume$:new E.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new E.ValueSubject([]),currentVideoStream$:new E.ValueSubject(void 0),availableVideoTracks$:new E.ValueSubject([]),currentVideoTrack$:new E.ValueSubject(void 0),availableVideoCodecs$:new E.ValueSubject([]),availableAudioStreams$:new E.ValueSubject([]),currentAudioStream$:new E.ValueSubject(void 0),availableAudioTracks$:new E.ValueSubject([]),availableAudioCodecs$:new E.ValueSubject([]),currentVideoSegmentLength$:new E.ValueSubject(0),currentAudioSegmentLength$:new E.ValueSubject(0),isAudioAvailable$:new E.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new E.ValueSubject(!1),autoVideoTrackLimits$:new E.ValueSubject(void 0),currentBuffer$:new E.ValueSubject(void 0),currentNativeBuffer$:new E.ValueSubject(void 0),isBuffering$:new E.ValueSubject(!0),error$:new E.Subject,fetcherError$:new E.Subject,fetcherRecoverableError$:new E.Subject,warning$:new E.Subject,willSeekEvent$:new E.Subject,soundProhibitedEvent$:new E.Subject,seekedEvent$:new E.Subject,loopedEvent$:new E.Subject,endedEvent$:new E.Subject,manifestRequested$:new E.Subject,firstBytesManifest$:new E.Subject,manifestReceived$:new E.Subject,firstBytesRequested$:new E.Subject,firstBytesReceived$:new E.Subject,firstBytesEvent$:new E.Subject,loadedMetadataEvent$:new E.Subject,firstFrameEvent$:new E.Subject,canplay$:new E.Subject,isLive$:new E.ValueSubject(void 0),isLiveEnded$:new E.ValueSubject(null),canPlayLiveTailBuffer$:new E.ValueSubject(!1),isLowLatency$:new E.ValueSubject(!1),canChangePlaybackSpeed$:new E.ValueSubject(!0),liveTime$:new E.ValueSubject(void 0),liveBufferTime$:new E.ValueSubject(void 0),liveLatency$:new E.ValueSubject(void 0),severeStallOccurred$:new E.Subject,availableTextTracks$:new E.ValueSubject([]),currentTextTrack$:new E.ValueSubject(void 0),hostname$:new E.ValueSubject(void 0),httpConnectionType$:new E.ValueSubject(void 0),httpConnectionReused$:new E.ValueSubject(void 0),httpConnectionMetrics$:new E.ValueSubject(void 0),httpDownloadMetrics$:new E.ValueSubject(void 0),inPiP$:new E.ValueSubject(!1),inFullscreen$:new E.ValueSubject(!1),element$:new E.ValueSubject(void 0),elementVisible$:new E.ValueSubject(!0),availableSources$:new E.ValueSubject(void 0),is3DVideo$:new E.ValueSubject(!1),playbackState$:new E.ValueSubject(""),getCurrentTime$:new E.ValueSubject(null)};this.subscription=new E.Subscription;this.volumeMultiplierManager=null;this.params=e,this.log=this.params.dependencies.logger.createComponentLog("ProviderContainer"),this.tracer=e.dependencies.tracer.createComponentTracer(this.constructor.name);let t=_u([...by(this.params.tuning),...my(this.params.tuning)]).filter(c=>(0,E.isNonNullable)(e.sources[c])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(c=>!(0,Wl.default)(r,c)),...t.filter(c=>(0,Wl.default)(r,c))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",(0,E.flattenObject)(a)),this.screenFormatsIterator=new Kr(a);let n=[...Rl(!0),...Rl(!1)];this.chromecastFormatsIterator=new Kr(n.filter(c=>(0,E.isNonNullable)(e.sources[c]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Xr.isSupported()&&(this.volumeMultiplierManager=new Xr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){X.reset(),this.subscription.add(this.initProviderErrorHandling()).add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()})).add(this.providerOutput.availableVideoCodecs$.subscribe(e=>{!this.videoCodecsIterator&&e.length>1&&(this.videoCodecsIterator=new Kr(e))}))}destroy(){var e;this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),(e=this.volumeMultiplierManager)==null||e.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if((0,E.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:E.ErrorCategory.WTF,message:"Failed to create provider",thrown:r})}i?this.current$.next({type:t,provider:i,destination:e}):this.current$.next({type:void 0})}reinitProvider(){this.tracer.log("reinitProvider"),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log("switchToNextProvider",{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}switchToNextVideoCodec(){this.params.tuning.dash.codecsPrioritizeEnabled&&!this.videoCodecsIterator.isLast()&&(this.tracer.log("switchToNextVideoCodec"),this.destroyProvider(),this.videoCodecsIterator.next(),this.initProvider())}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:"destroyProvider"}),this.tracer.log("destroyProvider"),e.destroy();let t=this.providerOutput.position$.getValue()*1e3,i=this.params.desiredState.seekState.getState(),r=i.state!=="none";if(this.params.desiredState.seekState.setState({state:"requested",position:r?i.position:t,forcePrecise:r?i.forcePrecise:!1}),e.scene3D){let n=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:n.x,y:n.y})}let a=this.providerOutput.isBuffering$;a.getValue()||a.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log("createProvider",{destination:e,format:t}),e){case"SCREEN":return this.createScreenProvider(t);case"CHROMECAST":return this.createChromecastProvider(t);default:return(0,E.assertNever)(e)}}createScreenProvider(e){var u,c;let{sources:t,container:i,desiredState:r,panelSize:a}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:a};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let l=this.applyFailoverHost(t[e]),d=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);(0,E.assertNonNullable)(l);let{useDashProviderVirtual:p,useDashProviderVirtualMobile:h}=this.params.tuning,{isMobile:m}=j.device;return!m&&p||m&&h?new xs({...o,source:l,sourceHls:d,forceVideoCodec:(u=this.videoCodecsIterator)==null?void 0:u.getValue()}):new Ms({...o,source:l,sourceHls:d,forceVideoCodec:(c=this.videoCodecsIterator)==null?void 0:c.getValue()})}case"DASH_LIVE_CMAF":{let l=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(l),this.params.tuning.useDashProviderVirtual&&!j.device.isMobile?new Yr({...o,source:l}):this.params.tuning.useDashProviderVirtualMobile&&j.device.isMobile?new Yr({...o,source:l}):new $s({...o,source:l})}case"HLS":case"HLS_ONDEMAND":case"HLS_FMP4":{let l=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(l),new Cs({...o,source:l})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let l=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(l),new Ls({...o,source:l,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let l=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(l),new Ds({...o,source:l})}case"DASH_LIVE":{let l=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(l),new wv({...o,source:l,config:{...oL,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let l=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(l),new Bs({container:i,source:l,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,E.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:a}=this.params,n=this.providerOutput,o={meta:a,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning};if(this.params.tuning.chromecastPresentationApi&&this.params.dependencies.chromecastInitializer instanceof Gt){let{chromecastConnector:c}=this.params.dependencies.chromecastInitializer;return(0,E.assertNonNullable)(c),new Sa({...o,chromecastConnector:c})}let u=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,E.assertNonNullable)(u),new Ca({...o,connection:u})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?"CHROMECAST":"SCREEN"}chooseFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case"CHROMECAST":return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return(0,E.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,E.assertNever)(e)}}handleNoFormatsError(e){switch(e){case"SCREEN":this.noAvailableProvidersError$.next(this.params.tuning.forceFormat),this.current$.next({type:void 0});return;case"CHROMECAST":this.params.dependencies.chromecastInitializer.disconnect();return;default:return(0,E.assertNever)(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let i=r=>{let a=new URL(r);return a.host=t,a.toString()};if(e===void 0)return e;if("type"in e){if(e.type==="raw")return e;if(e.type==="url")return{...e,url:i(e.url)}}return(0,Xy.default)((0,Ql.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new E.Subscription,t=!1,i=0;e.add((0,E.merge)(this.providerOutput.error$.pipe((0,E.filter)(a=>!this.params.tuning.ignoreAudioRendererError||!a.message||!/AUDIO_RENDERER_ERROR/ig.test(a.message))),Yy({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,E.map)(a=>({id:`ProviderHangup:${a}`,category:E.ErrorCategory.WTF,message:`A ${a} transition failed to complete within reasonable time`})))).subscribe(this.providerError$)),e.add(this.providerOutput.fetcherError$.subscribe(this.providerError$)),e.add(this.current$.subscribe(()=>{t=!1;let a=this.params.desiredState.playbackState.transitionEnded$.pipe((0,E.filter)(({to:n})=>n==="playing"),(0,E.once)()).subscribe(()=>t=!0);e.add(a)}));let r=()=>{let a=X.drain(),{logDashLiveDebug:n,sendDashLiveDebug:o}=this.params.tuning;if(n&&(0,E.getWindow)().console.log(`===== DASH_LIVE DEBUG START ====
181
- `,a.map(({time:u,data:c,stack:l})=>`${u}: ${JSON.stringify(c)}${l?`
182
- `+l:""}`).join(`
124
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,``);return new RegExp(t,`i`)}var Xs=e=>{if(!e?.startsWith(`P`))return;let t=(e,t)=>{let n=e?parseFloat(e.replace(`,`,`.`)):NaN;return(isNaN(n)?0:n)*t},n=/^(-|\+)?P(?:([-+]?[0-9,.]*)Y)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)W)?(?:([-+]?[0-9,.]*)D)?(?:T(?:([-+]?[0-9,.]*)H)?(?:([-+]?[0-9,.]*)M)?(?:([-+]?[0-9,.]*)S)?)?$/.exec(e),r=n?.[1]===`-`?-1:1,i={days:t(n?.[5],r),hours:t(n?.[6],r),minutes:t(n?.[7],r),seconds:t(n?.[8],r)};return i.days*24*60*60*1e3+i.hours*60*60*1e3+i.minutes*60*1e3+i.seconds*1e3},Zs=(e,t)=>{let n=e;n=zs.default(n,`$$`,`$`);let r={RepresentationID:t.representationId,Number:t.segmentNumber,Bandwidth:t.bandwidth,Time:t.segmentTime};for(let[e,t]of Bs.default(r)){let r=RegExp(`\\$${e}(?:%0(\\d+)d)?\\$`,`g`);n=zs.default(n,r,(e,n)=>Ks.isNullable(t)?e:Ks.isNullable(n)?t:Vs.default(t,parseInt(n,10),`0`))}return n},Qs=(e,t)=>{let n=new DOMParser().parseFromString(e,`application/xml`),r={video:[],audio:[],text:[]},i=n.children[0],a=Array.from(i.querySelectorAll(`MPD > BaseURL`).values()).map(e=>e.textContent?.trim()??``),o=Hs.default(a,0)??``,s=i.getAttribute(`type`)===`dynamic`,c=i.getAttribute(`availabilityStartTime`),l=i.getAttribute(`publishTime`),u=i.getElementsByTagName(`vk:Attrs`)[0],d=u?.getElementsByTagName(`vk:XLatestSegmentPublishTime`)[0].textContent,f=u?.getElementsByTagName(`vk:XStreamIsLive`)[0].textContent,p=u?.getElementsByTagName(`vk:XStreamIsUnpublished`)[0].textContent,m=u?.getElementsByTagName(`vk:XPlaybackDuration`)[0].textContent,h;s&&(h={availabilityStartTime:c?new Date(c).getTime():0,publishTime:l?new Date(l).getTime():0,latestSegmentPublishTime:d?new Date(d).getTime():0,streamIsAlive:f===`yes`,streamIsUnpublished:p===`yes`});let g,_=i.getAttribute(`mediaPresentationDuration`),v=[...i.getElementsByTagName(`Period`)],y=v.reduce((e,t)=>({...e,[t.id]:t.children}),{}),b=v.reduce((e,t)=>({...e,[t.id]:t.getAttribute(`duration`)}),{});_?g=Xs(_):Us.default(b).filter(e=>e).length&&!s?g=Us.default(b).reduce((e,t)=>e+(Xs(t)??0),0):m&&(g=parseInt(m,10));let x=0,S=i.getAttribute(`profiles`)?.split(`,`)??[];for(let e of v.map(e=>e.id))for(let n of y[e]){var C;let e=n.getAttribute(`id`)??`id`+(x++).toString(10),i=n.getAttribute(`mimeType`)??``,a=n.getAttribute(`codecs`)??``,s=n.getAttribute(`contentType`)??i?.split(`/`)[0],c=n.getAttribute(`profiles`)?.split(`,`)??[],l=Js(n.getAttribute(`lang`)??``)??{},u=((C=n.querySelector(`Label`))==null||(C=C.textContent)==null?void 0:C.trim())??void 0,d=n.querySelectorAll(`Representation`),f=n.querySelector(`SegmentTemplate`),p=n.querySelector(`Role`)?.getAttribute(`value`)??void 0,m=s,h={id:e,language:l.language,isDefault:p===`main`,label:u,codecs:a,hdr:m===`video`&&Gs(a),mime:i,representations:[]};for(let e of d){var w;let r=e.getAttribute(`lang`)??void 0,d=u??n.getAttribute(`label`)??e.getAttribute(`label`)??void 0,p=((w=e.querySelector(`BaseURL`))==null||(w=w.textContent)==null?void 0:w.trim())??``,_=new URL(p||o,t).toString(),v=e.getAttribute(`mimeType`)??i,y=e.getAttribute(`codecs`)??a??``,b;if(s===`text`){let t=e.getAttribute(`id`)||``,n=(l.privateuse==null?void 0:Di(l.privateuse,`x-auto`))||t.includes(`_auto`),r=e.querySelector(`SegmentTemplate`);if(r){let i={representationId:e.getAttribute(`id`)??void 0,bandwidth:e.getAttribute(`bandwidth`)??void 0},a=parseInt(e.getAttribute(`bandwidth`)??``,10)/1e3,o=parseInt(r.getAttribute(`startNumber`)??``,10)??1,s=parseInt(r.getAttribute(`timescale`)??``,10),c=r.querySelectorAll(`SegmentTimeline S`)??[],l=r.getAttribute(`media`);if(!l)continue;let u=[],d=0,f=``,p=0,m=o,h=0;for(let e of c){let t=parseInt(e.getAttribute(`d`)??``,10),n=parseInt(e.getAttribute(`r`)??``,10)||0,r=parseInt(e.getAttribute(`t`)??``,10);h=Number.isFinite(r)?r:h;let a=t/s*1e3,o=h/s*1e3;for(let e=0;e<n+1;e++){let n=Zs(l,{...i,segmentNumber:m.toString(10),segmentTime:(h+e*t).toString(10)}),r=(o??0)+e*a,s=r+a;m++,u.push({time:{from:r,to:s},url:n})}h+=(n+1)*t,d+=(n+1)*a}p=h/s*1e3,f=Zs(l,{...i,segmentNumber:m.toString(10),segmentTime:h.toString(10)}),b={id:t,kind:`text`,segmentReference:{type:`template`,baseUrl:_,segmentTemplateUrl:l,initUrl:``,totalSegmentsDurationMs:d,segments:u,nextSegmentBeyondManifest:{time:{from:p,to:1/0},url:f},timescale:s},profiles:[],duration:g,bitrate:a,mime:``,codecs:``,width:0,height:0,isAuto:n}}else b={id:t,isAuto:n,kind:`text`,url:_}}else{let t=e.getAttribute(`contentType`)??v?.split(`/`)[0]??s,r=n.getAttribute(`profiles`)?.split(`,`)??[],i=parseInt(e.getAttribute(`width`)??``,10),a=parseInt(e.getAttribute(`height`)??``,10),o=parseInt(e.getAttribute(`bandwidth`)??``,10)/1e3,l=e.getAttribute(`frameRate`)??``,u=e.getAttribute(`quality`)??void 0,d=l?qs(l):void 0,p=`${e.getAttribute(`id`)??`id`+(x++).toString(10)}@${t===`video`?`${a}p`:t===`audio`?`${o}Kbps`:y}`,h=[...S,...c,...r],C,w=e.querySelector(`SegmentBase`),T=e.querySelector(`SegmentTemplate`)??f;if(w){let[t,n]=(e.querySelector(`SegmentBase Initialization`)?.getAttribute(`range`)??``).split(`-`).map(e=>parseInt(e,10)),r={from:t,to:n},i=e.querySelector(`SegmentBase`)?.getAttribute(`indexRange`),[a,o]=i?i.split(`-`).map(e=>parseInt(e,10)):[];C={type:`byteRange`,url:_,initRange:r,indexRange:i?{from:a,to:o}:void 0}}else if(T){let t={representationId:e.getAttribute(`id`)??void 0,bandwidth:e.getAttribute(`bandwidth`)??void 0},n=parseInt(T.getAttribute(`timescale`)??``,10),r=T.getAttribute(`initialization`)??``,i=T.getAttribute(`media`),a=parseInt(T.getAttribute(`startNumber`)??``,10)??1,o=Zs(r,t);if(!i)throw ReferenceError(`No media attribute in SegmentTemplate`);let s=T.querySelectorAll(`SegmentTimeline S`)??[],c=[],l=0,u=``,d=0;if(s.length){let e=a,r=0;for(let a of s){let o=parseInt(a.getAttribute(`d`)??``,10),s=parseInt(a.getAttribute(`r`)??``,10)||0,u=parseInt(a.getAttribute(`t`)??``,10);r=Number.isFinite(u)?u:r;let d=o/n*1e3,f=r/n*1e3;for(let n=0;n<s+1;n++){let a=Zs(i,{...t,segmentNumber:e.toString(10),segmentTime:(r+n*o).toString(10)}),s=(f??0)+n*d,l=s+d;e++,c.push({time:{from:s,to:l},url:a})}r+=(s+1)*o,l+=(s+1)*d}d=r/n*1e3,u=Zs(i,{...t,segmentNumber:e.toString(10),segmentTime:r.toString(10)})}else if(Ks.isNonNullable(g)){let e=parseInt(T.getAttribute(`duration`)??``,10)/n*1e3,r=Math.ceil(g/e),a=0;for(let n=1;n<r;n++){let r=Zs(i,{...t,segmentNumber:n.toString(10),segmentTime:a.toString(10)});c.push({time:{from:a,to:a+e},url:r}),a+=e}d=a,u=Zs(i,{...t,segmentNumber:r.toString(10),segmentTime:a.toString(10)})}C={type:`template`,baseUrl:_,segmentTemplateUrl:i,initUrl:o,totalSegmentsDurationMs:l,segments:c,nextSegmentBeyondManifest:{time:{from:d,to:1/0},url:u},timescale:n}}else throw ReferenceError(`Unknown MPD segment referencing type`);if(!t||!v)continue;let E={video:`video`,audio:`audio`,text:`text`}[t];if(!E)continue;m||=E,b={id:p,kind:E,segmentReference:C,profiles:h,duration:g,bitrate:o,mime:v,codecs:y,width:i,height:a,fps:d,quality:u}}h.language||=r,h.label||=d,h.mime||=v,h.codecs||=y,h.hdr||=m===`video`&&Gs(y),h.representations.push(b)}if(m){let e=r[m].find(e=>e.id===h.id);if(e&&h.representations.every(e=>e.segmentReference.type===`template`))for(let t of e.representations){let e=h.representations.find(e=>e.id===t.id);if(!e)continue;let n=e.segmentReference,r=t.segmentReference;r.segments.push(...n.segments),r.nextSegmentBeyondManifest=n.nextSegmentBeyondManifest}else r[m].push(h)}}return{duration:g,streams:r,baseUrls:a,live:h}},$s=u(Fn(),1),ec=u(at(),1),tc=require(`@vkontakte/videoplayer-shared/es2018`),nc;(e=>{e.VP9=`vp9`,e.AV1=`av1`,e.NONE=`none`,e.SMOOTH=`smooth`,e.POWER_EFFICIENT=`power_efficient`})(nc||={});var rc=e=>{let{webmDecodingInfo:t}=N.video,n=`DASH_WEBM`,r=`DASH_WEBM_AV1`;switch(e){case`vp9`:return[n,r];case`av1`:return[r,n];case`none`:return[];case`smooth`:return t?t[r].smooth?[r,n]:t[n].smooth?[n,r]:[r,n]:[n,r];case`power_efficient`:return t?t[r].powerEfficient?[r,n]:t[n].powerEfficient?[n,r]:[r,n]:[n,r];default:tc.assertNever(e)}},ic=({webmCodec:e,androidPreferredFormat:t,iosPreferredFormat:n,preferMultiStream:r})=>{let i=[...r?[`DASH_STREAMS`]:[],...rc(e),`DASH_SEP`,`DASH_ONDEMAND`,...r?[]:[`DASH_STREAMS`]],a=[...r?[`DASH_STREAMS`]:[],`DASH_SEP`,`DASH_ONDEMAND`,...r?[]:[`DASH_STREAMS`]];if(N.device.isAndroid)switch(t){case`mpeg`:return[`MPEG`,...i,`HLS`,`HLS_ONDEMAND`];case`hls`:return[`HLS`,`HLS_ONDEMAND`,...i,`MPEG`];case`dash`:return[...i,`HLS`,`HLS_ONDEMAND`,`MPEG`];case`dash_any_mpeg`:return[...a,`MPEG`,...rc(e),`HLS`,`HLS_ONDEMAND`];case`dash_any_webm`:return[...rc(e),`MPEG`,...a,`HLS`,`HLS_ONDEMAND`];case`dash_sep`:return[`DASH_SEP`,`MPEG`,...rc(e),...a,`HLS`,`HLS_ONDEMAND`];default:tc.assertNever(t)}if(N.video.nativeHlsSupported)switch(n){case`hls`:return[...i,`HLS`,`HLS_FMP4`,`HLS_ONDEMAND`,`MPEG`];case`hls_fmp4`:return[...i,`HLS_FMP4`,`HLS`,`HLS_ONDEMAND`,`MPEG`];default:tc.assertNever(n)}return[...i,`HLS`,`HLS_ONDEMAND`,`MPEG`]},ac=({androidPreferredFormat:e,preferCMAF:t,preferWebRTC:n})=>{let r=t?[`DASH_LIVE_CMAF`,`DASH_LIVE`]:[`DASH_LIVE`,`DASH_LIVE_CMAF`],i=t?[`HLS_LIVE_CMAF`,`HLS_LIVE`]:[`HLS_LIVE`,`HLS_LIVE_CMAF`],a=[...r,...i],o=[...i,...r],s,c=N.device.isMac&&N.browser.isSafari;if(N.device.isAndroid)switch(e){case`dash`:case`dash_any_mpeg`:case`dash_any_webm`:case`dash_sep`:s=a;break;case`hls`:case`mpeg`:s=o;break;default:tc.assertNever(e)}else s=N.video.nativeHlsSupported&&!c&&!N.browser.isChromiumBased?o:c?t?[`DASH_LIVE_CMAF`,`HLS_LIVE_CMAF`,`HLS_LIVE`,`DASH_LIVE`]:[`HLS_LIVE`,`DASH_LIVE`,`DASH_LIVE_CMAF`,`HLS_LIVE_CMAF`]:a;return n?[`WEB_RTC_LIVE`,...s]:[...s,`WEB_RTC_LIVE`]},oc=e=>e?[`HLS_LIVE`,`HLS_LIVE_CMAF`,`DASH_LIVE_CMAF`]:[`DASH_WEBM`,`DASH_WEBM_AV1`,`DASH_SEP`,`DASH_ONDEMAND`,`HLS`,`HLS_ONDEMAND`,`MPEG`],sc=e=>{if(e.size===0)return;if(e.size===1){let t=e.values().next();return $s.default(t.value.split(`.`),0)}for(let t of e){let e=$s.default(t.split(`.`),0);if(e===`opus`||e===`vp09`||e===`av01`)return e}let t=e.values().next();return $s.default(t.value.split(`.`),0)},cc=e=>{let t=e.map(e=>uc(e)),{codecs:n}=N.video;return dc().filter(e=>{if(ec.default(t,e))switch(e){case`av1`:return n.av1;case`vp9`:return n.vp9;case`avc1`:return n.h264;case`hev1`:return n.h265;default:return!1}else return!1})},lc=e=>{let t=e.map(e=>uc(e)),{codecs:n}=N.video;return fc().filter(e=>{if(ec.default(t,e))switch(e){case`opus`:return n.opus;case`mp4a`:return n.aac;default:return!1}else return!1})},uc=e=>e.split(`.`)[0].replace(`0`,``),dc=()=>[`av1`,`vp9`,`hev1`,`avc1`],fc=()=>[`opus`,`mp4a`],pc=u(An(),1),mc=(e,t={})=>{let n=t.timeout||1,r=performance.now();return Ds.setTimeout(()=>{e({get didTimeout(){return t.timeout?!1:performance.now()-r-1>n},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},hc=e=>Ds.clearTimeout(e),gc=e=>typeof e==`function`&&e?.toString().endsWith(`{ [native code] }`),_c=!gc(Ds.requestIdleCallback)||!gc(Ds.cancelIdleCallback),vc=_c?mc:Ds.requestIdleCallback,yc=_c?hc:Ds.cancelIdleCallback,W=require(`@vkontakte/videoplayer-shared/es2018`),bc=u(An(),1),xc=e=>e.valid;class Sc{get id(){return this.type}constructor(t,n){e(this,`source`,void 0),e(this,`boxParser`,void 0),e(this,`type`,void 0),e(this,`size`,void 0),e(this,`content`,void 0),e(this,`valid`,void 0),e(this,`children`,void 0),e(this,`cursor`,0),this.source=t,this.boxParser=n,this.children=[];let r=this.readUint32();this.type=this.readString(4),r===1&&(this.cursor+=8);let i=t.byteOffset+this.cursor,a;r===0||r===1?(this.size=void 0,this.valid=!1,a=void 0):r>t.byteLength?(this.size=r,this.valid=!1,a=Math.min(r-this.cursor,t.byteLength-this.cursor)):(this.size=r,this.valid=!0,a=r-this.cursor),this.content=new DataView(t.buffer,i,a)}scanForBoxes(e){return this.boxParser.parse(e)}readString(e,t=`ascii`){let n=new TextDecoder(t).decode(new DataView(this.source.buffer,this.source.byteOffset+this.cursor,e));return this.cursor+=e,n}readUint8(){let e=this.source.getUint8(this.cursor);return this.cursor+=1,e}readUint16(){let e=this.source.getUint16(this.cursor);return this.cursor+=2,e}readUint32(){let e=this.source.getUint32(this.cursor);return this.cursor+=4,e}readUint64(){let e=this.source.getBigInt64(this.cursor);return this.cursor+=8,e}}class Cc extends Sc{}var wc=require(`@vkontakte/videoplayer-shared/es2018`);class Tc extends Sc{constructor(t,n){if(super(t,n),e(this,`userData`,void 0),!this.valid)return;let r=this.readString(16),i=new DataView(this.content.buffer,this.content.byteOffset+16,this.content.byteLength-16);this.userData=this.parseData(r,i)}parseData(e,t){switch(e){case`ondemandlivejson`:{let e=new TextDecoder(`ascii`).decode(t),n=JSON.parse(e);return{received:n[`t-in`],prepared:n[`t-out`]}}default:wc.assertNever(e)}}}class Ec extends Sc{constructor(t,n){if(super(t,n),e(this,`majorBrand`,void 0),e(this,`minorVersion`,void 0),e(this,`compatibleBrands`,void 0),!this.valid)return;this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let r=new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8);for(let e=0;e<r.byteLength;e+=4){let e=this.readString(4);this.compatibleBrands.push(e)}}}class Dc extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Oc extends Sc{constructor(t,n){if(super(t,n),e(this,`version`,void 0),e(this,`flags`,void 0),!this.valid)return;let r=this.readUint32();this.version=r>>>24,this.flags=r&16777215,this.content=new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)}}class kc extends Oc{constructor(t,n){super(t,n),e(this,`creationTime`,void 0),e(this,`modificationTime`,void 0),e(this,`timescale`,void 0),e(this,`duration`,void 0),e(this,`rate`,void 0),e(this,`volume`,void 0),this.valid&&(this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.timescale=this.readUint32(),this.duration=this.readUint32(),this.rate=this.readUint32(),this.volume=this.readUint16())}}class Ac extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class jc extends Sc{constructor(t,n){super(t,n),e(this,`data`,void 0),this.data=this.content}}class Mc extends Oc{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(t,n){if(super(t,n),e(this,`referenceId`,void 0),e(this,`timescale`,void 0),e(this,`earliestPresentationTime32`,void 0),e(this,`firstOffset32`,void 0),e(this,`earliestPresentationTime64`,void 0),e(this,`firstOffset64`,void 0),e(this,`reserved`,void 0),e(this,`referenceCount`,void 0),e(this,`segments`,void 0),this.valid){this.segments=[],this.referenceId=this.readUint32(),this.timescale=this.readUint32(),this.earliestPresentationTime32=this.readUint32(),this.firstOffset32=this.readUint32(),this.earliestPresentationTime64=0,this.firstOffset64=0,this.referenceCount=this.readUint32()&65535;for(let e=0;e<this.referenceCount;e++){let e=this.readUint32(),t=e>>>31,n=e<<1>>>1,r=this.readUint32();e=this.readUint32();let i=e>>>28,a=e<<3>>>3;this.segments.push({referenceType:t,referencedSize:n,subsegmentDuration:r,SAPType:i,SAPDeltaTime:a})}}}}class Nc extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Pc extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Fc extends Oc{constructor(t,n){if(super(t,n),e(this,`stereoMode`,void 0),this.valid){switch(this.readUint8()){case 0:this.stereoMode=0;break;case 1:this.stereoMode=1;break;case 2:this.stereoMode=2;break;case 3:this.stereoMode=3;break;case 4:this.stereoMode=4;break}this.cursor+=1}}}class Ic extends Oc{constructor(t,n){super(t,n),e(this,`poseYawDegrees`,void 0),e(this,`posePitchDegrees`,void 0),e(this,`poseRollDegrees`,void 0),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}}class Lc extends Oc{constructor(t,n){super(t,n),e(this,`projectionBoundsTop`,void 0),e(this,`projectionBoundsBottom`,void 0),e(this,`projectionBoundsLeft`,void 0),e(this,`projectionBoundsRight`,void 0),this.valid&&(this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32())}}class Rc extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class zc extends Oc{constructor(t,n){super(t,n),e(this,`creationTime`,void 0),e(this,`modificationTime`,void 0),e(this,`trackId`,void 0),e(this,`duration`,void 0),e(this,`layer`,void 0),e(this,`alternateGroup`,void 0),e(this,`volume`,void 0),e(this,`matrix`,void 0),e(this,`width`,void 0),e(this,`height`,void 0),this.creationTime=this.readUint32(),this.modificationTime=this.readUint32(),this.trackId=this.readUint32(),this.cursor+=4,this.duration=this.readUint32(),this.cursor+=8,this.layer=this.readUint16(),this.alternateGroup=this.readUint16(),this.cursor+=2,this.cursor+=2,this.matrix=[[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()],[this.readUint32(),this.readUint32(),this.readUint32()]],this.width=this.readUint32(),this.height=this.readUint32()}}class Bc extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Vc extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Hc extends Oc{constructor(t,n){super(t,n),e(this,`sequenceNumber`,void 0),this.valid&&(this.sequenceNumber=this.readUint32())}}class Uc extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Wc extends Oc{constructor(t,n){super(t,n),e(this,`trackId`,void 0),e(this,`baseDataOffset`,void 0),e(this,`sampleDescriptionIndex`,void 0),e(this,`defaultSampleDuration`,void 0),e(this,`defaultSampleSize`,void 0),e(this,`defaultSampleFlags`,void 0),this.trackId=this.readUint32(),this.flags&1&&(this.baseDataOffset=this.readUint64()),this.flags&2&&(this.sampleDescriptionIndex=this.readUint32()),this.flags&8&&(this.defaultSampleDuration=this.readUint32()),this.flags&16&&(this.defaultSampleSize=this.readUint32()),this.flags&32&&(this.defaultSampleFlags=this.readUint32())}}class Gc extends Oc{get baseMediaDecodeTime(){return this.version===1?this.baseMediaDecodeTime64:this.baseMediaDecodeTime32}constructor(t,n){super(t,n),e(this,`baseMediaDecodeTime32`,0),e(this,`baseMediaDecodeTime64`,BigInt(0)),this.version===1?this.baseMediaDecodeTime64=this.readUint64():this.baseMediaDecodeTime32=this.readUint32()}}class Kc extends Oc{constructor(t,n){super(t,n),e(this,`sampleCount`,void 0),e(this,`dataOffset`,void 0),e(this,`firstSampleFlags`,void 0),e(this,`sampleDuration`,[]),e(this,`sampleSize`,[]),e(this,`sampleFlags`,[]),e(this,`sampleCompositionTimeOffset`,[]),e(this,`optionalFields`,0),this.sampleCount=this.readUint32(),this.flags&1&&(this.dataOffset=this.readUint32()),this.flags&4&&(this.firstSampleFlags=this.readUint32());for(let e=0;e<this.sampleCount;e++)this.flags&256&&this.sampleDuration.push(this.readUint32()),this.flags&512&&this.sampleSize.push(this.readUint32()),this.flags&1024&&this.sampleFlags.push(this.readUint32()),this.flags&2048&&this.sampleCompositionTimeOffset.push(this.readUint32())}}class qc extends Sc{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}}class Jc extends Oc{constructor(t,n){super(t,n),e(this,`entryCount`,void 0),this.valid&&(this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+4,this.content.byteLength-4)))}}class Yc extends Sc{constructor(e,t){super(e,t),this.valid&&(this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78)))}}var Xc={ftyp:Ec,moov:Dc,mvhd:kc,moof:Ac,mdat:jc,sidx:Mc,trak:Nc,mdia:Rc,mfhd:Hc,tkhd:zc,traf:Uc,tfhd:Wc,tfdt:Gc,trun:Kc,minf:Bc,sv3d:Pc,st3d:Fc,prhd:Ic,proj:Vc,equi:Lc,uuid:Tc,stbl:qc,stsd:Jc,avc1:Yc,unknown:Cc};class Zc{constructor(t={}){e(this,`options`,void 0),this.options={offset:0,...t}}parse(e){let t=[],n=this.options.offset;for(;n<e.byteLength;){let r=new TextDecoder(`ascii`).decode(new DataView(e.buffer,e.byteOffset+n+4,4)),i;try{i=this.createBox(r,new DataView(e.buffer,e.byteOffset+n,e.byteLength-n))}catch(e){if(!(e instanceof RangeError))throw e}if(!i||!xc(i))break;t.push(i),n+=i.size}return t}createBox(e,t){let n=Xc[e];return n?new n(t,new Zc):new Cc(t,new Zc)}}class Qc{constructor(t){e(this,`index`,void 0),this.index={},this.indexBoxLevel(t)}indexBoxLevel(e){e.forEach(e=>{var t,n;xc(e)&&((t=this.index)[n=e.type]??(t[n]=[]),this.index[e.type].push(e),e.children.length>0&&this.indexBoxLevel(e.children))})}find(e){return this.index[e]&&this.index[e][0]?this.index[e][0]:null}findAll(e){return this.index[e]||[]}}var $c=new TextDecoder(`ascii`),el={validateData:e=>$c.decode(new DataView(e.buffer,e.byteOffset+4,4))===`ftyp`,parseInit:e=>{let t={is3dVideo:!1,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}},n=new Qc(new Zc().parse(e));if(n.find(`sv3d`)){t.is3dVideo=!0;let e=n.find(`st3d`);e&&(t.stereoMode=e.stereoMode);let r=n.find(`prhd`);r&&(t.projectionData.pose.yaw=r.poseYawDegrees,t.projectionData.pose.pitch=r.posePitchDegrees,t.projectionData.pose.roll=r.poseRollDegrees);let i=n.find(`equi`);i&&(t.projectionData.bounds.top=i.projectionBoundsTop,t.projectionData.bounds.right=i.projectionBoundsRight,t.projectionData.bounds.bottom=i.projectionBoundsBottom,t.projectionData.bounds.left=i.projectionBoundsLeft)}return t},getIndexRange:()=>{},parseSegments:e=>{let t=new Mc(e,new Zc),n=t.earliestPresentationTime/t.timescale*1e3,r=e.byteOffset+e.byteLength+t.firstOffset;return t.segments.map(e=>{if(e.referenceType!==0)throw Error(`Unsupported multilevel sidx`);let i=e.subsegmentDuration/t.timescale*1e3,a={status:`none`,time:{from:n,to:n+i},byte:{from:r,to:r+e.referencedSize-1}};return n+=i,r+=e.referencedSize,a})},parseFeedableSegmentChunk:(e,t)=>{let n=new Qc(new Zc().parse(e)),r=n.findAll(`moof`),i=t?n.findAll(`uuid`):n.findAll(`mdat`);if(!(i.length&&r.length))return null;let a=r[0],o=i[i.length-1],s=a.source.byteOffset,c=o.source.byteOffset-a.source.byteOffset+o.size;return new DataView(e.buffer,s,c)},getChunkEndTime:(e,t)=>{let n=new Qc(new Zc().parse(e)).findAll(`traf`),r=n[n.length-1].children.find(e=>e.type===`tfhd`),i=n[n.length-1].children.find(e=>e.type===`tfdt`),a=n[n.length-1].children.find(e=>e.type===`trun`),o=0;return o=a.sampleDuration.length?a.sampleDuration.reduce((e,t)=>e+t,0):r.defaultSampleDuration*a.sampleCount,(Number(i.baseMediaDecodeTime)+o)/t*1e3},getServerLatencyTimestamps:e=>{let t=new Qc(new Zc().parse(e)),n={},r=t.findAll(`uuid`),i=bc.default(r,-1);return i?{serverDataReceivedTimestamp:i.userData.received,serverDataPreparedTime:i.userData.received}:n},getTimescaleFromIndex:e=>new Qc(new Zc().parse(e)).find(`sidx`)?.timescale},tl=u(at(),1),nl=require(`@vkontakte/videoplayer-shared/es2018`),rl=require(`@vkontakte/videoplayer-shared/es2018`),il={440786851:{type:`master`},17030:{type:`uint`},17143:{type:`uint`},17138:{type:`uint`},17139:{type:`uint`},17026:{type:`string`},17031:{type:`uint`},17029:{type:`uint`},236:{type:`binary`},408125543:{type:`master`},290298740:{type:`master`},19899:{type:`master`},21419:{type:`binary`},21420:{type:`uint`},357149030:{type:`master`},2807729:{type:`uint`},17545:{type:`float`},374648427:{type:`master`},174:{type:`master`},224:{type:`master`},30320:{type:`master`},30321:{type:`uint`},30322:{type:`master`},272869232:{type:`master`},524531317:{type:`master`},231:{type:`uint`},22612:{type:`master`},22743:{type:`uint`},167:{type:`uint`},171:{type:`uint`},163:{type:`binary`},160:{type:`master`},175:{type:`binary`},423732329:{type:`master`},307544935:{type:`master`},475249515:{type:`master`},187:{type:`master`},179:{type:`uint`},183:{type:`master`},247:{type:`uint`},241:{type:`uint`},240:{type:`uint`},178:{type:`uint`},21368:{type:`uint`},234:{type:`uint`},219:{type:`master`},150:{type:`uint`}},al=e=>{let t=e.getUint8(0),n=0;t&128?n=1:t&64?n=2:t&32?n=3:t&16&&(n=4);let r=ol(e,n),i=r in il,a=i?il[r].type:`binary`,o=e.getUint8(n),s=0;o&128?s=1:o&64?s=2:o&32?s=3:o&16?s=4:o&8?s=5:o&4?s=6:o&2?s=7:o&1&&(s=8);let c=new DataView(e.buffer,e.byteOffset+n+1,s-1),l=o&255>>s,u=ol(c),d=l*2**((s-1)*8)+u,f=n+s,p;return p=f+d>e.byteLength?new DataView(e.buffer,e.byteOffset+f):new DataView(e.buffer,e.byteOffset+f,d),{tag:i?r:`0x`+r.toString(16).toUpperCase(),type:a,tagHeaderSize:f,tagSize:f+d,value:p,valueSize:d}},ol=(e,t=e.byteLength)=>{switch(t){case 1:return e.getUint8(0);case 2:return e.getUint16(0);case 3:return e.getUint8(0)*2**16+e.getUint16(1);case 4:return e.getUint32(0);case 5:return e.getUint8(0)*2**32+e.getUint32(1);case 6:return e.getUint16(0)*2**32+e.getUint32(2);case 7:{let t=e.getUint8(0)*2**48+e.getUint16(1)*2**32+e.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw ReferenceError(`Int64 is not supported`)}return 0},sl=(e,t)=>{switch(t){case`int`:return e.getInt8(0);case`uint`:return ol(e);case`float`:return e.byteLength===4?e.getFloat32(0):e.getFloat64(0);case`string`:return new TextDecoder(`ascii`).decode(e);case`utf8`:return new TextDecoder(`utf-8`).decode(e);case`date`:return new Date(Date.UTC(2001,0)+e.getInt8(0)).getTime();case`master`:return e;case`binary`:return e;default:rl.assertNever(t)}},cl=(e,t)=>{let n=0;for(;n<e.byteLength;){let r=al(new DataView(e.buffer,e.byteOffset+n));if(!t(r))return;r.type===`master`&&cl(r.value,t),n=r.value.byteOffset-e.byteOffset+r.valueSize}},ll=e=>{if(e.getUint32(0)!==440786851)return!1;let t,n,r;return cl(al(e).value,({tag:e,type:i,value:a})=>(e===17143?t=sl(a,i):e===17026?n=sl(a,i):e===17029&&(r=sl(a,i)),!0)),(t===void 0||t<=1)&&n!==void 0&&n===`webm`&&(r===void 0||r<=2)},ul=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],dl=[231,22612,22743,167,171,163,160,175],fl={validateData:ll,parseInit:e=>{let t,n,r,i,a=!1,o=!1,s=!1,c,l,u=!1;return cl(e,({tag:e,type:d,value:f,valueSize:p})=>(e===21419?l=ol(sl(f,d)):e!==21420&&(l=void 0),e===408125543?(t=f.byteOffset,n=f.byteOffset+p):e===357149030?a=!0:e===290298740?o=!0:e===2807729?r=sl(f,d):e===17545?i=sl(f,d):e===21420&&l===475249515?c=sl(f,d):e===374648427?cl(f,({tag:e,type:t,value:n})=>e===30321?(u=sl(n,t)===1,!1):!0):a&&o&&Di(ul,e)&&(s=!0),!s)),nl.assertNonNullable(t,`Failed to parse webm Segment start`),nl.assertNonNullable(n,`Failed to parse webm Segment end`),nl.assertNonNullable(i,`Failed to parse webm Segment duration`),r??=1e6,{segmentStart:Math.round(t/1e9*r*1e3),segmentEnd:Math.round(n/1e9*r*1e3),timeScale:r,segmentDuration:Math.round(i/1e9*r*1e3),cuesSeekPosition:c,is3dVideo:u,stereoMode:0,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},getIndexRange:e=>{if(nl.isNullable(e.cuesSeekPosition))return;let t=e.segmentStart+e.cuesSeekPosition;return{from:t,to:t+1048576}},parseSegments:(e,t)=>{let n=!1,r=!1,i=e=>nl.isNonNullable(e.time)&&nl.isNonNullable(e.position),a=[],o;return cl(e,({tag:e,type:t,value:s})=>{switch(e){case 475249515:n=!0;break;case 187:o&&i(o)&&a.push(o),o={};break;case 179:o&&(o.time=sl(s,t));break;case 183:break;case 241:o&&(o.position=sl(s,t));break;default:n&&Di(ul,e)&&(r=!0)}return!(n&&r)}),o&&i(o)&&a.push(o),a.map((e,n)=>{let{time:r,position:i}=e,o=a[n+1];return{status:`none`,time:{from:r,to:o?o.time:t.segmentDuration},byte:{from:t.segmentStart+i,to:o?t.segmentStart+o.position-1:t.segmentEnd-1}}})},parseFeedableSegmentChunk:e=>{let t=0,n=!1;try{cl(e,r=>r.tag===524531317?r.tagSize<=e.byteLength?(t=r.tagSize,!1):(t+=r.tagHeaderSize,!0):Di(dl,r.tag)?(t+r.tagSize<=e.byteLength&&(t+=r.tagSize,n||=tl.default([163,160,175],r.tag)),!0):!1)}catch{}return t>0&&t<=e.byteLength&&n?new DataView(e.buffer,e.byteOffset,t):null}},pl=e=>{let t=/^(.+)\/([^;]+)(?:;.*)?$/.exec(e);if(t){let[,e,n]=t;if(e===`audio`||e===`video`)switch(n){case`webm`:return fl;case`mp4`:return el}}throw ReferenceError(`Unsupported mime type ${e}`)},ml=u(Fn(),1),hl=require(`@vkontakte/videoplayer-shared/es2018`),gl=({id:e,width:t,height:n,bitrate:r,fps:i,quality:a,streamId:o,tvDisabled:s})=>{let c=(a?ma(a):void 0)??hl.videoSizeToQuality({width:t,height:n});return c&&{id:e,quality:c,bitrate:r,size:{width:t,height:n},fps:i,streamId:o,tvDisabled:s}},_l=({id:e,bitrate:t})=>({id:e,bitrate:t}),vl=({language:e,label:t},{id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),yl=({language:e,label:t,id:n,url:r,isAuto:i})=>({id:n,url:r,isAuto:i,type:`internal`,language:e,label:t}),bl=({id:e,language:t,label:n,codecs:r,isDefault:i})=>({id:e,language:t,label:n,codec:ml.default(r.split(`.`),0),isDefault:i}),xl=({id:e,language:t,label:n,hdr:r,codecs:i})=>({id:e,language:t,hdr:r,label:n,codec:ml.default(i.split(`.`),0)}),Sl=e=>`url`in e,Cl=e=>e.type===`template`;class wl{constructor(t,n,r,{fetcher:i,tuning:a,getCurrentPosition:o,getCurrentStallDuration:s,manifest:c}){e(this,`error$`,new W.Subject),e(this,`playingRepresentation$`,new W.ValueSubject(void 0)),e(this,`playingRepresentationInit$`,new W.ValueSubject(void 0)),e(this,`currentSegmentLength$`,new W.ValueSubject(0)),e(this,`onLastSegment$`,new W.ValueSubject(!1)),e(this,`fullyBuffered$`,new W.ValueSubject(!1)),e(this,`kind`,void 0),e(this,`nativeBufferManager`,void 0),e(this,`fetcher`,void 0),e(this,`tuning`,void 0),e(this,`representations`,void 0),e(this,`playingRepresentationId`,void 0),e(this,`downloadingRepresentationId`,void 0),e(this,`switchingRepresentationId`,void 0),e(this,`initData`,new Map),e(this,`initDataPromises`,new Map),e(this,`idleCallbacks`,new Map),e(this,`parsedInitData`,new Map),e(this,`segments`,new Map),e(this,`containerParser`,void 0),e(this,`bufferPlaybackQueue`,[]),e(this,`downloadingBufferItems`,[]),e(this,`preloadOnly`,!1),e(this,`forwardBufferTarget`,void 0),e(this,`failedDownloads`,0),e(this,`lastDataObtainedTimestampMs`,0),e(this,`loadByteRangeSegmentsTimeoutId`,0),e(this,`currentVirtualBufferSize`,0),e(this,`baseUrls`,[]),e(this,`baseUrlsIndex`,0),e(this,`maintainPlaybackBufferMutex`,!1),e(this,`maintainNativeBufferMutex`,!1),e(this,`bufferClearingMutex`,!1),e(this,`abortNativeBufferMutex`,!1),e(this,`switchMutex`,!1),e(this,`destroyAbortController`,new js),e(this,`downloadAbortController`,new js),e(this,`subscription`,new W.Subscription),e(this,`getCurrentPosition`,void 0),e(this,`getCurrentStallDuration`,void 0),e(this,`startWith`,W.abortable(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);W.assertNonNullable(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.containerParser=pl(t.mime),this.nativeBufferManager.init(t.mime,t.codecs,this.tuning.dash.useAbortMSEFix),yield this.loadInits(t);let n=this.initData.get(t.id),r=this.segments.get(t.id),i=this.parsedInitData.get(t.id);W.assertNonNullable(n,`No init buffer for starting representation`),W.assertNonNullable(r,`No segments for starting representation`),await this.nativeBufferManager.addInitSegment(n),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(i)}.bind(this))),e(this,`switchTo`,W.abortable(this.destroyAbortController.signal,async function*(e,t=!0){if(W.isNullable(this.downloadingRepresentationId)||e===this.downloadingRepresentationId||e===this.switchingRepresentationId)return;this.switchMutex=!0,this.switchingRepresentationId=e;let n=this.representations.get(this.downloadingRepresentationId),r=this.representations.get(e);W.assertNonNullable(r,`No such representation ${e}`),W.assertNonNullable(n,`No such representation ${this.downloadingRepresentationId}`),yield this.loadInitIfNeeded(r,`high`);let i=this.initData.get(r.id),a=this.segments.get(r.id);W.assertNonNullable(i,`No init buffer for switching representation`),W.assertNonNullable(a,`No segments for switching representation`);let o=this.getCurrentPosition()??0,s=e=>e.segment.bufferStatus!==`fed`,c=e=>{let t=this.representations.get(e.representationId);return W.assertNonNullable(t,`No itemRepresentation for previous track before switch`),e.segment.networkStatus!==`downloaded`||this.forceSwitchCondition(t,r)},l=e=>t?s(e)&&c(e):s(e);this.bufferPlaybackQueue.filter(l).forEach(e=>e.segment.bufferStatus=`none`),this.bufferPlaybackQueue=this.bufferPlaybackQueue.filter(e=>!l(e)),this.downloadingRepresentationId=e,this.switchingRepresentationId=null,this.bufferPlaybackQueue.length?(this.abortDownload(),yield this.maintain()):yield this.seek(o),this.switchMutex=!1}.bind(this))),e(this,`waitExponentialDownloadDelay`,W.abortable(this.downloadAbortController.signal,async function*(){let e=W.getExponentialDelay(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{let n=W.getWindow();this.loadByteRangeSegmentsTimeoutId=n.setTimeout(t,e),this.subscription.add(W.fromEvent(n,`online`).pipe(W.once()).subscribe(()=>{t(),n.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}))})}.bind(this))),this.kind=t,this.nativeBufferManager=n,this.fetcher=i,this.tuning=a,this.getCurrentPosition=o,this.getCurrentStallDuration=s,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.baseUrls=c?.baseUrls??[],this.representations=new Map(r.map(e=>[e.id,e]))}async seek(e){await this.abort(),await this.clearBuffer(),await this.maintain(e)}async maintain(e=this.getCurrentPosition()){W.isNullable(e)||(await this.maintainPlaybackBuffer(e),await this.maintainNativeBuffer(),this.actualizeLastSegmentInfo(e))}getForwardPlaybackBufferDuration(e=this.getCurrentPosition()){let t=this.bufferPlaybackQueue.filter(e=>e.segment.networkStatus===`downloaded`),n=t[t.length-1],r=W.isNonNullable(e)&&W.isNonNullable(n)?n.segment.time.to-e:0;return Math.max(r,0)}getPlaybackBufferState(){return this.bufferPlaybackQueue.length?{from:this.bufferPlaybackQueue[0].segment.time.from,to:this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segment.time.to}:null}async abort(){this.abortDownload(),await this.abortNativeBuffer()}findSegmentStartTime(e){let t=this.downloadingRepresentationId??this.playingRepresentationId??``;return(this.segments.get(t)?.find(t=>t.time.from<=e&&t.time.to>=e))?.time.from}getRepresentationInitialTime(){return W.isNullable(this.playingRepresentationId)?0:(this.segments.get(this.playingRepresentationId)?.[0].time.from??0)/1e3}calculateDurationFromSegments(e){let t=this.segments.get(e);return(t?pc.default(t,-1)?.time.to:0)||0}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){let e=W.getWindow();if(this.initData.clear(),this.initDataPromises.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.downloadAbortController.abort(),this.destroyAbortController.abort(),this.subscription.unsubscribe(),e.cancelIdleCallback)for(let t of this.idleCallbacks.values())e.cancelIdleCallback(t);this.idleCallbacks.clear(),e.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}forceSwitchCondition(e,t){let n=!0;if(this.kind===`video`){let r=gl(e),i=gl(t);n=W.isNonNullable(r)&&W.isNonNullable(i)&&W.isHigher(i.quality,r.quality)}else if(this.kind===`audio`){let r=_l(e),i=_l(t);n=W.isNonNullable(r?.bitrate)&&W.isNonNullable(i?.bitrate)&&i.bitrate>r.bitrate}return n}async clearBuffer(){this.bufferClearingMutex=!0,await this.nativeBufferManager.clear(this.destroyAbortController.signal),this.bufferPlaybackQueue.forEach(e=>e.segment.bufferStatus=`none`),this.bufferPlaybackQueue=[],this.bufferClearingMutex=!1}abortDownload(){this.downloadAbortController.abort(),this.downloadAbortController=new js,this.abortDownloadingItems(),this.maintainPlaybackBufferMutex=!1}abortDownloadingItems(){for(let e of this.downloadingBufferItems)e.segment.networkStatus===`downloading`&&(e.segment.networkStatus=`none`,e.segment.size=0,e.segment.loadedBytes=0,e.segment.feedingBytes=0,e.segment.fedBytes=0,e.segment.data=null);this.downloadingBufferItems=[]}async abortNativeBuffer(){this.abortNativeBufferMutex=!0;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0,n=await this.nativeBufferManager.abortBuffer(t);return this.abortNativeBufferMutex=!1,this.maintainNativeBufferMutex=!1,n}async loadInits(e){await this.loadInit(e,`high`,!0);for(let[e,t]of this.representations)this.idleCallbacks.set(t.id,vc(async e=>await this.loadInitIfNeeded(t,`low`,!1)))}async loadInitIfNeeded(e,t=`auto`,n=!1){let r=this.initDataPromises.get(e.id),i;i=this.initData.has(e.id)&&this.segments.has(e.id)?Promise.resolve():W.isNonNullable(r)?r:this.loadInit(e,t,n),await i}async loadInit(e,t=`auto`,n=!1){try{let n=this.tuning.dash.useFetchPriorityHints?t:`auto`,r=this.fetcher.fetchRepresentation(e.segmentReference,this.containerParser,n);this.initDataPromises.set(e.id,r);let{initMetadata:i,initDataView:a,segments:o}=await r??{};if(this.initDataPromises.delete(e.id),W.isNullable(a)||W.isNullable(o))return;i&&this.parsedInitData.set(e.id,i);let s=a.buffer.slice(a.byteOffset,a.byteOffset+a.byteLength);this.initData.set(e.id,s),this.segments.set(e.id,o),this.failedDownloads=0}catch(e){n&&this.error$.next({id:`LoadInits`,category:W.ErrorCategory.WTF,message:`loadInit threw`,thrown:e})}}async maintainNativeBuffer(){let e=this.getCurrentPosition(),t=this.segments.get(this.downloadingRepresentationId??``),n=t?.[t?.length-1];if(W.isNullable(e)||W.isNullable(n)||this.maintainNativeBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex||this.preloadOnly)return;this.maintainNativeBufferMutex=!0;let r=this.bufferPlaybackQueue.find(t=>this.withinInterval(e,t.segment.time)),i=this.bufferPlaybackQueue.find(e=>e.segment.bufferStatus!==`fed`),a=this.initData.get(i?.representationId??``),o=this.bufferPlaybackQueue[0],s=this.downloadAbortController.signal,c=(this.getCurrentStallDuration()??0)>0;this.tuning.dash.useBufferHoldingOnlyOnStall&&(c&&=e>0);let l=Math.min(this.tuning.dash.minSafeBufferToPlay,n.time.to-e),u=c?this.getForwardPlaybackBufferDuration()>=l:!0;W.isNonNullable(a)&&W.isNonNullable(i)&&W.isNonNullable(r)&&this.playingRepresentationId!==i.representationId&&this.withinAppendInterval(e,i.segment.time)&&(i===r||r.segment.bufferStatus===`fed`)&&(await this.abortNativeBuffer(),await this.nativeBufferManager.addInitSegment(a,this.downloadAbortController.signal),this.playingRepresentationId=i.representationId,this.playingRepresentation$.next(this.playingRepresentationId)),W.isNonNullable(i)&&this.withinAppendInterval(e,i.segment.time)&&u&&(i.segment.loadedBytes===i.segment.size&&i.segment.bufferStatus===`none`?await this.appendSegmentFully(i,s):await this.appendSegmentPartially(i,s)),W.isNonNullable(o)&&this.withinRemoveInterval(e,o.segment.time)&&await this.removeSegment(o,s),this.pruneVirtualBuffer(e),this.maintainNativeBufferMutex=!1}async maintainPlaybackBuffer(e){W.assertNonNullable(this.downloadingRepresentationId);let t=this.segments.get(this.downloadingRepresentationId),n=this.representations.get(this.downloadingRepresentationId);if(W.isNullable(t)||W.isNullable(n)||this.maintainPlaybackBufferMutex||this.abortNativeBufferMutex||this.bufferClearingMutex||this.switchMutex)return;this.maintainPlaybackBufferMutex=!0;let r=t.find(t=>e>=t.time.from&&e<t.time.to);W.isNonNullable(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next(r?.time.to-r.time.from),this.downloadingBufferItems.length||(this.downloadingBufferItems=this.selectDownloadingItems(e,t)),await this.processCachedItems();let i=this.selectItemsToLoad();await this.loadItems(i,n),this.maintainPlaybackBufferMutex=!1}actualizeLastSegmentInfo(e){let t=this.segments.get(this.downloadingRepresentationId??``);if(W.isNullable(t)||t.length===0)return;let n=t[t?.length-1];W.isNullable(n)||(this.fullyBuffered$.next(n.time.to-e-this.getForwardPlaybackBufferDuration(e)<this.tuning.dash.bufferTolerance),this.onLastSegment$.next(e-n.time.from>0))}selectDownloadingItems(e,t){W.assertNonNullable(this.downloadingRepresentationId);let n=this.getPlaybackBufferState(),r,i;W.isNonNullable(n)&&this.withinInterval(e,n)?(i=this.forwardBufferTarget-this.getForwardPlaybackBufferDuration(e),r=this.bufferPlaybackQueue[this.bufferPlaybackQueue.length-1].segmentIndex+1):(i=this.forwardBufferTarget,r=t.findIndex(t=>this.withinInterval(e,t.time))),r=r===-1?0:r;let a=[];for(;r<t.length&&i>0;){a.push({representationId:this.downloadingRepresentationId,segmentIndex:r,segment:t[r]});let{from:e,to:n}=t[r].time;i-=n-e,r++}return a}async processCachedItems(){let e=[...this.downloadingBufferItems];for(;e.length&&e[0].segment.networkStatus===`downloaded`;)await this.onDownloadItem(e[0]),e.shift()}withinInterval(e,{from:t,to:n},r=this.tuning.dash.bufferTolerance){return W.isNonNullable(e)?e+r>=t&&e<n:!1}withinAppendInterval(e,{from:t,to:n}){let{actionTimeShiftFromSegment:r}=this.tuning.dash;return W.isNonNullable(e)?e+r>=t&&e+r<n||this.withinInterval(e,{from:t,to:n}):!1}withinRemoveInterval(e,{to:t}){let{actionTimeShiftFromSegment:n}=this.tuning.dash;return W.isNonNullable(e)?e-n>t:!1}async appendSegmentFully(e,t){W.isNullable(e.segment.data)||(e.segment.feedingBytes=e.segment.size,await this.nativeBufferManager.append(e.segment.data,t)&&(e.segment.fedBytes=e.segment.size,this.onItemFullyAppended(e)))}async appendSegmentPartially(e,t){if(W.isNullable(e.segment.data)||W.isNullable(e.segment.loadedBytes)||W.isNullable(e.segment.feedingBytes)||W.isNullable(e.segment.fedBytes)||W.isNullable(e.segment.size))return;let n=e.segment.data,r=new DataView(n.buffer,n.byteOffset+e.segment.feedingBytes,n.byteLength-e.segment.feedingBytes),i=e.segment.loadedBytes===e.segment.size?r:this.parseFeedableSegmentChunk(r);i?.byteLength&&(e.segment.bufferStatus=`partially_fed`,e.segment.feedingBytes+=i.byteLength,await this.nativeBufferManager.append(i,t)&&(e.segment.fedBytes+=i.byteLength,e.segment.fedBytes===e.segment.size&&this.onItemFullyAppended(e)))}parseFeedableSegmentChunk(e){return this.containerParser.parseFeedableSegmentChunk(e,!1)}onItemFullyDownloaded(e){e.segment.networkStatus=`downloaded`}onItemFullyAppended(e){e.segment.bufferStatus=`fed`}async removeSegment(e,t){let{from:n,to:r}=e.segment.time,i=(r-n)/4;await this.nativeBufferManager.remove(0,r-i,t)&&(e.segment.fedBytes=0,e.segment.feedingBytes=0,e.segment.bufferStatus=`none`,this.bufferPlaybackQueue.shift())}async onDownloadItem(e){if(!this.downloadingBufferItems.find(t=>t===e))return;let t=this.getCurrentPosition();return this.downloadingBufferItems=this.downloadingBufferItems.filter(t=>t!==e||t.segment.networkStatus!==`downloaded`),(this.preloadOnly||W.isNonNullable(t)&&!this.withinRemoveInterval(t,e.segment.time))&&!this.bufferPlaybackQueue.find(t=>t===e)&&this.bufferPlaybackQueue.push(e),this.maintainNativeBuffer()}pruneVirtualBuffer(e){let{maxVirtualBufferSize:t,virtualBufferPruneSize:n,bufferPruningSafeZone:r}=this.tuning.dash;if(this.currentVirtualBufferSize<t)return;let i=this.currentVirtualBufferSize-t+n;for(let t of this.segments.values())for(let n of t)W.isNonNullable(n.size)&&i>0&&n.time.to<=e-r&&n.bufferStatus===`none`&&n.networkStatus===`downloaded`&&(n.data=null,n.networkStatus=`none`,this.currentVirtualBufferSize-=n.size,i-=n.size);for(let t of this.segments.values())for(let n of[...t].reverse())W.isNonNullable(n.size)&&i>0&&n.time.from>=e+r&&n.bufferStatus===`none`&&n.networkStatus===`downloaded`&&!this.bufferPlaybackQueue.find(e=>e.segment===n)&&!this.downloadingBufferItems.find(e=>e.segment===n)&&(n.data=null,n.networkStatus=`none`,this.currentVirtualBufferSize-=n.size,i-=n.size)}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())this.updateRepresentationBaseUrl(t,e)}}var Tl=require(`@vkontakte/videoplayer-shared/es2018`);class El extends wl{constructor(e,t,n,r){super(e,t,n,r)}async loadItems(e,t,n=`auto`){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let{url:i,...a}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{await this.fetcher.fetch(i,{...a,priority:n}),this.lastDataObtainedTimestampMs=Tl.now(),this.failedDownloads=0}catch(e){this.abortDownloadingItems(),Tl.isAbortError(e)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}selectItemsToLoad(){let e=0,t=0,n=[],r=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,i=this.preloadOnly?this.forwardBufferTarget:0,a=0;for(;a<this.downloadingBufferItems.length&&this.downloadingBufferItems[a].segment.networkStatus===`none`&&(e<=r||t<=i);){let r=this.downloadingBufferItems[a].segment;r.networkStatus=`downloading`,r.size=1/0,r.loadedBytes=0,r.feedingBytes=0,r.fedBytes=0,n.push(this.downloadingBufferItems[a]),e+=r.byte.to+1-r.byte.from,t+=r.time.to+1-r.time.from,a++}return n}prepareFetchParams(e,t){if(Zo(t.segmentReference))throw Error(`Representation is not byte range type`);let{signal:n}=this.downloadAbortController,r=t.segmentReference.url,i={from:e[0].segment.byte.from,to:e[e.length-1].segment.byte.to};return{url:r,range:i,onProgress:async(r,a)=>{if(!n.aborted)try{this.lastDataObtainedTimestampMs=Tl.now(),await this.onSomeDataLoaded({downloadingItems:e,dataView:r,loaded:a,signal:n,globalFrom:i?i.from:0,representationId:t.id})}catch(e){this.error$.next({id:`SegmentFeeding`,category:Tl.ErrorCategory.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}},signal:n,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}async onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:n,globalFrom:r,loaded:i,signal:a}){let o=this.representations.get(n);if(!(!this.downloadingBufferItems.length||Tl.isNullable(o)||Tl.isNullable(r)||a.aborted))for(let n of e){let{segment:e}=n,a=e.byte.from-r,o=e.byte.to-r,s=o-a+1,c=a<i,l=o<=i;e.size=s,c&&(e.networkStatus===`downloading`&&e.bufferStatus===`none`&&l?(e.data=new DataView(t.buffer,t.byteOffset+a,s),this.currentVirtualBufferSize+=e.size,this.onItemFullyDownloaded(n),e.loadedBytes=Math.min(s,i-a),await this.onDownloadItem(n)):Tl.isNonNullable(e.feedingBytes)&&this.tuning.dash.enableSubSegmentBufferFeeding&&e.networkStatus===`downloading`&&(e.loadedBytes=Math.min(s,i-a),l&&(this.currentVirtualBufferSize+=e.size,this.onItemFullyDownloaded(n)),e.loadedBytes>e.feedingBytes&&(e.data=new DataView(t.buffer,t.byteOffset+a,e.loadedBytes),await this.onDownloadItem(n))))}}updateRepresentationBaseUrl(e,t){if(Zo(e.segmentReference))throw Error(`Representation is not byte range type`);e.segmentReference.url=t}}var Dl=require(`@vkontakte/videoplayer-shared/es2018`);class Ol extends wl{constructor(e,t,n,r){super(e,t,n,r)}async loadItems(e,t,n=`auto`){let{signal:r}=this.downloadAbortController;if(r.aborted||!e.length)return;let{url:i,...a}=this.prepareFetchParams(e,t);if(this.failedDownloads&&await this.waitExponentialDownloadDelay(),!r.aborted)try{let t=await this.fetcher.fetch(i,{...a,priority:n});if(this.lastDataObtainedTimestampMs=Dl.now(),Dl.isNullable(t))return;let r=e[0],o=new DataView(t);r.segment.size=o.byteLength,r.segment.loadedBytes=o.byteLength,r.segment.data=o,this.onItemFullyDownloaded(r),await this.onDownloadItem(r),this.failedDownloads=0}catch(e){this.abortDownloadingItems(),Dl.isAbortError(e)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}selectItemsToLoad(){let e=[];for(let t of this.downloadingBufferItems){let n=t.segment;n.networkStatus=`downloading`,n.size=1/0,n.loadedBytes=0,n.feedingBytes=0,n.fedBytes=0,e.push(t)}return e}prepareFetchParams(e,t){let n=this.getFetchUrl(e,t).toString(),{signal:r}=this.downloadAbortController;return{url:n,onProgress:async(n,i)=>{if(!r.aborted)try{this.lastDataObtainedTimestampMs=Dl.now(),await this.onSomeDataLoaded({downloadingItems:e,dataView:n,loaded:i,signal:r,representationId:t.id})}catch(e){this.error$.next({id:`SegmentFeeding`,category:Dl.ErrorCategory.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}},signal:r,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}}getFetchUrl(e,t){if(!Zo(t.segmentReference))throw Error(`Representation is not template type`);return new URL(e[0].segment.url,t.segmentReference.baseUrl)}async onSomeDataLoaded({downloadingItems:e,dataView:t,representationId:n,loaded:r,signal:i}){let a=e[0],{segment:o}=a,s=this.representations.get(n);!this.downloadingBufferItems.length||Dl.isNullable(s)||Dl.isNullable(o.feedingBytes)||o.networkStatus!==`downloading`||i.aborted||(o.loadedBytes=r,o.loadedBytes>o.feedingBytes&&this.tuning.dash.enableSubSegmentBufferFeeding&&(o.data=new DataView(t.buffer,t.byteOffset,o.loadedBytes),await this.onDownloadItem(a)))}updateRepresentationBaseUrl(e,t){if(!Zo(e.segmentReference))throw Error(`Representation is not template type`);e.segmentReference.baseUrl=t}}var kl=u(Gn(),1),Al=require(`@vkontakte/videoplayer-shared/es2018`);class jl extends Ol{constructor(t,n,r,i){super(t,n,r,i),e(this,`currentLiveSegmentServerLatency$`,new Al.ValueSubject(0)),e(this,`currentLowLatencySegmentLength$`,new Al.ValueSubject(0)),e(this,`liveInitialAdditionalOffset`,0),e(this,`isSeekingLive`,!1),e(this,`isActiveLowLatency`,void 0),this.isActiveLowLatency=i.isActiveLowLatency}updateManifest(e){if(!e||[...this.segments.values()].every(e=>!e.length))return;let t=kl.default(e.streams[this.kind],e=>e.representations);for(let e of t){if(Al.isNullable(e)||!Zo(e.segmentReference))return;let t=e.segmentReference.segments.map(e=>({...e,networkStatus:`none`,bufferStatus:`none`,size:void 0})),n=this.segments.get(e.id)??[],r=Za(n,-1)?.time.to??0,i=t?.findIndex(e=>r>=e.time.from+100&&r<=e.time.to+100);if(i===-1){let t=this.getActualLiveStartingSegments(e.segmentReference);this.segments.set(e.id,t)}else{let r=t.slice(i+1);this.segments.set(e.id,[...n,...r])}this.representations.set(e.id,e)}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;Al.assertNonNullable(e);let t=this.segments.get(e);if(t?.length){let n={representationId:e,segmentIndex:t.length-1,segment:t[t.length-1]};this.updateLowLatencyLive(n)}}getLiveSegmentsToLoadState(e){let t=e?.streams[this.kind],n=(t==null?void 0:kl.default(t,e=>e.representations)).find(e=>e.id===this.downloadingRepresentationId);if(Al.isNullable(n))return;let r=this.segments.get(n.id);if(r?.length)return{from:r[0].time.from,to:r[r.length-1].time.to}}getRepresentationInitialTime(){if(Al.isNullable(this.playingRepresentationId))return 0;let e=this.representations.get(this.playingRepresentationId)?.segmentReference;return Al.isNullable(e)||!Zo(e)?0:this.getActualLiveStartingSegments(e)[0].time.from+this.tuning.dash.bufferTolerance}prepareFetchParams(e,t){return{...super.prepareFetchParams(e,t),isLowLatency:this.isActiveLowLatency()}}async onSomeDataLoaded({downloadingItems:e,...t}){await super.onSomeDataLoaded({downloadingItems:e,...t}),this.isActiveLowLatency()&&this.updateLowLatencyItemTime(e[0])}onItemFullyDownloaded(e){if(super.onItemFullyDownloaded(e),Al.isNullable(e.segment.data)||!this.isActiveLowLatency())return;let t=e.segment.data,{serverDataReceivedTimestamp:n,serverDataPreparedTime:r}=this.containerParser.getServerLatencyTimestamps(t);n&&r&&this.currentLiveSegmentServerLatency$.next(r-n),this.updateLowLatencyItemTime(e),this.updateLowLatencyLive(e)}updateLowLatencyItemTime(e){let t=e.segment.data,n=this.representations.get(e.representationId)?.segmentReference;if(Al.isNullable(e.segment.data)||Al.isNullable(n)||!Zo(n))return;let r=this.containerParser;if(e.segment.isCurrentLowLatency){let{timescale:i}=n;e.segment.time.to=r.getChunkEndTime(t,i)}}updateLowLatencyLive(e){let t=0;for(let n of this.representations.values()){let r=n.segmentReference;if(!Zo(r))return;let i=this.segments.get(n.id)??[],a=i.find(t=>Math.floor(t.time.from)===Math.floor(e.segment.time.from));if(a?.isCurrentLowLatency&&(a.time.to=e.segment.time.to,t=a.time.to-a.time.from,a.isCurrentLowLatency=!1),!i.find(t=>Math.floor(t.time.from)===Math.floor(e.segment.time.to))&&this.isActiveLowLatency()){let t=Math.round(e.segment.time.to*r.timescale/1e3).toString(10),n=Zs(r.segmentTemplateUrl,{segmentTime:t});i.push({networkStatus:`none`,bufferStatus:`none`,time:{from:e.segment.time.to,to:e.segment.time.to+this.tuning.dash.bufferTolerance},url:n,isCurrentLowLatency:!0})}}this.currentLowLatencySegmentLength$.next(t)}parseFeedableSegmentChunk(e){return this.containerParser.parseFeedableSegmentChunk(e,!0)}getFetchUrl(e,t){let n=super.getFetchUrl(e,t);return this.isActiveLowLatency()&&n.searchParams.set(`low-latency`,`yes`),n}async loadInit(e,t=`auto`,n=!1){try{let n=this.tuning.dash.useFetchPriorityHints?t:`auto`,r=this.fetcher.fetchRepresentation(e.segmentReference,this.containerParser,n);this.initDataPromises.set(e.id,r);let{initMetadata:i,initDataView:a,segments:o}=await r??{};if(this.initDataPromises.delete(e.id),Al.isNullable(a)||Al.isNullable(o))return;i&&this.parsedInitData.set(e.id,i);let s=this.getActualLiveStartingSegments(e.segmentReference);this.segments.has(e.id)||this.segments.set(e.id,s);let c=a.buffer.slice(a.byteOffset,a.byteOffset+a.byteLength);this.initData.set(e.id,c),this.failedDownloads=0}catch(e){n&&this.error$.next({id:`LoadInits`,category:Al.ErrorCategory.WTF,message:`loadInit threw`,thrown:e})}}getActualLiveStartingSegments(e){let t=e.segments,n=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],i=0,a=t.length-1;do r.unshift(t[a]),i+=t[a].time.to-t[a].time.from,a--;while(i<n&&a>=0);return this.liveInitialAdditionalOffset=i-n,this.isActiveLowLatency()?[r[0]]:r}}class Ml{static getBufferManager(e,t,n,r){return r.manifest?.live?new jl(e,t,n,r):Zo(n[0].segmentReference)?new Ol(e,t,n,r):new El(e,t,n,r)}}var Nl=require(`@vkontakte/videoplayer-shared/es2018`),Pl=require(`@vkontakte/videoplayer-shared/es2018`),Fl=18,Il=!1;try{Il=N.browser.isSafari&&!!N.browser.safariVersion&&N.browser.safariVersion<=Fl}catch(e){console.error(e)}class Ll{constructor(t,n=!1){e(this,`bufferFull$`,new Pl.Subject),e(this,`error$`,new Pl.Subject),e(this,`buffer`,void 0),e(this,`queue`,[]),e(this,`currentTask`,null),e(this,`destroyed`,!1),e(this,`abortRequested`,!1),e(this,`isAbortFixEnabled`,!1),e(this,`completeTask`,()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null,this.isAbortFixEnabled&&this.queue.shift()}this.queue.length&&this.pull()}catch(e){this.error$.next({id:`BufferTaskQueueUnknown`,category:Pl.ErrorCategory.VIDEO_PIPELINE,message:`Buffer appending or removal failed`,thrown:e})}}),this.buffer=t,this.isAbortFixEnabled=n,this.buffer.addEventListener(`updateend`,this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(n=>{let r={operation:`append`,data:e,signal:t,callback:n};this.queue.push(r),this.pull()})}async remove(e,t,n){return n&&n.aborted?!1:new Promise(r=>{let i={operation:`remove`,from:e,to:t,signal:n,callback:r};this.queue.unshift(i),this.pull()})}async abort(e){return new Promise(t=>{let n,r=e=>{this.abortRequested=!1,t(e)};n=Il&&e?{operation:`safariAbort`,init:e,callback:r}:{operation:`abort`,callback:r};for(let{callback:e}of this.queue)e(!1);this.abortRequested=!0,n&&(this.queue=[n]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener(`updateend`,this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name===`InvalidStateError`))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.isAbortFixEnabled?this.queue[0]:this.queue.shift();if(!e)return;if(e.signal?.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(e){e instanceof DOMException&&e.name===`QuotaExceededError`&&t===`append`?this.bufferFull$.next(this.currentTask.data.byteLength):e instanceof DOMException&&e.name===`InvalidStateError`||this.error$.next({id:`BufferTaskQueue:${t}`,category:Pl.ErrorCategory.VIDEO_PIPELINE,message:`Buffer operation failed`,thrown:e}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation===`abort`&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case`append`:this.buffer.appendBuffer(e.data);break;case`remove`:this.buffer.remove(e.from/1e3,e.to/1e3);break;case`abort`:this.buffer.abort();break;case`safariAbort`:this.buffer.abort(),this.buffer.appendBuffer(e.init);break;default:Pl.assertNever(t)}}}var Rl=Ll,zl=(e,t)=>{let n=0;for(let r=0;r<e.length;r++){let i=e.start(r)*1e3,a=e.end(r)*1e3;i<=t&&t<=a&&(n=a)}return Math.max(n-t,0)};class Bl{constructor(t){e(this,`error$`,new Nl.Subject),e(this,`mediaSource`,void 0),e(this,`sourceBuffer`,void 0),e(this,`sourceBufferTaskQueue`,void 0),e(this,`subscription`,new Nl.Subscription),this.mediaSource=t}init(e,t,n=!1){this.sourceBuffer=this.mediaSource.addSourceBuffer(`${e}; codecs="${t}"`),this.sourceBufferTaskQueue=new Rl(this.sourceBuffer,n),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(e=>this.error$.next(e))),this.subscription.add(Nl.fromEvent(this.sourceBuffer,`error`).subscribe(()=>this.error$.next({id:`SourceBuffer`,category:Nl.ErrorCategory.VIDEO_PIPELINE,message:`SourceBuffer Error event fired`})))}addInitSegment(e,t){return this.sourceBufferTaskQueue.append(e,t)}append(e,t){return this.sourceBufferTaskQueue.append(e,t)}remove(e,t,n){return this.sourceBufferTaskQueue.remove(e,t,n)}async clear(e){let t=this.getBufferState();if(Nl.isNullable(t))return Promise.resolve(!1);let n=!0;await this.sourceBufferTaskQueue.abort();for(let r of t)n&&=await this.sourceBufferTaskQueue.remove(r.from,r.to,e);return n}warmUpMediaSource(){!Nl.isNullable(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode=`segments`)}getBufferState(){if(Nl.isNullable(this.sourceBuffer)||!vo(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length)return null;let e=[];for(let t=0;t<this.sourceBuffer.buffered.length;t++)e.push({from:this.sourceBuffer.buffered.start(t)*1e3,to:this.sourceBuffer.buffered.end(t)*1e3});return e}getForwardBufferDuration(e){return Nl.isNullable(this.sourceBuffer)||!vo(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||Nl.isNullable(e)?0:zl(this.sourceBuffer.buffered,e)}async abortBuffer(e){return Nl.isNullable(this.sourceBuffer)?!1:this.sourceBufferTaskQueue.abort(e)}destroy(){if(this.subscription.unsubscribe(),this.sourceBufferTaskQueue?.destroy(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name===`NotFoundError`))throw e}this.sourceBuffer=null}}var Vl=(e,t)=>{e.video.forEach(e=>{e.representations.forEach(e=>{let{height:n,codecs:r,fps:i}=e,a=t.find(([e,t,i])=>e===`${n}p`&&uc(r)===i)?.[1];e.tvDisabled=Hl(a)&&Hl(i)&&i>a})})};function Hl(e){return typeof e==`number`&&Number.isInteger(e)}var Ul=[`timeupdate`,`progress`,`play`,`seeked`,`stalled`,`waiting`],Wl=[`timeupdate`,`progress`,`loadeddata`,`playing`,`seeked`];class Gl{constructor(t){e(this,`element`,null),e(this,`manifestUrlString`,``),e(this,`source`,null),e(this,`manifest`,null),e(this,`tuning`,void 0),e(this,`tracer`,void 0),e(this,`forceVideoCodec`,void 0),e(this,`videoBufferManager`,void 0),e(this,`audioBufferManager`,void 0),e(this,`bufferManagers`,[]),e(this,`videoNativeBufferManager`,void 0),e(this,`audioNativeBufferManager`,void 0),e(this,`nativeBufferManagers`,[]),e(this,`throughputEstimator`,void 0),e(this,`subscription`,new H.Subscription),e(this,`subscriptionRemovable`,new H.SubscriptionRemovable),e(this,`representationSubscription`,new H.Subscription),e(this,`fetcher`,void 0),e(this,`forceEnded$`,new H.Subject),e(this,`stallWatchdogSubscription`,void 0),e(this,`destroyController`,new js),e(this,`state$`,new P(`none`)),e(this,`currentVideoRepresentation$`,new H.ValueSubject(void 0)),e(this,`currentVideoRepresentationInit$`,new H.ValueSubject(void 0)),e(this,`currentAudioRepresentation$`,new H.ValueSubject(void 0)),e(this,`currentVideoSegmentLength$`,new H.ValueSubject(0)),e(this,`currentAudioSegmentLength$`,new H.ValueSubject(0)),e(this,`error$`,new H.Subject),e(this,`manifestRequested`,new H.Subject),e(this,`manifestReceived`,new H.Subject),e(this,`firstBytesRequested`,new H.Subject),e(this,`firstBytesReceived`,new H.Subject),e(this,`lastConnectionType$`,new H.ValueSubject(void 0)),e(this,`lastConnectionReused$`,new H.ValueSubject(void 0)),e(this,`lastRequestFirstBytes$`,new H.ValueSubject(void 0)),e(this,`lastConnectionMetrics$`,new H.ValueSubject(void 0)),e(this,`lastDownloadMetrics$`,new H.ValueSubject(void 0)),e(this,`currentLiveTextRepresentation$`,new H.ValueSubject(null)),e(this,`timeoutSourceOpenId`,void 0),e(this,`isLive$`,new H.ValueSubject(!1)),e(this,`isActiveLive$`,new H.ValueSubject(!1)),e(this,`isLowLatency$`,new H.ValueSubject(!1)),e(this,`liveDuration$`,new H.ValueSubject(0)),e(this,`liveSeekableDuration$`,new H.ValueSubject(0)),e(this,`liveAvailabilityStartTime$`,new H.ValueSubject(0)),e(this,`liveStreamStatus$`,new H.ValueSubject(void 0)),e(this,`currentBuffer$`,new H.ValueSubject({from:0,to:0})),e(this,`bufferLength$`,new H.ValueSubject(0)),e(this,`nativeBufferLength$`,new H.ValueSubject(0)),e(this,`liveLatency$`,new H.ValueSubject(void 0)),e(this,`liveLoadBufferLength$`,new H.ValueSubject(0)),e(this,`livePositionFromPlayer$`,new H.ValueSubject(0)),e(this,`currentStallDuration$`,new H.ValueSubject(0)),e(this,`videoLastDataObtainedTimestamp$`,new H.ValueSubject(0)),e(this,`fetcherRecoverableError$`,new H.Subject),e(this,`fetcherError$`,new H.Subject),e(this,`initRepresentations`,H.abortable(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initRepresentationsStart`,H.flattenObject({initialVideo:e,initialAudio:t,sourceHls:n})),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo(`representations_ready`);let r={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,getCurrentStallDuration:()=>this.currentStallDuration$.getValue(),isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest};this.createBuffers(r,e,t,n),this.initRepresentationSubscriptions(),yield this.waitStreamToOpen(),this.setSourceDuration(),H.assertNonNullable(this.videoBufferManager),yield Promise.all([this.videoBufferManager.startWith(e),t?this.audioBufferManager?.startWith(t):Promise.resolve()]),this.state$.setState(`representations_ready`),this.tracer.log(`initRepresentationsEnd`)}.bind(this))),e(this,`fetchManifest`,H.abortable(this.destroyController.signal,async function*(){try{return yield this.fetcher.fetchManifest(this.manifestUrlString)}catch(e){H.isNullable(this.manifest)&&!this.bufferLength$.getValue()&&this.error$.next({id:`LoadManifest`,category:H.ErrorCategory.NETWORK,message:`Failed to load manifest`,thrown:e})}}.bind(this))),this.throughputEstimator=t.throughputEstimator,this.tuning=t.tuning,this.tracer=t.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=t.forceVideoCodec,this.fetcher=new Rs({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:t.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:t.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.initTracerSubscription()}async initManifest(e,t,n){this.tracer.log(`initManifest`),this.state$.startTransitionTo(`manifest_ready`),this.element=e,this.manifestUrlString=this.prepareManifestUrlString(t,n),this.manifest=await this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState(`manifest_ready`):this.error$.next({id:`NoRepresentations`,category:H.ErrorCategory.PARSER,message:`No playable video representations`})}initBuffer(){H.assertNonNullable(this.element),this.state$.setState(`running`),this.subscription.add(H.merge(...Ul.map(e=>H.fromEvent(this.element,e)),H.fromEvent(H.getWindow(),`online`),H.interval(this.tuning.dash.tickMaintainInterval)).subscribe(()=>this.tick(),e=>this.error$.next({id:`DashVKPlayer`,category:H.ErrorCategory.WTF,message:`Internal logic error`,thrown:e})));let e=[...this.source?.activeSourceBuffers??[]];this.subscription.add(H.merge(...e.map(e=>H.fromEvent(e,`updateend`))).subscribe(e=>this.reinitDecoderIfNeeded())),this.subscription.add(H.fromEvent(this.element,`waiting`).subscribe(e=>{this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=H.interval(this.tuning.dash.stallWatchdogInterval).subscribe(()=>this.stallWatchdogIntervalCallback(),e=>this.error$.next({id:`StallWatchdogCallback`,category:H.ErrorCategory.NETWORK,message:`Can't restore DASH after stall.`,thrown:e})),this.subscriptionRemovable.add(this.stallWatchdogSubscription)}))}async switchRepresentation(e,t,n=!1){return{video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e]?.switchTo(t,n)}async seek(e,t=!1){H.assertNonNullable(this.element),H.assertNonNullable(this.videoBufferManager);let n;n=t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?e:Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(n),this.element.currentTime=n/1e3,N.browser.isSafari?(await this.audioBufferManager?.seek(n),await this.videoBufferManager.seek(n)):(await this.videoBufferManager.seek(n),await this.audioBufferManager?.seek(n)),this.tracer.log(`seek`,H.flattenObject({requestedPosition:e,forcePrecise:t,position:n}))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){H.isNonNullable(this.element)&&H.isNonNullable(this.source)&&H.isNonNullable(e)&&this.isStreamEnded&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.nativeBufferManagers.forEach(e=>e.warmUpMediaSource())}calculateDurationFromSegments(e){return Math.max(this.videoBufferManager?.calculateDurationFromSegments(e)||0,this.audioBufferManager?.calculateDurationFromSegments(e)||0)}get isStreamEnded(){return this.source?.readyState===`ended`}getStreams(){return this.manifest?.streams}getCodecs(){return this.manifest?.codecs}setBufferTarget(e){this.bufferManagers.forEach(t=>t.setTarget(e))}setPreloadOnly(e){this.bufferManagers.forEach(t=>t.setPreloadOnly(e))}stop(){this.tracer.log(`stop`),this.element?.querySelectorAll(`source`).forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.nativeBufferManagers.forEach(e=>e.destroy()),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState(`none`)}destroy(){this.subscription.unsubscribe(),this.subscriptionRemovable.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&H.getWindow().clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),H.isNonNullable(this.source)&&this.isStreamNotOpen&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}get isStreamNotOpen(){return this.source?.readyState!==`open`}async reinitDecoderIfNeeded(e=!1){let t=this.videoNativeBufferManager?.getBufferState()??[];if(H.isNullable(this.element)||!t.length)return;let n=this.element.currentTime*1e3;this.element.readyState<3&&t.some(e=>n>=e.from&&n<=e.to)&&(e?await this.seek(n):this.element.currentTime=this.element.currentTime)}async stallWatchdogIntervalCallback(){H.assertNonNullable(this.element),H.assertNonNullable(this.source);let{stallWatchdogInterval:e}=this.tuning.dash;if(this.isStreamNotOpen)return;let t=this.currentStallDuration$.getValue()+e;this.currentStallDuration$.next(t);let n={timeInWaiting:t};if(await this.reinitDecoderIfNeeded(t%1e3==0),this.isStallExceeded(t)){if(this.tuning.dash.useNewStallExitPolicy)return this.seek(this.element.currentTime*1e3);throw Error(`Stall timeout exceeded: ${t} ms`)}await this.restoreAfterDeepStall(n),this.tracer.log(`stallIntervalCallback`,H.flattenObject(n))}isStallExceeded(e){let{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:n}=this.tuning.dash,r=H.now(),i=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(i);let a=this.audioBufferManager?.lastDataObtainedTimestamp??0,o=this.videoBufferManager?.getForwardPlaybackBufferDuration()??0,s=this.audioBufferManager?.getForwardPlaybackBufferDuration()??0,c=H.isNonNullable(this.videoBufferManager)&&o<100&&r-i>n,l=H.isNonNullable(this.audioBufferManager)&&s<100&&r-a>n;return(c||l)&&e>n||e>=t}async updateManifest(){this.tracer.log(`updateManifestStart`,{manifestUrl:this.manifestUrlString});let e=await this.fetchManifest();if(H.isNullable(e))return null;let t=this.parseManifest(e);if(!t)return null;let n=this.getResultManifest(t);return this.tracer.log(`updateManifestEnd`,H.flattenObject(n)),n}parseManifest(e){try{return Qs(e??``,this.manifestUrlString)}catch(t){let n=Ps(e)??{id:`ManifestParsing`,category:H.ErrorCategory.PARSER,message:`Failed to parse MPD manifest`,thrown:t};this.error$.next(n)}}getResultManifest(e){let t={text:e.streams.text,video:[],audio:[]},n=(e,t,n)=>{var r,i,a,o;return!!(!((r=this.element)==null||(i=r.canPlayType)==null)&&i.call(r,t)&&!((a=$r())==null||(o=a.isTypeSupported)==null)&&o.call(a,`${t}; codecs="${n}"`)||e===`text`)},r,i;for(let a of[`video`,`audio`]){let o=e.streams[a].filter(({mime:e,codecs:t})=>n(a,e,t));t[a]=o;let s;if(this.tuning.dash.codecsPrioritizeEnabled){let e=o.map(({codecs:e})=>e);a===`audio`&&(i=lc(e),s=i[0]),a===`video`&&(r=cc(e),s=this.forceVideoCodec&&Di(r,this.forceVideoCodec)?this.forceVideoCodec:r[0]),s&&(t[a]=o.filter(({codecs:e})=>uc(e)===s))}else s=sc(new Set(o.map(({codecs:e})=>e))),s&&(t[a]=o.filter(({codecs:e})=>e.startsWith(s)));if(a===`video`){let e=this.tuning.preferHDR,n=t.video.some(e=>e.hdr),r=t.video.some(e=>!e.hdr);N.display.isHDR&&e&&n?t.video=t.video.filter(e=>e.hdr):r&&(t.video=t.video.filter(e=>!e.hdr));let{videoStreamRepresentaionsFilter:i}=this.tuning.dash;i.length&&Vl(t,i)}}let a={...e,streams:t};return this.tuning.dash.codecsPrioritizeEnabled&&(a.codecs={video:r,audio:i}),a}stopStallWatchdogSubscription(){this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)}createBuffers(e,t,n,r){H.assertNonNullable(this.manifest),H.assertNonNullable(this.element);let i=e=>{this.representationSubscription.add(H.fromEvent(e,`error`).pipe(H.filter(e=>!!this.element?.played.length)).subscribe(e=>{this.error$.next({id:`VideoSource`,category:H.ErrorCategory.VIDEO_PIPELINE,message:`Unexpected video source error`,thrown:e})}))};this.source=ni();let a=H.getWindow().document,o=a.createElement(`source`);if(i(o),o.src=URL.createObjectURL(this.source),this.element.appendChild(o),ei())if(r){let e=a.createElement(`source`);i(e),e.type=`application/x-mpegurl`,e.src=r.url,this.element.appendChild(e)}else this.element.disableRemotePlayback=!0;let s=this.manifest.streams.video.reduce((e,t)=>[...e,...t.representations],[]);if(this.videoNativeBufferManager=new Bl(this.source),this.videoBufferManager=Ml.getBufferManager(`video`,this.videoNativeBufferManager,s,e),this.bufferManagers=[this.videoBufferManager],this.nativeBufferManagers=[this.videoNativeBufferManager],H.isNonNullable(n)){this.audioNativeBufferManager=new Bl(this.source);let t=this.manifest.streams.audio.reduce((e,t)=>[...e,...t.representations],[]);this.audioBufferManager=Ml.getBufferManager(`audio`,this.audioNativeBufferManager,t,e),this.bufferManagers.push(this.audioBufferManager),this.nativeBufferManagers.push(this.audioNativeBufferManager)}}async waitStreamToOpen(){if(this.isStreamNotOpen){let e=this.tuning.dash.sourceOpenTimeout>=0;await new Promise(t=>{e&&(this.timeoutSourceOpenId=H.getWindow().setTimeout(()=>{if(this.isStreamNotOpen){t();return}this.error$.next({id:`OpenOfStream`,category:H.ErrorCategory.VIDEO_PIPELINE,message:`Failed to open MediaSource`,thrown:Error(`Timeout reject when wait sourceopen event`),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener(`sourceopen`,()=>{this.timeoutSourceOpenId&&H.getWindow().clearTimeout(this.timeoutSourceOpenId),t()},{once:!0})})}}initRepresentationSubscriptions(){this.representationSubscription.add(this.fetcher.manifestRequested.subscribe(this.manifestRequested)),this.representationSubscription.add(this.fetcher.manifestReceived.subscribe(this.manifestReceived)),this.representationSubscription.add(this.fetcher.firstBytesRequested.subscribe(this.firstBytesRequested)),this.representationSubscription.add(this.fetcher.firstBytesReceived.subscribe(this.firstBytesReceived)),this.representationSubscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.representationSubscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add(this.fetcher.lastConnectionMetrics$.subscribe(this.lastConnectionMetrics$)),this.representationSubscription.add(this.fetcher.lastDownloadMetrics$.subscribe(this.lastDownloadMetrics$)),this.representationSubscription.add(H.merge(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),H.assertNonNullable(this.videoBufferManager),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.initBufferLengthSubscription()}initBufferLengthSubscription(){this.representationSubscription.add(H.merge(...Wl.map(e=>H.fromEvent(this.element,e))).pipe(H.map(e=>this.videoBufferManager?.getPlaybackBufferState()),H.filter(H.isNonNullable),H.map(({from:e,to:t})=>({from:e/1e3,to:t/1e3}))).subscribe(this.currentBuffer$)),this.representationSubscription.add(H.merge(...Wl.map(e=>H.fromEvent(this.element,e))).pipe(H.map(e=>Math.min(this.videoBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0,this.audioBufferManager?.getForwardPlaybackBufferDuration()??0)),H.filterChanged()).subscribe(this.bufferLength$)),this.representationSubscription.add(this.nativeBufferLength$.pipe(H.filter(e=>e>this.tuning.dash.bufferEmptinessTolerance)).subscribe(e=>this.stopStallWatchdogSubscription()))}initTracerSubscription(){let e=H.getTraceSubscriptionMethod(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e(`error`)))}async tick(){if(H.isNullable(this.element)||H.isNullable(this.videoBufferManager)||this.isStreamNotOpen)return;let e=this.element.currentTime*1e3,t=(this.videoNativeBufferManager?.getBufferState()??[]).find(t=>e>=t.from&&e<=t.to);this.nativeBufferLength$.next(t?t.to-e:0),await this.videoBufferManager.maintain(e),await this.audioBufferManager?.maintain(e)}}var Kl=require(`@vkontakte/videoplayer-shared/es2018`);class ql extends Gl{constructor(e){super(e)}prepareManifestUrlString(e,t){return e}initRepresentationSubscriptions(){super.initRepresentationSubscriptions(),this.initDisableStallWatchdogSubscription(),this.initEndOfVideoSubscription()}setSourceDuration(){Kl.assertNonNullable(this.manifest),Kl.assertNonNullable(this.source);let e=[this.manifest.duration??0,..._s.default(_s.default([...this.manifest.streams.audio,...this.manifest.streams.video],e=>e.representations),e=>{let t=[];return e.duration&&t.push(e.duration),Zo(e.segmentReference)&&e.segmentReference.totalSegmentsDurationMs&&t.push(e.segmentReference.totalSegmentsDurationMs),t})];this.source.duration=Math.max(...e)/1e3}async restoreAfterDeepStall(e){Kl.assertNonNullable(this.element);let t=this.element.currentTime*1e3;await Promise.all([this.videoBufferManager?.maintain(t),this.audioBufferManager?.maintain(t)]),e.position=t}initDisableStallWatchdogSubscription(){Kl.assertNonNullable(this.element);let e=Kl.merge(Kl.fromEvent(this.element,`ended`),this.forceEnded$),t=this.nativeBufferLength$.pipe(Kl.filter(e=>e>this.tuning.dash.bufferEmptinessTolerance));this.representationSubscription.add(Kl.merge(e,t).subscribe(e=>this.stopStallWatchdogSubscription()))}initEndOfVideoSubscription(){let e=Kl.merge(...this.bufferManagers.map(e=>e.fullyBuffered$)).pipe(Kl.map(()=>this.bufferManagers.every(e=>e.fullyBuffered$.getValue()))),t=Kl.merge(...this.bufferManagers.map(e=>e.onLastSegment$)).pipe(Kl.map(()=>this.bufferManagers.some(e=>e.onLastSegment$.getValue()))),n=Kl.combine({allBuffersFull:e,someBufferEnded:t}).pipe(Kl.filterChanged(),Kl.map(({allBuffersFull:e,someBufferEnded:t})=>e&&t),Kl.filter(e=>e));this.representationSubscription.add(Kl.merge(this.forceEnded$,n).pipe(Kl.filter(e=>Kl.isNonNullable(this.source)&&this.source.readyState===`open`&&Array.from(this.source.sourceBuffers).every(e=>!e.updating))).subscribe(()=>{try{this.source?.endOfStream()}catch(e){this.error$.next({id:`EndOfStream`,category:Kl.ErrorCategory.VIDEO_PIPELINE,message:`Failed to end MediaSource stream`,thrown:e})}}))}}class Jl extends gs{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:n,genericErrorListener:r}=this.getProviderSubscriptionInfo();n(t.timeUpdate$,e.position$),n(t.durationChange$,e.duration$),this.subscription.add(this.player.currentVideoRepresentation$.pipe(Ho.filterChanged(),Ho.filter(e=>Ho.isNonNullable(e))).subscribe(e=>{let t=this.player.calculateDurationFromSegments(e);t&&this.params.output.duration$.next(t/1e3)},r))}getPlayer(){return new ql({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec})}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}}var Yl=require(`@vkontakte/videoplayer-shared/es2018`),Xl=require(`@vkontakte/videoplayer-shared/es2018`);class Zl{constructor(t){e(this,`prevReported`,void 0),e(this,`rawSeries$`,void 0),e(this,`smoothedSeries$`,void 0),e(this,`reportedSeries$`,void 0),e(this,`smoothed`,void 0),e(this,`pastMeasures`,[]),e(this,`takenMeasures`,0),e(this,`measuresCursor`,0),e(this,`params`,void 0),e(this,`smoothed$`,void 0),e(this,`debounced$`,void 0),this.params=t,this.pastMeasures=Array(t.deviationDepth),this.smoothed=this.prevReported=t.initial,this.smoothed$=new Xl.ValueSubject(t.initial),this.debounced$=new Xl.ValueSubject(t.initial);let n=t.label??`value`+Math.random().toString(16).substring(2,6);this.rawSeries$=new wa(`raw_${n}`),this.smoothedSeries$=new wa(`smoothed_${n}`),this.reportedSeries$=new wa(`reported_${n}`),this.rawSeries$.next(t.initial),this.smoothedSeries$.next(t.initial),this.reportedSeries$.next(t.initial)}next(e){let t=0,n=0;for(let e=0;e<this.pastMeasures.length;e++)this.pastMeasures[e]!==void 0&&(t+=(this.pastMeasures[e]-this.smoothed)**2,n++);this.takenMeasures=n,t/=n;let r=Math.sqrt(t),i=this.smoothed+this.params.deviationFactor*r,a=this.smoothed-this.params.deviationFactor*r;this.pastMeasures[this.measuresCursor]=e,this.measuresCursor=(this.measuresCursor+1)%this.pastMeasures.length,this.rawSeries$.next(e),this.updateSmoothedValue(e),this.smoothed$.next(this.smoothed),this.smoothedSeries$.next(this.smoothed),!(this.smoothed>i||this.smoothed<a)&&(Xl.isNullable(this.prevReported)||Math.abs(this.smoothed-this.prevReported)/this.prevReported>=this.params.changeThreshold)&&(this.prevReported=this.smoothed,this.debounced$.next(this.smoothed),this.reportedSeries$.next(this.smoothed))}}class Ql extends Zl{constructor(t){super(t),e(this,`slow`,void 0),e(this,`fast`,void 0),this.slow=this.fast=t.initial}updateSmoothedValue(e){this.slow=is(this.slow,e,this.params.emaAlphaSlow),this.fast=is(this.fast,e,this.params.emaAlphaFast),this.smoothed=(this.params.fastDirection>0?Math.max:Math.min)(this.slow,this.fast)}}class $l extends Zl{constructor(t){super(t),e(this,`emaSmoothed`,void 0),this.emaSmoothed=t.initial}updateSmoothedValue(e){let t=as(this.pastMeasures,this.takenMeasures);this.emaSmoothed=is(this.emaSmoothed,e,this.params.emaAlpha),this.smoothed=os(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount)?this.emaSmoothed:t}}class eu extends Zl{constructor(t){super(t),e(this,`extremumInterval`,void 0),e(this,`furtherValues`,[]),e(this,`currentTopExtremumValue`,0),this.extremumInterval=t.extremumInterval}next(e){this.currentTopExtremumValue<=e?(this.currentTopExtremumValue=e,this.furtherValues=[]):this.furtherValues.length===this.extremumInterval?(super.next(this.currentTopExtremumValue),this.currentTopExtremumValue=e,this.furtherValues=[]):this.furtherValues.push(e)}updateSmoothedValue(e){this.smoothed=this.smoothed?is(this.smoothed,e,this.params.emaAlpha):e}}class tu{static getSmoothedValue(e,t,n){return n.type===`TwoEma`?new Ql({initial:e,emaAlphaSlow:n.emaAlphaSlow,emaAlphaFast:n.emaAlphaFast,changeThreshold:n.changeThreshold,fastDirection:t,deviationDepth:n.deviationDepth,deviationFactor:n.deviationFactor,label:`throughput`}):new $l({initial:e,emaAlpha:n.emaAlpha,basisTrendChangeCount:n.basisTrendChangeCount,changeThreshold:n.changeThreshold,deviationDepth:n.deviationDepth,deviationFactor:n.deviationFactor,label:`throughput`})}static getLiveBufferSmoothedValue(e,t){return new eu({initial:e,label:`liveEdgeDelay`,...t})}}var G=require(`@vkontakte/videoplayer-shared/es2018`),nu=(e,t)=>{e&&e.playbackRate!==t&&(e.playbackRate=t)},ru=require(`@vkontakte/videoplayer-shared/es2018`);class iu{constructor(t,n){e(this,`currentRepresentation$`,new ru.ValueSubject(null)),e(this,`maxRepresentations`,4),e(this,`representationsCursor`,0),e(this,`representations`,[]),e(this,`getCurrentPosition`,void 0),e(this,`currentSegment`,null),this.getCurrentPosition=n.getCurrentPosition,this.processStreams(t)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!ru.isNullable(e))for(let t of this.representations)for(let n of t){let t=n.segmentReference,r=t.segments.length,i=t.segments[0].time.from,a=t.segments[r-1].time.to;if(e<i||e>a)continue;let o=t.segments.find(t=>t.time.from<=e&&t.time.to>=e);!o||this.currentSegment?.time.from===o.time.from&&this.currentSegment.time.to===o.time.to||(this.currentSegment=o,this.currentRepresentation$.next({...n,label:`Live Text`,language:`ru`,isAuto:!0,url:new URL(o.url,t.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let e=iu.filterRepresentations(t.representations);if(e){this.representations[this.representationsCursor]=e,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(e=>iu.filterRepresentations(e.representations))}static filterRepresentations(e){return e?.filter(e=>e.kind===`text`&&`segmentReference`in e&&Zo(e.segmentReference))}}class au extends Gl{constructor(t){super(t),e(this,`liveTextManager`,void 0),e(this,`liveStreamEndTimestamp`,0),e(this,`liveBuffer`,void 0),e(this,`livePauseWatchdogSubscription`,void 0),e(this,`liveWasInterrupted`,!1),this.liveBuffer=tu.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...t.tuning.dashCmafLive.lowLatency.bufferEstimator})}async seek(e){G.assertNonNullable(this.element),this.updateManifestUrlWithTimeOffset(e),this.manifest=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()}initBuffer(){super.initBuffer(),this.forcePositionToRepresentationInitialTime()}async forcePositionToRepresentationInitialTime(){let e=this.videoBufferManager?.getRepresentationInitialTime()??0;await super.seek(e,!1)}async tick(){await super.tick();let e=(this.element?.currentTime??0)*1e3;this.liveTextManager?.maintain(e)}setSourceDuration(){G.assertNonNullable(this.source),this.source.duration=2**53-1}isStallExceeded(e){let{keepSilentStallWatchdogWhenNotActive:t}=this.tuning.dashCmafLive,n=this.liveStreamStatus$.getValue()===`active`;return(!t||n)&&super.isStallExceeded(e)}async restoreAfterDeepStall(e){let{liveStallReinitInterval:t}=this.tuning.dash,{keepSilentStallWatchdogWhenNotActive:n}=this.tuning.dashCmafLive,r=this.currentStallDuration$.getValue(),i=this.liveStreamStatus$.getValue()===`active`;if(r%t===0){let t=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);e.liveLastOffset=t,!i&&n?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(t),this.manifest=await this.updateManifest(),await this.forcePositionToRepresentationInitialTime()):this.seek(t).catch(e=>{this.error$.next({id:`stallIntervalCallback`,category:G.ErrorCategory.VIDEO_PIPELINE,message:`stallIntervalCallback failed`,thrown:e})})}}async updateManifest(){let e=await super.updateManifest();if(G.isNullable(e))return null;if(G.isNullable(e.live))return this.error$.next({id:`ManifestParsing`,category:G.ErrorCategory.PARSER,message:`MPD doesnt contain live section for live stream`}),null;this.isLive$.next(!0);let{availabilityStartTime:t,latestSegmentPublishTime:n,streamIsUnpublished:r,streamIsAlive:i}=e.live,a=(e.duration??0)/1e3;this.liveSeekableDuration$.next(-1*a),this.liveDuration$.next((n-t)/1e3),this.liveAvailabilityStartTime$.next(e.live.availabilityStartTime);let o=`active`;if(i||(o=r?`unpublished`:`unexpectedly_down`),this.liveStreamStatus$.next(o),this.bufferManagers.forEach(t=>t.updateManifest(e)),this.liveTextManager?.updateLive(e),i&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let e=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seek(e).catch(e=>{this.error$.next({id:`updateManifest`,category:G.ErrorCategory.VIDEO_PIPELINE,message:`seekLive after stream restore failed`,thrown:e})})}return e}prepareManifestUrlString(e,t){return Nr(e,t,2)}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()===`active`?0:G.now()-this.liveStreamEndTimestamp,n=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(n===0),this.manifestUrlString=Nr(this.manifestUrlString,n,2)}createBuffers(e,t,n,r){G.assertNonNullable(this.manifest),super.createBuffers(e,t,n,r),iu.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new iu(this.manifest.streams.text,e))}initRepresentationSubscriptions(){G.assertNonNullable(this.element),G.assertNonNullable(this.videoBufferManager),this.isActiveLive$.next(this.isLive$.getValue()),super.initRepresentationSubscriptions();let e=this.videoBufferManager,t=this.bufferManagers;this.initStreamDurationOnPauseSubscription(),this.initLiveChangePlaybackRateSubscriptions(),this.initLiveDurationSubscriptions(e),this.initLiveBufferInfoSubscriptions(e,t),this.initLiveMaintainSubscription(t),G.isNonNullable(this.liveTextManager)&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$))}initStreamDurationOnPauseSubscription(){G.assertNonNullable(this.element);let{liveUpdateInterval:e}=this.tuning.dash,t=()=>G.interval(e).subscribe(async t=>{let n=Pr(this.manifestUrlString,2);this.manifestUrlString=Nr(this.manifestUrlString,n+e,2),this.liveStreamStatus$.getValue()===`active`&&(this.manifest=await this.updateManifest())});this.representationSubscription.add(G.fromEvent(this.element,`pause`).subscribe(e=>{this.livePauseWatchdogSubscription=t(),this.representationSubscription.add(this.livePauseWatchdogSubscription)})),this.representationSubscription.add(G.fromEvent(this.element,`play`).subscribe(e=>this.livePauseWatchdogSubscription?.unsubscribe()))}initLiveDurationSubscriptions(e){this.representationSubscription.add(this.liveDuration$.pipe(G.filterChanged()).subscribe(e=>this.liveStreamEndTimestamp=G.now())),this.representationSubscription.add(e.currentLowLatencySegmentLength$.subscribe(e=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!e)return;let t=this.liveSeekableDuration$.getValue()-e/1e3;this.liveSeekableDuration$.next(Math.max(t,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+e/1e3)}))}initLiveChangePlaybackRateSubscriptions(){this.representationSubscription.add(G.combine({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(G.map(({isActiveLive:e,isLowLatency:t})=>e&&t),G.filterChanged(),G.filter(e=>!this.isManualDecreasePlaybackInLive())).subscribe(e=>nu(this.element,1))),this.representationSubscription.add(G.combine({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(G.filter(e=>!this.isManualDecreasePlaybackInLive())).subscribe(({liveBuffer:e,isActiveLive:t,isLowLatency:n})=>{if(!n||!t)return;let r=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,i=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,a=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,o=e-r,s=1;Math.abs(o)>i&&(s=1+Math.sign(o)*a),nu(this.element,s)}))}initLiveBufferInfoSubscriptions(e,t){this.representationSubscription.add(G.combine({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(G.filter(({bufferLength:e,isActiveLive:t,isLowLatency:n})=>t&&n&&!!e),G.map(({bufferLength:e})=>e)).subscribe(this.liveBuffer)),this.representationSubscription.add(this.bufferLength$.subscribe(e=>{let n=0;if(e){let e=(this.element?.currentTime??0)*1e3;n=Math.min(...t.map(t=>t.getLiveSegmentsToLoadState(this.manifest)?.to??e))-e}this.liveLoadBufferLength$.getValue()!==n&&this.liveLoadBufferLength$.next(n)})),this.representationSubscription.add(G.combine({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:e.currentLiveSegmentServerLatency$}).pipe(G.filter(({isLive:e})=>e),G.filterChanged((e,t)=>t.bufferLength<e.bufferLength),G.map(({rtt:e,bufferLength:t,segmentServerLatency:n})=>{let r=Pr(this.manifestUrlString,2);return(e/2+t+n+r)/1e3})).subscribe(this.liveLatency$))}initLiveMaintainSubscription(e){let t=0;this.representationSubscription.add(G.combine({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(G.throttle(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:n,bufferLength:r})=>{G.assertNonNullable(this.element);let i=this.element.playbackRate,a=Pr(this.manifestUrlString,2),o=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,s=Math.min(o,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*i),c=this.tuning.dashCmafLive.normalizedActualBufferOffset*i,l=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*i,u=isFinite(n)?n:r,d=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),f=o<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(f);let p=`none`;if(d?p=`active_low_latency`:this.isLowLatency$.getValue()&&f?(e.forEach(e=>e.proceedLowLatencyLive()),p=`active_low_latency`):a!==0&&u<s?p=`live_forward_buffering`:u<s+l&&(p=`live_with_target_offset`),isFinite(n)&&(t=n>t?n:t),p===`live_forward_buffering`||p===`live_with_target_offset`){let e=t-(s+c),r=this.normalizeLiveOffset(Math.trunc(a+e/i)),o=Math.abs(r-a),l=0;!n||o<=this.tuning.dashCmafLive.offsetCalculationError?l=a:r>0&&o>this.tuning.dashCmafLive.offsetCalculationError&&(l=r),this.manifestUrlString=Nr(this.manifestUrlString,l,2)}(p===`live_with_target_offset`||p===`live_forward_buffering`)&&(t=0,this.manifest=await this.updateManifest())},e=>{this.error$.next({id:`updateLive`,category:G.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:`Failed to update live with subscription`})}))}isManualDecreasePlaybackInLive(){if(!this.element||!this.isLive$.getValue())return!1;let e=1-this.element.playbackRate;return Number(e.toFixed(2))>Number(this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup.toFixed(2))}normalizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}}class ou extends gs{constructor(e){super(e),this.textTracksManager.destroy()}getPlayer(){return new au({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec})}subscribe(){super.subscribe();let e=!1,t=-1,{output:n,observableVideo:r,desiredState:i,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canPlayLiveTailBuffer$.next(!0);let o=new Yl.ValueSubject(1);a(r.playbackRateState$,o),a(r.timeUpdate$,n.liveBufferTime$),a(this.player.liveSeekableDuration$,n.duration$),a(this.player.liveLatency$,n.liveLatency$),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(n.elementVisible$.pipe(Yl.filterChanged()).subscribe(t=>{let r=n.position$.getValue(),i=n.volume$.getValue(),a=!i.volume||i.muted;!t&&!r&&a?e=!0:t&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(i.isLowLatency.stateChangeEnded$.pipe(Yl.map(e=>e.to)).subscribe(this.player.isLowLatency$)).add(Yl.combine({liveBufferTime:n.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(Yl.map(({liveBufferTime:e,liveAvailabilityStartTime:t})=>e&&t?e+t:void 0)).subscribe(n.liveTime$)).add(Yl.combine({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:Yl.merge(r.playbackRateState$,new Yl.ValueSubject(1))}).pipe(Yl.filter(({liveStreamStatus:e,liveDuration:t})=>e===`active`&&!!t)).subscribe(({liveDuration:e,playbackRate:r})=>{let i=n.liveBufferTime$.getValue(),a=n.position$.getValue(),{playbackCatchupSpeedup:o}=this.params.tuning.dashCmafLive.lowLatency;a||r<1-o||this.video.paused||Yl.isNullable(i)||(t=e-i)})).add(Yl.combine({time:n.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:Yl.merge(r.playbackRateState$,new Yl.ValueSubject(1))}).pipe(Yl.filterChanged((e,t)=>this.player.liveStreamStatus$.getValue()===`active`?e.liveDuration===t.liveDuration:e.time===t.time)).subscribe(({time:e,liveDuration:r,playbackRate:i})=>{let a=n.position$.getValue(),{playbackCatchupSpeedup:o}=this.params.tuning.dashCmafLive.lowLatency;if(!a&&!this.video.paused&&i>=1-o||Yl.isNullable(e)||Yl.isNullable(r))return;let s=-1*(r-e-t);n.position$.next(Math.min(s,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(e=>{if(e){let t=Jo(e);this.params.output.availableTextTracks$.next([t])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(Yl.filter(e=>Yl.isNonNullable(e))).subscribe(e=>n.isLiveEnded$.next(e===`unpublished`&&n.position$.getValue()===0)))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,n=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seek(n).then(()=>{this.params.output.position$.next(e/1e3)})}}var K=require(`@vkontakte/videoplayer-shared/es2018`),su=u(Gn(),1),cu=(e,t,n=0)=>{for(let r=0;r<e.length;r++)if(e.start(r)*1e3-n<=t&&e.end(r)*1e3+n>t)return!0;return!1},q=require(`@vkontakte/videoplayer-shared/es2018`),lu=u(at(),1),uu=u(An(),1),du=u(Gn(),1),fu=u(En(),1),pu=require(`@vkontakte/videoplayer-shared/es2018`),mu=18,hu=!1;try{hu=N.browser.isSafari&&!!N.browser.safariVersion&&N.browser.safariVersion<=mu}catch(e){console.error(e)}class gu{constructor(t,n=!1){e(this,`bufferFull$`,new pu.Subject),e(this,`error$`,new pu.Subject),e(this,`buffer`,void 0),e(this,`queue`,[]),e(this,`currentTask`,null),e(this,`destroyed`,!1),e(this,`abortRequested`,!1),e(this,`isAbortFixEnabled`,!1),e(this,`completeTask`,()=>{try{if(this.currentTask){let e=this.currentTask.signal?.aborted;this.currentTask.callback(!e),this.currentTask=null,this.isAbortFixEnabled&&this.queue.shift()}this.queue.length&&this.pull()}catch(e){this.error$.next({id:`BufferTaskQueueUnknown`,category:pu.ErrorCategory.VIDEO_PIPELINE,message:`Buffer appending or removal failed`,thrown:e})}}),this.buffer=t,this.isAbortFixEnabled=n,this.buffer.addEventListener(`updateend`,this.completeTask)}async append(e,t){return t&&t.aborted?!1:new Promise(n=>{let r={operation:`append`,data:e,signal:t,callback:n};this.queue.push(r),this.pull()})}async remove(e,t,n){return n&&n.aborted?!1:new Promise(r=>{let i={operation:`remove`,from:e,to:t,signal:n,callback:r};this.queue.unshift(i),this.pull()})}async abort(e){return new Promise(t=>{let n,r=e=>{this.abortRequested=!1,t(e)};n=hu&&e?{operation:`safariAbort`,init:e,callback:r}:{operation:`abort`,callback:r};for(let{callback:e}of this.queue)e(!1);this.abortRequested=!0,n&&(this.queue=[n]),this.pull()})}destroy(){this.destroyed=!0,this.buffer.removeEventListener(`updateend`,this.completeTask),this.queue=[],this.currentTask=null;try{this.buffer.abort()}catch(e){if(!(e instanceof DOMException&&e.name===`InvalidStateError`))throw e}}pull(){if((this.buffer.updating||this.currentTask||this.destroyed)&&!this.abortRequested)return;let e=this.isAbortFixEnabled?this.queue[0]:this.queue.shift();if(!e)return;if(e.signal?.aborted){e.callback(!1),this.pull();return}this.currentTask=e;let{operation:t}=this.currentTask;try{this.execute(this.currentTask)}catch(e){e instanceof DOMException&&e.name===`QuotaExceededError`&&t===`append`?this.bufferFull$.next(this.currentTask.data.byteLength):e instanceof DOMException&&e.name===`InvalidStateError`||this.error$.next({id:`BufferTaskQueue:${t}`,category:pu.ErrorCategory.VIDEO_PIPELINE,message:`Buffer operation failed`,thrown:e}),this.currentTask.callback(!1),this.currentTask=null}this.currentTask&&this.currentTask.operation===`abort`&&this.completeTask()}execute(e){let{operation:t}=e;switch(t){case`append`:this.buffer.appendBuffer(e.data);break;case`remove`:this.buffer.remove(e.from/1e3,e.to/1e3);break;case`abort`:this.buffer.abort();break;case`safariAbort`:this.buffer.abort(),this.buffer.appendBuffer(e.init);break;default:pu.assertNever(t)}}}var _u=gu,vu=e=>{let t=0;for(let n=0;n<e.length;n++)t+=e.end(n)-e.start(n);return t*1e3},J=require(`@vkontakte/videoplayer-shared/es2018`);class yu{constructor(t,n,r,{fetcher:i,tuning:a,getCurrentPosition:o,isActiveLowLatency:s,compatibilityMode:c=!1,manifest:l}){e(this,`currentLiveSegmentServerLatency$`,new J.ValueSubject(0)),e(this,`currentLowLatencySegmentLength$`,new J.ValueSubject(0)),e(this,`currentSegmentLength$`,new J.ValueSubject(0)),e(this,`onLastSegment$`,new J.ValueSubject(!1)),e(this,`fullyBuffered$`,new J.ValueSubject(!1)),e(this,`playingRepresentation$`,new J.ValueSubject(void 0)),e(this,`playingRepresentationInit$`,new J.ValueSubject(void 0)),e(this,`error$`,new J.Subject),e(this,`gaps`,[]),e(this,`subscription`,new J.Subscription),e(this,`kind`,void 0),e(this,`initData`,void 0),e(this,`parsedInitData`,void 0),e(this,`representations`,void 0),e(this,`segments`,void 0),e(this,`allInitsLoaded`,!1),e(this,`activeSegments`,new Set),e(this,`mediaSource`,void 0),e(this,`playingRepresentationId`,void 0),e(this,`downloadingRepresentationId`,void 0),e(this,`switchingToRepresentationId`,void 0),e(this,`sourceBuffer`,void 0),e(this,`downloadAbortController`,new js),e(this,`switchAbortController`,new js),e(this,`destroyAbortController`,new js),e(this,`useSmartRepresentationSwitch`,!1),e(this,`getCurrentPosition`,void 0),e(this,`isActiveLowLatency`,void 0),e(this,`tuning`,void 0),e(this,`forwardBufferTarget`,void 0),e(this,`fetcher`,void 0),e(this,`bufferLimit`,1/0),e(this,`sourceBufferTaskQueue`,void 0),e(this,`gapDetectionIdleCallback`,void 0),e(this,`initLoadIdleCallback`,void 0),e(this,`failedDownloads`,0),e(this,`baseUrls`,[]),e(this,`baseUrlsIndex`,0),e(this,`compatibilityMode`,void 0),e(this,`preloadOnly`,void 0),e(this,`isLive`,!1),e(this,`liveUpdateSegmentIndex`,0),e(this,`liveInitialAdditionalOffset`,0),e(this,`isSeekingLive`,!1),e(this,`index`,0),e(this,`lastDataObtainedTimestampMs`,0),e(this,`loadByteRangeSegmentsTimeoutId`,0),e(this,`startWith`,J.abortable(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);J.assertNonNullable(t,`Cannot find representation ${e}`),this.playingRepresentationId=e,this.downloadingRepresentationId=e,this.sourceBuffer=this.mediaSource.addSourceBuffer(`${t.mime}; codecs="${t.codecs}"`),this.sourceBufferTaskQueue=new _u(this.sourceBuffer,this.tuning.dash.useAbortMSEFix),this.subscription.add(J.fromEvent(this.sourceBuffer,`updateend`).subscribe(()=>{this.checkEjectedSegments(),this.maintain()},e=>{let t,n=this.mediaSource.readyState;n!==`open`&&(t={id:`SegmentEjection_source_${n}`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`Error when trying to clear segments ejected by browser`,thrown:e}),t??={id:`SegmentEjection`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`Error when trying to clear segments ejected by browser`,thrown:e},this.error$.next(t)})),this.subscription.add(J.fromEvent(this.sourceBuffer,`error`).subscribe(()=>this.error$.next({id:`SourceBuffer`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`SourceBuffer Error event fired`}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(e=>{let t=this.getCurrentPosition();if(!this.sourceBuffer||!t||!vo(this.mediaSource,this.sourceBuffer))return;this.bufferLimit=Math.min(this.bufferLimit,vu(this.sourceBuffer.buffered)*.8);let n=this.getForwardBufferDuration(t),r=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(t,e*2,n<r).catch(e=>{this.handleAsyncError(e,`pruneBuffer`)})})),this.subscription.add(this.sourceBufferTaskQueue.error$.subscribe(e=>this.error$.next(e))),yield this.loadInit(t,`high`,!0);let n=this.initData.get(t.id),r=this.segments.get(t.id),i=this.parsedInitData.get(t.id);J.assertNonNullable(n,`No init buffer for starting representation`),J.assertNonNullable(r,`No segments for starting representation`),n instanceof ArrayBuffer&&(this.searchGaps(r,t),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(i))}.bind(this))),e(this,`switchTo`,J.abortable(this.destroyAbortController.signal,async function*(e,t=!1){if(!vo(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let n=this.representations.get(e);J.assertNonNullable(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(J.isNullable(i)||J.isNullable(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),J.assertNonNullable(r,`No segments for starting representation`),i=this.initData.get(e),!(!i||!(i instanceof ArrayBuffer)||!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(i,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let t=this.getCurrentPosition();J.isNonNullable(t)&&!this.isLive&&(this.bufferLimit=1/0,await this.pruneBuffer(t,1/0,!0)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}this.maintain()}}.bind(this))),e(this,`switchToOld`,J.abortable(this.destroyAbortController.signal,async function*(e,t=!1){if(!vo(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let n=this.representations.get(e);J.assertNonNullable(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(J.isNullable(i)||J.isNullable(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),J.assertNonNullable(r,`No segments for starting representation`),i=this.initData.get(e),!(!i||!(i instanceof ArrayBuffer)||!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(i,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let t=this.getCurrentPosition();J.isNonNullable(t)&&(this.isLive||(this.bufferLimit=1/0,await this.pruneBuffer(t,1/0,!0)),this.maintain(t)),this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e}}.bind(this))),e(this,`seekLive`,J.abortable(this.destroyAbortController.signal,async function*(e){let t=du.default(e,e=>e.representations);if(!this.downloadingRepresentationId||!t.length)return;this.isSeekingLive=!0;for(let e of this.representations.keys()){let n=t.find(t=>t.id===e);n&&this.representations.set(e,n);let r=this.representations.get(e);if(!r||!Cl(r.segmentReference)){this.isSeekingLive=!1;return}let i=this.getActualLiveStartingSegments(r.segmentReference);this.segments.set(r.id,i)}let n=this.switchingToRepresentationId??this.downloadingRepresentationId,r=this.representations.get(n);J.assertNonNullable(r,`Representation not found by id ${n}`);let i=this.segments.get(n);J.assertNonNullable(i,`No segments for starting representation`);let a=this.initData.get(n);if(J.assertNonNullable(a,`No init buffer for starting representation`),!(a instanceof ArrayBuffer)){this.isSeekingLive=!1;return}let o=this.getDebugBufferState();this.liveUpdateSegmentIndex=0,yield this.abort(),o&&(yield this.sourceBufferTaskQueue.remove(o.from*1e3,o.to*1e3,this.destroyAbortController.signal)),this.searchGaps(i,r),yield this.sourceBufferTaskQueue.append(a,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this))),this.fetcher=i,this.tuning=a,this.compatibilityMode=c,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=o,this.isActiveLowLatency=s,this.isLive=!!l?.live,this.baseUrls=l?.baseUrls??[],this.initData=new Map(r.map(e=>[e.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(r.map(e=>[e.id,e])),this.kind=t,this.mediaSource=n,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!vo(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new js,J.abortable(this.switchAbortController.signal,async function*(e,t=!1){this.switchingToRepresentationId=e;let n=this.representations.get(e);J.assertNonNullable(n,`No such representation ${e}`);let r=this.segments.get(e),i=this.initData.get(e);if(J.isNullable(i)||J.isNullable(r)?yield this.loadInit(n,`high`,!1):i instanceof Promise&&(yield i),r=this.segments.get(e),J.assertNonNullable(r,`No segments for starting representation`),i=this.initData.get(e),!(!(i instanceof ArrayBuffer)||!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(i,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let t=this.getCurrentPosition();J.isNonNullable(t)&&!this.isLive&&(this.bufferLimit=this.forwardBufferTarget,yield this.pruneBuffer(t,1/0,!0)),this.downloadingRepresentationId=e,this.switchingToRepresentationId=void 0}this.maintain()}}.bind(this))(e,t))}warmUpMediaSource(){!J.isNullable(this.sourceBuffer)&&!this.sourceBuffer.updating&&(this.sourceBuffer.mode=`segments`)}async abort(){for(let e of this.activeSegments)this.abortSegment(e.segment);return this.activeSegments.clear(),this.downloadAbortController.abort(),this.downloadAbortController=new js,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if(J.isNullable(e)||J.isNullable(this.downloadingRepresentationId)||J.isNullable(this.playingRepresentationId)||J.isNullable(this.sourceBuffer)||!vo(this.mediaSource,this.sourceBuffer)||J.isNonNullable(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),n=this.representations.get(this.playingRepresentationId),r=this.segments.get(this.downloadingRepresentationId),i=this.segments.get(this.playingRepresentationId);if(J.assertNonNullable(t,`No such representation ${this.downloadingRepresentationId}`),J.assertNonNullable(n,`No such representation ${this.playingRepresentationId}`),J.isNullable(r)||J.isNullable(i))return;let a=r.find(t=>e>=t.time.from&&e<t.time.to);J.isNonNullable(a)&&isFinite(a.time.from)&&isFinite(a.time.to)&&this.currentSegmentLength$.next(a?.time.to-a.time.from);let o=e;if(this.playingRepresentationId!==this.downloadingRepresentationId){let r=this.getForwardBufferDuration(e),i=gl(n),s=gl(t),c=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useSmartRepresentationSwitch&&J.isNonNullable(i)&&J.isNonNullable(s)&&J.isHigher(i.quality,s.quality),l=this.useSmartRepresentationSwitch&&this.tuning.dash.useNewRepresentationSwitch&&this.tuning.dash.useDelayedRepresentationSwitch;if(c||l?o+=Math.min(r,this.tuning.dash.representationSwitchForwardBufferGap):a&&a.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&r>=a.time.to-e+100&&(o=a?a.time.to+100:-1/0),this.tuning.dash.useNewRepresentationSwitch){let t=[...this.segments.entries()].map(([t,n])=>({representationId:t,status:n.find(t=>e>=t.time.from&&e<t.time.to)?.status})).find(e=>e.status===`fed`)?.representationId;t&&(this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)))}}if(isFinite(this.bufferLimit)&&vu(this.sourceBuffer.buffered)>=this.bufferLimit){let t=this.getForwardBufferDuration(e),n=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,t<n).catch(e=>{this.handleAsyncError(e,`pruneBuffer`)});return}let s=[];if(!this.activeSegments.size&&(s=this.selectForwardBufferSegments(r,t.segmentReference.type,o),s.length)){let e=`auto`;if(this.tuning.dash.useFetchPriorityHints&&a)if(lu.default(s,a))e=`high`;else{let t=uu.default(s,0);t&&t.time.from-a.time.to>=this.forwardBufferTarget/2&&(e=`low`)}this.loadSegments(s,t,e).catch(e=>{this.handleAsyncError(e,`loadSegments`)})}(!this.preloadOnly&&!this.allInitsLoaded&&a&&a.status===`fed`&&!s.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let c=uu.default(r,-1);!this.isLive&&c&&(this.fullyBuffered$.next(c.time.to-e-this.getForwardBufferDuration(e)<100),this.onLastSegment$.next(e-c.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let n=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let i of e)Math.trunc(i.time.from-n)>0&&this.gaps.push({representation:t.id,from:n,to:i.time.from+r,persistent:!0}),n=i.time.to;J.isNonNullable(t.duration)&&t.duration-n>0&&!this.isLive&&this.gaps.push({representation:t.id,from:n,to:t.duration,persistent:!0})}getActualLiveStartingSegments(e){let t=e.segments,n=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],i=0,a=t.length-1;do r.unshift(t[a]),i+=t[a].time.to-t[a].time.from,a--;while(i<n&&a>=0);return this.liveInitialAdditionalOffset=i-n,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=e?.streams[this.kind];if(!t)return;let n=du.default(t,e=>e.representations).find(e=>e.id===this.downloadingRepresentationId);if(!n)return;let r=this.segments.get(n.id);if(r?.length)return{from:r[0].time.from,to:r[r.length-1].time.to}}updateLive(e){if(!e||[...this.segments.values()].every(e=>!e.length))return;let t=du.default(e.streams[this.kind],e=>e.representations);for(let e of t){if(!e||!Cl(e.segmentReference))return;let t=e.segmentReference.segments.map(e=>({...e,status:`none`,size:void 0})),n=this.segments.get(e.id)??[],r=Za(n,-1)?.time.to??0,i=t?.findIndex(e=>r>=e.time.from+100&&r<=e.time.to+100);if(i===-1){this.liveUpdateSegmentIndex=0;let t=this.getActualLiveStartingSegments(e.segmentReference);this.segments.set(e.id,t)}else{let r=t.slice(i+1);this.segments.set(e.id,[...n,...r])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;J.assertNonNullable(e);let t=this.segments.get(e);if(t?.length){let e=t[t.length-1];this.updateLowLatencyLiveIfNeeded(e)}}calculateDurationFromSegments(){if(!this.playingRepresentationId)return 0;let e=this.segments.get(this.playingRepresentationId);return(e?uu.default(e,-1)?.time.to:0)||0}setSmartRepresentationSwitch(e){this.useSmartRepresentationSwitch=e}updateLowLatencyLiveIfNeeded(e){let t=0;for(let n of this.representations.values()){let r=n.segmentReference;if(!Cl(r))return;let i=this.segments.get(n.id)??[],a=i.find(t=>Math.floor(t.time.from)===Math.floor(e.time.from));if(a&&!isFinite(a.time.to)&&(a.time.to=e.time.to,t=a.time.to-a.time.from),!i.find(t=>Math.floor(t.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let t=Math.round(e.time.to*r.timescale/1e3).toString(10),n=Zs(r.segmentTemplateUrl,{segmentTime:t});i.push({status:`none`,time:{from:e.time.to,to:1/0},url:n})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){let t=this.switchingToRepresentationId??this.downloadingRepresentationId??this.playingRepresentationId;if(!t)return;let n=this.segments.get(t);return n?n.find(t=>t.time.from<=e&&t.time.to>=e)?.time.from??void 0:void 0}setTarget(e){this.forwardBufferTarget=e}setPreloadOnly(e){this.preloadOnly=e}destroy(){if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),this.sourceBufferTaskQueue?.destroy(),this.gapDetectionIdleCallback&&yc&&yc(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&yc&&yc(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(e){if(!(e instanceof DOMException&&e.name===`NotFoundError`))throw e}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,n){return this.isLive?this.selectForwardBufferSegmentsLive(e,n):this.selectForwardBufferSegmentsRecord(e,t,n)}selectForwardBufferSegmentsLive(e,t){let n=e.findIndex(e=>t>=e.time.from&&t<e.time.to);return this.playingRepresentationId!==this.downloadingRepresentationId&&(this.liveUpdateSegmentIndex=n),this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):[]}selectForwardBufferSegmentsRecord(e,t,n){let r=this.getForwardBufferDuration(n),i=e.findIndex(({status:e,time:{from:t,to:i}},a)=>{let o=t>n||t<=n&&i>=n||a===0&&n===0,s=Math.min(this.forwardBufferTarget,this.bufferLimit),c=this.preloadOnly&&t<=n+s||r<s&&i-t>=s||i<=n+s;return(e===`none`||e===`partially_ejected`&&o&&c&&this.sourceBuffer&&vo(this.mediaSource,this.sourceBuffer)&&!(cu(this.sourceBuffer.buffered,t)&&cu(this.sourceBuffer.buffered,i)))&&o&&c});if(i===-1)return[];if(t!==`byteRange`)return e.slice(i,i+1);let a=e,o=0,s=0,c=[],l=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,u=this.preloadOnly?this.forwardBufferTarget:0;for(let e=i;e<a.length&&(o<=l||s<=u);e++){let t=a[e];if(o+=t.byte.to+1-t.byte.from,s+=t.time.to+1-t.time.from,t.status===`none`||t.status===`partially_ejected`)c.push(t);else break}return c}async loadSegments(e,t,n=`auto`){Cl(t.segmentReference)?await this.loadTemplateSegment(e[0],t,n):await this.loadByteRangeSegments(e,t,n)}async loadTemplateSegment(e,t,n=`auto`){e.status=`downloading`;let r={segment:e,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id};this.activeSegments.add(r);let{range:i,url:a,signal:o,onProgress:s,onProgressTasks:c}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await J.abortable(o,async function*(){let e=J.getExponentialDelay(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>setTimeout(t,e))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let e=await this.fetcher.fetch(a,{range:i,signal:o,onProgress:s,priority:n,isLowLatency:this.isActiveLowLatency(),bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation});if(this.lastDataObtainedTimestampMs=J.now(),!e)return;let l=new DataView(e),u=pl(t.mime);if(!isFinite(r.segment.time.to)){let e=t.segmentReference.timescale;r.segment.time.to=u.getChunkEndTime(l,e)}s&&r.feedingBytes&&c?await Promise.all(c):await this.sourceBufferTaskQueue.append(l,o);let{serverDataReceivedTimestamp:d,serverDataPreparedTime:f}=u.getServerLatencyTimestamps(l);d&&f&&this.currentLiveSegmentServerLatency$.next(f-d),r.segment.status=`downloaded`,this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(t){this.abortActiveSegments([e]),J.isAbortError(t)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}updateRepresentationsBaseUrlIfNeeded(){if(!this.tuning.dash.enableBaseUrlSupport||!this.baseUrls.length||this.failedDownloads<=this.tuning.dash.maxSegmentRetryCount)return;this.baseUrlsIndex=(this.baseUrlsIndex+1)%this.baseUrls.length;let e=this.baseUrls[this.baseUrlsIndex];for(let t of this.representations.values())Cl(t.segmentReference)?t.segmentReference.baseUrl=e:t.segmentReference.url=e}async loadByteRangeSegments(e,t,n=`auto`){if(!e.length)return;for(let n of e)n.status=`downloading`,this.activeSegments.add({segment:n,loadedBytes:0,feedingBytes:0,fedBytes:0,representationId:t.id});let{range:r,url:i,signal:a,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&a&&(await J.abortable(a,async function*(){let e=J.getExponentialDelay(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(t,e),J.fromEvent(window,`online`).pipe(J.once()).subscribe(()=>{t(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),a.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(i,{range:r,onProgress:o,signal:a,priority:n,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}),this.lastDataObtainedTimestampMs=J.now(),this.failedDownloads=0}catch(t){this.abortActiveSegments(e),J.isAbortError(t)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(Cl(t.segmentReference))throw Error(`Representation is not byte range type`);let n=t.segmentReference.url,r={from:uu.default(e,0).byte.from,to:uu.default(e,-1).byte.to},{signal:i}=this.downloadAbortController;return{url:n,range:r,signal:i,onProgress:async(e,n)=>{if(!i.aborted)try{this.lastDataObtainedTimestampMs=J.now(),await this.onSomeByteRangesDataLoaded({dataView:e,loaded:n,signal:i,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(e){this.error$.next({id:`SegmentFeeding`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}}}}prepareTemplateFetchSegmentParams(e,t){if(!Cl(t.segmentReference))throw Error(`Representation is not template type`);let n=new URL(e.url,t.segmentReference.baseUrl);this.isActiveLowLatency()&&n.searchParams.set(`low-latency`,`yes`);let r=n.toString(),{signal:i}=this.downloadAbortController,a=[];return{url:r,signal:i,onProgress:this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(e,n)=>{if(!i.aborted)try{this.lastDataObtainedTimestampMs=J.now();let r=this.onSomeTemplateDataLoaded({dataView:e,loaded:n,signal:i,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});a.push(r)}catch(e){this.error$.next({id:`SegmentFeeding`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`Error when feeding segments`,thrown:e})}}:void 0,onProgressTasks:a}}abortActiveSegments(e){for(let t of this.activeSegments)lu.default(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:n,onSegmentAppendFailed:r,signal:i}){if(!this.activeSegments.size||!vo(this.mediaSource,this.sourceBuffer))return;let a=this.representations.get(t);if(a)for(let o of this.activeSegments){let{segment:s}=o;if(o.representationId===t){if(i.aborted){r();continue}if(o.loadedBytes=n,o.loadedBytes>o.feedingBytes){let t=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),n=pl(a.mime).parseFeedableSegmentChunk(t,this.isLive);n?.byteLength&&(s.status=`partially_fed`,o.feedingBytes+=n.byteLength,await this.sourceBufferTaskQueue.append(n),o.fedBytes+=n.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:n,loaded:r,signal:i,onSegmentAppendFailed:a}){if(!this.activeSegments.size||!vo(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let s of this.activeSegments){let{segment:c}=s;if(s.representationId!==t)continue;if(i.aborted){await a();continue}let l=c.byte.from-n,u=c.byte.to-n,d=u-l+1,f=l<r,p=u<=r;if(!f)continue;let m=pl(o.mime);if(c.status===`downloading`&&p){c.status=`downloaded`;let n=new DataView(e.buffer,e.byteOffset+l,d);await this.sourceBufferTaskQueue.append(n,i)&&!i.aborted?this.onSegmentFullyAppended(s,t):await a()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(c.status===`downloading`||c.status===`partially_fed`)&&(s.loadedBytes=Math.min(d,r-l),s.loadedBytes>s.feedingBytes)){let n=new DataView(e.buffer,e.byteOffset+l+s.feedingBytes,s.loadedBytes-s.feedingBytes),r=s.loadedBytes===d?n:m.parseFeedableSegmentChunk(n);r?.byteLength&&(c.status=`partially_fed`,s.feedingBytes+=r.byteLength,await this.sourceBufferTaskQueue.append(r,i)&&!i.aborted?(s.fedBytes+=r.byteLength,s.fedBytes===d&&this.onSegmentFullyAppended(s,t)):await a())}}}onSegmentFullyAppended(e,t){if(!(J.isNullable(this.sourceBuffer)||!vo(this.mediaSource,this.sourceBuffer))){!this.isLive&&N.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(cu(this.sourceBuffer.buffered,e.segment.time.from,100)&&cu(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:`EmptyAppendBuffer`,category:J.ErrorCategory.VIDEO_PIPELINE,message:`Browser stuck on empty result of adding segment to source buffer`})),this.tuning.dash.useNewRepresentationSwitch||(this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId))),e.segment.status=`fed`,Sl(e.segment)&&(e.segment.size=e.fedBytes);for(let n of this.representations.values())if(n.id!==t)for(let t of this.segments.get(n.id)??[])t.status===`fed`&&Math.round(t.time.from)===Math.round(e.segment.time.from)&&Math.round(t.time.to)===Math.round(e.segment.time.to)&&(t.status=`none`);this.updateLowLatencyLiveIfNeeded(e.segment),this.activeSegments.delete(e),this.detectGapsWhenIdle(t,[e.segment])}}abortSegment(e){e.status===`partially_fed`?e.status=`partially_ejected`:e.status!==`partially_ejected`&&(e.status=`none`);for(let t of this.activeSegments.values())if(t.segment===e){this.activeSegments.delete(t);break}}loadNextInit(){if(this.allInitsLoaded||this.initLoadIdleCallback)return;let e=null,t=!1;for(let[n,r]of this.initData.entries()){let i=r instanceof Promise;t||=i,r===null&&(e=n)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let n=this.representations.get(e);n&&(this.initLoadIdleCallback=vc(()=>fu.default(this.loadInit(n,`low`,!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t=`auto`,n=!1){let r=this.tuning.dash.useFetchPriorityHints?t:`auto`,i=!n&&this.tuning.dash.ignoreNetworkErrorsOnLoadInit,a=(!n&&this.failedDownloads>0?J.abortable(this.destroyAbortController.signal,async function*(){let e=J.getExponentialDelay(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(t=>setTimeout(t,e))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,pl(e.mime),{priority:r,ignoreNetworkErrors:i})).then(async t=>{if(!t)return;let{init:n,dataView:r,segments:i}=t,a=r.buffer.slice(r.byteOffset,r.byteOffset+r.byteLength);this.initData.set(e.id,a);let o=i;this.isLive&&Cl(e.segmentReference)&&(o=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,o),n&&this.parsedInitData.set(e.id,n)}).then(()=>this.failedDownloads=0,t=>{i||this.initData.set(e.id,null),n&&this.error$.next({id:`LoadInits`,category:J.ErrorCategory.WTF,message:`loadInit threw`,thrown:t})});return this.initData.set(e.id,a),a}async dropBuffer(){for(let e of this.segments.values())for(let t of e)t.status=`none`;await this.pruneBuffer(0,1/0,!0)}async pruneBuffer(e,t,n=!1){if(!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||J.isNullable(e))return!1;let r=[],i=0,a=e=>{e.sort((e,t)=>e.from-t.from);let t=[e[0]];for(let n=1;n<e.length;n++){let{from:r,to:i}=e[n],a=t[t.length-1];a.to>=r?a.to=Math.max(a.to,i):t.push(e[n])}return t},o=e=>{if(i>=t)return r;r.push({...e.time}),r=a(r);let n=Sl(e)?e.size??0:e.byte.to-e.byte.from;i+=n};for(let t of this.segments.values())for(let n of t){let t=n.time.to<=e-this.tuning.dash.bufferPruningSafeZone,r=n.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(t||r)&&n.status===`fed`&&o(n)}for(let e=0;e<this.sourceBuffer.buffered.length;e++){let t=this.sourceBuffer.buffered.start(e)*1e3,n=this.sourceBuffer.buffered.end(e)*1e3,r=0;for(let e of this.segments.values())for(let i of e)lu.default([`none`,`partially_ejected`],i.status)&&Math.round(i.time.from)<=Math.round(t)&&Math.round(i.time.to)>=Math.round(n)&&r++;r===this.segments.size&&o({time:{from:t,to:n},url:``,status:`none`})}if(r.length&&n){let t=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let n of this.segments.values())for(let r of n)r.time.from>=e+t&&r.status===`fed`&&o(r)}return r.length?(await Promise.all(r.map(e=>this.sourceBufferTaskQueue.remove(e.from,e.to)))).reduce((e,t)=>e||t,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer))return!1;let e=this.playingRepresentationId&&this.initData.get(this.playingRepresentationId),t=e instanceof ArrayBuffer?e:void 0;return this.sourceBufferTaskQueue.abort(t)}getDebugBufferState(){if(!(!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length))return{from:this.sourceBuffer.buffered.start(0),to:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||J.isNullable(e)?0:zl(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer)))for(let n of t){let t={representation:e,from:n.time.from,to:n.time.to,persistent:!1},{buffered:r}=this.sourceBuffer;for(let e=0;e<r.length;e++){let i=r.start(e)*1e3,a=r.end(e)*1e3;if(!(a<=n.time.from||i>=n.time.to)){if(i<=n.time.from&&a>=n.time.to){t=void 0;break}a>n.time.from&&a<n.time.to&&(t.from=a),i<n.time.to&&i>n.time.from&&(t.to=i)}}t&&t.to-t.from>1&&!this.gaps.some(e=>t&&e.from===t.from&&e.to===t.to)&&this.gaps.push(t)}}detectGapsWhenIdle(e,t){if(this.gapDetectionIdleCallback||!this.sourceBuffer||!vo(this.mediaSource,this.sourceBuffer))return;let{buffered:n}=this.sourceBuffer,{usePersistentGaps:r}=this.tuning.dash;this.gaps=this.gaps.filter(e=>{if(r&&e.persistent)return!0;let t=Math.round(e.from),i=Math.round(e.to);for(let e=0;e<n.length;e++)if(t>=Math.round(n.start(e)*1e3)&&i<=Math.round(n.end(e)*1e3))return!1;return!0}),this.gapDetectionIdleCallback=vc(()=>{try{this.detectGaps(e,t)}catch(e){this.error$.next({id:`GapDetection`,category:J.ErrorCategory.WTF,message:`detectGaps threw`,thrown:e})}finally{this.gapDetectionIdleCallback=null}})}checkEjectedSegments(){if(J.isNullable(this.sourceBuffer)||!vo(this.mediaSource,this.sourceBuffer)||J.isNullable(this.playingRepresentationId))return;let e=[];for(let t=0;t<this.sourceBuffer.buffered.length;t++){let n=Math.floor(this.sourceBuffer.buffered.start(t)*1e3),r=Math.ceil(this.sourceBuffer.buffered.end(t)*1e3);e.push({from:n,to:r})}for(let t of this.segments.values())for(let n of t){let{status:t}=n;if(t!==`fed`&&t!==`partially_ejected`)continue;let r=Math.floor(n.time.from),i=Math.ceil(n.time.to),a=e.some(e=>e.from-100<=r&&e.to+100>=i),o=e.filter(e=>r>=e.from&&r<e.to-100||i>e.from+100&&i<=e.to);a||(o.length===1||this.gaps.some(e=>e.from===n.time.from||e.to===n.time.to)?n.status=`partially_ejected`:n.status=`none`)}}handleAsyncError(e,t){this.error$.next({id:t,category:J.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:`Something went wrong`})}}var Y=require(`@vkontakte/videoplayer-shared/es2018`);class bu{constructor({throughputEstimator:t,requestQuic:n,tracer:r,compatibilityMode:i=!1,useEnableSubtitlesParam:a=!1}){e(this,`throughputEstimator`,void 0),e(this,`requestQuic`,void 0),e(this,`tracer`,void 0),e(this,`manifestRequested$`,new Y.Subject),e(this,`firstBytesManifest$`,new Y.Subject),e(this,`firstBytesRequested$`,new Y.Subject),e(this,`firstBytesReceived$`,new Y.Subject),e(this,`lastConnectionType$`,new Y.ValueSubject(void 0)),e(this,`lastConnectionReused$`,new Y.ValueSubject(void 0)),e(this,`lastRequestFirstBytes$`,new Y.ValueSubject(void 0)),e(this,`lastConnectionMetrics$`,new Y.ValueSubject(void 0)),e(this,`lastDownloadMetrics$`,new Y.ValueSubject(void 0)),e(this,`recoverableError$`,new Y.Subject),e(this,`error$`,new Y.Subject),e(this,`abortAllController`,new js),e(this,`subscription`,new Y.SubscriptionRemovable),e(this,`compatibilityMode`,void 0),e(this,`useEnableSubtitlesParam`,void 0),e(this,`performanceObserver`,null),e(this,`pendingConnectionMetrics`,new Map),e(this,`fetchManifest`,Y.abortable(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer(`FetchManifest`),n=e;this.requestQuic&&(n=Fs(n)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(n=Ls(n)),this.trackRequestStart(n,performance.now());let r=Y.now();this.manifestRequested$.next();let i=yield this.doFetch(n,{signal:this.abortAllController.signal}).catch(Y.suppressAbort);if(i){let a=Y.now();t.log(`success`,Y.flattenObject({url:n,message:`Request successfully executed`})),t.end(),this.onHeadersReceived(i.headers),this.firstBytesManifest$.next();let o=i.headers.get(`content-length`),s=0;o&&(s=parseInt(o,10));let c=await i.text();if((!o||isNaN(s)||s<=0)&&(s=new TextEncoder().encode(c).length),s>0){let t=a-r,n=s/(t/1e3)*8/1024,i={bytes:s,speed:n,url:e};this.lastDownloadMetrics$.next(i)}return c}else return t.error(`error`,Y.flattenObject({url:n,message:`No data in request manifest`})),t.end(),null}.bind(this))),e(this,`fetch`,Y.abortable(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:n,onProgress:r,priority:i=`auto`,signal:a,measureThroughput:o=!0,isLowLatency:s=!1,bufferOptimisation:c=!1,ignoreNetworkErrors:l=!1}={}){let u=e,d=new Headers,f=this.tracer.createComponentTracer(`Fetch`);if(n)switch(t){case 0:d.append(`Range`,`bytes=${n.from}-${n.to}`);break;case 1:{let e=new URL(u,Y.getWindow().location.href);e.searchParams.append(`bytes`,`${n.from}-${n.to}`),u=e.toString();break}default:Y.assertNever(t)}this.requestQuic&&(u=Fs(u));let p=this.abortAllController.signal,m;if(a){let e=new js;if(m=Y.merge(Y.fromEvent(this.abortAllController.signal,`abort`),Y.fromEvent(a,`abort`)).subscribe(()=>{try{e.abort()}catch(e){Y.suppressAbort(e)}}),this.subscription.add(m),this.abortAllController.signal.aborted||a.aborted)try{e.abort()}catch(e){Y.suppressAbort(e)}p=e.signal}let h=0,g=Y.now();f.log(`startRequest`,Y.flattenObject({url:u,priority:i,rangeMethod:t,range:n,isLowLatency:s,requestStartedAt:g})),this.trackRequestStart(u,performance.now()),this.firstBytesRequested$.next();let _=yield this.doFetch(u,{priority:i,headers:d,signal:p},{ignoreNetworkErrors:l}),v=Y.now();if(!_)return f.error(`error`,{message:`No response in request`}),f.end(),this.unsubscribeAbortSubscription(m),null;if(this.throughputEstimator?.addRawRtt(v-g),!_.ok||!_.body){this.unsubscribeAbortSubscription(m);let e=`Fetch error ${_.status}: ${_.statusText}`;return f.error(`error`,{message:e}),f.end(),Promise.reject(Error(`Fetch error ${_.status}: ${_.statusText}`))}if(this.onHeadersReceived(_.headers),!r&&!o){this.unsubscribeAbortSubscription(m);let e=Y.now(),t={requestStartedAt:g,requestEndedAt:e,duration:e-g};return f.log(`endRequest`,Y.flattenObject(t)),f.end(),_.arrayBuffer()}let y=_.body;if(o){let e;[y,e]=_.body.tee(),this.throughputEstimator?.trackStream(e,s)}let b=y.getReader(),x,S=parseInt(_.headers.get(`content-length`)??``,10);Number.isFinite(S)&&(x=S),!x&&n&&(x=n.to-n.from+1);let C=x?new Uint8Array(x):new Uint8Array,w=!1,T=e=>{this.unsubscribeAbortSubscription(m),w=!0,Y.suppressAbort(e)},E=Y.abortable(p,async function*({done:e,value:t}){if(h===0&&(this.lastRequestFirstBytes$.next(Y.now()-g),this.firstBytesReceived$.next()),p.aborted){this.unsubscribeAbortSubscription(m);return}if(!e&&t){if(c&&x)C.set(t,h),h+=t.byteLength;else{let e=new Uint8Array(C.length+t.length);e.set(C),e.set(t,C.length),C=e,h+=t.byteLength}r?.(new DataView(C.buffer),h),yield b?.read().then(E,T)}}.bind(this));yield b?.read().then(E,T),this.unsubscribeAbortSubscription(m);let D=Y.now(),O={failed:w,requestStartedAt:g,requestEndedAt:D,duration:D-g};if(w)return f.error(`endRequest`,Y.flattenObject(O)),f.end(),null;if(h>0){let t=D-g,n=h/(t/1e3)*8/1024,r={bytes:h,speed:n,url:e};this.lastDownloadMetrics$.next(r)}return f.log(`endRequest`,Y.flattenObject(O)),f.end(),C.buffer}.bind(this))),e(this,`fetchByteRangeRepresentation`,Y.abortable(this.abortAllController.signal,async function*(e,t,n){if(e.type!==`byteRange`)return null;let{from:r,to:i}=e.initRange,a=r,o=i,s=!1,c,l;e.indexRange&&(c=e.indexRange.from,l=e.indexRange.to,s=i+1===c,s&&(a=Math.min(c,r),o=Math.max(l,i))),a=Math.min(a,0);let u=yield this.fetch(e.url,{range:{from:a,to:o},measureThroughput:!1,...n});if(!u)return null;let d=new DataView(u,r-a,i-a+1);if(!t.validateData(d))throw Error(`Invalid media file`);let f=t.parseInit(d),p=e.indexRange??t.getIndexRange(f);if(!p)throw ReferenceError(`No way to load representation index`);let m;if(s)m=new DataView(u,p.from-a,p.to-p.from+1);else{let t=yield this.fetch(e.url,{range:p,measureThroughput:!1});if(!t)return null;m=new DataView(t)}let h=t.parseSegments(m,f,p);return{init:f,dataView:new DataView(u),segments:h}}.bind(this))),e(this,`fetchTemplateRepresentation`,Y.abortable(this.abortAllController.signal,async function*(e,t){if(e.type!==`template`)return null;let n=new URL(e.initUrl,e.baseUrl).toString(),r=yield this.fetch(n,{measureThroughput:!1,...t});return r?{init:null,segments:e.segments.map(e=>({...e,status:`none`,size:void 0})),dataView:new DataView(r)}:null}.bind(this))),this.throughputEstimator=t,this.requestQuic=n,this.compatibilityMode=i,this.tracer=r.createComponentTracer(`Fetcher`),this.useEnableSubtitlesParam=a,Y.getWindow().PerformanceObserver&&this.setupPerformanceObserver()}onHeadersReceived(e){let{type:t,reused:n}=Is(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(n)}setupPerformanceObserver(){this.performanceObserver=new(Y.getWindow()).PerformanceObserver(e=>{e.getEntriesByType(`resource`).forEach(e=>{this.processPerformanceResourceTiming(e)})}),this.performanceObserver.observe({entryTypes:[`resource`]})}processPerformanceResourceTiming(e){let t=this.findMatchingRequest(e);if(!t||!this.pendingConnectionMetrics.get(t))return;this.pendingConnectionMetrics.delete(t);let n=this.extractConnectionMetrics(e);n&&this.lastConnectionMetrics$.next(n)}estimateNetworkType(){if(!(`connection`in Y.getWindow().navigator))return`unknown`;let e=Y.getWindow().navigator.connection;return e.effectiveType?{"slow-2g":`2g`,"2g":`2g`,"3g":`3g`,"4g":`lte`}[e.effectiveType]||e.effectiveType:e.downlink?e.downlink<1?`2g`:e.downlink<5?`3g`:e.downlink<50?`lte`:`wifi`:e.rtt?e.rtt>500?`2g`:e.rtt>250?`3g`:e.rtt>50?`lte`:`wifi`:`unknown`}extractConnectionMetrics(e){let t=0,n=0,r=0,i=0;return e.domainLookupStart>0&&e.domainLookupEnd>0&&(t=e.domainLookupEnd-e.domainLookupStart),e.connectStart>0&&e.connectEnd>0&&(i=e.connectEnd-e.connectStart,e.secureConnectionStart>0?(r=e.connectEnd-e.secureConnectionStart,n=e.secureConnectionStart-e.connectStart):n=i),{dnsResolveTime:Math.max(0,t),tcpHandshakeTime:Math.max(0,n),tlsHandshakeTime:Math.max(0,r),totalConnectTime:Math.max(0,i),networkType:this.estimateNetworkType(),url:e.name}}findMatchingRequest(e){try{for(let[t,n]of this.pendingConnectionMetrics.entries()){let r=new URL(e.name),i=r.origin+r.pathname,a=new URL(n.url);if(i===a.origin+a.pathname&&e.startTime>=n.startTime-10&&e.startTime<=n.startTime+1e3)return t}}catch{this.recoverableError$.next({id:`VideoDataFetchError`,message:`Video data fetch error with getting download metrics`,category:Y.ErrorCategory.WTF})}return null}trackRequestStart(e,t){let n=`${e}_${t}_${Math.random().toString(36).substr(2,9)}`;this.pendingConnectionMetrics.set(n,{url:e,startTime:t})}async fetchRepresentation(e,t,n){let{type:r}=e;switch(r){case`byteRange`:return await this.fetchByteRangeRepresentation(e,t,n)??null;case`template`:return await this.fetchTemplateRepresentation(e,n)??null;default:Y.assertNever(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.performanceObserver&&=(this.performanceObserver.disconnect(),null),this.pendingConnectionMetrics.clear(),this.tracer.end()}async doFetch(e,t,n){let r=await As(e,t);if(r.ok)return r;if(n?.ignoreNetworkErrors)return;let i=await r.text(),a=parseInt(i);if(!isNaN(a))switch(a){case 1:this.recoverableError$.next({id:`VideoDataLinkExpiredError`,message:`Video data links have expired`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 8:this.recoverableError$.next({id:`VideoDataLinkBlockedForFloodError`,message:`Url blocked for flood`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 18:this.recoverableError$.next({id:`VideoDataLinkIllegalIpChangeError`,message:`Client IP has changed`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;case 21:this.recoverableError$.next({id:`VideoDataLinkIllegalHostChangeError`,message:`Request HOST has changed`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i});break;default:this.error$.next({id:`GeneralVideoDataFetchError`,message:`Generic video data fetch error (${a})`,category:Y.ErrorCategory.FATAL,httpCode:r.status,UVBackendErrorCode:i})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}}var xu=require(`@vkontakte/videoplayer-shared/es2018`);class Su{constructor(t,n){e(this,`currentRepresentation$`,new xu.ValueSubject(null)),e(this,`maxRepresentations`,4),e(this,`representationsCursor`,0),e(this,`representations`,[]),e(this,`getCurrentPosition`,void 0),e(this,`currentSegment`,null),this.getCurrentPosition=n.getCurrentPosition,this.processStreams(t)}updateLive(e){this.processStreams(e?.streams.text)}seekLive(e){this.processStreams(e)}maintain(e=this.getCurrentPosition()){if(!xu.isNullable(e))for(let t of this.representations)for(let n of t){let t=n.segmentReference,r=t.segments.length,i=t.segments[0].time.from,a=t.segments[r-1].time.to;if(e<i||e>a)continue;let o=t.segments.find(t=>t.time.from<=e&&t.time.to>=e);!o||this.currentSegment?.time.from===o.time.from&&this.currentSegment.time.to===o.time.to||(this.currentSegment=o,this.currentRepresentation$.next({...n,label:`Live Text`,language:`ru`,isAuto:!0,url:new URL(o.url,t.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e??[]){let e=Su.filterRepresentations(t.representations);if(e){this.representations[this.representationsCursor]=e,this.representationsCursor=(this.representationsCursor+1)%this.maxRepresentations;break}}}static isSupported(e){return!!e?.some(e=>Su.filterRepresentations(e.representations))}static filterRepresentations(e){return e?.filter(e=>e.kind===`text`&&`segmentReference`in e&&Cl(e.segmentReference))}}var Cu=[`timeupdate`,`progress`,`play`,`seeked`,`stalled`,`waiting`],wu=[`timeupdate`,`progress`,`loadeddata`,`playing`,`seeked`];class Tu{constructor(t){e(this,`element`,null),e(this,`manifestUrlString`,``),e(this,`source`,null),e(this,`manifest`,null),e(this,`tuning`,void 0),e(this,`tracer`,void 0),e(this,`forceVideoCodec`,void 0),e(this,`videoBufferManager`,void 0),e(this,`audioBufferManager`,void 0),e(this,`bufferManagers`,[]),e(this,`liveTextManager`,void 0),e(this,`throughputEstimator`,void 0),e(this,`subscription`,new q.Subscription),e(this,`subscriptionRemovable`,new q.SubscriptionRemovable),e(this,`representationSubscription`,new q.Subscription),e(this,`fetcher`,void 0),e(this,`state$`,new P(`none`)),e(this,`currentVideoRepresentation$`,new q.ValueSubject(void 0)),e(this,`currentVideoRepresentationInit$`,new q.ValueSubject(void 0)),e(this,`currentAudioRepresentation$`,new q.ValueSubject(void 0)),e(this,`currentVideoSegmentLength$`,new q.ValueSubject(0)),e(this,`currentAudioSegmentLength$`,new q.ValueSubject(0)),e(this,`error$`,new q.Subject),e(this,`manifestRequested$`,new q.Subject),e(this,`firstBytesManifest$`,new q.Subject),e(this,`manifestReceived$`,new q.Subject),e(this,`firstBytesRequested$`,new q.Subject),e(this,`firstBytesReceived$`,new q.Subject),e(this,`lastConnectionType$`,new q.ValueSubject(void 0)),e(this,`lastConnectionReused$`,new q.ValueSubject(void 0)),e(this,`lastRequestFirstBytes$`,new q.ValueSubject(void 0)),e(this,`lastConnectionMetrics$`,new q.ValueSubject(void 0)),e(this,`lastDownloadMetrics$`,new q.ValueSubject(void 0)),e(this,`currentLiveTextRepresentation$`,new q.ValueSubject(null)),e(this,`timeoutSourceOpenId`,void 0),e(this,`isLive$`,new q.ValueSubject(!1)),e(this,`isActiveLive$`,new q.ValueSubject(!1)),e(this,`isLowLatency$`,new q.ValueSubject(!1)),e(this,`liveDuration$`,new q.ValueSubject(0)),e(this,`liveSeekableDuration$`,new q.ValueSubject(0)),e(this,`liveAvailabilityStartTime$`,new q.ValueSubject(0)),e(this,`liveStreamStatus$`,new q.ValueSubject(void 0)),e(this,`bufferLength$`,new q.ValueSubject(0)),e(this,`liveLatency$`,new q.ValueSubject(void 0)),e(this,`liveLoadBufferLength$`,new q.ValueSubject(0)),e(this,`livePositionFromPlayer$`,new q.ValueSubject(0)),e(this,`currentStallDuration$`,new q.ValueSubject(0)),e(this,`videoLastDataObtainedTimestamp$`,new q.ValueSubject(0)),e(this,`fetcherRecoverableError$`,new q.Subject),e(this,`fetcherError$`,new q.Subject),e(this,`liveStreamEndTimestamp`,0),e(this,`liveBuffer`,void 0),e(this,`isUpdatingLive`,!1),e(this,`isJumpGapAfterSeekLive`,!1),e(this,`forceEnded$`,new q.Subject),e(this,`gapWatchdogActive`,!1),e(this,`gapWatchdogSubscription`,void 0),e(this,`stallWatchdogSubscription`,void 0),e(this,`livePauseWatchdogSubscription`,void 0),e(this,`liveWasInterrupted`,!1),e(this,`destroyController`,new js),e(this,`initManifest`,q.abortable(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initManifest`),this.element=e,this.manifestUrlString=Nr(t,n,2),this.state$.startTransitionTo(`manifest_ready`),this.manifest=yield this.updateManifest(),this.manifest?.streams.video.length?this.state$.setState(`manifest_ready`):this.error$.next({id:`NoRepresentations`,category:q.ErrorCategory.PARSER,message:`No playable video representations`})}.bind(this))),e(this,`updateManifest`,q.abortable(this.destroyController.signal,async function*(){this.tracer.log(`updateManifestStart`,{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(e=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:`LoadManifest`,category:q.ErrorCategory.NETWORK,message:`Failed to load manifest`,thrown:e})});if(!e)return null;let t=null;try{t=Qs(e??``,this.manifestUrlString),this.manifestReceived$.next()}catch(t){let n=Ps(e)??{id:`ManifestParsing`,category:q.ErrorCategory.PARSER,message:`Failed to parse MPD manifest`,thrown:t};this.error$.next(n)}if(!t)return null;let n=(e,t,n)=>{var r,i,a,o;return!!(!((r=this.element)==null||(i=r.canPlayType)==null)&&i.call(r,t)&&!((a=$r())==null||(o=a.isTypeSupported)==null)&&o.call(a,`${t}; codecs="${n}"`)||e===`text`)};if(t.live){this.isLive$.next(!0);let{availabilityStartTime:e,latestSegmentPublishTime:n,streamIsUnpublished:r,streamIsAlive:i}=t.live,a=(t.duration??0)/1e3;this.liveSeekableDuration$.next(-1*a),this.liveDuration$.next((n-e)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let o=`active`;if(i||(o=r?`unpublished`:`unexpectedly_down`),this.liveStreamStatus$.next(o),i&&this.liveWasInterrupted){this.liveWasInterrupted=!1,this.stopStallWatchdogSubscription();let e=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(e).catch(e=>{this.error$.next({id:`updateManifest`,category:q.ErrorCategory.VIDEO_PIPELINE,message:`seekLive after stream restore failed`,thrown:e})})}}let r={text:t.streams.text,video:[],audio:[]},i,a;for(let e of[`video`,`audio`]){let o=t.streams[e].filter(({mime:t,codecs:r})=>n(e,t,r));r[e]=o;let s;if(this.tuning.dash.codecsPrioritizeEnabled){let t=o.map(({codecs:e})=>e);e===`audio`&&(a=lc(t),s=a[0]),e===`video`&&(i=cc(t),s=this.forceVideoCodec&&Di(i,this.forceVideoCodec)?this.forceVideoCodec:i[0]),s&&(r[e]=o.filter(({codecs:e})=>uc(e)===s))}else s=sc(new Set(o.map(({codecs:e})=>e))),s&&(r[e]=o.filter(({codecs:e})=>e.startsWith(s)));if(e===`video`){let e=this.tuning.preferHDR,t=r.video.some(e=>e.hdr),n=r.video.some(e=>!e.hdr);N.display.isHDR&&e&&t?r.video=r.video.filter(e=>e.hdr):n&&(r.video=r.video.filter(e=>!e.hdr));let{videoStreamRepresentaionsFilter:i}=this.tuning.dash;i.length&&Vl(r,i)}}let o={...t,streams:r};return this.tuning.dash.codecsPrioritizeEnabled&&(o.codecs={video:i,audio:a}),this.tracer.log(`updateManifestEnd`,q.flattenObject(o)),o}.bind(this))),e(this,`initRepresentations`,q.abortable(this.destroyController.signal,async function*(e,t,n){this.tracer.log(`initRepresentationsStart`,q.flattenObject({initialVideo:e,initialAudio:t,sourceHls:n})),q.assertNonNullable(this.manifest),q.assertNonNullable(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo(`representations_ready`);let r=e=>{this.representationSubscription.add(q.fromEvent(e,`error`).pipe(q.filter(e=>!!this.element?.played.length)).subscribe(e=>{this.error$.next({id:`VideoSource`,category:q.ErrorCategory.VIDEO_PIPELINE,message:`Unexpected video source error`,thrown:e})}))};this.source=ni();let i=document.createElement(`source`);if(r(i),i.src=URL.createObjectURL(this.source),this.element.appendChild(i),ei())if(n){let e=document.createElement(`source`);r(e),e.type=`application/x-mpegurl`,e.src=n.url,this.element.appendChild(e)}else this.element.disableRemotePlayback=!0;this.isActiveLive$.next(this.isLive$.getValue());let a={fetcher:this.fetcher,tuning:this.tuning,getCurrentPosition:()=>this.element?this.element.currentTime*1e3:void 0,isActiveLowLatency:()=>this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),manifest:this.manifest},o=this.manifest.streams.video.reduce((e,t)=>[...e,...t.representations],[]);if(this.videoBufferManager=new yu(`video`,this.source,o,a),this.bufferManagers=[this.videoBufferManager],q.isNonNullable(t)){let e=this.manifest.streams.audio.reduce((e,t)=>[...e,...t.representations],[]);this.audioBufferManager=new yu(`audio`,this.source,e,a),this.bufferManagers.push(this.audioBufferManager)}if(Su.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Su(this.manifest.streams.text,a)),this.representationSubscription.add(this.fetcher.lastRequestFirstBytes$.subscribe(this.lastRequestFirstBytes$)),this.representationSubscription.add(q.merge(...wu.map(e=>q.fromEvent(this.element,e))).pipe(q.map(e=>this.element?zl(this.element.buffered,this.element.currentTime*1e3):0),q.filterChanged(),q.tap(e=>{e>this.tuning.dash.bufferEmptinessTolerance&&this.stopStallWatchdogSubscription()})).subscribe(this.bufferLength$)),this.representationSubscription.add(q.merge(q.fromEvent(this.element,`ended`),this.forceEnded$).subscribe(()=>{this.stopStallWatchdogSubscription()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe(q.filterChanged()).subscribe(e=>this.liveStreamEndTimestamp=q.now())),this.subscription.add(q.fromEvent(this.element,`pause`).subscribe(()=>{let{liveUpdateInterval:e}=this.tuning.dash;this.livePauseWatchdogSubscription=q.interval(e).subscribe(t=>{let n=Pr(this.manifestUrlString,2);this.manifestUrlString=Nr(this.manifestUrlString,n+e,2),this.liveStreamStatus$.getValue()===`active`&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add(q.fromEvent(this.element,`play`).subscribe(e=>this.livePauseWatchdogSubscription?.unsubscribe())),this.representationSubscription.add(q.combine({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(q.map(({isActiveLive:e,isLowLatency:t})=>e&&t),q.filterChanged()).subscribe(e=>{this.isManualDecreasePlaybackInLive()||nu(this.element,1)})),this.representationSubscription.add(q.combine({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe(q.filter(({bufferLength:e,isActiveLive:t,isLowLatency:n})=>t&&n&&!!e)).subscribe(({bufferLength:e})=>this.liveBuffer.next(e))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(e=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!e)return;let t=this.liveSeekableDuration$.getValue()-e/1e3;this.liveSeekableDuration$.next(Math.max(t,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+e/1e3)})),this.representationSubscription.add(q.combine({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe(q.filter(({isLive:e})=>e),q.filterChanged((e,t)=>t.bufferLength<e.bufferLength),q.map(({rtt:e,bufferLength:t,segmentServerLatency:n})=>{let r=Pr(this.manifestUrlString,2);return(e/2+t+n+r)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add(q.combine({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:e,isActiveLive:t,isLowLatency:n})=>{if(!n||!t)return;let r=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,i=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,a=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,o=e-r;if(this.isManualDecreasePlaybackInLive())return;let s=1;Math.abs(o)>i&&(s=1+Math.sign(o)*a),nu(this.element,s)})),this.representationSubscription.add(this.bufferLength$.subscribe(e=>{let t=0;if(e){let e=(this.element?.currentTime??0)*1e3;t=Math.min(...this.bufferManagers.map(t=>t.getLiveSegmentsToLoadState(this.manifest)?.to??e))-e}this.liveLoadBufferLength$.getValue()!==t&&this.liveLoadBufferLength$.next(t)}));let e=0;this.representationSubscription.add(q.combine({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe(q.throttle(this.tuning.dash.liveUpdateInterval)).subscribe(async({liveLoadBufferLength:t,bufferLength:n})=>{if(!this.element||this.isUpdatingLive)return;let r=this.element.playbackRate,i=Pr(this.manifestUrlString,2),a=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,o=Math.min(a,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*r),s=this.tuning.dashCmafLive.normalizedActualBufferOffset*r,c=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*r,l=isFinite(t)?t:n,u=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),d=a<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(d);let f=`none`;if(u?f=`active_low_latency`:this.isLowLatency$.getValue()&&d?(this.bufferManagers.forEach(e=>e.proceedLowLatencyLive()),f=`active_low_latency`):i!==0&&l<o?f=`live_forward_buffering`:l<o+c&&(f=`live_with_target_offset`),isFinite(t)&&(e=t>e?t:e),f===`live_forward_buffering`||f===`live_with_target_offset`){let n=e-(o+s),a=this.normalizeLiveOffset(Math.trunc(i+n/r)),c=Math.abs(a-i),l=0;!t||c<=this.tuning.dashCmafLive.offsetCalculationError?l=i:a>0&&c>this.tuning.dashCmafLive.offsetCalculationError&&(l=a),this.manifestUrlString=Nr(this.manifestUrlString,l,2)}(f===`live_with_target_offset`||f===`live_forward_buffering`)&&(e=0,await this.updateLive())},e=>{this.error$.next({id:`updateLive`,category:q.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:`Failed to update live with subscription`})}))}let s=q.merge(...this.bufferManagers.map(e=>e.fullyBuffered$)).pipe(q.map(()=>this.bufferManagers.every(e=>e.fullyBuffered$.getValue()))),c=q.merge(...this.bufferManagers.map(e=>e.onLastSegment$)).pipe(q.map(()=>this.bufferManagers.some(e=>e.onLastSegment$.getValue()))),l=q.combine({allBuffersFull:s,someBufferEnded:c}).pipe(q.filterChanged(),q.map(({allBuffersFull:e,someBufferEnded:t})=>e&&t),q.filter(e=>e));if(this.representationSubscription.add(q.merge(this.forceEnded$,l).subscribe(()=>{if(this.source&&this.source.readyState===`open`&&Array.from(this.source.sourceBuffers).every(e=>!e.updating))try{this.source?.endOfStream()}catch(e){this.error$.next({id:`EndOfStream`,category:q.ErrorCategory.VIDEO_PIPELINE,message:`Failed to end MediaSource stream`,thrown:e})}})),this.representationSubscription.add(q.merge(...this.bufferManagers.map(e=>e.error$)).subscribe(this.error$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentation$.subscribe(this.currentVideoRepresentation$)),this.representationSubscription.add(this.videoBufferManager.playingRepresentationInit$.subscribe(this.currentVideoRepresentationInit$)),this.representationSubscription.add(this.videoBufferManager.currentSegmentLength$.subscribe(this.currentVideoSegmentLength$)),this.audioBufferManager&&(this.representationSubscription.add(this.audioBufferManager.playingRepresentation$.subscribe(this.currentAudioRepresentation$)),this.representationSubscription.add(this.audioBufferManager.currentSegmentLength$.subscribe(this.currentAudioSegmentLength$))),this.liveTextManager&&this.representationSubscription.add(this.liveTextManager.currentRepresentation$.subscribe(this.currentLiveTextRepresentation$)),this.source.readyState!==`open`){let e=this.tuning.dash.sourceOpenTimeout>=0;yield new Promise(t=>{e&&(this.timeoutSourceOpenId=setTimeout(()=>{if(this.source?.readyState===`open`){t();return}this.error$.next({id:`OpenOfStream`,category:q.ErrorCategory.VIDEO_PIPELINE,message:`Failed to open MediaSource`,thrown:Error(`Timeout reject when wait sourceopen event`),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),this.source?.addEventListener(`sourceopen`,()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),t()},{once:!0})})}if(!this.isLive$.getValue()){let e=[this.manifest.duration??0,...su.default(su.default([...this.manifest.streams.audio,...this.manifest.streams.video],e=>e.representations),e=>{let t=[];return e.duration&&t.push(e.duration),Cl(e.segmentReference)&&e.segmentReference.totalSegmentsDurationMs&&t.push(e.segmentReference.totalSegmentsDurationMs),t})];this.source.duration=Math.max(...e)/1e3}this.audioBufferManager&&q.isNonNullable(t)?yield Promise.all([this.videoBufferManager.startWith(e),this.audioBufferManager.startWith(t)]):yield this.videoBufferManager.startWith(e),this.state$.setState(`representations_ready`),this.tracer.log(`initRepresentationsEnd`)}.bind(this))),e(this,`tick`,()=>{if(!this.element||!this.videoBufferManager||this.source?.readyState!==`open`)return;let e=this.element.currentTime*1e3;this.videoBufferManager.maintain(e),this.audioBufferManager?.maintain(e),this.liveTextManager?.maintain(e),(this.videoBufferManager.gaps.length||this.audioBufferManager?.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=q.interval(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),e=>{this.error$.next({id:`GapWatchdog`,category:q.ErrorCategory.WTF,message:`Error handling gaps`,thrown:e})}),this.subscription.add(this.gapWatchdogSubscription))}),this.throughputEstimator=t.throughputEstimator,this.tuning=t.tuning,this.tracer=t.tracer.createComponentTracer(this.constructor.name),this.forceVideoCodec=t.forceVideoCodec,this.fetcher=new bu({throughputEstimator:this.throughputEstimator,requestQuic:this.tuning.requestQuick,compatibilityMode:t.compatibilityMode,tracer:this.tracer,useEnableSubtitlesParam:t.tuning.useEnableSubtitlesParam}),this.subscription.add(this.fetcher.recoverableError$.subscribe(this.fetcherRecoverableError$)),this.subscription.add(this.fetcher.error$.subscribe(this.fetcherError$)),this.subscription.add(this.fetcher.manifestRequested$.subscribe(this.manifestRequested$)),this.subscription.add(this.fetcher.firstBytesManifest$.subscribe(this.firstBytesManifest$)),this.subscription.add(this.fetcher.firstBytesRequested$.subscribe(this.firstBytesRequested$)),this.subscription.add(this.fetcher.firstBytesReceived$.subscribe(this.firstBytesReceived$)),this.subscription.add(this.fetcher.lastConnectionType$.subscribe(this.lastConnectionType$)),this.subscription.add(this.fetcher.lastConnectionReused$.subscribe(this.lastConnectionReused$)),this.subscription.add(this.fetcher.lastConnectionMetrics$.subscribe(this.lastConnectionMetrics$)),this.subscription.add(this.fetcher.lastDownloadMetrics$.subscribe(this.lastDownloadMetrics$)),this.liveBuffer=tu.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...t.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}setSmartRepresentationSwitch(e){this.bufferManagers.forEach(t=>t.setSmartRepresentationSwitch(e))}async seekLive(e){q.assertNonNullable(this.element),this.updateManifestUrlWithTimeOffset(e),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await this.updateLiveBuffersFromManifest(this.manifest))}updateManifestUrlWithTimeOffset(e){let t=this.liveStreamStatus$.getValue()===`active`?0:q.now()-this.liveStreamEndTimestamp,n=this.normalizeLiveOffset(e+t);this.isActiveLive$.next(n===0),this.manifestUrlString=Nr(this.manifestUrlString,n,2)}async updateLiveBuffersFromManifest(e){await this.videoBufferManager?.seekLive(e.streams.video),await this.audioBufferManager?.seekLive(e.streams.audio),this.liveTextManager?.seekLive(e.streams.text)}stopStallWatchdogSubscription(){this.stallWatchdogSubscription?.unsubscribe(),this.currentStallDuration$.next(0)}initBuffer(){q.assertNonNullable(this.element),this.state$.setState(`running`),this.subscription.add(q.merge(...Cu.map(e=>q.fromEvent(this.element,e)),q.fromEvent(window,`online`)).subscribe(()=>this.tick(),e=>{this.error$.next({id:`DashVKPlayer`,category:q.ErrorCategory.WTF,message:`Internal logic error`,thrown:e})})),this.subscription.add(q.fromEvent(this.element,`progress`).subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add(q.fromEvent(this.element,`waiting`).subscribe(()=>{this.tuning.dash.useVideoElementWaitingCurrentTimeReassign&&this.element&&this.element.readyState===2&&!this.element.seeking&&cu(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime),this.stallWatchdogSubscription&&(this.stallWatchdogSubscription.unsubscribe(),this.subscriptionRemovable.remove(this.stallWatchdogSubscription)),this.stallWatchdogSubscription=q.interval(this.tuning.dash.stallWatchdogInterval).subscribe(()=>{let{keepSilentStallWatchdogWhenNotActive:e}=this.tuning.dashCmafLive,{crashOnStallTimeout:t,crashOnStallTWithoutDataTimeout:n,liveStallReinitInterval:r,stallWatchdogInterval:i}=this.tuning.dash,a=this.isLive$.getValue(),o=this.liveStreamStatus$.getValue()===`active`;if(!this.element||this.source?.readyState!==`open`)return;let s=this.currentStallDuration$.getValue();s+=i,this.currentStallDuration$.next(s);let c={timeInWaiting:s},l=q.now(),u=this.videoBufferManager?.lastDataObtainedTimestamp??0;this.videoLastDataObtainedTimestamp$.next(u);let d=this.audioBufferManager?.lastDataObtainedTimestamp??0,f=this.videoBufferManager?.getForwardBufferDuration()??0,p=this.audioBufferManager?.getForwardBufferDuration()??0,m=f<100&&l-u>n,h=this.audioBufferManager&&p<100&&l-d>n;if((!e||o)&&((m||h)&&s>n||s>=t))throw Error(`Stall timeout exceeded: ${s} ms`);if(a&&s%r===0){let t=this.normalizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);!o&&e?(this.liveWasInterrupted=!0,this.updateManifestUrlWithTimeOffset(t),this.updateManifest()):this.seekLive(t).catch(e=>{this.error$.next({id:`stallIntervalCallback`,category:q.ErrorCategory.VIDEO_PIPELINE,message:`stallIntervalCallback failed`,thrown:e})}),c.liveLastOffset=t}else{let e=this.element.currentTime*1e3;this.videoBufferManager?.maintain(e),this.audioBufferManager?.maintain(e),c.position=e}this.tracer.log(`stallIntervalCallback`,q.flattenObject(c))},e=>{this.error$.next({id:`StallWatchdogCallback`,category:q.ErrorCategory.NETWORK,message:`Can't restore DASH after stall.`,thrown:e})}),this.subscriptionRemovable.add(this.stallWatchdogSubscription)})),this.tick()}async switchRepresentation(e,t,n=!1){let r={video:this.videoBufferManager,audio:this.audioBufferManager,text:null}[e];return this.tuning.useNewSwitchTo?this.currentStallDuration$.getValue()>0?r?.switchToWithPreviousAbort(t,n):r?.switchTo(t,n):r?.switchToOld(t,n)}async seek(e,t){q.assertNonNullable(this.element),q.assertNonNullable(this.videoBufferManager);let n;n=t||this.element.duration*1e3<=this.tuning.dashSeekInSegmentDurationThreshold||Math.abs(this.element.currentTime*1e3-e)<=this.tuning.dashSeekInSegmentAlwaysSeekDelta?e:Math.max(this.videoBufferManager.findSegmentStartTime(e)??e,this.audioBufferManager?.findSegmentStartTime(e)??e),this.warmUpMediaSourceIfNeeded(n),!cu(this.element.buffered,n)&&await Promise.all([this.videoBufferManager.abort(),this.audioBufferManager?.abort()]),q.isNullable(this.element)||q.isNullable(this.videoBufferManager)||(this.videoBufferManager.maintain(n),this.audioBufferManager?.maintain(n),this.element.currentTime=n/1e3,this.tracer.log(`seek`,q.flattenObject({requestedPosition:e,forcePrecise:t,position:n})))}warmUpMediaSourceIfNeeded(e=this.element?.currentTime){q.isNonNullable(this.element)&&q.isNonNullable(this.source)&&q.isNonNullable(e)&&this.source?.readyState===`ended`&&this.element.duration*1e3-e>this.tuning.dash.seekBiasInTheEnd&&this.bufferManagers.forEach(e=>e.warmUpMediaSource())}get isStreamEnded(){return this.source?.readyState===`ended`}stop(){this.tracer.log(`stop`),this.element?.querySelectorAll(`source`).forEach(e=>{URL.revokeObjectURL(e.src),e.remove()}),this.element=null,this.source=null,this.manifest=null,this.currentVideoRepresentation$.next(void 0),this.videoBufferManager?.destroy(),this.videoBufferManager=null,this.audioBufferManager?.destroy(),this.audioBufferManager=null,this.bufferManagers=[],this.state$.setState(`none`)}setBufferTarget(e){for(let t of this.bufferManagers)t.setTarget(e)}getStreams(){return this.manifest?.streams}getCodecs(){return this.manifest?.codecs}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){this.subscription.unsubscribe(),this.subscriptionRemovable.unsubscribe(),this.representationSubscription.unsubscribe(),this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),this.destroyController.abort(),this.fetcher.destroy(),this.stop(),this.source?.readyState===`open`&&Array.from(this.source.sourceBuffers).every(e=>!e.updating)&&this.source.endOfStream(),this.source=null,this.tracer.end()}initTracerSubscription(){let e=q.getTraceSubscriptionMethod(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e(`error`)))}isManualDecreasePlaybackInLive(){if(!this.element||!this.isLive$.getValue())return!1;let e=1-this.element.playbackRate;return Number(e.toFixed(2))>Number(this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup.toFixed(2))}normalizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&(this.bufferManagers.forEach(e=>e.updateLive(this.manifest)),this.liveTextManager?.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getDebugBufferState();if(!e)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),n={isJumpGapAfterSeekLive:this.isJumpGapAfterSeekLive,isActiveLowLatency:t,initialCurrentTime:this.element.currentTime},{usePersistentGaps:r}=this.tuning.dash;this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let i=this.element.currentTime*1e3,a=[],o=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let e of this.bufferManagers)for(let t of e.gaps)(r&&t.persistent||e.playingRepresentation$.getValue()===t.representation)&&t.from-o<=i&&t.to+o>i&&(this.element.duration*1e3-t.to<this.tuning.endGapTolerance?a.push(1/0):a.push(t.to));if(a.length){let e=Math.max(...a)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,e===1/0?this.forceEnded$.next():(this.element.currentTime=e/1e3,n={...n,gapEnds:a,jumpTo:e,resultCurrentTime:this.element.currentTime},this.tracer.log(`jumpGap`,q.flattenObject(n)))}}calculateDurationFromSegments(){return Math.max(this.videoBufferManager?.calculateDurationFromSegments()||0,this.audioBufferManager?.calculateDurationFromSegments()||0)}}var Eu=require(`@vkontakte/videoplayer-shared/es2018`);class Du{constructor(){e(this,`subscription`,new Eu.Subscription),e(this,`pipSize$`,new Eu.ValueSubject(void 0)),e(this,`videoSize$`,new Eu.ValueSubject(void 0)),e(this,`elementSize$`,new Eu.ValueSubject(void 0)),e(this,`pictureInPictureWindowRemoveEventListener`,Eu.noop)}connect({observableVideo:e,video:t}){let n=e=>{let t=e.target;this.pipSize$.next({width:t.width,height:t.height})};this.subscription.add(Eu.observeElementSize(t).subscribe(this.videoSize$)).add(e.enterPip$.subscribe(({pictureInPictureWindow:e})=>{this.pipSize$.next({width:e.width,height:e.height}),e.addEventListener(`resize`,n),this.pictureInPictureWindowRemoveEventListener=()=>{e.removeEventListener(`resize`,n)}})).add(e.leavePip$.subscribe(()=>{this.pictureInPictureWindowRemoveEventListener()})).add(Eu.combine({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe(Eu.map(({videoSize:e,inPip:t,pipSize:n})=>t?n:e)).subscribe(this.elementSize$))}getValue(){return this.elementSize$.getValue()}subscribe(e,t){return this.elementSize$.subscribe(e,t)}getObservable(){return this.elementSize$}destroy(){this.pictureInPictureWindowRemoveEventListener(),this.subscription.unsubscribe()}}class Ou{constructor(t){e(this,`scene3D`,void 0),e(this,`subscription`,new K.Subscription),e(this,`videoState`,new P(`stopped`)),e(this,`video`,void 0),e(this,`observableVideo`,null),e(this,`player`,void 0),e(this,`params`,void 0),e(this,`tracer`,void 0),e(this,`textTracksManager`,void 0),e(this,`droppedFramesManager`,new No),e(this,`stallsManager`,new ds),e(this,`elementSizeManager`,new Du),e(this,`videoTracksMap`,new Map),e(this,`audioTracksMap`,new Map),e(this,`textTracksMap`,new Map),e(this,`videoStreamsMap`,new Map),e(this,`audioStreamsMap`,new Map),e(this,`videoTrackSwitchHistory`,new Ma),e(this,`audioTrackSwitchHistory`,new Ma),e(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.seekState.getState();if(!this.videoState.getTransition()){if(r.state===`requested`&&n?.to!==`paused`&&e!==`stopped`&&t!==`stopped`&&this.seek(r.position,r.forcePrecise),t===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.player.stop(),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),M(this.params.desiredState.playbackState,`stopped`,!0));return}switch(e){case`stopped`:this.videoState.startTransitionTo(`ready`),this.prepare();return;case`ready`:t===`paused`?(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`)):t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`ready`&&M(this.params.desiredState.playbackState,`ready`);return;case`playing`:t===`paused`?(this.videoState.startTransitionTo(`paused`),this.video.paused?this.videoState.setState(`paused`):this.video.pause()):t===`playing`&&this.video.paused?this.playIfAllowed():n?.to===`playing`&&M(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&M(this.params.desiredState.playbackState,`paused`);return;default:return K.assertNever(e)}}}),e(this,`init3DScene`,e=>{if(this.scene3D)return;this.scene3D=new ns(this.params.container,this.video,{fov:this.params.tuning.spherical.fov,orientation:this.params.tuning.spherical.orientation||{x:e.projectionData?.pose.yaw||0,y:e.projectionData?.pose.pitch||0,z:e.projectionData?.pose.roll||0},rotationSpeed:this.params.tuning.spherical.rotationSpeed,maxYawAngle:this.params.tuning.spherical.maxYawAngle,rotationSpeedCorrection:this.params.tuning.spherical.rotationSpeedCorrection,degreeToPixelCorrection:this.params.tuning.spherical.degreeToPixelCorrection,speedFadeTime:this.params.tuning.spherical.speedFadeTime,speedFadeThreshold:this.params.tuning.spherical.speedFadeThreshold});let t=this.elementSizeManager.getValue();t&&this.scene3D.setViewportSize(t.width,t.height)}),e(this,`destroy3DScene`,()=>{this.scene3D&&=(this.scene3D.destroy(),void 0)}),this.textTracksManager=new aa(t.source.url),this.params=t,this.video=qi(t.container,t.tuning),this.tracer=t.dependencies.tracer.createComponentTracer(this.constructor.name),this.params.output.element$.next(this.video),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ja(this.params.source.url)),this.params.output.isLive$.next(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.player=new Tu({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer,forceVideoCodec:this.params.forceVideoCodec}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;K.isNullable(this.observableVideo)&&(this.observableVideo=fa(this.video),this.subscription.add(()=>this.observableVideo?.destroy()));let n=this.constructor.name,r=t=>{e.error$.next({id:n,category:K.ErrorCategory.WTF,message:`${n} internal logic error`,thrown:t})};return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:(e,t)=>this.subscription.add(e.subscribe(t,r))}}subscribe(){let{output:e,desiredState:t,observableVideo:n,genericErrorListener:r,connect:i}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe(K.filter(e=>!!e.length),K.once()).subscribe(e=>{this.droppedFramesManager.connect({logger:this.params.dependencies.logger,video:this.video,droppedFramesChecker:this.params.tuning.droppedFramesChecker,isAuto:this.params.desiredState.autoVideoTrackSwitching,playing$:n.playing$,pause$:n.pause$,tracks:e})}));let a=this.params.desiredState.seekState.stateChangeEnded$.pipe(K.map(e=>e.to.state!==`none`),K.filterChanged());this.stallsManager.init({isSeeked$:a,currentStallDuration$:this.player.currentStallDuration$,videoLastDataObtainedTimestamp$:this.player.videoLastDataObtainedTimestamp$,throughput$:this.params.dependencies.throughputEstimator.throughput$,rtt$:this.params.dependencies.throughputEstimator.rtt$,tuning:this.params.tuning.stallsManager,abrParams:this.params.tuning.autoTrackSelection,isBuffering$:n.isBuffering$,looped$:n.looped$,playing$:n.playing$,duration:this.video.duration}),i(n.ended$,e.endedEvent$),i(n.looped$,e.loopedEvent$),i(n.error$,e.error$),i(n.isBuffering$,e.isBuffering$),i(n.currentBuffer$,e.currentBuffer$),i(n.currentBuffer$,e.currentNativeBuffer$),i(n.playing$,e.firstFrameEvent$),i(n.canplay$,e.canplay$),i(n.inPiP$,e.inPiP$),i(n.inFullscreen$,e.inFullscreen$),i(n.loadedMetadata$,e.loadedMetadataEvent$),i(this.player.error$,e.error$),i(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),i(this.player.fetcherError$,e.fetcherError$),i(this.player.manifestRequested$,e.manifestRequested$),i(this.player.firstBytesManifest$,e.firstBytesManifest$),i(this.player.manifestReceived$,e.manifestReceived$),i(this.player.firstBytesRequested$,e.firstBytesRequested$),i(this.player.firstBytesReceived$,e.firstBytesReceived$),i(this.player.lastConnectionType$,e.httpConnectionType$),i(this.player.lastConnectionReused$,e.httpConnectionReused$),i(this.player.lastConnectionMetrics$,e.httpConnectionMetrics$),i(this.player.lastDownloadMetrics$,e.httpDownloadMetrics$),i(this.player.isLive$,e.isLive$),i(this.player.lastRequestFirstBytes$.pipe(K.filter(K.isNonNullable),K.once()),e.firstBytesEvent$),i(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),i(this.videoState.stateChangeEnded$.pipe(K.map(e=>e.to)),this.params.output.playbackState$),this.subscription.add(n.looped$.subscribe(()=>this.player.warmUpMediaSourceIfNeeded(),r)),this.subscription.add(n.seeked$.subscribe(e.seekedEvent$,r)),this.subscription.add(Qi(this.video,t.isLooped,r)),this.subscription.add(n.volumeState$.subscribe(this.params.output.volume$,r)),hs({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:n}),this.subscription.add($i(this.video,t.volume,n.volumeState$,r)),this.subscription.add(ea(this.video,t.playbackRate,n.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:n}),i(Lo(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(n.playing$.subscribe(()=>{this.videoState.setState(`playing`),M(t.playbackState,`playing`),this.scene3D&&this.scene3D.play()},r)).add(n.pause$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)},r)).add(n.canplay$.subscribe(()=>{this.videoState.getState()===`playing`&&!this.video.ended&&this.playIfAllowed()},r)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(n.ended$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)})),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:e})=>{if(e===`manifest_ready`){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let e=this.player.getStreams(),t=this.player.getCodecs();if(K.assertNonNullable(e,`Manifest not loaded or empty`),!this.params.tuning.isAudioDisabled){let t=[];for(let n of e.audio){t.push(bl(n));let e=[];for(let t of n.representations){let r=_l(t);e.push(r),this.audioTracksMap.set(r,{stream:n,representation:t})}this.audioStreamsMap.set(n,e)}this.params.output.availableAudioStreams$.next(t)}let n=[];for(let t of e.video){n.push(xl(t));let e=[];for(let n of t.representations){let r=gl({...n,streamId:t.id});r&&(e.push(r),this.videoTracksMap.set(r,{stream:t,representation:n}))}this.videoStreamsMap.set(t,e)}this.params.output.availableVideoStreams$.next(n);for(let t of e.text)for(let e of t.representations){let n=vl(t,e);this.textTracksMap.set(n,{stream:t,representation:e})}this.params.output.availableVideoTracks$.next(Array.from(this.videoTracksMap.keys())),this.params.output.availableAudioTracks$.next(Array.from(this.audioTracksMap.keys())),this.params.output.isAudioAvailable$.next(!!this.audioTracksMap.size),t?.video&&this.params.output.availableVideoCodecs$.next(t.video),t?.audio&&this.params.output.availableAudioCodecs$.next(t.audio),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else e===`representations_ready`&&(this.videoState.setState(`ready`),this.player.initBuffer())},r));let o=K.merge(this.player.currentStallDuration$,this.player.state$.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.transitionStarted$,this.params.dependencies.throughputEstimator.rttAdjustedThroughput$,t.autoVideoTrackLimits.stateChangeStarted$,this.elementSizeManager.getObservable(),this.params.output.elementVisible$,this.droppedFramesManager.onDroopedVideoFramesLimit$,K.fromEvent(this.video,`progress`)).pipe(K.filter(()=>this.videoTracksMap.size>0)),{abrThrottle:s}=this.params.tuning.dash;s&&(o=o.pipe(K.throttle(s))),this.subscription.add(o.subscribe(async()=>{let e=this.player.state$.getState(),n=this.player.state$.getTransition();if(e!==`manifest_ready`&&e!==`running`||n)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let r=this.selectVideoAudioRepresentations();if(!r)return;let[i,a]=r,o=[...this.videoTracksMap.keys()].find(e=>this.videoTracksMap.get(e)?.representation.id===i.id);K.isNonNullable(o)&&(this.stallsManager.lastVideoTrackSelected=o);let s=this.params.desiredState.autoVideoTrackLimits.getTransition();if(s&&this.params.output.autoVideoTrackLimits$.next(s.to),e===`manifest_ready`)await this.player.initRepresentations(i.id,a?.id,this.params.sourceHls);else if(await this.player.switchRepresentation(`video`,i.id),a){let e=!!t.audioStream.getTransition();await this.player.switchRepresentation(`audio`,a.id,e)}},r)),this.subscription.add(K.combine({videoState:this.videoState.stateChangeEnded$,autoVideoTrackState:K.merge(K.observableFrom([t.autoVideoTrackSwitching.getState()]),t.autoVideoTrackSwitching.stateChangeEnded$.pipe(K.map(e=>e.to)))}).pipe(K.map(({videoState:e,autoVideoTrackState:t})=>e.to!==`stopped`&&t),K.filterChanged()).subscribe(e=>this.player.setSmartRepresentationSwitch(e))),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:e})=>{this.scene3D&&e&&this.scene3D.pointCameraTo(e.x,e.y)})),this.subscription.add(this.elementSizeManager.subscribe(e=>{this.scene3D&&e&&this.scene3D.setViewportSize(e.width,e.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe(K.filterChanged()).subscribe(t=>{let n=[...this.videoTracksMap.entries()].find(([,{representation:e}])=>e.id===t);if(!n){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[r,{stream:i}]=n,a=this.params.desiredState.videoStream.getTransition();a&&a.to&&a.to.id===i.id&&this.params.desiredState.videoStream.setState(a.to),e.currentVideoTrack$.next(r),e.currentVideoStream$.next(xl(i));let o=this.player.calculateDurationFromSegments();o&&this.params.output.duration$.next(o/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe(K.filterChanged()).subscribe(t=>{let n=[...this.audioTracksMap.entries()].find(([,{representation:e}])=>e.id===t);if(!n){e.currentAudioStream$.next(void 0);return}let[r,{stream:i}]=n,a=this.params.desiredState.audioStream.getTransition();a&&a.to&&a.to.id===i.id&&this.params.desiredState.audioStream.setState(a.to),e.currentAudioStream$.next(bl(i))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(t=>{if(t?.is3dVideo&&this.params.tuning.spherical?.enabled)try{this.init3DScene(t),e.is3DVideo$.next(!0)}catch(t){e.warning$.next({id:`DashProvider`,message:`DashProvider could not initialize 3D-scene: ${t}`})}else this.destroy3DScene(),this.params.tuning.spherical?.enabled&&e.is3DVideo$.next(!1)},r)),this.subscription.add(this.player.currentVideoSegmentLength$.subscribe(e.currentVideoSegmentLength$,r)),this.subscription.add(this.player.currentAudioSegmentLength$.subscribe(e.currentAudioSegmentLength$,r)),this.textTracksManager.connect(this.video,t,e);let c=t.playbackState.stateChangeStarted$.pipe(K.map(({to:e})=>e===`ready`),K.filterChanged());this.subscription.add(K.merge(c,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,K.observableFrom([`init`])).subscribe(()=>{let e=t.autoVideoTrackSwitching.getState(),n=t.playbackState.getState()===`ready`?this.params.tuning.dash.forwardBufferTargetPreload:e?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(n)})),this.subscription.add(K.merge(c,this.player.state$.stateChangeEnded$,K.observableFrom([`init`])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()===`ready`)));let l=K.merge(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,K.observableFrom([`init`])).pipe(K.debounce(0));this.subscription.add(l.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ra:La,t=this.params.tuning.useNewAutoSelectVideoTrack?qa:Ka,n=this.params.tuning.useNewAutoSelectVideoTrack?Wa:Ga,{desiredState:r,output:i}=this.params,a=r.autoVideoTrackSwitching.getState(),o=r.videoTrack.getState()?.id,s=[...this.videoTracksMap.keys()].find(({id:e})=>e===o),c=i.currentVideoTrack$.getValue(),l=r.videoStream.getState()??(s&&this.videoTracksMap.get(s)?.stream)??this.videoStreamsMap.size===1?this.videoStreamsMap.keys().next().value:void 0;if(!l)return;let u=[...this.videoStreamsMap.keys()].find(({id:e})=>e===l.id),d=u&&this.videoStreamsMap.get(u);if(!d)return;let f=zl(this.video.buffered,this.video.currentTime*1e3),p;p=this.player.isActiveLive$.getValue()?this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:a?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let m=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,h=Math.min(f/Math.min(p,m||1/0),1),g=r.audioStream.getState()??(this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0),_=[...this.audioStreamsMap.keys()].find(({id:e})=>e===g?.id)??this.audioStreamsMap.keys().next().value,v=0;if(_){if(s&&!a){let t=e(s,d,this.audioStreamsMap.get(_)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,t?.bitrate??-1/0)}if(c){let t=e(c,d,this.audioStreamsMap.get(_)??[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);v=Math.max(v,t?.bitrate??-1/0)}}let y=s;(a||!y)&&(y=n(d,{container:this.elementSizeManager.getValue(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),tuning:this.stallsManager.abrTuningParams,limits:this.params.desiredState.autoVideoTrackLimits.getState(),reserve:v,forwardBufferHealth:h,current:c,visible:this.params.output.elementVisible$.getValue(),history:this.videoTrackSwitchHistory,playbackRate:this.video.playbackRate,droppedVideoMaxQualityLimit:this.droppedFramesManager.droppedVideoMaxQualityLimit,stallsVideoMaxQualityLimit:this.stallsManager.videoMaxQualityLimit,stallsPredictedThroughput:this.stallsManager.predictedThroughput,abrLogger:this.params.dependencies.abrLogger}));let b=_&&t(y,d,this.audioStreamsMap.get(_)??[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:h,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),x=this.videoTracksMap.get(y)?.representation,S=b&&this.audioTracksMap.get(b)?.representation;if(x&&S)return[x,S];if(x&&!S&&this.audioTracksMap.size===0)return[x,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){eo(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:K.ErrorCategory.DOM,thrown:e}))}destroy(){this.subscription.unsubscribe(),this.droppedFramesManager.destroy(),this.stallsManager.destroy(),this.elementSizeManager.destroy(),this.destroy3DScene(),this.textTracksManager.destroy(),this.player.destroy(),this.params.output.element$.next(void 0),this.params.output.currentVideoStream$.next(void 0),Ji(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML),this.tracer.end()}}class ku extends Ou{subscribe(){super.subscribe();let{output:e,observableVideo:t,connect:n}=this.getProviderSubscriptionInfo();n(t.timeUpdate$,e.position$),n(t.durationChange$,e.duration$)}seek(e,t){this.params.output.willSeekEvent$.next(),this.player.seek(e,t)}}var Au=require(`@vkontakte/videoplayer-shared/es2018`);class ju extends Ou{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=!1,t=-1,{output:n,observableVideo:r,desiredState:i,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canPlayLiveTailBuffer$.next(!0),a(r.timeUpdate$,n.liveBufferTime$),a(this.player.liveSeekableDuration$,n.duration$),a(this.player.liveLatency$,n.liveLatency$);let o=new Au.ValueSubject(1);a(r.playbackRateState$,o),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(n.elementVisible$.pipe(Au.filterChanged()).subscribe(t=>{let r=n.position$.getValue(),i=n.volume$.getValue(),a=!i.volume||i.muted;!t&&!r&&a?e=!0:t&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(i.isLowLatency.stateChangeEnded$.pipe(Au.map(e=>e.to)).subscribe(this.player.isLowLatency$)).add(Au.combine({liveBufferTime:n.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe(Au.map(({liveBufferTime:e,liveAvailabilityStartTime:n})=>e&&n?e*1e3+n+t:void 0)).subscribe(n.liveTime$)).add(Au.combine({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:Au.merge(r.playbackRateState$,new Au.ValueSubject(1))}).pipe(Au.filter(({liveStreamStatus:e,liveDuration:t})=>e===`active`&&!!t)).subscribe(({liveDuration:e,playbackRate:r})=>{let i=n.liveBufferTime$.getValue(),a=n.position$.getValue(),{playbackCatchupSpeedup:o}=this.params.tuning.dashCmafLive.lowLatency;a||r<1-o||this.video.paused||Au.isNullable(i)||(t=e-i)})).add(Au.combine({time:n.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:Au.merge(r.playbackRateState$,new Au.ValueSubject(1))}).pipe(Au.filterChanged((e,t)=>this.player.liveStreamStatus$.getValue()===`active`?e.liveDuration===t.liveDuration:e.time===t.time)).subscribe(({time:e,liveDuration:r,playbackRate:i})=>{let a=n.position$.getValue(),{playbackCatchupSpeedup:o}=this.params.tuning.dashCmafLive.lowLatency;if(!a&&!this.video.paused&&i>=1-o||Au.isNullable(e)||Au.isNullable(r))return;let s=-1*(r-e-t);n.position$.next(Math.min(s,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(e=>{if(e){let t=yl(e);this.params.output.availableTextTracks$.next([t])}})),this.params.tuning.dashCmafLive.externalStopControl||this.subscription.add(this.player.liveStreamStatus$.pipe(Au.filter(e=>Au.isNonNullable(e))).subscribe(e=>n.isLiveEnded$.next(e===`unpublished`&&n.position$.getValue()===0)))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,n=Math.trunc(t/1e3<=Math.abs(this.params.output.duration$.getValue())?t:0);this.player.seekLive(n).then(()=>{this.params.output.position$.next(e/1e3)})}}var Mu=`X-Playback-Duration`,Nu=async e=>{let t=await As(e),n=await t.text(),r=/#EXT-X-VK-PLAYBACK-DURATION:(\d+)/m.exec(n)?.[1];return r?parseInt(r,10):t.headers.has(Mu)?parseInt(t.headers.get(Mu),10):void 0},X=require(`@vkontakte/videoplayer-shared/es2018`),Pu=u(Ht(),1),Fu=require(`@vkontakte/videoplayer-shared/es2018`),Iu=e=>{let t=null;if(e.QUALITY&&(t=ma(e.QUALITY)),!t&&e.RESOLUTION){let[n,r]=e.RESOLUTION.split(`x`).map(e=>parseInt(e,10));t=Fu.videoSizeToQuality({width:n,height:r})}return t??null},Lu=(e,t)=>{let n=e.split(`
125
+ `),r=[],i=[];for(let e=0;e<n.length;e++){let a=n[e],o=a.match(/^#EXT-X-STREAM-INF:(.+)/),s=a.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!o&&!s)){if(o){let i=Pu.default(o[1].split(`,`).map(e=>e.split(`=`))),a=i.QUALITY??`stream-${i.BANDWIDTH}`,s=Iu(i),c;i.BANDWIDTH&&(c=parseInt(i.BANDWIDTH,10)/1e3||void 0),!c&&i[`AVERAGE-BANDWIDTH`]&&(c=parseInt(i[`AVERAGE-BANDWIDTH`],10)/1e3||void 0);let l=i[`FRAME-RATE`]?parseFloat(i[`FRAME-RATE`]):void 0,u;if(i.RESOLUTION){let[e,t]=i.RESOLUTION.split(`x`).map(e=>parseInt(e,10));e&&t&&(u={width:e,height:t})}let d=new URL(n[++e],t).toString();s&&r.push({id:a,quality:s,url:d,bandwidth:c,size:u,fps:l})}if(s){let e=Pu.default(s[1].split(`,`).map(e=>{let t=e.indexOf(`=`);return[e.substring(0,t),e.substring(t+1)]}).map(([e,t])=>[e,t.replace(/^"|"$/g,``)])),t=e.URI?.replace(/playlist$/,`subtitles.vtt`),n=e.LANGUAGE,r=e.NAME;t&&n&&i.push({type:`internal`,id:n,label:r,language:n,url:t,isAuto:!1})}}}if(!r.length)throw Error(`Empty manifest`);return{qualityManifests:r,textTracks:i}},Ru=e=>new Promise(t=>{setTimeout(()=>{t()},e)}),zu=0,Bu=async(e,t=e,n,r)=>{let i=await(await As(e,r)).text();zu+=1;try{let{qualityManifests:e,textTracks:n}=Lu(i,t);return{qualityManifests:e,textTracks:n}}catch{if(zu<=n.manifestRetryMaxCount)return await Ru(Fu.getExponentialDelay(zu-1,{start:n.manifestRetryInterval,max:n.manifestRetryMaxInterval})),Bu(e,t,n)}return{qualityManifests:[],textTracks:[]}},Vu=Bu,Hu=require(`@vkontakte/videoplayer-shared/es2018`);class Uu{constructor(t,n,r,i,a){e(this,`params`,void 0),e(this,`subscription`,new Hu.Subscription),e(this,`abortControllers`,{destroy:new js,nextManifest:null}),e(this,`prepareUrl`,void 0),e(this,`currentTextTrackData`,null),e(this,`availableTextTracks$`,new Hu.ValueSubject(null)),e(this,`getCurrentTime$`,new Hu.ValueSubject(null)),e(this,`error$`,new Hu.Subject),this.params={fetchManifestData:r,sourceUrl:i,downloadThreshold:a},this.subscription.add(t.pipe(Hu.throttle(1e3)).subscribe(e=>{this.processLiveTime(e)})),this.getCurrentTime$.next(()=>this.currentTextTrackData?this.currentTextTrackData.playlist.segmentStartTime/1e3+n.currentTime:0)}destroy(){this.subscription.unsubscribe(),this.abortControllers.destroy.abort()}async prepare(e){try{let t=new URL(e);t.searchParams.set(`enable-subtitles`,`yes`),this.prepareUrl=t.toString();let{textTracks:n}=await this.fetchManifestData();await this.processTextTracks(n,this.params.sourceUrl)}catch(e){this.error(`prepare`,e)}}async processTextTracks(e,t){try{let n=await this.parseTextTracks(e,t);n&&(this.currentTextTrackData=n)}catch(e){this.error(`processTextTracks`,e)}}async parseTextTracks(e,t){for(let n of e){let e=new URL(n.url,t).toString(),r=await(await As(e,{signal:this.abortControllers.destroy.signal})).text();return{textTrack:n,playlist:this.parsePlaylist(r,e)}}}parsePlaylist(e,t){let n={mediaSequence:0,programDateTime:``,segments:[],targetDuration:0,vkPlaybackDuration:0,segmentStartTime:0,vkStartTime:``},r=e.split(`
126
+ `),i=0;for(let e=0;e<r.length;++e){let a=r[e];switch(!0){case a.startsWith(`#EXTINF:`):{let o=r[++e],s=new URL(o,t).toString(),c=Number(this.extractPlaylistRowValue(`#EXTINF:`,a))*1e3;if(n.segments.push({time:{from:i,to:i+c},url:s}),i+=c,!n.segmentStartTime){let e=new Date(n.vkStartTime).valueOf();n.segmentStartTime=new Date(n.programDateTime).valueOf()-e}break}case a.startsWith(`#EXT-X-TARGETDURATION:`):n.targetDuration=Number(this.extractPlaylistRowValue(`#EXT-X-TARGETDURATION:`,a));break;case a.startsWith(`#EXT-X-MEDIA-SEQUENCE:`):n.mediaSequence=Number(this.extractPlaylistRowValue(`#EXT-X-MEDIA-SEQUENCE:`,a));break;case a.startsWith(`#EXT-X-VK-PLAYBACK-DURATION:`):n.vkPlaybackDuration=Number(this.extractPlaylistRowValue(`#EXT-X-VK-PLAYBACK-DURATION:`,a));break;case a.startsWith(`#EXT-X-PROGRAM-DATE-TIME:`):{let e=this.extractPlaylistRowValue(`#EXT-X-PROGRAM-DATE-TIME:`,a);n.programDateTime=e;let t=new Date(e);t.setMilliseconds(0),i=t.valueOf();break}case a.startsWith(`#EXT-X-VK-START-TIME:`):n.vkStartTime=this.extractPlaylistRowValue(`#EXT-X-VK-START-TIME:`,a);break}}return n}extractPlaylistRowValue(e,t){switch(e){case`#EXTINF:`:return t.substring(e.length,t.length-1);default:return t.substring(e.length)}}processLiveTime(e){if(Hu.isNonNullable(e)&&this.currentTextTrackData){let{segments:t}=this.currentTextTrackData.playlist,{from:n}=t[0].time,{to:r}=t[t.length-1].time;if(e<n||e>r)return;r-e<this.params.downloadThreshold&&this.fetchNextManifestData();for(let n of t)if(n.time.from<=e&&n.time.to>=e){this.availableTextTracks$.next([{...this.currentTextTrackData.textTrack,url:n.url,isAuto:!0}]);break}}}async fetchNextManifestData(){try{if(this.abortControllers.nextManifest)return;this.abortControllers.nextManifest=new js;let{textTracks:e}=await this.fetchManifestData(),t=await this.parseTextTracks(e,this.params.sourceUrl);this.currentTextTrackData&&t&&(this.currentTextTrackData.playlist.segments=t.playlist.segments)}catch(e){this.error(`fetchNextManifestData`,e)}finally{this.abortControllers.nextManifest=null}}async fetchManifestData(){let e=this.prepareUrl??this.params.sourceUrl;return await this.params.fetchManifestData(e,{signal:this.abortControllers.destroy.signal})}error(e,t){this.error$.next({id:`[LiveTextManager][HLS_LIVE_CMAF]`,category:Hu.ErrorCategory.WTF,thrown:t,message:e})}}class Wu{constructor(t){e(this,`subscription`,new X.Subscription),e(this,`videoState`,new P(`stopped`)),e(this,`video`,void 0),e(this,`params`,void 0),e(this,`textTracksManager`,null),e(this,`liveTextManager`,null),e(this,`masterManifest`,void 0),e(this,`manifests$`,new X.ValueSubject([])),e(this,`maxSeekBackTime$`,void 0),e(this,`liveOffset`,new oa),e(this,`manifestStartTime$`,new X.ValueSubject(void 0)),e(this,`syncPlayback`,()=>{if(!this.manifests$.getValue().length)return;let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.videoTrack.getTransition(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition(),a=this.params.desiredState.autoVideoTrackLimits.getTransition();if(t===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.video.removeAttribute(`src`),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),M(this.params.desiredState.playbackState,`stopped`,!0));return}if(this.videoState.getTransition())return;let o=this.params.desiredState.seekState.getState();if(e===`stopped`){this.videoState.startTransitionTo(`ready`),this.prepare();return}if(r||i||a){let e=this.videoState.getState();this.videoState.setState(`changing_manifest`),this.videoState.startTransitionTo(e),this.prepare(),a&&this.params.output.autoVideoTrackLimits$.next(a.to),o.state===`none`&&this.params.desiredState.seekState.setState({state:`requested`,position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if(n?.to!==`paused`&&o.state===`requested`){this.videoState.startTransitionTo(`ready`),this.seek(o.position&&o.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(e){case`ready`:t===`ready`?M(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),this.liveOffset.pause(),M(this.params.desiredState.playbackState,`paused`)):t===`playing`&&(this.videoState.startTransitionTo(`playing`),this.playIfAllowed());return;case`playing`:t===`paused`?(this.videoState.startTransitionTo(`paused`),this.liveOffset.pause(),this.video.paused?this.videoState.setState(`paused`):this.video.pause()):n?.to===`playing`&&M(this.params.desiredState.playbackState,`playing`);return;case`paused`:if(t===`playing`)if(this.videoState.startTransitionTo(`playing`),this.liveOffset.getTotalPausedTime()<this.params.config.maxPausedTime&&this.liveOffset.getTotalOffset()<this.maxSeekBackTime$.getValue())this.liveOffset.resume(),this.playIfAllowed(),this.params.output.position$.next(-this.liveOffset.getTotalOffset()/1e3);else{let e=this.liveOffset.getTotalOffset();e>=this.maxSeekBackTime$.getValue()&&(e=0,this.liveOffset.resetTo(e)),this.liveOffset.resume(),this.params.output.position$.next(-e/1e3),this.prepare()}else n?.to===`paused`&&(M(this.params.desiredState.playbackState,`paused`),this.liveOffset.pause());return;case`changing_manifest`:break;default:return X.assertNever(e)}}),this.params=t,this.video=qi(t.container,t.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:`master`,quality:X.VideoQuality.INVARIANT,url:this.params.source.url};let n=(e,t)=>Vu(e,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},t);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new Uu(this.params.output.liveTime$,this.video,n,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new aa(t.source.url),n(this.generateLiveUrl()).then(({qualityManifests:e,textTracks:t})=>{e.length===0&&this.params.output.error$.next({id:`HlsLiveProviderInternal:empty_manifest`,category:X.ErrorCategory.WTF,message:`HlsLiveProvider: there are no qualities in manifest`}),this.liveTextManager?.processTextTracks(t,this.params.source.url),this.manifests$.next([this.masterManifest,...e])}).catch(e=>{this.params.output.error$.next({id:`ExtractHlsQualities`,category:X.ErrorCategory.NETWORK,message:`Error fetching manifest and extracting qualities`,thrown:e})}),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ja(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new X.ValueSubject(t.source.maxSeekBackTime??1/0),this.subscribe()}selectManifest(){var e;let{autoVideoTrackSwitching:t,videoTrack:n}=this.params.desiredState,r=t.getState(),i=n.getTransition(),a=(i==null||(e=i.to)==null?void 0:e.id)??n.getState()?.id??`master`,o=this.manifests$.getValue();if(!o.length)return;let s=r?`master`:a;return r&&!i&&n.startTransitionTo(this.masterManifest),o.find(e=>e.id===s)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`HlsLiveProvider`,category:X.ErrorCategory.WTF,message:`HlsLiveProvider internal logic error`,thrown:t})},r=fa(this.video);this.subscription.add(()=>r.destroy());let i=(e,t)=>this.subscription.add(e.subscribe(t,n));i(r.ended$,e.endedEvent$),i(r.error$,e.error$),i(r.isBuffering$,e.isBuffering$),i(r.currentBuffer$,e.currentBuffer$),i(r.currentBuffer$,e.currentNativeBuffer$),i(r.loadedMetadata$,e.firstBytesEvent$),i(r.loadedMetadata$,e.loadedMetadataEvent$),i(r.playing$,e.firstFrameEvent$),i(r.canplay$,e.canplay$),i(r.inPiP$,e.inPiP$),i(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),n)),this.subscription.add($i(this.video,t.volume,r.volumeState$,n)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,n)),this.subscription.add(ea(this.video,t.playbackRate,r.playbackRateState$,n)),i(Lo(this.video),e.elementVisible$),this.liveTextManager?(i(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),i(this.liveTextManager.error$,this.params.output.error$)):this.textTracksManager&&this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),M(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)},n)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`),this.videoState.getState()===`playing`&&this.playIfAllowed()},n)),this.liveTextManager&&this.subscription.add(this.liveTextManager.availableTextTracks$.subscribe(e=>{e&&this.params.output.availableTextTracks$.next(e)})),this.subscription.add(this.maxSeekBackTime$.pipe(X.filterChanged(),X.map(e=>-e/1e3)).subscribe(this.params.output.duration$,n)),this.subscription.add(r.loadedMetadata$.subscribe(()=>{let e=this.params.desiredState.seekState.getState(),t=this.videoState.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),r=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(n&&X.isNonNullable(n.to)){let e=n.to.id;this.params.desiredState.videoTrack.setState(n.to);let t=this.manifests$.getValue().find(t=>t.id===e);t&&(this.params.output.currentVideoTrack$.next(t),this.params.output.hostname$.next(Ja(t.url)))}r&&this.params.desiredState.autoVideoTrackSwitching.setState(r.to),t&&t.from===`changing_manifest`&&this.videoState.setState(t.to),e&&e.state===`requested`&&this.seek(e.position)},n)),this.subscription.add(r.loadedData$.subscribe(()=>{var e,t;let n=(e=this.video)==null||(t=e.getStartDate)==null||(t=t.call(e))==null?void 0:t.getTime();this.manifestStartTime$.next(n||void 0)},n)),this.subscription.add(X.combine({startTime:this.manifestStartTime$.pipe(X.filter(X.isNonNullable)),currentTime:r.timeUpdate$}).subscribe(({startTime:e,currentTime:t})=>this.params.output.liveTime$.next(e+t*1e3),n)),this.subscription.add(this.manifests$.pipe(X.map(e=>e.map(({id:e,quality:t,size:n,bandwidth:r,fps:i})=>({id:e,quality:t,size:n,fps:i,bitrate:r})))).subscribe(this.params.output.availableVideoTracks$,n));let a=X.merge(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,X.observableFrom([`init`])).pipe(X.debounce(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.textTracksManager?.destroy(),this.liveTextManager?.destroy(),this.params.output.element$.next(void 0),Ji(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){let e=this.selectManifest();if(X.isNullable(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||n)&&e.id===this.masterManifest.id){let{max:e,min:i}=t?.to??n??{};for(let[t,n]of[[e,`mq`],[i,`lq`]]){let e=String(parseFloat(t||``));n&&t&&r.searchParams.set(n,e)}}let i=this.params.format===`HLS_LIVE_CMAF`?2:0,a=Nr(r.toString(),this.liveOffset.getTotalOffset(),i);this.liveTextManager?.prepare(a),this.video.setAttribute(`src`,a),this.video.load(),Nu(a).then(e=>{if(!X.isNullable(e))this.maxSeekBackTime$.next(e);else{let e=this.params.source.maxSeekBackTime??this.maxSeekBackTime$.getValue();(X.isNullable(e)||!isFinite(e))&&As(a).then(e=>e.text()).then(e=>{let t=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(e)?.[1];t&&Nu(new URL(t,a).toString()).then(e=>{X.isNullable(e)||this.maxSeekBackTime$.next(e)})}).catch(()=>{})}})}playIfAllowed(){eo(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),this.liveOffset.pause(),M(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:X.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next();let t=-e,n=t<this.maxSeekBackTime$.getValue()?t:0;this.liveOffset.resetTo(n),this.params.output.position$.next(-n/1e3),this.params.output.seekedEvent$.next()}generateLiveUrl(){let e=Nr(this.params.source.url);if(this.params.tuning.useHlsLiveNewTextManager){let t=new URL(e);t.searchParams.set(`enable-subtitles`,`yes`),e=t.toString()}return e}}var Gu=require(`@vkontakte/videoplayer-shared/es2018`);class Ku{constructor(t){e(this,`subscription`,new Gu.Subscription),e(this,`videoState`,new P(`stopped`)),e(this,`video`,void 0),e(this,`params`,void 0),e(this,`textTracksManager`,void 0),e(this,`masterManifest`,void 0),e(this,`manifests$`,new Gu.ValueSubject([])),e(this,`unmuteAfterBrowserResetsHappened`,new Gu.ValueSubject(!1)),e(this,`syncPlayback`,()=>{if(!this.manifests$.getValue().length)return;let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition(),r=this.params.desiredState.videoTrack.getTransition(),i=this.params.desiredState.autoVideoTrackSwitching.getTransition(),a=this.params.desiredState.autoVideoTrackLimits.getTransition();if(t===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.video.removeAttribute(`src`),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),M(this.params.desiredState.playbackState,`stopped`,!0));return}if(this.videoState.getTransition())return;let o=this.params.desiredState.seekState.getState();if(e===`stopped`){this.videoState.startTransitionTo(`ready`),this.prepare();return}if(r||i||a){let e=this.videoState.getState();this.videoState.setState(`changing_manifest`),this.videoState.startTransitionTo(e);let{currentTime:t}=this.video;this.prepare(),a&&this.params.output.autoVideoTrackLimits$.next(a.to),o.state===`none`&&this.params.desiredState.seekState.setState({state:`requested`,position:t*1e3,forcePrecise:!0});return}switch(n?.to!==`paused`&&o.state===`requested`&&this.seek(o.position),e){case`ready`:t===`ready`?M(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`)):t===`playing`&&(this.videoState.startTransitionTo(`playing`),this.playIfAllowed());return;case`playing`:t===`paused`?(this.videoState.startTransitionTo(`paused`),this.video.paused?this.videoState.setState(`paused`):this.video.pause()):n?.to===`playing`&&M(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&M(this.params.desiredState.playbackState,`paused`);return;case`changing_manifest`:break;default:return Gu.assertNever(e)}}),this.textTracksManager=new aa(t.source.url),this.params=t,this.video=qi(t.container,t.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:`master`,quality:Gu.VideoQuality.INVARIANT,url:this.params.source.url},this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.hostname$.next(Ja(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.params.output.manifestRequested$.next(),Vu(Nr(this.params.source.url),this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount}).then(({qualityManifests:e,textTracks:t})=>{this.params.output.firstBytesManifest$.next(),this.manifests$.next([this.masterManifest,...e]),this.params.output.manifestReceived$.next(),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(t)},e=>this.params.output.error$.next({id:`ExtractHlsQualities`,category:Gu.ErrorCategory.NETWORK,message:`Error fetching manifest and extracting qualities`,thrown:e})),this.subscribe()}selectManifest(){var e;let{autoVideoTrackSwitching:t,videoTrack:n}=this.params.desiredState,r=t.getState(),i=n.getTransition(),a=(i==null||(e=i.to)==null?void 0:e.id)??n.getState()?.id??`master`,o=this.manifests$.getValue();if(!o.length)return;let s=r?`master`:a;return r&&(!i||!i.from)&&n.startTransitionTo(this.masterManifest),o.find(e=>e.id===s)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`HlsProvider`,category:Gu.ErrorCategory.WTF,message:`HlsProvider internal logic error`,thrown:t})},r=fa(this.video);this.subscription.add(()=>r.destroy());let i=(e,t)=>this.subscription.add(e.subscribe(t));if(i(r.timeUpdate$,e.position$),i(r.durationChange$,e.duration$),i(r.ended$,e.endedEvent$),i(r.looped$,e.loopedEvent$),i(r.error$,e.error$),i(r.isBuffering$,e.isBuffering$),i(r.currentBuffer$,e.currentBuffer$),i(r.currentBuffer$,e.currentNativeBuffer$),i(r.loadedMetadata$,e.firstBytesEvent$),i(r.loadedMetadata$,e.loadedMetadataEvent$),i(r.playing$,e.firstFrameEvent$),i(r.canplay$,e.canplay$),i(r.seeked$,e.seekedEvent$),i(r.inPiP$,e.inPiP$),i(r.inFullscreen$,e.inFullscreen$),i(this.videoState.stateChangeEnded$.pipe(Gu.map(e=>e.to)),this.params.output.playbackState$),this.subscription.add(Qi(this.video,t.isLooped,n)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,n)),this.subscription.add(ea(this.video,t.playbackRate,r.playbackRateState$,n)),hs({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add($i(this.video,t.volume,r.volumeState$,n)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),M(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)},n)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`),this.videoState.getState()===`playing`&&this.playIfAllowed()},n).add(r.loadedMetadata$.subscribe(()=>{let e=this.params.desiredState.seekState.getState(),t=this.videoState.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),r=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(n&&Gu.isNonNullable(n.to)){let e=n.to.id;this.params.desiredState.videoTrack.setState(n.to);let t=this.manifests$.getValue().find(t=>t.id===e);t&&(this.params.output.currentVideoTrack$.next(t),this.params.output.hostname$.next(Ja(t.url)))}let i=this.params.desiredState.playbackRate.getState();if(i!==this.params.output.element$.getValue()?.playbackRate){let e=this.params.output.element$.getValue();e&&(this.params.desiredState.playbackRate.setState(i),e.playbackRate=i)}r&&this.params.desiredState.autoVideoTrackSwitching.setState(r.to),t&&t.from===`changing_manifest`&&this.videoState.setState(t.to),e.state===`requested`&&this.seek(e.position)},n))),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)})),this.subscription.add(this.manifests$.pipe(Gu.map(e=>e.map(({id:e,quality:t,size:n,bandwidth:r,fps:i})=>({id:e,quality:t,size:n,fps:i,bitrate:r})))).subscribe(this.params.output.availableVideoTracks$,n)),!N.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:e}=this.video;this.subscription.add(Gu.merge(Gu.fromEvent(e,`addtrack`),Gu.fromEvent(e,`removetrack`),Gu.fromEvent(e,`change`),Gu.observableFrom([`init`])).subscribe(()=>{for(let t=0;t<e.length;t++)e[t].mode=`hidden`},n))}let a=Gu.merge(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,Gu.observableFrom([`init`])).pipe(Gu.debounce(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),Ji(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){let e=this.selectManifest();if(Gu.isNullable(e))return;let t=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.autoVideoTrackLimits.getState(),r=new URL(e.url);if((t||n)&&e.id===this.masterManifest.id){let{max:e,min:i}=t?.to??n??{};for(let[t,n]of[[e,`mq`],[i,`lq`]]){let e=String(parseFloat(t||``));n&&t&&r.searchParams.set(n,e)}}this.video.setAttribute(`src`,r.toString()),this.video.load()}playIfAllowed(){eo(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:Gu.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}}var qu=u(lt(),1),Ju=u($e(),1),Yu=u(An(),1),Xu=require(`@vkontakte/videoplayer-shared/es2018`);class Zu{constructor(t){e(this,`subscription`,new Xu.Subscription),e(this,`videoState`,new P(`stopped`)),e(this,`video`,void 0),e(this,`trackUrls`,{}),e(this,`params`,void 0),e(this,`textTracksManager`,new aa),e(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition();if(t===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.video.removeAttribute(`src`),this.video.load(),this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),M(this.params.desiredState.playbackState,`stopped`,!0));return}if(this.videoState.getTransition())return;let r=this.params.desiredState.autoVideoTrackLimits.getTransition(),i=this.params.desiredState.videoTrack.getTransition(),a=this.params.desiredState.seekState.getState();if(r&&e!==`ready`&&!i){this.handleQualityLimitTransition(r.to);return}if(e===`stopped`){this.videoState.startTransitionTo(`ready`),this.prepare();return}if(i){let{currentTime:e}=this.video;this.prepare(),a.state===`none`&&this.params.desiredState.seekState.setState({state:`requested`,position:e*1e3,forcePrecise:!0});return}switch(n?.to!==`paused`&&a.state===`requested`&&this.seek(a.position),e){case`ready`:t===`ready`?M(this.params.desiredState.playbackState,`ready`):t===`paused`?(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`)):t===`playing`&&(this.videoState.startTransitionTo(`playing`),this.playIfAllowed());return;case`playing`:t===`paused`?(this.videoState.startTransitionTo(`paused`),this.video.paused?this.videoState.setState(`paused`):this.video.pause()):n?.to===`playing`&&M(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&M(this.params.desiredState.playbackState,`paused`);return;default:return Xu.assertNever(e)}}),this.params=t,this.video=qi(t.container,t.tuning),this.params.output.element$.next(this.video),qu.default(this.params.source).reverse().forEach(([e,t],n)=>{let r=n.toString(10);this.trackUrls[r]={track:{quality:e,id:r},url:t}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next(Ju.default(this.trackUrls).map(({track:e})=>e)),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.desiredState.autoVideoTrackSwitching.setState(!1),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),this.subscribe()}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`MpegProvider`,category:Xu.ErrorCategory.WTF,message:`MpegProvider internal logic error`,thrown:t})},r=fa(this.video);this.subscription.add(()=>r.destroy());let i=(e,t)=>this.subscription.add(e.subscribe(t,n));i(r.timeUpdate$,e.position$),i(r.durationChange$,e.duration$),i(r.ended$,e.endedEvent$),i(r.looped$,e.loopedEvent$),i(r.error$,e.error$),i(r.isBuffering$,e.isBuffering$),i(r.currentBuffer$,e.currentNativeBuffer$),i(r.currentBuffer$,e.currentBuffer$),i(r.loadedMetadata$,e.firstBytesEvent$),i(r.loadedMetadata$,e.loadedMetadataEvent$),i(r.playing$,e.firstFrameEvent$),i(r.canplay$,e.canplay$),i(r.seeked$,e.seekedEvent$),i(r.inPiP$,e.inPiP$),i(r.inFullscreen$,e.inFullscreen$),i(this.videoState.stateChangeEnded$.pipe(Xu.map(e=>e.to)),this.params.output.playbackState$),this.subscription.add(Qi(this.video,t.isLooped,n)),hs({subscription:this.subscription,desiredState:t,videoElement$:this.params.output.element$,observableVideo:r}),this.subscription.add($i(this.video,t.volume,r.volumeState$,n)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,n)),this.subscription.add(ea(this.video,t.playbackRate,r.playbackRateState$,n)),i(Lo(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`),M(t.playbackState,`playing`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)},n)).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`);let e=this.params.desiredState.videoTrack.getTransition();if(e&&Xu.isNonNullable(e.to)){this.params.desiredState.videoTrack.setState(e.to),this.params.output.currentVideoTrack$.next(this.trackUrls[e.to.id].track);let t=this.params.desiredState.playbackRate.getState();if(t!==this.params.output.element$.getValue()?.playbackRate){let e=this.params.output.element$.getValue();e&&(this.params.desiredState.playbackRate.setState(t),e.playbackRate=t)}}this.videoState.getState()===`playing`&&!this.video.ended&&this.playIfAllowed()},n)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState(`paused`),M(t.playbackState,`paused`)})),this.textTracksManager.connect(this.video,t,e);let a=Xu.merge(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,Xu.observableFrom([`init`])).pipe(Xu.debounce(0));this.subscription.add(a.subscribe(this.syncPlayback,n))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.trackUrls={},this.params.output.element$.next(void 0),Ji(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}prepare(){let e=this.params.desiredState.videoTrack.getState()?.id;Xu.assertNonNullable(e,`MpegProvider: track is not selected`);let{url:t}=this.trackUrls[e];Xu.assertNonNullable(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=Fs(t)),this.video.setAttribute(`src`,t),this.video.load(),this.params.output.hostname$.next(Ja(t))}playIfAllowed(){eo(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:Xu.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){this.params.output.autoVideoTrackLimits$.next(e);let t=e=>{this.params.output.currentVideoTrack$.next(e),this.params.desiredState.videoTrack.startTransitionTo(e)},n=e=>{t(Wa(a,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:e,abrLogger:this.params.dependencies.abrLogger}))},r=this.params.output.currentVideoTrack$.getValue()?.quality,i=!!(e.max||e.min),a=Ju.default(this.trackUrls).map(e=>e.track);if(!r||!i||Da(e,a[0].quality,Yu.default(a,-1)?.quality)){n();return}let o=e.max?Xu.isLowerOrEqual(r,e.max):!0,s=e.min?Xu.isHigherOrEqual(r,e.min):!0;o&&s||n(e)}}var Qu=require(`@vkontakte/videoplayer-shared/es2018`),$u=require(`@vkontakte/videoplayer-shared/es2018`),ed=[`stun:videostun.mycdn.me:80`],td=1e3,nd=3,rd=()=>null;class id{constructor(t,n){e(this,`options`,void 0),e(this,`ws`,null),e(this,`peerConnection`,null),e(this,`serverUrl`,``),e(this,`streamKey`,``),e(this,`stream`,null),e(this,`signalingType`,`JOIN`),e(this,`retryTimeout`,void 0),e(this,`retryCount`,0),e(this,`externalStartCallback`,rd),e(this,`externalStopCallback`,rd),e(this,`externalErrorCallback`,rd),this.options=this.normalizeOptions(n);let r=t.split(`/`);this.serverUrl=r.slice(0,r.length-1).join(`/`),this.streamKey=r[r.length-1]}onStart(e){try{this.externalStartCallback=e}catch(e){this.handleSystemError(e)}}onStop(e){try{this.externalStopCallback=e}catch(e){this.handleSystemError(e)}}onError(e){try{this.externalErrorCallback=e}catch(e){this.handleSystemError(e)}}connect(){this.connectWS()}disconnect(){try{this.externalStopCallback(),this.closeConnections()}catch(e){this.handleSystemError(e)}}connectWS(){this.ws||(this.ws=new WebSocket(this.serverUrl),this.ws.onopen=this.onSocketOpen.bind(this),this.ws.onmessage=this.onSocketMessage.bind(this),this.ws.onclose=this.onSocketClose.bind(this),this.ws.onerror=this.onSocketError.bind(this))}onSocketOpen(){this.handleLogin()}onSocketClose(e){try{if(!this.ws)return;this.ws=null,e.code>1e3?(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():this.scheduleRetry()):this.externalStopCallback()}catch(e){this.handleRTCError(e)}}onSocketError(e){try{this.externalErrorCallback(Error(e.toString()))}catch(e){this.handleRTCError(e)}}onSocketMessage(e){try{let t=this.parseMessage(e.data);switch(t.type){case`JOIN`:case`CALL_JOIN`:this.handleJoinMessage(t);break;case`UPDATE`:this.handleUpdateMessage(t);break;case`STATUS`:this.handleStatusMessage(t);break}}catch(e){this.handleRTCError(e)}}handleJoinMessage(e){switch(e.inviteType){case`ANSWER`:this.handleAnswer(e.sdp);break;case`CANDIDATE`:this.handleCandidate(e.candidate);break}}handleStatusMessage(e){switch(e.status){case`UNPUBLISHED`:this.handleUnpublished();break}}async handleUpdateMessage(e){try{let t=await this.createOffer();this.peerConnection&&await this.peerConnection.setLocalDescription(t),this.handleAnswer(e.sdp)}catch(e){this.handleRTCError(e)}}async handleLogin(){try{let e={iceServers:[{urls:ed}]};this.peerConnection=new RTCPeerConnection(e),this.peerConnection.ontrack=this.onPeerConnectionStream.bind(this),this.peerConnection.onicecandidate=this.onPeerConnectionIceCandidate.bind(this),this.peerConnection.oniceconnectionstatechange=this.onPeerConnectionIceConnectionStateChange.bind(this);let t=await this.createOffer();await this.peerConnection.setLocalDescription(t),this.send({type:this.signalingType,inviteType:`OFFER`,streamKey:this.streamKey,sdp:t.sdp,callSupport:!1})}catch(e){this.handleRTCError(e)}}async handleAnswer(e){try{this.peerConnection&&await this.peerConnection.setRemoteDescription(new RTCSessionDescription({type:`answer`,sdp:e}))}catch(e){this.handleRTCError(e)}}async handleCandidate(e){if(e)try{this.peerConnection&&await this.peerConnection.addIceCandidate(e)}catch(e){this.handleRTCError(e)}}handleUnpublished(){try{this.closeConnections(),this.externalStopCallback()}catch(e){this.handleRTCError(e)}}handleSystemError(e){this.options.errorChanel&&this.options.errorChanel.next({id:`webrtc-provider-error`,category:$u.ErrorCategory.WTF,message:e.message})}async onPeerConnectionStream(e){let t=e.streams[0];this.stream&&this.stream.id===t.id||(this.stream=t,this.externalStartCallback(this.stream))}onPeerConnectionIceCandidate(e){e.candidate&&this.send({type:this.signalingType,inviteType:`CANDIDATE`,candidate:e.candidate})}onPeerConnectionIceConnectionStateChange(){if(this.peerConnection){let e=this.peerConnection.iceConnectionState;[`failed`,`closed`].indexOf(e)>-1&&(this.retryCount++,this.retryCount>this.options.maxRetryNumber?this.handleNetworkError():(this.closeConnections(),this.scheduleRetry()))}}async createOffer(){let e={offerToReceiveAudio:!0,offerToReceiveVideo:!0,voiceActivityDetection:!1};if(!this.peerConnection)throw Error(`Can not create offer - no peer connection instance `);let t=await this.peerConnection.createOffer(e),n=t.sdp||``;if(!/^a=rtpmap:\d+ H264\/\d+$/m.test(n))throw Error(`No h264 codec support error`);return t}handleRTCError(e){try{this.externalErrorCallback(e||Error(`RTC connection error`))}catch(e){this.handleSystemError(e)}}handleNetworkError(){try{this.externalErrorCallback(Error(`Network error`))}catch(e){this.handleSystemError(e)}}send(e){this.ws&&this.ws.send(JSON.stringify(e))}parseMessage(e){try{return JSON.parse(e)}catch{throw Error(`Can not parse socket message`)}}closeConnections(){let e=this.ws;e&&(this.ws=null,e.close(1e3)),this.removePeerConnection()}removePeerConnection(){let e=this.peerConnection;e&&=(this.peerConnection=null,e.close(),e.ontrack=null,e.onicecandidate=null,e.oniceconnectionstatechange=null,null)}scheduleRetry(){this.retryTimeout=setTimeout(this.connectWS.bind(this),td)}normalizeOptions(e={}){let t={stunServerList:ed,maxRetryNumber:nd,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}}class ad{constructor(t){e(this,`subscription`,void 0),e(this,`params`,void 0),e(this,`log`,void 0),e(this,`video`,void 0),e(this,`videoState`,new P(`stopped`)),e(this,`liveStreamClient`,void 0),e(this,`maxSeekBackTime$`,new Qu.ValueSubject(0)),e(this,`syncPlayback`,()=>{let e=this.videoState.getState(),t=this.params.desiredState.playbackState.getState(),n=this.params.desiredState.playbackState.getTransition();if(t===`stopped`){e!==`stopped`&&(this.videoState.startTransitionTo(`stopped`),this.video.pause(),this.video.srcObject=null,this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.videoState.setState(`stopped`),M(this.params.desiredState.playbackState,`stopped`,!0));return}if(this.videoState.getTransition())return;let r=this.params.desiredState.videoTrack.getTransition();if(e===`stopped`){this.videoState.startTransitionTo(`ready`),this.prepare();return}if(r){this.prepare();return}switch(e){case`ready`:t===`paused`?(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`)):t===`playing`&&(this.videoState.startTransitionTo(`playing`),this.playIfAllowed());return;case`playing`:t===`paused`?(this.videoState.startTransitionTo(`paused`),this.video.paused?this.videoState.setState(`paused`):this.video.pause()):n?.to===`playing`&&M(this.params.desiredState.playbackState,`playing`);return;case`paused`:t===`playing`?(this.videoState.startTransitionTo(`playing`),this.playIfAllowed()):n?.to===`paused`&&M(this.params.desiredState.playbackState,`paused`);return;default:return Qu.assertNever(e)}}),this.subscription=new Qu.Subscription,this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`WebRTCLiveProvider`),this.video=qi(t.container,t.tuning),this.liveStreamClient=new id(this.params.source.url,{maxRetryNumber:this.params.tuning.webrtc.connectionRetryMaxNumber,errorChanel:this.params.output.error$}),this.liveStreamClient.onStart(this.onLiveStreamStart.bind(this)),this.liveStreamClient.onStop(this.onLiveStreamStop.bind(this)),this.liveStreamClient.onError(this.onLiveStreamError.bind(this)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.subscribe()}destroy(){this.subscription.unsubscribe(),this.liveStreamClient.disconnect(),this.params.output.element$.next(void 0),Ji(this.video,this.params.tuning.keepVideoElement,this.params.tuning.clearVideoElementInnerHTML)}subscribe(){let{output:e,desiredState:t}=this.params,n=t=>{e.error$.next({id:`WebRTCLiveProvider`,category:Qu.ErrorCategory.WTF,message:`WebRTCLiveProvider internal logic error`,thrown:t})};this.subscription.add(Qu.merge(this.videoState.stateChangeStarted$.pipe(Qu.map(e=>({transition:e,type:`start`}))),this.videoState.stateChangeEnded$.pipe(Qu.map(e=>({transition:e,type:`end`})))).subscribe(({transition:e,type:t})=>{this.log({message:`[videoState change] ${t}: ${JSON.stringify(e)}`})}));let r=fa(this.video);this.subscription.add(()=>r.destroy());let i=(e,t)=>this.subscription.add(e.subscribe(t,n));i(r.timeUpdate$,e.liveTime$),i(r.ended$,e.endedEvent$),i(r.looped$,e.loopedEvent$),i(r.error$,e.error$),i(r.isBuffering$,e.isBuffering$),i(r.currentBuffer$,e.currentBuffer$),i(r.currentBuffer$,e.currentNativeBuffer$),i(Lo(this.video),this.params.output.elementVisible$),this.subscription.add(r.durationChange$.subscribe(t=>{e.duration$.next(t===1/0?0:t)})).add(r.canplay$.subscribe(()=>{this.videoState.getTransition()?.to===`ready`&&this.videoState.setState(`ready`)},n)).add(r.pause$.subscribe(()=>{this.videoState.setState(`paused`)},n)).add(r.playing$.subscribe(()=>{this.videoState.setState(`playing`)},n)).add(r.error$.subscribe(e.error$)).add(this.maxSeekBackTime$.subscribe(this.params.output.duration$)).add($i(this.video,t.volume,r.volumeState$,n)).add(r.volumeState$.subscribe(e.volume$,n)).add(this.videoState.stateChangeEnded$.subscribe(n=>{switch(n.to){case`stopped`:e.position$.next(0),e.duration$.next(0),t.playbackState.setState(`stopped`);break;case`ready`:break;case`paused`:t.playbackState.setState(`paused`);break;case`playing`:t.playbackState.setState(`playing`);break;default:return Qu.assertNever(n.to)}},n)).add(Qu.merge(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,Qu.observableFrom([`init`])).pipe(Qu.debounce(0)).subscribe(this.syncPlayback.bind(this),n)),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),n)),this.subscription.add(t.autoVideoTrackSwitching.stateChangeStarted$.subscribe(()=>t.autoVideoTrackSwitching.setState(!1),n))}onLiveStreamStart(e){this.params.output.element$.next(this.video),this.params.output.duration$.next(0),this.params.output.position$.next(0),this.params.output.isLive$.next(!0),this.params.output.canChangePlaybackSpeed$.next(!1),this.params.output.hostname$.next(Ja(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!1),this.params.output.availableVideoTracks$.next([]),this.params.output.availableAudioTracks$.next([]),this.params.output.isAudioAvailable$.next(!0),this.params.output.currentVideoTrack$.next({id:`webrtc`,quality:Qu.VideoQuality.INVARIANT}),this.video.srcObject=e,M(this.params.desiredState.playbackState,`playing`)}onLiveStreamStop(){this.videoState.startTransitionTo(`stopped`),this.syncPlayback(),this.params.output.position$.next(0),this.params.output.duration$.next(0),this.params.output.currentBuffer$.next(void 0),this.params.output.currentNativeBuffer$.next(void 0),this.params.output.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:`WebRTC stream runtime error`,category:Qu.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){eo(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState(`paused`),M(this.params.desiredState.playbackState,`paused`,!0))},e=>this.params.output.error$.next({id:`ForcePlay`,message:`play() failed even with workarounds`,category:Qu.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}}class od{constructor(t){e(this,`length`,void 0),e(this,`index`,void 0),e(this,`iterator`,void 0),e(this,`current`,void 0),this.length=t.length,this.iterator=t[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next(),this.index=this.index===void 0?0:this.index+1}getValue(){if(this.current.done)throw Error(`Iterable is completed`);return this.current.value}isCompleted(){return!!this.current.done}isLast(){return this.index===this.length-1}}var Z=require(`@vkontakte/videoplayer-shared/es2018`),sd=require(`@vkontakte/videoplayer-shared/es2018`),cd=e=>new sd.Observable(t=>{let n=new sd.Subscription,r=e.desiredPlaybackState$.stateChangeStarted$.pipe(sd.map(({from:e,to:t})=>`${e}-${t}`)),i=e.desiredPlaybackState$.stateChangeEnded$,a=e.providerChanged$.pipe(sd.map(({type:e})=>e!==void 0)),o=new sd.Subject,s=0,c=`unknown`;return n.add(r.subscribe(t=>{s&&window.clearTimeout(s),c=t,s=window.setTimeout(()=>o.next(t),e.maxTransitionInterval),B({m:`hangup.set`,l:t,id:s})})),n.add(i.subscribe(()=>{B({m:`hangup.cl`,id:s}),window.clearTimeout(s),c=`unknown`,s=0})),n.add(a.subscribe(t=>{s&&(B({m:`hangup.rs.0`,id:s}),window.clearTimeout(s),s=0,t&&(s=window.setTimeout(()=>o.next(c),e.maxTransitionInterval),B({m:`hangup.rs.1`,id:s})))})),n.add(o.subscribe(t)),()=>{window.clearTimeout(s),n.unsubscribe()}}),ld=require(`@vkontakte/videoplayer-shared/es2018`);function ud(){return new(window.AudioContext||window.webkitAudioContext)}class dd{constructor(t,n,r,i){e(this,`providerOutput`,void 0),e(this,`provider$`,void 0),e(this,`volumeMultiplierError$`,void 0),e(this,`volumeMultiplier`,void 0),e(this,`destroyController`,new js),e(this,`subscriptions`,new ld.Subscription),e(this,`audioContext`,null),e(this,`gainNode`,null),e(this,`mediaElementSource`,null),this.providerOutput=t,this.provider$=n,this.volumeMultiplierError$=r,this.volumeMultiplier=i,this.subscriptions.add(this.provider$.pipe(ld.filter(e=>!!e.type),ld.once()).subscribe(({type:e})=>this.subscribe(e)))}subscribe(e){N.browser.isSafari&&e!==`MPEG`||this.subscriptions.add(ld.combine({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe(ld.filter(({playbackState:e,video:t,volume:{muted:n,volume:r}})=>e===`playing`&&!!t&&!n&&!!r),ld.once()).subscribe(({video:e})=>{this.initAudioContextOnce(e).then(e=>{e||this.destroy()}).catch(e=>{this.handleError(e),this.destroy()})}))}static isSupported(){return`AudioContext`in window&&`GainNode`in window&&`MediaElementAudioSourceNode`in window}async initAudioContextOnce(e){let{volumeMultiplier:t}=this,n=ud();this.audioContext=n;let r=n.createGain();if(this.gainNode=r,r.gain.value=t,r.connect(n.destination),n.state===`suspended`&&(await n.resume(),this.destroyController.signal.aborted))return!1;let i=n.createMediaElementSource(e);return this.mediaElementSource=i,i.connect(r),!0}cleanup(){this.mediaElementSource&&=(this.mediaElementSource.disconnect(),null),this.gainNode&&=(this.gainNode.disconnect(),null),this.audioContext&&=(this.audioContext.state!==`closed`&&this.audioContext.close(),null)}destroy(){this.destroyController.abort(),this.subscriptions.unsubscribe(),this.cleanup()}handleError(e){this.volumeMultiplierError$.next({id:dd.errorId,category:ld.ErrorCategory.VIDEO_PIPELINE,message:e?.message??`${dd.errorId} exception`,thrown:e})}}e(dd,`errorId`,`VolumeMultiplierManager`);var fd={chunkDuration:5e3,maxParallelRequests:5};class pd{constructor(t){e(this,`current$`,new Z.ValueSubject({type:void 0})),e(this,`providerError$`,new Z.Subject),e(this,`noAvailableProvidersError$`,new Z.Subject),e(this,`volumeMultiplierError$`,new Z.Subject),e(this,`providerOutput`,{position$:new Z.ValueSubject(0),duration$:new Z.ValueSubject(1/0),volume$:new Z.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new Z.ValueSubject([]),currentVideoStream$:new Z.ValueSubject(void 0),availableVideoTracks$:new Z.ValueSubject([]),currentVideoTrack$:new Z.ValueSubject(void 0),availableVideoCodecs$:new Z.ValueSubject([]),availableAudioStreams$:new Z.ValueSubject([]),currentAudioStream$:new Z.ValueSubject(void 0),availableAudioTracks$:new Z.ValueSubject([]),availableAudioCodecs$:new Z.ValueSubject([]),currentVideoSegmentLength$:new Z.ValueSubject(0),currentAudioSegmentLength$:new Z.ValueSubject(0),isAudioAvailable$:new Z.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new Z.ValueSubject(!1),autoVideoTrackLimits$:new Z.ValueSubject(void 0),currentBuffer$:new Z.ValueSubject(void 0),currentNativeBuffer$:new Z.ValueSubject(void 0),isBuffering$:new Z.ValueSubject(!0),error$:new Z.Subject,fetcherError$:new Z.Subject,fetcherRecoverableError$:new Z.Subject,warning$:new Z.Subject,willSeekEvent$:new Z.Subject,soundProhibitedEvent$:new Z.Subject,seekedEvent$:new Z.Subject,loopedEvent$:new Z.Subject,endedEvent$:new Z.Subject,manifestRequested$:new Z.Subject,firstBytesManifest$:new Z.Subject,manifestReceived$:new Z.Subject,firstBytesRequested$:new Z.Subject,firstBytesReceived$:new Z.Subject,firstBytesEvent$:new Z.Subject,loadedMetadataEvent$:new Z.Subject,firstFrameEvent$:new Z.Subject,canplay$:new Z.Subject,isLive$:new Z.ValueSubject(void 0),isLiveEnded$:new Z.ValueSubject(null),canPlayLiveTailBuffer$:new Z.ValueSubject(!1),isLowLatency$:new Z.ValueSubject(!1),canChangePlaybackSpeed$:new Z.ValueSubject(!0),liveTime$:new Z.ValueSubject(void 0),liveBufferTime$:new Z.ValueSubject(void 0),liveLatency$:new Z.ValueSubject(void 0),severeStallOccurred$:new Z.Subject,availableTextTracks$:new Z.ValueSubject([]),currentTextTrack$:new Z.ValueSubject(void 0),hostname$:new Z.ValueSubject(void 0),httpConnectionType$:new Z.ValueSubject(void 0),httpConnectionReused$:new Z.ValueSubject(void 0),httpConnectionMetrics$:new Z.ValueSubject(void 0),httpDownloadMetrics$:new Z.ValueSubject(void 0),inPiP$:new Z.ValueSubject(!1),inFullscreen$:new Z.ValueSubject(!1),element$:new Z.ValueSubject(void 0),elementVisible$:new Z.ValueSubject(!0),availableSources$:new Z.ValueSubject(void 0),is3DVideo$:new Z.ValueSubject(!1),playbackState$:new Z.ValueSubject(``),getCurrentTime$:new Z.ValueSubject(null)}),e(this,`subscription`,new Z.Subscription),e(this,`screenFormatsIterator`,void 0),e(this,`chromecastFormatsIterator`,void 0),e(this,`videoCodecsIterator`,void 0),e(this,`log`,void 0),e(this,`tracer`,void 0),e(this,`params`,void 0),e(this,`failoverIndex`,void 0),e(this,`volumeMultiplierManager`,null),this.params=t,this.log=this.params.dependencies.logger.createComponentLog(`ProviderContainer`),this.tracer=t.dependencies.tracer.createComponentTracer(this.constructor.name);let n=gi([...ac(this.params.tuning),...ic(this.params.tuning)]).filter(e=>Z.isNonNullable(t.sources[e])),{forceFormat:r,formatsToAvoid:i}=this.params.tuning,a=[];a=r?[r]:i.length?[...n.filter(e=>!Di(i,e)),...n.filter(e=>Di(i,e))]:n,this.log({message:`Selected formats: ${a.join(` > `)}`}),this.tracer.log(`Selected formats`,Z.flattenObject(a)),this.screenFormatsIterator=new od(a),this.chromecastFormatsIterator=new od([...oc(!0),...oc(!1)].filter(e=>Z.isNonNullable(t.sources[e]))),this.providerOutput.availableSources$.next(t.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:s}}=this.params;s&&o!==1&&dd.isSupported()&&(this.volumeMultiplierManager=new dd(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){B.reset(),this.subscription.add(this.initProviderErrorHandling()).add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()})).add(this.providerOutput.availableVideoCodecs$.subscribe(e=>{!this.videoCodecsIterator&&e.length>1&&(this.videoCodecsIterator=new od(e))}))}destroy(){this.destroyProvider(),this.current$.next({type:void 0}),this.subscription.unsubscribe(),this.volumeMultiplierManager?.destroy(),this.volumeMultiplierManager=null,this.tracer.end()}initProvider(){let e=this.chooseDestination(),t=this.chooseFormat(e);if(Z.isNullable(t)){this.handleNoFormatsError(e);return}let n;try{n=this.createProvider(e,t)}catch(e){this.providerError$.next({id:`ProviderNotConstructed`,category:Z.ErrorCategory.WTF,message:`Failed to create provider`,thrown:e})}n?this.current$.next({type:t,provider:n,destination:e}):this.current$.next({type:void 0})}reinitProvider(){this.tracer.log(`reinitProvider`),this.destroyProvider(),this.initProvider()}switchToNextProvider(e){this.tracer.log(`switchToNextProvider`,{destination:e}),this.destroyProvider(),this.failoverIndex=void 0,this.skipFormat(e),this.initProvider()}switchToNextVideoCodec(){this.params.tuning.dash.codecsPrioritizeEnabled&&!this.videoCodecsIterator.isLast()&&(this.tracer.log(`switchToNextVideoCodec`),this.destroyProvider(),this.videoCodecsIterator.next(),this.initProvider())}destroyProvider(){let e=this.current$.getValue().provider;if(!e)return;this.log({message:`destroyProvider`}),this.tracer.log(`destroyProvider`),e.destroy();let t=this.providerOutput.position$.getValue()*1e3,n=this.params.desiredState.seekState.getState(),r=n.state!==`none`;if(this.params.desiredState.seekState.setState({state:`requested`,position:r?n.position:t,forcePrecise:r?n.forcePrecise:!1}),e.scene3D){let t=e.scene3D.getCameraRotation();this.params.desiredState.cameraOrientation.setState({x:t.x,y:t.y})}let i=this.providerOutput.isBuffering$;i.getValue()||i.next(!0)}createProvider(e,t){switch(this.log({message:`createProvider: ${e}:${t}`}),this.tracer.log(`createProvider`,{destination:e,format:t}),e){case`SCREEN`:return this.createScreenProvider(t);case`CHROMECAST`:return this.createChromecastProvider(t);default:return Z.assertNever(e)}}createScreenProvider(e){let{sources:t,container:n,desiredState:r,panelSize:i}=this.params,a=this.providerOutput,o={container:n,source:null,desiredState:r,output:a,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:i};switch(e){case`DASH_SEP`:case`DASH_WEBM`:case`DASH_WEBM_AV1`:case`DASH_ONDEMAND`:case`DASH_STREAMS`:{let n=this.applyFailoverHost(t[e]),r=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);Z.assertNonNullable(n);let{useDashProviderVirtual:i,useDashProviderVirtualMobile:a}=this.params.tuning,{isMobile:s}=N.device;return!s&&i||s&&a?new Jl({...o,source:n,sourceHls:r,forceVideoCodec:this.videoCodecsIterator?.getValue()}):new ku({...o,source:n,sourceHls:r,forceVideoCodec:this.videoCodecsIterator?.getValue()})}case`DASH_LIVE_CMAF`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),this.params.tuning.useDashProviderVirtual&&!N.device.isMobile||this.params.tuning.useDashProviderVirtualMobile&&N.device.isMobile?new ou({...o,source:n}):new ju({...o,source:n})}case`HLS`:case`HLS_ONDEMAND`:case`HLS_FMP4`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),new Ku({...o,source:n})}case`HLS_LIVE`:case`HLS_LIVE_CMAF`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),new Wu({...o,source:n,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case`MPEG`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),new Zu({...o,source:n})}case`DASH_LIVE`:{let n=this.applyFailoverHost(t[e]);return Z.assertNonNullable(n),new Vo({...o,source:n,config:{...fd,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case`WEB_RTC_LIVE`:{let i=this.applyFailoverHost(t[e]);return Z.assertNonNullable(i),new ad({container:n,source:i,desiredState:r,output:a,dependencies:this.params.dependencies,tuning:this.params.tuning})}case`DASH`:case`DASH_LIVE_WEBM`:throw Error(`${e} is no longer supported`);default:return Z.assertNever(e)}}createChromecastProvider(e){let{sources:t,container:n,desiredState:r,meta:i}=this.params,a={meta:i,container:n,source:t,format:e,desiredState:r,output:this.providerOutput,dependencies:this.params.dependencies,tuning:this.params.tuning};if(this.params.tuning.chromecastPresentationApi&&this.params.dependencies.chromecastInitializer instanceof Ti){let{chromecastConnector:e}=this.params.dependencies.chromecastInitializer;return Z.assertNonNullable(e),new yi({...a,chromecastConnector:e})}let o=this.params.dependencies.chromecastInitializer.connection$.getValue();return Z.assertNonNullable(o),new Ii({...a,connection:o})}chooseDestination(){return this.params.dependencies.chromecastInitializer.connection$.getValue()?`CHROMECAST`:`SCREEN`}chooseFormat(e){switch(e){case`SCREEN`:return this.screenFormatsIterator.isCompleted()?void 0:this.screenFormatsIterator.getValue();case`CHROMECAST`:return this.chromecastFormatsIterator.isCompleted()?void 0:this.chromecastFormatsIterator.getValue();default:return Z.assertNever(e)}}skipFormat(e){switch(e){case`SCREEN`:return this.screenFormatsIterator.next();case`CHROMECAST`:return this.chromecastFormatsIterator.next();default:return Z.assertNever(e)}}handleNoFormatsError(e){switch(e){case`SCREEN`:this.noAvailableProvidersError$.next(this.params.tuning.forceFormat),this.current$.next({type:void 0});return;case`CHROMECAST`:this.params.dependencies.chromecastInitializer.disconnect();return;default:return Z.assertNever(e)}}applyFailoverHost(e){if(this.failoverIndex===void 0)return e;let t=this.params.failoverHosts[this.failoverIndex];if(!t)return e;let n=e=>{let n=new URL(e);return n.host=t,n.toString()};if(e===void 0)return e;if(`type`in e){if(e.type===`raw`)return e;if(e.type===`url`)return{...e,url:n(e.url)}}return ki.default(Oi.default(e).map(([e,t])=>[e,n(t)]))}initProviderErrorHandling(){let e=new Z.Subscription,t=!1,n=0;e.add(Z.merge(this.providerOutput.error$.pipe(Z.filter(e=>!this.params.tuning.ignoreAudioRendererError||!e.message||!/AUDIO_RENDERER_ERROR/gi.test(e.message))),cd({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe(Z.map(e=>({id:`ProviderHangup:${e}`,category:Z.ErrorCategory.WTF,message:`A ${e} transition failed to complete within reasonable time`})))).subscribe(this.providerError$)),e.add(this.providerOutput.fetcherError$.subscribe(this.providerError$)),e.add(this.current$.subscribe(()=>{t=!1;let n=this.params.desiredState.playbackState.transitionEnded$.pipe(Z.filter(({to:e})=>e===`playing`),Z.once()).subscribe(()=>t=!0);e.add(n)}));let r=()=>{let e=B.drain(),{logDashLiveDebug:t,sendDashLiveDebug:n}=this.params.tuning;if(t&&Z.getWindow().console.log(`===== DASH_LIVE DEBUG START ====
127
+ `,e.map(({time:e,data:t,stack:n})=>`${e}: ${JSON.stringify(t)}${n?`
128
+ `+n:``}`).join(`
183
129
  `),`
184
- ===== DASH_LIVE DEBUG END ====`),o){let u=a.reduce((c,{time:l,data:d,stack:p})=>{let h=(0,Ql.default)(d).map(([m,b])=>`${m}:${b}`).join(",");return c+=`${l}: ${h}${p?`: ${p}`:""};`,c},"");E.devNull.push("core",{key:"vp_dash_live_debug",strings:[u]})}};return e.add(this.providerError$.subscribe(a=>{a.id.startsWith("ProviderHangup")&&(X({m:"final.0",e:a.id}),r())})).add(this.noAvailableProvidersError$.subscribe(()=>{X({m:"final.1"}),r()})),e.add(this.providerError$.subscribe(a=>{let n=this.current$.getValue().destination,o={error:a,currentDestination:n};if(n==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("CHROMECAST"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let u=a.category===E.ErrorCategory.NETWORK,c=a.category===E.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),d=i<this.params.tuning.providerErrorLimit&&!c,p=this.videoCodecsIterator&&!this.videoCodecsIterator.isLast()&&this.params.tuning.dash.codecsPrioritizeEnabled,h=l&&!c&&(u&&t||!d);o={...o,isNetworkError:u,isFatalError:c,haveFailoverHost:l,tryFailover:h,canReinitProvider:d},d?(i++,this.reinitProvider()):h?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):p?this.switchToNextVideoCodec():(i=0,this.switchToNextProvider(n!=null?n:"SCREEN"))}a.traceAsLog?this.tracer.log("providerInfo",(0,E.flattenObject)(o)):this.tracer.error("providerError",(0,E.flattenObject)(o))})),e}};var J=require("@vkontakte/videoplayer-shared/es2018");var uL=5e3,Jy="one_video_throughput",Zy="one_video_rtt",Gl=()=>{let{navigator:s}=(0,J.getWindow)();if(s)return s.connection},eT=()=>{var e;let s=(e=Gl())==null?void 0:e.downlink;if((0,J.isNonNullable)(s)&&s!==10)return s*1e3},tT=()=>{var e;let s=(e=Gl())==null?void 0:e.rtt;if((0,J.isNonNullable)(s)&&s!==3e3)return s},iT=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},zl=class s{constructor(e){this.subscription=new J.Subscription;this.concurrentDownloads=new Set;var r,a;this.tuningConfig=e;let t=s.load(Jy)||(e.useBrowserEstimation?eT():void 0)||uL,i=(a=(r=s.load(Zy))!=null?r:e.useBrowserEstimation?tT():void 0)!=null?a:0;if(this.throughput$=new J.ValueSubject(t),this.rtt$=new J.ValueSubject(i),this.rttAdjustedThroughput$=new J.ValueSubject(iT(t,i,e.rttPenaltyRequestSize)),this.throughput=ti.getSmoothedValue(t,-1,e),this.rtt=ti.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let c=eT();c&&this.throughput.next(c);let l=tT();(0,J.isNonNullable)(l)&&this.rtt.next(l)},o=Gl();o&&"onchange"in o&&this.subscription.add((0,J.fromEvent)(o,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{J.safeStorage.set(Jy,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{J.safeStorage.set(Zy,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.pipe((0,J.map)(n=>Math.round(n))).subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,J.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,J.map)(({throughput:n,rtt:o})=>iT(n,o,e.rttPenaltyRequestSize)),(0,J.filter)(n=>{let o=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(n-o)/o>=e.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,i=(0,J.now)(),r=new J.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,J.fromEvent)(e,"progress").pipe((0,J.once)()).subscribe(a=>{t=a.loaded,i=(0,J.now)()}));break;case 1:case 0:r.add((0,J.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,J.now)()}));break}r.add((0,J.fromEvent)(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=(0,J.now)(),u=n-t,c=o-i;this.addRawSpeed(u,c,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){let i=e.getReader();if(!i){e.cancel("Could not get reader");return}let r=0,a=(0,J.now)(),n=0,o=(0,J.now)(),u=l=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${l}`).catch(()=>{})},c=async({done:l,value:d})=>{if(l)!t&&this.addRawSpeed(r,(0,J.now)()-a,1),this.concurrentDownloads.delete(e);else if(d){if(t){let p=(0,J.now)();if(p-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||p-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let m=o-a;m&&this.addRawSpeed(n,m,1,t),n=d.byteLength,a=(0,J.now)()}else n+=d.byteLength;o=(0,J.now)()}else r+=d.byteLength,n+=d.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,J.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,J.now)()-o,this.concurrentDownloads.size),n=0,o=(0,J.now)());await(i==null?void 0:i.read().then(c,u))}};this.concurrentDownloads.add(e),i==null||i.read().then(c,u)}addRawSpeed(e,t,i=1,r=!1){if(s.sanityCheck(e,t,r)){let a=e*8/t;this.throughput.next(a*i)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,i=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||i&&e<1e4||!i&&e<10*1024||!i&&t<=20)}static load(e){var i;let t=J.safeStorage.get(e);if((0,J.isNonNullable)(t))return(i=parseInt(t,10))!=null?i:void 0}},rT=zl;var cr=require("@vkontakte/videoplayer-shared/es2018"),cL={keepVideoElement:!1,clearVideoElementInnerHTML:!1,throughputEstimator:{type:"EmaAndMa",emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:cr.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:cr.VideoQuality.Q_720P,trafficSavingLimit:cr.VideoQuality.Q_480P},stallsManager:{enabled:!1,ignoreDynamicAbrForShortVideo:!1,stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!0,stallsMetricsHistoryLength:20,maxPossibleStallDuration:3e4,minTvtToBeCounted:120,maxTvtToBeCounted:10800,significantTvt:600,targetStallsDurationPerTvt:1,deviationStallsDurationPerTvt:.5,criticalStallsDurationPerTvt:6,abrAdjustingSpeed:.1,emaAlpha:.6,useTotalStallsDurationPerTvt:!0,useAverageStallsDurationPerTvt:!0,useEmaStallsDurationPerTvt:!0},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:cr.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,maxVirtualBufferSize:250*1024*1024,virtualBufferPruneSize:100*1024*1024,representationSwitchForwardBufferGap:15e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useNewRepresentationSwitch:!1,useDelayedRepresentationSwitch:!1,useSmartRepresentationSwitch:!1,useFetchPriorityHints:!0,useAbortMSEFix:!1,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,vktvAbrThrottle:0,timeupdateEventTickThrottle:300,fetcherBufferOptimisation:!0,codecsPrioritizeEnabled:!1,usePersistentGaps:!1,abrThrottle:0,useVideoElementWaitingCurrentTimeReassign:!0,stallWatchdogInterval:100,liveUpdateInterval:1e3,liveStallReinitInterval:3e3,ignoreNetworkErrorsOnLoadInit:!1,bufferTolerance:100,actionTimeShiftFromSegment:500,tickMaintainInterval:1e3,minSafeBufferToPlay:1e4,useBufferHoldingOnlyOnStall:!0,useNewStallExitPolicy:!1,videoStreamRepresentaionsFilter:[]},dashCmafLive:{externalStopControl:!1,keepSilentStallWatchdogWhenNotActive:!1,maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,catchupLiveForMutedInactiveTab:!0,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:"07A4434E",chromecastPresentationApi:!1,useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",iosPreferredFormat:"hls",preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:3*60*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useNewSwitchTo:!1,useDashProviderVirtual:!1,useDashProviderVirtualMobile:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1,changePlaybackStateToPausedWhenEnded:!1,suppressExceptionsInObservables:!0,devNullLogEnabled:!1,collectingDecodingInfoEnabled:!1,sendDashLiveDebug:!1,logDashLiveDebug:!1},aT=s=>(0,cr.fillWithDefault)(s,cL);var f=require("@vkontakte/videoplayer-shared/es2018");var ri=require("@vkontakte/videoplayer-shared/es2018"),Yl=({seekState:s,position$:e})=>(0,ri.merge)(s.stateChangeEnded$.pipe((0,ri.map)(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),(0,ri.filter)(ri.isNonNullable)),e.pipe((0,ri.filter)(()=>s.getState().state==="none")));var sT=require("@vkontakte/videoplayer-shared/es2018"),nT=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return(0,sT.assertNonNullable)(e,`Wrong container or containerId {${s.container}}`),e};var Wo=require("@vkontakte/videoplayer-shared/es2018"),oT=(s,e,t,i)=>{s!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&(t==null?void 0:t.getValue().length)===0?t.pipe((0,Wo.filter)(r=>r.length>0),(0,Wo.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(s)};var uT=G(mi(),1);var Jr=require("@vkontakte/videoplayer-shared/es2018");var cT=()=>{let s="mediaCapabilities"in(0,Jr.getWindow)().navigator?lL:dL,e=ir(async()=>{let t=await Promise.all((0,uT.default)(pL).map(async([r,a])=>({codec:r,supported:await s(a)}))),i=[j.browser.current,...t.map(r=>JSON.stringify(r))].slice(0,16);return Jr.devNull.push("core",{key:"videoplayer_decoding_info",strings:i}),t});return()=>rr(e)},lL=async s=>{if(!s)return Promise.resolve({supported:!1});let e={["channels"in s?"audio":"video"]:s};return await(0,Jr.getWindow)().navigator.mediaCapabilities.decodingInfo({type:"media-source",...e})},dL=s=>{var i;if(!s)return Promise.resolve({supported:!1});let e=(0,Jr.getWindow)().document,t="channels"in s?e.createElement("audio"):e.createElement("video");return Promise.resolve({supported:t.canPlayType((i=s==null?void 0:s.contentType)!=null?i:"")==="probably"})},pL={H264:{contentType:'video/mp4; codecs="avc1.4D400C"',width:720,height:720,bitrate:2886,framerate:30},H265:{contentType:'video/mp4; codecs="hvc1.1.6.L123.B0"',width:720,height:720,bitrate:2886,framerate:30},VP8:{contentType:'video/webm; codecs="vp8"',width:720,height:720,bitrate:2886,framerate:30},VP9:{contentType:'video/webm; codecs="vp09.00.10.08"',width:720,height:720,bitrate:2886,framerate:30},AV1:{contentType:'video/mp4; codecs="av01.0.01M.08"',width:720,height:720,bitrate:2886,framerate:30},OPUS:{contentType:'audio/ogg; codecs="opus"',channels:"2",bitrate:128e3},AAC_LC:{contentType:'audio/mp4; codecs="mp4a.40.2"',channels:"2",bitrate:128e3},AC3:{contentType:'audio/mp4; codecs="ac-3"',channels:"6",bitrate:128e3},EAC3:{contentType:'audio/mp4; codecs="ec-3"',channels:"6",bitrate:128e3},AAC_HE_V1:{contentType:'audio/mp4; codecs="mp4a.40.5"',channels:"2",bitrate:128e3},AAC_HE_V2:{contentType:'audio/mp4; codecs="mp4a.40.29"',channels:"2",bitrate:128e3},AAC_xHE:{contentType:'audio/mp4; codecs="mp4a.40.42"',channels:"2",bitrate:128e3}};var Os=class{constructor(e={},t=f.TracerFactory.createRootTracer(!1),i){this.subscription=new f.Subscription;this.logger=new f.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new f.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new f.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new ae("stopped"),seekState:new ae({state:"none"}),volume:new ae({volume:1,muted:!1}),videoTrack:new ae(void 0),videoStream:new ae(void 0),audioStream:new ae(void 0),autoVideoTrackSwitching:new ae(!0),autoVideoTrackLimits:new ae({}),isLooped:new ae(!1),isLowLatency:new ae(!1),playbackRate:new ae(1),externalTextTracks:new ae([]),internalTextTracks:new ae([]),currentTextTrack:new ae(void 0),textTrackCuesSettings:new ae({}),cameraOrientation:new ae({x:0,y:0})};this.info={playbackState$:new f.ValueSubject(void 0),position$:new f.ValueSubject(0),duration$:new f.ValueSubject(1/0),muted$:new f.ValueSubject(!1),volume$:new f.ValueSubject(1),availableVideoStreams$:new f.ValueSubject([]),currentVideoStream$:new f.ValueSubject(void 0),availableVideoTracks$:new f.ValueSubject([]),availableQualities$:new f.ValueSubject([]),availableQualitiesFps$:new f.ValueSubject({}),currentQuality$:new f.ValueSubject(void 0),isAutoQualityEnabled$:new f.ValueSubject(!0),autoQualityLimitingAvailable$:new f.ValueSubject(!1),autoQualityLimits$:new f.ValueSubject({}),predefinedQualityLimitType$:new f.ValueSubject("unknown"),availableAudioStreams$:new f.ValueSubject([]),currentAudioStream$:new f.ValueSubject(void 0),availableAudioTracks$:new f.ValueSubject([]),isAudioAvailable$:new f.ValueSubject(!0),currentPlaybackRate$:new f.ValueSubject(1),currentBuffer$:new f.ValueSubject({start:0,end:0}),currentNativeBuffer$:new f.ValueSubject({start:0,end:0}),isBuffering$:new f.ValueSubject(!0),isStalled$:new f.ValueSubject(!1),isEnded$:new f.ValueSubject(!1),isLooped$:new f.ValueSubject(!1),isLive$:new f.ValueSubject(void 0),isLiveEnded$:new f.ValueSubject(null),canPlayLiveTailBuffer$:new f.ValueSubject(!1),canChangePlaybackSpeed$:new f.ValueSubject(void 0),atLiveEdge$:new f.ValueSubject(void 0),atLiveDurationEdge$:new f.ValueSubject(void 0),liveTime$:new f.ValueSubject(void 0),liveBufferTime$:new f.ValueSubject(void 0),liveLatency$:new f.ValueSubject(void 0),currentFormat$:new f.ValueSubject(void 0),availableTextTracks$:new f.ValueSubject([]),currentTextTrack$:new f.ValueSubject(void 0),throughputEstimation$:new f.ValueSubject(void 0),rttEstimation$:new f.ValueSubject(void 0),videoBitrate$:new f.ValueSubject(void 0),hostname$:new f.ValueSubject(void 0),httpConnectionType$:new f.ValueSubject(void 0),httpConnectionReused$:new f.ValueSubject(void 0),httpConnectionMetrics$:new f.ValueSubject(void 0),httpDownloadMetrics$:new f.ValueSubject(void 0),surface$:new f.ValueSubject("none"),chromecastState$:new f.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new f.ValueSubject(void 0),intrinsicVideoSize$:new f.ValueSubject(void 0),availableSources$:new f.ValueSubject(void 0),is3DVideo$:new f.ValueSubject(!1),currentVideoSegmentLength$:new f.ValueSubject(0),currentAudioSegmentLength$:new f.ValueSubject(0)};this.events={inited$:new f.Subject,ready$:new f.Subject,started$:new f.Subject,playing$:new f.Subject,paused$:new f.Subject,stopped$:new f.Subject,willReady$:new f.Subject,willStart$:new f.Subject,willResume$:new f.Subject,willPause$:new f.Subject,willStop$:new f.Subject,willDestruct$:new f.Subject,watchCoverageRecord$:new f.Subject,watchCoverageLive$:new f.Subject,managedError$:new f.Subject,fatalError$:new f.Subject,fetcherRecoverableError$:new f.Subject,ended$:new f.Subject,looped$:new f.Subject,seeked$:new f.Subject,willSeek$:new f.Subject,autoplaySoundProhibited$:new f.Subject,manifestRequested$:new f.Subject,firstBytesManifest$:new f.Subject,manifestReceived$:new f.Subject,firstBytesRequested$:new f.Subject,firstBytesReceived$:new f.Subject,firstBytes$:new f.Subject,loadedMetadata$:new f.Subject,firstFrame$:new f.Subject,canplay$:new f.Subject,log$:new f.Subject,fetcherError$:new f.Subject,severeStallOccured$:new f.Subject};this.experimental={element$:new f.ValueSubject(void 0),enableDebugTelemetry$:new f.ValueSubject(!1),dumpTelemetry:av,getCurrentTime$:new f.ValueSubject(null)};this.initLogs(),this.tuning=aT(e),this.tracer=t,this.tuning.suppressExceptionsInObservables&&((0,Kl.default)(this.info).forEach(a=>a.setSuppressErrors(!0)),(0,Kl.default)(this.events).forEach(a=>a.setSuppressErrors(!0)));let r={receiverApplicationId:this.tuning.chromecastReceiverId,isDisabled:this.tuning.disableChromecast,dependencies:{logger:this.logger}};if(this.chromecastInitializer=this.tuning.chromecastPresentationApi?new Gt(r):new dn(r),this.throughputEstimator=new rT(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new f.InternalsExposure("core",(0,f.getPlayerId)(i==null?void 0:i.playerId)),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),this.devNullLog=i==null?void 0:i.onDevNullLog,f.devNull.create("core"),Proxy&&Reflect)return new Proxy(this,{get:(a,n,o)=>{let u=Reflect.get(a,n,o);return typeof u!="function"?u:(...c)=>{try{return u.apply(a,c)}catch(l){let d=c.map(m=>JSON.stringify(m,(b,S)=>{let v=typeof S;return(0,lT.default)(["number","string","boolean"],v)?S:S===null?null:`<${v}>`})),p=`Player.${String(n)}`,h=`Exception calling ${p} (${d.join(", ")})`;throw this.events.fatalError$.next({id:p,category:f.ErrorCategory.WTF,message:h,thrown:l}),l}}}})}initVideo(e){var a;this.config=e,(a=this.internalsExposure)==null||a.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{var u,c,l;let{container:n,...o}=e;this.tracer.log("initVideo",(0,f.flattenObject)(o)),this.domContainer=nT(e),this.chromecastInitializer.contentId=(u=e.meta)==null?void 0:u.videoId,this.providerContainer=new _s({sources:e.sources,meta:(c=e.meta)!=null?c:{},failoverHosts:(l=e.failoverHosts)!=null?l:[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0),this.devNullLog&&this.tuning.devNullLogEnabled?(f.devNull.subscribe("core",this.devNullLog),this.tuning.collectingDecodingInfoEnabled&&(this.collectDecodingInfoDestroyCb=cT())):f.devNull.destroy("core")},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?j.isInited$.pipe((0,f.filter)(n=>!!n),(0,f.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,f.fromEvent)(document,"visibilitychange").pipe((0,f.once)()).subscribe(r)):r(),this}destroy(){var e,t,i;this.tracer.log("destroy"),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),(e=this.providerContainer)==null||e.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),(t=this.internalsExposure)==null||t.destroy(),f.devNull.destroy("core"),(i=this.collectDecodingInfoDestroyCb)==null||i.call(this)}waitInit(e){this.playerInited.getValue()?e():this.subscription.add(this.playerInited.pipe((0,f.filter)(t=>!!t),(0,f.once)()).subscribe(e))}prepare(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")}),this}play(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")}),this}pause(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")}),this}stop(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log("stop",{currentPlayBackState:e.getState()}),e.getState()!=="stopped"&&e.startTransitionTo("stopped")}),this}seekTime(e,t=!0){return this.waitInit(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),a=e;e>=i&&!r&&(a=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,time:e,calculatedTime:a,forcePrecise:t}),Number.isFinite(a)&&(this.events.willSeek$.next({from:this.getExactTime(),to:a}),this.desiredState.seekState.setState({state:"requested",position:a*1e3,forcePrecise:t}))}),this}seekPercent(e){return this.waitInit(()=>{let t=this.info.duration$.getValue();this.tracer.log("seekPercent",{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)}),this}setVolume(e,t){return this.waitInit(()=>{var o;let i=this.desiredState.volume,r=i.getTransition(),a=(o=r==null?void 0:r.to.muted)!=null?o:this.info.muted$.getValue(),n=t!=null?t:this.tuning.isAudioDisabled||a;this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"&&!(this.chromecastInitializer instanceof Gt)?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})}),this}setMuted(e,t=!1){return this.waitInit(()=>{var o;let i=this.desiredState.volume,r=this.tuning.isAudioDisabled&&!t||e,a=i.getTransition(),n=(o=a==null?void 0:a.to.volume)!=null?o:this.info.volume$.getValue();this.tracer.log("setMuted",{isMuted:e,nextMuted:r,volume:n,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"&&!(this.chromecastInitializer instanceof Gt)?this.chromecastInitializer.setMuted(r):i.startTransitionTo({volume:n,muted:r})}),this}setVideoStream(e){return this.waitInit(()=>{this.desiredState.videoStream.startTransitionTo(e)}),this}setAudioStream(e){return this.waitInit(()=>{this.desiredState.audioStream.startTransitionTo(e)}),this}setQuality(e){return this.waitInit(()=>{(0,f.assertNonNullable)(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.tracer.log("setQuality",{isDelayed:t.length===0,quality:e}),this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe((0,f.filter)(i=>i.length>0),(0,f.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)}),this}setAutoQuality(e){return this.waitInit(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)}),this}setAutoQualityLimits(e){return this.waitInit(()=>{this.tracer.log("setAutoQualityLimits",(0,f.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)}),this}setPredefinedQualityLimits(e){return this.waitInit(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection,r;switch(e){case"high_quality":r={min:t,max:void 0};break;case"traffic_saving":r={max:i,min:void 0};break;default:r={max:void 0,min:void 0}}this.setAutoQualityLimits(r)}),this}setPlaybackRate(e){return this.waitInit(()=>{this.tracer.log("setPlaybackRate",{playbackRate:e}),this.desiredState.playbackRate.startTransitionTo(e)}),this}setExternalTextTracks(e){return this.waitInit(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,f.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))}),this}selectTextTrack(e){return this.waitInit(()=>{var t;oT(e,this.desiredState.currentTextTrack,(t=this.providerContainer)==null?void 0:t.providerOutput.availableTextTracks$,i=>i.id===e),this.tracer.log("selectTextTrack",{textTrackId:e})}),this}setTextTrackCueSettings(e){return this.waitInit(()=>{this.tracer.log("setTextTrackCueSettings",{...e}),this.desiredState.textTrackCuesSettings.startTransitionTo(e)}),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),i=this.desiredState.isLowLatency.getState();return!t||i===e?this:(this.tracer.log("live switch to low latency "+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.waitInit(()=>{this.tracer.log("setLooped",{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e)}),this}toggleChromecast(){this.tracer.log("toggleChromecast"),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.waitInit(()=>{let i=this.getScene3D();this.tracer.log("startCameraManualRotation",{isScene3DAvailable:!!i,mx:e,my:t}),i&&i.startCameraManualRotation(e,t)}),this}stopCameraManualRotation(e=!1){return this.waitInit(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)}),this}moveCameraFocusPX(e,t){return this.waitInit(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let r=i.getCameraRotation(),a=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+a.x,y:r.y+a.y})}}),this}holdCamera(){return this.waitInit(()=>{let e=this.getScene3D();e&&e.holdCamera()}),this}releaseCamera(){return this.waitInit(()=>{let e=this.getScene3D();e&&e.releaseCamera()}),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,f.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,f.isNonNullable)(i)?i/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){var t,i;let e=(t=this.providerContainer)==null?void 0:t.current$.getValue();if((i=e==null?void 0:e.provider)!=null&&i.scene3D)return e.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((i,{width:r})=>i||r||0,0),height:e.reduce((i,{height:r})=>i||r||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add((0,f.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,f.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,f.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(sv(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,f.filter)(({from:e})=>e==="stopped"),(0,f.once)()).subscribe(()=>{this.initedAt=(0,f.now)(),this.events.inited$.next()})).add(this.desiredState.playbackState.stateChangeEnded$.subscribe(e=>{switch(e.to){case"ready":this.events.ready$.next();break;case"playing":this.isPlaybackStarted||this.events.started$.next(),this.isPlaybackStarted=!0,this.events.playing$.next();break;case"paused":this.events.paused$.next();break;case"stopped":this.events.stopped$.next()}})).add(this.desiredState.playbackState.stateChangeStarted$.subscribe(e=>{switch(e.to){case"ready":this.events.willReady$.next();break;case"paused":this.events.willPause$.next();break;case"playing":this.isPlaybackStarted?this.events.willResume$.next():this.events.willStart$.next();break;case"stopped":this.events.willStop$.next();break;default:}}))}initProviderContainerSubscription(e){this.subscription.add(e.providerOutput.willSeekEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("willSeekEvent",(0,f.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:f.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,f.once)()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let n=this.desiredState.seekState.getState();this.tracer.log("seekedEvent",(0,f.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,f.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,f.map)(n=>n.destination),(0,f.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(e.providerOutput.availableVideoTracks$.subscribe(this.info.availableVideoTracks$)).add((0,f.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,f.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,c)=>(0,f.isInvariantQuality)(u)?1:(0,f.isInvariantQuality)(c)?-1:(0,f.isHigher)(c,u)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(n=>{let o={};for(let u of n)u.fps&&(o[u.quality]=u.fps);this.info.availableQualitiesFps$.next(o)})).add(e.providerOutput.availableAudioStreams$.subscribe(this.info.availableAudioStreams$)).add(e.providerOutput.currentVideoStream$.subscribe(this.info.currentVideoStream$)).add(e.providerOutput.currentAudioStream$.subscribe(this.info.currentAudioStream$)).add(e.providerOutput.availableAudioTracks$.subscribe(this.info.availableAudioTracks$)).add(e.providerOutput.isAudioAvailable$.pipe((0,f.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,f.filter)(n=>(0,f.isNonNullable)(n))).subscribe(n=>{this.info.currentQuality$.next(n==null?void 0:n.quality),this.info.videoBitrate$.next(n==null?void 0:n.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe((0,f.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,f.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,f.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,f.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,f.filterChanged)()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.httpConnectionMetrics$.pipe((0,f.filterChanged)()).subscribe(this.info.httpConnectionMetrics$)).add(e.providerOutput.httpDownloadMetrics$.pipe((0,f.filterChanged)()).subscribe(this.info.httpDownloadMetrics$)).add(e.providerOutput.currentTextTrack$.subscribe(this.info.currentTextTrack$)).add(e.providerOutput.availableTextTracks$.subscribe(this.info.availableTextTracks$)).add(e.providerOutput.autoVideoTrackLimitingAvailable$.subscribe(this.info.autoQualityLimitingAvailable$)).add(e.providerOutput.autoVideoTrackLimits$.subscribe(n=>{this.desiredState.autoVideoTrackLimits.setState(n!=null?n:{})})).add(e.providerOutput.currentBuffer$.pipe((0,f.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.currentNativeBuffer$.pipe((0,f.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentNativeBuffer$)).add(e.providerOutput.duration$.subscribe(this.info.duration$)).add(e.providerOutput.isBuffering$.subscribe(this.info.isBuffering$)).add(e.providerOutput.isLive$.subscribe(this.info.isLive$)).add(e.providerOutput.isLiveEnded$.pipe((0,f.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canPlayLiveTailBuffer$.subscribe(this.info.canPlayLiveTailBuffer$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.pipe((0,f.filterChanged)()).subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,f.combine)({hasLiveOffsetByPaused:(0,f.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,f.map)(n=>n.to),(0,f.filterChanged)(),(0,f.map)(n=>n==="paused")),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:n,isLowLatency:o})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),n){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(o));return}this.hasLiveOffsetByPaused.next(!1)})).add((0,f.combine)({atLiveEdge:(0,f.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Yl({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,f.map)(({isLive:n,position:o,isLowLatency:u})=>{let c=this.getActiveLiveDelay(u);return n&&Math.abs(o)<c/1e3}),(0,f.filterChanged)(),(0,f.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,f.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,f.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,f.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,f.filterChanged)(),(0,f.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,f.map)(n=>n.muted),(0,f.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,f.map)(n=>n.volume),(0,f.filterChanged)()).subscribe(this.info.volume$)).add(Yl({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{this.info.isEnded$.getValue()&&this.tuning.changePlaybackStateToPausedWhenEnded&&this.play()})).add((0,f.merge)(e.providerOutput.endedEvent$.pipe((0,f.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,f.mapTo)(!1))).pipe((0,f.filterChanged)()).subscribe(this.info.isEnded$)).add(e.providerOutput.endedEvent$.subscribe(this.events.ended$)).add(e.providerOutput.loopedEvent$.subscribe(this.events.looped$)).add(e.providerError$.subscribe(this.events.managedError$)).add(e.providerOutput.fetcherRecoverableError$.subscribe(this.events.fetcherRecoverableError$)).add(e.providerOutput.fetcherError$.subscribe(this.events.fatalError$)).add(e.volumeMultiplierError$.subscribe(this.events.managedError$)).add(e.noAvailableProvidersError$.pipe((0,f.map)(n=>({id:n?`No${n}`:"NoProviders",category:f.ErrorCategory.VIDEO_PIPELINE,message:n?`${n} was forced but failed or not available`:"No suitable providers or all providers failed"}))).subscribe(this.events.fatalError$)).add(e.providerOutput.element$.subscribe(this.experimental.element$)).add(e.providerOutput.getCurrentTime$.subscribe(this.experimental.getCurrentTime$)).add(e.providerOutput.manifestRequested$.pipe((0,f.once)()).subscribe(this.events.manifestRequested$)).add(e.providerOutput.firstBytesManifest$.pipe((0,f.once)()).subscribe(this.events.firstBytesManifest$)).add(e.providerOutput.manifestReceived$.pipe((0,f.once)()).subscribe(this.events.manifestReceived$)).add(e.providerOutput.firstBytesRequested$.pipe((0,f.once)()).subscribe(this.events.firstBytesRequested$)).add(e.providerOutput.firstBytesReceived$.pipe((0,f.once)()).subscribe(this.events.firstBytesReceived$)).add(e.providerOutput.firstBytesEvent$.pipe((0,f.once)(),(0,f.map)(n=>n!=null?n:(0,f.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,f.once)(),(0,f.map)(()=>(0,f.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,f.once)(),(0,f.map)(()=>(0,f.now)()-this.initedAt)).subscribe(this.events.canplay$)).add(this.throughputEstimator.throughput$.subscribe(this.info.throughputEstimation$)).add(this.throughputEstimator.rtt$.subscribe(this.info.rttEstimation$)).add(e.providerOutput.availableSources$.subscribe(this.info.availableSources$));let t=new f.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new f.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,f.filter)(({to:n})=>n==="playing"),(0,f.once)()).subscribe(()=>i.next(!1)));let r=0,a=(0,f.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,f.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,f.filterChanged)());this.subscription.add(a.subscribe(n=>{n?r=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(r),this.info.isStalled$.next(!1))})),this.subscription.add((0,f.merge)(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let n=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:n==null?void 0:n.videoWidth,height:n==null?void 0:n.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(n=>{var u,c;let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:(u=n==null?void 0:n.size)==null?void 0:u.width,height:(c=n==null?void 0:n.size)==null?void 0:c.height},{width:o==null?void 0:o.videoWidth,height:o==null?void 0:o.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add((0,f.merge)(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let n=e.providerOutput.inPiP$.getValue(),o=e.providerOutput.inFullscreen$.getValue(),u=e.providerOutput.element$.getValue(),c=e.providerOutput.elementVisible$.getValue(),l=this.chromecastInitializer.castState$.getValue(),d;l==="CONNECTED"?d="second_screen":u?c?n?d="pip":o?d="fullscreen":d="inline":d="invisible":d="none",this.info.surface$.getValue()!==d&&this.info.surface$.next(d)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,f.map)(e=>e==null?void 0:e.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new f.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,f.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,f.filter)(i=>i.length>0),(0,f.once)()).subscribe(i=>{this.setStartingVideoTrack(i)}))}))}setStartingVideoTrack(e){var r;let t;this.wasSetStartedQuality=!0;let i=(r=this.explicitInitialQuality)!=null?r:this.info.currentQuality$.getValue();i&&(t=e.find(({quality:a})=>a===i),t||this.setAutoQuality(!0)),t||(t=Ut(e,{container:this.domContainer.getBoundingClientRect(),panelSize:this.config.panelSize,estimatedThroughput:this.throughputEstimator.throughput$.getValue(),tuning:this.tuning.autoTrackSelection,limits:this.desiredState.autoVideoTrackLimits.getState(),playbackRate:this.info.currentPlaybackRate$.getValue(),forwardBufferHealth:0,abrLogger:this.abrLogger})),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initLogs(){this.subscription.add((0,f.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,f.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,f.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,f.map)(e=>({component:"desiredState",message:`[${e.entity} change] ${e.type}: ${JSON.stringify(e.transition)}`}))).subscribe(this.logger.log)),this.subscription.add(this.logger.log$.subscribe(this.events.log$))}initDebugTelemetry(){var t;let e=(t=this.providerContainer)==null?void 0:t.providerOutput;(0,f.assertNonNullable)(this.providerContainer),(0,f.assertNonNullable)(e),rv(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>iv(i)),this.providerContainer.current$.subscribe(({type:i})=>Va("provider",i)),e.duration$.subscribe(i=>Va("duration",i)),e.availableVideoTracks$.pipe((0,f.filter)(i=>!!i.length),(0,f.once)()).subscribe(i=>Va("tracks",i)),this.events.fatalError$.subscribe(new ze("fatalError")),this.events.managedError$.subscribe(new ze("managedError")),e.position$.subscribe(new ze("position")),e.currentVideoTrack$.pipe((0,f.map)(i=>i==null?void 0:i.quality)).subscribe(new ze("quality")),this.info.currentBuffer$.subscribe(new ze("buffer")),e.isBuffering$.subscribe(new ze("isBuffering"))].forEach(i=>this.subscription.add(i)),Va("codecs",j.video.supportedCodecs)}initTracerSubscription(){let e=(0,f.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,f.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.info.playbackState$.subscribe(e("playbackState"))).add(this.info.isLooped$.subscribe(e("isLooped"))).add(this.info.currentPlaybackRate$.pipe((0,f.filterChanged)()).subscribe(e("currentPlaybackRate"))).add(this.info.isAutoQualityEnabled$.subscribe(e("isAutoQualityEnabled"))).add(this.info.autoQualityLimits$.subscribe(e("autoQualityLimits"))).add(this.info.currentFormat$.subscribe(e("currentFormat"))).add(this.info.availableQualities$.subscribe(e("availableQualities"))).add(this.info.availableQualitiesFps$.subscribe(e("availableQualitiesFps"))).add(this.info.availableAudioTracks$.subscribe(e("availableAudioTracks"))).add(this.info.isAudioAvailable$.subscribe(e("isAudioAvailable"))).add((0,f.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,f.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,f.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,f.filter)(i=>i>0),(0,f.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,f.filter)(i=>i>0),(0,f.filterChanged)()).subscribe(e("currentAudioSegmentLength"))).add(this.info.hostname$.subscribe(e("hostname"))).add(this.info.currentTextTrack$.subscribe(e("currentTextTrack"))).add(this.info.availableTextTracks$.subscribe(e("availableTextTracks"))).add(this.info.autoQualityLimitingAvailable$.subscribe(e("autoQualityLimitingAvailable"))).add((0,f.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,f.filter)(i=>i.end>0),(0,f.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,f.filterChanged)())}).pipe((0,f.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,f.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,f.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,f.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,f.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,f.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,f.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,f.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,f.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,f.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,f.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,f.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,f.filterChanged)(),(0,f.filter)(i=>i===!0)).subscribe(e("is3DVideo"))).add(this.info.surface$.subscribe(e("surface"))).add(this.events.ended$.subscribe(e("ended"))).add(this.events.looped$.subscribe(e("looped"))).add(this.events.managedError$.subscribe(t("managedError"))).add(this.events.fatalError$.subscribe(t("fatalError"))).add(this.events.firstBytes$.subscribe(e("firstBytes"))).add(this.events.firstFrame$.subscribe(e("firstFrame"))).add(this.events.canplay$.subscribe(e("canplay")))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e==null||e.release(),e=void 0},i=async()=>{t(),e=await window.navigator.wakeLock.request("screen").catch(r=>{r instanceof DOMException&&r.name==="NotAllowedError"||this.events.managedError$.next({id:"WakeLock",category:f.ErrorCategory.DOM,message:String(r)})})};this.subscription.add((0,f.merge)((0,f.fromEvent)(document,"visibilitychange"),(0,f.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",a=this.desiredState.playbackState.getState()==="playing",n=!!e&&!(e!=null&&e.released);r&&a?n||i():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let i=e.find(r=>r.quality===t);this.tracer.log("setVideoTrackIdByQuality",(0,f.flattenObject)({quality:t,availableTracks:(0,f.flattenObject)(e),track:(0,f.flattenObject)(i),isAutoQuality:!i})),i?this.desiredState.videoTrack.startTransitionTo(i):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!qa()}};var jt=require("@vkontakte/videoplayer-shared/es2018"),hL=`@vkontakte/videoplayer-core@${Xo}`;
130
+ ===== DASH_LIVE DEBUG END ====`),n){let t=e.reduce((e,{time:t,data:n,stack:r})=>{let i=Oi.default(n).map(([e,t])=>`${e}:${t}`).join(`,`);return e+=`${t}: ${i}${r?`: ${r}`:``};`,e},``);Z.devNull.push(`core`,{key:`vp_dash_live_debug`,strings:[t]})}};return e.add(this.providerError$.subscribe(e=>{e.id.startsWith(`ProviderHangup`)&&(B({m:`final.0`,e:e.id}),r())})).add(this.noAvailableProvidersError$.subscribe(()=>{B({m:`final.1`}),r()})),e.add(this.providerError$.subscribe(e=>{let r=this.current$.getValue().destination,i={error:e,currentDestination:r};if(r===`CHROMECAST`)this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider(`CHROMECAST`),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let a=e.category===Z.ErrorCategory.NETWORK,o=e.category===Z.ErrorCategory.FATAL,s=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),c=n<this.params.tuning.providerErrorLimit&&!o,l=this.videoCodecsIterator&&!this.videoCodecsIterator.isLast()&&this.params.tuning.dash.codecsPrioritizeEnabled,u=s&&!o&&(a&&t||!c);i={...i,isNetworkError:a,isFatalError:o,haveFailoverHost:s,tryFailover:u,canReinitProvider:c},c?(n++,this.reinitProvider()):u?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):l?this.switchToNextVideoCodec():(n=0,this.switchToNextProvider(r??`SCREEN`))}e.traceAsLog?this.tracer.log(`providerInfo`,Z.flattenObject(i)):this.tracer.error(`providerError`,Z.flattenObject(i))})),e}}var Q=require(`@vkontakte/videoplayer-shared/es2018`),md=5e3,hd=`one_video_throughput`,gd=`one_video_rtt`,_d=()=>{let{navigator:e}=Q.getWindow();if(e)return e.connection},vd=()=>{let e=_d()?.downlink;if(Q.isNonNullable(e)&&e!==10)return e*1e3},yd=()=>{let e=_d()?.rtt;if(Q.isNonNullable(e)&&e!==3e3)return e},bd=(e,t,n)=>{let r=n*8;return r/(r/e+t)};class xd{constructor(t){e(this,`throughput`,void 0),e(this,`rtt`,void 0),e(this,`subscription`,new Q.Subscription),e(this,`tuningConfig`,void 0),e(this,`concurrentDownloads`,new Set),e(this,`throughput$`,void 0),e(this,`rtt$`,void 0),e(this,`rttAdjustedThroughput$`,void 0),this.tuningConfig=t;let n=xd.load(hd)||(t.useBrowserEstimation?vd():void 0)||md,r=xd.load(gd)??(t.useBrowserEstimation?yd():void 0)??0;if(this.throughput$=new Q.ValueSubject(n),this.rtt$=new Q.ValueSubject(r),this.rttAdjustedThroughput$=new Q.ValueSubject(bd(n,r,t.rttPenaltyRequestSize)),this.throughput=tu.getSmoothedValue(n,-1,t),this.rtt=tu.getSmoothedValue(r,1,t),t.useBrowserEstimation){let e=()=>{let e=vd();e&&this.throughput.next(e);let t=yd();Q.isNonNullable(t)&&this.rtt.next(t)},t=_d();t&&`onchange`in t&&this.subscription.add(Q.fromEvent(t,`change`).subscribe(e)),e()}this.subscription.add(this.throughput.smoothed$.subscribe(e=>{Q.safeStorage.set(hd,e.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(e=>{Q.safeStorage.set(gd,e.toFixed(0))})),this.subscription.add(this.throughput.debounced$.pipe(Q.map(e=>Math.round(e))).subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add(Q.combine({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe(Q.map(({throughput:e,rtt:n})=>bd(e,n,t.rttPenaltyRequestSize)),Q.filter(e=>{let n=this.rttAdjustedThroughput$.getValue()||0;return Math.abs(e-n)/n>=t.changeThreshold})).subscribe(this.rttAdjustedThroughput$))}destroy(){this.concurrentDownloads.clear(),this.subscription.unsubscribe()}trackXHR(e){let t=0,n=Q.now(),r=new Q.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add(Q.fromEvent(e,`progress`).pipe(Q.once()).subscribe(e=>{t=e.loaded,n=Q.now()}));break;case 1:case 0:r.add(Q.fromEvent(e,`loadstart`).subscribe(()=>{t=0,n=Q.now()}));break}r.add(Q.fromEvent(e,`loadend`).subscribe(i=>{if(e.status===200){let e=i.loaded,r=Q.now(),a=e-t,o=r-n;this.addRawSpeed(a,o,1)}this.concurrentDownloads.delete(e),r.unsubscribe()}))}trackStream(e,t=!1){let n=e.getReader();if(!n){e.cancel(`Could not get reader`);return}let r=0,i=Q.now(),a=0,o=Q.now(),s=t=>{this.concurrentDownloads.delete(e),n.releaseLock(),e.cancel(`Throughput Estimator error: ${t}`).catch(()=>{})},c=async({done:l,value:u})=>{if(l)!t&&this.addRawSpeed(r,Q.now()-i,1),this.concurrentDownloads.delete(e);else if(u){if(t){let e=Q.now();if(e-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||e-i>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let e=o-i;e&&this.addRawSpeed(a,e,1,t),a=u.byteLength,i=Q.now()}else a+=u.byteLength;o=Q.now()}else r+=u.byteLength,a+=u.byteLength,a>=this.tuningConfig.streamMinSampleSize&&Q.now()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(a,Q.now()-o,this.concurrentDownloads.size),a=0,o=Q.now());await n?.read().then(c,s)}};this.concurrentDownloads.add(e),n?.read().then(c,s)}addRawSpeed(e,t,n=1,r=!1){if(xd.sanityCheck(e,t,r)){let r=e*8/t;this.throughput.next(r*n)}}addRawThroughput(e){this.throughput.next(e)}addRawRtt(e){this.rtt.next(e)}static sanityCheck(e,t,n=!1){let r=e*8/t;return!(!r||!isFinite(r)||r>1e6||r<30||n&&e<1e4||!n&&e<10*1024||!n&&t<=20)}static load(e){let t=Q.safeStorage.get(e);if(Q.isNonNullable(t))return parseInt(t,10)??void 0}}var Sd=xd,Cd=require(`@vkontakte/videoplayer-shared/es2018`),wd={keepVideoElement:!1,clearVideoElementInnerHTML:!1,throughputEstimator:{type:`EmaAndMa`,emaAlphaSlow:.2,emaAlphaFast:.7,emaAlpha:.45,basisTrendChangeCount:10,changeThreshold:.05,useBrowserEstimation:!0,rttPenaltyRequestSize:1*1024*1024,streamMinSampleSize:10*1024,streamMinSampleTime:300,deviationDepth:20,deviationFactor:.5,lowLatency:{continuesByteSequenceInterval:50,maxLastEvaluationTimeout:300}},autoTrackSelection:{maxBitrateFactorAtEmptyBuffer:4,bitrateFactorAtEmptyBuffer:2.8,minBitrateFactorAtEmptyBuffer:1.5,bitrateAudioFactorAtEmptyBuffer:10,maxBitrateFactorAtFullBuffer:3,bitrateFactorAtFullBuffer:2,minBitrateFactorAtFullBuffer:1,bitrateAudioFactorAtFullBuffer:7,minVideoAudioRatio:5,minAvailableThroughputAudioRatio:5,usePixelRatio:!0,pixelRatioMultiplier:void 0,pixelRatioLogBase:3,pixelRatioLogCoefficients:[1,0,1],limitByContainer:!0,maxContainerSizeFactor:2,containerSizeFactor:1.3,minContainerSizeFactor:1,lazyQualitySwitch:!0,minBufferToSwitchUp:.4,considerPlaybackRate:!1,trackCooldownIncreaseQuality:15e3,trackCooldownDecreaseQuality:3e3,backgroundVideoQualityLimit:Cd.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:Cd.VideoQuality.Q_720P,trafficSavingLimit:Cd.VideoQuality.Q_480P},stallsManager:{enabled:!1,ignoreDynamicAbrForShortVideo:!1,stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!0,stallsMetricsHistoryLength:20,maxPossibleStallDuration:3e4,minTvtToBeCounted:120,maxTvtToBeCounted:10800,significantTvt:600,targetStallsDurationPerTvt:1,deviationStallsDurationPerTvt:.5,criticalStallsDurationPerTvt:6,abrAdjustingSpeed:.1,emaAlpha:.6,useTotalStallsDurationPerTvt:!0,useAverageStallsDurationPerTvt:!0,useEmaStallsDurationPerTvt:!0},droppedFramesChecker:{enabled:!1,percentLimit:.1,checkTime:1e3,countLimit:3,tickCountAfterQualityChange:5,qualityUpWaitingTime:5e3,minQualityBanLimit:Cd.VideoQuality.Q_480P},dash:{forwardBufferTarget:6e4,forwardBufferTargetAuto:6e4,forwardBufferTargetManual:5*6e4,forwardBufferTargetPreload:5e3,seekBiasInTheEnd:2e3,maxSegmentDurationLeftToSelectNextSegment:3e3,minSafeBufferThreshold:.5,bufferPruningSafeZone:1e3,segmentRequestSize:1*1024*1024,maxVirtualBufferSize:250*1024*1024,virtualBufferPruneSize:100*1024*1024,representationSwitchForwardBufferGap:15e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useNewRepresentationSwitch:!1,useDelayedRepresentationSwitch:!1,useSmartRepresentationSwitch:!1,useFetchPriorityHints:!0,useAbortMSEFix:!1,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,vktvAbrThrottle:0,timeupdateEventTickThrottle:300,fetcherBufferOptimisation:!0,codecsPrioritizeEnabled:!1,usePersistentGaps:!1,abrThrottle:0,useVideoElementWaitingCurrentTimeReassign:!0,stallWatchdogInterval:100,liveUpdateInterval:1e3,liveStallReinitInterval:3e3,ignoreNetworkErrorsOnLoadInit:!1,bufferTolerance:100,actionTimeShiftFromSegment:500,tickMaintainInterval:1e3,minSafeBufferToPlay:1e4,useBufferHoldingOnlyOnStall:!0,useNewStallExitPolicy:!1,videoStreamRepresentaionsFilter:[]},dashCmafLive:{externalStopControl:!1,keepSilentStallWatchdogWhenNotActive:!1,maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,catchupLiveForMutedInactiveTab:!0,lowLatency:{maxTargetOffset:3e3,maxTargetOffsetDeviation:250,playbackCatchupSpeedup:.05,isActiveOnDefault:!1,bufferEstimator:{emaAlpha:.45,changeThreshold:.05,deviationDepth:20,deviationFactor:.5,extremumInterval:5}}},live:{minBuffer:3e3,minBufferSegments:3,lowLatencyMinBuffer:1e3,lowLatencyMinBufferSegments:1,isLiveCatchUpMode:!1,lowLatencyActiveLiveDelay:3e3,activeLiveDelay:5e3,maxPausedTime:5e3},downloadBackoff:{bufferThreshold:100,start:100,factor:2,max:3*1e3,random:.1},enableWakeLock:!0,enableTelemetryAtStart:!1,forceFormat:void 0,formatsToAvoid:[],disableChromecast:!1,chromecastReceiverId:`07A4434E`,chromecastPresentationApi:!1,useWebmBigRequest:!1,webmCodec:`vp9`,androidPreferredFormat:`dash`,iosPreferredFormat:`hls`,preferCMAF:!1,preferWebRTC:!1,preferMultiStream:!1,preferHDR:!1,bigRequestMinInitSize:50*1024,bigRequestMinDataSize:1*1024*1024,stripRangeHeader:!0,flushShortLoopedBuffers:!0,insufficientBufferRuleMargin:1e4,seekNearDurationBias:1,dashSeekInSegmentDurationThreshold:180*1e3,dashSeekInSegmentAlwaysSeekDelta:1e4,endGapTolerance:300,stallIgnoreThreshold:33,gapWatchdogInterval:50,requestQuick:!1,useHlsJs:!1,useNativeHLSTextTracks:!1,useNewSwitchTo:!1,useDashProviderVirtual:!1,useDashProviderVirtualMobile:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,isAudioDisabled:!1,autoplayOnlyInActiveTab:!0,dynamicImportTimeout:5e3,maxPlaybackTransitionInterval:2e4,providerErrorLimit:3,manifestRetryInterval:300,manifestRetryMaxInterval:1e4,manifestRetryMaxCount:10,audioVideoSyncRate:20,webrtc:{connectionRetryMaxNumber:3},spherical:{enabled:!1,fov:{x:135,y:76},rotationSpeed:45,maxYawAngle:175,rotationSpeedCorrection:10,degreeToPixelCorrection:5,speedFadeTime:2e3,speedFadeThreshold:50},useVolumeMultiplier:!1,ignoreAudioRendererError:!1,useEnableSubtitlesParam:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1,changePlaybackStateToPausedWhenEnded:!1,suppressExceptionsInObservables:!0,devNullLogEnabled:!1,collectingDecodingInfoEnabled:!1,sendDashLiveDebug:!1,logDashLiveDebug:!1},Td=e=>Cd.fillWithDefault(e,wd),$=require(`@vkontakte/videoplayer-shared/es2018`),Ed=require(`@vkontakte/videoplayer-shared/es2018`),Dd=({seekState:e,position$:t})=>Ed.merge(e.stateChangeEnded$.pipe(Ed.map(({to:e})=>e.state===`none`?void 0:(e.position??NaN)/1e3),Ed.filter(Ed.isNonNullable)),t.pipe(Ed.filter(()=>e.getState().state===`none`))),Od=require(`@vkontakte/videoplayer-shared/es2018`),kd=e=>{let t=typeof e.container==`string`?document.getElementById(e.container):e.container;return Od.assertNonNullable(t,`Wrong container or containerId {${e.container}}`),t},Ad=require(`@vkontakte/videoplayer-shared/es2018`),jd=(e,t,n,r)=>{e!==void 0&&t.getState()===void 0&&t.getPrevState()===void 0&&n?.getValue().length===0?n.pipe(Ad.filter(e=>e.length>0),Ad.once()).subscribe(n=>{n.find(r)&&t.startTransitionTo(e)}):(e===void 0||n?.getValue().find(r))&&t.startTransitionTo(e)},Md=u(lt(),1),Nd=require(`@vkontakte/videoplayer-shared/es2018`),Pd=()=>{let e=`mediaCapabilities`in Nd.getWindow().navigator?Fd:Id,t=vc(async()=>{let t=await Promise.all(Md.default(Ld).map(async([t,n])=>({codec:t,supported:await e(n)}))),n=[N.browser.current,...t.map(e=>JSON.stringify(e))].slice(0,16);return Nd.devNull.push(`core`,{key:`videoplayer_decoding_info`,strings:n}),t});return()=>yc(t)},Fd=async e=>{if(!e)return Promise.resolve({supported:!1});let t={[`channels`in e?`audio`:`video`]:e};return await Nd.getWindow().navigator.mediaCapabilities.decodingInfo({type:`media-source`,...t})},Id=e=>{if(!e)return Promise.resolve({supported:!1});let t=Nd.getWindow().document,n=`channels`in e?t.createElement(`audio`):t.createElement(`video`);return Promise.resolve({supported:n.canPlayType(e?.contentType??``)===`probably`})},Ld={H264:{contentType:`video/mp4; codecs="avc1.4D400C"`,width:720,height:720,bitrate:2886,framerate:30},H265:{contentType:`video/mp4; codecs="hvc1.1.6.L123.B0"`,width:720,height:720,bitrate:2886,framerate:30},VP8:{contentType:`video/webm; codecs="vp8"`,width:720,height:720,bitrate:2886,framerate:30},VP9:{contentType:`video/webm; codecs="vp09.00.10.08"`,width:720,height:720,bitrate:2886,framerate:30},AV1:{contentType:`video/mp4; codecs="av01.0.01M.08"`,width:720,height:720,bitrate:2886,framerate:30},OPUS:{contentType:`audio/ogg; codecs="opus"`,channels:`2`,bitrate:128e3},AAC_LC:{contentType:`audio/mp4; codecs="mp4a.40.2"`,channels:`2`,bitrate:128e3},AC3:{contentType:`audio/mp4; codecs="ac-3"`,channels:`6`,bitrate:128e3},EAC3:{contentType:`audio/mp4; codecs="ec-3"`,channels:`6`,bitrate:128e3},AAC_HE_V1:{contentType:`audio/mp4; codecs="mp4a.40.5"`,channels:`2`,bitrate:128e3},AAC_HE_V2:{contentType:`audio/mp4; codecs="mp4a.40.29"`,channels:`2`,bitrate:128e3},AAC_xHE:{contentType:`audio/mp4; codecs="mp4a.40.42"`,channels:`2`,bitrate:128e3}};class Rd{constructor(t={},n=$.TracerFactory.createRootTracer(!1),r){e(this,`subscription`,new $.Subscription),e(this,`domContainer`,void 0),e(this,`providerContainer`,void 0),e(this,`chromecastInitializer`,void 0),e(this,`logger`,new $.Logger),e(this,`tracer`,void 0),e(this,`abrLogger`,this.logger.createComponentLog(`ABR`)),e(this,`config`,void 0),e(this,`tuning`,void 0),e(this,`throughputEstimator`,void 0),e(this,`internalsExposure`,null),e(this,`isPlaybackStarted`,!1),e(this,`initedAt`,void 0),e(this,`hasLiveOffsetByPaused`,new $.ValueSubject(!1)),e(this,`hasLiveOffsetByPausedTimer`,0),e(this,`playerInitRequest`,0),e(this,`playerInited`,new $.ValueSubject(!1)),e(this,`explicitInitialQuality`,void 0),e(this,`wasSetStartedQuality`,!1),e(this,`desiredState`,{playbackState:new P(`stopped`),seekState:new P({state:`none`}),volume:new P({volume:1,muted:!1}),videoTrack:new P(void 0),videoStream:new P(void 0),audioStream:new P(void 0),autoVideoTrackSwitching:new P(!0),autoVideoTrackLimits:new P({}),isLooped:new P(!1),isLowLatency:new P(!1),playbackRate:new P(1),externalTextTracks:new P([]),internalTextTracks:new P([]),currentTextTrack:new P(void 0),textTrackCuesSettings:new P({}),cameraOrientation:new P({x:0,y:0})}),e(this,`info`,{playbackState$:new $.ValueSubject(void 0),position$:new $.ValueSubject(0),duration$:new $.ValueSubject(1/0),muted$:new $.ValueSubject(!1),volume$:new $.ValueSubject(1),availableVideoStreams$:new $.ValueSubject([]),currentVideoStream$:new $.ValueSubject(void 0),availableVideoTracks$:new $.ValueSubject([]),availableQualities$:new $.ValueSubject([]),availableQualitiesFps$:new $.ValueSubject({}),currentQuality$:new $.ValueSubject(void 0),isAutoQualityEnabled$:new $.ValueSubject(!0),autoQualityLimitingAvailable$:new $.ValueSubject(!1),autoQualityLimits$:new $.ValueSubject({}),predefinedQualityLimitType$:new $.ValueSubject(`unknown`),availableAudioStreams$:new $.ValueSubject([]),currentAudioStream$:new $.ValueSubject(void 0),availableAudioTracks$:new $.ValueSubject([]),isAudioAvailable$:new $.ValueSubject(!0),currentPlaybackRate$:new $.ValueSubject(1),currentBuffer$:new $.ValueSubject({start:0,end:0}),currentNativeBuffer$:new $.ValueSubject({start:0,end:0}),isBuffering$:new $.ValueSubject(!0),isStalled$:new $.ValueSubject(!1),isEnded$:new $.ValueSubject(!1),isLooped$:new $.ValueSubject(!1),isLive$:new $.ValueSubject(void 0),isLiveEnded$:new $.ValueSubject(null),canPlayLiveTailBuffer$:new $.ValueSubject(!1),canChangePlaybackSpeed$:new $.ValueSubject(void 0),atLiveEdge$:new $.ValueSubject(void 0),atLiveDurationEdge$:new $.ValueSubject(void 0),liveTime$:new $.ValueSubject(void 0),liveBufferTime$:new $.ValueSubject(void 0),liveLatency$:new $.ValueSubject(void 0),currentFormat$:new $.ValueSubject(void 0),availableTextTracks$:new $.ValueSubject([]),currentTextTrack$:new $.ValueSubject(void 0),throughputEstimation$:new $.ValueSubject(void 0),rttEstimation$:new $.ValueSubject(void 0),videoBitrate$:new $.ValueSubject(void 0),hostname$:new $.ValueSubject(void 0),httpConnectionType$:new $.ValueSubject(void 0),httpConnectionReused$:new $.ValueSubject(void 0),httpConnectionMetrics$:new $.ValueSubject(void 0),httpDownloadMetrics$:new $.ValueSubject(void 0),surface$:new $.ValueSubject(`none`),chromecastState$:new $.ValueSubject(`NOT_AVAILABLE`),chromecastDeviceName$:new $.ValueSubject(void 0),intrinsicVideoSize$:new $.ValueSubject(void 0),availableSources$:new $.ValueSubject(void 0),is3DVideo$:new $.ValueSubject(!1),currentVideoSegmentLength$:new $.ValueSubject(0),currentAudioSegmentLength$:new $.ValueSubject(0)}),e(this,`events`,{inited$:new $.Subject,ready$:new $.Subject,started$:new $.Subject,playing$:new $.Subject,paused$:new $.Subject,stopped$:new $.Subject,willReady$:new $.Subject,willStart$:new $.Subject,willResume$:new $.Subject,willPause$:new $.Subject,willStop$:new $.Subject,willDestruct$:new $.Subject,watchCoverageRecord$:new $.Subject,watchCoverageLive$:new $.Subject,managedError$:new $.Subject,fatalError$:new $.Subject,fetcherRecoverableError$:new $.Subject,ended$:new $.Subject,looped$:new $.Subject,seeked$:new $.Subject,willSeek$:new $.Subject,autoplaySoundProhibited$:new $.Subject,manifestRequested$:new $.Subject,firstBytesManifest$:new $.Subject,manifestReceived$:new $.Subject,firstBytesRequested$:new $.Subject,firstBytesReceived$:new $.Subject,firstBytes$:new $.Subject,loadedMetadata$:new $.Subject,firstFrame$:new $.Subject,canplay$:new $.Subject,log$:new $.Subject,fetcherError$:new $.Subject,severeStallOccured$:new $.Subject}),e(this,`experimental`,{element$:new $.ValueSubject(void 0),enableDebugTelemetry$:new $.ValueSubject(!1),dumpTelemetry:Sa,getCurrentTime$:new $.ValueSubject(null)}),e(this,`devNullLog`,void 0),e(this,`collectDecodingInfoDestroyCb`,void 0),this.initLogs(),this.tuning=Td(t),this.tracer=n,this.tuning.suppressExceptionsInObservables&&(Er.default(this.info).forEach(e=>e.setSuppressErrors(!0)),Er.default(this.events).forEach(e=>e.setSuppressErrors(!0)));let i={receiverApplicationId:this.tuning.chromecastReceiverId,isDisabled:this.tuning.disableChromecast,dependencies:{logger:this.logger}};if(this.chromecastInitializer=this.tuning.chromecastPresentationApi?new Ti(i):new kr(i),this.throughputEstimator=new Sd(this.tuning.throughputEstimator),t.exposeInternalsToGlobal&&(this.internalsExposure=new $.InternalsExposure(`core`,$.getPlayerId(r?.playerId)),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),this.devNullLog=r?.onDevNullLog,$.devNull.create(`core`),Proxy&&Reflect)return new Proxy(this,{get:(e,t,n)=>{let r=Reflect.get(e,t,n);return typeof r==`function`?(...n)=>{try{return r.apply(e,n)}catch(e){let r=n.map(e=>JSON.stringify(e,(e,t)=>{let n=typeof t;return Dr.default([`number`,`string`,`boolean`],n)?t:t===null?null:`<${n}>`})),i=`Player.${String(t)}`,a=`Exception calling ${i} (${r.join(`, `)})`;throw this.events.fatalError$.next({id:i,category:$.ErrorCategory.WTF,message:a,thrown:e}),e}}:r}})}initVideo(e){this.config=e,this.internalsExposure?.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{let{container:t,...n}=e;this.tracer.log(`initVideo`,$.flattenObject(n)),this.domContainer=kd(e),this.chromecastInitializer.contentId=e.meta?.videoId,this.providerContainer=new pd({sources:e.sources,meta:e.meta??{},failoverHosts:e.failoverHosts??[],container:this.domContainer,desiredState:this.desiredState,dependencies:{throughputEstimator:this.throughputEstimator,chromecastInitializer:this.chromecastInitializer,tracer:this.tracer,logger:this.logger,abrLogger:this.abrLogger},tuning:this.tuning,volumeMultiplier:e.volumeMultiplier,panelSize:e.panelSize}),this.initProviderContainerSubscription(this.providerContainer),this.initStartingVideoTrack(this.providerContainer),this.initTracerSubscription(),this.providerContainer.init(),this.setLiveLowLatency(this.tuning.dashCmafLive.lowLatency.isActiveOnDefault),this.initDebugTelemetry(),this.initWakeLock(),this.playerInited.next(!0),this.devNullLog&&this.tuning.devNullLogEnabled?($.devNull.subscribe(`core`,this.devNullLog),this.tuning.collectingDecodingInfoEnabled&&(this.collectDecodingInfoDestroyCb=Pd())):$.devNull.destroy(`core`)},n=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?N.isInited$.pipe($.filter(e=>!!e),$.once()).subscribe(()=>{console.log(`Core SDK async start`),n()}):n()};return this.isNotActiveTabCase()?(this.tracer.log(`request play from hidden tab`),$.fromEvent(document,`visibilitychange`).pipe($.once()).subscribe(r)):r(),this}destroy(){this.tracer.log(`destroy`),window.clearTimeout(this.hasLiveOffsetByPausedTimer),this.playerInitRequest&&window.cancelAnimationFrame(this.playerInitRequest),this.events.willDestruct$.next(),this.stop(),this.providerContainer?.destroy(),this.throughputEstimator.destroy(),this.chromecastInitializer.destroy(),this.subscription.unsubscribe(),this.tracer.end(),this.internalsExposure?.destroy(),$.devNull.destroy(`core`),this.collectDecodingInfoDestroyCb?.call(this)}waitInit(e){this.playerInited.getValue()?e():this.subscription.add(this.playerInited.pipe($.filter(e=>!!e),$.once()).subscribe(e))}prepare(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`prepare`,{currentPlayBackState:e.getState()}),e.getState()===`stopped`&&e.startTransitionTo(`ready`)}),this}play(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`play`,{currentPlayBackState:e.getState()}),e.getState()!==`playing`&&e.startTransitionTo(`playing`)}),this}pause(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`pause`,{currentPlayBackState:e.getState()}),e.getState()!==`paused`&&e.startTransitionTo(`paused`)}),this}stop(){return this.waitInit(()=>{let e=this.desiredState.playbackState;this.tracer.log(`stop`,{currentPlayBackState:e.getState()}),e.getState()!==`stopped`&&e.startTransitionTo(`stopped`)}),this}seekTime(e,t=!0){return this.waitInit(()=>{let n=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),i=e;e>=n&&!r&&(i=n-this.tuning.seekNearDurationBias),this.tracer.log(`seekTime`,{duration:n,isLive:r,time:e,calculatedTime:i,forcePrecise:t}),Number.isFinite(i)&&(this.events.willSeek$.next({from:this.getExactTime(),to:i}),this.desiredState.seekState.setState({state:`requested`,position:i*1e3,forcePrecise:t}))}),this}seekPercent(e){return this.waitInit(()=>{let t=this.info.duration$.getValue();this.tracer.log(`seekPercent`,{percent:e,duration:t}),isFinite(t)&&this.seekTime(Math.abs(t)*e,!1)}),this}setVolume(e,t){return this.waitInit(()=>{let n=this.desiredState.volume,r=n.getTransition()?.to.muted??this.info.muted$.getValue(),i=t??(this.tuning.isAudioDisabled||r);this.tracer.log(`setVolume`,{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:i}),this.chromecastInitializer.castState$.getValue()===`CONNECTED`&&!(this.chromecastInitializer instanceof Ti)?this.chromecastInitializer.setVolume(e):n.startTransitionTo({volume:e,muted:i})}),this}setMuted(e,t=!1){return this.waitInit(()=>{let n=this.desiredState.volume,r=this.tuning.isAudioDisabled&&!t||e,i=n.getTransition()?.to.volume??this.info.volume$.getValue();this.tracer.log(`setMuted`,{isMuted:e,nextMuted:r,volume:i,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue()}),this.chromecastInitializer.castState$.getValue()===`CONNECTED`&&!(this.chromecastInitializer instanceof Ti)?this.chromecastInitializer.setMuted(r):n.startTransitionTo({volume:i,muted:r})}),this}setVideoStream(e){return this.waitInit(()=>{this.desiredState.videoStream.startTransitionTo(e)}),this}setAudioStream(e){return this.waitInit(()=>{this.desiredState.audioStream.startTransitionTo(e)}),this}setQuality(e){return this.waitInit(()=>{$.assertNonNullable(this.providerContainer);let t=this.providerContainer.providerOutput.availableVideoTracks$.getValue();this.tracer.log(`setQuality`,{isDelayed:t.length===0,quality:e}),this.desiredState.videoTrack.getState()===void 0&&this.desiredState.videoTrack.getPrevState()===void 0&&t.length===0?this.wasSetStartedQuality?this.providerContainer.providerOutput.availableVideoTracks$.pipe($.filter(e=>e.length>0),$.once()).subscribe(t=>{this.setVideoTrackIdByQuality(t,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)}),this}setAutoQuality(e){return this.waitInit(()=>{this.tracer.log(`setAutoQuality`,{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)}),this}setAutoQualityLimits(e){return this.waitInit(()=>{this.tracer.log(`setAutoQualityLimits`,$.flattenObject(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)}),this}setPredefinedQualityLimits(e){return this.waitInit(()=>{if(this.info.predefinedQualityLimitType$.getValue()===e)return this;let{highQualityLimit:t,trafficSavingLimit:n}=this.tuning.autoTrackSelection,r;switch(e){case`high_quality`:r={min:t,max:void 0};break;case`traffic_saving`:r={max:n,min:void 0};break;default:r={max:void 0,min:void 0}}this.setAutoQualityLimits(r)}),this}setPlaybackRate(e){return this.waitInit(()=>{this.tracer.log(`setPlaybackRate`,{playbackRate:e}),this.desiredState.playbackRate.startTransitionTo(e)}),this}setExternalTextTracks(e){return this.waitInit(()=>{e.length&&this.tracer.log(`setExternalTextTracks`,$.flattenObject(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(e=>({type:`external`,...e})))}),this}selectTextTrack(e){return this.waitInit(()=>{jd(e,this.desiredState.currentTextTrack,this.providerContainer?.providerOutput.availableTextTracks$,t=>t.id===e),this.tracer.log(`selectTextTrack`,{textTrackId:e})}),this}setTextTrackCueSettings(e){return this.waitInit(()=>{this.tracer.log(`setTextTrackCueSettings`,{...e}),this.desiredState.textTrackCuesSettings.startTransitionTo(e)}),this}setLiveLowLatency(e){let t=this.info.isLive$.getValue(),n=this.desiredState.isLowLatency.getState();return!t||n===e?this:(this.tracer.log(`live switch to low latency `+e),this.desiredState.isLowLatency.setState(e),this.seekTime(0))}setLooped(e){return this.waitInit(()=>{this.tracer.log(`setLooped`,{isLooped:e}),this.desiredState.isLooped.startTransitionTo(e)}),this}toggleChromecast(){this.tracer.log(`toggleChromecast`),this.chromecastInitializer.toggleConnection()}startCameraManualRotation(e,t){return this.waitInit(()=>{let n=this.getScene3D();this.tracer.log(`startCameraManualRotation`,{isScene3DAvailable:!!n,mx:e,my:t}),n&&n.startCameraManualRotation(e,t)}),this}stopCameraManualRotation(e=!1){return this.waitInit(()=>{let t=this.getScene3D();this.tracer.log(`stopCameraManualRotation`,{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)}),this}moveCameraFocusPX(e,t){return this.waitInit(()=>{let n=this.getScene3D();if(this.tracer.log(`moveCameraFocusPX`,{isScene3DAvailable:!!n,dxpx:e,dypx:t}),n){let r=n.getCameraRotation(),i=n.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+i.x,y:r.y+i.y})}}),this}holdCamera(){return this.waitInit(()=>{let e=this.getScene3D();e&&e.holdCamera()}),this}releaseCamera(){return this.waitInit(()=>{let e=this.getScene3D();e&&e.releaseCamera()}),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if($.isNullable(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),n=t.state===`none`?void 0:t.position;return $.isNonNullable(n)?n/1e3:e.currentTime}getAllLogs(){return this.logger.getAllLogs()}getScene3D(){var e;let t=this.providerContainer?.current$.getValue();if(!(t==null||(e=t.provider)==null)&&e.scene3D)return t.provider.scene3D}setIntrinsicVideoSize(...e){let t={width:e.reduce((e,{width:t})=>e||t||0,0),height:e.reduce((e,{height:t})=>e||t||0,0)};t.width&&t.height&&this.info.intrinsicVideoSize$.next({width:t.width,height:t.height})}initDesiredStateSubscriptions(){this.subscription.add($.merge(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe($.map(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe($.map(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe($.map(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe($.map(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe($.map(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:n}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Ea(e,t,n))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe($.filter(({from:e})=>e===`stopped`),$.once()).subscribe(()=>{this.initedAt=$.now(),this.events.inited$.next()})).add(this.desiredState.playbackState.stateChangeEnded$.subscribe(e=>{switch(e.to){case`ready`:this.events.ready$.next();break;case`playing`:this.isPlaybackStarted||this.events.started$.next(),this.isPlaybackStarted=!0,this.events.playing$.next();break;case`paused`:this.events.paused$.next();break;case`stopped`:this.events.stopped$.next()}})).add(this.desiredState.playbackState.stateChangeStarted$.subscribe(e=>{switch(e.to){case`ready`:this.events.willReady$.next();break;case`paused`:this.events.willPause$.next();break;case`playing`:this.isPlaybackStarted?this.events.willResume$.next():this.events.willStart$.next();break;case`stopped`:this.events.willStop$.next();break;default:}}))}initProviderContainerSubscription(e){this.subscription.add(e.providerOutput.willSeekEvent$.subscribe(()=>{let e=this.desiredState.seekState.getState();this.tracer.log(`willSeekEvent`,$.flattenObject(e)),e.state===`requested`?this.desiredState.seekState.setState({...e,state:`applying`}):this.events.managedError$.next({id:`WillSeekIn${e.state}`,category:$.ErrorCategory.WTF,message:`Received unexpeceted willSeek$`})})).add(e.providerOutput.soundProhibitedEvent$.pipe($.once()).subscribe(this.events.autoplaySoundProhibited$)).add(e.providerOutput.severeStallOccurred$.subscribe(this.events.severeStallOccured$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{let e=this.desiredState.seekState.getState();this.tracer.log(`seekedEvent`,$.flattenObject(e)),e.state===`applying`&&(this.desiredState.seekState.setState({state:`none`}),this.events.seeked$.next())})).add(e.current$.pipe($.map(e=>e.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe($.map(e=>e.destination),$.filterChanged()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add(e.providerOutput.availableVideoTracks$.subscribe(this.info.availableVideoTracks$)).add($.combine({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe($.map(({availableVideoTracks:e,currentVideoStream:t})=>e.filter(e=>t?t.id===e.streamId:!0).map(({quality:e})=>e).sort((e,t)=>$.isInvariantQuality(e)?1:$.isInvariantQuality(t)?-1:$.isHigher(t,e)?1:-1))).subscribe(this.info.availableQualities$)).add(e.providerOutput.availableVideoTracks$.subscribe(e=>{let t={};for(let n of e)n.fps&&(t[n.quality]=n.fps);this.info.availableQualitiesFps$.next(t)})).add(e.providerOutput.availableAudioStreams$.subscribe(this.info.availableAudioStreams$)).add(e.providerOutput.currentVideoStream$.subscribe(this.info.currentVideoStream$)).add(e.providerOutput.currentAudioStream$.subscribe(this.info.currentAudioStream$)).add(e.providerOutput.availableAudioTracks$.subscribe(this.info.availableAudioTracks$)).add(e.providerOutput.isAudioAvailable$.pipe($.filterChanged()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe($.filter(e=>$.isNonNullable(e))).subscribe(e=>{this.info.currentQuality$.next(e?.quality),this.info.videoBitrate$.next(e?.bitrate)})).add(e.providerOutput.currentVideoSegmentLength$.pipe($.filterChanged((e,t)=>Math.round(e)===Math.round(t))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe($.filterChanged((e,t)=>Math.round(e)===Math.round(t))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe($.filterChanged()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe($.filterChanged()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe($.filterChanged()).subscribe(this.info.httpConnectionReused$)).add(e.providerOutput.httpConnectionMetrics$.pipe($.filterChanged()).subscribe(this.info.httpConnectionMetrics$)).add(e.providerOutput.httpDownloadMetrics$.pipe($.filterChanged()).subscribe(this.info.httpDownloadMetrics$)).add(e.providerOutput.currentTextTrack$.subscribe(this.info.currentTextTrack$)).add(e.providerOutput.availableTextTracks$.subscribe(this.info.availableTextTracks$)).add(e.providerOutput.autoVideoTrackLimitingAvailable$.subscribe(this.info.autoQualityLimitingAvailable$)).add(e.providerOutput.autoVideoTrackLimits$.subscribe(e=>{this.desiredState.autoVideoTrackLimits.setState(e??{})})).add(e.providerOutput.currentBuffer$.pipe($.map(e=>e?{start:e.from,end:e.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).add(e.providerOutput.currentNativeBuffer$.pipe($.map(e=>e?{start:e.from,end:e.to}:{start:0,end:0})).subscribe(this.info.currentNativeBuffer$)).add(e.providerOutput.duration$.subscribe(this.info.duration$)).add(e.providerOutput.isBuffering$.subscribe(this.info.isBuffering$)).add(e.providerOutput.isLive$.subscribe(this.info.isLive$)).add(e.providerOutput.isLiveEnded$.pipe($.tap(e=>e&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canPlayLiveTailBuffer$.subscribe(this.info.canPlayLiveTailBuffer$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.pipe($.filterChanged()).subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add($.combine({hasLiveOffsetByPaused:$.merge(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe($.map(e=>e.to),$.filterChanged(),$.map(e=>e===`paused`)),isLowLatency:e.providerOutput.isLowLatency$}).subscribe(({hasLiveOffsetByPaused:e,isLowLatency:t})=>{if(window.clearTimeout(this.hasLiveOffsetByPausedTimer),e){this.hasLiveOffsetByPausedTimer=window.setTimeout(()=>{this.hasLiveOffsetByPaused.next(!0)},this.getActiveLiveDelay(t));return}this.hasLiveOffsetByPaused.next(!1)})).add($.combine({atLiveEdge:$.combine({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Dd({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe($.map(({isLive:e,position:t,isLowLatency:n})=>{let r=this.getActiveLiveDelay(n);return e&&Math.abs(t)<r/1e3}),$.filterChanged(),$.tap(e=>e&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe($.map(({atLiveEdge:e,hasPausedTimeoutCase:t})=>e&&!t)).subscribe(this.info.atLiveEdge$)).add($.combine({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe($.map(({isLive:e,position:t,duration:n})=>e&&(Math.abs(n)-Math.abs(t))*1e3<this.tuning.live.activeLiveDelay),$.filterChanged(),$.tap(e=>e&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe($.map(e=>e.muted),$.filterChanged()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe($.map(e=>e.volume),$.filterChanged()).subscribe(this.info.volume$)).add(Dd({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add(e.providerOutput.seekedEvent$.subscribe(()=>{this.info.isEnded$.getValue()&&this.tuning.changePlaybackStateToPausedWhenEnded&&this.play()})).add($.merge(e.providerOutput.endedEvent$.pipe($.mapTo(!0)),e.providerOutput.seekedEvent$.pipe($.mapTo(!1))).pipe($.filterChanged()).subscribe(this.info.isEnded$)).add(e.providerOutput.endedEvent$.subscribe(this.events.ended$)).add(e.providerOutput.loopedEvent$.subscribe(this.events.looped$)).add(e.providerError$.subscribe(this.events.managedError$)).add(e.providerOutput.fetcherRecoverableError$.subscribe(this.events.fetcherRecoverableError$)).add(e.providerOutput.fetcherError$.subscribe(this.events.fatalError$)).add(e.volumeMultiplierError$.subscribe(this.events.managedError$)).add(e.noAvailableProvidersError$.pipe($.map(e=>({id:e?`No${e}`:`NoProviders`,category:$.ErrorCategory.VIDEO_PIPELINE,message:e?`${e} was forced but failed or not available`:`No suitable providers or all providers failed`}))).subscribe(this.events.fatalError$)).add(e.providerOutput.element$.subscribe(this.experimental.element$)).add(e.providerOutput.getCurrentTime$.subscribe(this.experimental.getCurrentTime$)).add(e.providerOutput.manifestRequested$.pipe($.once()).subscribe(this.events.manifestRequested$)).add(e.providerOutput.firstBytesManifest$.pipe($.once()).subscribe(this.events.firstBytesManifest$)).add(e.providerOutput.manifestReceived$.pipe($.once()).subscribe(this.events.manifestReceived$)).add(e.providerOutput.firstBytesRequested$.pipe($.once()).subscribe(this.events.firstBytesRequested$)).add(e.providerOutput.firstBytesReceived$.pipe($.once()).subscribe(this.events.firstBytesReceived$)).add(e.providerOutput.firstBytesEvent$.pipe($.once(),$.map(e=>e??$.now()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe($.once(),$.map(()=>$.now()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe($.once(),$.map(()=>$.now()-this.initedAt)).subscribe(this.events.canplay$)).add(this.throughputEstimator.throughput$.subscribe(this.info.throughputEstimation$)).add(this.throughputEstimator.rtt$.subscribe(this.info.rttEstimation$)).add(e.providerOutput.availableSources$.subscribe(this.info.availableSources$));let t=new $.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let n=new $.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>n.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe($.filter(({to:e})=>e===`playing`),$.once()).subscribe(()=>n.next(!1)));let r=0,i=$.merge(e.providerOutput.isBuffering$,t,n).pipe($.map(()=>{let r=e.providerOutput.isBuffering$.getValue(),i=t.getValue()||n.getValue();return r&&!i}),$.filterChanged());this.subscription.add(i.subscribe(e=>{e?r=window.setTimeout(()=>this.info.isStalled$.next(!0),this.tuning.stallIgnoreThreshold):(window.clearTimeout(r),this.info.isStalled$.next(!1))})),this.subscription.add($.merge(e.providerOutput.canplay$,e.providerOutput.firstFrameEvent$,e.providerOutput.firstBytesEvent$).subscribe(()=>{let t=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:t?.videoWidth,height:t?.videoHeight})})).add(e.providerOutput.currentVideoTrack$.subscribe(t=>{var n,r;let i=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:t==null||(n=t.size)==null?void 0:n.width,height:t==null||(r=t.size)==null?void 0:r.height},{width:i?.videoWidth,height:i?.videoHeight})})).add(e.providerOutput.is3DVideo$.subscribe(this.info.is3DVideo$)),this.subscription.add($.merge(e.providerOutput.inPiP$,e.providerOutput.inFullscreen$,e.providerOutput.element$,e.providerOutput.elementVisible$,this.chromecastInitializer.castState$).subscribe(()=>{let t=e.providerOutput.inPiP$.getValue(),n=e.providerOutput.inFullscreen$.getValue(),r=e.providerOutput.element$.getValue(),i=e.providerOutput.elementVisible$.getValue(),a=this.chromecastInitializer.castState$.getValue(),o;o=a===`CONNECTED`?`second_screen`:r?i?t?`pip`:n?`fullscreen`:`inline`:`invisible`:`none`,this.info.surface$.getValue()!==o&&this.info.surface$.next(o)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe($.map(e=>e?.castDevice.friendlyName)).subscribe(this.info.chromecastDeviceName$)),this.subscription.add(this.chromecastInitializer.errorEvent$.subscribe(this.events.managedError$))}initStartingVideoTrack(e){let t=new $.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe($.filterChanged((e,t)=>e.provider===t.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe($.filter(e=>e.length>0),$.once()).subscribe(e=>{this.setStartingVideoTrack(e)}))}))}setStartingVideoTrack(e){let t;this.wasSetStartedQuality=!0;let n=this.explicitInitialQuality??this.info.currentQuality$.getValue();n&&(t=e.find(({quality:e})=>e===n),t||this.setAutoQuality(!0)),t||=Wa(e,{container:this.domContainer.getBoundingClientRect(),panelSize:this.config.panelSize,estimatedThroughput:this.throughputEstimator.throughput$.getValue(),tuning:this.tuning.autoTrackSelection,limits:this.desiredState.autoVideoTrackLimits.getState(),playbackRate:this.info.currentPlaybackRate$.getValue(),forwardBufferHealth:0,abrLogger:this.abrLogger}),this.desiredState.videoTrack.startTransitionTo(t),this.info.currentQuality$.next(t.quality),this.info.videoBitrate$.next(t.bitrate)}initLogs(){this.subscription.add($.merge(this.desiredState.videoTrack.stateChangeStarted$.pipe($.map(e=>({transition:e,entity:`quality`,type:`start`}))),this.desiredState.videoTrack.stateChangeEnded$.pipe($.map(e=>({transition:e,entity:`quality`,type:`end`}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe($.map(e=>({transition:e,entity:`autoQualityEnabled`,type:`start`}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe($.map(e=>({transition:e,entity:`autoQualityEnabled`,type:`end`}))),this.desiredState.seekState.stateChangeStarted$.pipe($.map(e=>({transition:e,entity:`seekState`,type:`start`}))),this.desiredState.seekState.stateChangeEnded$.pipe($.map(e=>({transition:e,entity:`seekState`,type:`end`}))),this.desiredState.playbackState.stateChangeStarted$.pipe($.map(e=>({transition:e,entity:`playbackState`,type:`start`}))),this.desiredState.playbackState.stateChangeEnded$.pipe($.map(e=>({transition:e,entity:`playbackState`,type:`end`})))).pipe($.map(e=>({component:`desiredState`,message:`[${e.entity} change] ${e.type}: ${JSON.stringify(e.transition)}`}))).subscribe(this.logger.log)),this.subscription.add(this.logger.log$.subscribe(this.events.log$))}initDebugTelemetry(){let e=this.providerContainer?.providerOutput;$.assertNonNullable(this.providerContainer),$.assertNonNullable(e),xa(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(e=>ba(e)),this.providerContainer.current$.subscribe(({type:e})=>Ca(`provider`,e)),e.duration$.subscribe(e=>Ca(`duration`,e)),e.availableVideoTracks$.pipe($.filter(e=>!!e.length),$.once()).subscribe(e=>Ca(`tracks`,e)),this.events.fatalError$.subscribe(new wa(`fatalError`)),this.events.managedError$.subscribe(new wa(`managedError`)),e.position$.subscribe(new wa(`position`)),e.currentVideoTrack$.pipe($.map(e=>e?.quality)).subscribe(new wa(`quality`)),this.info.currentBuffer$.subscribe(new wa(`buffer`)),e.isBuffering$.subscribe(new wa(`isBuffering`))].forEach(e=>this.subscription.add(e)),Ca(`codecs`,N.video.supportedCodecs)}initTracerSubscription(){let e=$.getTraceSubscriptionMethod(this.tracer.log.bind(this.tracer)),t=$.getTraceSubscriptionMethod(this.tracer.error.bind(this.tracer));this.subscription.add(this.info.playbackState$.subscribe(e(`playbackState`))).add(this.info.isLooped$.subscribe(e(`isLooped`))).add(this.info.currentPlaybackRate$.pipe($.filterChanged()).subscribe(e(`currentPlaybackRate`))).add(this.info.isAutoQualityEnabled$.subscribe(e(`isAutoQualityEnabled`))).add(this.info.autoQualityLimits$.subscribe(e(`autoQualityLimits`))).add(this.info.currentFormat$.subscribe(e(`currentFormat`))).add(this.info.availableQualities$.subscribe(e(`availableQualities`))).add(this.info.availableQualitiesFps$.subscribe(e(`availableQualitiesFps`))).add(this.info.availableAudioTracks$.subscribe(e(`availableAudioTracks`))).add(this.info.isAudioAvailable$.subscribe(e(`isAudioAvailable`))).add($.combine({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe($.filter(({currentQuality:e,videoBitrate:t})=>!!e&&!!t),$.filterChanged((e,t)=>e.currentQuality===t.currentQuality)).subscribe(e(`currentVideoTrack`))).add(this.info.currentVideoSegmentLength$.pipe($.filter(e=>e>0),$.filterChanged()).subscribe(e(`currentVideoSegmentLength`))).add(this.info.currentAudioSegmentLength$.pipe($.filter(e=>e>0),$.filterChanged()).subscribe(e(`currentAudioSegmentLength`))).add(this.info.hostname$.subscribe(e(`hostname`))).add(this.info.currentTextTrack$.subscribe(e(`currentTextTrack`))).add(this.info.availableTextTracks$.subscribe(e(`availableTextTracks`))).add(this.info.autoQualityLimitingAvailable$.subscribe(e(`autoQualityLimitingAvailable`))).add($.combine({currentBuffer:this.info.currentBuffer$.pipe($.filter(e=>e.end>0),$.filterChanged((e,t)=>e.end===t.end&&e.start===t.start)),position:this.info.position$.pipe($.filterChanged())}).pipe($.throttle(1e3)).subscribe(e(`currentBufferAndPosition`))).add(this.info.duration$.pipe($.filterChanged()).subscribe(e(`duration`))).add(this.info.isBuffering$.subscribe(e(`isBuffering`))).add(this.info.isLive$.pipe($.filterChanged()).subscribe(e(`isLive`))).add(this.info.canChangePlaybackSpeed$.pipe($.filterChanged()).subscribe(e(`canChangePlaybackSpeed`))).add($.combine({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe($.filter(({liveTime:e,liveBufferTime:t})=>!!e&&!!t),$.throttle(1e3)).subscribe(e(`liveBufferAndPosition`))).add(this.info.atLiveEdge$.pipe($.filterChanged(),$.filter(e=>e===!0)).subscribe(e(`atLiveEdge`))).add(this.info.atLiveDurationEdge$.pipe($.filterChanged(),$.filter(e=>e===!0)).subscribe(e(`atLiveDurationEdge`))).add(this.info.muted$.pipe($.filterChanged()).subscribe(e(`muted`))).add(this.info.volume$.pipe($.filterChanged()).subscribe(e(`volume`))).add(this.info.isEnded$.pipe($.filterChanged(),$.filter(e=>e===!0)).subscribe(e(`isEnded`))).add(this.info.availableSources$.subscribe(e(`availableSources`))).add($.combine({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe($.filter(({throughputEstimation:e,rtt:t})=>!!e&&!!t),$.throttle(3e3)).subscribe(e(`throughputEstimation`))).add(this.info.isStalled$.subscribe(e(`isStalled`))).add(this.info.is3DVideo$.pipe($.filterChanged(),$.filter(e=>e===!0)).subscribe(e(`is3DVideo`))).add(this.info.surface$.subscribe(e(`surface`))).add(this.events.ended$.subscribe(e(`ended`))).add(this.events.looped$.subscribe(e(`looped`))).add(this.events.managedError$.subscribe(t(`managedError`))).add(this.events.fatalError$.subscribe(t(`fatalError`))).add(this.events.firstBytes$.subscribe(e(`firstBytes`))).add(this.events.firstFrame$.subscribe(e(`firstFrame`))).add(this.events.canplay$.subscribe(e(`canplay`)))}initWakeLock(){if(!window.navigator.wakeLock||!this.tuning.enableWakeLock)return;let e,t=()=>{e?.release(),e=void 0},n=async()=>{t(),e=await window.navigator.wakeLock.request(`screen`).catch(e=>{e instanceof DOMException&&e.name===`NotAllowedError`||this.events.managedError$.next({id:`WakeLock`,category:$.ErrorCategory.DOM,message:String(e)})})};this.subscription.add($.merge($.fromEvent(document,`visibilitychange`),$.fromEvent(document,`fullscreenchange`),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState===`visible`,i=this.desiredState.playbackState.getState()===`playing`,a=!!e&&!e?.released;r&&i?a||n():t()})).add(this.events.willDestruct$.subscribe(t))}setVideoTrackIdByQuality(e,t){let n=e.find(e=>e.quality===t);this.tracer.log(`setVideoTrackIdByQuality`,$.flattenObject({quality:t,availableTracks:$.flattenObject(e),track:$.flattenObject(n),isAutoQuality:!n})),n?this.desiredState.videoTrack.startTransitionTo(n):this.setAutoQuality(!0)}getActiveLiveDelay(e=!1){return e?this.tuning.live.lowLatencyActiveLiveDelay:this.tuning.live.activeLiveDelay}isNotActiveTabCase(){return document.hidden&&this.tuning.autoplayOnlyInActiveTab&&!Io()}}var zd=require(`@vkontakte/videoplayer-shared/es2018`),Bd=`@vkontakte/videoplayer-core@${vr}`;