@vkontakte/videoplayer-core 2.0.135-dev.f94adb28.0 → 2.0.136-beta.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 (113) hide show
  1. package/es2015.cjs.js +46 -53
  2. package/es2015.esm.js +42 -49
  3. package/es2018.cjs.js +54 -61
  4. package/es2018.esm.js +54 -61
  5. package/es2024.cjs.js +53 -60
  6. package/es2024.esm.js +51 -58
  7. package/esnext.cjs.js +53 -60
  8. package/esnext.esm.js +51 -58
  9. package/evergreen.esm.js +39 -46
  10. package/package.json +2 -2
  11. package/types/providers/DashProvider/baseDashProvider.d.ts +2 -1
  12. package/types/providers/DashProvider/lib/LiveTextManager.d.ts +1 -1
  13. package/types/providers/DashProvider/lib/buffer.d.ts +2 -1
  14. package/types/providers/DashProvider/lib/fetcher.d.ts +2 -1
  15. package/types/providers/DashProvider/lib/player.d.ts +6 -1
  16. package/types/providers/DashProvider/lib/types.d.ts +2 -159
  17. package/types/providers/DashProvider/lib/utils.d.ts +1 -2
  18. package/types/providers/DashProviderNew/baseDashProvider.d.ts +2 -1
  19. package/types/providers/DashProviderNew/lib/LiveTextManager.d.ts +1 -1
  20. package/types/providers/DashProviderNew/lib/buffer.d.ts +2 -1
  21. package/types/providers/DashProviderNew/lib/fetcher.d.ts +2 -1
  22. package/types/providers/DashProviderNew/lib/player.d.ts +6 -1
  23. package/types/providers/DashProviderNew/lib/types.d.ts +2 -159
  24. package/types/providers/DashProviderNew/lib/utils.d.ts +1 -2
  25. package/types/providers/utils/error.d.ts +1 -0
  26. package/types/providers/{DashProvider/lib → utils}/parsers/index.d.ts +1 -1
  27. package/types/providers/{DashProviderNew/lib → utils}/parsers/mpd.d.ts +1 -1
  28. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/BoxModel.d.ts +4 -4
  29. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/BoxParser.d.ts +2 -2
  30. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/box.d.ts +8 -8
  31. package/types/providers/utils/parsers/mpeg/boxes/avc1.d.ts +8 -0
  32. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/equi.d.ts +2 -2
  33. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/ftyp.d.ts +2 -2
  34. package/types/providers/utils/parsers/mpeg/boxes/index.d.ts +26 -0
  35. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/mdat.d.ts +2 -2
  36. package/types/providers/utils/parsers/mpeg/boxes/mdia.d.ts +8 -0
  37. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/mfhd.d.ts +2 -2
  38. package/types/providers/utils/parsers/mpeg/boxes/minf.d.ts +8 -0
  39. package/types/providers/utils/parsers/mpeg/boxes/moof.d.ts +8 -0
  40. package/types/providers/utils/parsers/mpeg/boxes/moov.d.ts +8 -0
  41. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/mvhd.d.ts +2 -2
  42. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/prhd.d.ts +2 -2
  43. package/types/providers/utils/parsers/mpeg/boxes/proj.d.ts +8 -0
  44. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/sidx.d.ts +2 -2
  45. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/st3d.d.ts +2 -2
  46. package/types/providers/utils/parsers/mpeg/boxes/stbl.d.ts +8 -0
  47. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/stsd.d.ts +2 -2
  48. package/types/providers/utils/parsers/mpeg/boxes/sv3d.d.ts +8 -0
  49. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/tfdt.d.ts +2 -2
  50. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/tfhd.d.ts +2 -2
  51. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/tkhd.d.ts +2 -2
  52. package/types/providers/utils/parsers/mpeg/boxes/traf.d.ts +8 -0
  53. package/types/providers/utils/parsers/mpeg/boxes/trak.d.ts +8 -0
  54. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/trun.d.ts +2 -2
  55. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/boxes/unknown.d.ts +1 -1
  56. package/types/providers/utils/parsers/mpeg/boxes/uuid.d.ts +18 -0
  57. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/fullBox.d.ts +2 -2
  58. package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/isobmff.d.ts +1 -1
  59. package/types/providers/utils/parsers/types.d.ts +159 -0
  60. package/types/providers/{DashProvider/lib → utils}/parsers/webm/webm.d.ts +1 -1
  61. package/types/utils/tuningConfig.d.ts +2 -4
  62. package/types/providers/DashProvider/lib/parsers/mpd.d.ts +0 -3
  63. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/avc1.d.ts +0 -8
  64. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/index.d.ts +0 -26
  65. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/mdia.d.ts +0 -8
  66. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/minf.d.ts +0 -8
  67. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/moof.d.ts +0 -8
  68. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/moov.d.ts +0 -8
  69. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/proj.d.ts +0 -8
  70. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/stbl.d.ts +0 -8
  71. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/sv3d.d.ts +0 -8
  72. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/traf.d.ts +0 -8
  73. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/trak.d.ts +0 -8
  74. package/types/providers/DashProvider/lib/parsers/mpeg/boxes/uuid.d.ts +0 -11
  75. package/types/providers/DashProviderNew/lib/parsers/ietf/index.d.ts +0 -13
  76. package/types/providers/DashProviderNew/lib/parsers/index.d.ts +0 -3
  77. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxModel.d.ts +0 -20
  78. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxParser.d.ts +0 -21
  79. package/types/providers/DashProviderNew/lib/parsers/mpeg/BoxTypeEnum.d.ts +0 -30
  80. package/types/providers/DashProviderNew/lib/parsers/mpeg/box.d.ts +0 -74
  81. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/avc1.d.ts +0 -8
  82. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/equi.d.ts +0 -21
  83. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/ftyp.d.ts +0 -17
  84. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/index.d.ts +0 -26
  85. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdat.d.ts +0 -15
  86. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mdia.d.ts +0 -8
  87. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mfhd.d.ts +0 -11
  88. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/minf.d.ts +0 -8
  89. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moof.d.ts +0 -8
  90. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/moov.d.ts +0 -8
  91. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/mvhd.d.ts +0 -35
  92. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/prhd.d.ts +0 -16
  93. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/proj.d.ts +0 -8
  94. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sidx.d.ts +0 -48
  95. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/st3d.d.ts +0 -23
  96. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stbl.d.ts +0 -8
  97. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/stsd.d.ts +0 -11
  98. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/sv3d.d.ts +0 -8
  99. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfdt.d.ts +0 -17
  100. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tfhd.d.ts +0 -22
  101. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/tkhd.d.ts +0 -42
  102. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/traf.d.ts +0 -8
  103. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trak.d.ts +0 -8
  104. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/trun.d.ts +0 -31
  105. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/unknown.d.ts +0 -6
  106. package/types/providers/DashProviderNew/lib/parsers/mpeg/boxes/uuid.d.ts +0 -11
  107. package/types/providers/DashProviderNew/lib/parsers/mpeg/fullBox.d.ts +0 -15
  108. package/types/providers/DashProviderNew/lib/parsers/mpeg/isobmff.d.ts +0 -12
  109. package/types/providers/DashProviderNew/lib/parsers/webm/ebml.d.ts +0 -76
  110. package/types/providers/DashProviderNew/lib/parsers/webm/webm.d.ts +0 -3
  111. /package/types/providers/{DashProvider/lib → utils}/parsers/ietf/index.d.ts +0 -0
  112. /package/types/providers/{DashProvider/lib → utils}/parsers/mpeg/BoxTypeEnum.d.ts +0 -0
  113. /package/types/providers/{DashProvider/lib → utils}/parsers/webm/ebml.d.ts +0 -0
package/es2018.cjs.js CHANGED
@@ -1,127 +1,127 @@
1
1
  /**
2
- * @vkontakte/videoplayer-core v2.0.135-dev.f94adb28.0
3
- * Tue, 01 Jul 2025 09:29:11 GMT
4
- * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-135/doc/
2
+ * @vkontakte/videoplayer-core v2.0.136-beta.0
3
+ * Fri, 11 Jul 2025 16:07:23 GMT
4
+ * https://st.mycdn.me/static/vkontakte-videoplayer/2-0-136/doc/
5
5
  */
6
- "use strict";var xT=Object.create;var Zn=Object.defineProperty;var ET=Object.getOwnPropertyDescriptor;var wT=Object.getOwnPropertyNames;var AT=Object.getPrototypeOf,PT=Object.prototype.hasOwnProperty;var g=(s,e)=>()=>(e||s((e={exports:{}}).exports,e),e.exports),kT=(s,e)=>{for(var t in e)Zn(s,t,{get:e[t],enumerable:!0})},Yd=(s,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of wT(e))!PT.call(s,r)&&r!==t&&Zn(s,r,{get:()=>e[r],enumerable:!(i=ET(e,r))||i.enumerable});return s};var Y=(s,e,t)=>(t=s!=null?xT(AT(s)):{},Yd(e||!s||!s.__esModule?Zn(t,"default",{value:s,enumerable:!0}):t,s)),RT=s=>Yd(Zn({},"__esModule",{value:!0}),s);var De=g((Gu,Kd)=>{"use strict";var Ys=function(s){return s&&s.Math===Math&&s};Kd.exports=Ys(typeof globalThis=="object"&&globalThis)||Ys(typeof window=="object"&&window)||Ys(typeof self=="object"&&self)||Ys(typeof global=="object"&&global)||Ys(typeof Gu=="object"&&Gu)||function(){return this}()||Function("return this")()});var Je=g((MB,Xd)=>{"use strict";Xd.exports=function(s){try{return!!s()}catch(e){return!0}}});var Ks=g((LB,Jd)=>{"use strict";var MT=Je();Jd.exports=!MT(function(){var s=function(){}.bind();return typeof s!="function"||s.hasOwnProperty("prototype")})});var Wu=g((BB,ip)=>{"use strict";var LT=Ks(),tp=Function.prototype,Zd=tp.apply,ep=tp.call;ip.exports=typeof Reflect=="object"&&Reflect.apply||(LT?ep.bind(Zd):function(){return ep.apply(Zd,arguments)})});var Ge=g(($B,ap)=>{"use strict";var rp=Ks(),sp=Function.prototype,Yu=sp.call,BT=rp&&sp.bind.bind(Yu,Yu);ap.exports=rp?BT:function(s){return function(){return Yu.apply(s,arguments)}}});var ar=g((DB,op)=>{"use strict";var np=Ge(),$T=np({}.toString),DT=np("".slice);op.exports=function(s){return DT($T(s),8,-1)}});var Ku=g((CB,up)=>{"use strict";var CT=ar(),VT=Ge();up.exports=function(s){if(CT(s)==="Function")return VT(s)}});var Be=g((VB,lp)=>{"use strict";var Xu=typeof document=="object"&&document.all;lp.exports=typeof Xu=="undefined"&&Xu!==void 0?function(s){return typeof s=="function"||s===Xu}:function(s){return typeof s=="function"}});var At=g((OB,cp)=>{"use strict";var OT=Je();cp.exports=!OT(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Pt=g((_B,dp)=>{"use strict";var _T=Ks(),io=Function.prototype.call;dp.exports=_T?io.bind(io):function(){return io.apply(io,arguments)}});var Ju=g(fp=>{"use strict";var pp={}.propertyIsEnumerable,hp=Object.getOwnPropertyDescriptor,FT=hp&&!pp.call({1:2},1);fp.f=FT?function(e){var t=hp(this,e);return!!t&&t.enumerable}:pp});var Xs=g((NB,mp)=>{"use strict";mp.exports=function(s,e){return{enumerable:!(s&1),configurable:!(s&2),writable:!(s&4),value:e}}});var gp=g((UB,bp)=>{"use strict";var NT=Ge(),UT=Je(),qT=ar(),Zu=Object,jT=NT("".split);bp.exports=UT(function(){return!Zu("z").propertyIsEnumerable(0)})?function(s){return qT(s)==="String"?jT(s,""):Zu(s)}:Zu});var Ar=g((qB,Sp)=>{"use strict";Sp.exports=function(s){return s==null}});var Ui=g((jB,vp)=>{"use strict";var HT=Ar(),zT=TypeError;vp.exports=function(s){if(HT(s))throw new zT("Can't call method on "+s);return s}});var nr=g((HB,yp)=>{"use strict";var QT=gp(),GT=Ui();yp.exports=function(s){return QT(GT(s))}});var kt=g((zB,Tp)=>{"use strict";var WT=Be();Tp.exports=function(s){return typeof s=="object"?s!==null:WT(s)}});var Pr=g((QB,Ip)=>{"use strict";Ip.exports={}});var Ei=g((GB,Ep)=>{"use strict";var el=Pr(),tl=De(),YT=Be(),xp=function(s){return YT(s)?s:void 0};Ep.exports=function(s,e){return arguments.length<2?xp(el[s])||xp(tl[s]):el[s]&&el[s][e]||tl[s]&&tl[s][e]}});var Js=g((WB,wp)=>{"use strict";var KT=Ge();wp.exports=KT({}.isPrototypeOf)});var or=g((YB,kp)=>{"use strict";var XT=De(),Ap=XT.navigator,Pp=Ap&&Ap.userAgent;kp.exports=Pp?String(Pp):""});var rl=g((KB,Dp)=>{"use strict";var $p=De(),il=or(),Rp=$p.process,Mp=$p.Deno,Lp=Rp&&Rp.versions||Mp&&Mp.version,Bp=Lp&&Lp.v8,Gt,ro;Bp&&(Gt=Bp.split("."),ro=Gt[0]>0&&Gt[0]<4?1:+(Gt[0]+Gt[1]));!ro&&il&&(Gt=il.match(/Edge\/(\d+)/),(!Gt||Gt[1]>=74)&&(Gt=il.match(/Chrome\/(\d+)/),Gt&&(ro=+Gt[1])));Dp.exports=ro});var sl=g((XB,Vp)=>{"use strict";var Cp=rl(),JT=Je(),ZT=De(),eI=ZT.String;Vp.exports=!!Object.getOwnPropertySymbols&&!JT(function(){var s=Symbol("symbol detection");return!eI(s)||!(Object(s)instanceof Symbol)||!Symbol.sham&&Cp&&Cp<41})});var al=g((JB,Op)=>{"use strict";var tI=sl();Op.exports=tI&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var nl=g((ZB,_p)=>{"use strict";var iI=Ei(),rI=Be(),sI=Js(),aI=al(),nI=Object;_p.exports=aI?function(s){return typeof s=="symbol"}:function(s){var e=iI("Symbol");return rI(e)&&sI(e.prototype,nI(s))}});var Zs=g((e$,Fp)=>{"use strict";var oI=String;Fp.exports=function(s){try{return oI(s)}catch(e){return"Object"}}});var ii=g((t$,Np)=>{"use strict";var uI=Be(),lI=Zs(),cI=TypeError;Np.exports=function(s){if(uI(s))return s;throw new cI(lI(s)+" is not a function")}});var ea=g((i$,Up)=>{"use strict";var dI=ii(),pI=Ar();Up.exports=function(s,e){var t=s[e];return pI(t)?void 0:dI(t)}});var jp=g((r$,qp)=>{"use strict";var ol=Pt(),ul=Be(),ll=kt(),hI=TypeError;qp.exports=function(s,e){var t,i;if(e==="string"&&ul(t=s.toString)&&!ll(i=ol(t,s))||ul(t=s.valueOf)&&!ll(i=ol(t,s))||e!=="string"&&ul(t=s.toString)&&!ll(i=ol(t,s)))return i;throw new hI("Can't convert object to primitive value")}});var Wt=g((s$,Hp)=>{"use strict";Hp.exports=!0});var Gp=g((a$,Qp)=>{"use strict";var zp=De(),fI=Object.defineProperty;Qp.exports=function(s,e){try{fI(zp,s,{value:e,configurable:!0,writable:!0})}catch(t){zp[s]=e}return e}});var ta=g((n$,Kp)=>{"use strict";var mI=Wt(),bI=De(),gI=Gp(),Wp="__core-js_shared__",Yp=Kp.exports=bI[Wp]||gI(Wp,{});(Yp.versions||(Yp.versions=[])).push({version:"3.38.0",mode:mI?"pure":"global",copyright:"\xA9 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.38.0/LICENSE",source:"https://github.com/zloirock/core-js"})});var cl=g((o$,Jp)=>{"use strict";var Xp=ta();Jp.exports=function(s,e){return Xp[s]||(Xp[s]=e||{})}});var kr=g((u$,Zp)=>{"use strict";var SI=Ui(),vI=Object;Zp.exports=function(s){return vI(SI(s))}});var Yt=g((l$,eh)=>{"use strict";var yI=Ge(),TI=kr(),II=yI({}.hasOwnProperty);eh.exports=Object.hasOwn||function(e,t){return II(TI(e),t)}});var dl=g((c$,th)=>{"use strict";var xI=Ge(),EI=0,wI=Math.random(),AI=xI(1 .toString);th.exports=function(s){return"Symbol("+(s===void 0?"":s)+")_"+AI(++EI+wI,36)}});var Ze=g((d$,rh)=>{"use strict";var PI=De(),kI=cl(),ih=Yt(),RI=dl(),MI=sl(),LI=al(),Rr=PI.Symbol,pl=kI("wks"),BI=LI?Rr.for||Rr:Rr&&Rr.withoutSetter||RI;rh.exports=function(s){return ih(pl,s)||(pl[s]=MI&&ih(Rr,s)?Rr[s]:BI("Symbol."+s)),pl[s]}});var oh=g((p$,nh)=>{"use strict";var $I=Pt(),sh=kt(),ah=nl(),DI=ea(),CI=jp(),VI=Ze(),OI=TypeError,_I=VI("toPrimitive");nh.exports=function(s,e){if(!sh(s)||ah(s))return s;var t=DI(s,_I),i;if(t){if(e===void 0&&(e="default"),i=$I(t,s,e),!sh(i)||ah(i))return i;throw new OI("Can't convert object to primitive value")}return e===void 0&&(e="number"),CI(s,e)}});var hl=g((h$,uh)=>{"use strict";var FI=oh(),NI=nl();uh.exports=function(s){var e=FI(s,"string");return NI(e)?e:e+""}});var so=g((f$,ch)=>{"use strict";var UI=De(),lh=kt(),fl=UI.document,qI=lh(fl)&&lh(fl.createElement);ch.exports=function(s){return qI?fl.createElement(s):{}}});var ml=g((m$,dh)=>{"use strict";var jI=At(),HI=Je(),zI=so();dh.exports=!jI&&!HI(function(){return Object.defineProperty(zI("div"),"a",{get:function(){return 7}}).a!==7})});var fh=g(hh=>{"use strict";var QI=At(),GI=Pt(),WI=Ju(),YI=Xs(),KI=nr(),XI=hl(),JI=Yt(),ZI=ml(),ph=Object.getOwnPropertyDescriptor;hh.f=QI?ph:function(e,t){if(e=KI(e),t=XI(t),ZI)try{return ph(e,t)}catch(i){}if(JI(e,t))return YI(!GI(WI.f,e,t),e[t])}});var bl=g((g$,mh)=>{"use strict";var ex=Je(),tx=Be(),ix=/#|\.prototype\./,ia=function(s,e){var t=sx[rx(s)];return t===nx?!0:t===ax?!1:tx(e)?ex(e):!!e},rx=ia.normalize=function(s){return String(s).replace(ix,".").toLowerCase()},sx=ia.data={},ax=ia.NATIVE="N",nx=ia.POLYFILL="P";mh.exports=ia});var Mr=g((S$,gh)=>{"use strict";var bh=Ku(),ox=ii(),ux=Ks(),lx=bh(bh.bind);gh.exports=function(s,e){return ox(s),e===void 0?s:ux?lx(s,e):function(){return s.apply(e,arguments)}}});var gl=g((v$,Sh)=>{"use strict";var cx=At(),dx=Je();Sh.exports=cx&&dx(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var ri=g((y$,vh)=>{"use strict";var px=kt(),hx=String,fx=TypeError;vh.exports=function(s){if(px(s))return s;throw new fx(hx(s)+" is not an object")}});var ur=g(Th=>{"use strict";var mx=At(),bx=ml(),gx=gl(),ao=ri(),yh=hl(),Sx=TypeError,Sl=Object.defineProperty,vx=Object.getOwnPropertyDescriptor,vl="enumerable",yl="configurable",Tl="writable";Th.f=mx?gx?function(e,t,i){if(ao(e),t=yh(t),ao(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Tl in i&&!i[Tl]){var r=vx(e,t);r&&r[Tl]&&(e[t]=i.value,i={configurable:yl in i?i[yl]:r[yl],enumerable:vl in i?i[vl]:r[vl],writable:!1})}return Sl(e,t,i)}:Sl:function(e,t,i){if(ao(e),t=yh(t),ao(i),bx)try{return Sl(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new Sx("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Lr=g((I$,Ih)=>{"use strict";var yx=At(),Tx=ur(),Ix=Xs();Ih.exports=yx?function(s,e,t){return Tx.f(s,e,Ix(1,t))}:function(s,e,t){return s[e]=t,s}});var Fe=g((x$,Eh)=>{"use strict";var ra=De(),xx=Wu(),Ex=Ku(),wx=Be(),Ax=fh().f,Px=bl(),Br=Pr(),kx=Mr(),$r=Lr(),xh=Yt();ta();var Rx=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 xx(s,this,arguments)};return e.prototype=s.prototype,e};Eh.exports=function(s,e){var t=s.target,i=s.global,r=s.stat,a=s.proto,n=i?ra:r?ra[t]:ra[t]&&ra[t].prototype,o=i?Br:Br[t]||$r(Br,t,{})[t],u=o.prototype,l,d,c,h,p,f,b,S,v;for(h in e)l=Px(i?h:t+(r?".":"#")+h,s.forced),d=!l&&n&&xh(n,h),f=o[h],d&&(s.dontCallGetSet?(v=Ax(n,h),b=v&&v.value):b=n[h]),p=d&&b?b:e[h],!(!l&&!a&&typeof f==typeof p)&&(s.bind&&d?S=kx(p,ra):s.wrap&&d?S=Rx(p):a&&wx(p)?S=Ex(p):S=p,(s.sham||p&&p.sham||f&&f.sham)&&$r(S,"sham",!0),$r(o,h,S),a&&(c=t+"Prototype",xh(Br,c)||$r(Br,c,{}),$r(Br[c],h,p),s.real&&u&&(l||!u[h])&&$r(u,h,p)))}});var Ah=g((E$,wh)=>{"use strict";var Mx=Math.ceil,Lx=Math.floor;wh.exports=Math.trunc||function(e){var t=+e;return(t>0?Lx:Mx)(t)}});var sa=g((w$,Ph)=>{"use strict";var Bx=Ah();Ph.exports=function(s){var e=+s;return e!==e||e===0?0:Bx(e)}});var Rh=g((A$,kh)=>{"use strict";var $x=sa(),Dx=Math.max,Cx=Math.min;kh.exports=function(s,e){var t=$x(s);return t<0?Dx(t+e,0):Cx(t,e)}});var Il=g((P$,Mh)=>{"use strict";var Vx=sa(),Ox=Math.min;Mh.exports=function(s){var e=Vx(s);return e>0?Ox(e,9007199254740991):0}});var Dr=g((k$,Lh)=>{"use strict";var _x=Il();Lh.exports=function(s){return _x(s.length)}});var xl=g((R$,$h)=>{"use strict";var Fx=nr(),Nx=Rh(),Ux=Dr(),Bh=function(s){return function(e,t,i){var r=Fx(e),a=Ux(r);if(a===0)return!s&&-1;var n=Nx(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}};$h.exports={includes:Bh(!0),indexOf:Bh(!1)}});var aa=g((M$,Dh)=>{"use strict";Dh.exports=function(){}});var Ch=g(()=>{"use strict";var qx=Fe(),jx=xl().includes,Hx=Je(),zx=aa(),Qx=Hx(function(){return!Array(1).includes()});qx({target:"Array",proto:!0,forced:Qx},{includes:function(e){return jx(this,e,arguments.length>1?arguments[1]:void 0)}});zx("includes")});var qi=g(($$,Vh)=>{"use strict";var Gx=Ei();Vh.exports=Gx});var _h=g((D$,Oh)=>{"use strict";Ch();var Wx=qi();Oh.exports=Wx("Array","includes")});var Nh=g((C$,Fh)=>{"use strict";var Yx=_h();Fh.exports=Yx});var Rt=g((V$,Uh)=>{"use strict";var Kx=Nh();Uh.exports=Kx});var oo=g((G$,Hh)=>{"use strict";var Jx=cl(),Zx=dl(),jh=Jx("keys");Hh.exports=function(s){return jh[s]||(jh[s]=Zx(s))}});var Qh=g((W$,zh)=>{"use strict";var eE=Je();zh.exports=!eE(function(){function s(){}return s.prototype.constructor=null,Object.getPrototypeOf(new s)!==s.prototype})});var uo=g((Y$,Wh)=>{"use strict";var tE=Yt(),iE=Be(),rE=kr(),sE=oo(),aE=Qh(),Gh=sE("IE_PROTO"),El=Object,nE=El.prototype;Wh.exports=aE?El.getPrototypeOf:function(s){var e=rE(s);if(tE(e,Gh))return e[Gh];var t=e.constructor;return iE(t)&&e instanceof t?t.prototype:e instanceof El?nE:null}});var lo=g((K$,Yh)=>{"use strict";Yh.exports={}});var Jh=g((X$,Xh)=>{"use strict";var oE=Ge(),wl=Yt(),uE=nr(),lE=xl().indexOf,cE=lo(),Kh=oE([].push);Xh.exports=function(s,e){var t=uE(s),i=0,r=[],a;for(a in t)!wl(cE,a)&&wl(t,a)&&Kh(r,a);for(;e.length>i;)wl(t,a=e[i++])&&(~lE(r,a)||Kh(r,a));return r}});var Al=g((J$,Zh)=>{"use strict";Zh.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var Pl=g((Z$,ef)=>{"use strict";var dE=Jh(),pE=Al();ef.exports=Object.keys||function(e){return dE(e,pE)}});var kl=g((eD,nf)=>{"use strict";var rf=At(),hE=Je(),sf=Ge(),fE=uo(),mE=Pl(),bE=nr(),gE=Ju().f,af=sf(gE),SE=sf([].push),vE=rf&&hE(function(){var s=Object.create(null);return s[2]=2,!af(s,2)}),tf=function(s){return function(e){for(var t=bE(e),i=mE(t),r=vE&&fE(t)===null,a=i.length,n=0,o=[],u;a>n;)u=i[n++],(!rf||(r?u in t:af(t,u)))&&SE(o,s?[u,t[u]]:t[u]);return o}};nf.exports={entries:tf(!0),values:tf(!1)}});var of=g(()=>{"use strict";var yE=Fe(),TE=kl().entries;yE({target:"Object",stat:!0},{entries:function(e){return TE(e)}})});var lf=g((rD,uf)=>{"use strict";of();var IE=Pr();uf.exports=IE.Object.entries});var df=g((sD,cf)=>{"use strict";var xE=lf();cf.exports=xE});var lr=g((aD,pf)=>{"use strict";var EE=df();pf.exports=EE});var cr=g((nD,hf)=>{"use strict";hf.exports={}});var bf=g((oD,mf)=>{"use strict";var wE=De(),AE=Be(),ff=wE.WeakMap;mf.exports=AE(ff)&&/native code/.test(String(ff))});var Bl=g((uD,vf)=>{"use strict";var PE=bf(),Sf=De(),kE=kt(),RE=Lr(),Rl=Yt(),Ml=ta(),ME=oo(),LE=lo(),gf="Object already initialized",Ll=Sf.TypeError,BE=Sf.WeakMap,co,na,po,$E=function(s){return po(s)?na(s):co(s,{})},DE=function(s){return function(e){var t;if(!kE(e)||(t=na(e)).type!==s)throw new Ll("Incompatible receiver, "+s+" required");return t}};PE||Ml.state?(Kt=Ml.state||(Ml.state=new BE),Kt.get=Kt.get,Kt.has=Kt.has,Kt.set=Kt.set,co=function(s,e){if(Kt.has(s))throw new Ll(gf);return e.facade=s,Kt.set(s,e),e},na=function(s){return Kt.get(s)||{}},po=function(s){return Kt.has(s)}):(dr=ME("state"),LE[dr]=!0,co=function(s,e){if(Rl(s,dr))throw new Ll(gf);return e.facade=s,RE(s,dr,e),e},na=function(s){return Rl(s,dr)?s[dr]:{}},po=function(s){return Rl(s,dr)});var Kt,dr;vf.exports={set:co,get:na,has:po,enforce:$E,getterFor:DE}});var Cl=g((lD,Tf)=>{"use strict";var $l=At(),CE=Yt(),yf=Function.prototype,VE=$l&&Object.getOwnPropertyDescriptor,Dl=CE(yf,"name"),OE=Dl&&function(){}.name==="something",_E=Dl&&(!$l||$l&&VE(yf,"name").configurable);Tf.exports={EXISTS:Dl,PROPER:OE,CONFIGURABLE:_E}});var xf=g(If=>{"use strict";var FE=At(),NE=gl(),UE=ur(),qE=ri(),jE=nr(),HE=Pl();If.f=FE&&!NE?Object.defineProperties:function(e,t){qE(e);for(var i=jE(t),r=HE(t),a=r.length,n=0,o;a>n;)UE.f(e,o=r[n++],i[o]);return e}});var Vl=g((dD,Ef)=>{"use strict";var zE=Ei();Ef.exports=zE("document","documentElement")});var Nl=g((pD,Lf)=>{"use strict";var QE=ri(),GE=xf(),wf=Al(),WE=lo(),YE=Vl(),KE=so(),XE=oo(),Af=">",Pf="<",_l="prototype",Fl="script",Rf=XE("IE_PROTO"),Ol=function(){},Mf=function(s){return Pf+Fl+Af+s+Pf+"/"+Fl+Af},kf=function(s){s.write(Mf("")),s.close();var e=s.parentWindow.Object;return s=null,e},JE=function(){var s=KE("iframe"),e="java"+Fl+":",t;return s.style.display="none",YE.appendChild(s),s.src=String(e),t=s.contentWindow.document,t.open(),t.write(Mf("document.F=Object")),t.close(),t.F},ho,fo=function(){try{ho=new ActiveXObject("htmlfile")}catch(e){}fo=typeof document!="undefined"?document.domain&&ho?kf(ho):JE():kf(ho);for(var s=wf.length;s--;)delete fo[_l][wf[s]];return fo()};WE[Rf]=!0;Lf.exports=Object.create||function(e,t){var i;return e!==null?(Ol[_l]=QE(e),i=new Ol,Ol[_l]=null,i[Rf]=e):i=fo(),t===void 0?i:GE.f(i,t)}});var Cr=g((hD,Bf)=>{"use strict";var ZE=Lr();Bf.exports=function(s,e,t,i){return i&&i.enumerable?s[e]=t:ZE(s,e,t),s}});var Hl=g((fD,Cf)=>{"use strict";var ew=Je(),tw=Be(),iw=kt(),rw=Nl(),$f=uo(),sw=Cr(),aw=Ze(),nw=Wt(),jl=aw("iterator"),Df=!1,wi,Ul,ql;[].keys&&(ql=[].keys(),"next"in ql?(Ul=$f($f(ql)),Ul!==Object.prototype&&(wi=Ul)):Df=!0);var ow=!iw(wi)||ew(function(){var s={};return wi[jl].call(s)!==s});ow?wi={}:nw&&(wi=rw(wi));tw(wi[jl])||sw(wi,jl,function(){return this});Cf.exports={IteratorPrototype:wi,BUGGY_SAFARI_ITERATORS:Df}});var mo=g((mD,Of)=>{"use strict";var uw=Ze(),lw=uw("toStringTag"),Vf={};Vf[lw]="z";Of.exports=String(Vf)==="[object z]"});var oa=g((bD,_f)=>{"use strict";var cw=mo(),dw=Be(),bo=ar(),pw=Ze(),hw=pw("toStringTag"),fw=Object,mw=bo(function(){return arguments}())==="Arguments",bw=function(s,e){try{return s[e]}catch(t){}};_f.exports=cw?bo:function(s){var e,t,i;return s===void 0?"Undefined":s===null?"Null":typeof(t=bw(e=fw(s),hw))=="string"?t:mw?bo(e):(i=bo(e))==="Object"&&dw(e.callee)?"Arguments":i}});var Nf=g((gD,Ff)=>{"use strict";var gw=mo(),Sw=oa();Ff.exports=gw?{}.toString:function(){return"[object "+Sw(this)+"]"}});var ua=g((SD,qf)=>{"use strict";var vw=mo(),yw=ur().f,Tw=Lr(),Iw=Yt(),xw=Nf(),Ew=Ze(),Uf=Ew("toStringTag");qf.exports=function(s,e,t,i){var r=t?s:s&&s.prototype;r&&(Iw(r,Uf)||yw(r,Uf,{configurable:!0,value:e}),i&&!vw&&Tw(r,"toString",xw))}});var Hf=g((vD,jf)=>{"use strict";var ww=Hl().IteratorPrototype,Aw=Nl(),Pw=Xs(),kw=ua(),Rw=cr(),Mw=function(){return this};jf.exports=function(s,e,t,i){var r=e+" Iterator";return s.prototype=Aw(ww,{next:Pw(+!i,t)}),kw(s,r,!1,!0),Rw[r]=Mw,s}});var Qf=g((yD,zf)=>{"use strict";var Lw=Ge(),Bw=ii();zf.exports=function(s,e,t){try{return Lw(Bw(Object.getOwnPropertyDescriptor(s,e)[t]))}catch(i){}}});var Wf=g((TD,Gf)=>{"use strict";var $w=kt();Gf.exports=function(s){return $w(s)||s===null}});var Kf=g((ID,Yf)=>{"use strict";var Dw=Wf(),Cw=String,Vw=TypeError;Yf.exports=function(s){if(Dw(s))return s;throw new Vw("Can't set "+Cw(s)+" as a prototype")}});var zl=g((xD,Xf)=>{"use strict";var Ow=Qf(),_w=kt(),Fw=Ui(),Nw=Kf();Xf.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var s=!1,e={},t;try{t=Ow(Object.prototype,"__proto__","set"),t(e,[]),s=e instanceof Array}catch(i){}return function(r,a){return Fw(r),Nw(a),_w(r)&&(s?t(r,a):r.__proto__=a),r}}():void 0)});var um=g((ED,om)=>{"use strict";var Uw=Fe(),qw=Pt(),go=Wt(),am=Cl(),jw=Be(),Hw=Hf(),Jf=uo(),Zf=zl(),zw=ua(),Qw=Lr(),Ql=Cr(),Gw=Ze(),em=cr(),nm=Hl(),Ww=am.PROPER,Yw=am.CONFIGURABLE,tm=nm.IteratorPrototype,So=nm.BUGGY_SAFARI_ITERATORS,la=Gw("iterator"),im="keys",ca="values",rm="entries",sm=function(){return this};om.exports=function(s,e,t,i,r,a,n){Hw(t,e,i);var o=function(v){if(v===r&&h)return h;if(!So&&v&&v in d)return d[v];switch(v){case im:return function(){return new t(this,v)};case ca:return function(){return new t(this,v)};case rm:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,d=s.prototype,c=d[la]||d["@@iterator"]||r&&d[r],h=!So&&c||o(r),p=e==="Array"&&d.entries||c,f,b,S;if(p&&(f=Jf(p.call(new s)),f!==Object.prototype&&f.next&&(!go&&Jf(f)!==tm&&(Zf?Zf(f,tm):jw(f[la])||Ql(f,la,sm)),zw(f,u,!0,!0),go&&(em[u]=sm))),Ww&&r===ca&&c&&c.name!==ca&&(!go&&Yw?Qw(d,"name",ca):(l=!0,h=function(){return qw(c,this)})),r)if(b={values:o(ca),keys:a?h:o(im),entries:o(rm)},n)for(S in b)(So||l||!(S in d))&&Ql(d,S,b[S]);else Uw({target:e,proto:!0,forced:So||l},b);return(!go||n)&&d[la]!==h&&Ql(d,la,h,{name:r}),em[e]=h,b}});var cm=g((wD,lm)=>{"use strict";lm.exports=function(s,e){return{value:s,done:e}}});var Wl=g((AD,mm)=>{"use strict";var Kw=nr(),Gl=aa(),dm=cr(),hm=Bl(),Xw=ur().f,Jw=um(),vo=cm(),Zw=Wt(),eA=At(),fm="Array Iterator",tA=hm.set,iA=hm.getterFor(fm);mm.exports=Jw(Array,"Array",function(s,e){tA(this,{type:fm,target:Kw(s),index:0,kind:e})},function(){var s=iA(this),e=s.target,t=s.index++;if(!e||t>=e.length)return s.target=void 0,vo(void 0,!0);switch(s.kind){case"keys":return vo(t,!1);case"values":return vo(e[t],!1)}return vo([t,e[t]],!1)},"values");var pm=dm.Arguments=dm.Array;Gl("keys");Gl("values");Gl("entries");if(!Zw&&eA&&pm.name!=="values")try{Xw(pm,"name",{value:"values"})}catch(s){}});var gm=g((PD,bm)=>{"use strict";var rA=Ze(),sA=cr(),aA=rA("iterator"),nA=Array.prototype;bm.exports=function(s){return s!==void 0&&(sA.Array===s||nA[aA]===s)}});var Yl=g((kD,vm)=>{"use strict";var oA=oa(),Sm=ea(),uA=Ar(),lA=cr(),cA=Ze(),dA=cA("iterator");vm.exports=function(s){if(!uA(s))return Sm(s,dA)||Sm(s,"@@iterator")||lA[oA(s)]}});var Tm=g((RD,ym)=>{"use strict";var pA=Pt(),hA=ii(),fA=ri(),mA=Zs(),bA=Yl(),gA=TypeError;ym.exports=function(s,e){var t=arguments.length<2?bA(s):e;if(hA(t))return fA(pA(t,s));throw new gA(mA(s)+" is not iterable")}});var Em=g((MD,xm)=>{"use strict";var SA=Pt(),Im=ri(),vA=ea();xm.exports=function(s,e,t){var i,r;Im(s);try{if(i=vA(s,"return"),!i){if(e==="throw")throw t;return t}i=SA(i,s)}catch(a){r=!0,i=a}if(e==="throw")throw t;if(r)throw i;return Im(i),t}});var To=g((LD,km)=>{"use strict";var yA=Mr(),TA=Pt(),IA=ri(),xA=Zs(),EA=gm(),wA=Dr(),wm=Js(),AA=Tm(),PA=Yl(),Am=Em(),kA=TypeError,yo=function(s,e){this.stopped=s,this.result=e},Pm=yo.prototype;km.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=yA(e,i),l,d,c,h,p,f,b,S=function(T){return l&&Am(l,"normal",T),new yo(!0,T)},v=function(T){return r?(IA(T),o?u(T[0],T[1],S):u(T[0],T[1])):o?u(T,S):u(T)};if(a)l=s.iterator;else if(n)l=s;else{if(d=PA(s),!d)throw new kA(xA(s)+" is not iterable");if(EA(d)){for(c=0,h=wA(s);h>c;c++)if(p=v(s[c]),p&&wm(Pm,p))return p;return new yo(!1)}l=AA(s,d)}for(f=a?s.next:l.next;!(b=TA(f,l)).done;){try{p=v(b.value)}catch(T){Am(l,"throw",T)}if(typeof p=="object"&&p&&wm(Pm,p))return p}return new yo(!1)}});var Mm=g((BD,Rm)=>{"use strict";var RA=At(),MA=ur(),LA=Xs();Rm.exports=function(s,e,t){RA?MA.f(s,e,LA(0,t)):s[e]=t}});var Lm=g(()=>{"use strict";var BA=Fe(),$A=To(),DA=Mm();BA({target:"Object",stat:!0},{fromEntries:function(e){var t={};return $A(e,function(i,r){DA(t,i,r)},{AS_ENTRIES:!0}),t}})});var $m=g((CD,Bm)=>{"use strict";Wl();Lm();var CA=Pr();Bm.exports=CA.Object.fromEntries});var Cm=g((VD,Dm)=>{"use strict";Dm.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 Om=g(()=>{"use strict";Wl();var VA=Cm(),OA=De(),_A=ua(),Vm=cr();for(Io in VA)_A(OA[Io],Io),Vm[Io]=Vm.Array;var Io});var Fm=g((FD,_m)=>{"use strict";var FA=$m();Om();_m.exports=FA});var Kl=g((ND,Nm)=>{"use strict";var NA=Fm();Nm.exports=NA});var Um=g(()=>{"use strict"});var Xl=g((jD,qm)=>{"use strict";var da=De(),UA=or(),qA=ar(),xo=function(s){return UA.slice(0,s.length)===s};qm.exports=function(){return xo("Bun/")?"BUN":xo("Cloudflare-Workers")?"CLOUDFLARE":xo("Deno/")?"DENO":xo("Node.js/")?"NODE":da.Bun&&typeof Bun.version=="string"?"BUN":da.Deno&&typeof Deno.version=="object"?"DENO":qA(da.process)==="process"?"NODE":da.window&&da.document?"BROWSER":"REST"}()});var Eo=g((HD,jm)=>{"use strict";var jA=Xl();jm.exports=jA==="NODE"});var zm=g((zD,Hm)=>{"use strict";var HA=ur();Hm.exports=function(s,e,t){return HA.f(s,e,t)}});var Wm=g((QD,Gm)=>{"use strict";var zA=Ei(),QA=zm(),GA=Ze(),WA=At(),Qm=GA("species");Gm.exports=function(s){var e=zA(s);WA&&e&&!e[Qm]&&QA(e,Qm,{configurable:!0,get:function(){return this}})}});var Km=g((GD,Ym)=>{"use strict";var YA=Js(),KA=TypeError;Ym.exports=function(s,e){if(YA(e,s))return s;throw new KA("Incorrect invocation")}});var Zl=g((WD,Xm)=>{"use strict";var XA=Ge(),JA=Be(),Jl=ta(),ZA=XA(Function.toString);JA(Jl.inspectSource)||(Jl.inspectSource=function(s){return ZA(s)});Xm.exports=Jl.inspectSource});var tc=g((YD,ib)=>{"use strict";var eP=Ge(),tP=Je(),Jm=Be(),iP=oa(),rP=Ei(),sP=Zl(),Zm=function(){},eb=rP("Reflect","construct"),ec=/^\s*(?:class|function)\b/,aP=eP(ec.exec),nP=!ec.test(Zm),pa=function(e){if(!Jm(e))return!1;try{return eb(Zm,[],e),!0}catch(t){return!1}},tb=function(e){if(!Jm(e))return!1;switch(iP(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return nP||!!aP(ec,sP(e))}catch(t){return!0}};tb.sham=!0;ib.exports=!eb||tP(function(){var s;return pa(pa.call)||!pa(Object)||!pa(function(){s=!0})||s})?tb:pa});var sb=g((KD,rb)=>{"use strict";var oP=tc(),uP=Zs(),lP=TypeError;rb.exports=function(s){if(oP(s))return s;throw new lP(uP(s)+" is not a constructor")}});var ic=g((XD,nb)=>{"use strict";var ab=ri(),cP=sb(),dP=Ar(),pP=Ze(),hP=pP("species");nb.exports=function(s,e){var t=ab(s).constructor,i;return t===void 0||dP(i=ab(t)[hP])?e:cP(i)}});var ub=g((JD,ob)=>{"use strict";var fP=Ge();ob.exports=fP([].slice)});var cb=g((ZD,lb)=>{"use strict";var mP=TypeError;lb.exports=function(s,e){if(s<e)throw new mP("Not enough arguments");return s}});var rc=g((e0,db)=>{"use strict";var bP=or();db.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(bP)});var pc=g((t0,yb)=>{"use strict";var Mt=De(),gP=Wu(),SP=Mr(),pb=Be(),vP=Yt(),vb=Je(),hb=Vl(),yP=ub(),fb=so(),TP=cb(),IP=rc(),xP=Eo(),lc=Mt.setImmediate,cc=Mt.clearImmediate,EP=Mt.process,sc=Mt.Dispatch,wP=Mt.Function,mb=Mt.MessageChannel,AP=Mt.String,ac=0,ha={},bb="onreadystatechange",fa,pr,nc,oc;vb(function(){fa=Mt.location});var dc=function(s){if(vP(ha,s)){var e=ha[s];delete ha[s],e()}},uc=function(s){return function(){dc(s)}},gb=function(s){dc(s.data)},Sb=function(s){Mt.postMessage(AP(s),fa.protocol+"//"+fa.host)};(!lc||!cc)&&(lc=function(e){TP(arguments.length,1);var t=pb(e)?e:wP(e),i=yP(arguments,1);return ha[++ac]=function(){gP(t,void 0,i)},pr(ac),ac},cc=function(e){delete ha[e]},xP?pr=function(s){EP.nextTick(uc(s))}:sc&&sc.now?pr=function(s){sc.now(uc(s))}:mb&&!IP?(nc=new mb,oc=nc.port2,nc.port1.onmessage=gb,pr=SP(oc.postMessage,oc)):Mt.addEventListener&&pb(Mt.postMessage)&&!Mt.importScripts&&fa&&fa.protocol!=="file:"&&!vb(Sb)?(pr=Sb,Mt.addEventListener("message",gb,!1)):bb in fb("script")?pr=function(s){hb.appendChild(fb("script"))[bb]=function(){hb.removeChild(this),dc(s)}}:pr=function(s){setTimeout(uc(s),0)});yb.exports={set:lc,clear:cc}});var xb=g((i0,Ib)=>{"use strict";var Tb=De(),PP=At(),kP=Object.getOwnPropertyDescriptor;Ib.exports=function(s){if(!PP)return Tb[s];var e=kP(Tb,s);return e&&e.value}});var hc=g((r0,wb)=>{"use strict";var Eb=function(){this.head=null,this.tail=null};Eb.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}}};wb.exports=Eb});var Pb=g((s0,Ab)=>{"use strict";var RP=or();Ab.exports=/ipad|iphone|ipod/i.test(RP)&&typeof Pebble!="undefined"});var Rb=g((a0,kb)=>{"use strict";var MP=or();kb.exports=/web0s(?!.*chrome)/i.test(MP)});var Vb=g((n0,Cb)=>{"use strict";var Or=De(),LP=xb(),Mb=Mr(),fc=pc().set,BP=hc(),$P=rc(),DP=Pb(),CP=Rb(),mc=Eo(),Lb=Or.MutationObserver||Or.WebKitMutationObserver,Bb=Or.document,$b=Or.process,wo=Or.Promise,Sc=LP("queueMicrotask"),Vr,bc,gc,Ao,Db;Sc||(ma=new BP,ba=function(){var s,e;for(mc&&(s=$b.domain)&&s.exit();e=ma.get();)try{e()}catch(t){throw ma.head&&Vr(),t}s&&s.enter()},!$P&&!mc&&!CP&&Lb&&Bb?(bc=!0,gc=Bb.createTextNode(""),new Lb(ba).observe(gc,{characterData:!0}),Vr=function(){gc.data=bc=!bc}):!DP&&wo&&wo.resolve?(Ao=wo.resolve(void 0),Ao.constructor=wo,Db=Mb(Ao.then,Ao),Vr=function(){Db(ba)}):mc?Vr=function(){$b.nextTick(ba)}:(fc=Mb(fc,Or),Vr=function(){fc(ba)}),Sc=function(s){ma.head||Vr(),ma.add(s)});var ma,ba;Cb.exports=Sc});var _b=g((o0,Ob)=>{"use strict";Ob.exports=function(s,e){try{arguments.length===1?console.error(s):console.error(s,e)}catch(t){}}});var Po=g((u0,Fb)=>{"use strict";Fb.exports=function(s){try{return{error:!1,value:s()}}catch(e){return{error:!0,value:e}}}});var hr=g((l0,Nb)=>{"use strict";var VP=De();Nb.exports=VP.Promise});var _r=g((c0,Hb)=>{"use strict";var OP=De(),ga=hr(),_P=Be(),FP=bl(),NP=Zl(),UP=Ze(),Ub=Xl(),qP=Wt(),vc=rl(),qb=ga&&ga.prototype,jP=UP("species"),yc=!1,jb=_P(OP.PromiseRejectionEvent),HP=FP("Promise",function(){var s=NP(ga),e=s!==String(ga);if(!e&&vc===66||qP&&!(qb.catch&&qb.finally))return!0;if(!vc||vc<51||!/native code/.test(s)){var t=new ga(function(a){a(1)}),i=function(a){a(function(){},function(){})},r=t.constructor={};if(r[jP]=i,yc=t.then(function(){})instanceof i,!yc)return!0}return!e&&(Ub==="BROWSER"||Ub==="DENO")&&!jb});Hb.exports={CONSTRUCTOR:HP,REJECTION_EVENT:jb,SUBCLASSING:yc}});var Fr=g((d0,Qb)=>{"use strict";var zb=ii(),zP=TypeError,QP=function(s){var e,t;this.promise=new s(function(i,r){if(e!==void 0||t!==void 0)throw new zP("Bad Promise constructor");e=i,t=r}),this.resolve=zb(e),this.reject=zb(t)};Qb.exports.f=function(s){return new QP(s)}});var dg=g(()=>{"use strict";var GP=Fe(),WP=Wt(),Lo=Eo(),ji=De(),jr=Pt(),Gb=Cr(),Wb=zl(),YP=ua(),KP=Wm(),XP=ii(),Mo=Be(),JP=kt(),ZP=Km(),ek=ic(),Zb=pc().set,wc=Vb(),tk=_b(),ik=Po(),rk=hc(),eg=Bl(),Bo=hr(),Ac=_r(),tg=Fr(),$o="Promise",ig=Ac.CONSTRUCTOR,sk=Ac.REJECTION_EVENT,ak=Ac.SUBCLASSING,Tc=eg.getterFor($o),nk=eg.set,Nr=Bo&&Bo.prototype,fr=Bo,ko=Nr,rg=ji.TypeError,Ic=ji.document,Pc=ji.process,xc=tg.f,ok=xc,uk=!!(Ic&&Ic.createEvent&&ji.dispatchEvent),sg="unhandledrejection",lk="rejectionhandled",Yb=0,ag=1,ck=2,kc=1,ng=2,Ro,Kb,dk,Xb,og=function(s){var e;return JP(s)&&Mo(e=s.then)?e:!1},ug=function(s,e){var t=e.value,i=e.state===ag,r=i?s.ok:s.fail,a=s.resolve,n=s.reject,o=s.domain,u,l,d;try{r?(i||(e.rejection===ng&&hk(e),e.rejection=kc),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),d=!0)),u===s.promise?n(new rg("Promise-chain cycle")):(l=og(u))?jr(l,u,a,n):a(u)):n(t)}catch(c){o&&!d&&o.exit(),n(c)}},lg=function(s,e){s.notified||(s.notified=!0,wc(function(){for(var t=s.reactions,i;i=t.get();)ug(i,s);s.notified=!1,e&&!s.rejection&&pk(s)}))},cg=function(s,e,t){var i,r;uk?(i=Ic.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(s,!1,!0),ji.dispatchEvent(i)):i={promise:e,reason:t},!sk&&(r=ji["on"+s])?r(i):s===sg&&tk("Unhandled promise rejection",t)},pk=function(s){jr(Zb,ji,function(){var e=s.facade,t=s.value,i=Jb(s),r;if(i&&(r=ik(function(){Lo?Pc.emit("unhandledRejection",t,e):cg(sg,e,t)}),s.rejection=Lo||Jb(s)?ng:kc,r.error))throw r.value})},Jb=function(s){return s.rejection!==kc&&!s.parent},hk=function(s){jr(Zb,ji,function(){var e=s.facade;Lo?Pc.emit("rejectionHandled",e):cg(lk,e,s.value)})},Ur=function(s,e,t){return function(i){s(e,i,t)}},qr=function(s,e,t){s.done||(s.done=!0,t&&(s=t),s.value=e,s.state=ck,lg(s,!0))},Ec=function(s,e,t){if(!s.done){s.done=!0,t&&(s=t);try{if(s.facade===e)throw new rg("Promise can't be resolved itself");var i=og(e);i?wc(function(){var r={done:!1};try{jr(i,e,Ur(Ec,r,s),Ur(qr,r,s))}catch(a){qr(r,a,s)}}):(s.value=e,s.state=ag,lg(s,!1))}catch(r){qr({done:!1},r,s)}}};if(ig&&(fr=function(e){ZP(this,ko),XP(e),jr(Ro,this);var t=Tc(this);try{e(Ur(Ec,t),Ur(qr,t))}catch(i){qr(t,i)}},ko=fr.prototype,Ro=function(e){nk(this,{type:$o,done:!1,notified:!1,parent:!1,reactions:new rk,rejection:!1,state:Yb,value:void 0})},Ro.prototype=Gb(ko,"then",function(e,t){var i=Tc(this),r=xc(ek(this,fr));return i.parent=!0,r.ok=Mo(e)?e:!0,r.fail=Mo(t)&&t,r.domain=Lo?Pc.domain:void 0,i.state===Yb?i.reactions.add(r):wc(function(){ug(r,i)}),r.promise}),Kb=function(){var s=new Ro,e=Tc(s);this.promise=s,this.resolve=Ur(Ec,e),this.reject=Ur(qr,e)},tg.f=xc=function(s){return s===fr||s===dk?new Kb(s):ok(s)},!WP&&Mo(Bo)&&Nr!==Object.prototype)){Xb=Nr.then,ak||Gb(Nr,"then",function(e,t){var i=this;return new fr(function(r,a){jr(Xb,i,r,a)}).then(e,t)},{unsafe:!0});try{delete Nr.constructor}catch(s){}Wb&&Wb(Nr,ko)}GP({global:!0,constructor:!0,wrap:!0,forced:ig},{Promise:fr});YP(fr,$o,!1,!0);KP($o)});var bg=g((f0,mg)=>{"use strict";var fk=Ze(),hg=fk("iterator"),fg=!1;try{pg=0,Rc={next:function(){return{done:!!pg++}},return:function(){fg=!0}},Rc[hg]=function(){return this},Array.from(Rc,function(){throw 2})}catch(s){}var pg,Rc;mg.exports=function(s,e){try{if(!e&&!fg)return!1}catch(r){return!1}var t=!1;try{var i={};i[hg]=function(){return{next:function(){return{done:t=!0}}}},s(i)}catch(r){}return t}});var Mc=g((m0,gg)=>{"use strict";var mk=hr(),bk=bg(),gk=_r().CONSTRUCTOR;gg.exports=gk||!bk(function(s){mk.all(s).then(void 0,function(){})})});var Sg=g(()=>{"use strict";var Sk=Fe(),vk=Pt(),yk=ii(),Tk=Fr(),Ik=Po(),xk=To(),Ek=Mc();Sk({target:"Promise",stat:!0,forced:Ek},{all:function(e){var t=this,i=Tk.f(t),r=i.resolve,a=i.reject,n=Ik(function(){var o=yk(t.resolve),u=[],l=0,d=1;xk(e,function(c){var h=l++,p=!1;d++,vk(o,t,c).then(function(f){p||(p=!0,u[h]=f,--d||r(u))},a)}),--d||r(u)});return n.error&&a(n.value),i.promise}})});var yg=g(()=>{"use strict";var wk=Fe(),Ak=Wt(),Pk=_r().CONSTRUCTOR,Bc=hr(),kk=Ei(),Rk=Be(),Mk=Cr(),vg=Bc&&Bc.prototype;wk({target:"Promise",proto:!0,forced:Pk,real:!0},{catch:function(s){return this.then(void 0,s)}});!Ak&&Rk(Bc)&&(Lc=kk("Promise").prototype.catch,vg.catch!==Lc&&Mk(vg,"catch",Lc,{unsafe:!0}));var Lc});var Tg=g(()=>{"use strict";var Lk=Fe(),Bk=Pt(),$k=ii(),Dk=Fr(),Ck=Po(),Vk=To(),Ok=Mc();Lk({target:"Promise",stat:!0,forced:Ok},{race:function(e){var t=this,i=Dk.f(t),r=i.reject,a=Ck(function(){var n=$k(t.resolve);Vk(e,function(o){Bk(n,t,o).then(i.resolve,r)})});return a.error&&r(a.value),i.promise}})});var Ig=g(()=>{"use strict";var _k=Fe(),Fk=Fr(),Nk=_r().CONSTRUCTOR;_k({target:"Promise",stat:!0,forced:Nk},{reject:function(e){var t=Fk.f(this),i=t.reject;return i(e),t.promise}})});var $c=g((E0,xg)=>{"use strict";var Uk=ri(),qk=kt(),jk=Fr();xg.exports=function(s,e){if(Uk(s),qk(e)&&e.constructor===s)return e;var t=jk.f(s),i=t.resolve;return i(e),t.promise}});var Ag=g(()=>{"use strict";var Hk=Fe(),zk=Ei(),Eg=Wt(),Qk=hr(),wg=_r().CONSTRUCTOR,Gk=$c(),Wk=zk("Promise"),Yk=Eg&&!wg;Hk({target:"Promise",stat:!0,forced:Eg||wg},{resolve:function(e){return Gk(Yk&&this===Wk?Qk:this,e)}})});var Pg=g(()=>{"use strict";dg();Sg();yg();Tg();Ig();Ag()});var Lg=g(()=>{"use strict";var Kk=Fe(),Xk=Wt(),Do=hr(),Jk=Je(),Rg=Ei(),Mg=Be(),Zk=ic(),kg=$c(),eR=Cr(),Cc=Do&&Do.prototype,tR=!!Do&&Jk(function(){Cc.finally.call({then:function(){}},function(){})});Kk({target:"Promise",proto:!0,real:!0,forced:tR},{finally:function(s){var e=Zk(this,Rg("Promise")),t=Mg(s);return this.then(t?function(i){return kg(e,s()).then(function(){return i})}:s,t?function(i){return kg(e,s()).then(function(){throw i})}:s)}});!Xk&&Mg(Do)&&(Dc=Rg("Promise").prototype.finally,Cc.finally!==Dc&&eR(Cc,"finally",Dc,{unsafe:!0}));var Dc});var $g=g((L0,Bg)=>{"use strict";Um();Pg();Lg();var iR=qi();Bg.exports=iR("Promise","finally")});var Cg=g((B0,Dg)=>{"use strict";var rR=$g();Dg.exports=rR});var Co=g(($0,Vg)=>{"use strict";var sR=Cg();Vg.exports=sR});var jg=g(()=>{"use strict";var lR=Fe(),cR=kl().values;lR({target:"Object",stat:!0},{values:function(e){return cR(e)}})});var zg=g((cC,Hg)=>{"use strict";jg();var dR=Pr();Hg.exports=dR.Object.values});var Gg=g((dC,Qg)=>{"use strict";var pR=zg();Qg.exports=pR});var mr=g((pC,Wg)=>{"use strict";var hR=Gg();Wg.exports=hR});var aS=g(()=>{"use strict";var xR=Fe(),ER=kr(),wR=Dr(),AR=sa(),PR=aa();xR({target:"Array",proto:!0},{at:function(e){var t=ER(this),i=wR(t),r=AR(e),a=r>=0?r:i+r;return a<0||a>=i?void 0:t[a]}});PR("at")});var oS=g((bV,nS)=>{"use strict";aS();var kR=qi();nS.exports=kR("Array","at")});var lS=g((gV,uS)=>{"use strict";var RR=oS();uS.exports=RR});var Xt=g((SV,cS)=>{"use strict";var MR=lS();cS.exports=MR});var ed=g((GO,BS)=>{"use strict";var UR=ar();BS.exports=Array.isArray||function(e){return UR(e)==="Array"}});var DS=g((WO,$S)=>{"use strict";var qR=TypeError,jR=9007199254740991;$S.exports=function(s){if(s>jR)throw qR("Maximum allowed index exceeded");return s}});var OS=g((YO,VS)=>{"use strict";var HR=ed(),zR=Dr(),QR=DS(),GR=Mr(),CS=function(s,e,t,i,r,a,n,o){for(var u=r,l=0,d=n?GR(n,o):!1,c,h;l<i;)l in t&&(c=d?d(t[l],l,e):t[l],a>0&&HR(c)?(h=zR(c),u=CS(s,e,c,h,u,a-1)-1):(QR(u+1),s[u]=c),u++),l++;return u};VS.exports=CS});var US=g((KO,NS)=>{"use strict";var _S=ed(),WR=tc(),YR=kt(),KR=Ze(),XR=KR("species"),FS=Array;NS.exports=function(s){var e;return _S(s)&&(e=s.constructor,WR(e)&&(e===FS||_S(e.prototype))?e=void 0:YR(e)&&(e=e[XR],e===null&&(e=void 0))),e===void 0?FS:e}});var jS=g((XO,qS)=>{"use strict";var JR=US();qS.exports=function(s,e){return new(JR(s))(e===0?0:e)}});var HS=g(()=>{"use strict";var ZR=Fe(),eM=OS(),tM=ii(),iM=kr(),rM=Dr(),sM=jS();ZR({target:"Array",proto:!0},{flatMap:function(e){var t=iM(this),i=rM(t),r;return tM(e),r=sM(t,0),r.length=eM(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var zS=g(()=>{"use strict";var aM=aa();aM("flatMap")});var GS=g((i_,QS)=>{"use strict";HS();zS();var nM=qi();QS.exports=nM("Array","flatMap")});var YS=g((r_,WS)=>{"use strict";var oM=GS();WS.exports=oM});var Ma=g((s_,KS)=>{"use strict";var uM=YS();KS.exports=uM});var La=g((a_,XS)=>{"use strict";var lM=oa(),cM=String;XS.exports=function(s){if(lM(s)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return cM(s)}});var td=g((n_,JS)=>{"use strict";JS.exports=`
7
- \v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`});var tv=g((o_,ev)=>{"use strict";var dM=Ge(),pM=Ui(),hM=La(),rd=td(),ZS=dM("".replace),fM=RegExp("^["+rd+"]+"),mM=RegExp("(^|[^"+rd+"])["+rd+"]+$"),id=function(s){return function(e){var t=hM(pM(e));return s&1&&(t=ZS(t,fM,"")),s&2&&(t=ZS(t,mM,"$1")),t}};ev.exports={start:id(1),end:id(2),trim:id(3)}});var av=g((u_,sv)=>{"use strict";var bM=Cl().PROPER,gM=Je(),iv=td(),rv="\u200B\x85\u180E";sv.exports=function(s){return gM(function(){return!!iv[s]()||rv[s]()!==rv||bM&&iv[s].name!==s})}});var sd=g((l_,nv)=>{"use strict";var SM=tv().start,vM=av();nv.exports=vM("trimStart")?function(){return SM(this)}:"".trimStart});var uv=g(()=>{"use strict";var yM=Fe(),ov=sd();yM({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==ov},{trimLeft:ov})});var cv=g(()=>{"use strict";uv();var TM=Fe(),lv=sd();TM({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==lv},{trimStart:lv})});var pv=g((f_,dv)=>{"use strict";cv();var IM=qi();dv.exports=IM("String","trimLeft")});var fv=g((m_,hv)=>{"use strict";var xM=pv();hv.exports=xM});var bv=g((b_,mv)=>{"use strict";var EM=fv();mv.exports=EM});var Rv=g(()=>{"use strict"});var Mv=g(()=>{"use strict"});var Bv=g((QN,Lv)=>{"use strict";var HM=kt(),zM=ar(),QM=Ze(),GM=QM("match");Lv.exports=function(s){var e;return HM(s)&&((e=s[GM])!==void 0?!!e:zM(s)==="RegExp")}});var Dv=g((GN,$v)=>{"use strict";var WM=ri();$v.exports=function(){var s=WM(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 Ov=g((WN,Vv)=>{"use strict";var YM=Pt(),KM=Yt(),XM=Js(),JM=Dv(),Cv=RegExp.prototype;Vv.exports=function(s){var e=s.flags;return e===void 0&&!("flags"in Cv)&&!KM(s,"flags")&&XM(Cv,s)?YM(JM,s):e}});var Fv=g((YN,_v)=>{"use strict";var ld=Ge(),ZM=kr(),eL=Math.floor,od=ld("".charAt),tL=ld("".replace),ud=ld("".slice),iL=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,rL=/\$([$&'`]|\d{1,2})/g;_v.exports=function(s,e,t,i,r,a){var n=t+s.length,o=i.length,u=rL;return r!==void 0&&(r=ZM(r),u=iL),tL(a,u,function(l,d){var c;switch(od(d,0)){case"$":return"$";case"&":return s;case"`":return ud(e,0,t);case"'":return ud(e,n);case"<":c=r[ud(d,1,-1)];break;default:var h=+d;if(h===0)return l;if(h>o){var p=eL(h/10);return p===0?l:p<=o?i[p-1]===void 0?od(d,1):i[p-1]+od(d,1):l}c=i[h-1]}return c===void 0?"":c})}});var qv=g(()=>{"use strict";var sL=Fe(),aL=Pt(),dd=Ge(),Nv=Ui(),nL=Be(),oL=Ar(),uL=Bv(),ts=La(),lL=ea(),cL=Ov(),dL=Fv(),pL=Ze(),hL=Wt(),fL=pL("replace"),mL=TypeError,cd=dd("".indexOf),bL=dd("".replace),Uv=dd("".slice),gL=Math.max;sL({target:"String",proto:!0},{replaceAll:function(e,t){var i=Nv(this),r,a,n,o,u,l,d,c,h,p,f=0,b="";if(!oL(e)){if(r=uL(e),r&&(a=ts(Nv(cL(e))),!~cd(a,"g")))throw new mL("`.replaceAll` does not allow non-global regexes");if(n=lL(e,fL),n)return aL(n,e,i,t);if(hL&&r)return bL(ts(i),e,t)}for(o=ts(i),u=ts(e),l=nL(t),l||(t=ts(t)),d=u.length,c=gL(1,d),h=cd(o,u);h!==-1;)p=l?ts(t(u,h,o)):dL(u,o,h,[],void 0,t),b+=Uv(o,f,h)+p,f=h+d,h=h+c>o.length?-1:cd(o,u,h+c);return f<o.length&&(b+=Uv(o,f)),b}})});var Hv=g((JN,jv)=>{"use strict";Rv();Mv();qv();var SL=qi();jv.exports=SL("String","replaceAll")});var Qv=g((ZN,zv)=>{"use strict";var vL=Hv();zv.exports=vL});var pd=g((eU,Gv)=>{"use strict";var yL=Qv();Gv.exports=yL});var Yv=g((tU,Wv)=>{"use strict";var TL=sa(),IL=La(),xL=Ui(),EL=RangeError;Wv.exports=function(e){var t=IL(xL(this)),i="",r=TL(e);if(r<0||r===1/0)throw new EL("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var ey=g((iU,Zv)=>{"use strict";var Jv=Ge(),wL=Il(),Kv=La(),AL=Yv(),PL=Ui(),kL=Jv(AL),RL=Jv("".slice),ML=Math.ceil,Xv=function(s){return function(e,t,i){var r=Kv(PL(e)),a=wL(t),n=r.length,o=i===void 0?" ":Kv(i),u,l;return a<=n||o===""?r:(u=a-n,l=kL(o,ML(u/o.length)),l.length>u&&(l=RL(l,0,u)),s?r+l:l+r)}};Zv.exports={start:Xv(!1),end:Xv(!0)}});var iy=g((rU,ty)=>{"use strict";var LL=or();ty.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(LL)});var ry=g(()=>{"use strict";var BL=Fe(),$L=ey().start,DL=iy();BL({target:"String",proto:!0,forced:DL},{padStart:function(e){return $L(this,e,arguments.length>1?arguments[1]:void 0)}})});var ay=g((nU,sy)=>{"use strict";ry();var CL=qi();sy.exports=CL("String","padStart")});var oy=g((oU,ny)=>{"use strict";var VL=ay();ny.exports=VL});var hd=g((uU,uy)=>{"use strict";var OL=oy();uy.exports=OL});var AB={};kT(AB,{ChromecastState:()=>Gs,HttpConnectionType:()=>eo,Observable:()=>li.Observable,PlaybackState:()=>ut,Player:()=>Jn,PredefinedQualityLimits:()=>Ws,SDK_VERSION:()=>wB,Subject:()=>li.Subject,Subscription:()=>li.Subscription,Surface:()=>to,VERSION:()=>Qu,ValueSubject:()=>li.ValueSubject,VideoFormat:()=>ti,VideoQuality:()=>li.VideoQuality,clientChecker:()=>J,isMobile:()=>Hr});module.exports=RT(AB);var Qu="2.0.135-dev.f94adb28.0";var ut=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(ut||{}),ti=(x=>(x.MPEG="MPEG",x.DASH="DASH",x.DASH_SEP="DASH_SEP",x.DASH_SEP_VK="DASH_SEP",x.DASH_WEBM="DASH_WEBM",x.DASH_WEBM_AV1="DASH_WEBM_AV1",x.DASH_STREAMS="DASH_STREAMS",x.DASH_WEBM_VK="DASH_WEBM",x.DASH_ONDEMAND="DASH_ONDEMAND",x.DASH_ONDEMAND_VK="DASH_ONDEMAND",x.DASH_LIVE="DASH_LIVE",x.DASH_LIVE_CMAF="DASH_LIVE_CMAF",x.DASH_LIVE_WEBM="DASH_LIVE_WEBM",x.HLS="HLS",x.HLS_ONDEMAND="HLS_ONDEMAND",x.HLS_JS="HLS",x.HLS_LIVE="HLS_LIVE",x.HLS_LIVE_CMAF="HLS_LIVE_CMAF",x.WEB_RTC_LIVE="WEB_RTC_LIVE",x))(ti||{});var Gs=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(Gs||{}),eo=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(eo||{});var to=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(to||{}),Ws=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Ws||{});var IT=Y(Rt(),1);var oe=require("@vkontakte/videoplayer-shared/es2018");var qh=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 no=class{constructor(e){this.connection$=new oe.ValueSubject(void 0);this.castState$=new oe.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new oe.Subject;this.realCastState$=new oe.ValueSubject("NOT_AVAILABLE");this.subscription=new oe.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,oe.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||qh("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:oe.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,oe.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,oe.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,oe.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,oe.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,oe.assertNever)(r.sessionState)}})).add((0,oe.merge)((0,oe.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,oe.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,oe.map)(r=>r.castState)),(0,oe.observableFrom)([i.getCastState()])).pipe((0,oe.filterChanged)(),(0,oe.map)(Xx),(0,oe.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let a=r==="CONNECTED",n=(0,oe.isNonNullable)(this.connection$.getValue());if(a&&!n){let l=i.getCurrentSession();(0,oe.assertNonNullable)(l);let d=l.getCastDevice(),c=(u=(o=l.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,oe.isNullable)(c)||c===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:l,castDevice:d}))}else!a&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,oe.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:oe.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:a})}}},Xx=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,oe.assertNever)(s)}};var Qd=Y(Rt(),1),lT=Y(lr(),1),cT=Y(Kl(),1);var Ng=Y(Co(),1);var Vc=require("@vkontakte/videoplayer-shared/es2018");var $e=(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,Vc.assertNever)(t)}return s},Hi=(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,Vc.assertNever)(e)}};var O=(s,e,t=!1)=>{let i=s.getTransition();(t||!i||i.to===e)&&s.setState(e)};var si=require("@vkontakte/videoplayer-shared/es2018"),ue=class{constructor(e){this.transitionStarted$=new si.Subject;this.transitionEnded$=new si.Subject;this.transitionUpdated$=new si.Subject;this.forceChanged$=new si.Subject;this.stateChangeStarted$=(0,si.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,si.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,si.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 Og=require("@vkontakte/videoplayer-shared/es2018"),_g=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_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,Og.assertNever)(s)}};var G=require("@vkontakte/videoplayer-shared/es2018");var aR=5,nR=5,oR=500,Fg=7e3,Sa=class{constructor(e){this.subscription=new G.Subscription;this.loadMediaTimeoutSubscription=new G.Subscription;this.videoState=new ue("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,G.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,G.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,G.assertNever)(e)}break}default:(0,G.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(_g(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 G.Subscription;this.subscription.add(e),this.subscription.add((0,G.merge)(this.videoState.stateChangeStarted$.pipe((0,G.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,G.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 G.Subject;e.add(r.pipe((0,G.debounce)(oR)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let a=NaN;e.add((0,G.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)>aR)&&r.next(o),a=o})),e.add((0,G.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,G.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,G.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,G.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<nR&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),O(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,G.assertNever)(n)}}),t((0,G.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,G.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,G.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,G.observableFrom)(["init"])).pipe((0,G.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"),O(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),O(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=this.createMediaInfo(e),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"),O(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"),O(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"&&O(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()}createMediaInfo(e){var l;let t=this.params.source,i,r,a;switch(e){case"MPEG":{let d=t[e];(0,G.assertNonNullable)(d);let c=(0,G.getHighestQuality)(Object.keys(d));(0,G.assertNonNullable)(c);let h=d[c];(0,G.assertNonNullable)(h),i=h,r="video/mp4",a=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let d=t[e];(0,G.assertNonNullable)(d),i=d.url,r="application/x-mpegurl",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let d=t[e];(0,G.assertNonNullable)(d),i=d.url,r="application/dash+xml",a=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let d=t[e];(0,G.assertNonNullable)(d),i=d.url,r="application/dash+xml",a=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let d=t[e];(0,G.assertNonNullable)(d),i=$e(d.url),r="application/x-mpegurl",a=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let d="Unsupported format for Chromecast",c=new Error(d);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:G.ErrorCategory.VIDEO_PIPELINE,message:d,thrown:c}),c}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,G.assertNever)(e)}let n=new chrome.cast.media.MediaInfo((l=this.params.meta.videoId)!=null?l:i,r);n.contentUrl=i,n.streamType=a,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,G.isNonNullable)(o)&&(n.metadata.title=o),(0,G.isNonNullable)(u)&&(n.metadata.subtitle=u),n}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,G.timeout)(Fg).subscribe(()=>a(`timeout(${Fg})`)))});(0,Ng.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:G.ErrorCategory.VIDEO_PIPELINE,message:a,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var Jc=Y(Rt(),1);var Nc=require("@vkontakte/videoplayer-shared/es2018");var Ug=require("@vkontakte/videoplayer-shared/es2018"),qg=s=>{try{s.pause(),s.playbackRate=0,(0,Ug.clearVideoElement)(s),s.remove()}catch(e){console.error(e)}};var Vo=require("@vkontakte/videoplayer-shared/es2018"),Oc=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)}},_c=window.WeakMap?new WeakMap:new Oc,Fc=window.WeakMap?new WeakMap:new Map,uR=(s,e=20)=>{let t=0;return(0,Vo.fromEvent)(s,"ratechange").subscribe(i=>{t++,t>=e&&(s.currentTime=s.currentTime,t=0)})},ht=(s,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=s.querySelector("video"),r=!!i;i?(0,Nc.clearVideoElement)(i):(i=document.createElement("video"),s.appendChild(i)),_c.set(i,r);let a=new Vo.Subscription;return a.add(uR(i,e)),Fc.set(i,a),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},ft=s=>{let e=Fc.get(s);e==null||e.unsubscribe(),Fc.delete(s);let t=_c.get(s);_c.delete(s),t?(0,Nc.clearVideoElement)(s):qg(s)};var Uc=Y(mr(),1),W=require("@vkontakte/videoplayer-shared/es2018");var zi=require("@vkontakte/videoplayer-shared/es2018"),Oo=(s,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:a}={})=>{let n=s.getState(),o=e(),u=(0,zi.isNullable)(r),l=new zi.Subscription;return r&&l.add(r.subscribe(d=>{let c=s.getState();i(d,c)&&s.setState(d)},a)),i(o,n)||(t(n),u&&s.setState(n)),l.add(s.stateChangeStarted$.subscribe(d=>{t(d.to),u&&s.setState(d.to)},a)),l},ai=(s,e,t)=>Oo(e,()=>s.loop,i=>{(0,zi.isNonNullable)(i)&&(s.loop=i)},{onError:t}),mt=(s,e,t,i)=>Oo(e,()=>({muted:s.muted,volume:s.volume}),r=>{(0,zi.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}),Ct=(s,e,t,i)=>Oo(e,()=>s.playbackRate,r=>{(0,zi.isNonNullable)(r)&&(s.playbackRate=r)},{changed$:t,onError:i}),va=Oo;var fR=s=>["__",s.language,s.label].join("|"),mR=(s,e)=>{if(s.id===e)return!0;let[t,i,r]=e.split("|");return s.language===i&&s.label===r},qc=class s{constructor(e){this.available$=new W.Subject;this.current$=new W.ValueSubject(void 0);this.error$=new W.Subject;this.subscription=new W.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:W.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(va(t.internalTextTracks,()=>(0,Uc.default)(this.internalTracks),a=>{(0,W.isNonNullable)(a)&&this.setInternal(a)},{equal:(a,n)=>(0,W.isNonNullable)(a)&&(0,W.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,W.map)(a=>a.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(va(t.externalTextTracks,()=>(0,Uc.default)(this.externalTracks),a=>{(0,W.isNonNullable)(a)&&this.setExternal(a)},{equal:(a,n)=>(0,W.isNonNullable)(a)&&(0,W.isNonNullable)(n)&&a.length===n.length&&a.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,W.map)(a=>a.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(va(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(va(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let a of this.htmlTextTracksAsArray())this.applyCueSettings(a.cues),this.applyCueSettings(a.activeCues)}))}subscribe(){(0,W.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,W.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,W.merge)((0,W.fromEvent)(e,"addtrack"),(0,W.fromEvent)(e,"removetrack"),(0,W.observableFrom)(["init"])).pipe((0,W.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,W.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:a},n)=>a===r[n].id))).subscribe(this.available$)),this.subscription.add((0,W.merge)((0,W.fromEvent)(e,"change"),(0,W.observableFrom)(["init"])).pipe((0,W.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,W.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,W.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,W.fromEvent)(e,"addtrack").subscribe(i=>{var a,n;(a=i.track)==null||a.addEventListener("cuechange",t);let r=o=>{var l,d,c,h,p;let u=(d=(l=o.target)==null?void 0:l.cues)!=null?d:null;u&&u.length&&(this.applyCueSettings((h=(c=o.target)==null?void 0:c.cues)!=null?h:null),(p=o.target)==null||p.removeEventListener("cuechange",r))};(n=i.track)==null||n.addEventListener("cuechange",r)})),this.subscription.add((0,W.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,W.isNonNullable)(t.align)&&(r.align=t.align),(0,W.isNonNullable)(t.position)&&(r.position=t.position),(0,W.isNonNullable)(t.size)&&(r.size=t.size),(0,W.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,W.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(s.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,l,d,c;let{language:t,label:i}=e,r=e.id?e.id:fR(e),a=this.externalTracks.has(r),n=(l=a?(o=this.externalTracks.get(r))==null?void 0:o.isAuto:(u=this.internalTracks.get(r))==null?void 0:u.isAuto)!=null?l:r.includes("auto");return a?{id:r,type:"external",isAuto:n,language:t,label:i,url:(d=this.externalTracks.get(r))==null?void 0:d.url}:{id:r,type:"internal",isAuto:n,language:t,label:i,url:(c=this.internalTracks.get(r))==null?void 0:c.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,W.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,W.isNullable)(e)||!mR(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,W.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,W.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)}},Vt=qc;var br=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 Yg=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},jc=s=>{let e=Yg(s);return!!(e&&e.fullscreenElement&&e.fullscreenElement===s)},Kg=s=>{let e=Yg(s);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===s)};var F=require("@vkontakte/videoplayer-shared/es2018");var bR=3,Xg=(s,e,t=bR)=>{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 _o=class{constructor(){this._isMiuiBrowser=!1}get current(){return this._current}get isChrome(){return this.current==="Chrome"}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,l=/edg/i.test(e)?"Edge":void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||i||n||u||l||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}=window.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 Jg=Y(Rt(),1);var Hr=()=>{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 Fo=class{constructor(e){this._highEntropyValues={};this._displayChecker=e}get current(){return this._current}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||(0,Jg.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||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.current==="Android"}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let{userAgent:e}=navigator;try{this._isMobile=Hr()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let{userAgentData:e}=navigator;if(e!=null&&e.getHighEntropyValues){let t=await e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}}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(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let a=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(a);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let r=parseFloat(i);if(isNaN(r))return;this._iosVersion=r}catch(e){console.error(e)}}};var No=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}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 t;let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e!=null?e:0,this._isHdr=!!((t=matchMedia("(dynamic-range: high)"))!=null&&t.matches),this._colorDepth=screen.colorDepth}catch(i){console.error(i)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(i){console.error(i)}}};var Lt=()=>window.ManagedMediaSource||window.MediaSource,zr=()=>{var s,e;return!!(window.ManagedMediaSource&&((e=(s=window.ManagedSourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},Zg=()=>{var s,e;return!!(window.MediaSource&&((e=(s=window.SourceBuffer)==null?void 0:s.prototype)!=null&&e.appendBuffer))},Uo=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var gR=document.createElement("video"),SR='video/mp4; codecs="avc1.42000a,mp4a.40.2"',vR='video/mp4; codecs="hev1.1.6.L93.B0"',eS='video/webm; codecs="vp09.00.10.08"',tS='video/webm; codecs="av01.0.00M.08"',yR='audio/mp4; codecs="mp4a.40.2"',TR='audio/webm; codecs="opus"',iS,IR=async()=>{if(!window.navigator.mediaCapabilities)return;let s={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=await Promise.all([window.navigator.mediaCapabilities.decodingInfo({...s,video:{...s.video,contentType:tS}}),window.navigator.mediaCapabilities.decodingInfo({...s,video:{...s.video,contentType:eS}})]);iS={DASH_WEBM_AV1:e,DASH_WEBM:t}};IR().catch(s=>{console.log(gR),console.error(s)});var qo=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 iS}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){var e,t,i,r,a,n,o,u,l,d,c,h,p,f,b,S,v,T,x,A;this._video=document.createElement("video");try{this._protocols={mms:zr(),mse:Zg(),hls:!!((t=(e=this._video).canPlayType)!=null&&t.call(e,"application/x-mpegurl")||(r=(i=this._video).canPlayType)!=null&&r.call(i,"vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!((n=(a=this._video).canPlayType)!=null&&n.call(a,"video/mp4")),webm:!!((u=(o=this._video).canPlayType)!=null&&u.call(o,"video/webm")),cmaf:!0};let w=!!((d=(l=Lt())==null?void 0:l.isTypeSupported)!=null&&d.call(l,SR)),M=!!((h=(c=Lt())==null?void 0:c.isTypeSupported)!=null&&h.call(c,vR)),H=!!((f=(p=Lt())==null?void 0:p.isTypeSupported)!=null&&f.call(p,yR));this._codecs={h264:w,h265:M,vp9:!!((S=(b=Lt())==null?void 0:b.isTypeSupported)!=null&&S.call(b,eS)),av1:!!((T=(v=Lt())==null?void 0:v.isTypeSupported)!=null&&T.call(v,tS)),aac:H,opus:!!((A=(x=Lt())==null?void 0:x.isTypeSupported)!=null&&A.call(x,TR)),mpeg:(w||M)&&H},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(w){console.error(w)}try{this.destroyVideoElement()}catch(w){console.error("Error destroying video element:",w)}}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 rS="audio/mpeg",jo=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var e,t,i,r;this._audio=document.createElement("audio");try{this._containers={mpeg:!!((t=(e=this._audio).canPlayType)!=null&&t.call(e,rS))},this._codecs={mp3:!!((r=(i=Lt())==null?void 0:i.isTypeSupported)!=null&&r.call(i,rS))}}catch(a){console.error(a)}try{this.destroyAudioElement()}catch(a){console.error("Error destroying audio element:",a)}}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 sS=require("@vkontakte/videoplayer-shared/es2018"),Hc=class{constructor(){this.isInited$=new sS.ValueSubject(!1);this._displayChecker=new No,this._deviceChecker=new Fo(this._displayChecker),this._browserChecker=new _o,this._videoChecker=new qo(this._deviceChecker,this._browserChecker),this._audioChecker=new jo,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(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)}},J=new Hc;var bt=s=>{let e=$=>(0,F.fromEvent)(s,$).pipe((0,F.mapTo)(void 0)),t=new F.Subscription,i=()=>t.unsubscribe(),r=(0,F.merge)((0,F.fromEvent)(s,"progress"),(0,F.fromEvent)(s,"timeupdate")).pipe((0,F.map)(()=>Xg(s.buffered,s.currentTime))),a=J.browser.isSafari?(0,F.combine)({play:e("play").pipe((0,F.once)()),playing:e("playing")}).pipe((0,F.mapTo)(void 0)):e("playing"),n=(0,F.fromEvent)(s,"volumechange").pipe((0,F.map)(()=>({muted:s.muted,volume:s.volume}))),o=(0,F.fromEvent)(s,"ratechange").pipe((0,F.map)(()=>s.playbackRate)),u=(0,F.fromEvent)(s,"error").pipe((0,F.filter)(()=>!!(s.error||s.played.length)),(0,F.map)(()=>{var q;let $=s.error;return{id:$?`MediaError#${$.code}`:"HtmlVideoError",category:F.ErrorCategory.VIDEO_PIPELINE,message:$?$.message:"Error event from HTML video element",thrown:(q=s.error)!=null?q:void 0}})),l=(0,F.fromEvent)(s,"timeupdate").pipe((0,F.map)(()=>s.currentTime)),d=["waiting","seeking","seeked","timeupdate"],c=new F.Subject,h=.3,p;t.add((0,F.merge)(...d.map($=>(0,F.fromEvent)(s,$))).subscribe($=>{let q=s.currentTime;s.loop&&(0,F.isNonNullable)(p)&&(0,F.isNonNullable)(q)&&p>=s.duration-h&&q<=h&&c.next(p),p=q}));let f=e("pause").pipe((0,F.filter)(()=>!s.error&&p!==s.duration)),b=(0,F.fromEvent)(s,"enterpictureinpicture"),S=(0,F.fromEvent)(s,"leavepictureinpicture"),v=new F.ValueSubject(Kg(s));t.add(b.subscribe(()=>v.next(!0))),t.add(S.subscribe(()=>v.next(!1)));let T=new F.ValueSubject(jc(s)),x=(0,F.fromEvent)(s,"fullscreenchange");t.add(x.pipe((0,F.map)(()=>jc(s))).subscribe(T));let A=.1,w=1e3,M=(0,F.fromEvent)(s,"timeupdate").pipe((0,F.map)($=>s.duration-s.currentTime<A),(0,F.filterChanged)()),H=(0,F.merge)(M.pipe((0,F.filter)($=>!s.loop&&$)),(0,F.fromEvent)(s,"ended")).pipe((0,F.throttle)(w),(0,F.mapTo)(void 0)),L=(0,F.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map($=>(0,F.fromEvent)(s,$)),M.pipe((0,F.map)($=>({type:$?"ended":"unknown"})))).pipe((0,F.map)($=>J.browser.isFirefox&&$.type==="ended"?s.readyState<2:s.readyState<3),(0,F.filterChanged)());return{playing$:a,pause$:f,canplay$:e("canplay"),ended$:H,looped$:c,error$:u,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:l,durationChange$:(0,F.fromEvent)(s,"durationchange").pipe((0,F.map)(()=>s.duration)),isBuffering$:L,currentBuffer$:r,volumeState$:n,playbackRateState$:o,inPiP$:v,inFullscreen$:T,enterPip$:b,leavePip$:S,destroy:i}};var Pi=require("@vkontakte/videoplayer-shared/es2018"),Qi=s=>{switch(s){case"mobile":return Pi.VideoQuality.Q_144P;case"lowest":return Pi.VideoQuality.Q_240P;case"low":return Pi.VideoQuality.Q_360P;case"sd":case"medium":return Pi.VideoQuality.Q_480P;case"hd":case"high":return Pi.VideoQuality.Q_720P;case"fullhd":case"full":return Pi.VideoQuality.Q_1080P;case"quadhd":case"quad":return Pi.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Pi.VideoQuality.Q_2160P}};var ct=Y(Xt(),1),Gc=Y(Rt(),1),gr=Y(lr(),1),D=require("@vkontakte/videoplayer-shared/es2018");var zc=!1,ki={},dS=s=>{zc=s},pS=()=>{ki={}},hS=s=>{s(ki)},ya=(s,e)=>{var t;zc&&(ki.meta=(t=ki.meta)!=null?t:{},ki.meta[s]=e)},lt=class{constructor(e){this.name=e}next(e){var i,r;if(!zc)return;ki.series=(i=ki.series)!=null?i:{};let t=(r=ki.series[this.name])!=null?r:[];t.push([Date.now(),e]),ki.series[this.name]=t}};var Ne=require("@vkontakte/videoplayer-shared/es2018");function Qc(s,e,t){return!s.max&&s.min===e?"high_quality":!s.min&&s.max===t?"traffic_saving":"unknown"}function Ho(s,e,t){return!!s&&Qc(s,e,t)==="high_quality"}function Qr(s,e,t){return(0,Ne.isNullable)(s)||(0,Ne.isNonNullable)(s.min)&&(0,Ne.isNonNullable)(s.max)&&(0,Ne.isLower)(s.max,s.min)||(0,Ne.isNonNullable)(s.min)&&e&&(0,Ne.isHigher)(s.min,e)||(0,Ne.isNonNullable)(s.max)&&t&&(0,Ne.isLower)(s.max,t)}function fS({limits:s,highestAvailableHeight:e,lowestAvailableHeight:t}){return Qr({max:s!=null&&s.max?(0,Ne.videoHeightToQuality)(s.max):void 0,min:s!=null&&s.min?(0,Ne.videoHeightToQuality)(s.min):void 0},e?(0,Ne.videoHeightToQuality)(e):void 0,t?(0,Ne.videoHeightToQuality)(t):void 0)}var vS=new lt("best_bitrate"),Qo=(s,e,t)=>(e-t)*Math.pow(2,-10*s)+t;var Gr=s=>(e,t)=>s*(Number(e.bitrate)-Number(t.bitrate)),Gi=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={}}},Go='Assertion "ABR Tracks is empty array" failed',zo=new WeakMap,mS=new WeakMap,bS=new WeakMap,Ta=(s,e,t,i)=>{var u;let r=[...e].sort(Gr(1)),a=[...t].sort(Gr(1)),n=a.filter(l=>(0,D.isNonNullable)(l.bitrate)&&(0,D.isNonNullable)(s.bitrate)?s.bitrate/l.bitrate>i:!0),o=(u=(0,ct.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,ct.default)(a,-1);return o&&(0,Gc.default)(n,o)?o:n.length?(0,ct.default)(n,-1):(0,ct.default)(a,0)},Ia=(s,e,t,i)=>{var u;let r=zo.get(e);r||(r=[...e].sort(Gr(1)),zo.set(e,r));let a=zo.get(t);a||(a=[...t].sort(Gr(1)),zo.set(t,a));let n=bS.get(s);n||(n=a.filter(l=>(0,D.isNonNullable)(l.bitrate)&&(0,D.isNonNullable)(s.bitrate)?s.bitrate/l.bitrate>i:!0),bS.set(s,n));let o=(u=(0,ct.default)(a,Math.round(a.length*r.indexOf(s)/(r.length+1))))!=null?u:(0,ct.default)(a,-1);return o&&(0,Gc.default)(n,o)?o:n.length?(0,ct.default)(n,-1):(0,ct.default)(a,0)},gS=s=>"quality"in s,Wo=(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=gS(o)?"video":"audio",l=gS(o)?o.quality:o.bitrate;return e({message:`
6
+ "use strict";var Ly=Object.create;var Ps=Object.defineProperty;var $y=Object.getOwnPropertyDescriptor;var My=Object.getOwnPropertyNames;var Dy=Object.getPrototypeOf,Cy=Object.prototype.hasOwnProperty;var S=(a,e)=>()=>(e||a((e={exports:{}}).exports,e),e.exports),By=(a,e)=>{for(var t in e)Ps(a,t,{get:e[t],enumerable:!0})},Jc=(a,e,t,i)=>{if(e&&typeof e=="object"||typeof e=="function")for(let r of My(e))!Cy.call(a,r)&&r!==t&&Ps(a,r,{get:()=>e[r],enumerable:!(i=$y(e,r))||i.enumerable});return a};var z=(a,e,t)=>(t=a!=null?Ly(Dy(a)):{},Jc(e||!a||!a.__esModule?Ps(t,"default",{value:a,enumerable:!0}):t,a)),Vy=a=>Jc(Ps({},"__esModule",{value:!0}),a);var Ie=S((To,Zc)=>{"use strict";var Nr=function(a){return a&&a.Math===Math&&a};Zc.exports=Nr(typeof globalThis=="object"&&globalThis)||Nr(typeof window=="object"&&window)||Nr(typeof self=="object"&&self)||Nr(typeof global=="object"&&global)||Nr(typeof To=="object"&&To)||function(){return this}()||Function("return this")()});var Re=S((x$,ed)=>{"use strict";ed.exports=function(a){try{return!!a()}catch(e){return!0}}});var Ur=S((w$,td)=>{"use strict";var _y=Re();td.exports=!_y(function(){var a=function(){}.bind();return typeof a!="function"||a.hasOwnProperty("prototype")})});var Io=S((A$,sd)=>{"use strict";var Oy=Ur(),ad=Function.prototype,id=ad.apply,rd=ad.call;sd.exports=typeof Reflect=="object"&&Reflect.apply||(Oy?rd.bind(id):function(){return rd.apply(id,arguments)})});var ke=S((P$,ud)=>{"use strict";var nd=Ur(),od=Function.prototype,Eo=od.call,Fy=nd&&od.bind.bind(Eo,Eo);ud.exports=nd?Fy:function(a){return function(){return Eo.apply(a,arguments)}}});var Ii=S((R$,cd)=>{"use strict";var ld=ke(),Ny=ld({}.toString),Uy=ld("".slice);cd.exports=function(a){return Uy(Ny(a),8,-1)}});var xo=S((k$,dd)=>{"use strict";var qy=Ii(),Hy=ke();dd.exports=function(a){if(qy(a)==="Function")return Hy(a)}});var Ee=S((L$,pd)=>{"use strict";var wo=typeof document=="object"&&document.all;pd.exports=typeof wo=="undefined"&&wo!==void 0?function(a){return typeof a=="function"||a===wo}:function(a){return typeof a=="function"}});var Je=S(($$,hd)=>{"use strict";var jy=Re();hd.exports=!jy(function(){return Object.defineProperty({},1,{get:function(){return 7}})[1]!==7})});var Ze=S((M$,fd)=>{"use strict";var Qy=Ur(),Ls=Function.prototype.call;fd.exports=Qy?Ls.bind(Ls):function(){return Ls.apply(Ls,arguments)}});var Ao=S(gd=>{"use strict";var md={}.propertyIsEnumerable,bd=Object.getOwnPropertyDescriptor,Gy=bd&&!md.call({1:2},1);gd.f=Gy?function(e){var t=bd(this,e);return!!t&&t.enumerable}:md});var qr=S((C$,Sd)=>{"use strict";Sd.exports=function(a,e){return{enumerable:!(a&1),configurable:!(a&2),writable:!(a&4),value:e}}});var yd=S((B$,vd)=>{"use strict";var Wy=ke(),zy=Re(),Yy=Ii(),Po=Object,Ky=Wy("".split);vd.exports=zy(function(){return!Po("z").propertyIsEnumerable(0)})?function(a){return Yy(a)==="String"?Ky(a,""):Po(a)}:Po});var Hr=S((V$,Td)=>{"use strict";Td.exports=function(a){return a==null}});var ri=S((_$,Id)=>{"use strict";var Xy=Hr(),Jy=TypeError;Id.exports=function(a){if(Xy(a))throw new Jy("Can't call method on "+a);return a}});var Ei=S((O$,Ed)=>{"use strict";var Zy=yd(),eT=ri();Ed.exports=function(a){return Zy(eT(a))}});var qe=S((F$,xd)=>{"use strict";var tT=Ee();xd.exports=function(a){return typeof a=="object"?a!==null:tT(a)}});var xi=S((N$,wd)=>{"use strict";wd.exports={}});var Ot=S((U$,Pd)=>{"use strict";var Ro=xi(),ko=Ie(),iT=Ee(),Ad=function(a){return iT(a)?a:void 0};Pd.exports=function(a,e){return arguments.length<2?Ad(Ro[a])||Ad(ko[a]):Ro[a]&&Ro[a][e]||ko[a]&&ko[a][e]}});var jr=S((q$,Rd)=>{"use strict";var rT=ke();Rd.exports=rT({}.isPrototypeOf)});var wi=S((H$,$d)=>{"use strict";var aT=Ie(),kd=aT.navigator,Ld=kd&&kd.userAgent;$d.exports=Ld?String(Ld):""});var $o=S((j$,_d)=>{"use strict";var Vd=Ie(),Lo=wi(),Md=Vd.process,Dd=Vd.Deno,Cd=Md&&Md.versions||Dd&&Dd.version,Bd=Cd&&Cd.v8,bt,$s;Bd&&(bt=Bd.split("."),$s=bt[0]>0&&bt[0]<4?1:+(bt[0]+bt[1]));!$s&&Lo&&(bt=Lo.match(/Edge\/(\d+)/),(!bt||bt[1]>=74)&&(bt=Lo.match(/Chrome\/(\d+)/),bt&&($s=+bt[1])));_d.exports=$s});var Mo=S((Q$,Fd)=>{"use strict";var Od=$o(),sT=Re(),nT=Ie(),oT=nT.String;Fd.exports=!!Object.getOwnPropertySymbols&&!sT(function(){var a=Symbol("symbol detection");return!oT(a)||!(Object(a)instanceof Symbol)||!Symbol.sham&&Od&&Od<41})});var Do=S((G$,Nd)=>{"use strict";var uT=Mo();Nd.exports=uT&&!Symbol.sham&&typeof Symbol.iterator=="symbol"});var Co=S((W$,Ud)=>{"use strict";var lT=Ot(),cT=Ee(),dT=jr(),pT=Do(),hT=Object;Ud.exports=pT?function(a){return typeof a=="symbol"}:function(a){var e=lT("Symbol");return cT(e)&&dT(e.prototype,hT(a))}});var Qr=S((z$,qd)=>{"use strict";var fT=String;qd.exports=function(a){try{return fT(a)}catch(e){return"Object"}}});var At=S((Y$,Hd)=>{"use strict";var mT=Ee(),bT=Qr(),gT=TypeError;Hd.exports=function(a){if(mT(a))return a;throw new gT(bT(a)+" is not a function")}});var Gr=S((K$,jd)=>{"use strict";var ST=At(),vT=Hr();jd.exports=function(a,e){var t=a[e];return vT(t)?void 0:ST(t)}});var Gd=S((X$,Qd)=>{"use strict";var Bo=Ze(),Vo=Ee(),_o=qe(),yT=TypeError;Qd.exports=function(a,e){var t,i;if(e==="string"&&Vo(t=a.toString)&&!_o(i=Bo(t,a))||Vo(t=a.valueOf)&&!_o(i=Bo(t,a))||e!=="string"&&Vo(t=a.toString)&&!_o(i=Bo(t,a)))return i;throw new yT("Can't convert object to primitive value")}});var gt=S((J$,Wd)=>{"use strict";Wd.exports=!0});var Kd=S((Z$,Yd)=>{"use strict";var zd=Ie(),TT=Object.defineProperty;Yd.exports=function(a,e){try{TT(zd,a,{value:e,configurable:!0,writable:!0})}catch(t){zd[a]=e}return e}});var Wr=S((eM,Zd)=>{"use strict";var IT=gt(),ET=Ie(),xT=Kd(),Xd="__core-js_shared__",Jd=Zd.exports=ET[Xd]||xT(Xd,{});(Jd.versions||(Jd.versions=[])).push({version:"3.43.0",mode:IT?"pure":"global",copyright:"\xA9 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 Oo=S((tM,tp)=>{"use strict";var ep=Wr();tp.exports=function(a,e){return ep[a]||(ep[a]=e||{})}});var Ki=S((iM,ip)=>{"use strict";var wT=ri(),AT=Object;ip.exports=function(a){return AT(wT(a))}});var St=S((rM,rp)=>{"use strict";var PT=ke(),RT=Ki(),kT=PT({}.hasOwnProperty);rp.exports=Object.hasOwn||function(e,t){return kT(RT(e),t)}});var Fo=S((aM,ap)=>{"use strict";var LT=ke(),$T=0,MT=Math.random(),DT=LT(1.1.toString);ap.exports=function(a){return"Symbol("+(a===void 0?"":a)+")_"+DT(++$T+MT,36)}});var Be=S((sM,np)=>{"use strict";var CT=Ie(),BT=Oo(),sp=St(),VT=Fo(),_T=Mo(),OT=Do(),Xi=CT.Symbol,No=BT("wks"),FT=OT?Xi.for||Xi:Xi&&Xi.withoutSetter||VT;np.exports=function(a){return sp(No,a)||(No[a]=_T&&sp(Xi,a)?Xi[a]:FT("Symbol."+a)),No[a]}});var cp=S((nM,lp)=>{"use strict";var NT=Ze(),op=qe(),up=Co(),UT=Gr(),qT=Gd(),HT=Be(),jT=TypeError,QT=HT("toPrimitive");lp.exports=function(a,e){if(!op(a)||up(a))return a;var t=UT(a,QT),i;if(t){if(e===void 0&&(e="default"),i=NT(t,a,e),!op(i)||up(i))return i;throw new jT("Can't convert object to primitive value")}return e===void 0&&(e="number"),qT(a,e)}});var Uo=S((oM,dp)=>{"use strict";var GT=cp(),WT=Co();dp.exports=function(a){var e=GT(a,"string");return WT(e)?e:e+""}});var Ms=S((uM,hp)=>{"use strict";var zT=Ie(),pp=qe(),qo=zT.document,YT=pp(qo)&&pp(qo.createElement);hp.exports=function(a){return YT?qo.createElement(a):{}}});var Ho=S((lM,fp)=>{"use strict";var KT=Je(),XT=Re(),JT=Ms();fp.exports=!KT&&!XT(function(){return Object.defineProperty(JT("div"),"a",{get:function(){return 7}}).a!==7})});var gp=S(bp=>{"use strict";var ZT=Je(),eI=Ze(),tI=Ao(),iI=qr(),rI=Ei(),aI=Uo(),sI=St(),nI=Ho(),mp=Object.getOwnPropertyDescriptor;bp.f=ZT?mp:function(e,t){if(e=rI(e),t=aI(t),nI)try{return mp(e,t)}catch(i){}if(sI(e,t))return iI(!eI(tI.f,e,t),e[t])}});var jo=S((dM,Sp)=>{"use strict";var oI=Re(),uI=Ee(),lI=/#|\.prototype\./,zr=function(a,e){var t=dI[cI(a)];return t===hI?!0:t===pI?!1:uI(e)?oI(e):!!e},cI=zr.normalize=function(a){return String(a).replace(lI,".").toLowerCase()},dI=zr.data={},pI=zr.NATIVE="N",hI=zr.POLYFILL="P";Sp.exports=zr});var Ji=S((pM,yp)=>{"use strict";var vp=xo(),fI=At(),mI=Ur(),bI=vp(vp.bind);yp.exports=function(a,e){return fI(a),e===void 0?a:mI?bI(a,e):function(){return a.apply(e,arguments)}}});var Qo=S((hM,Tp)=>{"use strict";var gI=Je(),SI=Re();Tp.exports=gI&&SI(function(){return Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype!==42})});var Pt=S((fM,Ip)=>{"use strict";var vI=qe(),yI=String,TI=TypeError;Ip.exports=function(a){if(vI(a))return a;throw new TI(yI(a)+" is not an object")}});var Ai=S(xp=>{"use strict";var II=Je(),EI=Ho(),xI=Qo(),Ds=Pt(),Ep=Uo(),wI=TypeError,Go=Object.defineProperty,AI=Object.getOwnPropertyDescriptor,Wo="enumerable",zo="configurable",Yo="writable";xp.f=II?xI?function(e,t,i){if(Ds(e),t=Ep(t),Ds(i),typeof e=="function"&&t==="prototype"&&"value"in i&&Yo in i&&!i[Yo]){var r=AI(e,t);r&&r[Yo]&&(e[t]=i.value,i={configurable:zo in i?i[zo]:r[zo],enumerable:Wo in i?i[Wo]:r[Wo],writable:!1})}return Go(e,t,i)}:Go:function(e,t,i){if(Ds(e),t=Ep(t),Ds(i),EI)try{return Go(e,t,i)}catch(r){}if("get"in i||"set"in i)throw new wI("Accessors not supported");return"value"in i&&(e[t]=i.value),e}});var Zi=S((bM,wp)=>{"use strict";var PI=Je(),RI=Ai(),kI=qr();wp.exports=PI?function(a,e,t){return RI.f(a,e,kI(1,t))}:function(a,e,t){return a[e]=t,a}});var Ae=S((gM,Pp)=>{"use strict";var Yr=Ie(),LI=Io(),$I=xo(),MI=Ee(),DI=gp().f,CI=jo(),er=xi(),BI=Ji(),tr=Zi(),Ap=St();Wr();var VI=function(a){var e=function(t,i,r){if(this instanceof e){switch(arguments.length){case 0:return new a;case 1:return new a(t);case 2:return new a(t,i)}return new a(t,i,r)}return LI(a,this,arguments)};return e.prototype=a.prototype,e};Pp.exports=function(a,e){var t=a.target,i=a.global,r=a.stat,s=a.proto,n=i?Yr:r?Yr[t]:Yr[t]&&Yr[t].prototype,o=i?er:er[t]||tr(er,t,{})[t],u=o.prototype,l,c,d,f,p,h,b,g,v;for(f in e)l=CI(i?f:t+(r?".":"#")+f,a.forced),c=!l&&n&&Ap(n,f),h=o[f],c&&(a.dontCallGetSet?(v=DI(n,f),b=v&&v.value):b=n[f]),p=c&&b?b:e[f],!(!l&&!s&&typeof h==typeof p)&&(a.bind&&c?g=BI(p,Yr):a.wrap&&c?g=VI(p):s&&MI(p)?g=$I(p):g=p,(a.sham||p&&p.sham||h&&h.sham)&&tr(g,"sham",!0),tr(o,f,g),s&&(d=t+"Prototype",Ap(er,d)||tr(er,d,{}),tr(er[d],f,p),a.real&&u&&(l||!u[f])&&tr(u,f,p)))}});var kp=S((SM,Rp)=>{"use strict";var _I=Math.ceil,OI=Math.floor;Rp.exports=Math.trunc||function(e){var t=+e;return(t>0?OI:_I)(t)}});var Kr=S((vM,Lp)=>{"use strict";var FI=kp();Lp.exports=function(a){var e=+a;return e!==e||e===0?0:FI(e)}});var Mp=S((yM,$p)=>{"use strict";var NI=Kr(),UI=Math.max,qI=Math.min;$p.exports=function(a,e){var t=NI(a);return t<0?UI(t+e,0):qI(t,e)}});var Ko=S((TM,Dp)=>{"use strict";var HI=Kr(),jI=Math.min;Dp.exports=function(a){var e=HI(a);return e>0?jI(e,9007199254740991):0}});var ir=S((IM,Cp)=>{"use strict";var QI=Ko();Cp.exports=function(a){return QI(a.length)}});var Xo=S((EM,Vp)=>{"use strict";var GI=Ei(),WI=Mp(),zI=ir(),Bp=function(a){return function(e,t,i){var r=GI(e),s=zI(r);if(s===0)return!a&&-1;var n=WI(i,s),o;if(a&&t!==t){for(;s>n;)if(o=r[n++],o!==o)return!0}else for(;s>n;n++)if((a||n in r)&&r[n]===t)return a||n||0;return!a&&-1}};Vp.exports={includes:Bp(!0),indexOf:Bp(!1)}});var Xr=S((xM,_p)=>{"use strict";_p.exports=function(){}});var Op=S(()=>{"use strict";var YI=Ae(),KI=Xo().includes,XI=Re(),JI=Xr(),ZI=XI(function(){return!Array(1).includes()});YI({target:"Array",proto:!0,forced:ZI},{includes:function(e){return KI(this,e,arguments.length>1?arguments[1]:void 0)}});JI("includes")});var ai=S((PM,Fp)=>{"use strict";var eE=Ot();Fp.exports=eE});var Up=S((RM,Np)=>{"use strict";Op();var tE=ai();Np.exports=tE("Array","includes")});var Hp=S((kM,qp)=>{"use strict";var iE=Up();qp.exports=iE});var ot=S((LM,jp)=>{"use strict";var rE=Hp();jp.exports=rE});var Bs=S((UM,Wp)=>{"use strict";var sE=Oo(),nE=Fo(),Gp=sE("keys");Wp.exports=function(a){return Gp[a]||(Gp[a]=nE(a))}});var Yp=S((qM,zp)=>{"use strict";var oE=Re();zp.exports=!oE(function(){function a(){}return a.prototype.constructor=null,Object.getPrototypeOf(new a)!==a.prototype})});var Vs=S((HM,Xp)=>{"use strict";var uE=St(),lE=Ee(),cE=Ki(),dE=Bs(),pE=Yp(),Kp=dE("IE_PROTO"),Jo=Object,hE=Jo.prototype;Xp.exports=pE?Jo.getPrototypeOf:function(a){var e=cE(a);if(uE(e,Kp))return e[Kp];var t=e.constructor;return lE(t)&&e instanceof t?t.prototype:e instanceof Jo?hE:null}});var _s=S((jM,Jp)=>{"use strict";Jp.exports={}});var th=S((QM,eh)=>{"use strict";var fE=ke(),Zo=St(),mE=Ei(),bE=Xo().indexOf,gE=_s(),Zp=fE([].push);eh.exports=function(a,e){var t=mE(a),i=0,r=[],s;for(s in t)!Zo(gE,s)&&Zo(t,s)&&Zp(r,s);for(;e.length>i;)Zo(t,s=e[i++])&&(~bE(r,s)||Zp(r,s));return r}});var eu=S((GM,ih)=>{"use strict";ih.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]});var tu=S((WM,rh)=>{"use strict";var SE=th(),vE=eu();rh.exports=Object.keys||function(e){return SE(e,vE)}});var iu=S((zM,uh)=>{"use strict";var sh=Je(),yE=Re(),nh=ke(),TE=Vs(),IE=tu(),EE=Ei(),xE=Ao().f,oh=nh(xE),wE=nh([].push),AE=sh&&yE(function(){var a=Object.create(null);return a[2]=2,!oh(a,2)}),ah=function(a){return function(e){for(var t=EE(e),i=IE(t),r=AE&&TE(t)===null,s=i.length,n=0,o=[],u;s>n;)u=i[n++],(!sh||(r?u in t:oh(t,u)))&&wE(o,a?[u,t[u]]:t[u]);return o}};uh.exports={entries:ah(!0),values:ah(!1)}});var lh=S(()=>{"use strict";var PE=Ae(),RE=iu().entries;PE({target:"Object",stat:!0},{entries:function(e){return RE(e)}})});var dh=S((XM,ch)=>{"use strict";lh();var kE=xi();ch.exports=kE.Object.entries});var hh=S((JM,ph)=>{"use strict";var LE=dh();ph.exports=LE});var rr=S((ZM,fh)=>{"use strict";var $E=hh();fh.exports=$E});var Pi=S((eD,mh)=>{"use strict";mh.exports={}});var Sh=S((tD,gh)=>{"use strict";var ME=Ie(),DE=Ee(),bh=ME.WeakMap;gh.exports=DE(bh)&&/native code/.test(String(bh))});var nu=S((iD,Th)=>{"use strict";var CE=Sh(),yh=Ie(),BE=qe(),VE=Zi(),ru=St(),au=Wr(),_E=Bs(),OE=_s(),vh="Object already initialized",su=yh.TypeError,FE=yh.WeakMap,Os,Jr,Fs,NE=function(a){return Fs(a)?Jr(a):Os(a,{})},UE=function(a){return function(e){var t;if(!BE(e)||(t=Jr(e)).type!==a)throw new su("Incompatible receiver, "+a+" required");return t}};CE||au.state?(vt=au.state||(au.state=new FE),vt.get=vt.get,vt.has=vt.has,vt.set=vt.set,Os=function(a,e){if(vt.has(a))throw new su(vh);return e.facade=a,vt.set(a,e),e},Jr=function(a){return vt.get(a)||{}},Fs=function(a){return vt.has(a)}):(Ri=_E("state"),OE[Ri]=!0,Os=function(a,e){if(ru(a,Ri))throw new su(vh);return e.facade=a,VE(a,Ri,e),e},Jr=function(a){return ru(a,Ri)?a[Ri]:{}},Fs=function(a){return ru(a,Ri)});var vt,Ri;Th.exports={set:Os,get:Jr,has:Fs,enforce:NE,getterFor:UE}});var lu=S((rD,Eh)=>{"use strict";var ou=Je(),qE=St(),Ih=Function.prototype,HE=ou&&Object.getOwnPropertyDescriptor,uu=qE(Ih,"name"),jE=uu&&function(){}.name==="something",QE=uu&&(!ou||ou&&HE(Ih,"name").configurable);Eh.exports={EXISTS:uu,PROPER:jE,CONFIGURABLE:QE}});var wh=S(xh=>{"use strict";var GE=Je(),WE=Qo(),zE=Ai(),YE=Pt(),KE=Ei(),XE=tu();xh.f=GE&&!WE?Object.defineProperties:function(e,t){YE(e);for(var i=KE(t),r=XE(t),s=r.length,n=0,o;s>n;)zE.f(e,o=r[n++],i[o]);return e}});var cu=S((sD,Ah)=>{"use strict";var JE=Ot();Ah.exports=JE("document","documentElement")});var fu=S((nD,Dh)=>{"use strict";var ZE=Pt(),ex=wh(),Ph=eu(),tx=_s(),ix=cu(),rx=Ms(),ax=Bs(),Rh=">",kh="<",pu="prototype",hu="script",$h=ax("IE_PROTO"),du=function(){},Mh=function(a){return kh+hu+Rh+a+kh+"/"+hu+Rh},Lh=function(a){a.write(Mh("")),a.close();var e=a.parentWindow.Object;return a=null,e},sx=function(){var a=rx("iframe"),e="java"+hu+":",t;return a.style.display="none",ix.appendChild(a),a.src=String(e),t=a.contentWindow.document,t.open(),t.write(Mh("document.F=Object")),t.close(),t.F},Ns,Us=function(){try{Ns=new ActiveXObject("htmlfile")}catch(e){}Us=typeof document!="undefined"?document.domain&&Ns?Lh(Ns):sx():Lh(Ns);for(var a=Ph.length;a--;)delete Us[pu][Ph[a]];return Us()};tx[$h]=!0;Dh.exports=Object.create||function(e,t){var i;return e!==null?(du[pu]=ZE(e),i=new du,du[pu]=null,i[$h]=e):i=Us(),t===void 0?i:ex.f(i,t)}});var ar=S((oD,Ch)=>{"use strict";var nx=Zi();Ch.exports=function(a,e,t,i){return i&&i.enumerable?a[e]=t:nx(a,e,t),a}});var Su=S((uD,_h)=>{"use strict";var ox=Re(),ux=Ee(),lx=qe(),cx=fu(),Bh=Vs(),dx=ar(),px=Be(),hx=gt(),gu=px("iterator"),Vh=!1,Ft,mu,bu;[].keys&&(bu=[].keys(),"next"in bu?(mu=Bh(Bh(bu)),mu!==Object.prototype&&(Ft=mu)):Vh=!0);var fx=!lx(Ft)||ox(function(){var a={};return Ft[gu].call(a)!==a});fx?Ft={}:hx&&(Ft=cx(Ft));ux(Ft[gu])||dx(Ft,gu,function(){return this});_h.exports={IteratorPrototype:Ft,BUGGY_SAFARI_ITERATORS:Vh}});var qs=S((lD,Fh)=>{"use strict";var mx=Be(),bx=mx("toStringTag"),Oh={};Oh[bx]="z";Fh.exports=String(Oh)==="[object z]"});var Zr=S((cD,Nh)=>{"use strict";var gx=qs(),Sx=Ee(),Hs=Ii(),vx=Be(),yx=vx("toStringTag"),Tx=Object,Ix=Hs(function(){return arguments}())==="Arguments",Ex=function(a,e){try{return a[e]}catch(t){}};Nh.exports=gx?Hs:function(a){var e,t,i;return a===void 0?"Undefined":a===null?"Null":typeof(t=Ex(e=Tx(a),yx))=="string"?t:Ix?Hs(e):(i=Hs(e))==="Object"&&Sx(e.callee)?"Arguments":i}});var qh=S((dD,Uh)=>{"use strict";var xx=qs(),wx=Zr();Uh.exports=xx?{}.toString:function(){return"[object "+wx(this)+"]"}});var ea=S((pD,jh)=>{"use strict";var Ax=qs(),Px=Ai().f,Rx=Zi(),kx=St(),Lx=qh(),$x=Be(),Hh=$x("toStringTag");jh.exports=function(a,e,t,i){var r=t?a:a&&a.prototype;r&&(kx(r,Hh)||Px(r,Hh,{configurable:!0,value:e}),i&&!Ax&&Rx(r,"toString",Lx))}});var Gh=S((hD,Qh)=>{"use strict";var Mx=Su().IteratorPrototype,Dx=fu(),Cx=qr(),Bx=ea(),Vx=Pi(),_x=function(){return this};Qh.exports=function(a,e,t,i){var r=e+" Iterator";return a.prototype=Dx(Mx,{next:Cx(+!i,t)}),Bx(a,r,!1,!0),Vx[r]=_x,a}});var zh=S((fD,Wh)=>{"use strict";var Ox=ke(),Fx=At();Wh.exports=function(a,e,t){try{return Ox(Fx(Object.getOwnPropertyDescriptor(a,e)[t]))}catch(i){}}});var Kh=S((mD,Yh)=>{"use strict";var Nx=qe();Yh.exports=function(a){return Nx(a)||a===null}});var Jh=S((bD,Xh)=>{"use strict";var Ux=Kh(),qx=String,Hx=TypeError;Xh.exports=function(a){if(Ux(a))return a;throw new Hx("Can't set "+qx(a)+" as a prototype")}});var vu=S((gD,Zh)=>{"use strict";var jx=zh(),Qx=qe(),Gx=ri(),Wx=Jh();Zh.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var a=!1,e={},t;try{t=jx(Object.prototype,"__proto__","set"),t(e,[]),a=e instanceof Array}catch(i){}return function(r,s){return Gx(r),Wx(s),Qx(r)&&(a?t(r,s):r.__proto__=s),r}}():void 0)});var df=S((SD,cf)=>{"use strict";var zx=Ae(),Yx=Ze(),js=gt(),uf=lu(),Kx=Ee(),Xx=Gh(),ef=Vs(),tf=vu(),Jx=ea(),Zx=Zi(),yu=ar(),ew=Be(),rf=Pi(),lf=Su(),tw=uf.PROPER,iw=uf.CONFIGURABLE,af=lf.IteratorPrototype,Qs=lf.BUGGY_SAFARI_ITERATORS,ta=ew("iterator"),sf="keys",ia="values",nf="entries",of=function(){return this};cf.exports=function(a,e,t,i,r,s,n){Xx(t,e,i);var o=function(v){if(v===r&&f)return f;if(!Qs&&v&&v in c)return c[v];switch(v){case sf:return function(){return new t(this,v)};case ia:return function(){return new t(this,v)};case nf:return function(){return new t(this,v)}}return function(){return new t(this)}},u=e+" Iterator",l=!1,c=a.prototype,d=c[ta]||c["@@iterator"]||r&&c[r],f=!Qs&&d||o(r),p=e==="Array"&&c.entries||d,h,b,g;if(p&&(h=ef(p.call(new a)),h!==Object.prototype&&h.next&&(!js&&ef(h)!==af&&(tf?tf(h,af):Kx(h[ta])||yu(h,ta,of)),Jx(h,u,!0,!0),js&&(rf[u]=of))),tw&&r===ia&&d&&d.name!==ia&&(!js&&iw?Zx(c,"name",ia):(l=!0,f=function(){return Yx(d,this)})),r)if(b={values:o(ia),keys:s?f:o(sf),entries:o(nf)},n)for(g in b)(Qs||l||!(g in c))&&yu(c,g,b[g]);else zx({target:e,proto:!0,forced:Qs||l},b);return(!js||n)&&c[ta]!==f&&yu(c,ta,f,{name:r}),rf[e]=f,b}});var hf=S((vD,pf)=>{"use strict";pf.exports=function(a,e){return{value:a,done:e}}});var Iu=S((yD,Sf)=>{"use strict";var rw=Ei(),Tu=Xr(),ff=Pi(),bf=nu(),aw=Ai().f,sw=df(),Gs=hf(),nw=gt(),ow=Je(),gf="Array Iterator",uw=bf.set,lw=bf.getterFor(gf);Sf.exports=sw(Array,"Array",function(a,e){uw(this,{type:gf,target:rw(a),index:0,kind:e})},function(){var a=lw(this),e=a.target,t=a.index++;if(!e||t>=e.length)return a.target=null,Gs(void 0,!0);switch(a.kind){case"keys":return Gs(t,!1);case"values":return Gs(e[t],!1)}return Gs([t,e[t]],!1)},"values");var mf=ff.Arguments=ff.Array;Tu("keys");Tu("values");Tu("entries");if(!nw&&ow&&mf.name!=="values")try{aw(mf,"name",{value:"values"})}catch(a){}});var yf=S((TD,vf)=>{"use strict";var cw=Be(),dw=Pi(),pw=cw("iterator"),hw=Array.prototype;vf.exports=function(a){return a!==void 0&&(dw.Array===a||hw[pw]===a)}});var Eu=S((ID,If)=>{"use strict";var fw=Zr(),Tf=Gr(),mw=Hr(),bw=Pi(),gw=Be(),Sw=gw("iterator");If.exports=function(a){if(!mw(a))return Tf(a,Sw)||Tf(a,"@@iterator")||bw[fw(a)]}});var xf=S((ED,Ef)=>{"use strict";var vw=Ze(),yw=At(),Tw=Pt(),Iw=Qr(),Ew=Eu(),xw=TypeError;Ef.exports=function(a,e){var t=arguments.length<2?Ew(a):e;if(yw(t))return Tw(vw(t,a));throw new xw(Iw(a)+" is not iterable")}});var Pf=S((xD,Af)=>{"use strict";var ww=Ze(),wf=Pt(),Aw=Gr();Af.exports=function(a,e,t){var i,r;wf(a);try{if(i=Aw(a,"return"),!i){if(e==="throw")throw t;return t}i=ww(i,a)}catch(s){r=!0,i=s}if(e==="throw")throw t;if(r)throw i;return wf(i),t}});var zs=S((wD,$f)=>{"use strict";var Pw=Ji(),Rw=Ze(),kw=Pt(),Lw=Qr(),$w=yf(),Mw=ir(),Rf=jr(),Dw=xf(),Cw=Eu(),kf=Pf(),Bw=TypeError,Ws=function(a,e){this.stopped=a,this.result=e},Lf=Ws.prototype;$f.exports=function(a,e,t){var i=t&&t.that,r=!!(t&&t.AS_ENTRIES),s=!!(t&&t.IS_RECORD),n=!!(t&&t.IS_ITERATOR),o=!!(t&&t.INTERRUPTED),u=Pw(e,i),l,c,d,f,p,h,b,g=function(E){return l&&kf(l,"normal"),new Ws(!0,E)},v=function(E){return r?(kw(E),o?u(E[0],E[1],g):u(E[0],E[1])):o?u(E,g):u(E)};if(s)l=a.iterator;else if(n)l=a;else{if(c=Cw(a),!c)throw new Bw(Lw(a)+" is not iterable");if($w(c)){for(d=0,f=Mw(a);f>d;d++)if(p=v(a[d]),p&&Rf(Lf,p))return p;return new Ws(!1)}l=Dw(a,c)}for(h=s?a.next:l.next;!(b=Rw(h,l)).done;){try{p=v(b.value)}catch(E){kf(l,"throw",E)}if(typeof p=="object"&&p&&Rf(Lf,p))return p}return new Ws(!1)}});var Df=S((AD,Mf)=>{"use strict";var Vw=Je(),_w=Ai(),Ow=qr();Mf.exports=function(a,e,t){Vw?_w.f(a,e,Ow(0,t)):a[e]=t}});var Cf=S(()=>{"use strict";var Fw=Ae(),Nw=zs(),Uw=Df();Fw({target:"Object",stat:!0},{fromEntries:function(e){var t={};return Nw(e,function(i,r){Uw(t,i,r)},{AS_ENTRIES:!0}),t}})});var Vf=S((kD,Bf)=>{"use strict";Iu();Cf();var qw=xi();Bf.exports=qw.Object.fromEntries});var Of=S((LD,_f)=>{"use strict";_f.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 Nf=S(()=>{"use strict";Iu();var Hw=Of(),jw=Ie(),Qw=ea(),Ff=Pi();for(Ys in Hw)Qw(jw[Ys],Ys),Ff[Ys]=Ff.Array;var Ys});var qf=S((DD,Uf)=>{"use strict";var Gw=Vf();Nf();Uf.exports=Gw});var xu=S((CD,Hf)=>{"use strict";var Ww=qf();Hf.exports=Ww});var jf=S(()=>{"use strict"});var wu=S((_D,Qf)=>{"use strict";var ra=Ie(),zw=wi(),Yw=Ii(),Ks=function(a){return zw.slice(0,a.length)===a};Qf.exports=function(){return Ks("Bun/")?"BUN":Ks("Cloudflare-Workers")?"CLOUDFLARE":Ks("Deno/")?"DENO":Ks("Node.js/")?"NODE":ra.Bun&&typeof Bun.version=="string"?"BUN":ra.Deno&&typeof Deno.version=="object"?"DENO":Yw(ra.process)==="process"?"NODE":ra.window&&ra.document?"BROWSER":"REST"}()});var Xs=S((OD,Gf)=>{"use strict";var Kw=wu();Gf.exports=Kw==="NODE"});var zf=S((FD,Wf)=>{"use strict";var Xw=Ai();Wf.exports=function(a,e,t){return Xw.f(a,e,t)}});var Xf=S((ND,Kf)=>{"use strict";var Jw=Ot(),Zw=zf(),eA=Be(),tA=Je(),Yf=eA("species");Kf.exports=function(a){var e=Jw(a);tA&&e&&!e[Yf]&&Zw(e,Yf,{configurable:!0,get:function(){return this}})}});var Zf=S((UD,Jf)=>{"use strict";var iA=jr(),rA=TypeError;Jf.exports=function(a,e){if(iA(e,a))return a;throw new rA("Incorrect invocation")}});var Pu=S((qD,em)=>{"use strict";var aA=ke(),sA=Ee(),Au=Wr(),nA=aA(Function.toString);sA(Au.inspectSource)||(Au.inspectSource=function(a){return nA(a)});em.exports=Au.inspectSource});var ku=S((HD,sm)=>{"use strict";var oA=ke(),uA=Re(),tm=Ee(),lA=Zr(),cA=Ot(),dA=Pu(),im=function(){},rm=cA("Reflect","construct"),Ru=/^\s*(?:class|function)\b/,pA=oA(Ru.exec),hA=!Ru.test(im),aa=function(e){if(!tm(e))return!1;try{return rm(im,[],e),!0}catch(t){return!1}},am=function(e){if(!tm(e))return!1;switch(lA(e)){case"AsyncFunction":case"GeneratorFunction":case"AsyncGeneratorFunction":return!1}try{return hA||!!pA(Ru,dA(e))}catch(t){return!0}};am.sham=!0;sm.exports=!rm||uA(function(){var a;return aa(aa.call)||!aa(Object)||!aa(function(){a=!0})||a})?am:aa});var om=S((jD,nm)=>{"use strict";var fA=ku(),mA=Qr(),bA=TypeError;nm.exports=function(a){if(fA(a))return a;throw new bA(mA(a)+" is not a constructor")}});var Lu=S((QD,lm)=>{"use strict";var um=Pt(),gA=om(),SA=Hr(),vA=Be(),yA=vA("species");lm.exports=function(a,e){var t=um(a).constructor,i;return t===void 0||SA(i=um(t)[yA])?e:gA(i)}});var dm=S((GD,cm)=>{"use strict";var TA=ke();cm.exports=TA([].slice)});var hm=S((WD,pm)=>{"use strict";var IA=TypeError;pm.exports=function(a,e){if(a<e)throw new IA("Not enough arguments");return a}});var $u=S((zD,fm)=>{"use strict";var EA=wi();fm.exports=/(?:ipad|iphone|ipod).*applewebkit/i.test(EA)});var Nu=S((YD,Em)=>{"use strict";var et=Ie(),xA=Io(),wA=Ji(),mm=Ee(),AA=St(),Im=Re(),bm=cu(),PA=dm(),gm=Ms(),RA=hm(),kA=$u(),LA=Xs(),_u=et.setImmediate,Ou=et.clearImmediate,$A=et.process,Mu=et.Dispatch,MA=et.Function,Sm=et.MessageChannel,DA=et.String,Du=0,sa={},vm="onreadystatechange",na,ki,Cu,Bu;Im(function(){na=et.location});var Fu=function(a){if(AA(sa,a)){var e=sa[a];delete sa[a],e()}},Vu=function(a){return function(){Fu(a)}},ym=function(a){Fu(a.data)},Tm=function(a){et.postMessage(DA(a),na.protocol+"//"+na.host)};(!_u||!Ou)&&(_u=function(e){RA(arguments.length,1);var t=mm(e)?e:MA(e),i=PA(arguments,1);return sa[++Du]=function(){xA(t,void 0,i)},ki(Du),Du},Ou=function(e){delete sa[e]},LA?ki=function(a){$A.nextTick(Vu(a))}:Mu&&Mu.now?ki=function(a){Mu.now(Vu(a))}:Sm&&!kA?(Cu=new Sm,Bu=Cu.port2,Cu.port1.onmessage=ym,ki=wA(Bu.postMessage,Bu)):et.addEventListener&&mm(et.postMessage)&&!et.importScripts&&na&&na.protocol!=="file:"&&!Im(Tm)?(ki=Tm,et.addEventListener("message",ym,!1)):vm in gm("script")?ki=function(a){bm.appendChild(gm("script"))[vm]=function(){bm.removeChild(this),Fu(a)}}:ki=function(a){setTimeout(Vu(a),0)});Em.exports={set:_u,clear:Ou}});var Am=S((KD,wm)=>{"use strict";var xm=Ie(),CA=Je(),BA=Object.getOwnPropertyDescriptor;wm.exports=function(a){if(!CA)return xm[a];var e=BA(xm,a);return e&&e.value}});var Uu=S((XD,Rm)=>{"use strict";var Pm=function(){this.head=null,this.tail=null};Pm.prototype={add:function(a){var e={item:a,next:null},t=this.tail;t?t.next=e:this.head=e,this.tail=e},get:function(){var a=this.head;if(a){var e=this.head=a.next;return e===null&&(this.tail=null),a.item}}};Rm.exports=Pm});var Lm=S((JD,km)=>{"use strict";var VA=wi();km.exports=/ipad|iphone|ipod/i.test(VA)&&typeof Pebble!="undefined"});var Mm=S((ZD,$m)=>{"use strict";var _A=wi();$m.exports=/web0s(?!.*chrome)/i.test(_A)});var Fm=S((eC,Om)=>{"use strict";var nr=Ie(),OA=Am(),Dm=Ji(),qu=Nu().set,FA=Uu(),NA=$u(),UA=Lm(),qA=Mm(),Hu=Xs(),Cm=nr.MutationObserver||nr.WebKitMutationObserver,Bm=nr.document,Vm=nr.process,Js=nr.Promise,Gu=OA("queueMicrotask"),sr,ju,Qu,Zs,_m;Gu||(oa=new FA,ua=function(){var a,e;for(Hu&&(a=Vm.domain)&&a.exit();e=oa.get();)try{e()}catch(t){throw oa.head&&sr(),t}a&&a.enter()},!NA&&!Hu&&!qA&&Cm&&Bm?(ju=!0,Qu=Bm.createTextNode(""),new Cm(ua).observe(Qu,{characterData:!0}),sr=function(){Qu.data=ju=!ju}):!UA&&Js&&Js.resolve?(Zs=Js.resolve(void 0),Zs.constructor=Js,_m=Dm(Zs.then,Zs),sr=function(){_m(ua)}):Hu?sr=function(){Vm.nextTick(ua)}:(qu=Dm(qu,nr),sr=function(){qu(ua)}),Gu=function(a){oa.head||sr(),oa.add(a)});var oa,ua;Om.exports=Gu});var Um=S((tC,Nm)=>{"use strict";Nm.exports=function(a,e){try{arguments.length===1?console.error(a):console.error(a,e)}catch(t){}}});var en=S((iC,qm)=>{"use strict";qm.exports=function(a){try{return{error:!1,value:a()}}catch(e){return{error:!0,value:e}}}});var Li=S((rC,Hm)=>{"use strict";var HA=Ie();Hm.exports=HA.Promise});var or=S((aC,Wm)=>{"use strict";var jA=Ie(),la=Li(),QA=Ee(),GA=jo(),WA=Pu(),zA=Be(),jm=wu(),YA=gt(),Wu=$o(),Qm=la&&la.prototype,KA=zA("species"),zu=!1,Gm=QA(jA.PromiseRejectionEvent),XA=GA("Promise",function(){var a=WA(la),e=a!==String(la);if(!e&&Wu===66||YA&&!(Qm.catch&&Qm.finally))return!0;if(!Wu||Wu<51||!/native code/.test(a)){var t=new la(function(s){s(1)}),i=function(s){s(function(){},function(){})},r=t.constructor={};if(r[KA]=i,zu=t.then(function(){})instanceof i,!zu)return!0}return!e&&(jm==="BROWSER"||jm==="DENO")&&!Gm});Wm.exports={CONSTRUCTOR:XA,REJECTION_EVENT:Gm,SUBCLASSING:zu}});var ur=S((sC,Ym)=>{"use strict";var zm=At(),JA=TypeError,ZA=function(a){var e,t;this.promise=new a(function(i,r){if(e!==void 0||t!==void 0)throw new JA("Bad Promise constructor");e=i,t=r}),this.resolve=zm(e),this.reject=zm(t)};Ym.exports.f=function(a){return new ZA(a)}});var mb=S(()=>{"use strict";var eP=Ae(),tP=gt(),sn=Xs(),si=Ie(),iP=xi(),pr=Ze(),Km=ar(),Xm=vu(),rP=ea(),aP=Xf(),sP=At(),an=Ee(),nP=qe(),oP=Zf(),uP=Lu(),ib=Nu().set,Zu=Fm(),lP=Um(),cP=en(),dP=Uu(),rb=nu(),nn=Li(),el=or(),ab=ur(),on="Promise",sb=el.CONSTRUCTOR,pP=el.REJECTION_EVENT,hP=el.SUBCLASSING,Yu=rb.getterFor(on),fP=rb.set,lr=nn&&nn.prototype,$i=nn,tn=lr,nb=si.TypeError,Ku=si.document,tl=si.process,Xu=ab.f,mP=Xu,bP=!!(Ku&&Ku.createEvent&&si.dispatchEvent),ob="unhandledrejection",gP="rejectionhandled",Jm=0,ub=1,SP=2,il=1,lb=2,rn,Zm,cb,eb,db=function(a){var e;return nP(a)&&an(e=a.then)?e:!1},pb=function(a,e){var t=e.value,i=e.state===ub,r=i?a.ok:a.fail,s=a.resolve,n=a.reject,o=a.domain,u,l,c;try{r?(i||(e.rejection===lb&&yP(e),e.rejection=il),r===!0?u=t:(o&&o.enter(),u=r(t),o&&(o.exit(),c=!0)),u===a.promise?n(new nb("Promise-chain cycle")):(l=db(u))?pr(l,u,s,n):s(u)):n(t)}catch(d){o&&!c&&o.exit(),n(d)}},hb=function(a,e){a.notified||(a.notified=!0,Zu(function(){for(var t=a.reactions,i;i=t.get();)pb(i,a);a.notified=!1,e&&!a.rejection&&vP(a)}))},fb=function(a,e,t){var i,r;bP?(i=Ku.createEvent("Event"),i.promise=e,i.reason=t,i.initEvent(a,!1,!0),si.dispatchEvent(i)):i={promise:e,reason:t},!pP&&(r=si["on"+a])?r(i):a===ob&&lP("Unhandled promise rejection",t)},vP=function(a){pr(ib,si,function(){var e=a.facade,t=a.value,i=tb(a),r;if(i&&(r=cP(function(){sn?tl.emit("unhandledRejection",t,e):fb(ob,e,t)}),a.rejection=sn||tb(a)?lb:il,r.error))throw r.value})},tb=function(a){return a.rejection!==il&&!a.parent},yP=function(a){pr(ib,si,function(){var e=a.facade;sn?tl.emit("rejectionHandled",e):fb(gP,e,a.value)})},cr=function(a,e,t){return function(i){a(e,i,t)}},dr=function(a,e,t){a.done||(a.done=!0,t&&(a=t),a.value=e,a.state=SP,hb(a,!0))},Ju=function(a,e,t){if(!a.done){a.done=!0,t&&(a=t);try{if(a.facade===e)throw new nb("Promise can't be resolved itself");var i=db(e);i?Zu(function(){var r={done:!1};try{pr(i,e,cr(Ju,r,a),cr(dr,r,a))}catch(s){dr(r,s,a)}}):(a.value=e,a.state=ub,hb(a,!1))}catch(r){dr({done:!1},r,a)}}};if(sb&&($i=function(e){oP(this,tn),sP(e),pr(rn,this);var t=Yu(this);try{e(cr(Ju,t),cr(dr,t))}catch(i){dr(t,i)}},tn=$i.prototype,rn=function(e){fP(this,{type:on,done:!1,notified:!1,parent:!1,reactions:new dP,rejection:!1,state:Jm,value:null})},rn.prototype=Km(tn,"then",function(e,t){var i=Yu(this),r=Xu(uP(this,$i));return i.parent=!0,r.ok=an(e)?e:!0,r.fail=an(t)&&t,r.domain=sn?tl.domain:void 0,i.state===Jm?i.reactions.add(r):Zu(function(){pb(r,i)}),r.promise}),Zm=function(){var a=new rn,e=Yu(a);this.promise=a,this.resolve=cr(Ju,e),this.reject=cr(dr,e)},ab.f=Xu=function(a){return a===$i||a===cb?new Zm(a):mP(a)},!tP&&an(nn)&&lr!==Object.prototype)){eb=lr.then,hP||Km(lr,"then",function(e,t){var i=this;return new $i(function(r,s){pr(eb,i,r,s)}).then(e,t)},{unsafe:!0});try{delete lr.constructor}catch(a){}Xm&&Xm(lr,tn)}eP({global:!0,constructor:!0,wrap:!0,forced:sb},{Promise:$i});cb=iP.Promise;rP($i,on,!1,!0);aP(on)});var yb=S((uC,vb)=>{"use strict";var TP=Be(),gb=TP("iterator"),Sb=!1;try{bb=0,rl={next:function(){return{done:!!bb++}},return:function(){Sb=!0}},rl[gb]=function(){return this},Array.from(rl,function(){throw 2})}catch(a){}var bb,rl;vb.exports=function(a,e){try{if(!e&&!Sb)return!1}catch(r){return!1}var t=!1;try{var i={};i[gb]=function(){return{next:function(){return{done:t=!0}}}},a(i)}catch(r){}return t}});var al=S((lC,Tb)=>{"use strict";var IP=Li(),EP=yb(),xP=or().CONSTRUCTOR;Tb.exports=xP||!EP(function(a){IP.all(a).then(void 0,function(){})})});var Ib=S(()=>{"use strict";var wP=Ae(),AP=Ze(),PP=At(),RP=ur(),kP=en(),LP=zs(),$P=al();wP({target:"Promise",stat:!0,forced:$P},{all:function(e){var t=this,i=RP.f(t),r=i.resolve,s=i.reject,n=kP(function(){var o=PP(t.resolve),u=[],l=0,c=1;LP(e,function(d){var f=l++,p=!1;c++,AP(o,t,d).then(function(h){p||(p=!0,u[f]=h,--c||r(u))},s)}),--c||r(u)});return n.error&&s(n.value),i.promise}})});var xb=S(()=>{"use strict";var MP=Ae(),DP=gt(),CP=or().CONSTRUCTOR,nl=Li(),BP=Ot(),VP=Ee(),_P=ar(),Eb=nl&&nl.prototype;MP({target:"Promise",proto:!0,forced:CP,real:!0},{catch:function(a){return this.then(void 0,a)}});!DP&&VP(nl)&&(sl=BP("Promise").prototype.catch,Eb.catch!==sl&&_P(Eb,"catch",sl,{unsafe:!0}));var sl});var wb=S(()=>{"use strict";var OP=Ae(),FP=Ze(),NP=At(),UP=ur(),qP=en(),HP=zs(),jP=al();OP({target:"Promise",stat:!0,forced:jP},{race:function(e){var t=this,i=UP.f(t),r=i.reject,s=qP(function(){var n=NP(t.resolve);HP(e,function(o){FP(n,t,o).then(i.resolve,r)})});return s.error&&r(s.value),i.promise}})});var Ab=S(()=>{"use strict";var QP=Ae(),GP=ur(),WP=or().CONSTRUCTOR;QP({target:"Promise",stat:!0,forced:WP},{reject:function(e){var t=GP.f(this),i=t.reject;return i(e),t.promise}})});var ol=S((SC,Pb)=>{"use strict";var zP=Pt(),YP=qe(),KP=ur();Pb.exports=function(a,e){if(zP(a),YP(e)&&e.constructor===a)return e;var t=KP.f(a),i=t.resolve;return i(e),t.promise}});var Lb=S(()=>{"use strict";var XP=Ae(),JP=Ot(),Rb=gt(),ZP=Li(),kb=or().CONSTRUCTOR,eR=ol(),tR=JP("Promise"),iR=Rb&&!kb;XP({target:"Promise",stat:!0,forced:Rb||kb},{resolve:function(e){return eR(iR&&this===tR?ZP:this,e)}})});var $b=S(()=>{"use strict";mb();Ib();xb();wb();Ab();Lb()});var Bb=S(()=>{"use strict";var rR=Ae(),aR=gt(),un=Li(),sR=Re(),Db=Ot(),Cb=Ee(),nR=Lu(),Mb=ol(),oR=ar(),ll=un&&un.prototype,uR=!!un&&sR(function(){ll.finally.call({then:function(){}},function(){})});rR({target:"Promise",proto:!0,real:!0,forced:uR},{finally:function(a){var e=nR(this,Db("Promise")),t=Cb(a);return this.then(t?function(i){return Mb(e,a()).then(function(){return i})}:a,t?function(i){return Mb(e,a()).then(function(){throw i})}:a)}});!aR&&Cb(un)&&(ul=Db("Promise").prototype.finally,ll.finally!==ul&&oR(ll,"finally",ul,{unsafe:!0}));var ul});var _b=S((wC,Vb)=>{"use strict";jf();$b();Bb();var lR=ai();Vb.exports=lR("Promise","finally")});var Fb=S((AC,Ob)=>{"use strict";var cR=_b();Ob.exports=cR});var ln=S((PC,Nb)=>{"use strict";var dR=Fb();Nb.exports=dR});var Wb=S(()=>{"use strict";var bR=Ae(),gR=iu().values;bR({target:"Object",stat:!0},{values:function(e){return gR(e)}})});var Yb=S((aB,zb)=>{"use strict";Wb();var SR=xi();zb.exports=SR.Object.values});var Xb=S((sB,Kb)=>{"use strict";var vR=Yb();Kb.exports=vR});var hr=S((nB,Jb)=>{"use strict";var yR=Xb();Jb.exports=yR});var lg=S(()=>{"use strict";var LR=Ae(),$R=Ki(),MR=ir(),DR=Kr(),CR=Xr();LR({target:"Array",proto:!0},{at:function(e){var t=$R(this),i=MR(t),r=DR(e),s=r>=0?r:i+r;return s<0||s>=i?void 0:t[s]}});CR("at")});var dg=S((c0,cg)=>{"use strict";lg();var BR=ai();cg.exports=BR("Array","at")});var hg=S((d0,pg)=>{"use strict";var VR=dg();pg.exports=VR});var yt=S((p0,fg)=>{"use strict";var _R=hg();fg.exports=_R});var Rl=S((GV,Og)=>{"use strict";var zR=Ii();Og.exports=Array.isArray||function(e){return zR(e)==="Array"}});var Ng=S((WV,Fg)=>{"use strict";var YR=TypeError,KR=9007199254740991;Fg.exports=function(a){if(a>KR)throw YR("Maximum allowed index exceeded");return a}});var Hg=S((zV,qg)=>{"use strict";var XR=Rl(),JR=ir(),ZR=Ng(),ek=Ji(),Ug=function(a,e,t,i,r,s,n,o){for(var u=r,l=0,c=n?ek(n,o):!1,d,f;l<i;)l in t&&(d=c?c(t[l],l,e):t[l],s>0&&XR(d)?(f=JR(d),u=Ug(a,e,d,f,u,s-1)-1):(ZR(u+1),a[u]=d),u++),l++;return u};qg.exports=Ug});var Wg=S((YV,Gg)=>{"use strict";var jg=Rl(),tk=ku(),ik=qe(),rk=Be(),ak=rk("species"),Qg=Array;Gg.exports=function(a){var e;return jg(a)&&(e=a.constructor,tk(e)&&(e===Qg||jg(e.prototype))?e=void 0:ik(e)&&(e=e[ak],e===null&&(e=void 0))),e===void 0?Qg:e}});var Yg=S((KV,zg)=>{"use strict";var sk=Wg();zg.exports=function(a,e){return new(sk(a))(e===0?0:e)}});var Kg=S(()=>{"use strict";var nk=Ae(),ok=Hg(),uk=At(),lk=Ki(),ck=ir(),dk=Yg();nk({target:"Array",proto:!0},{flatMap:function(e){var t=lk(this),i=ck(t),r;return uk(e),r=dk(t,0),r.length=ok(r,t,t,i,0,1,e,arguments.length>1?arguments[1]:void 0),r}})});var Xg=S(()=>{"use strict";var pk=Xr();pk("flatMap")});var Zg=S((t_,Jg)=>{"use strict";Kg();Xg();var hk=ai();Jg.exports=hk("Array","flatMap")});var tS=S((i_,eS)=>{"use strict";var fk=Zg();eS.exports=fk});var Ta=S((r_,iS)=>{"use strict";var mk=tS();iS.exports=mk});var Ia=S((a_,rS)=>{"use strict";var bk=Zr(),gk=String;rS.exports=function(a){if(bk(a)==="Symbol")throw new TypeError("Cannot convert a Symbol value to a string");return gk(a)}});var kl=S((s_,aS)=>{"use strict";aS.exports=`
7
+ \v\f\r \xA0\u1680\u2000\u2001\u2002\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF`});var oS=S((n_,nS)=>{"use strict";var Sk=ke(),vk=ri(),yk=Ia(),$l=kl(),sS=Sk("".replace),Tk=RegExp("^["+$l+"]+"),Ik=RegExp("(^|[^"+$l+"])["+$l+"]+$"),Ll=function(a){return function(e){var t=yk(vk(e));return a&1&&(t=sS(t,Tk,"")),a&2&&(t=sS(t,Ik,"$1")),t}};nS.exports={start:Ll(1),end:Ll(2),trim:Ll(3)}});var dS=S((o_,cS)=>{"use strict";var Ek=lu().PROPER,xk=Re(),uS=kl(),lS="\u200B\x85\u180E";cS.exports=function(a){return xk(function(){return!!uS[a]()||lS[a]()!==lS||Ek&&uS[a].name!==a})}});var Ml=S((u_,pS)=>{"use strict";var wk=oS().start,Ak=dS();pS.exports=Ak("trimStart")?function(){return wk(this)}:"".trimStart});var fS=S(()=>{"use strict";var Pk=Ae(),hS=Ml();Pk({target:"String",proto:!0,name:"trimStart",forced:"".trimLeft!==hS},{trimLeft:hS})});var bS=S(()=>{"use strict";fS();var Rk=Ae(),mS=Ml();Rk({target:"String",proto:!0,name:"trimStart",forced:"".trimStart!==mS},{trimStart:mS})});var SS=S((h_,gS)=>{"use strict";bS();var kk=ai();gS.exports=kk("String","trimLeft")});var yS=S((f_,vS)=>{"use strict";var Lk=SS();vS.exports=Lk});var IS=S((m_,TS)=>{"use strict";var $k=yS();TS.exports=$k});var _S=S(()=>{"use strict"});var OS=S(()=>{"use strict"});var NS=S((KF,FS)=>{"use strict";var Xk=qe(),Jk=Ii(),Zk=Be(),eL=Zk("match");FS.exports=function(a){var e;return Xk(a)&&((e=a[eL])!==void 0?!!e:Jk(a)==="RegExp")}});var HS=S((XF,qS)=>{"use strict";var tL=Ie(),iL=Re(),US=tL.RegExp,rL=!iL(function(){var a=!0;try{US(".","d")}catch(u){a=!1}var e={},t="",i=a?"dgimsy":"gimsy",r=function(u,l){Object.defineProperty(e,u,{get:function(){return t+=l,!0}})},s={dotAll:"s",global:"g",ignoreCase:"i",multiline:"m",sticky:"y"};a&&(s.hasIndices="d");for(var n in s)r(n,s[n]);var o=Object.getOwnPropertyDescriptor(US.prototype,"flags").get.call(e);return o!==i||t!==i});qS.exports={correct:rL}});var QS=S((JF,jS)=>{"use strict";var aL=Pt();jS.exports=function(){var a=aL(this),e="";return a.hasIndices&&(e+="d"),a.global&&(e+="g"),a.ignoreCase&&(e+="i"),a.multiline&&(e+="m"),a.dotAll&&(e+="s"),a.unicode&&(e+="u"),a.unicodeSets&&(e+="v"),a.sticky&&(e+="y"),e}});var zS=S((ZF,WS)=>{"use strict";var sL=Ze(),nL=St(),oL=jr(),GS=HS(),uL=QS(),lL=RegExp.prototype;WS.exports=GS.correct?function(a){return a.flags}:function(a){return!GS.correct&&oL(lL,a)&&!nL(a,"flags")?sL(uL,a):a.flags}});var KS=S((eN,YS)=>{"use strict";var Vl=ke(),cL=Ki(),dL=Math.floor,Cl=Vl("".charAt),pL=Vl("".replace),Bl=Vl("".slice),hL=/\$([$&'`]|\d{1,2}|<[^>]*>)/g,fL=/\$([$&'`]|\d{1,2})/g;YS.exports=function(a,e,t,i,r,s){var n=t+a.length,o=i.length,u=fL;return r!==void 0&&(r=cL(r),u=hL),pL(s,u,function(l,c){var d;switch(Cl(c,0)){case"$":return"$";case"&":return a;case"`":return Bl(e,0,t);case"'":return Bl(e,n);case"<":d=r[Bl(c,1,-1)];break;default:var f=+c;if(f===0)return l;if(f>o){var p=dL(f/10);return p===0?l:p<=o?i[p-1]===void 0?Cl(c,1):i[p-1]+Cl(c,1):l}d=i[f-1]}return d===void 0?"":d})}});var ZS=S(()=>{"use strict";var mL=Ae(),bL=Ze(),Ol=ke(),XS=ri(),gL=Ee(),SL=qe(),vL=NS(),wr=Ia(),yL=Gr(),TL=zS(),IL=KS(),EL=Be(),xL=gt(),wL=EL("replace"),AL=TypeError,_l=Ol("".indexOf),PL=Ol("".replace),JS=Ol("".slice),RL=Math.max;mL({target:"String",proto:!0},{replaceAll:function(e,t){var i=XS(this),r,s,n,o,u,l,c,d,f,p,h=0,b="";if(SL(e)){if(r=vL(e),r&&(s=wr(XS(TL(e))),!~_l(s,"g")))throw new AL("`.replaceAll` does not allow non-global regexes");if(n=yL(e,wL),n)return bL(n,e,i,t);if(xL&&r)return PL(wr(i),e,t)}for(o=wr(i),u=wr(e),l=gL(t),l||(t=wr(t)),c=u.length,d=RL(1,c),f=_l(o,u);f!==-1;)p=l?wr(t(u,f,o)):IL(u,o,f,[],void 0,t),b+=JS(o,h,f)+p,h=f+c,f=f+d>o.length?-1:_l(o,u,f+d);return h<o.length&&(b+=JS(o,h)),b}})});var tv=S((rN,ev)=>{"use strict";_S();OS();ZS();var kL=ai();ev.exports=kL("String","replaceAll")});var rv=S((aN,iv)=>{"use strict";var LL=tv();iv.exports=LL});var sv=S((sN,av)=>{"use strict";var $L=rv();av.exports=$L});var ov=S((nN,nv)=>{"use strict";var ML=Kr(),DL=Ia(),CL=ri(),BL=RangeError;nv.exports=function(e){var t=DL(CL(this)),i="",r=ML(e);if(r<0||r===1/0)throw new BL("Wrong number of repetitions");for(;r>0;(r>>>=1)&&(t+=t))r&1&&(i+=t);return i}});var pv=S((oN,dv)=>{"use strict";var cv=ke(),VL=Ko(),uv=Ia(),_L=ov(),OL=ri(),FL=cv(_L),NL=cv("".slice),UL=Math.ceil,lv=function(a){return function(e,t,i){var r=uv(OL(e)),s=VL(t),n=r.length,o=i===void 0?" ":uv(i),u,l;return s<=n||o===""?r:(u=s-n,l=FL(o,UL(u/o.length)),l.length>u&&(l=NL(l,0,u)),a?r+l:l+r)}};dv.exports={start:lv(!1),end:lv(!0)}});var fv=S((uN,hv)=>{"use strict";var qL=wi();hv.exports=/Version\/10(?:\.\d+){1,2}(?: [\w./]+)?(?: Mobile\/\w+)? Safari\//.test(qL)});var mv=S(()=>{"use strict";var HL=Ae(),jL=pv().start,QL=fv();HL({target:"String",proto:!0,forced:QL},{padStart:function(e){return jL(this,e,arguments.length>1?arguments[1]:void 0)}})});var gv=S((dN,bv)=>{"use strict";mv();var GL=ai();bv.exports=GL("String","padStart")});var vv=S((pN,Sv)=>{"use strict";var WL=gv();Sv.exports=WL});var Tv=S((hN,yv)=>{"use strict";var zL=vv();yv.exports=zL});var y$={};By(y$,{ChromecastState:()=>Or,HttpConnectionType:()=>Rs,Observable:()=>Bt.Observable,PlaybackState:()=>Fe,Player:()=>hs,PredefinedQualityLimits:()=>Fr,SDK_VERSION:()=>v$,Subject:()=>Bt.Subject,Subscription:()=>Bt.Subscription,Surface:()=>ks,VERSION:()=>yo,ValueSubject:()=>Bt.ValueSubject,VideoFormat:()=>wt,VideoQuality:()=>Bt.VideoQuality,clientChecker:()=>Y,isMobile:()=>fr});module.exports=Vy(y$);var yo="2.0.136-beta.0";var Fe=(r=>(r.STOPPED="stopped",r.READY="ready",r.PLAYING="playing",r.PAUSED="paused",r))(Fe||{}),wt=(I=>(I.MPEG="MPEG",I.DASH="DASH",I.DASH_SEP="DASH_SEP",I.DASH_SEP_VK="DASH_SEP",I.DASH_WEBM="DASH_WEBM",I.DASH_WEBM_AV1="DASH_WEBM_AV1",I.DASH_STREAMS="DASH_STREAMS",I.DASH_WEBM_VK="DASH_WEBM",I.DASH_ONDEMAND="DASH_ONDEMAND",I.DASH_ONDEMAND_VK="DASH_ONDEMAND",I.DASH_LIVE="DASH_LIVE",I.DASH_LIVE_CMAF="DASH_LIVE_CMAF",I.DASH_LIVE_WEBM="DASH_LIVE_WEBM",I.HLS="HLS",I.HLS_ONDEMAND="HLS_ONDEMAND",I.HLS_JS="HLS",I.HLS_LIVE="HLS_LIVE",I.HLS_LIVE_CMAF="HLS_LIVE_CMAF",I.WEB_RTC_LIVE="WEB_RTC_LIVE",I))(wt||{});var Or=(r=>(r.NOT_AVAILABLE="NOT_AVAILABLE",r.AVAILABLE="AVAILABLE",r.CONNECTING="CONNECTING",r.CONNECTED="CONNECTED",r))(Or||{}),Rs=(i=>(i.HTTP1="http1",i.HTTP2="http2",i.QUIC="quic",i))(Rs||{});var ks=(n=>(n.NONE="none",n.INLINE="inline",n.FULLSCREEN="fullscreen",n.SECOND_SCREEN="second_screen",n.PIP="pip",n.INVISIBLE="invisible",n))(ks||{}),Fr=(i=>(i.TRAFFIC_SAVING="traffic_saving",i.HIGH_QUALITY="high_quality",i.UNKNOWN="unknown",i))(Fr||{});var Iy=z(ot(),1);var ie=require("@vkontakte/videoplayer-shared/es2018");var Qp=a=>new Promise((e,t)=>{let i=document.createElement("script");i.setAttribute("src",a),i.onload=()=>e(),i.onerror=r=>t(r),document.body.appendChild(i)});var Cs=class{constructor(e){this.connection$=new ie.ValueSubject(void 0);this.castState$=new ie.ValueSubject("NOT_AVAILABLE");this.errorEvent$=new ie.Subject;this.realCastState$=new ie.ValueSubject("NOT_AVAILABLE");this.subscription=new ie.Subscription;this.isDestroyed=!1;var s;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,ie.isNonNullable)((s=window.chrome)==null?void 0:s.cast),r=!!window.__onGCastApiAvailable;i?this.initializeCastApi():(window.__onGCastApiAvailable=n=>{delete window.__onGCastApiAvailable,n&&!this.isDestroyed&&this.initializeCastApi()},r||Qp("https://www.gstatic.com/cv/js/sender/v1/cast_sender.js?loadCastFramework=1").catch(()=>this.errorEvent$.next({id:"ChromecastLoading",category:ie.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,s;(s=(r=(i=cast.framework.CastContext.getInstance())==null?void 0:i.getCurrentSession())==null?void 0:r.getMediaSession())==null||s.stop(new chrome.cast.media.StopRequest,e,t)})}toggleConnection(){(0,ie.isNonNullable)(this.connection$.getValue())?this.disconnect():this.connect()}setVolume(e){let t=this.connection$.getValue();(0,ie.isNullable)(t)||(t.remotePlayer.volumeLevel=e,t.remotePlayerController.setVolumeLevel())}setMuted(e){let t=this.connection$.getValue();(0,ie.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,ie.fromEvent)(i,cast.framework.CastContextEventType.SESSION_STATE_CHANGED).subscribe(r=>{var s,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=(s=i.getCurrentSession())==null?void 0:s.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,ie.assertNever)(r.sessionState)}})).add((0,ie.merge)((0,ie.fromEvent)(i,cast.framework.CastContextEventType.CAST_STATE_CHANGED).pipe((0,ie.tap)(r=>{this.log({message:`[cast.framework.RemotePlayerEventType.CAST_STATE_CHANGED]: ${JSON.stringify(r)}`})}),(0,ie.map)(r=>r.castState)),(0,ie.observableFrom)([i.getCastState()])).pipe((0,ie.filterChanged)(),(0,ie.map)(aE),(0,ie.tap)(r=>{this.log({message:`realCastState$: ${r}`})})).subscribe(this.realCastState$)).add(this.realCastState$.subscribe(r=>{var o,u;let s=r==="CONNECTED",n=(0,ie.isNonNullable)(this.connection$.getValue());if(s&&!n){let l=i.getCurrentSession();(0,ie.assertNonNullable)(l);let c=l.getCastDevice(),d=(u=(o=l.getMediaSession())==null?void 0:o.media)==null?void 0:u.contentId;((0,ie.isNullable)(d)||d===this.contentId)&&(this.log({message:"connection created"}),this.connection$.next({remotePlayer:e,remotePlayerController:t,session:l,castDevice:c}))}else!s&&n&&(this.log({message:"connection destroyed"}),this.connection$.next(void 0));this.castState$.next(r==="CONNECTED"?(0,ie.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(s){return}try{e.setOptions({receiverApplicationId:(r=this.params.receiverApplicationId)!=null?r:t,autoJoinPolicy:i}),this.initListeners()}catch(s){this.errorEvent$.next({id:"ChromecastInitializer",category:ie.ErrorCategory.EXTERNAL_API,message:"[initializeCastApi] failed",thrown:s})}}},aE=a=>{switch(a){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,ie.assertNever)(a)}};var dc=z(ot(),1),ly=z(rr(),1),cy=z(xu(),1);var jb=z(ln(),1);var cl=require("@vkontakte/videoplayer-shared/es2018");var xe=(a,e=0,t=0)=>{switch(t){case 0:return a.replace("_offset_p",e===0?"":"_"+e.toFixed(0));case 1:{if(e===0)return a;let i=new URL(a);return i.searchParams.append("playback_shift",e.toFixed(0)),i.toString()}case 2:{let i=new URL(a);return!i.searchParams.get("offset_p")&&e===0?a:(i.searchParams.set("offset_p",e.toFixed(0)),i.toString())}default:(0,cl.assertNever)(t)}return a},ni=(a,e)=>{var t;switch(e){case 0:return NaN;case 1:{let i=new URL(a);return Number(i.searchParams.get("playback_shift"))}case 2:{let i=new URL(a);return Number((t=i.searchParams.get("offset_p"))!=null?t:0)}default:(0,cl.assertNever)(e)}};var F=(a,e,t=!1)=>{let i=a.getTransition();(t||!i||i.to===e)&&a.setState(e)};var Rt=require("@vkontakte/videoplayer-shared/es2018"),re=class{constructor(e){this.transitionStarted$=new Rt.Subject;this.transitionEnded$=new Rt.Subject;this.transitionUpdated$=new Rt.Subject;this.forceChanged$=new Rt.Subject;this.stateChangeStarted$=(0,Rt.merge)(this.transitionStarted$,this.transitionUpdated$);this.stateChangeEnded$=(0,Rt.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,Rt.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 Ub=require("@vkontakte/videoplayer-shared/es2018"),qb=a=>{switch(a){case"MPEG":case"DASH":case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":case"HLS":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,Ub.assertNever)(a)}};var j=require("@vkontakte/videoplayer-shared/es2018");var pR=5,hR=5,fR=500,Hb=7e3,ca=class{constructor(e){this.subscription=new j.Subscription;this.loadMediaTimeoutSubscription=new j.Subscription;this.videoState=new re("stopped");this.syncPlayback=()=>{let e=this.videoState.getState(),t=this.videoState.getTransition(),i=this.params.desiredState.playbackState.getState(),r=this.params.desiredState.playbackState.getTransition(),s=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(s)};`}),i==="stopped"){e!=="stopped"&&(this.videoState.startTransitionTo("stopped"),this.stop());return}if(!t){if((r==null?void 0:r.to)!=="paused"&&s.state==="requested"&&e!=="stopped"){this.seek(s.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,j.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,j.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,j.assertNever)(e)}break}default:(0,j.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(qb(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 j.Subscription;this.subscription.add(e),this.subscription.add((0,j.merge)(this.videoState.stateChangeStarted$.pipe((0,j.map)(r=>`stateChangeStarted$ ${JSON.stringify(r)}`)),this.videoState.stateChangeEnded$.pipe((0,j.map)(r=>`stateChangeEnded$ ${JSON.stringify(r)}`))).subscribe(r=>this.log({message:`[videoState] ${r}`})));let t=(r,s)=>this.subscription.add(r.subscribe(s));if(this.params.output.isLive$.getValue())this.params.output.position$.next(0),this.params.output.duration$.next(0);else{let r=new j.Subject;e.add(r.pipe((0,j.debounce)(fR)).subscribe(()=>{this.params.output.seekedEvent$.next()}));let s=NaN;e.add((0,j.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-s)>pR)&&r.next(o),s=o})),e.add((0,j.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.DURATION_CHANGED).subscribe(n=>{this.logRemoteEvent(n),this.params.output.duration$.next(n.value)}))}t((0,j.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,j.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_PAUSED_CHANGED),r=>{this.logRemoteEvent(r),r.value?this.handleRemotePause():this.handleRemotePlay()}),t((0,j.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.PLAYER_STATE_CHANGED),r=>{this.logRemoteEvent(r);let{remotePlayer:s}=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()&&s.duration-s.currentTime<hR&&this.params.output.endedEvent$.next(),this.handleRemoteStop(),F(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,j.assertNever)(n)}}),t((0,j.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.VOLUME_LEVEL_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({volume:r.value})}),t((0,j.fromEvent)(this.params.connection.remotePlayerController,cast.framework.RemotePlayerEventType.IS_MUTED_CHANGED),r=>{this.logRemoteEvent(r),this.handleRemoteVolumeChange({muted:r.value})});let i=(0,j.merge)(this.params.desiredState.playbackState.stateChangeStarted$,this.params.desiredState.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,j.observableFrom)(["init"])).pipe((0,j.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"),F(this.params.desiredState.playbackState,"paused")):(this.videoState.setState("playing"),F(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=this.createMediaInfo(e),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"),F(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"),F(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"&&F(this.params.desiredState.playbackState,"ready")}handleRemoteStop(){this.videoState.getState()!=="stopped"&&this.videoState.setState("stopped")}handleRemoteVolumeChange(e){var r,s;let t=this.params.output.volume$.getValue(),i={volume:(r=e.volume)!=null?r:t.volume,muted:(s=e.muted)!=null?s: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()}createMediaInfo(e){var l;let t=this.params.source,i,r,s;switch(e){case"MPEG":{let c=t[e];(0,j.assertNonNullable)(c);let d=(0,j.getHighestQuality)(Object.keys(c));(0,j.assertNonNullable)(d);let f=c[d];(0,j.assertNonNullable)(f),i=f,r="video/mp4",s=chrome.cast.media.StreamType.BUFFERED;break}case"HLS":case"HLS_ONDEMAND":{let c=t[e];(0,j.assertNonNullable)(c),i=c.url,r="application/x-mpegurl",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_SEP":case"DASH_ONDEMAND":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_STREAMS":{let c=t[e];(0,j.assertNonNullable)(c),i=c.url,r="application/dash+xml",s=chrome.cast.media.StreamType.BUFFERED;break}case"DASH_LIVE_CMAF":{let c=t[e];(0,j.assertNonNullable)(c),i=c.url,r="application/dash+xml",s=chrome.cast.media.StreamType.LIVE;break}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let c=t[e];(0,j.assertNonNullable)(c),i=xe(c.url),r="application/x-mpegurl",s=chrome.cast.media.StreamType.LIVE;break}case"DASH_LIVE":case"WEB_RTC_LIVE":{let c="Unsupported format for Chromecast",d=new Error(c);throw this.params.output.error$.next({id:"ChromecastProvider.createMediaInfo()",category:j.ErrorCategory.VIDEO_PIPELINE,message:c,thrown:d}),d}case"DASH":case"DASH_LIVE_WEBM":throw new Error(`${e} is no longer supported`);default:return(0,j.assertNever)(e)}let n=new chrome.cast.media.MediaInfo((l=this.params.meta.videoId)!=null?l:i,r);n.contentUrl=i,n.streamType=s,n.metadata=new chrome.cast.media.GenericMediaMetadata;let{title:o,subtitle:u}=this.params.meta;return(0,j.isNonNullable)(o)&&(n.metadata.title=o),(0,j.isNonNullable)(u)&&(n.metadata.subtitle=u),n}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,s)=>{this.loadMediaTimeoutSubscription.add((0,j.timeout)(Hb).subscribe(()=>s(`timeout(${Hb})`)))});(0,jb.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 s=`[prepare] loadMedia failed, format: ${this.params.format}, reason: ${r}`;this.log({message:s}),this.params.output.error$.next({id:"ChromecastProvider.loadMedia",category:j.ErrorCategory.VIDEO_PIPELINE,message:s,thrown:r})}),()=>{this.loadMediaTimeoutSubscription.unsubscribe()})}logRemoteEvent(e){this.log({message:`[remoteEvent] ${JSON.stringify(e)}`})}};var Al=z(ot(),1);var fl=require("@vkontakte/videoplayer-shared/es2018");var Qb=require("@vkontakte/videoplayer-shared/es2018"),Gb=a=>{try{a.pause(),a.playbackRate=0,(0,Qb.clearVideoElement)(a),a.remove()}catch(e){console.error(e)}};var cn=require("@vkontakte/videoplayer-shared/es2018"),dl=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)}},pl=window.WeakMap?new WeakMap:new dl,hl=window.WeakMap?new WeakMap:new Map,mR=(a,e=20)=>{let t=0;return(0,cn.fromEvent)(a,"ratechange").subscribe(i=>{t++,t>=e&&(a.currentTime=a.currentTime,t=0)})},He=(a,{audioVideoSyncRate:e,disableYandexPiP:t})=>{let i=a.querySelector("video"),r=!!i;i?(0,fl.clearVideoElement)(i):(i=document.createElement("video"),a.appendChild(i)),pl.set(i,r);let s=new cn.Subscription;return s.add(mR(i,e)),hl.set(i,s),i.setAttribute("crossorigin","anonymous"),i.setAttribute("playsinline","playsinline"),t&&i.setAttribute("x-yandex-pip","false"),i.controls=!1,i.setAttribute("poster","data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAQAAAC1HAwCAAAAC0lEQVR42mNkYAAAAAYAAjCB0C8AAAAASUVORK5CYII="),i},je=a=>{let e=hl.get(a);e==null||e.unsubscribe(),hl.delete(a);let t=pl.get(a);pl.delete(a),t?(0,fl.clearVideoElement)(a):Gb(a)};var ml=z(hr(),1),Q=require("@vkontakte/videoplayer-shared/es2018");var oi=require("@vkontakte/videoplayer-shared/es2018"),dn=(a,e,t,{equal:i=(n,o)=>n===o,changed$:r,onError:s}={})=>{let n=a.getState(),o=e(),u=(0,oi.isNullable)(r),l=new oi.Subscription;return r&&l.add(r.subscribe(c=>{let d=a.getState();i(c,d)&&a.setState(c)},s)),i(o,n)||(t(n),u&&a.setState(n)),l.add(a.stateChangeStarted$.subscribe(c=>{t(c.to),u&&a.setState(c.to)},s)),l},kt=(a,e,t)=>dn(e,()=>a.loop,i=>{(0,oi.isNonNullable)(i)&&(a.loop=i)},{onError:t}),Qe=(a,e,t,i)=>dn(e,()=>({muted:a.muted,volume:a.volume}),r=>{(0,oi.isNonNullable)(r)&&(a.muted=r.muted,a.volume=r.volume)},{equal:(r,s)=>r===s||(r==null?void 0:r.muted)===(s==null?void 0:s.muted)&&(r==null?void 0:r.volume)===(s==null?void 0:s.volume),changed$:t,onError:i}),ut=(a,e,t,i)=>dn(e,()=>a.playbackRate,r=>{(0,oi.isNonNullable)(r)&&(a.playbackRate=r)},{changed$:t,onError:i}),da=dn;var TR=a=>["__",a.language,a.label].join("|"),IR=(a,e)=>{if(a.id===e)return!0;let[t,i,r]=e.split("|");return a.language===i&&a.label===r},bl=class a{constructor(e){this.available$=new Q.Subject;this.current$=new Q.ValueSubject(void 0);this.error$=new Q.Subject;this.subscription=new Q.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=s=>{this.error$.next({id:"TextTracksManager",category:Q.ErrorCategory.WTF,message:"Generic HtmlVideoTextTrackManager error",thrown:s})};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(da(t.internalTextTracks,()=>(0,ml.default)(this.internalTracks),s=>{(0,Q.isNonNullable)(s)&&this.setInternal(s)},{equal:(s,n)=>(0,Q.isNonNullable)(s)&&(0,Q.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,Q.map)(s=>s.filter(({type:n})=>n==="internal"))),onError:r})),this.subscription.add(da(t.externalTextTracks,()=>(0,ml.default)(this.externalTracks),s=>{(0,Q.isNonNullable)(s)&&this.setExternal(s)},{equal:(s,n)=>(0,Q.isNonNullable)(s)&&(0,Q.isNonNullable)(n)&&s.length===n.length&&s.every(({id:o},u)=>o===n[u].id),changed$:this.available$.pipe((0,Q.map)(s=>s.filter(({type:n})=>n==="external"))),onError:r})),this.subscription.add(da(t.currentTextTrack,()=>{if(this.video)return;let s=this.htmlTextTracksAsArray().find(({mode:n})=>n==="showing");return s&&this.htmlTextTrackToITextTrack(s).id},s=>this.select(s),{changed$:this.current$,onError:r})),this.subscription.add(da(t.textTrackCuesSettings,()=>({}),()=>{if(this.video)for(let s of this.htmlTextTracksAsArray())this.applyCueSettings(s.cues),this.applyCueSettings(s.activeCues)}))}subscribe(){(0,Q.assertNonNullable)(this.video);let{textTracks:e}=this.video;this.subscription.add((0,Q.fromEvent)(e,"addtrack").subscribe(()=>{let i=this.current$.getValue();i&&this.select(i)})),this.subscription.add((0,Q.merge)((0,Q.fromEvent)(e,"addtrack"),(0,Q.fromEvent)(e,"removetrack"),(0,Q.observableFrom)(["init"])).pipe((0,Q.map)(()=>this.htmlTextTracksAsArray().map(i=>this.htmlTextTrackToITextTrack(i))),(0,Q.filterChanged)((i,r)=>i.length===r.length&&i.every(({id:s},n)=>s===r[n].id))).subscribe(this.available$)),this.subscription.add((0,Q.merge)((0,Q.fromEvent)(e,"change"),(0,Q.observableFrom)(["init"])).pipe((0,Q.map)(()=>this.htmlTextTracksAsArray().find(({mode:i})=>i==="showing")),(0,Q.map)(i=>i&&this.htmlTextTrackToITextTrack(i).id),(0,Q.filterChanged)()).subscribe(this.current$));let t=i=>{var r,s;return this.applyCueSettings((s=(r=i.target)==null?void 0:r.activeCues)!=null?s:null)};this.subscription.add((0,Q.fromEvent)(e,"addtrack").subscribe(i=>{var s,n;(s=i.track)==null||s.addEventListener("cuechange",t);let r=o=>{var l,c,d,f,p;let u=(c=(l=o.target)==null?void 0:l.cues)!=null?c:null;u&&u.length&&(this.applyCueSettings((f=(d=o.target)==null?void 0:d.cues)!=null?f:null),(p=o.target)==null||p.removeEventListener("cuechange",r))};(n=i.track)==null||n.addEventListener("cuechange",r)})),this.subscription.add((0,Q.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,Q.isNonNullable)(t.align)&&(r.align=t.align),(0,Q.isNonNullable)(t.position)&&(r.position=t.position),(0,Q.isNonNullable)(t.size)&&(r.size=t.size),(0,Q.isNonNullable)(t.line)&&(r.line=t.line)}}htmlTextTracksAsArray(e=!1){(0,Q.assertNonNullable)(this.video);let t=[...this.video.textTracks];return e?t:t.filter(a.isHealthyTrack)}htmlTextTrackToITextTrack(e){var o,u,l,c,d;let{language:t,label:i}=e,r=e.id?e.id:TR(e),s=this.externalTracks.has(r),n=(l=s?(o=this.externalTracks.get(r))==null?void 0:o.isAuto:(u=this.internalTracks.get(r))==null?void 0:u.isAuto)!=null?l:r.includes("auto");return s?{id:r,type:"external",isAuto:n,language:t,label:i,url:(c=this.externalTracks.get(r))==null?void 0:c.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:s})=>!this.internalTracks.has(i)&&!t.some(([,n])=>n.language===r&&n.isAuto===s)).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,Q.assertNonNullable)(this.video);for(let t of this.htmlTextTracksAsArray(!0))t.mode="showing";for(let t of this.htmlTextTracksAsArray(!0))((0,Q.isNullable)(e)||!IR(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,Q.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,Q.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)}},lt=bl;var Mi=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 Zb=a=>{let e=a;for(;!(e instanceof Document)&&!(e instanceof ShadowRoot)&&e!==null;)e=e==null?void 0:e.parentNode;return e!=null?e:void 0},gl=a=>{let e=Zb(a);return!!(e&&e.fullscreenElement&&e.fullscreenElement===a)},eg=a=>{let e=Zb(a);return!!(e&&e.pictureInPictureElement&&e.pictureInPictureElement===a)};var L=require("@vkontakte/videoplayer-shared/es2018");var ER=3,tg=(a,e,t=ER)=>{let i=0,r=0;for(let s=0;s<a.length;s++){let n=a.start(s),o=a.end(s);if(n<=e&&e<=o){if(i=n,r=o,!t)return{from:i,to:r};for(let u=s-1;u>=0;u--)a.end(u)+t>=i&&(i=a.start(u));for(let u=s+1;u<a.length;u++)a.start(u)-t<=r&&(r=a.end(u))}}return{from:i,to:r}};var pn=class{constructor(){this._isMiuiBrowser=!1}get current(){return this._current}get isChrome(){return this.current==="Chrome"}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,s=/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,l=/edg/i.test(e)?"Edge":void 0;this._isMiuiBrowser=/(XiaoMi)|(MiuiBrowser)/i.test(e),this._current=t||i||n||u||l||r||s||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}=window.navigator,i=t.match(e);if(!i)return;let r=i[1],s=parseInt(r,10);if(!isNaN(s))return this._current_version=s,s}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 ig=z(ot(),1);var fr=()=>{var a,e;return/Mobile|mini|Fennec|Android|iP(ad|od|hone)/.test((a=navigator.appVersion)!=null?a:navigator.userAgent)||((e=navigator==null?void 0:navigator.userAgentData)==null?void 0:e.mobile)};var hn=class{constructor(e){this._highEntropyValues={};this._displayChecker=e}get current(){return this._current}get isIOS(){let e=["iPhone","iPad","iPod"];return this._highEntropyValues.platform==="iOS"||(0,ig.default)(e,this.current)}get isMac(){return this._highEntropyValues.platform==="macOS"||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.current==="Android"}get isMobile(){return this._highEntropyValues.mobile||this._isMobile}get iOSVersion(){return this._iosVersion}detect(){let{userAgent:e}=navigator;try{this._isMobile=fr()}catch(t){console.error(t)}this.detectDevice(e),this.detectHighEntropyValues(),this.isIOS&&this.detectIOSVersion()}async detectHighEntropyValues(){let{userAgentData:e}=navigator;if(e!=null&&e.getHighEntropyValues){let t=await e.getHighEntropyValues(["architecture","bitness","brands","mobile","platform","formFactor","model","platformVersion","wow64"]);this._highEntropyValues=t}}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,s=/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||s||o||n||"Desktop"}catch(t){console.error(t)}}detectIOSVersion(){try{if(this._highEntropyValues.platformVersion){let s=this._highEntropyValues.platformVersion.split(".").slice(0,2).join("."),n=parseFloat(s);this._iosVersion=n;return}let{userAgent:e}=window.navigator,t=e.match(/OS (\d+(_\d+)?)/i);if(!t)return;let i=t[1].replace(/_/g,".");if(!i)return;let r=parseFloat(i);if(isNaN(r))return;this._iosVersion=r}catch(e){console.error(e)}}};var fn=class{get isTouch(){return typeof this._maxTouchPoints=="number"?this._maxTouchPoints>1:"ontouchstart"in window}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 t;let{maxTouchPoints:e}=navigator;try{this._maxTouchPoints=e!=null?e:0,this._isHdr=!!((t=matchMedia("(dynamic-range: high)"))!=null&&t.matches),this._colorDepth=screen.colorDepth}catch(i){console.error(i)}try{this._pixelRatio=window.devicePixelRatio||1,this._height=screen.height,this._width=screen.width,this._height=screen.height,this._screenHeight=this._height*this._pixelRatio,this._screenWidth=this._width*this._pixelRatio}catch(i){console.error(i)}}};var tt=()=>window.ManagedMediaSource||window.MediaSource,mr=()=>{var a,e;return!!(window.ManagedMediaSource&&((e=(a=window.ManagedSourceBuffer)==null?void 0:a.prototype)!=null&&e.appendBuffer))},rg=()=>{var a,e;return!!(window.MediaSource&&((e=(a=window.SourceBuffer)==null?void 0:a.prototype)!=null&&e.appendBuffer))},mn=()=>window.ManagedMediaSource?new ManagedMediaSource:new MediaSource;var xR=document.createElement("video"),wR='video/mp4; codecs="avc1.42000a,mp4a.40.2"',AR='video/mp4; codecs="hev1.1.6.L93.B0"',ag='video/webm; codecs="vp09.00.10.08"',sg='video/webm; codecs="av01.0.00M.08"',PR='audio/mp4; codecs="mp4a.40.2"',RR='audio/webm; codecs="opus"',ng,kR=async()=>{if(!window.navigator.mediaCapabilities)return;let a={type:"media-source",video:{contentType:"video/webm",width:1280,height:720,bitrate:1e6,framerate:30}},[e,t]=await Promise.all([window.navigator.mediaCapabilities.decodingInfo({...a,video:{...a.video,contentType:sg}}),window.navigator.mediaCapabilities.decodingInfo({...a,video:{...a.video,contentType:ag}})]);ng={DASH_WEBM_AV1:e,DASH_WEBM:t}};kR().catch(a=>{console.log(xR),console.error(a)});var bn=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 ng}get supportedCodecs(){return Object.keys(this._codecs).filter(e=>this._codecs[e])}get nativeHlsSupported(){return this._nativeHlsSupported}detect(){var e,t,i,r,s,n,o,u,l,c,d,f,p,h,b,g,v,E,I,A;this._video=document.createElement("video");try{this._protocols={mms:mr(),mse:rg(),hls:!!((t=(e=this._video).canPlayType)!=null&&t.call(e,"application/x-mpegurl")||(r=(i=this._video).canPlayType)!=null&&r.call(i,"vnd.apple.mpegURL")),webrtc:!!window.RTCPeerConnection,ws:!!window.WebSocket},this._containers={mp4:!!((n=(s=this._video).canPlayType)!=null&&n.call(s,"video/mp4")),webm:!!((u=(o=this._video).canPlayType)!=null&&u.call(o,"video/webm")),cmaf:!0};let P=!!((c=(l=tt())==null?void 0:l.isTypeSupported)!=null&&c.call(l,wR)),C=!!((f=(d=tt())==null?void 0:d.isTypeSupported)!=null&&f.call(d,AR)),N=!!((h=(p=tt())==null?void 0:p.isTypeSupported)!=null&&h.call(p,PR));this._codecs={h264:P,h265:C,vp9:!!((g=(b=tt())==null?void 0:b.isTypeSupported)!=null&&g.call(b,ag)),av1:!!((E=(v=tt())==null?void 0:v.isTypeSupported)!=null&&E.call(v,sg)),aac:N,opus:!!((A=(I=tt())==null?void 0:I.isTypeSupported)!=null&&A.call(I,RR)),mpeg:(P||C)&&N},this._nativeHlsSupported=this._protocols.hls&&this._containers.mp4}catch(P){console.error(P)}try{this.destroyVideoElement()}catch(P){console.error("Error destroying video element:",P)}}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 og="audio/mpeg",gn=class{supportMp3(){return this._codecs.mp3&&this._containers.mpeg}detect(){var e,t,i,r;this._audio=document.createElement("audio");try{this._containers={mpeg:!!((t=(e=this._audio).canPlayType)!=null&&t.call(e,og))},this._codecs={mp3:!!((r=(i=tt())==null?void 0:i.isTypeSupported)!=null&&r.call(i,og))}}catch(s){console.error(s)}try{this.destroyAudioElement()}catch(s){console.error("Error destroying audio element:",s)}}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 ug=require("@vkontakte/videoplayer-shared/es2018"),Sl=class{constructor(){this.isInited$=new ug.ValueSubject(!1);this._displayChecker=new fn,this._deviceChecker=new hn(this._displayChecker),this._browserChecker=new pn,this._videoChecker=new bn(this._deviceChecker,this._browserChecker),this._audioChecker=new gn,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(){this._displayChecker.detect(),this._deviceChecker.detect(),this._browserChecker.detect(),this._videoChecker.detect(),this._audioChecker.detect(),this.isInited$.next(!0)}},Y=new Sl;var Ge=a=>{let e=V=>(0,L.fromEvent)(a,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)(a,"progress"),(0,L.fromEvent)(a,"timeupdate")).pipe((0,L.map)(()=>tg(a.buffered,a.currentTime)),(0,L.shareReplay)(1)),s=Y.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)(a,"volumechange").pipe((0,L.map)(()=>({muted:a.muted,volume:a.volume})),(0,L.shareReplay)(1)),o=(0,L.fromEvent)(a,"ratechange").pipe((0,L.map)(()=>a.playbackRate),(0,L.shareReplay)(1)),u=(0,L.fromEvent)(a,"error").pipe((0,L.filter)(()=>!!(a.error||a.played.length)),(0,L.map)(()=>{var H;let V=a.error;return{id:V?`MediaError#${V.code}`:"HtmlVideoError",category:L.ErrorCategory.VIDEO_PIPELINE,message:V?V.message:"Error event from HTML video element",thrown:(H=a.error)!=null?H:void 0}}),(0,L.shareReplay)(1)),l=(0,L.fromEvent)(a,"timeupdate").pipe((0,L.map)(()=>a.currentTime),(0,L.shareReplay)(1)),c=["waiting","seeking","seeked","timeupdate"],d=new L.Subject,f=.3,p;t.add((0,L.merge)(...c.map(V=>(0,L.fromEvent)(a,V))).subscribe(V=>{let H=a.currentTime;a.loop&&(0,L.isNonNullable)(p)&&(0,L.isNonNullable)(H)&&p>=a.duration-f&&H<=f&&d.next(p),p=H}));let h=e("pause").pipe((0,L.filter)(()=>!a.error&&p!==a.duration),(0,L.shareReplay)(1)),b=(0,L.fromEvent)(a,"enterpictureinpicture").pipe((0,L.shareReplay)(1)),g=(0,L.fromEvent)(a,"leavepictureinpicture").pipe((0,L.shareReplay)(1)),v=new L.ValueSubject(eg(a));t.add(b.subscribe(()=>v.next(!0))),t.add(g.subscribe(()=>v.next(!1)));let E=new L.ValueSubject(gl(a)),I=(0,L.fromEvent)(a,"fullscreenchange").pipe((0,L.shareReplay)(1));t.add(I.pipe((0,L.map)(()=>gl(a))).subscribe(E));let A=.1,P=1e3,C=(0,L.fromEvent)(a,"timeupdate").pipe((0,L.map)(V=>a.duration-a.currentTime<A),(0,L.filterChanged)(),(0,L.shareReplay)(1)),N=(0,L.merge)(C.pipe((0,L.filter)(V=>!a.loop&&V)),(0,L.fromEvent)(a,"ended")).pipe((0,L.throttle)(P),(0,L.mapTo)(void 0),(0,L.shareReplay)(1)),B=(0,L.merge)(...["waiting","pause","canplay","play","canplaythrough","playing","seeking","seeked","ended"].map(V=>(0,L.fromEvent)(a,V)),C.pipe((0,L.map)(V=>({type:V?"ended":"unknown"})))).pipe((0,L.map)(V=>Y.browser.isFirefox&&V.type==="ended"?a.readyState<2:a.readyState<3),(0,L.filterChanged)(),(0,L.shareReplay)(1));return{playing$:s,pause$:h,canplay$:e("canplay"),ended$:N,looped$:d,error$:u,seeked$:e("seeked"),seeking$:e("seeking"),progress$:e("progress"),loadStart$:e("loadstart"),loadedMetadata$:e("loadedmetadata"),loadedData$:e("loadeddata"),timeUpdate$:l,durationChange$:(0,L.fromEvent)(a,"durationchange").pipe((0,L.map)(()=>a.duration),(0,L.shareReplay)(1)),isBuffering$:B,currentBuffer$:r,volumeState$:n,playbackRateState$:o,inPiP$:v,inFullscreen$:E,enterPip$:b,leavePip$:g,destroy:i}};var Ut=require("@vkontakte/videoplayer-shared/es2018"),ui=a=>{switch(a){case"mobile":return Ut.VideoQuality.Q_144P;case"lowest":return Ut.VideoQuality.Q_240P;case"low":return Ut.VideoQuality.Q_360P;case"sd":case"medium":return Ut.VideoQuality.Q_480P;case"hd":case"high":return Ut.VideoQuality.Q_720P;case"fullhd":case"full":return Ut.VideoQuality.Q_1080P;case"quadhd":case"quad":return Ut.VideoQuality.Q_1440P;case"ultrahd":case"ultra":return Ut.VideoQuality.Q_2160P}};var Ue=z(yt(),1),Tl=z(ot(),1),Di=z(rr(),1),D=require("@vkontakte/videoplayer-shared/es2018");var vl=!1,qt={},mg=a=>{vl=a},bg=()=>{qt={}},gg=a=>{a(qt)},pa=(a,e)=>{var t;vl&&(qt.meta=(t=qt.meta)!=null?t:{},qt.meta[a]=e)},Ne=class{constructor(e){this.name=e}next(e){var i,r;if(!vl)return;qt.series=(i=qt.series)!=null?i:{};let t=(r=qt.series[this.name])!=null?r:[];t.push([Date.now(),e]),qt.series[this.name]=t}};var Pe=require("@vkontakte/videoplayer-shared/es2018");function yl(a,e,t){return!a.max&&a.min===e?"high_quality":!a.min&&a.max===t?"traffic_saving":"unknown"}function Sn(a,e,t){return!!a&&yl(a,e,t)==="high_quality"}function br(a,e,t){return(0,Pe.isNullable)(a)||(0,Pe.isNonNullable)(a.min)&&(0,Pe.isNonNullable)(a.max)&&(0,Pe.isLower)(a.max,a.min)||(0,Pe.isNonNullable)(a.min)&&e&&(0,Pe.isHigher)(a.min,e)||(0,Pe.isNonNullable)(a.max)&&t&&(0,Pe.isLower)(a.max,t)}function Sg({limits:a,highestAvailableHeight:e,lowestAvailableHeight:t}){return br({max:a!=null&&a.max?(0,Pe.videoHeightToQuality)(a.max):void 0,min:a!=null&&a.min?(0,Pe.videoHeightToQuality)(a.min):void 0},e?(0,Pe.videoHeightToQuality)(e):void 0,t?(0,Pe.videoHeightToQuality)(t):void 0)}var Eg=new Ne("best_bitrate"),yn=(a,e,t)=>(e-t)*Math.pow(2,-10*a)+t;var gr=a=>(e,t)=>a*(Number(e.bitrate)-Number(t.bitrate)),li=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={}}},Tn='Assertion "ABR Tracks is empty array" failed',vn=new WeakMap,vg=new WeakMap,yg=new WeakMap,ha=(a,e,t,i)=>{var u;let r=[...e].sort(gr(1)),s=[...t].sort(gr(1)),n=s.filter(l=>(0,D.isNonNullable)(l.bitrate)&&(0,D.isNonNullable)(a.bitrate)?a.bitrate/l.bitrate>i:!0),o=(u=(0,Ue.default)(s,Math.round(s.length*r.indexOf(a)/(r.length+1))))!=null?u:(0,Ue.default)(s,-1);return o&&(0,Tl.default)(n,o)?o:n.length?(0,Ue.default)(n,-1):(0,Ue.default)(s,0)},fa=(a,e,t,i)=>{var u;let r=vn.get(e);r||(r=[...e].sort(gr(1)),vn.set(e,r));let s=vn.get(t);s||(s=[...t].sort(gr(1)),vn.set(t,s));let n=yg.get(a);n||(n=s.filter(l=>(0,D.isNonNullable)(l.bitrate)&&(0,D.isNonNullable)(a.bitrate)?a.bitrate/l.bitrate>i:!0),yg.set(a,n));let o=(u=(0,Ue.default)(s,Math.round(s.length*r.indexOf(a)/(r.length+1))))!=null?u:(0,Ue.default)(s,-1);return o&&(0,Tl.default)(n,o)?o:n.length?(0,Ue.default)(n,-1):(0,Ue.default)(s,0)},Tg=a=>"quality"in a,In=(a,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?a.trackCooldownIncreaseQuality:a.trackCooldownDecreaseQuality,s=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&&!s&&i.recordSelection(t),s&&(i!=null&&i.last)){let o=i.last;i==null||i.recordSwitch(o);let u=Tg(o)?"video":"audio",l=Tg(o)?o.quality:o.bitrate;return e({message:`
8
8
  [last ${u} selected] ${l}
9
- `}),o}return i==null||i.recordSwitch(t),t},LR=(s,e)=>Math.log(e)/Math.log(s),yS=({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,l=0]=s.pixelRatioLogCoefficients,d=LR(n,o*a+u)+l;Number.isFinite(d)&&(r*=d)}}return Ho(t,s.highQualityLimit,s.trafficSavingLimit)&&(r*=2),{containerSizeLimit:s.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},SS=new WeakMap,ni=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:d,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:h,stallsPredictedThroughput:p,abrLogger:f,panelSize:b})=>{var V,ne,K,B,Q;(0,D.assertNotEmptyArray)(s,Go);let{containerSizeFactor:S,containerSizeLimit:v}=yS({container:e,tuning:i,limits:r,panelSize:b}),T=i.considerPlaybackRate&&(0,D.isNonNullable)(o)?o:1,x=SS.get(s);x||(x=s.filter(C=>!(0,D.isInvariantQuality)(C.quality)).sort((C,R)=>(0,D.isHigher)(C.quality,R.quality)?-1:1),SS.set(s,x));let A=(V=(0,ct.default)(x,-1))==null?void 0:V.quality,w=(ne=(0,ct.default)(x,0))==null?void 0:ne.quality,M=Qr(r,w,A),H=T*Qo(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),N={},L=null;for(let C of x){let R=!0;if(v)if(C.size)R=C.size.width<=v.width&&C.size.height<=v.height;else{let Xe=v&&(0,D.videoSizeToQuality)(v);R=Xe?(0,D.isLowerOrEqual)(C.quality,Xe):!0}if(!R){N[C.quality]="FitsContainer";continue}let U=p||t,ye=(0,D.isNonNullable)(U)&&isFinite(U)&&(0,D.isNonNullable)(C.bitrate)?U-a>=C.bitrate*H:!0,Ke=Ho(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===C.quality;if(!ye&&!Ke){N[C.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)(C.quality,u.quality)){N[C.quality]="Buffer";continue}if(!!c&&(0,D.isHigherOrEqual)(C.quality,c)&&!Ke){N[C.quality]="DroppedFramesLimit";continue}if(!!h&&(0,D.isHigherOrEqual)(C.quality,h)&&!Ke){N[C.quality]="StallsLimit";continue}let Ve=M||((0,D.isNullable)(r==null?void 0:r.max)||(0,D.isLowerOrEqual)(C.quality,r.max))&&((0,D.isNullable)(r==null?void 0:r.min)||(0,D.isHigherOrEqual)(C.quality,r.min)),Oe=(0,D.isNonNullable)(d)&&!d?(0,D.isLowerOrEqual)(C.quality,i.backgroundVideoQualityLimit):!0;if(!Ve||!Oe){N[C.quality]="FitsQualityLimits";continue}L||(L=C)}L&&L.bitrate&&vS.next(L.bitrate);let $=(K=L!=null?L:(0,ct.default)(x,-1))!=null?K:s[0],q=l==null?void 0:l.last,_=Wo(i,f,$,l);return(0,D.isNonNullable)(l)&&_.quality!==(q==null?void 0:q.quality)&&f({message:`
9
+ `}),o}return i==null||i.recordSwitch(t),t},OR=(a,e)=>Math.log(e)/Math.log(a),xg=({tuning:a,container:e,limits:t,panelSize:i})=>{let r=a.containerSizeFactor;if(i)return{containerSizeLimit:i,containerSizeFactor:r};if(a.usePixelRatio&&Y.display.pixelRatio){let s=Y.display.pixelRatio;if(a.pixelRatioMultiplier)r*=a.pixelRatioMultiplier*(s-1)+1;else{let n=a.pixelRatioLogBase,[o=0,u=0,l=0]=a.pixelRatioLogCoefficients,c=OR(n,o*s+u)+l;Number.isFinite(c)&&(r*=c)}}return Sn(t,a.highQualityLimit,a.trafficSavingLimit)&&(r*=2),{containerSizeLimit:a.limitByContainer&&e&&e.width>0&&e.height>0?{width:e.width*r,height:e.height*r}:void 0,containerSizeFactor:r}},Ig=new WeakMap,Lt=(a,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:s=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:f,stallsPredictedThroughput:p,abrLogger:h,panelSize:b})=>{var G,ue,le,w,_;(0,D.assertNotEmptyArray)(a,Tn);let{containerSizeFactor:g,containerSizeLimit:v}=xg({container:e,tuning:i,limits:r,panelSize:b}),E=i.considerPlaybackRate&&(0,D.isNonNullable)(o)?o:1,I=Ig.get(a);I||(I=a.filter($=>!(0,D.isInvariantQuality)($.quality)).sort(($,M)=>(0,D.isHigher)($.quality,M.quality)?-1:1),Ig.set(a,I));let A=(G=(0,Ue.default)(I,-1))==null?void 0:G.quality,P=(ue=(0,Ue.default)(I,0))==null?void 0:ue.quality,C=br(r,P,A),N=E*yn(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),O={},B=null;for(let $ of I){let M=!0;if(v)if($.size)M=$.size.width<=v.width&&$.size.height<=v.height;else{let Xe=v&&(0,D.videoSizeToQuality)(v);M=Xe?(0,D.isLowerOrEqual)($.quality,Xe):!0}if(!M){O[$.quality]="FitsContainer";continue}let q=p||t,Te=(0,D.isNonNullable)(q)&&isFinite(q)&&(0,D.isNonNullable)($.bitrate)?q-s>=$.bitrate*N:!0,Ke=Sn(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===$.quality;if(!Te&&!Ke){O[$.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)($.quality,u.quality)){O[$.quality]="Buffer";continue}if(!!d&&(0,D.isHigherOrEqual)($.quality,d)&&!Ke){O[$.quality]="DroppedFramesLimit";continue}if(!!f&&(0,D.isHigherOrEqual)($.quality,f)&&!Ke){O[$.quality]="StallsLimit";continue}let De=C||((0,D.isNullable)(r==null?void 0:r.max)||(0,D.isLowerOrEqual)($.quality,r.max))&&((0,D.isNullable)(r==null?void 0:r.min)||(0,D.isHigherOrEqual)($.quality,r.min)),Ce=(0,D.isNonNullable)(c)&&!c?(0,D.isLowerOrEqual)($.quality,i.backgroundVideoQualityLimit):!0;if(!De||!Ce){O[$.quality]="FitsQualityLimits";continue}B||(B=$)}B&&B.bitrate&&Eg.next(B.bitrate);let V=(le=B!=null?B:(0,Ue.default)(I,-1))!=null?le:a[0],H=l==null?void 0:l.last,U=In(i,h,V,l);return(0,D.isNonNullable)(l)&&U.quality!==(H==null?void 0:H.quality)&&h({message:`
10
10
  [VIDEO TRACKS ABR]
11
11
  [available video tracks]
12
- ${s.map(C=>{var R,U;return`{ id: ${C.id}, quality: ${C.quality}, bitrate: ${C.bitrate}, size: ${(R=C.size)==null?void 0:R.width}:${(U=C.size)==null?void 0:U.height} }`}).join(`
12
+ ${a.map($=>{var M,q;return`{ id: ${$.id}, quality: ${$.quality}, bitrate: ${$.bitrate}, size: ${(M=$.size)==null?void 0:M.width}:${(q=$.size)==null?void 0:q.height} }`}).join(`
13
13
  `)}
14
14
 
15
15
  [tuning]
16
- ${(0,gr.default)(i!=null?i:{}).map(([C,R])=>`${C}: ${R}`).join(`
16
+ ${(0,Di.default)(i!=null?i:{}).map(([$,M])=>`${$}: ${M}`).join(`
17
17
  `)}
18
18
 
19
19
  [limit params]
20
- containerSizeFactor: ${S},
21
- containerSizeLimit: ${(B=v==null?void 0:v.width)!=null?B:0} x ${(Q=v==null?void 0:v.height)!=null?Q:0},
20
+ containerSizeFactor: ${g},
21
+ containerSizeLimit: ${(w=v==null?void 0:v.width)!=null?w:0} x ${(_=v==null?void 0:v.height)!=null?_:0},
22
22
  estimatedThroughput: ${t},
23
23
  stallsPredictedThroughput: ${p},
24
- reserve: ${a},
24
+ reserve: ${s},
25
25
  playbackRate: ${o},
26
- playbackRateFactor: ${T},
26
+ playbackRateFactor: ${E},
27
27
  forwardBufferHealth: ${n},
28
- bitrateFactor: ${H},
28
+ bitrateFactor: ${N},
29
29
  minBufferToSwitchUp: ${i.minBufferToSwitchUp},
30
- droppedVideoMaxQualityLimit: ${c},
31
- stallsVideoMaxQualityLimit: ${h},
32
- limitsAreInvalid: ${M},
30
+ droppedVideoMaxQualityLimit: ${d},
31
+ stallsVideoMaxQualityLimit: ${f},
32
+ limitsAreInvalid: ${C},
33
33
  maxQualityLimit: ${r==null?void 0:r.max},
34
34
  minQualityLimit: ${r==null?void 0:r.min},
35
35
 
36
36
  [limited video tracks]
37
- ${(0,gr.default)(N).map(([C,R])=>`${C}: ${R}`).join(`
37
+ ${(0,Di.default)(O).map(([$,M])=>`${$}: ${M}`).join(`
38
38
  `)||"All tracks are available"}
39
39
 
40
- [best video track] ${L==null?void 0:L.quality}
41
- [selected video track] ${_==null?void 0:_.quality}
42
- `}),_},Yo=(s,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:a=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:d,droppedVideoMaxQualityLimit:c,stallsVideoMaxQualityLimit:h,stallsPredictedThroughput:p,abrLogger:f,panelSize:b})=>{var ne,K,B,Q,C;(0,D.assertNotEmptyArray)(s,Go);let{containerSizeFactor:S,containerSizeLimit:v}=yS({container:e,tuning:i,limits:r,panelSize:b}),T=i.considerPlaybackRate&&(0,D.isNonNullable)(o)?o:1,x=s.filter(R=>!(0,D.isInvariantQuality)(R.quality)).sort((R,U)=>(0,D.isHigher)(R.quality,U.quality)?-1:1),A=(ne=(0,ct.default)(x,-1))==null?void 0:ne.quality,w=(K=(0,ct.default)(x,0))==null?void 0:K.quality,M=Qr(r,w,A),H=T*Qo(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),N={},$=x.filter(R=>{let U=!0;if(v)if(R.size)U=R.size.width<=v.width&&R.size.height<=v.height;else{let Dt=v&&(0,D.videoSizeToQuality)(v);U=Dt?(0,D.isLowerOrEqual)(R.quality,Dt):!0}if(!U)return N[R.quality]="FitsContainer",!1;let ye=p||t,Ke=(0,D.isNonNullable)(ye)&&isFinite(ye)&&(0,D.isNonNullable)(R.bitrate)?ye-a>=R.bitrate*H:!0,me=Ho(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===R.quality;if(!Ke&&!me)return N[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 N[R.quality]="Buffer",!1;if(!!c&&(0,D.isHigherOrEqual)(R.quality,c)&&!me)return N[R.quality]="DroppedFramesLimit",!1;if(!!h&&(0,D.isHigherOrEqual)(R.quality,h)&&!me)return N[R.quality]="StallsLimit",!1;let Oe=M||((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)),Xe=(0,D.isNonNullable)(d)&&!d?(0,D.isLowerOrEqual)(R.quality,i.backgroundVideoQualityLimit):!0;return!Oe||!Xe?(N[R.quality]="FitsQualityLimits",!1):!0})[0];$&&$.bitrate&&vS.next($.bitrate);let q=(B=$!=null?$:(0,ct.default)(x,-1))!=null?B:s[0],_=l==null?void 0:l.last,V=Wo(i,f,q,l);return(0,D.isNonNullable)(l)&&V.quality!==(_==null?void 0:_.quality)&&f({message:`
40
+ [best video track] ${B==null?void 0:B.quality}
41
+ [selected video track] ${U==null?void 0:U.quality}
42
+ `}),U},En=(a,{container:e,estimatedThroughput:t,tuning:i,limits:r,reserve:s=0,forwardBufferHealth:n,playbackRate:o,current:u,history:l,visible:c,droppedVideoMaxQualityLimit:d,stallsVideoMaxQualityLimit:f,stallsPredictedThroughput:p,abrLogger:h,panelSize:b})=>{var ue,le,w,_,$;(0,D.assertNotEmptyArray)(a,Tn);let{containerSizeFactor:g,containerSizeLimit:v}=xg({container:e,tuning:i,limits:r,panelSize:b}),E=i.considerPlaybackRate&&(0,D.isNonNullable)(o)?o:1,I=a.filter(M=>!(0,D.isInvariantQuality)(M.quality)).sort((M,q)=>(0,D.isHigher)(M.quality,q.quality)?-1:1),A=(ue=(0,Ue.default)(I,-1))==null?void 0:ue.quality,P=(le=(0,Ue.default)(I,0))==null?void 0:le.quality,C=br(r,P,A),N=E*yn(n!=null?n:.5,i.bitrateFactorAtEmptyBuffer,i.bitrateFactorAtFullBuffer),O={},V=I.filter(M=>{let q=!0;if(v)if(M.size)q=M.size.width<=v.width&&M.size.height<=v.height;else{let Vt=v&&(0,D.videoSizeToQuality)(v);q=Vt?(0,D.isLowerOrEqual)(M.quality,Vt):!0}if(!q)return O[M.quality]="FitsContainer",!1;let Te=p||t,Ke=(0,D.isNonNullable)(Te)&&isFinite(Te)&&(0,D.isNonNullable)(M.bitrate)?Te-s>=M.bitrate*N:!0,me=Sn(r,i.highQualityLimit,i.trafficSavingLimit)&&(r==null?void 0:r.min)===M.quality;if(!Ke&&!me)return O[M.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)(M.quality,u.quality))return O[M.quality]="Buffer",!1;if(!!d&&(0,D.isHigherOrEqual)(M.quality,d)&&!me)return O[M.quality]="DroppedFramesLimit",!1;if(!!f&&(0,D.isHigherOrEqual)(M.quality,f)&&!me)return O[M.quality]="StallsLimit",!1;let Ce=C||((0,D.isNullable)(r==null?void 0:r.max)||(0,D.isLowerOrEqual)(M.quality,r.max))&&((0,D.isNullable)(r==null?void 0:r.min)||(0,D.isHigherOrEqual)(M.quality,r.min)),Xe=(0,D.isNonNullable)(c)&&!c?(0,D.isLowerOrEqual)(M.quality,i.backgroundVideoQualityLimit):!0;return!Ce||!Xe?(O[M.quality]="FitsQualityLimits",!1):!0})[0];V&&V.bitrate&&Eg.next(V.bitrate);let H=(w=V!=null?V:(0,Ue.default)(I,-1))!=null?w:a[0],U=l==null?void 0:l.last,G=In(i,h,H,l);return(0,D.isNonNullable)(l)&&G.quality!==(U==null?void 0:U.quality)&&h({message:`
43
43
  [VIDEO TRACKS ABR]
44
44
  [available video tracks]
45
- ${s.map(R=>{var U,ye;return`{ id: ${R.id}, quality: ${R.quality}, bitrate: ${R.bitrate}, size: ${(U=R.size)==null?void 0:U.width}:${(ye=R.size)==null?void 0:ye.height} }`}).join(`
45
+ ${a.map(M=>{var q,Te;return`{ id: ${M.id}, quality: ${M.quality}, bitrate: ${M.bitrate}, size: ${(q=M.size)==null?void 0:q.width}:${(Te=M.size)==null?void 0:Te.height} }`}).join(`
46
46
  `)}
47
47
 
48
48
  [tuning]
49
- ${(0,gr.default)(i!=null?i:{}).map(([R,U])=>`${R}: ${U}`).join(`
49
+ ${(0,Di.default)(i!=null?i:{}).map(([M,q])=>`${M}: ${q}`).join(`
50
50
  `)}
51
51
 
52
52
  [limit params]
53
- containerSizeFactor: ${S},
54
- containerSizeLimit: ${(Q=v==null?void 0:v.width)!=null?Q:0} x ${(C=v==null?void 0:v.height)!=null?C:0},
53
+ containerSizeFactor: ${g},
54
+ containerSizeLimit: ${(_=v==null?void 0:v.width)!=null?_:0} x ${($=v==null?void 0:v.height)!=null?$:0},
55
55
  estimatedThroughput: ${t},
56
56
  stallsPredictedThroughput: ${p},
57
- reserve: ${a},
57
+ reserve: ${s},
58
58
  playbackRate: ${o},
59
- playbackRateFactor: ${T},
59
+ playbackRateFactor: ${E},
60
60
  forwardBufferHealth: ${n},
61
- bitrateFactor: ${H},
61
+ bitrateFactor: ${N},
62
62
  minBufferToSwitchUp: ${i.minBufferToSwitchUp},
63
- droppedVideoMaxQualityLimit: ${c},
64
- stallsVideoMaxQualityLimit: ${h},
65
- limitsAreInvalid: ${M},
63
+ droppedVideoMaxQualityLimit: ${d},
64
+ stallsVideoMaxQualityLimit: ${f},
65
+ limitsAreInvalid: ${C},
66
66
  maxQualityLimit: ${r==null?void 0:r.max},
67
67
  minQualityLimit: ${r==null?void 0:r.min},
68
68
 
69
69
  [limited video tracks]
70
- ${(0,gr.default)(N).map(([R,U])=>`${R}: ${U}`).join(`
70
+ ${(0,Di.default)(O).map(([M,q])=>`${M}: ${q}`).join(`
71
71
  `)||"All tracks are available"}
72
72
 
73
- [best video track] ${$==null?void 0:$.quality}
74
- [selected video track] ${V==null?void 0:V.quality}
75
- `}),V},Ko=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,D.assertNotEmptyArray)(t,Go);let d=r.considerPlaybackRate&&(0,D.isNonNullable)(a)?a:1,c=[...t].sort(Gr(-1)),h=s.bitrate;(0,D.assertNonNullable)(h);let p=d*Qo(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Ta(s,e,t,r.minVideoAudioRatio),S=l||i;(0,D.isNonNullable)(S)&&isFinite(S)&&(f=c.find(x=>(0,D.isNonNullable)(x.bitrate)&&(0,D.isNonNullable)(b==null?void 0:b.bitrate)?S-h>=x.bitrate*p&&x.bitrate>=b.bitrate:!1)),f||(f=b);let v=o==null?void 0:o.last,T=f&&Wo(r,u,f,o);return(0,D.isNonNullable)(o)&&(T==null?void 0:T.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
73
+ [best video track] ${V==null?void 0:V.quality}
74
+ [selected video track] ${G==null?void 0:G.quality}
75
+ `}),G},xn=(a,e,t,{estimatedThroughput:i,tuning:r,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,D.assertNotEmptyArray)(t,Tn);let c=r.considerPlaybackRate&&(0,D.isNonNullable)(s)?s:1,d=[...t].sort(gr(-1)),f=a.bitrate;(0,D.assertNonNullable)(f);let p=c*yn(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),h,b=ha(a,e,t,r.minVideoAudioRatio),g=l||i;(0,D.isNonNullable)(g)&&isFinite(g)&&(h=d.find(I=>(0,D.isNonNullable)(I.bitrate)&&(0,D.isNonNullable)(b==null?void 0:b.bitrate)?g-f>=I.bitrate*p&&I.bitrate>=b.bitrate:!1)),h||(h=b);let v=o==null?void 0:o.last,E=h&&In(r,u,h,o);return(0,D.isNonNullable)(o)&&(E==null?void 0:E.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
76
76
  [AUDIO TRACKS ABR]
77
77
  [available audio tracks]
78
- ${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
78
+ ${t.map(I=>`{ id: ${I.id}, bitrate: ${I.bitrate} }`).join(`
79
79
  `)}
80
80
 
81
81
  [tuning]
82
- ${(0,gr.default)(r!=null?r:{}).map(([x,A])=>`${x}: ${A}`).join(`
82
+ ${(0,Di.default)(r!=null?r:{}).map(([I,A])=>`${I}: ${A}`).join(`
83
83
  `)}
84
84
 
85
85
  [limit params]
86
86
  estimatedThroughput: ${i},
87
87
  stallsPredictedThroughput: ${l},
88
- reserve: ${h},
89
- playbackRate: ${a},
90
- playbackRateFactor: ${d},
88
+ reserve: ${f},
89
+ playbackRate: ${s},
90
+ playbackRateFactor: ${c},
91
91
  forwardBufferHealth: ${n},
92
92
  bitrateFactor: ${p},
93
93
  minBufferToSwitchUp: ${r.minBufferToSwitchUp},
94
94
 
95
- [selected audio track] ${T==null?void 0:T.id}
96
- `}),T},Xo=(s,e,t,{estimatedThroughput:i,tuning:r,playbackRate:a,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,D.assertNotEmptyArray)(t,Go);let d=r.considerPlaybackRate&&(0,D.isNonNullable)(a)?a:1,c=mS.get(t);c||(c=[...t].sort(Gr(-1)),mS.set(t,c));let h=s.bitrate;(0,D.assertNonNullable)(h);let p=d*Qo(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),f,b=Ia(s,e,t,r.minVideoAudioRatio),S=l||i;(0,D.isNonNullable)(S)&&isFinite(S)&&(f=c.find(x=>(0,D.isNonNullable)(x.bitrate)&&(0,D.isNonNullable)(b==null?void 0:b.bitrate)?S-h>=x.bitrate*p&&x.bitrate>=b.bitrate:!1)),f||(f=b);let v=o==null?void 0:o.last,T=f&&Wo(r,u,f,o);return(0,D.isNonNullable)(o)&&(T==null?void 0:T.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
95
+ [selected audio track] ${E==null?void 0:E.id}
96
+ `}),E},wn=(a,e,t,{estimatedThroughput:i,tuning:r,playbackRate:s,forwardBufferHealth:n,history:o,abrLogger:u,stallsPredictedThroughput:l})=>{(0,D.assertNotEmptyArray)(t,Tn);let c=r.considerPlaybackRate&&(0,D.isNonNullable)(s)?s:1,d=vg.get(t);d||(d=[...t].sort(gr(-1)),vg.set(t,d));let f=a.bitrate;(0,D.assertNonNullable)(f);let p=c*yn(n!=null?n:.5,r.bitrateAudioFactorAtEmptyBuffer,r.bitrateAudioFactorAtFullBuffer),h,b=fa(a,e,t,r.minVideoAudioRatio),g=l||i;(0,D.isNonNullable)(g)&&isFinite(g)&&(h=d.find(I=>(0,D.isNonNullable)(I.bitrate)&&(0,D.isNonNullable)(b==null?void 0:b.bitrate)?g-f>=I.bitrate*p&&I.bitrate>=b.bitrate:!1)),h||(h=b);let v=o==null?void 0:o.last,E=h&&In(r,u,h,o);return(0,D.isNonNullable)(o)&&(E==null?void 0:E.bitrate)!==(v==null?void 0:v.bitrate)&&u({message:`
97
97
  [AUDIO TRACKS ABR]
98
98
  [available audio tracks]
99
- ${t.map(x=>`{ id: ${x.id}, bitrate: ${x.bitrate} }`).join(`
99
+ ${t.map(I=>`{ id: ${I.id}, bitrate: ${I.bitrate} }`).join(`
100
100
  `)}
101
101
 
102
102
  [tuning]
103
- ${(0,gr.default)(r!=null?r:{}).map(([x,A])=>`${x}: ${A}`).join(`
103
+ ${(0,Di.default)(r!=null?r:{}).map(([I,A])=>`${I}: ${A}`).join(`
104
104
  `)}
105
105
 
106
106
  [limit params]
107
107
  estimatedThroughput: ${i},
108
108
  stallsPredictedThroughput: ${l},
109
- reserve: ${h},
110
- playbackRate: ${a},
111
- playbackRateFactor: ${d},
109
+ reserve: ${f},
110
+ playbackRate: ${s},
111
+ playbackRateFactor: ${c},
112
112
  forwardBufferHealth: ${n},
113
113
  bitrateFactor: ${p},
114
114
  minBufferToSwitchUp: ${r.minBufferToSwitchUp},
115
115
 
116
- [selected audio track] ${T==null?void 0:T.id}
117
- `}),T};var et=s=>new URL(s).hostname;var X=require("@vkontakte/videoplayer-shared/es2018");var AS=Y(Xt(),1);var IS=Y(Rt(),1),TS=s=>{if(s instanceof DOMException&&(0,IS.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"))},gt=async(s,e)=>{let t=s.muted;try{await s.play()}catch(i){if(!TS(i))return!1;if(e&&e(),t)return console.warn(i),!1;s.muted=!0;try{await s.play()}catch(r){return TS(r)&&(s.muted=!1,console.warn(r)),!1}}return!0};var Bt=require("@vkontakte/videoplayer-shared/es2018");var xS=Y(mr(),1),oi=require("@vkontakte/videoplayer-shared/es2018");function We(){return(0,oi.now)()}function Wc(s){return We()-s}function Yc(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 l=n.indexOf("?")>-1?"&":"?";return u&&(n+=l+"lowLat=1",l="&"),o&&(n+=l+"_rnd="+Math.floor(999999999*Math.random())),n}}}function ES(s,e,t){let i=(...r)=>{t.apply(null,r),s.removeEventListener(e,i)};s.addEventListener(e,i)}function Wr(s,e,t,i){let r=window.XMLHttpRequest,a,n,o,u=!1,l=0,d,c,h=!1,p="arraybuffer",f=7e3,b=2e3,S=()=>{if(u)return;(0,oi.assertNonNullable)(d);let _=Wc(d),V;if(_<b){V=b-_,setTimeout(S,V);return}b*=2,b>f&&(b=f),n&&n.abort(),n=new r,M()},v=_=>(a=_,q),T=_=>(c=_,q),x=()=>(p="json",q),A=()=>{if(!u){if(--l>=0){S(),i&&i();return}u=!0,c&&c(),t&&t()}},w=_=>(h=_,q),M=()=>{d=We(),n=new r,n.open("get",s);let _=0,V,ne=0,K=()=>((0,oi.assertNonNullable)(d),Math.max(d,Math.max(V||0,ne||0)));if(a&&n.addEventListener("progress",B=>{let Q=We();a.updateChunk&&B.loaded>_&&(a.updateChunk(K(),B.loaded-_),_=B.loaded,V=Q)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>A())),n.addEventListener("load",()=>{if(u)return;(0,oi.assertNonNullable)(n);let B=n.status;if(B>=200&&B<300){let{response:Q,responseType:C}=n,R=Q==null?void 0:Q.byteLength;if(typeof R=="number"&&a){let U=R-_;U&&a.updateChunk&&a.updateChunk(K(),U)}C==="json"&&(!Q||!(0,xS.default)(Q).length)?A():(c&&c(),e(Q))}else A()}),n.addEventListener("error",()=>{A()}),h){let B=()=>{(0,oi.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(ne=We(),n.removeEventListener("readystatechange",B))};n.addEventListener("readystatechange",B)}return n.responseType=p,n.send(),q},q={withBitrateReporting:v,withParallel:w,withJSONResponse:x,withRetryCount:_=>(l=_,q),withRetryInterval:(_,V)=>((0,oi.isNonNullable)(_)&&(b=_),(0,oi.isNonNullable)(V)&&(f=V),q),withTimeout:_=>(o=_,q),withFinally:T,send:M,abort:()=>{n&&(n.abort(),n=void 0),u=!0,c&&c()}};return q}var xa=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 wS=Y(mr(),1);var Ea=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=We(),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=We()-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=Wr(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=We()}_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=We();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,wS.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 PS=require("@vkontakte/videoplayer-shared/es2018");var Jo=1e4,Kc=3;var $R=6e4,DR=10,CR=1,VR=500,wa=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 PS.Subject,this.chunkRateEstimator=new xa(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=Yc(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&&this.rep.stop(),this.currentManifestEntry){let e=this.params.playbackState.getState();this.paused=e==="paused",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()?this._playVideoElement():this._notifyBuffering(!0)):this.catchUp()}startPlay(e,t){this.autoQuality=t,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=Yc(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;e.addEventListener("error",()=>{var r,a;!!e.error&&!this.destroyed&&(t(`Video element error: ${(r=e.error)==null?void 0:r.code}, details: ${(a=e.error)==null?void 0:a.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"),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:l}=this.autoQualityLimits||{};!fS({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,AS.default)(this.manifest,-1).video.height})&&(u&&a.video.height>u||l&&a.video.height<l)||(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,Bt.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){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",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{ES(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 Ea(Kc,Jo,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,l=null,d=!1,c=()=>{let A=a&&(!d||d===this.rep);return A||t("Not running!"),A},h=(A,w,M)=>{u&&u.abort(),u=Wr(this.urlResolver.resolve(A,!1),w,M,()=>this._retryCallback()).withTimeout(Jo).withBitrateReporting(this.bitrateSwitcher).withRetryCount(Kc).withFinally(()=>{u=null}).send()},p=(A,w,M)=>{(0,Bt.assertNonNullable)(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(A,!1),w,M,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},f=A=>{let w=i.playbackRate;i.playbackRate!==A&&(t(`Playback rate switch: ${w}=>${A}`),i.playbackRate=A)},b=A=>{this.lowLatency=A,t(`lowLatency changed to ${A}`),S()},S=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)f(1);else{let A=this._getBufferSizeSec();if(this.bufferStates.length<5){f(1);return}let M=We()-1e4,H=0;for(let L=0;L<this.bufferStates.length;L++){let $=this.bufferStates[L];A=Math.min(A,$.buf),$.ts<M&&H++}this.bufferStates.splice(0,H),t(`update playback rate; minBuffer=${A} drop=${H} jitter=${this.sourceJitter}`);let N=A-CR;this.sourceJitter>=0?N-=this.sourceJitter/2:this.sourceJitter-=1,N>3?f(1.15):N>1?f(1.1):N>.3?f(1.05):f(1)}},v=A=>{let w,M=()=>w&&w.start?w.start.length:0,H=B=>w.start[B]/1e3,N=B=>w.dur[B]/1e3,L=B=>w.fragIndex+B,$=(B,Q)=>({chunkIdx:L(B),startTS:H(B),dur:N(B),discontinuity:Q}),q=()=>{let B=0;if(w&&w.dur){let Q=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,C=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,R=Q;this.sourceJitter>1&&(R+=this.sourceJitter-1);let U=w.dur.length-1;for(;U>=0&&(R-=w.dur[U],!(R<=0));--U);B=Math.min(U,w.dur.length-1-C),B=Math.max(B,0)}return $(B,!0)},_=B=>{let Q=M();if(!(Q<=0)){if((0,Bt.isNonNullable)(B)){for(let C=0;C<Q;C++)if(H(C)>B)return $(C)}return q()}},V=B=>{let Q=M(),C=B?B.chunkIdx+1:0,R=C-w.fragIndex;if(!(Q<=0)){if(!B||R<0||R-Q>DR)return t(`Resync: offset=${R} bChunks=${Q} chunk=`+JSON.stringify(B)),q();if(!(R>=Q))return $(C-w.fragIndex,!1)}},ne=(B,Q,C)=>{l&&l.abort(),l=Wr(this.urlResolver.resolve(B,!0,this.lowLatency),Q,C,()=>this._retryCallback()).withTimeout(Jo).withRetryCount(Kc).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(B,Q)=>{ne(A,C=>{if(!c())return;w=C;let R=!!w.lowLatency;R!==this.lowLatency&&b(R);let U=0;for(let ye=0;ye<w.dur.length;++ye)U+=w.dur[ye];U>0&&((0,Bt.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(U/w.dur.length)),r({name:"index",zeroTime:w.zeroTime,shiftDuration:w.shiftDuration}),this.sourceJitter=w.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,w.jitter/1e3)):1,B(_(Q))},()=>this._handleNetworkError())},nextChunk:V}},T=()=>{a=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,Bt.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return d={start:A=>{let{videoElement:w,logger:M}=this.params,H=v(e.jidxUrl),N,L,$,q,_=0,V,ne,K,B=()=>{V&&(clearTimeout(V),V=void 0);let ce=Math.max(VR,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Ce=_+ce,Ve=We(),Oe=Math.min(1e4,Ce-Ve);_=Ve;let Xe=()=>{l||c()&&H.seek(()=>{c()&&(_=We(),Q(),B())})};Oe>0?V=window.setTimeout(()=>{this.paused?B():Xe()},Oe):Xe()},Q=()=>{let ce;for(;ce=H.nextChunk(q);)q=ce,Ke(ce);let Ce=H.nextChunk($);if(Ce){if($&&Ce.discontinuity){M("Detected discontinuity; restarting playback"),this.paused?B():(T(),this._initPlayerWith(e));return}ye(Ce)}else B()},C=(ce,Ce)=>{if(!c()||!this.sourceBuffer)return;let Ve,Oe,Xe,Dt=Nt=>{window.setTimeout(()=>{c()&&C(ce,Ce)},Nt)};if(this.sourceBuffer.updating)M("Source buffer is updating; delaying appendBuffer"),Dt(100);else{let Nt=We(),ei=w.currentTime;!this.paused&&w.buffered.length>1&&ne===ei&&Nt-K>500&&(M("Stall suspected; trying to fix"),this._fixupStall()),ne!==ei&&(ne=ei,K=Nt);let ci=this._getBufferSizeSec();if(ci>30)M(`Buffered ${ci} seconds; delaying appendBuffer`),Dt(2e3);else try{this.sourceBuffer.appendBuffer(ce),this.videoPlayStarted?(this.bufferStates.push({ts:Nt,buf:ci}),S(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Ce&&Ce()}catch(Ni){if(Ni.name==="QuotaExceededError")M("QuotaExceededError; delaying appendBuffer"),Xe=this.sourceBuffer.buffered.length,Xe!==0&&(Ve=this.sourceBuffer.buffered.start(0),Oe=ei,Oe-Ve>4&&this.sourceBuffer.remove(Ve,Oe-3)),Dt(1e3);else throw Ni}}},R=()=>{L&&N&&(M([`Appending chunk, sz=${L.byteLength}:`,JSON.stringify($)]),C(L,function(){L=null,Q()}))},U=ce=>e.fragUrlTemplate.replace("%%id%%",ce.chunkIdx),ye=ce=>{c()&&p(U(ce),(Ce,Ve)=>{if(c()){if(Ve/=1e3,L=Ce,$=ce,n=ce.startTS,Ve){let Oe=Math.min(10,ce.dur/Ve);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*Oe:Oe}R()}},()=>this._handleNetworkError())},Ke=ce=>{c()&&((0,Bt.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(U(ce),!1)))},me=ce=>{c()&&(e.cachedHeader=ce,C(ce,()=>{N=!0,R()}))};a=!0,H.seek(ce=>{if(c()){if(_=We(),!ce){B();return}q=ce,!(0,Bt.isNullable)(A)||ce.startTS>A?ye(ce):($=ce,Q())}},A),e.cachedHeader?me(e.cachedHeader):h(e.headerUrl,me,()=>this._handleNetworkError())},stop:T,getTimestampSec:()=>n},d}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,Bt.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,Bt.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,Bt.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=c=>{if(!this.autoQuality)return;let h,p,f;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&c<this.bitrate&&(p=this._getBufferSizeSec(),f=c/this.bitrate,p>10&&f>.8||p>15&&f>.5||p>20&&f>.3)){e(`Not switching: buffer=${Math.floor(p)}; bitrate=${this.bitrate}; newRate=${Math.floor(c)}`);return}h=this._selectQuality(c),h?this._switchToQuality(h):e(`Could not find quality by bitrate ${c}`)},a={updateChunk:(h,p)=>{let f=We();if(this.chunkRateEstimator.addInterval(h,f,p)){let S=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:p,duration:f-h,speed:S}),!0}},get:()=>{let h=this.chunkRateEstimator.getBitRate();return h?h*.85:0}},n=-1/0,o,u=!0,l=()=>{let c=a.get();if(c&&o&&this.autoQuality){if(u&&c>o&&Wc(n)<3e4)return;i(c)}u=this.autoQuality};return{updateChunk:(c,h)=>{let p=a.updateChunk(c,h);return p&&l(),p},notifySwitch:c=>{let h=We();c<o&&(n=h),o=c}}}_fetchManifest(e,t,i){this.manifestRequest=Wr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(Jo).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;gt(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(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,l)=>{var d,c;u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&((c=(d=window.MediaSource)==null?void 0:d.isTypeSupported)!=null&&c.call(d,u.codecs))&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.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))},$R))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var kS=Y(lr(),1),Re=require("@vkontakte/videoplayer-shared/es2018"),Xc=class{constructor(){this.onDroopedVideoFramesLimit$=new Re.Subject;this.subscription=new Re.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new Re.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,Re.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,Re.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,Re.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,Re.interval)(this.droppedFramesChecker.checkTime).pipe((0,Re.filter)(()=>this.playing),(0,Re.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,Re.debounce)(this.droppedFramesChecker.checkTime)),i=(0,Re.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,kS.default)(this.limitCounts).filter(([,a])=>a>=this.droppedFramesChecker.countLimit).sort(([a],[n])=>(0,Re.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}},Yr=Xc;var Zo=require("@vkontakte/videoplayer-shared/es2018"),RS=require("@vkontakte/videoplayer-shared/es2018");var Aa=()=>{var s;return!!((s=window.documentPictureInPicture)!=null&&s.window)||!!document.pictureInPictureElement};var OR=(s,e)=>new Zo.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Aa()))},{...i,...e});r.observe(s);let a=(0,RS.fromEvent)(document,"visibilitychange").pipe((0,Zo.map)(n=>!document.hidden||Aa())).subscribe(n=>t.next(n));return()=>{r.unobserve(s),a.unsubscribe()}}),Ot=OR;var _R=["paused","playing","ready"],FR=["paused","playing","ready"],Pa=class{constructor(e){this.subscription=new X.Subscription;this.videoState=new ue("stopped");this.representations$=new X.ValueSubject([]);this.droppedFramesManager=new Yr;this.maxSeekBackTime$=new X.ValueSubject(1/0);this.zeroTime$=new X.ValueSubject(void 0);this.liveOffset=new br;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:X.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let n=e.manifest,o=[];for(let u of n){let l=(t=u.name)!=null?t:u.index.toString(10),d=(i=Qi(u.name))!=null?i:(0,X.videoSizeToQuality)(u.video),c=u.bitrate/1e3,h={...u.video};if(!d)continue;let p={id:l,quality:d,bitrate:c,size:h};o.push({track:p,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,X.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,Jc.default)(FR,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&a.state==="requested"&&(0,Jc.default)(_R,e)){this.seek(a.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource($e(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"){this.videoState.startTransitionTo("playing");let u=r==null?void 0:r.from;u&&u==="ready"&&this.dash.catchUp(),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($e(this.params.source.url,u))}return;default:return(0,X.assertNever)(e)}};this.textTracksManager=new Vt(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:X.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,X.merge)(this.videoState.stateChangeStarted$.pipe((0,X.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,X.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:a})=>{this.log({message:`[videoState change] ${a}: ${JSON.stringify(r)}`})})),this.video=ht(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(et(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=bt(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,X.map)(r=>r.map(({track:a})=>a)),(0,X.filter)(r=>!!r.length),(0,X.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,X.filterChanged)(),(0,X.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,X.combine)({zeroTime:this.zeroTime$.pipe((0,X.filter)(X.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:a})=>this.params.output.liveTime$.next(r+a*1e3),t)).add(ai(this.video,this.params.desiredState.isLooped,t)).add(mt(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(Ct(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(Ot(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,X.videoQualityToHeight)(r),min:a&&(0,X.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),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":((a=this.params.desiredState.playbackState.getTransition())==null?void 0:a.to)==="ready"&&this.params.desiredState.playbackState.setState("ready");break;case"paused":this.params.desiredState.playbackState.setState("paused");break;case"playing":this.params.desiredState.playbackState.setState("playing");break;default:return(0,X.assertNever)(r.to)}},t)).add((0,X.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,X.observableFrom)(["init"])).pipe((0,X.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),ft(this.video)}createLiveDashPlayer(){let e=new wa({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},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){var l,d,c,h,p,f;let e=this.representations$.getValue(),t=(d=(l=this.params.desiredState.videoTrack.getTransition())==null?void 0:l.to)!=null?d:this.params.desiredState.videoTrack.getState(),i=(h=(c=this.params.desiredState.autoVideoTrackSwitching.getTransition())==null?void 0:c.to)!=null?h:this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,X.isNonNullable)(t)?t:ni(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=(p=this.params.desiredState.videoTrack.getState())==null?void 0:p.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=(f=e.find(({track:S})=>S.id===a))==null?void 0:f.representation;(0,X.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,X.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),this.dash.reinit($e(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var MS=Pa;var Ly=Y(Rt(),1);var Ye=(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 ee=require("@vkontakte/videoplayer-shared/es2018");var eu=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}},Kr=class extends eu{constructor(){super(),this.listeners||eu.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)}},ka=class{constructor(){Object.defineProperty(this,"signal",{value:new Kr,writable:!0,configurable:!0})}abort(e){let t;try{t=new Event("abort")}catch(r){typeof document!="undefined"?document.createEvent?(t=document.createEvent("Event"),t.initEvent("abort",!1,!1)):(t=document.createEventObject(),t.type="abort"):t={type:"abort",bubbles:!1,cancelable:!1}}let i=e;if(i===void 0)if(typeof document=="undefined")i=new Error("This operation was aborted"),i.name="AbortError";else try{i=new DOMException("signal is aborted without reason")}catch(r){i=new Error("This operation was aborted"),i.name="AbortError"}this.signal.reason=i,this.signal.dispatchEvent(t)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(ka.prototype[Symbol.toStringTag]="AbortController",Kr.prototype[Symbol.toStringTag]="AbortSignal");function tu(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 Zc(s){typeof s=="function"&&(s={fetch:s});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=s;if(!tu({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(l,d){let c;d&&d.signal&&(c=d.signal,delete d.signal);let h=new t(l,d);return c&&Object.defineProperty(h,"signal",{writable:!1,enumerable:!1,configurable:!0,value:c}),h},a.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let d=a&&a.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(d){let c;try{c=new DOMException("Aborted","AbortError")}catch(p){c=new Error("Aborted"),c.name="AbortError"}if(d.aborted)return Promise.reject(c);let h=new Promise((p,f)=>{d.addEventListener("abort",()=>f(c),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([h,n(u,l)])}return n(u,l)},Request:a}}var NR=()=>"fetch"in window,Ra=NR()&&tu({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),LS=Ra?Zc({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,_t=Ra?LS.fetch:window.fetch,HO=Ra?LS.Request:window.Request,be=Ra?ka:window.AbortController,zO=Ra?Kr:window.AbortSignal;var Ad=Y(Ma(),1);var gv=Y(bv(),1),Xr=require("@vkontakte/videoplayer-shared/es2018"),iu=s=>{if(!s)return{id:"EmptyResponse",category:Xr.ErrorCategory.PARSER,message:"Empty response"};if(s.length<=2&&s.match(/^\d+$/))return{id:`UVError#${s}`,category:Xr.ErrorCategory.NETWORK,message:`UV Error ${s}`};let e=(0,gv.default)(s).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Xr.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:Xr.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Xr.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var tt=(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 I=require("@vkontakte/videoplayer-shared/es2018");var su=Y(Rt(),1),rs=Y(Xt(),1),au=Y(Ma(),1);var wM=(s,e={})=>{let i=e.timeout||1,r=performance.now();return window.setTimeout(()=>{s({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},AM=s=>window.clearTimeout(s),Sv=s=>typeof s=="function"&&(s==null?void 0:s.toString().endsWith("{ [native code] }")),vv=!Sv(window.requestIdleCallback)||!Sv(window.cancelIdleCallback),Jr=vv?wM:window.requestIdleCallback,ui=vv?AM:window.cancelIdleCallback;var Ty=Y(Co(),1);var Wi=require("@vkontakte/videoplayer-shared/es2018");var PM=18,yv=!1;try{yv=J.browser.isSafari&&!!J.browser.safariVersion&&J.browser.safariVersion<=PM}catch(s){console.error(s)}var ad=class{constructor(e){this.bufferFull$=new Wi.Subject;this.error$=new Wi.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!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.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:Wi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,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)};yv&&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.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:Wi.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,Wi.assertNever)(t)}}},Tv=ad;var Zr=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 de=class{constructor(e,t){this.cursor=0;this.source=e,this.boxParser=t,this.children=[];let i=this.readUint32();this.type=this.readString(4),this.size32=i<=e.buffer.byteLength-e.byteOffset?i:NaN;let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}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 es=class extends de{};var Ba=class extends de{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,a=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,a)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var $a=class extends de{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var Da=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Te=class extends de{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var Ca=class extends Te{constructor(e,t){super(e,t),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 Va=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Oa=class extends de{constructor(e,t){super(e,t),this.data=this.content}};var Sr=class extends Te{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),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,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var _a=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Fa=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Na=class extends Te{constructor(e,t){switch(super(e,t),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 Ua=class extends Te{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var qa=class extends Te{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var ja=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ha=class extends Te{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 za=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Qa=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ga=class extends Te{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Wa=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ya=class extends Te{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 Ka=class extends Te{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 Xa=class extends Te{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 Ja=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Za=class extends Te{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var en=class extends de{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var RM={ftyp:$a,moov:Da,mvhd:Ca,moof:Va,mdat:Oa,sidx:Sr,trak:_a,mdia:ja,mfhd:Ga,tkhd:Ha,traf:Wa,tfhd:Ya,tfdt:Ka,trun:Xa,minf:za,sv3d:Fa,st3d:Na,prhd:Ua,proj:Qa,equi:qa,uuid:Ba,stbl:Ja,stsd:Za,avc1:en,unknown:es},Ri=class s{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i));if(!n.size)break;t.push(n),i+=n.size}catch(r){break}return t}createBox(e,t){let i=RM[e];return i?new i(t,new s):new es(t,new s)}};var Yi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;(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 LM=new TextDecoder("ascii"),BM=s=>LM.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",$M=s=>{let e=new Sr(s,new Ri),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})},DM=(s,e)=>{let i=new Ri().parse(s),r=new Yi(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],l=o.source.byteOffset,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},CM=s=>{let t=new Ri().parse(s),i=new Yi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},VM=s=>{var r;let t=new Ri().parse(s);return(r=new Yi(t).find("sidx"))==null?void 0:r.timescale},OM=(s,e)=>{let i=new Ri().parse(s),a=new Yi(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,h)=>c+h,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},_M=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 Ri().parse(s),r=new Yi(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},Iv={validateData:BM,parseInit:_M,getIndexRange:()=>{},parseSegments:$M,parseFeedableSegmentChunk:DM,getChunkEndTime:OM,getServerLatencyTimestamps:CM,getTimescaleFromIndex:VM};var rn=Y(Rt(),1),Mi=require("@vkontakte/videoplayer-shared/es2018");var Ev=require("@vkontakte/videoplayer-shared/es2018");var xv={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"}},wv=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=tn(s,t),r=i in xv,a=r?xv[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),l=n&255>>o,d=tn(u),c=l*2**((o-1)*8)+d,h=t+o,p;return h+c>s.byteLength?p=new DataView(s.buffer,s.byteOffset+h):p=new DataView(s.buffer,s.byteOffset+h,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:h,tagSize:h+c,value:p,valueSize:c}},tn=(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},Jt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return tn(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,Ev.assertNever)(e)}},vr=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=wv(i);if(!e(r))return;r.type==="master"&&vr(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},Av=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=wv(s);return vr(r.value,({tag:a,type:n,value:o})=>(a===17143?e=Jt(o,n):a===17026?t=Jt(o,n):a===17029&&(i=Jt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Pv=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],FM=[231,22612,22743,167,171,163,160,175],NM=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,d=!1,c=0;return vr(s,({tag:h,type:p,value:f,valueSize:b})=>{if(h===21419){let S=Jt(f,p);l=tn(S)}else h!==21420&&(l=void 0);return h===408125543?(e=f.byteOffset,t=f.byteOffset+b):h===357149030?a=!0:h===290298740?n=!0:h===2807729?i=Jt(f,p):h===17545?r=Jt(f,p):h===21420&&l===475249515?u=Jt(f,p):h===374648427?vr(f,({tag:S,type:v,value:T})=>S===30321?(d=Jt(T,v)===1,!1):!0):a&&n&&(0,rn.default)(Pv,h)&&(o=!0),!o}),(0,Mi.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,Mi.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,Mi.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:d,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},UM=s=>{if((0,Mi.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},qM=(s,e)=>{let t=!1,i=!1,r=o=>(0,Mi.isNonNullable)(o.time)&&(0,Mi.isNonNullable)(o.position),a=[],n;return vr(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=Jt(l,u));break;case 183:break;case 241:n&&(n.position=Jt(l,u));break;default:t&&(0,rn.default)(Pv,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:d}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},jM=s=>{let e=0,t=!1;try{vr(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,rn.default)(FM,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,rn.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},kv={validateData:Av,parseInit:NM,getIndexRange:UM,parseSegments:qM,parseFeedableSegmentChunk:jM};var sn=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return kv;case"mp4":return Iv}}throw new ReferenceError(`Unsupported mime type ${s}`)};var vd=Y(pd(),1),gy=Y(lr(),1),Sy=Y(hd(),1),vy=Y(Xt(),1),yd=Y(mr(),1);var ly=Y(Rt(),1),is=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,ly.default)(["6E","7A","F4"],o)}}return!1};var nn=require("@vkontakte/videoplayer-shared/es2018");var ru=s=>{if(s.includes("/")){let e=s.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(s)};var cy=s=>{var e;try{let t=_L(),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(l=>{a[l[0]]=l.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 l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function _L(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
118
- (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
116
+ [selected audio track] ${E==null?void 0:E.id}
117
+ `}),E};var Ve=a=>new URL(a).hostname;var W=require("@vkontakte/videoplayer-shared/es2018");var Lg=z(yt(),1);var Ag=z(ot(),1),wg=a=>{if(a instanceof DOMException&&(0,Ag.default)(["Failed to load because no supported source was found.","The element has no supported sources."],a.message))throw a;return!(a instanceof DOMException&&(a.code===20||a.name==="AbortError"))},We=async(a,e)=>{let t=a.muted;try{await a.play()}catch(i){if(!wg(i))return!1;if(e&&e(),t)return console.warn(i),!1;a.muted=!0;try{await a.play()}catch(r){return wg(r)&&(a.muted=!1,console.warn(r)),!1}}return!0};var it=require("@vkontakte/videoplayer-shared/es2018");var Pg=z(hr(),1),$t=require("@vkontakte/videoplayer-shared/es2018");function Le(){return(0,$t.now)()}function Il(a){return Le()-a}function El(a){let e=a.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 l=n.indexOf("?")>-1?"&":"?";return u&&(n+=l+"lowLat=1",l="&"),o&&(n+=l+"_rnd="+Math.floor(999999999*Math.random())),n}}}function Rg(a,e,t){let i=(...r)=>{t.apply(null,r),a.removeEventListener(e,i)};a.addEventListener(e,i)}function Sr(a,e,t,i){let r=window.XMLHttpRequest,s,n,o,u=!1,l=0,c,d,f=!1,p="arraybuffer",h=7e3,b=2e3,g=()=>{if(u)return;(0,$t.assertNonNullable)(c);let U=Il(c),G;if(U<b){G=b-U,setTimeout(g,G);return}b*=2,b>h&&(b=h),n&&n.abort(),n=new r,C()},v=U=>(s=U,H),E=U=>(d=U,H),I=()=>(p="json",H),A=()=>{if(!u){if(--l>=0){g(),i&&i();return}u=!0,d&&d(),t&&t()}},P=U=>(f=U,H),C=()=>{c=Le(),n=new r,n.open("get",a);let U=0,G,ue=0,le=()=>((0,$t.assertNonNullable)(c),Math.max(c,Math.max(G||0,ue||0)));if(s&&n.addEventListener("progress",w=>{let _=Le();s.updateChunk&&w.loaded>U&&(s.updateChunk(le(),w.loaded-U),U=w.loaded,G=_)}),o&&(n.timeout=o,n.addEventListener("timeout",()=>A())),n.addEventListener("load",()=>{if(u)return;(0,$t.assertNonNullable)(n);let w=n.status;if(w>=200&&w<300){let{response:_,responseType:$}=n,M=_==null?void 0:_.byteLength;if(typeof M=="number"&&s){let q=M-U;q&&s.updateChunk&&s.updateChunk(le(),q)}$==="json"&&(!_||!(0,Pg.default)(_).length)?A():(d&&d(),e(_))}else A()}),n.addEventListener("error",()=>{A()}),f){let w=()=>{(0,$t.assertNonNullable)(n),n.readyState===XMLHttpRequest.HEADERS_RECEIVED&&(ue=Le(),n.removeEventListener("readystatechange",w))};n.addEventListener("readystatechange",w)}return n.responseType=p,n.send(),H},H={withBitrateReporting:v,withParallel:P,withJSONResponse:I,withRetryCount:U=>(l=U,H),withRetryInterval:(U,G)=>((0,$t.isNonNullable)(U)&&(b=U),(0,$t.isNonNullable)(G)&&(h=G),H),withTimeout:U=>(o=U,H),withFinally:E,send:C,abort:()=>{n&&(n.abort(),n=void 0),u=!0,d&&d()}};return H}var ma=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 s=this.intervals[0];if(s.end<=t)i+=s.end-s.start,r+=s.bytes,this.intervals.splice(0,1);else{if(s.start>=t)break;{let n=t-s.start,o=s.end-s.start;i+=n;let u=s.bytes*n/o;r+=u,s.start=t,s.bytes-=u}}}if(r>0&&i>0){let s=r*8/(i/1e3);return this._updateRate(s),this.logger(`rate updated, new=${Math.round(s/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 kg=z(hr(),1);var ba=class{constructor(e,t,i,r,s){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=s}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=Le(),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)},s=u=>{e._complete=1,e._responseData=u,e._downloadTime=Le()-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=Sr(t,s,()=>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=Le()}_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=Le();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,kg.default)(this.activeRequests).forEach(e=>{e&&e._request&&e._request.abort()}),this.activeRequests={},this.pendingQueue=[],this.completeRequests={}}requestData(e,t,i,r){let s={};return s.send=()=>{let n=this.activeRequests[e]||this.completeRequests[e];if(n)n._cb=t,n._errorCB=i,n._retryCB=r,n._finallyCB=s._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)),s._finallyCB&&s._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(s,e)}},s._cb=t,s._errorCB=i,s._retryCB=r,s.abort=function(){s.request&&s.request.abort()},s.withFinally=n=>(s._finallyCB=n,s),s}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 $g=require("@vkontakte/videoplayer-shared/es2018");var An=1e4,xl=3;var NR=6e4,UR=10,qR=1,HR=500,ga=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 $g.Subject,this.chunkRateEstimator=new ma(this.params.logger),this._initVideo()}attachSource(e){this.manifestUrl=e,this.urlResolver=El(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&&this.rep.stop(),this.currentManifestEntry){let e=this.params.playbackState.getState();this.paused=e==="paused",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()?this._playVideoElement():this._notifyBuffering(!0)):this.catchUp()}startPlay(e,t){this.autoQuality=t,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=El(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;e.addEventListener("error",()=>{var r,s;!!e.error&&!this.destroyed&&(t(`Video element error: ${(r=e.error)==null?void 0:r.code}, details: ${(s=e.error)==null?void 0:s.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"),t.currentTime=r))}_selectQuality(e){let{videoElement:t}=this.params,i,r,s,n=t&&1.62*(Y.display.pixelRatio||1)*t.offsetHeight||520;for(let o=0;o<this.manifest.length;++o){s=this.manifest[o];let{max:u,min:l}=this.autoQualityLimits||{};!Sg({limits:this.autoQualityLimits,highestAvailableHeight:this.manifest[0].video.height,lowestAvailableHeight:(0,Lg.default)(this.manifest,-1).video.height})&&(u&&s.video.height>u||l&&s.video.height<l)||(s.bitrate<e&&n>Math.min(s.video.height,s.video.width)?(!r||s.bitrate>r.bitrate)&&(r=s):(!i||i.bitrate>s.bitrate)&&(i=s))}return r||i}shouldPlay(){if(this.paused)return!1;let t=this._getBufferSizeSec()-Math.max(1,this.sourceJitter);return t>3||(0,it.isNonNullable)(this.downloadRate)&&(this.downloadRate>1.5&&t>2||this.downloadRate>2&&t>1)}_setVideoSrc(e,t){let{logger:i,videoElement:r,playerCallback:s}=this.params;this.mediaSource=new window.MediaSource,i("setting video src"),r.src=URL.createObjectURL(this.mediaSource),this.mediaSource.addEventListener("sourceopen",()=>{this.mediaSource&&(this.sourceBuffer=this.mediaSource.addSourceBuffer(e.codecs),this.bufferStates=[],t())}),this.videoPlayStarted=!1,r.addEventListener("canplay",()=>{this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement())});let n=()=>{Rg(r,"progress",()=>{r.buffered.length?(r.currentTime=r.buffered.start(0),this.waitingForFirstBufferAfterSrcChange=!1,s({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 ba(xl,An,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,s=!1,n=null,o=null,u=null,l=null,c=!1,d=()=>{let A=s&&(!c||c===this.rep);return A||t("Not running!"),A},f=(A,P,C)=>{u&&u.abort(),u=Sr(this.urlResolver.resolve(A,!1),P,C,()=>this._retryCallback()).withTimeout(An).withBitrateReporting(this.bitrateSwitcher).withRetryCount(xl).withFinally(()=>{u=null}).send()},p=(A,P,C)=>{(0,it.assertNonNullable)(this.filesFetcher),o==null||o.abort(),o=this.filesFetcher.requestData(this.urlResolver.resolve(A,!1),P,C,()=>this._retryCallback()).withFinally(()=>{o=null}).send()},h=A=>{let P=i.playbackRate;i.playbackRate!==A&&(t(`Playback rate switch: ${P}=>${A}`),i.playbackRate=A)},b=A=>{this.lowLatency=A,t(`lowLatency changed to ${A}`),g()},g=()=>{if(!this.lowLatency&&!this.params.config.isLiveCatchUpMode)h(1);else{let A=this._getBufferSizeSec();if(this.bufferStates.length<5){h(1);return}let C=Le()-1e4,N=0;for(let B=0;B<this.bufferStates.length;B++){let V=this.bufferStates[B];A=Math.min(A,V.buf),V.ts<C&&N++}this.bufferStates.splice(0,N),t(`update playback rate; minBuffer=${A} drop=${N} jitter=${this.sourceJitter}`);let O=A-qR;this.sourceJitter>=0?O-=this.sourceJitter/2:this.sourceJitter-=1,O>3?h(1.15):O>1?h(1.1):O>.3?h(1.05):h(1)}},v=A=>{let P,C=()=>P&&P.start?P.start.length:0,N=w=>P.start[w]/1e3,O=w=>P.dur[w]/1e3,B=w=>P.fragIndex+w,V=(w,_)=>({chunkIdx:B(w),startTS:N(w),dur:O(w),discontinuity:_}),H=()=>{let w=0;if(P&&P.dur){let _=this.lowLatency?this.params.config.lowLatencyMinBuffer:this.params.config.minBuffer,$=this.lowLatency?this.params.config.lowLatencyMinBufferSegments:this.params.config.minBufferSegments,M=_;this.sourceJitter>1&&(M+=this.sourceJitter-1);let q=P.dur.length-1;for(;q>=0&&(M-=P.dur[q],!(M<=0));--q);w=Math.min(q,P.dur.length-1-$),w=Math.max(w,0)}return V(w,!0)},U=w=>{let _=C();if(!(_<=0)){if((0,it.isNonNullable)(w)){for(let $=0;$<_;$++)if(N($)>w)return V($)}return H()}},G=w=>{let _=C(),$=w?w.chunkIdx+1:0,M=$-P.fragIndex;if(!(_<=0)){if(!w||M<0||M-_>UR)return t(`Resync: offset=${M} bChunks=${_} chunk=`+JSON.stringify(w)),H();if(!(M>=_))return V($-P.fragIndex,!1)}},ue=(w,_,$)=>{l&&l.abort(),l=Sr(this.urlResolver.resolve(w,!0,this.lowLatency),_,$,()=>this._retryCallback()).withTimeout(An).withRetryCount(xl).withFinally(()=>{l=null}).withJSONResponse().send()};return{seek:(w,_)=>{ue(A,$=>{if(!d())return;P=$;let M=!!P.lowLatency;M!==this.lowLatency&&b(M);let q=0;for(let Te=0;Te<P.dur.length;++Te)q+=P.dur[Te];q>0&&((0,it.assertNonNullable)(this.filesFetcher),this.filesFetcher.optimizeForSegDuration(q/P.dur.length)),r({name:"index",zeroTime:P.zeroTime,shiftDuration:P.shiftDuration}),this.sourceJitter=P.hasOwnProperty("jitter")?Math.min(10,Math.max(.01,P.jitter/1e3)):1,w(U(_))},()=>this._handleNetworkError())},nextChunk:G}},E=()=>{s=!1,o&&o.abort(),u&&u.abort(),l&&l.abort(),(0,it.assertNonNullable)(this.filesFetcher),this.filesFetcher.abortAll()};return c={start:A=>{let{videoElement:P,logger:C}=this.params,N=v(e.jidxUrl),O,B,V,H,U=0,G,ue,le,w=()=>{G&&(clearTimeout(G),G=void 0);let ne=Math.max(HR,1e3*(this._getBufferSizeSec()-this.sourceJitter-5)),Me=U+ne,De=Le(),Ce=Math.min(1e4,Me-De);U=De;let Xe=()=>{l||d()&&N.seek(()=>{d()&&(U=Le(),_(),w())})};Ce>0?G=window.setTimeout(()=>{this.paused?w():Xe()},Ce):Xe()},_=()=>{let ne;for(;ne=N.nextChunk(H);)H=ne,Ke(ne);let Me=N.nextChunk(V);if(Me){if(V&&Me.discontinuity){C("Detected discontinuity; restarting playback"),this.paused?w():(E(),this._initPlayerWith(e));return}Te(Me)}else w()},$=(ne,Me)=>{if(!d()||!this.sourceBuffer)return;let De,Ce,Xe,Vt=Kt=>{window.setTimeout(()=>{d()&&$(ne,Me)},Kt)};if(this.sourceBuffer.updating)C("Source buffer is updating; delaying appendBuffer"),Vt(100);else{let Kt=Le(),mi=P.currentTime;!this.paused&&P.buffered.length>1&&ue===mi&&Kt-le>500&&(C("Stall suspected; trying to fix"),this._fixupStall()),ue!==mi&&(ue=mi,le=Kt);let Hi=this._getBufferSizeSec();if(Hi>30)C(`Buffered ${Hi} seconds; delaying appendBuffer`),Vt(2e3);else try{this.sourceBuffer.appendBuffer(ne),this.videoPlayStarted?(this.bufferStates.push({ts:Kt,buf:Hi}),g(),this.bufferStates.length>200&&this.bufferStates.shift()):this.shouldPlay()&&(this.videoPlayStarted=!0,this._playVideoElement()),Me&&Me()}catch($r){if($r.name==="QuotaExceededError")C("QuotaExceededError; delaying appendBuffer"),Xe=this.sourceBuffer.buffered.length,Xe!==0&&(De=this.sourceBuffer.buffered.start(0),Ce=mi,Ce-De>4&&this.sourceBuffer.remove(De,Ce-3)),Vt(1e3);else throw $r}}},M=()=>{B&&O&&(C([`Appending chunk, sz=${B.byteLength}:`,JSON.stringify(V)]),$(B,function(){B=null,_()}))},q=ne=>e.fragUrlTemplate.replace("%%id%%",ne.chunkIdx),Te=ne=>{d()&&p(q(ne),(Me,De)=>{if(d()){if(De/=1e3,B=Me,V=ne,n=ne.startTS,De){let Ce=Math.min(10,ne.dur/De);this.downloadRate=this.downloadRate?(1-.3)*this.downloadRate+.3*Ce:Ce}M()}},()=>this._handleNetworkError())},Ke=ne=>{d()&&((0,it.assertNonNullable)(this.filesFetcher),this.filesFetcher.prefetch(this.urlResolver.resolve(q(ne),!1)))},me=ne=>{d()&&(e.cachedHeader=ne,$(ne,()=>{O=!0,M()}))};s=!0,N.seek(ne=>{if(d()){if(U=Le(),!ne){w();return}H=ne,!(0,it.isNullable)(A)||ne.startTS>A?Te(ne):(V=ne,_())}},A),e.cachedHeader?me(e.cachedHeader):f(e.headerUrl,me,()=>this._handleNetworkError())},stop:E,getTimestampSec:()=>n},c}_switchToQuality(e){let{logger:t,playerCallback:i}=this.params,r;e.bitrate!==this.bitrate&&(this.rep&&(r=this.rep.getTimestampSec(),(0,it.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,it.assertNonNullable)(this.bitrateSwitcher),this.bitrateSwitcher.notifySwitch(this.bitrate),this.rep.start(r),i({name:"qualitySwitch",quality:e}))}_qualityAvailable(e){return(0,it.isNonNullable)(this.manifest.find(t=>t.name===e))}_initBitrateSwitcher(){let{logger:e,playerCallback:t}=this.params,i=d=>{if(!this.autoQuality)return;let f,p,h;if(this.currentManifestEntry&&this._qualityAvailable(this.currentManifestEntry.name)&&d<this.bitrate&&(p=this._getBufferSizeSec(),h=d/this.bitrate,p>10&&h>.8||p>15&&h>.5||p>20&&h>.3)){e(`Not switching: buffer=${Math.floor(p)}; bitrate=${this.bitrate}; newRate=${Math.floor(d)}`);return}f=this._selectQuality(d),f?this._switchToQuality(f):e(`Could not find quality by bitrate ${d}`)},s={updateChunk:(f,p)=>{let h=Le();if(this.chunkRateEstimator.addInterval(f,h,p)){let g=this.chunkRateEstimator.getBitRate();return t({name:"bandwidth",size:p,duration:h-f,speed:g}),!0}},get:()=>{let f=this.chunkRateEstimator.getBitRate();return f?f*.85:0}},n=-1/0,o,u=!0,l=()=>{let d=s.get();if(d&&o&&this.autoQuality){if(u&&d>o&&Il(n)<3e4)return;i(d)}u=this.autoQuality};return{updateChunk:(d,f)=>{let p=s.updateChunk(d,f);return p&&l(),p},notifySwitch:d=>{let f=Le();d<o&&(n=f),o=d}}}_fetchManifest(e,t,i){this.manifestRequest=Sr(this.urlResolver.resolve(e,!0),t,i,()=>this._retryCallback()).withJSONResponse().withTimeout(An).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;We(e,()=>{this.soundProhibitedEvent$.next()}).then(t=>{t||(this.params.liveOffset.pause(),this.params.videoState.setState("paused"))})}_handleManifestUpdate(e){let{logger:t,playerCallback:i,videoElement:r}=this.params,s=n=>{let o=[];return n!=null&&n.length?(n.forEach((u,l)=>{var c,d;u.video&&r.canPlayType(u.codecs).replace(/no/,"")&&((d=(c=window.MediaSource)==null?void 0:c.isTypeSupported)!=null&&d.call(c,u.codecs))&&(u.index=l,o.push(u))}),o.sort(function(u,l){return u.video&&l.video?l.video.height-u.video.height:l.bitrate-u.bitrate}),o):(i({name:"error",type:"empty_manifest"}),[])};this.manifest=s(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))},NR))}_initManifest(){this._fetchManifest(this.manifestUrl,e=>{this.destroyed||(this._handleManifestUpdate(e),this._refetchManifest(this.manifestUrl))},()=>this._handleNetworkError())}};var Mg=z(rr(),1),ye=require("@vkontakte/videoplayer-shared/es2018"),wl=class{constructor(){this.onDroopedVideoFramesLimit$=new ye.Subject;this.subscription=new ye.Subscription;this.playing=!1;this.tracks=[];this.forceChecker$=new ye.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,ye.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,s=1-(i-r)/i;!isNaN(s)&&s>0&&this.log({message:`[dropped]. current dropped percent: ${s}, limit: ${this.droppedFramesChecker.percentLimit}`}),!isNaN(s)&&s>=this.droppedFramesChecker.percentLimit&&(0,ye.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,ye.fromEvent)(this.video,"resize").subscribe(this.handleChangeVideoQuality));let e=(0,ye.interval)(this.droppedFramesChecker.checkTime).pipe((0,ye.filter)(()=>this.playing),(0,ye.filter)(()=>{let r=!!this.isForceCheckCounter;return r&&(this.isForceCheckCounter-=1),!r})),t=this.forceChecker$.pipe((0,ye.debounce)(this.droppedFramesChecker.checkTime)),i=(0,ye.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,Mg.default)(this.limitCounts).filter(([,s])=>s>=this.droppedFramesChecker.countLimit).sort(([s],[n])=>(0,ye.isLower)(s,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}},vr=wl;var Pn=require("@vkontakte/videoplayer-shared/es2018"),Dg=require("@vkontakte/videoplayer-shared/es2018");var Sa=()=>{var a;return!!((a=window.documentPictureInPicture)!=null&&a.window)||!!document.pictureInPictureElement};var jR=(a,e)=>new Pn.Observable(t=>{if(!window.IntersectionObserver)return;let i={root:null},r=new IntersectionObserver((n,o)=>{n.forEach(u=>t.next(u.isIntersecting||Sa()))},{...i,...e});r.observe(a);let s=(0,Dg.fromEvent)(document,"visibilitychange").pipe((0,Pn.map)(n=>!document.hidden||Sa())).subscribe(n=>t.next(n));return()=>{r.unobserve(a),s.unsubscribe()}}),ct=jR;var QR=["paused","playing","ready"],GR=["paused","playing","ready"],va=class{constructor(e){this.subscription=new W.Subscription;this.videoState=new re("stopped");this.representations$=new W.ValueSubject([]);this.droppedFramesManager=new vr;this.maxSeekBackTime$=new W.ValueSubject(1/0);this.zeroTime$=new W.ValueSubject(void 0);this.liveOffset=new Mi;this._dashCb=e=>{var t,i,r,s;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:W.ErrorCategory.WTF,message:"LiveDashPlayer reported error"});break}case"manifest":{let n=e.manifest,o=[];for(let u of n){let l=(t=u.name)!=null?t:u.index.toString(10),c=(i=ui(u.name))!=null?i:(0,W.videoSizeToQuality)(u.video),d=u.bitrate/1e3,f={...u.video};if(!c)continue;let p={id:l,quality:c,bitrate:d,size:f};o.push({track:p,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=(s=this.representations$.getValue().find(({representation:u})=>u===n))==null?void 0:s.track;this.params.output.hostname$.next(new URL(n.headerUrl,this.params.source.url).hostname),(0,W.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(),s=this.params.desiredState.seekState.getState();if(this.log({message:`[syncPlayback] videoState: ${e}; videoTransition: ${JSON.stringify(t)}; desiredPlaybackState: ${i}; seekState: ${JSON.stringify(s)};`}),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,Al.default)(GR,e)&&(n||o)){this.prepare();return}if((r==null?void 0:r.to)!=="paused"&&s.state==="requested"&&(0,Al.default)(QR,e)){this.seek(s.position-this.liveOffset.getTotalPausedTime());return}switch(e){case"stopped":this.videoState.startTransitionTo("manifest_ready"),this.dash.attachSource(xe(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"){this.videoState.startTransitionTo("playing");let u=r==null?void 0:r.from;u&&u==="ready"&&this.dash.catchUp(),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(xe(this.params.source.url,u))}return;default:return(0,W.assertNever)(e)}};this.textTracksManager=new lt(e.source.url),this.params=e,this.log=this.params.dependencies.logger.createComponentLog("DashLiveProvider");let t=r=>{e.output.error$.next({id:"DashLiveProvider",category:W.ErrorCategory.WTF,message:"DashLiveProvider internal logic error",thrown:r})};this.subscription.add((0,W.merge)(this.videoState.stateChangeStarted$.pipe((0,W.map)(r=>({transition:r,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,W.map)(r=>({transition:r,type:"end"})))).subscribe(({transition:r,type:s})=>{this.log({message:`[videoState change] ${s}: ${JSON.stringify(r)}`})})),this.video=He(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(Ve(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=Ge(this.video);this.subscription.add(()=>i.destroy()),this.subscription.add(this.representations$.pipe((0,W.map)(r=>r.map(({track:s})=>s)),(0,W.filter)(r=>!!r.length),(0,W.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,W.filterChanged)(),(0,W.map)(r=>-r/1e3)).subscribe(this.params.output.duration$)).add((0,W.combine)({zeroTime:this.zeroTime$.pipe((0,W.filter)(W.isNonNullable)),position:i.timeUpdate$}).subscribe(({zeroTime:r,position:s})=>this.params.output.liveTime$.next(r+s*1e3),t)).add(kt(this.video,this.params.desiredState.isLooped,t)).add(Qe(this.video,this.params.desiredState.volume,i.volumeState$,t)).add(i.volumeState$.subscribe(this.params.output.volume$,t)).add(ut(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(ct(this.video).subscribe(this.params.output.elementVisible$)).add(this.params.desiredState.autoVideoTrackLimits.stateChangeStarted$.subscribe(({to:{max:r,min:s}})=>{this.dash.setAutoQualityLimits({max:r&&(0,W.videoQualityToHeight)(r),min:s&&(0,W.videoQualityToHeight)(s)}),this.params.output.autoVideoTrackLimits$.next({max:r,min:s})})).add(this.videoState.stateChangeEnded$.subscribe(r=>{var s;switch(r.to){case"stopped":this.params.output.position$.next(0),this.params.output.duration$.next(1/0),this.params.desiredState.playbackState.setState("stopped");break;case"manifest_ready":case"ready":((s=this.params.desiredState.playbackState.getTransition())==null?void 0:s.to)==="ready"&&this.params.desiredState.playbackState.setState("ready");break;case"paused":this.params.desiredState.playbackState.setState("paused");break;case"playing":this.params.desiredState.playbackState.setState("playing");break;default:return(0,W.assertNever)(r.to)}},t)).add((0,W.merge)(e.desiredState.playbackState.stateChangeStarted$,e.desiredState.seekState.stateChangeEnded$,e.desiredState.videoTrack.stateChangeStarted$,e.desiredState.autoVideoTrackSwitching.stateChangeStarted$,this.videoState.stateChangeEnded$,this.droppedFramesManager.onDroopedVideoFramesLimit$,(0,W.observableFrom)(["init"])).pipe((0,W.debounce)(0)).subscribe(this.syncPlayback,t))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.droppedFramesManager.destroy(),this.dash.destroy(),this.params.output.element$.next(void 0),je(this.video)}createLiveDashPlayer(){let e=new ga({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},playerCallback:this._dashCb,logger:t=>{this.params.dependencies.logger.log({message:String(t),component:"LiveDashPlayer"})}});return e.pause(),e}prepare(){var l,c,d,f,p,h;let e=this.representations$.getValue(),t=(c=(l=this.params.desiredState.videoTrack.getTransition())==null?void 0:l.to)!=null?c:this.params.desiredState.videoTrack.getState(),i=(f=(d=this.params.desiredState.autoVideoTrackSwitching.getTransition())==null?void 0:d.to)!=null?f:this.params.desiredState.autoVideoTrackSwitching.getState(),r=!i&&(0,W.isNonNullable)(t)?t:Lt(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}),s=r==null?void 0:r.id,n=this.params.desiredState.videoTrack.getTransition(),o=(p=this.params.desiredState.videoTrack.getState())==null?void 0:p.id,u=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(r&&(n||s!==o)&&this.setVideoTrack(r),u&&this.setAutoQuality(i),n||u||s!==o){let b=(h=e.find(({track:g})=>g.id===s))==null?void 0:h.representation;(0,W.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,W.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",s=-e,n=s<=this.maxSeekBackTime$.getValue()?s:0;this.params.output.position$.next(e/1e3),this.dash.reinit(xe(this.params.source.url,n)),r&&this.dash.pause(),this.liveOffset.resetTo(n,r)}};var Cg=va;var jv=z(ot(),1);var $e=(a,e)=>{let t=0;for(let i=0;i<a.length;i++){let r=a.start(i)*1e3,s=a.end(i)*1e3;r<=e&&e<=s&&(t=s)}return Math.max(t-e,0)};var X=require("@vkontakte/videoplayer-shared/es2018");var{NativeAbortSignal:MV,NativeAbortController:DV}=function(a){return{NativeAbortSignal:a.AbortSignal,NativeAbortController:a.AbortController}}(typeof self!="undefined"?self:global);function Bg(a){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=a,e}function Vg(a){if(a===void 0)if(typeof document=="undefined")a=new Error("This operation was aborted"),a.name="AbortError";else try{a=new DOMException("signal is aborted without reason"),Object.defineProperty(a,"name",{value:"AbortError"})}catch(e){a=new Error("This operation was aborted"),a.name="AbortError"}return a}var Rn=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,s=i.length;r<s;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,s=i.length;r<s;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}},yr=class extends Rn{constructor(){super(),this.listeners||Rn.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 Ci;return setTimeout(()=>t.abort(new DOMException(`This signal is timeout in ${e}ms`,"TimeoutError")),e),t.signal}static any(e){let t=new Ci;function i(){t.abort(this.reason),r()}function r(){for(let s of e)s.removeEventListener("abort",i)}for(let s of e)if(s.aborted){t.abort(s.reason);break}else s.addEventListener("abort",i);return t.signal}},Ci=class{constructor(){Object.defineProperty(this,"signal",{value:new yr,writable:!0,configurable:!0})}abort(e){let t=Vg(e),i=Bg(t);this.signal.reason=t,this.signal.dispatchEvent(i)}toString(){return"[object AbortController]"}};typeof Symbol!="undefined"&&Symbol.toStringTag&&(Ci.prototype[Symbol.toStringTag]="AbortController",yr.prototype[Symbol.toStringTag]="AbortSignal");function kn(a){return a.__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL?(console.log("__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL=true is set, will force install polyfill"),!0):typeof a.Request=="function"&&!a.Request.prototype.hasOwnProperty("signal")||!a.AbortController}function Pl(a){typeof a=="function"&&(a={fetch:a});let{fetch:e,Request:t=e.Request,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r=!1}=a;if(!kn({fetch:e,Request:t,AbortController:i,__FORCE_INSTALL_ABORTCONTROLLER_POLYFILL:r}))return{fetch:e,Request:s};let s=t;(s&&!s.prototype.hasOwnProperty("signal")||r)&&(s=function(l,c){let d;c&&c.signal&&(d=c.signal,delete c.signal);let f=new t(l,c);return d&&Object.defineProperty(f,"signal",{writable:!1,enumerable:!1,configurable:!0,value:d}),f},s.prototype=t.prototype);let n=e;return{fetch:(u,l)=>{let c=s&&s.prototype.isPrototypeOf(u)?u.signal:l?l.signal:void 0;if(c){let d;try{d=new DOMException("Aborted","AbortError")}catch(p){d=new Error("Aborted"),d.name="AbortError"}if(c.aborted)return Promise.reject(d);let f=new Promise((p,h)=>{c.addEventListener("abort",()=>h(d),{once:!0})});return l&&l.signal&&delete l.signal,Promise.race([f,n(u,l)])}return n(u,l)},Request:s}}var WR=()=>"fetch"in window,ya=WR()&&kn({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}),_g=ya?Pl({fetch:window.fetch,Request:window.Request,AbortController:window.AbortController}):void 0,dt=ya?_g.fetch:window.fetch,HV=ya?_g.Request:window.Request,ce=ya?Ci:window.AbortController,jV=ya?yr:window.AbortSignal;var Kl=z(Ta(),1);var ES=z(IS(),1),Tr=require("@vkontakte/videoplayer-shared/es2018"),Ln=a=>{if(!a)return{id:"EmptyResponse",category:Tr.ErrorCategory.PARSER,message:"Empty response"};if(a.length<=2&&a.match(/^\d+$/))return{id:`UVError#${a}`,category:Tr.ErrorCategory.NETWORK,message:`UV Error ${a}`};let e=(0,ES.default)(a).substring(0,100).toLowerCase();if(e.startsWith("<!doctype")||e.startsWith("<html>")||e.startsWith("<body>")||e.startsWith("<head>"))return{id:"UnexpectedHTML",category:Tr.ErrorCategory.NETWORK,message:"Received unexpected HTML, possibly a ISP block"};if(e.startsWith("<?xml"))return new DOMParser().parseFromString(a,"text/xml").querySelector("parsererror")?{id:"InvalidXML",category:Tr.ErrorCategory.PARSER,message:"XML parsing error"}:{id:"XMLParserLogicError",category:Tr.ErrorCategory.PARSER,message:"Response is valid XML, but parser failed"}};var _e=(a,e,t=0)=>{for(let i=0;i<a.length;i++)if(a.start(i)*1e3-t<=e&&a.end(i)*1e3+t>e)return!0;return!1};var T=require("@vkontakte/videoplayer-shared/es2018");var Dn=z(ot(),1),_i=z(yt(),1),Cn=z(Ta(),1);var Mk=(a,e={})=>{let i=e.timeout||1,r=performance.now();return window.setTimeout(()=>{a({get didTimeout(){return e.timeout?!1:performance.now()-r-1>i},timeRemaining(){return Math.max(0,1+(performance.now()-r))}})},1)},Dk=a=>window.clearTimeout(a),xS=a=>typeof a=="function"&&(a==null?void 0:a.toString().endsWith("{ [native code] }")),wS=!xS(window.requestIdleCallback)||!xS(window.cancelIdleCallback),Ir=wS?Mk:window.requestIdleCallback,Mt=wS?Dk:window.cancelIdleCallback;var Cv=z(ln(),1);var ci=require("@vkontakte/videoplayer-shared/es2018");var Ck=18,AS=!1;try{AS=Y.browser.isSafari&&!!Y.browser.safariVersion&&Y.browser.safariVersion<=Ck}catch(a){console.error(a)}var Dl=class{constructor(e){this.bufferFull$=new ci.Subject;this.error$=new ci.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!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.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:ci.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,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 s={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(s),this.pull()})}async abort(e){return new Promise(t=>{let i,r=s=>{this.abortRequested=!1,t(s)};AS&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:s}of this.queue)s(!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.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(s){s instanceof DOMException&&s.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):s instanceof DOMException&&s.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:ci.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:s}),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,ci.assertNever)(t)}}},PS=Dl;var Er=a=>{let e=0;for(let t=0;t<a.length;t++)e+=a.end(t)-a.start(t);return e*1e3};var R=require("@vkontakte/videoplayer-shared/es2018");var kS=z(yt(),1);var $n=a=>a.valid,se=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,s;i===0?(this.size=void 0,this.valid=!1,s=void 0):i===1?(this.size=void 0,this.valid=!1,s=void 0):i>e.byteLength?(this.size=i,this.valid=!1,s=Math.min(i-this.cursor,e.byteLength-this.cursor)):(this.size=i,this.valid=!0,s=i-this.cursor),this.content=new DataView(e.buffer,r,s)}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 xr=class extends se{};var RS=require("@vkontakte/videoplayer-shared/es2018");var Ea=class extends se{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,RS.assertNever)(e)}}};var xa=class extends se{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 s=this.readString(4);this.compatibleBrands.push(s)}}};var wa=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var be=class extends se{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 Aa=class extends be{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 Pa=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ra=class extends se{constructor(e,t){super(e,t),this.data=this.content}};var Bi=class extends be{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(),s=r>>>31,n=r<<1>>>1,o=this.readUint32();r=this.readUint32();let u=r>>>28,l=r<<3>>>3;this.segments.push({referenceType:s,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}}};var ka=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var La=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var $a=class extends be{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 Ma=class extends be{constructor(e,t){super(e,t),this.valid&&(this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32())}};var Da=class extends be{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 Ca=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Ba=class extends be{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 Va=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var _a=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Oa=class extends be{constructor(e,t){super(e,t),this.valid&&(this.sequenceNumber=this.readUint32())}};var Fa=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Na=class extends be{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 Ua=class extends be{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 qa=class extends be{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 Ha=class extends se{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var ja=class extends be{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 Qa=class extends se{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 Vk={ftyp:xa,moov:wa,mvhd:Aa,moof:Pa,mdat:Ra,sidx:Bi,trak:ka,mdia:Ca,mfhd:Oa,tkhd:Ba,traf:Fa,tfhd:Na,tfdt:Ua,trun:qa,minf:Va,sv3d:La,st3d:$a,prhd:Ma,proj:_a,equi:Da,uuid:Ea,stbl:Ha,stsd:ja,avc1:Qa,unknown:xr},Ht=class a{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;){let s=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n;try{n=this.createBox(s,new DataView(e.buffer,e.byteOffset+i,e.byteLength-i))}catch(o){if(!(o instanceof RangeError))throw o}if(!n||!$n(n))break;t.push(n),i+=n.size}return t}createBox(e,t){let i=Vk[e];return i?new i(t,new a):new xr(t,new a)}};var di=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,s;$n(t)&&((s=(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 Ok=new TextDecoder("ascii"),Fk=a=>Ok.decode(new DataView(a.buffer,a.byteOffset+4,4))==="ftyp",Nk=a=>{let e=new Bi(a,new Ht),t=e.earliestPresentationTime/e.timescale*1e3,i=a.byteOffset+a.byteLength+e.firstOffset;return e.segments.map(s=>{if(s.referenceType!==0)throw new Error("Unsupported multilevel sidx");let n=s.subsegmentDuration/e.timescale*1e3,o={status:"none",time:{from:t,to:t+n},byte:{from:i,to:i+s.referencedSize-1}};return t+=n,i+=s.referencedSize,o})},Uk=(a,e)=>{let i=new Ht().parse(a),r=new di(i),s=r.findAll("moof"),n=e?r.findAll("uuid"):r.findAll("mdat");if(!(n.length&&s.length))return null;let o=s[0],u=n[n.length-1],l=o.source.byteOffset,d=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(a.buffer,l,d)},qk=a=>{let t=new Ht().parse(a),i=new di(t),r={},s=i.findAll("uuid"),n=(0,kS.default)(s,-1);return n?{serverDataReceivedTimestamp:n.userData.received,serverDataPreparedTime:n.userData.received}:r},Hk=a=>{var r;let t=new Ht().parse(a);return(r=new di(t).find("sidx"))==null?void 0:r.timescale},jk=(a,e)=>{let i=new Ht().parse(a),s=new di(i).findAll("traf"),n=s[s.length-1].children.find(d=>d.type==="tfhd"),o=s[s.length-1].children.find(d=>d.type==="tfdt"),u=s[s.length-1].children.find(d=>d.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((d,f)=>d+f,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},Qk=a=>{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 Ht().parse(a),r=new di(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},LS={validateData:Fk,parseInit:Qk,getIndexRange:()=>{},parseSegments:Nk,parseFeedableSegmentChunk:Uk,getChunkEndTime:jk,getServerLatencyTimestamps:qk,getTimescaleFromIndex:Hk};var za=z(ot(),1),jt=require("@vkontakte/videoplayer-shared/es2018");var MS=require("@vkontakte/videoplayer-shared/es2018");var $S={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"}},DS=a=>{let e=a.getUint8(0),t=0;e&128?t=1:e&64?t=2:e&32?t=3:e&16&&(t=4);let i=Wa(a,t),r=i in $S,s=r?$S[i].type:"binary",n=a.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(a.buffer,a.byteOffset+t+1,o-1),l=n&255>>o,c=Wa(u),d=l*2**((o-1)*8)+c,f=t+o,p;return f+d>a.byteLength?p=new DataView(a.buffer,a.byteOffset+f):p=new DataView(a.buffer,a.byteOffset+f,d),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:s,tagHeaderSize:f,tagSize:f+d,value:p,valueSize:d}},Wa=(a,e=a.byteLength)=>{switch(e){case 1:return a.getUint8(0);case 2:return a.getUint16(0);case 3:return a.getUint8(0)*2**16+a.getUint16(1);case 4:return a.getUint32(0);case 5:return a.getUint8(0)*2**32+a.getUint32(1);case 6:return a.getUint16(0)*2**32+a.getUint32(2);case 7:{let t=a.getUint8(0)*281474976710656+a.getUint16(1)*4294967296+a.getUint32(3);if(Number.isSafeInteger(t))return t}case 8:throw new ReferenceError("Int64 is not supported")}return 0},Tt=(a,e)=>{switch(e){case"int":return a.getInt8(0);case"uint":return Wa(a);case"float":return a.byteLength===4?a.getFloat32(0):a.getFloat64(0);case"string":return new TextDecoder("ascii").decode(a);case"utf8":return new TextDecoder("utf-8").decode(a);case"date":return new Date(Date.UTC(2001,0)+a.getInt8(0)).getTime();case"master":return a;case"binary":return a;default:(0,MS.assertNever)(e)}},Vi=(a,e)=>{let t=0;for(;t<a.byteLength;){let i=new DataView(a.buffer,a.byteOffset+t),r=DS(i);if(!e(r))return;r.type==="master"&&Vi(r.value,e),t=r.value.byteOffset-a.byteOffset+r.valueSize}},CS=a=>{if(a.getUint32(0)!==440786851)return!1;let e,t,i,r=DS(a);return Vi(r.value,({tag:s,type:n,value:o})=>(s===17143?e=Tt(o,n):s===17026?t=Tt(o,n):s===17029&&(i=Tt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var BS=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],Gk=[231,22612,22743,167,171,163,160,175],Wk=a=>{let e,t,i,r,s=!1,n=!1,o=!1,u,l,c=!1,d=0;return Vi(a,({tag:f,type:p,value:h,valueSize:b})=>{if(f===21419){let g=Tt(h,p);l=Wa(g)}else f!==21420&&(l=void 0);return f===408125543?(e=h.byteOffset,t=h.byteOffset+b):f===357149030?s=!0:f===290298740?n=!0:f===2807729?i=Tt(h,p):f===17545?r=Tt(h,p):f===21420&&l===475249515?u=Tt(h,p):f===374648427?Vi(h,({tag:g,type:v,value:E})=>g===30321?(c=Tt(E,v)===1,!1):!0):s&&n&&(0,za.default)(BS,f)&&(o=!0),!o}),(0,jt.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,jt.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,jt.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:c,stereoMode:d,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},zk=a=>{if((0,jt.isNullable)(a.cuesSeekPosition))return;let e=a.segmentStart+a.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},Yk=(a,e)=>{let t=!1,i=!1,r=o=>(0,jt.isNonNullable)(o.time)&&(0,jt.isNonNullable)(o.position),s=[],n;return Vi(a,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&s.push(n),n={};break;case 179:n&&(n.time=Tt(l,u));break;case 183:break;case 241:n&&(n.position=Tt(l,u));break;default:t&&(0,za.default)(BS,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&s.push(n),s.map((o,u)=>{let{time:l,position:c}=o,d=s[u+1];return{status:"none",time:{from:l,to:d?d.time:e.segmentDuration},byte:{from:e.segmentStart+c,to:d?e.segmentStart+d.position-1:e.segmentEnd-1}}})},Kk=a=>{let e=0,t=!1;try{Vi(a,i=>i.tag===524531317?i.tagSize<=a.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,za.default)(Gk,i.tag)?(e+i.tagSize<=a.byteLength&&(e+=i.tagSize,t||(t=(0,za.default)([163,160,175],i.tag))),!0):!1)}catch(i){}return e>0&&e<=a.byteLength&&t?new DataView(a.buffer,a.byteOffset,e):null},VS={validateData:CS,parseInit:Wk,getIndexRange:zk,parseSegments:Yk,parseFeedableSegmentChunk:Kk};var Dt=a=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(a);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return VS;case"mp4":return LS}}throw new ReferenceError(`Unsupported mime type ${a}`)};var Ct=a=>a instanceof DOMException&&(a.name==="AbortError"||a.code===20);var Nl=z(sv(),1),Av=z(rr(),1),Pv=z(Tv(),1),Rv=z(yt(),1),Ul=z(hr(),1);var Iv=z(ot(),1),Fl=a=>{let e=a.split("."),[t,...i]=e;if(!t)return!1;switch(t){case"av01":{let[r,s,n]=i;return!!(n&&parseInt(n,10)>8)}case"vp09":{let[r,s,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[s,n]=r.toUpperCase(),o=s+n;return(0,Iv.default)(["6E","7A","F4"],o)}}return!1};var Ya=require("@vkontakte/videoplayer-shared/es2018");var Ev=a=>{if(a.includes("/")){let e=a.split("/");return parseInt(e[0])/parseInt(e[1])}else return parseFloat(a)};var xv=a=>{var e;try{let t=YL(),i=a.match(t),{groups:r}=i!=null?i:{};if(r){let s={};if(r.extensions){let u=r.extensions.toLowerCase().match(/(?:[0-9a-wy-z](?:-[a-z0-9]{2,8})+)/g);Array.from(u||[]).forEach(l=>{s[l[0]]=l.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:s,variants:n};return Object.keys(o).forEach(u=>{let l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function YL(){let a="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",c=`^(?:(?<langtag>${`
118
+ (?<language>${`(?:[a-z]{2,3}(?:-${a})?|[a-z]{4}|[a-z]{5,8})`})
119
119
  (-(?<script>[a-z]{4}))?
120
120
  (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
121
121
  (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
122
122
  (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
123
123
  (?:-(?<privateuse>(?:${e})))?
124
- `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var md=Y(Xt(),1);var dy=require("@vkontakte/videoplayer-shared/es2018"),py=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?Qi(a):void 0)!=null?u:(0,dy.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},hy=({id:s,bitrate:e})=>({id:s,bitrate:e}),fy=({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}),bd=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,md.default)(i.split("."),0),isDefault:r}),gd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,md.default)(r.split("."),0)}),Sd=s=>"url"in s,dt=s=>s.type==="template",an=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var by=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},Li=(s,e)=>{let t=s;t=(0,vd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,gy.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,vd.default)(t,n,(o,u)=>(0,nn.isNullable)(a)?o:(0,nn.isNullable)(u)?a:(0,Sy.default)(a,parseInt(u,10),"0"))}return t},yy=(s,e)=>{var L,$,q,_,V,ne,K,B,Q,C,R,U,ye,Ke,me,ce,Ce,Ve,Oe,Xe,Dt,Nt,ei,ci,Ni,ls,cs,ds,ps,hs,fs,ms,bs,gs,Ss,vs,ys,Ts,Is,xs,Es,ws,As,Ps,ks,Rs,Ms,Ls,Bs,$s,Ds,Cs,Vs,Os,_s,Fs,Ns,Us,qs,js,Hs;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(we=>{var z,it;return(it=(z=we.textContent)==null?void 0:z.trim())!=null?it:""}),o=(L=(0,vy.default)(n,0))!=null?L:"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),d=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],h=c==null?void 0:c.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,p=c==null?void 0:c.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c==null?void 0:c.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=c==null?void 0:c.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:l?new Date(l).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:h?new Date(h).getTime():0,streamIsAlive:p==="yes",streamIsUnpublished:f==="yes"});let v,T=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],A=x.reduce((we,z)=>({...we,[z.id]:z.children}),{}),w=x.reduce((we,z)=>({...we,[z.id]:z.getAttribute("duration")}),{});T?v=by(T):(0,yd.default)(w).filter(we=>we).length&&!u?v=(0,yd.default)(w).reduce((we,z)=>{var it;return we+((it=by(z))!=null?it:0)},0):b&&(v=parseInt(b,10));let M=0,H=(q=($=a.getAttribute("profiles"))==null?void 0:$.split(","))!=null?q:[];for(let we of x.map(z=>z.id))for(let z of A[we]){let it=(_=z.getAttribute("id"))!=null?_:"id"+(M++).toString(10),Ut=(V=z.getAttribute("mimeType"))!=null?V:"",er=(ne=z.getAttribute("codecs"))!=null?ne:"",tr=(K=z.getAttribute("contentType"))!=null?K:Ut==null?void 0:Ut.split("/")[0],Fu=(Q=(B=z.getAttribute("profiles"))==null?void 0:B.split(","))!=null?Q:[],zs=(R=cy((C=z.getAttribute("lang"))!=null?C:""))!=null?R:{},di=(Ke=(ye=(U=z.querySelector("Label"))==null?void 0:U.textContent)==null?void 0:ye.trim())!=null?Ke:void 0,Nu=z.querySelectorAll("Representation"),Uu=z.querySelector("SegmentTemplate"),qu=(ce=(me=z.querySelector("Role"))==null?void 0:me.getAttribute("value"))!=null?ce:void 0,yt=tr,ae={id:it,language:zs.language,isDefault:qu==="main",label:di,codecs:er,hdr:yt==="video"&&is(er),mime:Ut,representations:[]};for(let j of Nu){let Ue=(Ce=j.getAttribute("lang"))!=null?Ce:void 0,qt=(Oe=(Ve=di!=null?di:z.getAttribute("label"))!=null?Ve:j.getAttribute("label"))!=null?Oe:void 0,pi=(Nt=(Dt=(Xe=j.querySelector("BaseURL"))==null?void 0:Xe.textContent)==null?void 0:Dt.trim())!=null?Nt:"",rt=new URL(pi||o,e).toString(),qe=(ei=j.getAttribute("mimeType"))!=null?ei:Ut,hi=(Ni=(ci=j.getAttribute("codecs"))!=null?ci:er)!=null?Ni:"",fi;if(tr==="text"){let je=j.getAttribute("id")||"",mi=((ls=zs.privateuse)==null?void 0:ls.includes("x-auto"))||je.includes("_auto"),st=j.querySelector("SegmentTemplate");if(st){let jt={representationId:(cs=j.getAttribute("id"))!=null?cs:void 0,bandwidth:(ds=j.getAttribute("bandwidth"))!=null?ds:void 0},bi=parseInt((ps=j.getAttribute("bandwidth"))!=null?ps:"",10)/1e3,gi=(fs=parseInt((hs=st.getAttribute("startNumber"))!=null?hs:"",10))!=null?fs:1,Tt=parseInt((ms=st.getAttribute("timescale"))!=null?ms:"",10),ir=(bs=st.querySelectorAll("SegmentTimeline S"))!=null?bs:[],It=st.getAttribute("media");if(!It)continue;let Si=[],vi=0,yi="",xt=0,Ht=gi,he=0;for(let Ae of ir){let at=parseInt((gs=Ae.getAttribute("d"))!=null?gs:"",10),ge=parseInt((Ss=Ae.getAttribute("r"))!=null?Ss:"",10)||0,He=parseInt((vs=Ae.getAttribute("t"))!=null?vs:"",10);he=Number.isFinite(He)?He:he;let nt=at/Tt*1e3,ze=he/Tt*1e3;for(let Me=0;Me<ge+1;Me++){let Qe=Li(It,{...jt,segmentNumber:Ht.toString(10),segmentTime:(he+Me*at).toString(10)}),Et=(ze!=null?ze:0)+Me*nt,Qt=Et+nt;Ht++,Si.push({time:{from:Et,to:Qt},url:Qe})}he+=(ge+1)*at,vi+=(ge+1)*nt}xt=he/Tt*1e3,yi=Li(It,{...jt,segmentNumber:Ht.toString(10),segmentTime:he.toString(10)});let zt={time:{from:xt,to:1/0},url:yi},_e={type:"template",baseUrl:rt,segmentTemplateUrl:It,initUrl:"",totalSegmentsDurationMs:vi,segments:Si,nextSegmentBeyondManifest:zt,timescale:Tt};fi={id:je,kind:"text",segmentReference:_e,profiles:[],duration:v,bitrate:bi,mime:"",codecs:"",width:0,height:0,isAuto:mi}}else fi={id:je,isAuto:mi,kind:"text",url:rt}}else{let je=(Ts=(ys=j.getAttribute("contentType"))!=null?ys:qe==null?void 0:qe.split("/")[0])!=null?Ts:tr,mi=(xs=(Is=z.getAttribute("profiles"))==null?void 0:Is.split(","))!=null?xs:[],st=parseInt((Es=j.getAttribute("width"))!=null?Es:"",10),jt=parseInt((ws=j.getAttribute("height"))!=null?ws:"",10),bi=parseInt((As=j.getAttribute("bandwidth"))!=null?As:"",10)/1e3,gi=(Ps=j.getAttribute("frameRate"))!=null?Ps:"",Tt=(ks=j.getAttribute("quality"))!=null?ks:void 0,ir=gi?ru(gi):void 0,It=(Rs=j.getAttribute("id"))!=null?Rs:"id"+(M++).toString(10),Si=je==="video"?`${jt}p`:je==="audio"?`${bi}Kbps`:hi,vi=`${It}@${Si}`,yi=[...H,...Fu,...mi],xt,Ht=j.querySelector("SegmentBase"),he=(Ms=j.querySelector("SegmentTemplate"))!=null?Ms:Uu;if(Ht){let _e=(Bs=(Ls=j.querySelector("SegmentBase Initialization"))==null?void 0:Ls.getAttribute("range"))!=null?Bs:"",[Ae,at]=_e.split("-").map(Qe=>parseInt(Qe,10)),ge={from:Ae,to:at},He=($s=j.querySelector("SegmentBase"))==null?void 0:$s.getAttribute("indexRange"),[nt,ze]=He?He.split("-").map(Qe=>parseInt(Qe,10)):[],Me=He?{from:nt,to:ze}:void 0;xt={type:"byteRange",url:rt,initRange:ge,indexRange:Me}}else if(he){let _e={representationId:(Ds=j.getAttribute("id"))!=null?Ds:void 0,bandwidth:(Cs=j.getAttribute("bandwidth"))!=null?Cs:void 0},Ae=parseInt((Vs=he.getAttribute("timescale"))!=null?Vs:"",10),at=(Os=he.getAttribute("initialization"))!=null?Os:"",ge=he.getAttribute("media"),He=(Fs=parseInt((_s=he.getAttribute("startNumber"))!=null?_s:"",10))!=null?Fs:1,nt=Li(at,_e);if(!ge)throw new ReferenceError("No media attribute in SegmentTemplate");let ze=(Ns=he.querySelectorAll("SegmentTimeline S"))!=null?Ns:[],Me=[],Qe=0,Et="",Qt=0;if(ze.length){let Ti=He,Pe=0;for(let wt of ze){let Le=parseInt((Us=wt.getAttribute("d"))!=null?Us:"",10),ot=parseInt((qs=wt.getAttribute("r"))!=null?qs:"",10)||0,Ii=parseInt((js=wt.getAttribute("t"))!=null?js:"",10);Pe=Number.isFinite(Ii)?Ii:Pe;let rr=Le/Ae*1e3,sr=Pe/Ae*1e3;for(let xi=0;xi<ot+1;xi++){let Hu=Li(ge,{..._e,segmentNumber:Ti.toString(10),segmentTime:(Pe+xi*Le).toString(10)}),Qs=(sr!=null?sr:0)+xi*rr,zu=Qs+rr;Ti++,Me.push({time:{from:Qs,to:zu},url:Hu})}Pe+=(ot+1)*Le,Qe+=(ot+1)*rr}Qt=Pe/Ae*1e3,Et=Li(ge,{..._e,segmentNumber:Ti.toString(10),segmentTime:Pe.toString(10)})}else if((0,nn.isNonNullable)(v)){let Pe=parseInt((Hs=he.getAttribute("duration"))!=null?Hs:"",10)/Ae*1e3,wt=Math.ceil(v/Pe),Le=0;for(let ot=1;ot<wt;ot++){let Ii=Li(ge,{..._e,segmentNumber:ot.toString(10),segmentTime:Le.toString(10)});Me.push({time:{from:Le,to:Le+Pe},url:Ii}),Le+=Pe}Qt=Le,Et=Li(ge,{..._e,segmentNumber:wt.toString(10),segmentTime:Le.toString(10)})}let ju={time:{from:Qt,to:1/0},url:Et};xt={type:"template",baseUrl:rt,segmentTemplateUrl:ge,initUrl:nt,totalSegmentsDurationMs:Qe,segments:Me,nextSegmentBeyondManifest:ju,timescale:Ae}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!je||!qe)continue;let zt={video:"video",audio:"audio",text:"text"}[je];if(!zt)continue;yt||(yt=zt),fi={id:vi,kind:zt,segmentReference:xt,profiles:yi,duration:v,bitrate:bi,mime:qe,codecs:hi,width:st,height:jt,fps:ir,quality:Tt}}ae.language||(ae.language=Ue),ae.label||(ae.label=qt),ae.mime||(ae.mime=qe),ae.codecs||(ae.codecs=hi),ae.hdr||(ae.hdr=yt==="video"&&is(hi)),ae.representations.push(fi)}if(yt){let j=r[yt].find(Ue=>Ue.id===ae.id);if(j&&ae.representations.every(Ue=>dt(Ue.segmentReference)))for(let Ue of j.representations){let qt=ae.representations.find(qe=>qe.id===Ue.id),pi=qt==null?void 0:qt.segmentReference,rt=Ue.segmentReference;rt.segments.push(...pi.segments),rt.nextSegmentBeyondManifest=pi.nextSegmentBeyondManifest}else r[yt].push(ae)}}return{duration:v,streams:r,baseUrls:n,live:S}};var Id=require("@vkontakte/videoplayer-shared/es2018"),Z=(s,e)=>(0,Id.isNonNullable)(s)&&(0,Id.isNonNullable)(e)&&s.readyState==="open"&&FL(s,e);function FL(s,e){for(let t=0;t<s.activeSourceBuffers.length;++t)if(s.activeSourceBuffers[t]===e)return!0;return!1}var on=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){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 be;this.switchAbortController=new be;this.destroyAbortController=new be;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 Tv(this.sourceBuffer),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||!Z(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Zr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(c=>{this.handleAsyncError(c,"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(!Z(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||!Z(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(!Z(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||!Z(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,l;let t=(u=(0,au.default)(e,d=>d.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let d of this.representations.keys()){let c=t.find(f=>f.id===d);c&&this.representations.set(d,c);let h=this.representations.get(d);if(!h||!dt(h.segmentReference))return;let p=this.getActualLiveStartingSegments(h.segmentReference);this.segments.set(h.id,p)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,P.assertNonNullable)(r);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))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 d;this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(d=l==null?void 0:l.baseUrls)!=null?d:[],this.initData=new Map(i.map(c=>[c.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(c=>[c.id,c])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new be,(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||!Z(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 be,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,P.isNullable)(e)||(0,P.isNullable)(this.downloadingRepresentationId)||(0,P.isNullable)(this.playingRepresentationId)||(0,P.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,P.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,P.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(d=>e>=d.time.from&&e<d.time.to);(0,P.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let d=this.getForwardBufferDuration(e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&d>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&Zr(this.sourceBuffer.buffered)>=this.bufferLimit){let d=this.getForwardBufferDuration(e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,d<c).catch(h=>{this.handleAsyncError(h,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,su.default)(u,r))d="high";else{let c=(0,rs.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(d="low")}this.loadSegments(u,t,d).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,rs.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.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}),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})}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=(0,au.default)(e==null?void 0:e.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,a,n;let t=(i=(0,au.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!dt(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>({...p,status:"none",size:void 0})),l=100,d=(r=this.segments.get(o.id))!=null?r:[],c=(n=(a=(0,rs.default)(d,-1))==null?void 0:a.time.to)!=null?n:0,h=u==null?void 0:u.findIndex(p=>c>=p.time.from+l&&c<=p.time.to+l);if(h===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,p)}else{let p=u.slice(h+1);this.segments.set(o.id,[...d,...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)}}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(l=>Math.floor(l.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(l=>Math.floor(l.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let l=Math.round(e.time.to*a.timescale/1e3).toString(10),d=Li(a.segmentTemplateUrl,{segmentTime:l});n.push({status:"none",time:{from:e.time.to,to:1/0},url:d})}}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&&ui&&ui(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&ui&&ui(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:h,time:{from:p,to:f}},b)=>{let S=p<=i&&f>=i,v=p>i||S||b===0&&i===0,T=Math.min(this.forwardBufferTarget,this.bufferLimit),x=this.preloadOnly&&p<=i+T||r<T&&f-p>=T||f<=i+T;return(h==="none"||h==="partially_ejected"&&v&&x&&this.sourceBuffer&&Z(this.mediaSource,this.sourceBuffer)&&!(tt(this.sourceBuffer.buffered,p)&&tt(this.sourceBuffer.buffered,f)))&&v&&x});if(a===-1)return[];if(t!=="byteRange")return e.slice(a,a+1);let n=e,o=0,u=0,l=[],d=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let h=a;h<n.length&&(o<=d||u<=c);h++){let p=n[h];if(o+=p.byte.to+1-p.byte.from,u+=p.time.to+1-p.time.from,p.status==="none"||p.status==="partially_ejected")l.push(p);else break}return l}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:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,P.abortable)(o,async function*(){let d=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,d))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,P.now)(),!d)return;let c=new DataView(d),h=sn(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=h.getChunkEndTime(c,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:p,serverDataPreparedTime:f}=h.getServerLatencyTimestamps(c);p&&f&&this.currentLiveSegmentServerLatency$.next(f-p),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),an(d)||(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(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,P.fromEvent)(window,"online").pipe((0,P.once)()).subscribe(()=>{l(),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}),this.lastDataObtainedTimestampMs=(0,P.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),an(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,rs.default)(e,0).byte.from,to:(0,rs.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(l){this.error$.next({id:"SegmentFeeding",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}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?(l,d)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,P.now)();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:d,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:P.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,su.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!Z(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 l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),d=sn(n.mime).parseFeedableSegmentChunk(l,this.isLive);d!=null&&d.byteLength&&(u.status="partially_fed",o.feedingBytes+=d.byteLength,await this.sourceBufferTaskQueue.append(d),o.fedBytes+=d.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId!==t)continue;if(a.aborted){await n();continue}let d=l.byte.from-i,c=l.byte.to-i,h=c-d+1,p=d<r,f=c<=r;if(!p)continue;let b=sn(o.mime);if(l.status==="downloading"&&f){l.status="downloaded";let S=new DataView(e.buffer,e.byteOffset+d,h);await this.sourceBufferTaskQueue.append(S,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(h,r-d),u.loadedBytes>u.feedingBytes)){let S=new DataView(e.buffer,e.byteOffset+d+u.feedingBytes,u.loadedBytes-u.feedingBytes),v=u.loadedBytes===h?S:b.parseFeedableSegmentChunk(S);v!=null&&v.byteLength&&(l.status="partially_fed",u.feedingBytes+=v.byteLength,await this.sourceBufferTaskQueue.append(v,a)&&!a.aborted?(u.fedBytes+=v.byteLength,u.fedBytes===h&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){var i;if(!((0,P.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer))){!this.isLive&&J.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(tt(this.sourceBuffer.buffered,e.segment.time.from,100)&&tt(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.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",Sd(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=Jr(()=>(0,Ty.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,P.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,P.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,sn(e.mime),r)).then(async o=>{if(!o)return;let{init:u,dataView:l,segments:d}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);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),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:P.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}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||!Z(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,P.isNullable)(e))return!1;let r=[],a=0,n=u=>{u.sort((d,c)=>d.from-c.from);let l=[u[0]];for(let d=1;d<u.length;d++){let{from:c,to:h}=u[d],p=l[l.length-1];p.to>=c?p.to=Math.max(p.to,h):l.push(u[d])}return l},o=u=>{var d;if(a>=t)return r;r.push({...u.time}),r=n(r);let l=Sd(u)?(d=u.size)!=null?d:0:u.byte.to-u.byte.from;a+=l};for(let u of this.segments.values())for(let l of u){let d=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,c=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(d||c)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,d=this.sourceBuffer.buffered.end(u)*1e3,c=0;for(let h of this.segments.values())for(let p of h)(0,su.default)(["none","partially_ejected"],p.status)&&Math.round(p.time.from)<=Math.round(l)&&Math.round(p.time.to)>=Math.round(d)&&c++;if(c===this.segments.size){let h={time:{from:l,to:d},url:"",status:"none"};o(h)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let d of l)d.time.from>=e+u&&d.status==="fed"&&o(d)}return r.length?(await Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,d)=>l||d,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!Z(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||!Z(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||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,P.isNullable)(e)?0:Ye(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to};for(let a=0;a<this.sourceBuffer.buffered.length;a++){let n=this.sourceBuffer.buffered.start(a)*1e3,o=this.sourceBuffer.buffered.end(a)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){r=void 0;break}o>i.time.from&&o<i.time.to&&(r.from=o),n<i.time.to&&n>i.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(a=>r&&a.from===r.from&&a.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Jr(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:P.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,P.isNullable)(this.sourceBuffer)||!Z(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(d=>d.from-t<=n&&d.to+t>=o),l=e.filter(d=>n>=d.from&&n<d.to-t||o>d.from+t&&o<=d.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(d=>d.from===r.time.from||d.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 Ki=s=>{let e=new URL(s);return e.searchParams.set("quic","1"),e.toString()};var nu=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 re=require("@vkontakte/videoplayer-shared/es2018");var ou=s=>{let e=new URL(s);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var lu=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new re.ValueSubject(void 0);this.lastConnectionReused$=new re.ValueSubject(void 0);this.lastRequestFirstBytes$=new re.ValueSubject(void 0);this.recoverableError$=new re.Subject;this.error$=new re.Subject;this.abortAllController=new be;this.subscription=new re.Subscription;this.fetchManifest=(0,re.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Ki(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=ou(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(uu);return r?(t.log("success",(0,re.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,re.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,re.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}={}){var q,_;let l=e,d=new Headers,c=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let V=new URL(l,location.href);V.searchParams.append("bytes",`${i.from}-${i.to}`),l=V.toString();break}default:(0,re.assertNever)(t)}this.requestQuic&&(l=Ki(l));let h=this.abortAllController.signal,p;if(n){let V=new be;if(p=(0,re.merge)((0,re.fromEvent)(this.abortAllController.signal,"abort"),(0,re.fromEvent)(n,"abort")).subscribe(()=>{try{V.abort()}catch(ne){uu(ne)}}),this.subscription.add(p),this.abortAllController.signal.aborted||n.aborted)try{V.abort()}catch(ne){uu(ne)}h=V.signal}let f=(0,re.now)();c.log("startRequest",(0,re.flattenObject)({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:a,headers:d,signal:h}),S=(0,re.now)();if(!b)return c.error("error",{message:"No response in request"}),c.end(),p==null||p.unsubscribe(),null;if((q=this.throughputEstimator)==null||q.addRawRtt(S-f),!b.ok||!b.body){p==null||p.unsubscribe();let V=`Fetch error ${b.status}: ${b.statusText}`;return c.error("error",{message:V}),c.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!r&&!o){p==null||p.unsubscribe();let V=(0,re.now)(),ne={requestStartedAt:f,requestEndedAt:V,duration:V-f};return c.log("endRequest",(0,re.flattenObject)(ne)),c.end(),b.arrayBuffer()}let[v,T]=b.body.tee(),x=v.getReader();o&&((_=this.throughputEstimator)==null||_.trackStream(T,u));let A=0,w=new Uint8Array(0),M=!1,H=V=>{p==null||p.unsubscribe(),M=!0,uu(V)},N=(0,re.abortable)(h,async function*({done:V,value:ne}){if(A===0&&this.lastRequestFirstBytes$.next((0,re.now)()-f),h.aborted){p==null||p.unsubscribe();return}if(!V&&ne){let K=new Uint8Array(w.length+ne.length);K.set(w),K.set(ne,w.length),w=K,A+=ne.byteLength,r==null||r(new DataView(w.buffer),A),yield x==null?void 0:x.read().then(N,H)}}.bind(this));yield x==null?void 0:x.read().then(N,H),p==null||p.unsubscribe();let L=(0,re.now)(),$={failed:M,requestStartedAt:f,requestEndedAt:L,duration:L-f};return M?(c.error("endRequest",(0,re.flattenObject)($)),c.end(),null):(c.log("endRequest",(0,re.flattenObject)($)),c.end(),w.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,re.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,l,d;e.indexRange&&(l=e.indexRange.from,d=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(d,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let h=new DataView(c,r-n,a-n+1);if(!t.validateData(h))throw new Error("Invalid media file");let p=t.parseInit(h),f=(v=e.indexRange)!=null?v:t.getIndexRange(p);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let T=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!T)return null;b=new DataView(T)}let S=t.parseSegments(b,p,f);return{init:p,dataView:new DataView(c),segments:S}}.bind(this));this.fetchTemplateRepresentation=(0,re.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});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}onHeadersReceived(e){let{type:t,reused:i}=nu(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){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,re.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await _t(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:re.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:re.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:re.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:re.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:re.ErrorCategory.FATAL})}}},uu=s=>{if(!an(s))throw s};var Bi=(s,e,t)=>t*e+(1-t)*s,xd=(s,e)=>s.reduce((t,i)=>t+i,0)/e,Iy=(s,e,t,i)=>{let r=0,a=t,n=xd(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 un=require("@vkontakte/videoplayer-shared/es2018"),Xi=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 un.ValueSubject(e.initial),this.debounced$=new un.ValueSubject(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new lt(`raw_${t}`),this.smoothedSeries$=new lt(`smoothed_${t}`),this.reportedSeries$=new lt(`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,un.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 cu=class extends Xi{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Bi(this.slow,e,this.params.emaAlphaSlow),this.fast=Bi(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var du=class extends Xi{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=xd(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Bi(this.emaSmoothed,e,this.params.emaAlpha);let i=Iy(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var pu=class extends Xi{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?Bi(this.smoothed,t,this.params.emaAlpha):t}};var $i=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new cu({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new du({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 pu({initial:e,label:"liveEdgeDelay",...t})}};var ss=(s,e)=>{s&&s.playbackRate!==e&&(s.playbackRate=e)};var hu=require("@vkontakte/videoplayer-shared/es2018");var ln=class s{constructor(e,t){this.currentRepresentation$=new hu.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,hu.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 l=a.segments.find(d=>d.time.from<=e&&d.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next({...r,label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.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 mu=Y(Xt(),1);var cn=require("@vkontakte/videoplayer-shared/es2018");var xy=(s,{useManagedMediaSource:e,useOldMSEDetection:t})=>{let{containers:i,protocols:r,codecs:a,nativeHlsSupported:n}=J.video,o=(a.h264||a.h265)&&a.aac,u=r.mse&&(!t||!!window.MediaStreamTrack)||r.mms&&e;return s.filter(l=>{switch(l){case"DASH_SEP":return u&&i.mp4&&o;case"DASH_WEBM":return u&&i.webm&&a.vp9&&a.opus;case"DASH_WEBM_AV1":return u&&i.webm&&a.av1&&a.opus;case"DASH_STREAMS":return u&&(i.mp4&&o||i.webm&&(a.vp9||a.av1)&&(a.opus||a.aac));case"DASH_LIVE":return u&&i.mp4&&o;case"DASH_LIVE_CMAF":return u&&i.mp4&&o&&i.cmaf;case"DASH_ONDEMAND":return u&&i.mp4&&o;case"HLS":case"HLS_ONDEMAND":case"HLS_LIVE":case"HLS_LIVE_CMAF":return n;case"MPEG":return i.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return r.webrtc&&r.ws&&a.h264&&(i.mp4||i.webm);default:return(0,cn.assertNever)(l)}})},fu=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,cn.assertNever)(s)}return[t,i]},Ey=({webmCodec:s,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...fu(s),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(J.device.isAndroid)switch(e){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[...r,"MPEG",...fu(s),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...fu(s),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...fu(s),...r,"HLS","HLS_ONDEMAND"];default:(0,cn.assertNever)(e)}return J.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},wy=({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,cn.assertNever)(s)}else J.video.nativeHlsSupported&&!u?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"]},Ed=s=>s?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],bu=s=>{if(s.size===0)return;if(s.size===1){let t=s.values().next();return(0,mu.default)(t.value.split("."),0)}for(let t of s){let i=(0,mu.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=s.values().next();return(0,mu.default)(e.value.split("."),0)};var HL=["timeupdate","progress","play","seeked","stalled","waiting"],zL=["timeupdate","progress","loadeddata","playing","seeked"];var gu=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new I.Subscription;this.representationSubscription=new I.Subscription;this.state$=new ue("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.lastConnectionType$=new I.ValueSubject(void 0);this.lastConnectionReused$=new I.ValueSubject(void 0);this.lastRequestFirstBytes$=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.bufferLength$=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.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new I.Subject;this.gapWatchdogActive=!1;this.destroyController=new be;this.initManifest=(0,I.abortable)(this.destroyController.signal,async function*(e,t,i){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=$e(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:I.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,I.abortable)(this.destroyController.signal,async function*(){var n,o;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:I.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=yy(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=iu(e))!=null?n:{id:"ManifestParsing",category:I.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,d)=>{var c,h,p,f;return!!((h=(c=this.element)==null?void 0:c.canPlayType)!=null&&h.call(c,l)&&((f=(p=Lt())==null?void 0:p.isTypeSupported)!=null&&f.call(p,`${l}; codecs="${d}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:d,streamIsAlive:c}=t.live,h=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*h),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";c||(p=d?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let d=t.streams[u].filter(({mime:p,codecs:f})=>i(u,p,f)),c=new Set(d.map(({codecs:p})=>p)),h=bu(c);if(h&&(r[u]=d.filter(({codecs:p})=>p.startsWith(h))),u==="video"){let p=this.tuning.preferHDR,f=r.video.some(S=>S.hdr),b=r.video.some(S=>!S.hdr);J.display.isHDR&&p&&f?r.video=r.video.filter(S=>S.hdr):b&&(r.video=r.video.filter(S=>!S.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",(0,I.flattenObject)(a)),a}.bind(this));this.initRepresentations=(0,I.abortable)(this.destroyController.signal,async function*(e,t,i){var h;this.tracer.log("initRepresentationsStart",(0,I.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,I.assertNonNullable)(this.manifest),(0,I.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,I.fromEvent)(p,"error").pipe((0,I.filter)(f=>{var b;return!!((b=this.element)!=null&&b.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:I.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?Uo():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&zr())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,f)=>[...p,...f.representations],[]);if(this.videoBufferManager=new on("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,I.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((f,b)=>[...f,...b.representations],[]);this.audioBufferManager=new on("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}ln.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new ln(this.manifest.streams.text,n)),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$));let u=()=>{var p;(p=this.stallWatchdogSubscription)==null||p.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,I.merge)(...zL.map(p=>(0,I.fromEvent)(this.element,p))).pipe((0,I.map)(p=>this.element?Ye(this.element.buffered,this.element.currentTime*1e3):0),(0,I.filterChanged)(),(0,I.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,I.merge)((0,I.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,I.filterChanged)()).subscribe(f=>this.liveStreamEndTimestamp=(0,I.now)())),this.subscription.add((0,I.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,I.interval)(1e3).subscribe(f=>{let b=Hi(this.manifestUrlString,2);this.manifestUrlString=$e(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,I.fromEvent)(this.element,"play").subscribe(f=>{var b;return(b=this.livePauseWatchdogSubscription)==null?void 0:b.unsubscribe()})),this.representationSubscription.add((0,I.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,I.map)(({isActiveLive:f,isLowLatency:b})=>f&&b),(0,I.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||ss(this.element,1)})),this.representationSubscription.add((0,I.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,I.filter)(({bufferLength:f,isActiveLive:b,isLowLatency:S})=>b&&S&&!!f)).subscribe(({bufferLength:f})=>this.liveBuffer.next(f))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(f=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!f)return;let b=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(b,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/1e3)})),this.representationSubscription.add((0,I.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,I.filter)(({isLive:f})=>f),(0,I.filterChanged)((f,b)=>b.bufferLength<f.bufferLength),(0,I.map)(({rtt:f,bufferLength:b,segmentServerLatency:S})=>{let v=Hi(this.manifestUrlString,2);return(f/2+b+S+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,I.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:b,isLowLatency:S})=>{if(!S||!b)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,T=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,A=f-v;if(this.isManualDecreasePlaybackInLive())return;let w=1;Math.abs(A)>T&&(w=1+Math.sign(A)*x),ss(this.element,w)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,v;let b=0;if(f){let T=((v=(S=this.element)==null?void 0:S.currentTime)!=null?v:0)*1e3;b=Math.min(...this.bufferManagers.map(A=>{var w,M;return(M=(w=A.getLiveSegmentsToLoadState(this.manifest))==null?void 0:w.to)!=null?M:T}))-T}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let p=0;this.representationSubscription.add((0,I.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,I.throttle)(1e3)).subscribe(async({liveLoadBufferLength:f,bufferLength:b})=>{if(!this.element||this.isUpdatingLive)return;let S=this.element.playbackRate,v=Hi(this.manifestUrlString,2),T=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,x=Math.min(T,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*S),A=this.tuning.dashCmafLive.normalizedActualBufferOffset*S,w=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*S,M=isFinite(f)?f:b,H=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),N=T<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(N);let L="none";if(H?L="active_low_latency":this.isLowLatency$.getValue()&&N?(this.bufferManagers.forEach($=>$.proceedLowLatencyLive()),L="active_low_latency"):v!==0&&M<x?L="live_forward_buffering":M<x+w&&(L="live_with_target_offset"),isFinite(f)&&(p=f>p?f:p),L==="live_forward_buffering"||L==="live_with_target_offset"){let $=p-(x+A),q=this.normolizeLiveOffset(Math.trunc(v+$/S)),_=Math.abs(q-v),V=0;!f||_<=this.tuning.dashCmafLive.offsetCalculationError?V=v:q>0&&_>this.tuning.dashCmafLive.offsetCalculationError&&(V=q),this.manifestUrlString=$e(this.manifestUrlString,V,2)}(L==="live_with_target_offset"||L==="live_forward_buffering")&&(p=0,await this.updateLive())},f=>{this.error$.next({id:"updateLive",category:I.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,I.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,I.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),d=(0,I.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,I.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),c=(0,I.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,I.filterChanged)(),(0,I.map)(({allBuffersFull:p,someBufferEnded:f})=>p&&f),(0,I.filter)(p=>p));if(this.representationSubscription.add((0,I.merge)(this.forceEnded$,c).subscribe(()=>{var p;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(f=>!f.updating))try{(p=this.source)==null||p.endOfStream()}catch(f){this.error$.next({id:"EndOfStream",category:I.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,I.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(f=>{var b;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var S;if(((S=this.source)==null?void 0:S.readyState)==="open"){f();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)),(b=this.source)==null||b.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(h=this.manifest.duration)!=null?h:0,...(0,Ad.default)((0,Ad.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let b=[];return f.duration&&b.push(f.duration),dt(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&b.push(f.segmentReference.totalSegmentsDurationMs),b})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,I.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,I.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:I.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.fetcher=new lu({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.liveBuffer=$i.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){var r,a,n;(0,I.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,I.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=$e(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await((r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video)),await((a=this.audioBufferManager)==null?void 0:a.seekLive(this.manifest.streams.audio)),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))}initBuffer(){(0,I.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,I.merge)(...HL.map(e=>(0,I.fromEvent)(this.element,e)),(0,I.fromEvent)(window,"online")).subscribe(()=>this.tick(),e=>{this.error$.next({id:"DashVKPlayer",category:I.ErrorCategory.WTF,message:"Internal logic error",thrown:e})})),this.subscription.add((0,I.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===2&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,I.fromEvent)(this.element,"waiting").subscribe(()=>{var t;this.element&&this.element.readyState===2&&!this.element.seeking&&tt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var p,f,b,S,v,T,x,A,w,M,H;if(!this.element||((p=this.source)==null?void 0:p.readyState)!=="open")return;let i=this.currentStallDuration$.getValue();i+=50,this.currentStallDuration$.next(i);let r={timeInWaiting:i},a=(0,I.now)(),n=100,o=(b=(f=this.videoBufferManager)==null?void 0:f.lastDataObtainedTimestamp)!=null?b:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(v=(S=this.audioBufferManager)==null?void 0:S.lastDataObtainedTimestamp)!=null?v:0,l=(x=(T=this.videoBufferManager)==null?void 0:T.getForwardBufferDuration())!=null?x:0,d=(w=(A=this.audioBufferManager)==null?void 0:A.getForwardBufferDuration())!=null?w:0,c=l<n&&a-o>this.tuning.dash.crashOnStallTWithoutDataTimeout,h=this.audioBufferManager&&d<n&&a-u>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((c||h)&&i>this.tuning.dash.crashOnStallTWithoutDataTimeout||i>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${i} ms`);if(this.isLive$.getValue()&&i%2e3===0){let N=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(N).catch(L=>{this.error$.next({id:"stallIntervalCallback",category:I.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:L})}),r.liveLastOffset=N}else{let N=this.element.currentTime*1e3;(M=this.videoBufferManager)==null||M.maintain(N),(H=this.audioBufferManager)==null||H.maintain(N),r.position=N}this.tracer.log("stallIntervalCallback",(0,I.flattenObject)(r))};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,I.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:I.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})}),this.subscription.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,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),tt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()]),!((0,I.isNullable)(this.element)||(0,I.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,I.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,I.isNonNullable)(this.element)&&(0,I.isNonNullable)(this.source)&&(0,I.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}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.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,I.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))}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){var e,t;this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.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};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let r=this.element.currentTime*1e3,a=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=r&&u.to+n>r&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?a.push(1/0):a.push(u.to));if(a.length){let o=Math.max(...a)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i={...i,gapEnds:a,jumpTo:o,resultCurrentTime:this.element.currentTime},this.tracer.log("jumpGap",(0,I.flattenObject)(i)))}}};var Su=class{constructor(e,t){this.fov=e,this.orientation=t}};var vu=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 ky=`attribute vec2 a_vertex;
124
+ `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(c,"i")}var wv=a=>{if(!(a!=null&&a.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(a),r=(i==null?void 0:i[1])==="-"?-1:1,s={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 s.days*24*60*60*1e3+s.hours*60*60*1e3+s.minutes*60*1e3+s.seconds*1e3},It=(a,e)=>{let t=a;t=(0,Nl.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,s]of(0,Av.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Nl.default)(t,n,(o,u)=>(0,Ya.isNullable)(s)?o:(0,Ya.isNullable)(u)?s:(0,Pv.default)(s,parseInt(u,10),"0"))}return t},Mn=(a,e)=>{var B,V,H,U,G,ue,le,w,_,$,M,q,Te,Ke,me,ne,Me,De,Ce,Xe,Vt,Kt,mi,Hi,$r,fc,mc,bc,gc,Sc,vc,yc,Tc,Ic,Ec,xc,wc,Ac,Pc,Rc,kc,Lc,$c,Mc,Dc,Cc,Bc,Vc,_c,Oc,Fc,Nc,Uc,qc,Hc,jc,Qc,Gc,Wc,zc,Yc;let i=new DOMParser().parseFromString(a,"application/xml"),r={video:[],audio:[],text:[]},s=i.children[0],n=Array.from(s.querySelectorAll("MPD > BaseURL").values()).map(ht=>{var fe,bi;return(bi=(fe=ht.textContent)==null?void 0:fe.trim())!=null?bi:""}),o=(B=(0,Rv.default)(n,0))!=null?B:"",u=s.getAttribute("type")==="dynamic",l=s.getAttribute("availabilityStartTime"),c=s.getAttribute("publishTime"),d=s.getElementsByTagName("vk:Attrs")[0],f=d==null?void 0:d.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,p=d==null?void 0:d.getElementsByTagName("vk:XStreamIsLive")[0].textContent,h=d==null?void 0:d.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=d==null?void 0:d.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,g;u&&(g={availabilityStartTime:l?new Date(l).getTime():0,publishTime:c?new Date(c).getTime():0,latestSegmentPublishTime:f?new Date(f).getTime():0,streamIsAlive:p==="yes",streamIsUnpublished:h==="yes"});let v,E=s.getAttribute("mediaPresentationDuration"),I=[...s.getElementsByTagName("Period")],A=I.reduce((ht,fe)=>({...ht,[fe.id]:fe.children}),{}),P=I.reduce((ht,fe)=>({...ht,[fe.id]:fe.getAttribute("duration")}),{});E?v=wv(E):(0,Ul.default)(P).filter(ht=>ht).length&&!u?v=(0,Ul.default)(P).reduce((ht,fe)=>{var bi;return ht+((bi=wv(fe))!=null?bi:0)},0):b&&(v=parseInt(b,10));let C=0,N=(H=(V=s.getAttribute("profiles"))==null?void 0:V.split(","))!=null?H:[];for(let ht of I.map(fe=>fe.id))for(let fe of A[ht]){let bi=(U=fe.getAttribute("id"))!=null?U:"id"+(C++).toString(10),Mr=(G=fe.getAttribute("mimeType"))!=null?G:"",mo=(ue=fe.getAttribute("codecs"))!=null?ue:"",bo=(le=fe.getAttribute("contentType"))!=null?le:Mr==null?void 0:Mr.split("/")[0],Ey=(_=(w=fe.getAttribute("profiles"))==null?void 0:w.split(","))!=null?_:[],Kc=(M=xv(($=fe.getAttribute("lang"))!=null?$:""))!=null?M:{},fs=(Ke=(Te=(q=fe.querySelector("Label"))==null?void 0:q.textContent)==null?void 0:Te.trim())!=null?Ke:void 0,xy=fe.querySelectorAll("Representation"),wy=fe.querySelector("SegmentTemplate"),Ay=(ne=(me=fe.querySelector("Role"))==null?void 0:me.getAttribute("value"))!=null?ne:void 0,ji=bo,we={id:bi,language:Kc.language,isDefault:Ay==="main",label:fs,codecs:mo,hdr:ji==="video"&&Fl(mo),mime:Mr,representations:[]};for(let de of xy){let Xt=(Me=de.getAttribute("lang"))!=null?Me:void 0,Dr=(Ce=(De=fs!=null?fs:fe.getAttribute("label"))!=null?De:de.getAttribute("label"))!=null?Ce:void 0,ms=(Kt=(Vt=(Xe=de.querySelector("BaseURL"))==null?void 0:Xe.textContent)==null?void 0:Vt.trim())!=null?Kt:"",gi=new URL(ms||o,e).toString(),Jt=(mi=de.getAttribute("mimeType"))!=null?mi:Mr,bs=($r=(Hi=de.getAttribute("codecs"))!=null?Hi:mo)!=null?$r:"",gs;if(bo==="text"){let Zt=de.getAttribute("id")||"",Ss=((fc=Kc.privateuse)==null?void 0:fc.includes("x-auto"))||Zt.includes("_auto"),Si=de.querySelector("SegmentTemplate");if(Si){let Cr={representationId:(mc=de.getAttribute("id"))!=null?mc:void 0,bandwidth:(bc=de.getAttribute("bandwidth"))!=null?bc:void 0},vs=parseInt((gc=de.getAttribute("bandwidth"))!=null?gc:"",10)/1e3,ys=(vc=parseInt((Sc=Si.getAttribute("startNumber"))!=null?Sc:"",10))!=null?vc:1,Qi=parseInt((yc=Si.getAttribute("timescale"))!=null?yc:"",10),go=(Tc=Si.querySelectorAll("SegmentTimeline S"))!=null?Tc:[],Gi=Si.getAttribute("media");if(!Gi)continue;let Ts=[],Is=0,Es="",Wi=0,Br=ys,Oe=0;for(let ft of go){let vi=parseInt((Ic=ft.getAttribute("d"))!=null?Ic:"",10),nt=parseInt((Ec=ft.getAttribute("r"))!=null?Ec:"",10)||0,ei=parseInt((xc=ft.getAttribute("t"))!=null?xc:"",10);Oe=Number.isFinite(ei)?ei:Oe;let yi=vi/Qi*1e3,ti=Oe/Qi*1e3;for(let Et=0;Et<nt+1;Et++){let ii=It(Gi,{...Cr,segmentNumber:Br.toString(10),segmentTime:(Oe+Et*vi).toString(10)}),zi=(ti!=null?ti:0)+Et*yi,_r=zi+yi;Br++,Ts.push({time:{from:zi,to:_r},url:ii})}Oe+=(nt+1)*vi,Is+=(nt+1)*yi}Wi=Oe/Qi*1e3,Es=It(Gi,{...Cr,segmentNumber:Br.toString(10),segmentTime:Oe.toString(10)});let Vr={time:{from:Wi,to:1/0},url:Es},_t={type:"template",baseUrl:gi,segmentTemplateUrl:Gi,initUrl:"",totalSegmentsDurationMs:Is,segments:Ts,nextSegmentBeyondManifest:Vr,timescale:Qi};gs={id:Zt,kind:"text",segmentReference:_t,profiles:[],duration:v,bitrate:vs,mime:"",codecs:"",width:0,height:0,isAuto:Ss}}else gs={id:Zt,isAuto:Ss,kind:"text",url:gi}}else{let Zt=(Ac=(wc=de.getAttribute("contentType"))!=null?wc:Jt==null?void 0:Jt.split("/")[0])!=null?Ac:bo,Ss=(Rc=(Pc=fe.getAttribute("profiles"))==null?void 0:Pc.split(","))!=null?Rc:[],Si=parseInt((kc=de.getAttribute("width"))!=null?kc:"",10),Cr=parseInt((Lc=de.getAttribute("height"))!=null?Lc:"",10),vs=parseInt(($c=de.getAttribute("bandwidth"))!=null?$c:"",10)/1e3,ys=(Mc=de.getAttribute("frameRate"))!=null?Mc:"",Qi=(Dc=de.getAttribute("quality"))!=null?Dc:void 0,go=ys?Ev(ys):void 0,Gi=(Cc=de.getAttribute("id"))!=null?Cc:"id"+(C++).toString(10),Ts=Zt==="video"?`${Cr}p`:Zt==="audio"?`${vs}Kbps`:bs,Is=`${Gi}@${Ts}`,Es=[...N,...Ey,...Ss],Wi,Br=de.querySelector("SegmentBase"),Oe=(Bc=de.querySelector("SegmentTemplate"))!=null?Bc:wy;if(Br){let _t=(_c=(Vc=de.querySelector("SegmentBase Initialization"))==null?void 0:Vc.getAttribute("range"))!=null?_c:"",[ft,vi]=_t.split("-").map(ii=>parseInt(ii,10)),nt={from:ft,to:vi},ei=(Oc=de.querySelector("SegmentBase"))==null?void 0:Oc.getAttribute("indexRange"),[yi,ti]=ei?ei.split("-").map(ii=>parseInt(ii,10)):[],Et=ei?{from:yi,to:ti}:void 0;Wi={type:"byteRange",url:gi,initRange:nt,indexRange:Et}}else if(Oe){let _t={representationId:(Fc=de.getAttribute("id"))!=null?Fc:void 0,bandwidth:(Nc=de.getAttribute("bandwidth"))!=null?Nc:void 0},ft=parseInt((Uc=Oe.getAttribute("timescale"))!=null?Uc:"",10),vi=(qc=Oe.getAttribute("initialization"))!=null?qc:"",nt=Oe.getAttribute("media"),ei=(jc=parseInt((Hc=Oe.getAttribute("startNumber"))!=null?Hc:"",10))!=null?jc:1,yi=It(vi,_t);if(!nt)throw new ReferenceError("No media attribute in SegmentTemplate");let ti=(Qc=Oe.querySelectorAll("SegmentTimeline S"))!=null?Qc:[],Et=[],ii=0,zi="",_r=0;if(ti.length){let xs=ei,mt=0;for(let Yi of ti){let xt=parseInt((Gc=Yi.getAttribute("d"))!=null?Gc:"",10),Ti=parseInt((Wc=Yi.getAttribute("r"))!=null?Wc:"",10)||0,ws=parseInt((zc=Yi.getAttribute("t"))!=null?zc:"",10);mt=Number.isFinite(ws)?ws:mt;let So=xt/ft*1e3,vo=mt/ft*1e3;for(let As=0;As<Ti+1;As++){let Ry=It(nt,{..._t,segmentNumber:xs.toString(10),segmentTime:(mt+As*xt).toString(10)}),Xc=(vo!=null?vo:0)+As*So,ky=Xc+So;xs++,Et.push({time:{from:Xc,to:ky},url:Ry})}mt+=(Ti+1)*xt,ii+=(Ti+1)*So}_r=mt/ft*1e3,zi=It(nt,{..._t,segmentNumber:xs.toString(10),segmentTime:mt.toString(10)})}else if((0,Ya.isNonNullable)(v)){let mt=parseInt((Yc=Oe.getAttribute("duration"))!=null?Yc:"",10)/ft*1e3,Yi=Math.ceil(v/mt),xt=0;for(let Ti=1;Ti<Yi;Ti++){let ws=It(nt,{..._t,segmentNumber:Ti.toString(10),segmentTime:xt.toString(10)});Et.push({time:{from:xt,to:xt+mt},url:ws}),xt+=mt}_r=xt,zi=It(nt,{..._t,segmentNumber:Yi.toString(10),segmentTime:xt.toString(10)})}let Py={time:{from:_r,to:1/0},url:zi};Wi={type:"template",baseUrl:gi,segmentTemplateUrl:nt,initUrl:yi,totalSegmentsDurationMs:ii,segments:Et,nextSegmentBeyondManifest:Py,timescale:ft}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!Zt||!Jt)continue;let Vr={video:"video",audio:"audio",text:"text"}[Zt];if(!Vr)continue;ji||(ji=Vr),gs={id:Is,kind:Vr,segmentReference:Wi,profiles:Es,duration:v,bitrate:vs,mime:Jt,codecs:bs,width:Si,height:Cr,fps:go,quality:Qi}}we.language||(we.language=Xt),we.label||(we.label=Dr),we.mime||(we.mime=Jt),we.codecs||(we.codecs=bs),we.hdr||(we.hdr=ji==="video"&&Fl(bs)),we.representations.push(gs)}if(ji){let de=r[ji].find(Xt=>Xt.id===we.id);if(de&&we.representations.every(Xt=>Xt.segmentReference.type==="template"))for(let Xt of de.representations){let Dr=we.representations.find(Jt=>Jt.id===Xt.id),ms=Dr==null?void 0:Dr.segmentReference,gi=Xt.segmentReference;gi.segments.push(...ms.segments),gi.nextSegmentBeyondManifest=ms.nextSegmentBeyondManifest}else r[ji].push(we)}}return{duration:v,streams:r,baseUrls:n,live:g}};var ql=z(yt(),1);var kv=require("@vkontakte/videoplayer-shared/es2018"),Lv=({id:a,width:e,height:t,bitrate:i,fps:r,quality:s,streamId:n})=>{var u;let o=(u=s?ui(s):void 0)!=null?u:(0,kv.videoSizeToQuality)({width:e,height:t});return o&&{id:a,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},$v=({id:a,bitrate:e})=>({id:a,bitrate:e}),Mv=({language:a,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),Dv=({language:a,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),Hl=({id:a,language:e,label:t,codecs:i,isDefault:r})=>({id:a,language:e,label:t,codec:(0,ql.default)(i.split("."),0),isDefault:r}),jl=({id:a,language:e,label:t,hdr:i,codecs:r})=>({id:a,language:e,hdr:i,label:t,codec:(0,ql.default)(r.split("."),0)}),Ql=a=>"url"in a,rt=a=>a.type==="template";var Gl=require("@vkontakte/videoplayer-shared/es2018"),K=(a,e)=>(0,Gl.isNonNullable)(a)&&(0,Gl.isNonNullable)(e)&&a.readyState==="open"&&KL(a,e);function KL(a,e){for(let t=0;t<a.activeSourceBuffers.length;++t)if(a.activeSourceBuffers[t]===e)return!0;return!1}var Ka=class{constructor(e,t,i,{fetcher:r,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new R.ValueSubject(0);this.currentLowLatencySegmentLength$=new R.ValueSubject(0);this.currentSegmentLength$=new R.ValueSubject(0);this.onLastSegment$=new R.ValueSubject(!1);this.fullyBuffered$=new R.ValueSubject(!1);this.playingRepresentation$=new R.ValueSubject(void 0);this.playingRepresentationInit$=new R.ValueSubject(void 0);this.error$=new R.Subject;this.gaps=[];this.subscription=new R.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ce;this.switchAbortController=new ce;this.destroyAbortController=new ce;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,R.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,R.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 PS(this.sourceBuffer),this.subscription.add((0,R.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.checkEjectedSegments(),this.maintain()},n=>{let o,u=this.mediaSource.readyState;u!=="open"&&(o={id:`SegmentEjection_source_${u}`,category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),o!=null||(o={id:"SegmentEjection",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when trying to clear segments ejected by browser",thrown:n}),this.error$.next(o)})),this.subscription.add((0,R.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:R.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!K(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Er(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=this.getForwardBufferDuration(o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).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),s=this.parsedInitData.get(t.id);(0,R.assertNonNullable)(i,"No init buffer for starting representation"),(0,R.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(s))}.bind(this));this.switchTo=(0,R.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!K(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,R.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,R.isNullable)(s)||(0,R.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,R.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,R.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,R.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!K(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,R.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,R.isNullable)(s)||(0,R.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,R.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,R.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,R.abortable)(this.destroyAbortController.signal,async function*(e){var u,l;let t=(u=(0,Cn.default)(e,c=>c.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let c of this.representations.keys()){let d=t.find(h=>h.id===c);d&&this.representations.set(c,d);let f=this.representations.get(c);if(!f||!rt(f.segmentReference))return;let p=this.getActualLiveStartingSegments(f.segmentReference);this.segments.set(f.id,p)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,R.assertNonNullable)(r);let s=this.segments.get(i);(0,R.assertNonNullable)(s,"No segments for starting representation");let n=this.initData.get(i);if((0,R.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))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(s,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));var c;this.fetcher=r,this.tuning=s,this.compatibilityMode=u,this.forwardBufferTarget=s.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(c=l==null?void 0:l.baseUrls)!=null?c:[],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){!K(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ce,(0,R.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let s=this.representations.get(i);(0,R.assertNonNullable)(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,R.isNullable)(o)||(0,R.isNullable)(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,R.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!K(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,R.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,R.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 ce,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,R.isNullable)(e)||(0,R.isNullable)(this.downloadingRepresentationId)||(0,R.isNullable)(this.playingRepresentationId)||(0,R.isNullable)(this.sourceBuffer)||!K(this.mediaSource,this.sourceBuffer)||(0,R.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,R.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(c=>e>=c.time.from&&e<c.time.to);(0,R.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let s=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=this.getForwardBufferDuration(e),d=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(s=d)}if(isFinite(this.bufferLimit)&&Er(this.sourceBuffer.buffered)>=this.bufferLimit){let c=this.getForwardBufferDuration(e),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<d).catch(f=>{this.handleAsyncError(f,"pruneBuffer")});return}let u=[];if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,s),u.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,Dn.default)(u,r))c="high";else{let d=(0,_i.default)(u,0);d&&d.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(d=>{this.handleAsyncError(d,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!u.length&&this.getForwardBufferDuration(e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,_i.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-this.getForwardBufferDuration(e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let s of e)Math.trunc(s.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:s.time.from+r}),i=s.time.to;(0,R.isNonNullable)(t.duration)&&t.duration-i>0&&!this.isLive&&this.gaps.push({representation:t.id,from:i,to:t.duration})}getActualLiveStartingSegments(e){let t=e.segments,i=this.isActiveLowLatency()?this.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.tuning.dashCmafLive.maxActiveLiveOffset,r=[],s=0,n=t.length-1;do r.unshift(t[n]),s+=t[n].time.to-t[n].time.from,n--;while(s<i&&n>=0);return this.liveInitialAdditionalOffset=s-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,Cn.default)(e==null?void 0:e.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,s,n;let t=(i=(0,Cn.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!rt(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>({...p,status:"none",size:void 0})),l=100,c=(r=this.segments.get(o.id))!=null?r:[],d=(n=(s=(0,_i.default)(c,-1))==null?void 0:s.time.to)!=null?n:0,f=u==null?void 0:u.findIndex(p=>d>=p.time.from+l&&d<=p.time.to+l);if(f===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,p)}else{let p=u.slice(f+1);this.segments.set(o.id,[...c,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,R.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,_i.default)(e,-1))==null?void 0:t.time.to:0)||0}updateLowLatencyLiveIfNeeded(e){var i;let t=0;for(let r of this.representations.values()){let s=r.segmentReference;if(!rt(s))return;let n=(i=this.segments.get(r.id))!=null?i:[],o=n.find(l=>Math.floor(l.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(l=>Math.floor(l.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let l=Math.round(e.time.to*s.timescale/1e3).toString(10),c=It(s.segmentTemplateUrl,{segmentTime:l});n.push({status:"none",time:{from:e.time.to,to:1/0},url:c})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var s,n,o;let t=(n=(s=this.switchingToRepresentationId)!=null?s: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&&Mt&&Mt(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&Mt&&Mt(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),s=e.findIndex(({status:f,time:{from:p,to:h}},b)=>{let g=p<=i&&h>=i,v=p>i||g||b===0&&i===0,E=Math.min(this.forwardBufferTarget,this.bufferLimit),I=this.preloadOnly&&p<=i+E||r<E&&h-p>=E||h<=i+E;return(f==="none"||f==="partially_ejected"&&v&&I&&this.sourceBuffer&&K(this.mediaSource,this.sourceBuffer)&&!(_e(this.sourceBuffer.buffered,p)&&_e(this.sourceBuffer.buffered,h)))&&v&&I});if(s===-1)return[];if(t!=="byteRange")return e.slice(s,s+1);let n=e,o=0,u=0,l=[],c=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,d=this.preloadOnly?this.forwardBufferTarget:0;for(let f=s;f<n.length&&(o<=c||u<=d);f++){let p=n[f];if(o+=p.byte.to+1-p.byte.from,u+=p.time.to+1-p.time.from,p.status==="none"||p.status==="partially_ejected")l.push(p);else break}return l}async loadSegments(e,t,i="auto"){rt(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:s,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,R.abortable)(o,async function*(){let c=(0,R.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(d=>setTimeout(d,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:s,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency(),bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation});if(this.lastDataObtainedTimestampMs=(0,R.now)(),!c)return;let d=new DataView(c),f=Dt(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=f.getChunkEndTime(d,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(d,o);let{serverDataReceivedTimestamp:p,serverDataPreparedTime:h}=f.getServerLatencyTimestamps(d);p&&h&&this.currentLiveSegmentServerLatency$.next(h-p),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),Ct(c)||(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())rt(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:s,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,R.abortable)(n,async function*(){let u=(0,R.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,R.fromEvent)(window,"online").pipe((0,R.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(s,{range:r,onProgress:o,signal:n,priority:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}),this.lastDataObtainedTimestampMs=(0,R.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Ct(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(rt(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,_i.default)(e,0).byte.from,to:(0,_i.default)(e,-1).byte.to},{signal:s}=this.downloadAbortController;return{url:i,range:r,signal:s,onProgress:async(o,u)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,R.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:s,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!rt(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:s}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,c)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,R.now)();let d=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:s,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(d)}catch(d){this.error$.next({id:"SegmentFeeding",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:d})}}:void 0;return{url:r,signal:s,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Dn.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:s}){if(!this.activeSegments.size||!K(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(s.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),c=Dt(n.mime).parseFeedableSegmentChunk(l,this.isLive);c!=null&&c.byteLength&&(u.status="partially_fed",o.feedingBytes+=c.byteLength,await this.sourceBufferTaskQueue.append(c),o.fedBytes+=c.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:s,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!K(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){let{segment:l}=u;if(u.representationId!==t)continue;if(s.aborted){await n();continue}let c=l.byte.from-i,d=l.byte.to-i,f=d-c+1,p=c<r,h=d<=r;if(!p)continue;let b=Dt(o.mime);if(l.status==="downloading"&&h){l.status="downloaded";let g=new DataView(e.buffer,e.byteOffset+c,f);await this.sourceBufferTaskQueue.append(g,s)&&!s.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(f,r-c),u.loadedBytes>u.feedingBytes)){let g=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),v=u.loadedBytes===f?g:b.parseFeedableSegmentChunk(g);v!=null&&v.byteLength&&(l.status="partially_fed",u.feedingBytes+=v.byteLength,await this.sourceBufferTaskQueue.append(v,s)&&!s.aborted?(u.fedBytes+=v.byteLength,u.fedBytes===f&&this.onSegmentFullyAppended(u,t)):await n())}}}onSegmentFullyAppended(e,t){var i;if(!((0,R.isNullable)(this.sourceBuffer)||!K(this.mediaSource,this.sourceBuffer))){!this.isLive&&Y.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(_e(this.sourceBuffer.buffered,e.segment.time.from,100)&&_e(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:R.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",Ql(e.segment)&&(e.segment.size=e.fedBytes);for(let r of this.representations.values())if(r.id!==t)for(let s of(i=this.segments.get(r.id))!=null?i:[])s.status==="fed"&&Math.round(s.time.from)===Math.round(e.segment.time.from)&&Math.round(s.time.to)===Math.round(e.segment.time.to)&&(s.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,s]of this.initData.entries()){let n=s instanceof Promise;t||(t=n),s===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Ir(()=>(0,Cv.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,R.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,R.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Dt(e.mime),r)).then(async o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,d=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,d);let f=c;this.isLive&&rt(e.segmentReference)&&(f=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,f),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:R.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}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||!K(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,R.isNullable)(e))return!1;let r=[],s=0,n=u=>{u.sort((c,d)=>c.from-d.from);let l=[u[0]];for(let c=1;c<u.length;c++){let{from:d,to:f}=u[c],p=l[l.length-1];p.to>=d?p.to=Math.max(p.to,f):l.push(u[c])}return l},o=u=>{var c;if(s>=t)return r;r.push({...u.time}),r=n(r);let l=Ql(u)?(c=u.size)!=null?c:0:u.byte.to-u.byte.from;s+=l};for(let u of this.segments.values())for(let l of u){let c=l.time.to<=e-this.tuning.dash.bufferPruningSafeZone,d=l.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(c||d)&&l.status==="fed"&&o(l)}for(let u=0;u<this.sourceBuffer.buffered.length;u++){let l=this.sourceBuffer.buffered.start(u)*1e3,c=this.sourceBuffer.buffered.end(u)*1e3,d=0;for(let f of this.segments.values())for(let p of f)(0,Dn.default)(["none","partially_ejected"],p.status)&&Math.round(p.time.from)<=Math.round(l)&&Math.round(p.time.to)>=Math.round(c)&&d++;if(d===this.segments.size){let f={time:{from:l,to:c},url:"",status:"none"};o(f)}}if(r.length&&i){let u=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let l of this.segments.values())for(let c of l)c.time.from>=e+u&&c.status==="fed"&&o(c)}return r.length?(await Promise.all(r.map(l=>this.sourceBufferTaskQueue.remove(l.from,l.to)))).reduce((l,c)=>l||c,!1):!1}async abortBuffer(){if(!this.sourceBuffer||!K(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||!K(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||!K(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,R.isNullable)(e)?0:$e(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!(!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer))){if(this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));for(let i of t){let r={representation:e,from:i.time.from,to:i.time.to};for(let s=0;s<this.sourceBuffer.buffered.length;s++){let n=this.sourceBuffer.buffered.start(s)*1e3,o=this.sourceBuffer.buffered.end(s)*1e3;if(!(o<=i.time.from||n>=i.time.to)){if(n<=i.time.from&&o>=i.time.to){r=void 0;break}o>i.time.from&&o<i.time.to&&(r.from=o),n<i.time.to&&n>i.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(s=>r&&s.from===r.from&&s.to===r.to)&&this.gaps.push(r)}}}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Ir(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:R.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,R.isNullable)(this.sourceBuffer)||!K(this.mediaSource,this.sourceBuffer)||(0,R.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),s=Math.ceil(this.sourceBuffer.buffered.end(i)*1e3);e.push({from:r,to:s})}let t=100;for(let i of this.segments.values())for(let r of i){let{status:s}=r;if(s!=="fed"&&s!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=e.some(c=>c.from-t<=n&&c.to+t>=o),l=e.filter(c=>n>=c.from&&n<c.to-t||o>c.from+t&&o<=c.to);u||(l.length===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:R.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var pi=a=>{let e=new URL(a);return e.searchParams.set("quic","1"),e.toString()};var Bn=a=>{var s;let e=a.get("X-Delivery-Type"),t=a.get("X-Reused"),i=e===null?"http1":e!=null?e:void 0,r=t===null?void 0:(s={1:!0,0:!1}[t])!=null?s:void 0;return{type:i,reused:r}};var ee=require("@vkontakte/videoplayer-shared/es2018");var Vn=a=>{let e=new URL(a);return e.searchParams.set("enable-subtitles","yes"),e.toString()};var On=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:s=!1}){this.lastConnectionType$=new ee.ValueSubject(void 0);this.lastConnectionReused$=new ee.ValueSubject(void 0);this.lastRequestFirstBytes$=new ee.ValueSubject(void 0);this.recoverableError$=new ee.Subject;this.error$=new ee.Subject;this.abortAllController=new ce;this.subscription=new ee.Subscription;this.fetchManifest=(0,ee.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=pi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Vn(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(_n);return r?(t.log("success",(0,ee.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,ee.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,ee.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:s="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:l=!1}={}){var G,ue,le;let c=e,d=new Headers,f=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let w=new URL(c,location.href);w.searchParams.append("bytes",`${i.from}-${i.to}`),c=w.toString();break}default:(0,ee.assertNever)(t)}this.requestQuic&&(c=pi(c));let p=this.abortAllController.signal,h;if(n){let w=new ce;if(h=(0,ee.merge)((0,ee.fromEvent)(this.abortAllController.signal,"abort"),(0,ee.fromEvent)(n,"abort")).subscribe(()=>{try{w.abort()}catch(_){_n(_)}}),this.subscription.add(h),this.abortAllController.signal.aborted||n.aborted)try{w.abort()}catch(_){_n(_)}p=w.signal}let b=(0,ee.now)();f.log("startRequest",(0,ee.flattenObject)({url:c,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:b}));let g=yield this.doFetch(c,{priority:s,headers:d,signal:p}),v=(0,ee.now)();if(!g)return f.error("error",{message:"No response in request"}),f.end(),h==null||h.unsubscribe(),null;if((G=this.throughputEstimator)==null||G.addRawRtt(v-b),!g.ok||!g.body){h==null||h.unsubscribe();let w=`Fetch error ${g.status}: ${g.statusText}`;return f.error("error",{message:w}),f.end(),Promise.reject(new Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){h==null||h.unsubscribe();let w=(0,ee.now)(),_={requestStartedAt:b,requestEndedAt:w,duration:w-b};return f.log("endRequest",(0,ee.flattenObject)(_)),f.end(),g.arrayBuffer()}let E=g.body;if(o){let w;[E,w]=g.body.tee(),(ue=this.throughputEstimator)==null||ue.trackStream(w,u)}let I=E.getReader(),A,P=parseInt((le=g.headers.get("content-length"))!=null?le:"",10);Number.isFinite(P)&&(A=P),!A&&i&&(A=i.to-i.from+1);let C=0,N=A?new Uint8Array(A):new Uint8Array(0),O=!1,B=w=>{h==null||h.unsubscribe(),O=!0,_n(w)},V=(0,ee.abortable)(p,async function*({done:w,value:_}){if(C===0&&this.lastRequestFirstBytes$.next((0,ee.now)()-b),p.aborted){h==null||h.unsubscribe();return}if(!w&&_){if(l&&A)N.set(_,C),C+=_.byteLength;else{let $=new Uint8Array(N.length+_.length);$.set(N),$.set(_,N.length),N=$,C+=_.byteLength}r==null||r(new DataView(N.buffer),C),yield I==null?void 0:I.read().then(V,B)}}.bind(this));yield I==null?void 0:I.read().then(V,B),h==null||h.unsubscribe();let H=(0,ee.now)(),U={failed:O,requestStartedAt:b,requestEndedAt:H,duration:H-b};return O?(f.error("endRequest",(0,ee.flattenObject)(U)),f.end(),null):(f.log("endRequest",(0,ee.flattenObject)(U)),f.end(),N.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,ee.abortable)(this.abortAllController.signal,async function*(e,t,i){var v;if(e.type!=="byteRange")return null;let{from:r,to:s}=e.initRange,n=r,o=s,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=s+1===l,u&&(n=Math.min(l,r),o=Math.max(c,s))),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 f=new DataView(d,r-n,s-n+1);if(!t.validateData(f))throw new Error("Invalid media file");let p=t.parseInit(f),h=(v=e.indexRange)!=null?v:t.getIndexRange(p);if(!h)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(d,h.from-n,h.to-h.from+1);else{let E=yield this.fetch(e.url,{range:h,priority:i,measureThroughput:!1});if(!E)return null;b=new DataView(E)}let g=t.parseSegments(b,p,h);return{init:p,dataView:new DataView(d),segments:g}}.bind(this));this.fetchTemplateRepresentation=(0,ee.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});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=s}onHeadersReceived(e){let{type:t,reused:i}=Bn(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){var s,n;let{type:r}=e;switch(r){case"byteRange":return(s=await this.fetchByteRangeRepresentation(e,t,i))!=null?s:null;case"template":return(n=await this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,ee.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.subscription.unsubscribe(),this.tracer.end()}async doFetch(e,t){let i=await dt(e,t);if(i.ok)return i;let r=await i.text(),s=parseInt(r);if(!isNaN(s))switch(s){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:ee.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:ee.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:ee.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:ee.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:ee.ErrorCategory.FATAL})}}},_n=a=>{if(!Ct(a))throw a};var Qt=(a,e,t)=>t*e+(1-t)*a,Wl=(a,e)=>a.reduce((t,i)=>t+i,0)/e,Bv=(a,e,t,i)=>{let r=0,s=t,n=Wl(a,e),o=e<i?e:i;for(let u=0;u<o;u++)a[s]>n?r++:r--,s=(a.length+s-1)%a.length;return Math.abs(r)===o};var Xa=require("@vkontakte/videoplayer-shared/es2018"),hi=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 Xa.ValueSubject(e.initial),this.debounced$=new Xa.ValueSubject(e.initial);let t=(i=e.label)!=null?i:"value"+Math.random().toString(16).substring(2,6);this.rawSeries$=new Ne(`raw_${t}`),this.smoothedSeries$=new Ne(`smoothed_${t}`),this.reportedSeries$=new Ne(`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),s=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>s||this.smoothed<n)&&((0,Xa.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 Fn=class extends hi{constructor(e){super(e),this.slow=this.fast=e.initial}updateSmoothedValue(e){this.slow=Qt(this.slow,e,this.params.emaAlphaSlow),this.fast=Qt(this.fast,e,this.params.emaAlphaFast);let t=this.params.fastDirection>0?Math.max:Math.min;this.smoothed=t(this.slow,this.fast)}};var Nn=class extends hi{constructor(e){super(e),this.emaSmoothed=e.initial}updateSmoothedValue(e){let t=Wl(this.pastMeasures,this.takenMeasures);this.emaSmoothed=Qt(this.emaSmoothed,e,this.params.emaAlpha);let i=Bv(this.pastMeasures,this.takenMeasures,this.measuresCursor-1,this.params.basisTrendChangeCount);this.smoothed=i?this.emaSmoothed:t}};var Un=class extends hi{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?Qt(this.smoothed,t,this.params.emaAlpha):t}};var Gt=class{static getSmoothedValue(e,t,i){return i.type==="TwoEma"?new Fn({initial:e,emaAlphaSlow:i.emaAlphaSlow,emaAlphaFast:i.emaAlphaFast,changeThreshold:i.changeThreshold,fastDirection:t,deviationDepth:i.deviationDepth,deviationFactor:i.deviationFactor,label:"throughput"}):new Nn({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 Un({initial:e,label:"liveEdgeDelay",...t})}};var Rr=(a,e)=>{a&&a.playbackRate!==e&&(a.playbackRate=e)};var qn=require("@vkontakte/videoplayer-shared/es2018");var Ja=class a{constructor(e,t){this.currentRepresentation$=new qn.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,qn.isNullable)(e))for(let i of this.representations)for(let r of i){let s=r.segmentReference,n=s.segments.length,o=s.segments[0].time.from,u=s.segments[n-1].time.to;if(e<o||e>u)continue;let l=s.segments.find(c=>c.time.from<=e&&c.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next({...r,label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.url,s.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?e:[]){let i=a.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=>a.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&rt(t.segmentReference))}};var jn=z(yt(),1);var Za=require("@vkontakte/videoplayer-shared/es2018");var Vv=(a,{useManagedMediaSource:e,useOldMSEDetection:t})=>{let{containers:i,protocols:r,codecs:s,nativeHlsSupported:n}=Y.video,o=(s.h264||s.h265)&&s.aac,u=r.mse&&(!t||!!window.MediaStreamTrack)||r.mms&&e;return a.filter(l=>{switch(l){case"DASH_SEP":return u&&i.mp4&&o;case"DASH_WEBM":return u&&i.webm&&s.vp9&&s.opus;case"DASH_WEBM_AV1":return u&&i.webm&&s.av1&&s.opus;case"DASH_STREAMS":return u&&(i.mp4&&o||i.webm&&(s.vp9||s.av1)&&(s.opus||s.aac));case"DASH_LIVE":return u&&i.mp4&&o;case"DASH_LIVE_CMAF":return u&&i.mp4&&o&&i.cmaf;case"DASH_ONDEMAND":return u&&i.mp4&&o;case"HLS":case"HLS_ONDEMAND":case"HLS_LIVE":case"HLS_LIVE_CMAF":return n;case"MPEG":return i.mp4;case"DASH":case"DASH_LIVE_WEBM":return!1;case"WEB_RTC_LIVE":return r.webrtc&&r.ws&&s.h264&&(i.mp4||i.webm);default:return(0,Za.assertNever)(l)}})},Hn=a=>{let{webmDecodingInfo:e}=Y.video,t="DASH_WEBM",i="DASH_WEBM_AV1";switch(a){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,Za.assertNever)(a)}return[t,i]},_v=({webmCodec:a,androidPreferredFormat:e,preferMultiStream:t})=>{let i=[...t?["DASH_STREAMS"]:[],...Hn(a),"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]],r=[...t?["DASH_STREAMS"]:[],"DASH_SEP","DASH_ONDEMAND",...t?[]:["DASH_STREAMS"]];if(Y.device.isAndroid)switch(e){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[...r,"MPEG",...Hn(a),"HLS","HLS_ONDEMAND"];case"dash_any_webm":return[...Hn(a),"MPEG",...r,"HLS","HLS_ONDEMAND"];case"dash_sep":return["DASH_SEP","MPEG",...Hn(a),...r,"HLS","HLS_ONDEMAND"];default:(0,Za.assertNever)(e)}return Y.video.nativeHlsSupported?[...i,"HLS","HLS_ONDEMAND","MPEG"]:[...i,"HLS","HLS_ONDEMAND","MPEG"]},Ov=({androidPreferredFormat:a,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"],s=[...i,...r],n=[...r,...i],o,u=Y.device.isMac&&Y.browser.isSafari;if(Y.device.isAndroid)switch(a){case"dash":case"dash_any_mpeg":case"dash_any_webm":case"dash_sep":{o=s;break}case"hls":case"mpeg":{o=n;break}default:(0,Za.assertNever)(a)}else Y.video.nativeHlsSupported&&!u?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=s;return t?["WEB_RTC_LIVE",...o]:[...o,"WEB_RTC_LIVE"]},zl=a=>a?["HLS_LIVE","HLS_LIVE_CMAF","DASH_LIVE_CMAF"]:["DASH_WEBM","DASH_WEBM_AV1","DASH_SEP","DASH_ONDEMAND","HLS","HLS_ONDEMAND","MPEG"],Qn=a=>{if(a.size===0)return;if(a.size===1){let t=a.values().next();return(0,jn.default)(t.value.split("."),0)}for(let t of a){let i=(0,jn.default)(t.split("."),0);if(i==="opus"||i==="vp09"||i==="av01")return i}let e=a.values().next();return(0,jn.default)(e.value.split("."),0)};var t$=["timeupdate","progress","play","seeked","stalled","waiting"],i$=["timeupdate","progress","loadeddata","playing","seeked"];var Gn=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new T.Subscription;this.representationSubscription=new T.Subscription;this.state$=new re("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.lastConnectionType$=new T.ValueSubject(void 0);this.lastConnectionReused$=new T.ValueSubject(void 0);this.lastRequestFirstBytes$=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.destroyController=new ce;this.initManifest=(0,T.abortable)(this.destroyController.signal,async function*(e,t,i){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=xe(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 n,o;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:T.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Mn(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=Ln(e))!=null?n:{id:"ManifestParsing",category:T.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,c)=>{var d,f,p,h;return!!((f=(d=this.element)==null?void 0:d.canPlayType)!=null&&f.call(d,l)&&((h=(p=tt())==null?void 0:p.isTypeSupported)!=null&&h.call(p,`${l}; codecs="${c}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:c,streamIsAlive:d}=t.live,f=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*f),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";d||(p=c?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let c=t.streams[u].filter(({mime:p,codecs:h})=>i(u,p,h)),d=new Set(c.map(({codecs:p})=>p)),f=Qn(d);if(f&&(r[u]=c.filter(({codecs:p})=>p.startsWith(f))),u==="video"){let p=this.tuning.preferHDR,h=r.video.some(g=>g.hdr),b=r.video.some(g=>!g.hdr);Y.display.isHDR&&p&&h?r.video=r.video.filter(g=>g.hdr):b&&(r.video=r.video.filter(g=>!g.hdr))}}let s={...t,streams:r};return this.tracer.log("updateManifestEnd",(0,T.flattenObject)(s)),s}.bind(this));this.initRepresentations=(0,T.abortable)(this.destroyController.signal,async function*(e,t,i){var f;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 b;return!!((b=this.element)!=null&&b.played.length)})).subscribe(h=>{this.error$.next({id:"VideoSource",category:T.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?mn():new MediaSource;let s=document.createElement("source");if(r(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),this.tuning.useManagedMediaSource&&mr())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 Ka("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,T.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((h,b)=>[...h,...b.representations],[]);this.audioBufferManager=new Ka("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}Ja.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new Ja(this.manifest.streams.text,n)),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$));let u=()=>{var p;(p=this.stallWatchdogSubscription)==null||p.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,T.merge)(...i$.map(p=>(0,T.fromEvent)(this.element,p))).pipe((0,T.map)(p=>this.element?$e(this.element.buffered,this.element.currentTime*1e3):0),(0,T.filterChanged)(),(0,T.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,T.merge)((0,T.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),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(()=>{this.livePauseWatchdogSubscription=(0,T.interval)(1e3).subscribe(h=>{let b=ni(this.manifestUrlString,2);this.manifestUrlString=xe(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,T.fromEvent)(this.element,"play").subscribe(h=>{var b;return(b=this.livePauseWatchdogSubscription)==null?void 0:b.unsubscribe()})),this.representationSubscription.add((0,T.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,T.map)(({isActiveLive:h,isLowLatency:b})=>h&&b),(0,T.filterChanged)()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Rr(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:b,isLowLatency:g})=>b&&g&&!!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 b=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(b,-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,b)=>b.bufferLength<h.bufferLength),(0,T.map)(({rtt:h,bufferLength:b,segmentServerLatency:g})=>{let v=ni(this.manifestUrlString,2);return(h/2+b+g+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,T.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:b,isLowLatency:g})=>{if(!g||!b)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,E=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,I=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,A=h-v;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(A)>E&&(P=1+Math.sign(A)*I),Rr(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{var g,v;let b=0;if(h){let E=((v=(g=this.element)==null?void 0:g.currentTime)!=null?v:0)*1e3;b=Math.min(...this.bufferManagers.map(A=>{var P,C;return(C=(P=A.getLiveSegmentsToLoadState(this.manifest))==null?void 0:P.to)!=null?C:E}))-E}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let p=0;this.representationSubscription.add((0,T.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,T.throttle)(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:b})=>{if(!this.element||this.isUpdatingLive)return;let g=this.element.playbackRate,v=ni(this.manifestUrlString,2),E=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,I=Math.min(E,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*g),A=this.tuning.dashCmafLive.normalizedActualBufferOffset*g,P=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*g,C=isFinite(h)?h:b,N=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),O=E<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(O);let B="none";if(N?B="active_low_latency":this.isLowLatency$.getValue()&&O?(this.bufferManagers.forEach(V=>V.proceedLowLatencyLive()),B="active_low_latency"):v!==0&&C<I?B="live_forward_buffering":C<I+P&&(B="live_with_target_offset"),isFinite(h)&&(p=h>p?h:p),B==="live_forward_buffering"||B==="live_with_target_offset"){let V=p-(I+A),H=this.normolizeLiveOffset(Math.trunc(v+V/g)),U=Math.abs(H-v),G=0;!h||U<=this.tuning.dashCmafLive.offsetCalculationError?G=v:H>0&&U>this.tuning.dashCmafLive.offsetCalculationError&&(G=H),this.manifestUrlString=xe(this.manifestUrlString,G,2)}(B==="live_with_target_offset"||B==="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 l=(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()))),d=(0,T.combine)({allBuffersFull:l,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$,d).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 b;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var g;if(((g=this.source)==null?void 0:g.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)),(b=this.source)==null||b.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(f=this.manifest.duration)!=null?f:0,...(0,Kl.default)((0,Kl.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let b=[];return h.duration&&b.push(h.duration),rt(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&b.push(h.segmentReference.totalSegmentsDurationMs),b})];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,s;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||(s=this.audioBufferManager)!=null&&s.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.fetcher=new On({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.liveBuffer=Gt.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){var r,s,n;(0,T.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,T.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=xe(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await((r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video)),await((s=this.audioBufferManager)==null?void 0:s.seekLive(this.manifest.streams.audio)),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))}initBuffer(){(0,T.assertNonNullable)(this.element),this.state$.setState("running"),this.subscription.add((0,T.merge)(...t$.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(()=>{var t;this.element&&this.element.readyState===2&&!this.element.seeking&&_e(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let e=()=>{var p,h,b,g,v,E,I,A,P,C,N;if(!this.element||((p=this.source)==null?void 0:p.readyState)!=="open")return;let i=this.currentStallDuration$.getValue();i+=50,this.currentStallDuration$.next(i);let r={timeInWaiting:i},s=(0,T.now)(),n=100,o=(b=(h=this.videoBufferManager)==null?void 0:h.lastDataObtainedTimestamp)!=null?b:0;this.videoLastDataObtainedTimestamp$.next(o);let u=(v=(g=this.audioBufferManager)==null?void 0:g.lastDataObtainedTimestamp)!=null?v:0,l=(I=(E=this.videoBufferManager)==null?void 0:E.getForwardBufferDuration())!=null?I:0,c=(P=(A=this.audioBufferManager)==null?void 0:A.getForwardBufferDuration())!=null?P:0,d=l<n&&s-o>this.tuning.dash.crashOnStallTWithoutDataTimeout,f=this.audioBufferManager&&c<n&&s-u>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((d||f)&&i>this.tuning.dash.crashOnStallTWithoutDataTimeout||i>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${i} ms`);if(this.isLive$.getValue()&&i%2e3===0){let O=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(O).catch(B=>{this.error$.next({id:"stallIntervalCallback",category:T.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:B})}),r.liveLastOffset=O}else{let O=this.element.currentTime*1e3;(C=this.videoBufferManager)==null||C.maintain(O),(N=this.audioBufferManager)==null||N.maintain(O),r.position=O}this.tracer.log("stallIntervalCallback",(0,T.flattenObject)(r))};(t=this.stallWatchdogSubscription)==null||t.unsubscribe(),this.stallWatchdogSubscription=(0,T.interval)(50).subscribe(e,i=>{this.error$.next({id:"StallWatchdogCallback",category:T.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:i})}),this.subscription.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,s,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=(s=this.audioBufferManager)==null?void 0:s.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),_e(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}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.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))}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){var e,t;this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.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};this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e.to&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let r=this.element.currentTime*1e3,s=[],n=this.element.readyState===1?this.tuning.endGapTolerance:0;for(let o of this.bufferManagers)for(let u of o.gaps)o.playingRepresentation$.getValue()===u.representation&&u.from-n<=r&&u.to+n>r&&(this.element.duration*1e3-u.to<this.tuning.endGapTolerance?s.push(1/0):s.push(u.to));if(s.length){let o=Math.max(...s)+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,o===1/0?this.forceEnded$.next():(this.element.currentTime=o/1e3,i={...i,gapEnds:s,jumpTo:o,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 Wn=class{constructor(e,t){this.fov=e,this.orientation=t}};var zn=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,s=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:s,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 Uv=`attribute vec2 a_vertex;
125
125
  attribute vec2 a_texel;
126
126
 
127
127
  varying vec2 v_texel;
@@ -132,7 +132,7 @@ void main(void) {
132
132
  // save texel vector to pass to fragment shader
133
133
  v_texel = a_texel;
134
134
  }
135
- `;var Ry=`#ifdef GL_ES
135
+ `;var qv=`#ifdef GL_ES
136
136
  precision highp float;
137
137
  precision highp int;
138
138
  #else
@@ -175,13 +175,6 @@ void main(void) {
175
175
  // sample using new coordinates
176
176
  gl_FragColor = texture2D(u_texture, tc);
177
177
  }
178
- `;var as=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 Su(this.params.fov,this.params.orientation),this.cameraRotationManager=new vu(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(ky,this.gl.VERTEX_SHADER),i=this.createShader(Ry,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,l=e+i,d=t+r,c=e-i,h=t+r;return[a,n,o,u,l,d,c,h]}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 Ie=require("@vkontakte/videoplayer-shared/es2018");var yu="stalls_manager_metrics",Pd="stalls_manager_abr_params",My="stalls_manager_default_tuning_abr_params",kd=class{constructor(){this.isSeeked$=new Ie.ValueSubject(!1);this.isBuffering$=new Ie.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 Ie.Subscription;this.severeStallOccurred$=new Ie.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.resetStoredAbrParamsIfNeeded(),this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){let e=this.tuning.enabled?this.getStoredData(Pd):{};return{...this.abrParams,...e}}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,Ie.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,Ie.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(My)},{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:a,containerSizeFactor:n}={...this.abrParams};this.tuning.enabled&&e===r&&t===a&&i===n||(this.removeStoredData(Pd),this.setStoredData(My,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:a,containerSizeFactor:n}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(yu,"[]");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(yu,[]),this.setStoredData(Pd,r)}calculateOptimalAbrParams(e,t){let{targetStallsDurationPerTvt:i,deviationStallsDurationPerTvt:r,criticalStallsDurationPerTvt:a,abrAdjustingSpeed:n,significantTvt:o,stallsMetricsHistoryLength:u}=this.tuning,l=n*Math.min(t/(o*u),1),d=this.abrTuningParams;return e<i-r?d={bitrateFactorAtEmptyBuffer:Math.max(d.bitrateFactorAtEmptyBuffer-l,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(d.bitrateFactorAtFullBuffer-l,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(d.containerSizeFactor+l,this.abrParams.maxContainerSizeFactor)}:e>i+r&&(d={bitrateFactorAtEmptyBuffer:Math.min(d.bitrateFactorAtEmptyBuffer+l,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(d.bitrateFactorAtFullBuffer+l,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(d.containerSizeFactor-l,this.abrParams.minContainerSizeFactor)}),e>a&&(d={bitrateFactorAtEmptyBuffer:Math.max(d.bitrateFactorAtEmptyBuffer,this.abrParams.bitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(d.bitrateFactorAtFullBuffer,this.abrParams.bitrateFactorAtFullBuffer),containerSizeFactor:Math.min(d.containerSizeFactor,this.abrParams.containerSizeFactor)}),d}getStoredData(e,t="{}"){var i;return JSON.parse((i=Ie.safeStorage.get(e))!=null?i:t)}setStoredData(e,t){Ie.safeStorage.set(e,JSON.stringify(t))}removeStoredData(e){Ie.safeStorage.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(yu,"[]"),r=t/e,a=i.length?Bi(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(yu,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,Ie.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,Ie.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,Ie.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:a,ignoreStallsOnSeek:n}=this.tuning;if((0,Ie.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),d=(0,Ie.now)(),c=r&&this.currentStallsCount>=r,h=i&&d-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&d-l>=i+o&&t>=i;(c||h)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,Ie.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,Ie.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}))}},Tu=kd;var St=require("@vkontakte/videoplayer-shared/es2018"),Iu=class{constructor(){this.subscription=new St.Subscription;this.pipSize$=new St.ValueSubject(void 0);this.videoSize$=new St.ValueSubject(void 0);this.elementSize$=new St.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=St.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,St.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,St.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,St.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 yr=class{constructor(e){this.subscription=new ee.Subscription;this.videoState=new ue("stopped");this.observableVideo=null;this.droppedFramesManager=new Yr;this.stallsManager=new Tu;this.elementSizeManager=new Iu;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Gi;this.audioTrackSwitchHistory=new Gi;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.hostname$.next(void 0),this.videoState.setState("stopped"),O(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"),O(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,ee.assertNever)(e)}}};this.init3DScene=e=>{var i,r,a;if(this.scene3D)return;this.scene3D=new as(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 Vt(e.source.url),this.params=e,this.video=ht(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(et(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 gu({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;(0,ee.isNullable)(this.observableVideo)&&(this.observableVideo=bt(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:ee.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,ee.filter)(l=>!!l.length),(0,ee.once)()).subscribe(l=>{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:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,ee.map)(l=>l.to.state!=="none"),(0,ee.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$}),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.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.isLive$,e.isLive$),a(this.player.lastRequestFirstBytes$.pipe((0,ee.filter)(ee.isNonNullable),(0,ee.once)()),e.firstBytesEvent$),a(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),a(this.videoState.stateChangeEnded$.pipe((0,ee.map)(l=>l.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(ai(this.video,t.isLooped,r)),this.subscription.add(mt(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Ct(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Ot(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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"),O(t.playbackState,"paused")})),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let d=this.player.getStreams();if((0,ee.assertNonNullable)(d,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let p of d.audio){h.push(bd(p));let f=[];for(let b of p.representations){let S=hy(b);f.push(S),this.audioTracksMap.set(S,{stream:p,representation:b})}this.audioStreamsMap.set(p,f)}this.params.output.availableAudioStreams$.next(h)}let c=[];for(let h of d.video){c.push(gd(h));let p=[];for(let f of h.representations){let b=py({...f,streamId:h.id});b&&(p.push(b),this.videoTracksMap.set(b,{stream:h,representation:f}))}this.videoStreamsMap.set(h,p)}this.params.output.availableVideoStreams$.next(c);for(let h of d.text)for(let p of h.representations){let f=fy(h,p);this.textTracksMap.set(f,{stream:h,representation:p})}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),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,ee.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,ee.fromEvent)(this.video,"progress")).pipe((0,ee.filter)(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),d=this.player.state$.getTransition();if(!(0,Ly.default)(["manifest_ready","running"],l)||d)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let c=this.selectVideoAudioRepresentations();if(!c)return;let[h,p]=c,f=[...this.videoTracksMap.keys()].find(S=>{var v;return((v=this.videoTracksMap.get(S))==null?void 0:v.representation.id)===h.id});(0,ee.isNonNullable)(f)&&(this.stallsManager.lastVideoTrackSelected=f);let b=this.params.desiredState.autoVideoTrackLimits.getTransition();if(b&&this.params.output.autoVideoTrackLimits$.next(b.to),l==="manifest_ready")await this.player.initRepresentations(h.id,p==null?void 0:p.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",h.id),p){let S=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",p.id,S)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,ee.filterChanged)()).subscribe(l=>{let d=[...this.videoTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!d){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[c,{stream:h}]=d,p=this.params.desiredState.videoStream.getTransition();p&&p.to&&p.to.id===h.id&&this.params.desiredState.videoStream.setState(p.to),e.currentVideoTrack$.next(c),e.currentVideoStream$.next(gd(h))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,ee.filterChanged)()).subscribe(l=>{let d=[...this.audioTracksMap.entries()].find(([,{representation:f}])=>f.id===l);if(!d){e.currentAudioStream$.next(void 0);return}let[c,{stream:h}]=d,p=this.params.desiredState.audioStream.getTransition();p&&p.to&&p.to.id===h.id&&this.params.desiredState.audioStream.setState(p.to),e.currentAudioStream$.next(bd(h))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var d,c;if(l!=null&&l.is3dVideo&&((d=this.params.tuning.spherical)!=null&&d.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(h){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${h}`})}else this.destroy3DScene(),(c=this.params.tuning.spherical)!=null&&c.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 o=t.playbackState.stateChangeStarted$.pipe((0,ee.map)(({to:l})=>l==="ready"),(0,ee.filterChanged)());this.subscription.add((0,ee.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,ee.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),c=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(c)})),this.subscription.add((0,ee.merge)(o,this.player.state$.stateChangeEnded$,(0,ee.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,ee.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,ee.observableFrom)(["init"])).pipe((0,ee.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var $,q,_,V,ne,K,B,Q,C,R,U,ye,Ke;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ia:Ta,t=this.params.tuning.useNewAutoSelectVideoTrack?Xo:Ko,i=this.params.tuning.useNewAutoSelectVideoTrack?ni:Yo,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=($=r.videoTrack.getState())==null?void 0:$.id,l=[...this.videoTracksMap.keys()].find(({id:me})=>me===o),d=a.currentVideoTrack$.getValue(),c=((V=(_=r.videoStream.getState())!=null?_:l&&((q=this.videoTracksMap.get(l))==null?void 0:q.stream))!=null?V:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!c)return;let h=[...this.videoStreamsMap.keys()].find(({id:me})=>me===c.id),p=h&&this.videoStreamsMap.get(h);if(!p)return;let f=Ye(this.video.buffered,this.video.currentTime*1e3),b;this.player.isActiveLive$.getValue()?b=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?b=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:b=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let S=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,v=Math.min(f/Math.min(b,S||1/0),1),T=(ne=r.audioStream.getState())!=null?ne:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,x=(K=[...this.audioStreamsMap.keys()].find(({id:me})=>me===(T==null?void 0:T.id)))!=null?K:this.audioStreamsMap.keys().next().value,A=0;if(x){if(l&&!n){let me=e(l,p,(B=this.audioStreamsMap.get(x))!=null?B:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);A=Math.max(A,(Q=me==null?void 0:me.bitrate)!=null?Q:-1/0)}if(d){let me=e(d,p,(C=this.audioStreamsMap.get(x))!=null?C:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);A=Math.max(A,(R=me==null?void 0:me.bitrate)!=null?R:-1/0)}}let 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:A,forwardBufferHealth:v,current:d,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}),M=n?w!=null?w:l:l!=null?l:w,H=x&&t(M,p,(U=this.audioStreamsMap.get(x))!=null?U:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:v,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),N=(ye=this.videoTracksMap.get(M))==null?void 0:ye.representation,L=H&&((Ke=this.audioTracksMap.get(H))==null?void 0:Ke.representation);if(N&&L)return[N,L];if(N&&!L&&this.audioTracksMap.size===0)return[N,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){gt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(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}))}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),ft(this.video),this.tracer.end()}};var dn=class extends yr{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 Se=require("@vkontakte/videoplayer-shared/es2018");var pn=class extends yr{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new Se.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,Se.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,Se.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,Se.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,Se.filter)(o=>(0,Se.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,Se.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,Se.merge)(i.playbackRateState$,new Se.ValueSubject(1))}).pipe((0,Se.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;d||u<1-c||this.video.paused||(0,Se.isNullable)(l)||(e=o-l)})).add((0,Se.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,Se.merge)(i.playbackRateState$,new Se.ValueSubject(1))}).pipe((0,Se.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-c||(0,Se.isNullable)(o)||(0,Se.isNullable)(u))return;let h=-1*(u-o-e);t.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=my(o);this.params.output.availableTextTracks$.next([u])}}))}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 te=require("@vkontakte/videoplayer-shared/es2018");var Nd=Y(Ma(),1);var y=require("@vkontakte/videoplayer-shared/es2018");var Pu=Y(Rt(),1),os=Y(Xt(),1),ku=Y(Ma(),1);var Zy=Y(Co(),1);var Ji=require("@vkontakte/videoplayer-shared/es2018");var YL=18,By=!1;try{By=J.browser.isSafari&&!!J.browser.safariVersion&&J.browser.safariVersion<=YL}catch(s){console.error(s)}var Rd=class{constructor(e){this.bufferFull$=new Ji.Subject;this.error$=new Ji.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!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.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:Ji.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,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)};By&&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.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:Ji.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,Ji.assertNever)(t)}}},$y=Rd;var k=require("@vkontakte/videoplayer-shared/es2018");var pe=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>e.byteLength-e.byteOffset&&(this.size32=NaN);let r=this.size32?this.size32-8:void 0,a=e.byteOffset+this.cursor;this.size64=0,this.usertype=0,this.content=new DataView(e.buffer,a,r)}get id(){return this.type}get size(){return this.size32}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 ns=class extends pe{};var hn=class extends pe{constructor(t,i){super(t,i);this.ondemandPrefix="ondemandlivejson";this.ondemandDataReceivedKey="t-in";this.ondemandDataPreparedKey="t-out";let r=this.content.byteOffset,a=r+this.content.byteLength,n=new TextDecoder("ascii").decode(this.content.buffer.slice(r,a)).split(this.ondemandPrefix)[1],o=JSON.parse(n);this.serverDataReceivedTimestamp=o[this.ondemandDataReceivedKey],this.serverDataPreparedTime=o[this.ondemandDataPreparedKey]}};var fn=class extends pe{constructor(e,t){super(e,t),this.compatibleBrands=[],this.majorBrand=this.readString(4),this.minorVersion=this.readUint32();let i=this.size-this.cursor;for(;i;){let r=this.readString(4);this.compatibleBrands.push(r),i-=4}}};var mn=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var xe=class extends pe{constructor(e,t){super(e,t);let i=this.readUint32();this.version=i>>>24,this.flags=i&16777215}};var bn=class extends xe{constructor(e,t){super(e,t),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 gn=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Sn=class extends pe{constructor(e,t){super(e,t),this.data=this.content}};var Tr=class extends xe{get earliestPresentationTime(){return this.earliestPresentationTime32}get firstOffset(){return this.firstOffset32}constructor(e,t){super(e,t),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,l=r<<3>>>3;this.segments.push({referenceType:a,referencedSize:n,subsegmentDuration:o,SAPType:u,SAPDeltaTime:l})}}};var vn=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var yn=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Tn=class extends xe{constructor(e,t){switch(super(e,t),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 In=class extends xe{constructor(e,t){super(e,t),this.poseYawDegrees=this.readUint32(),this.posePitchDegrees=this.readUint32(),this.poseRollDegrees=this.readUint32()}};var xn=class extends xe{constructor(e,t){super(e,t),this.projectionBoundsTop=this.readUint32(),this.projectionBoundsBottom=this.readUint32(),this.projectionBoundsLeft=this.readUint32(),this.projectionBoundsRight=this.readUint32()}};var En=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var wn=class extends xe{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 An=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Pn=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var kn=class extends xe{constructor(e,t){super(e,t),this.sequenceNumber=this.readUint32()}};var Rn=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Mn=class extends xe{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 Ln=class extends xe{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 Bn=class extends xe{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 $n=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(this.content)}};var Dn=class extends xe{constructor(e,t){super(e,t),this.entryCount=this.readUint32(),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+8,this.content.byteLength-8))}};var Cn=class extends pe{constructor(e,t){super(e,t),this.children=this.scanForBoxes(new DataView(this.content.buffer,this.content.byteOffset+78,this.content.byteLength-78))}};var XL={ftyp:fn,moov:mn,mvhd:bn,moof:gn,mdat:Sn,sidx:Tr,trak:vn,mdia:En,mfhd:kn,tkhd:wn,traf:Rn,tfhd:Mn,tfdt:Ln,trun:Bn,minf:An,sv3d:yn,st3d:Tn,prhd:In,proj:Pn,equi:xn,uuid:hn,stbl:$n,stsd:Dn,avc1:Cn,unknown:ns},Di=class s{constructor(e={}){this.options={offset:0,...e}}parse(e){let t=[],i=this.options.offset;for(;i<e.byteLength;)try{let a=new TextDecoder("ascii").decode(new DataView(e.buffer,e.byteOffset+i+4,4)),n=this.createBox(a,new DataView(e.buffer,e.byteOffset+i,e.byteLength-i));if(!n.size)break;t.push(n),i+=n.size}catch(r){break}return t}createBox(e,t){let i=XL[e];return i?new i(t,new s):new ns(t,new s)}};var Zi=class{constructor(e){this.index={},this.indexBoxLevel(e)}indexBoxLevel(e){e.forEach(t=>{var i,r,a;(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 ZL=new TextDecoder("ascii"),eB=s=>ZL.decode(new DataView(s.buffer,s.byteOffset+4,4))==="ftyp",tB=s=>{let e=new Tr(s,new Di),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})},iB=(s,e)=>{let i=new Di().parse(s),r=new Zi(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],l=o.source.byteOffset,c=u.source.byteOffset-o.source.byteOffset+u.size;return new DataView(s.buffer,l,c)},rB=s=>{let t=new Di().parse(s),i=new Zi(t),r={},a=i.findAll("uuid");return a.length?a[a.length-1]:r},sB=s=>{var r;let t=new Di().parse(s);return(r=new Zi(t).find("sidx"))==null?void 0:r.timescale},aB=(s,e)=>{let i=new Di().parse(s),a=new Zi(i).findAll("traf"),n=a[a.length-1].children.find(c=>c.type==="tfhd"),o=a[a.length-1].children.find(c=>c.type==="tfdt"),u=a[a.length-1].children.find(c=>c.type==="trun"),l=0;return u.sampleDuration.length?l=u.sampleDuration.reduce((c,h)=>c+h,0):l=n.defaultSampleDuration*u.sampleCount,(Number(o.baseMediaDecodeTime)+l)/e*1e3},nB=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 Di().parse(s),r=new Zi(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},Dy={validateData:eB,parseInit:nB,getIndexRange:()=>{},parseSegments:tB,parseFeedableSegmentChunk:iB,getChunkEndTime:aB,getServerLatencyTimestamps:rB,getTimescaleFromIndex:sB};var On=Y(Rt(),1),Ci=require("@vkontakte/videoplayer-shared/es2018");var Vy=require("@vkontakte/videoplayer-shared/es2018");var Cy={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"}},Oy=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=Vn(s,t),r=i in Cy,a=r?Cy[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),l=n&255>>o,d=Vn(u),c=l*2**((o-1)*8)+d,h=t+o,p;return h+c>s.byteLength?p=new DataView(s.buffer,s.byteOffset+h):p=new DataView(s.buffer,s.byteOffset+h,c),{tag:r?i:"0x"+i.toString(16).toUpperCase(),type:a,tagHeaderSize:h,tagSize:h+c,value:p,valueSize:c}},Vn=(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},Zt=(s,e)=>{switch(e){case"int":return s.getInt8(0);case"uint":return Vn(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,Vy.assertNever)(e)}},Ir=(s,e)=>{let t=0;for(;t<s.byteLength;){let i=new DataView(s.buffer,s.byteOffset+t),r=Oy(i);if(!e(r))return;r.type==="master"&&Ir(r.value,e),t=r.value.byteOffset-s.byteOffset+r.valueSize}},_y=s=>{if(s.getUint32(0)!==440786851)return!1;let e,t,i,r=Oy(s);return Ir(r.value,({tag:a,type:n,value:o})=>(a===17143?e=Zt(o,n):a===17026?t=Zt(o,n):a===17029&&(i=Zt(o,n)),!0)),(e===void 0||e<=1)&&t!==void 0&&t==="webm"&&(i===void 0||i<=2)};var Fy=[357149030,290298740,374648427,174,224,30320,30321,30322,272869232,524531317,475249515,423732329,307544935],oB=[231,22612,22743,167,171,163,160,175],uB=s=>{let e,t,i,r,a=!1,n=!1,o=!1,u,l,d=!1,c=0;return Ir(s,({tag:h,type:p,value:f,valueSize:b})=>{if(h===21419){let S=Zt(f,p);l=Vn(S)}else h!==21420&&(l=void 0);return h===408125543?(e=f.byteOffset,t=f.byteOffset+b):h===357149030?a=!0:h===290298740?n=!0:h===2807729?i=Zt(f,p):h===17545?r=Zt(f,p):h===21420&&l===475249515?u=Zt(f,p):h===374648427?Ir(f,({tag:S,type:v,value:T})=>S===30321?(d=Zt(T,v)===1,!1):!0):a&&n&&(0,On.default)(Fy,h)&&(o=!0),!o}),(0,Ci.assertNonNullable)(e,"Failed to parse webm Segment start"),(0,Ci.assertNonNullable)(t,"Failed to parse webm Segment end"),(0,Ci.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:d,stereoMode:c,projectionType:1,projectionData:{pose:{yaw:0,pitch:0,roll:0},bounds:{top:0,bottom:0,left:0,right:0}}}},lB=s=>{if((0,Ci.isNullable)(s.cuesSeekPosition))return;let e=s.segmentStart+s.cuesSeekPosition,t=1024*1024;return{from:e,to:e+t}},cB=(s,e)=>{let t=!1,i=!1,r=o=>(0,Ci.isNonNullable)(o.time)&&(0,Ci.isNonNullable)(o.position),a=[],n;return Ir(s,({tag:o,type:u,value:l})=>{switch(o){case 475249515:t=!0;break;case 187:n&&r(n)&&a.push(n),n={};break;case 179:n&&(n.time=Zt(l,u));break;case 183:break;case 241:n&&(n.position=Zt(l,u));break;default:t&&(0,On.default)(Fy,o)&&(i=!0)}return!(t&&i)}),n&&r(n)&&a.push(n),a.map((o,u)=>{let{time:l,position:d}=o,c=a[u+1];return{status:"none",time:{from:l,to:c?c.time:e.segmentDuration},byte:{from:e.segmentStart+d,to:c?e.segmentStart+c.position-1:e.segmentEnd-1}}})},dB=s=>{let e=0,t=!1;try{Ir(s,i=>i.tag===524531317?i.tagSize<=s.byteLength?(e=i.tagSize,!1):(e+=i.tagHeaderSize,!0):(0,On.default)(oB,i.tag)?(e+i.tagSize<=s.byteLength&&(e+=i.tagSize,t||(t=(0,On.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},Ny={validateData:_y,parseInit:uB,getIndexRange:lB,parseSegments:cB,parseFeedableSegmentChunk:dB};var _n=s=>{let e=/^(.+)\/([^;]+)(?:;.*)?$/.exec(s);if(e){let[,t,i]=e;if(t==="audio"||t==="video")switch(i){case"webm":return Ny;case"mp4":return Dy}}throw new ReferenceError(`Unsupported mime type ${s}`)};var Vd=Y(pd(),1),Yy=Y(lr(),1),Ky=Y(hd(),1),Xy=Y(Xt(),1),Od=Y(mr(),1);var Nn=require("@vkontakte/videoplayer-shared/es2018");var Uy=s=>{var e;try{let t=pB(),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(l=>{a[l[0]]=l.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 l=o[u];(typeof l=="undefined"||l==="")&&delete o[u]}),o}return null}catch(t){return null}};function pB(){let s="(?<extlang>(?:[a-z]{3}(?:-[a-z]{3}){0,2}))",e="x(?:-[a-z0-9]{1,8})+",d=`^(?:(?<langtag>${`
179
- (?<language>${`(?:[a-z]{2,3}(?:-${s})?|[a-z]{4}|[a-z]{5,8})`})
180
- (-(?<script>[a-z]{4}))?
181
- (-(?<region>(?:[a-z]{2}|[0-9]{3})))?
182
- (?<variants>(?:-(?:[a-z0-9]{5,8}|[0-9][a-z0-9]{3}))*)
183
- (?<extensions>(?:-[0-9a-wy-z](?:-[a-z0-9]{2,8})+)*)
184
- (?:-(?<privateuse>(?:${e})))?
185
- `})|(?<privateuse2>${e}))$`.replace(/[\s\t\n]/g,"");return new RegExp(d,"i")}var Bd=Y(Xt(),1);var xu=require("@vkontakte/videoplayer-shared/es2018"),qy=({id:s,width:e,height:t,bitrate:i,fps:r,quality:a,streamId:n})=>{var u;let o=(u=a?Qi(a):void 0)!=null?u:(0,xu.videoSizeToQuality)({width:e,height:t});return o&&{id:s,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},jy=({id:s,bitrate:e})=>({id:s,bitrate:e}),Hy=({language:s,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),zy=({language:s,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:s,label:e}),$d=({id:s,language:e,label:t,codecs:i,isDefault:r})=>({id:s,language:e,label:t,codec:(0,Bd.default)(i.split("."),0),isDefault:r}),Dd=({id:s,language:e,label:t,hdr:i,codecs:r})=>({id:s,language:e,hdr:i,label:t,codec:(0,Bd.default)(r.split("."),0)}),Cd=s=>"url"in s,pt=s=>s.type==="template",Fn=s=>s instanceof DOMException&&(s.name==="AbortError"||s.code===20);var Qy=s=>{s.sort((t,i)=>t.from-i.from);let e=[s[0]];for(let t=1;t<s.length;t++){let{from:i,to:r}=s[t],a=e[e.length-1];a.to>=i?a.to=Math.max(a.to,r):e.push(s[t])}return e},xr=(s,e)=>{for(let t of s)if(e(t))return t;return null},Gy=s=>{let e=!1,t=(0,xu.throttleFn)(()=>{e=!0},s);return()=>{try{return t(),e}finally{e=!1}}};var Wy=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},Vi=(s,e)=>{let t=s;t=(0,Vd.default)(t,"$$","$");let i={RepresentationID:e.representationId,Number:e.segmentNumber,Bandwidth:e.bandwidth,Time:e.segmentTime};for(let[r,a]of(0,Yy.default)(i)){let n=new RegExp(`\\$${r}(?:%0(\\d+)d)?\\$`,"g");t=(0,Vd.default)(t,n,(o,u)=>(0,Nn.isNullable)(a)?o:(0,Nn.isNullable)(u)?a:(0,Ky.default)(a,parseInt(u,10),"0"))}return t},Jy=(s,e)=>{var L,$,q,_,V,ne,K,B,Q,C,R,U,ye,Ke,me,ce,Ce,Ve,Oe,Xe,Dt,Nt,ei,ci,Ni,ls,cs,ds,ps,hs,fs,ms,bs,gs,Ss,vs,ys,Ts,Is,xs,Es,ws,As,Ps,ks,Rs,Ms,Ls,Bs,$s,Ds,Cs,Vs,Os,_s,Fs,Ns,Us,qs,js,Hs;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(we=>{var z,it;return(it=(z=we.textContent)==null?void 0:z.trim())!=null?it:""}),o=(L=(0,Xy.default)(n,0))!=null?L:"",u=a.getAttribute("type")==="dynamic",l=a.getAttribute("availabilityStartTime"),d=a.getAttribute("publishTime"),c=a.getElementsByTagName("vk:Attrs")[0],h=c==null?void 0:c.getElementsByTagName("vk:XLatestSegmentPublishTime")[0].textContent,p=c==null?void 0:c.getElementsByTagName("vk:XStreamIsLive")[0].textContent,f=c==null?void 0:c.getElementsByTagName("vk:XStreamIsUnpublished")[0].textContent,b=c==null?void 0:c.getElementsByTagName("vk:XPlaybackDuration")[0].textContent,S;u&&(S={availabilityStartTime:l?new Date(l).getTime():0,publishTime:d?new Date(d).getTime():0,latestSegmentPublishTime:h?new Date(h).getTime():0,streamIsAlive:p==="yes",streamIsUnpublished:f==="yes"});let v,T=a.getAttribute("mediaPresentationDuration"),x=[...a.getElementsByTagName("Period")],A=x.reduce((we,z)=>({...we,[z.id]:z.children}),{}),w=x.reduce((we,z)=>({...we,[z.id]:z.getAttribute("duration")}),{});T?v=Wy(T):(0,Od.default)(w).filter(we=>we).length&&!u?v=(0,Od.default)(w).reduce((we,z)=>{var it;return we+((it=Wy(z))!=null?it:0)},0):b&&(v=parseInt(b,10));let M=0,H=(q=($=a.getAttribute("profiles"))==null?void 0:$.split(","))!=null?q:[];for(let we of x.map(z=>z.id))for(let z of A[we]){let it=(_=z.getAttribute("id"))!=null?_:"id"+(M++).toString(10),Ut=(V=z.getAttribute("mimeType"))!=null?V:"",er=(ne=z.getAttribute("codecs"))!=null?ne:"",tr=(K=z.getAttribute("contentType"))!=null?K:Ut==null?void 0:Ut.split("/")[0],Fu=(Q=(B=z.getAttribute("profiles"))==null?void 0:B.split(","))!=null?Q:[],zs=(R=Uy((C=z.getAttribute("lang"))!=null?C:""))!=null?R:{},di=(Ke=(ye=(U=z.querySelector("Label"))==null?void 0:U.textContent)==null?void 0:ye.trim())!=null?Ke:void 0,Nu=z.querySelectorAll("Representation"),Uu=z.querySelector("SegmentTemplate"),qu=(ce=(me=z.querySelector("Role"))==null?void 0:me.getAttribute("value"))!=null?ce:void 0,yt=tr,ae={id:it,language:zs.language,isDefault:qu==="main",label:di,codecs:er,hdr:yt==="video"&&is(er),mime:Ut,representations:[]};for(let j of Nu){let Ue=(Ce=j.getAttribute("lang"))!=null?Ce:void 0,qt=(Oe=(Ve=di!=null?di:z.getAttribute("label"))!=null?Ve:j.getAttribute("label"))!=null?Oe:void 0,pi=(Nt=(Dt=(Xe=j.querySelector("BaseURL"))==null?void 0:Xe.textContent)==null?void 0:Dt.trim())!=null?Nt:"",rt=new URL(pi||o,e).toString(),qe=(ei=j.getAttribute("mimeType"))!=null?ei:Ut,hi=(Ni=(ci=j.getAttribute("codecs"))!=null?ci:er)!=null?Ni:"",fi;if(tr==="text"){let je=j.getAttribute("id")||"",mi=((ls=zs.privateuse)==null?void 0:ls.includes("x-auto"))||je.includes("_auto"),st=j.querySelector("SegmentTemplate");if(st){let jt={representationId:(cs=j.getAttribute("id"))!=null?cs:void 0,bandwidth:(ds=j.getAttribute("bandwidth"))!=null?ds:void 0},bi=parseInt((ps=j.getAttribute("bandwidth"))!=null?ps:"",10)/1e3,gi=(fs=parseInt((hs=st.getAttribute("startNumber"))!=null?hs:"",10))!=null?fs:1,Tt=parseInt((ms=st.getAttribute("timescale"))!=null?ms:"",10),ir=(bs=st.querySelectorAll("SegmentTimeline S"))!=null?bs:[],It=st.getAttribute("media");if(!It)continue;let Si=[],vi=0,yi="",xt=0,Ht=gi,he=0;for(let Ae of ir){let at=parseInt((gs=Ae.getAttribute("d"))!=null?gs:"",10),ge=parseInt((Ss=Ae.getAttribute("r"))!=null?Ss:"",10)||0,He=parseInt((vs=Ae.getAttribute("t"))!=null?vs:"",10);he=Number.isFinite(He)?He:he;let nt=at/Tt*1e3,ze=he/Tt*1e3;for(let Me=0;Me<ge+1;Me++){let Qe=Vi(It,{...jt,segmentNumber:Ht.toString(10),segmentTime:(he+Me*at).toString(10)}),Et=(ze!=null?ze:0)+Me*nt,Qt=Et+nt;Ht++,Si.push({time:{from:Et,to:Qt},url:Qe})}he+=(ge+1)*at,vi+=(ge+1)*nt}xt=he/Tt*1e3,yi=Vi(It,{...jt,segmentNumber:Ht.toString(10),segmentTime:he.toString(10)});let zt={time:{from:xt,to:1/0},url:yi},_e={type:"template",baseUrl:rt,segmentTemplateUrl:It,initUrl:"",totalSegmentsDurationMs:vi,segments:Si,nextSegmentBeyondManifest:zt,timescale:Tt};fi={id:je,kind:"text",segmentReference:_e,profiles:[],duration:v,bitrate:bi,mime:"",codecs:"",width:0,height:0,isAuto:mi}}else fi={id:je,isAuto:mi,kind:"text",url:rt}}else{let je=(Ts=(ys=j.getAttribute("contentType"))!=null?ys:qe==null?void 0:qe.split("/")[0])!=null?Ts:tr,mi=(xs=(Is=z.getAttribute("profiles"))==null?void 0:Is.split(","))!=null?xs:[],st=parseInt((Es=j.getAttribute("width"))!=null?Es:"",10),jt=parseInt((ws=j.getAttribute("height"))!=null?ws:"",10),bi=parseInt((As=j.getAttribute("bandwidth"))!=null?As:"",10)/1e3,gi=(Ps=j.getAttribute("frameRate"))!=null?Ps:"",Tt=(ks=j.getAttribute("quality"))!=null?ks:void 0,ir=gi?ru(gi):void 0,It=(Rs=j.getAttribute("id"))!=null?Rs:"id"+(M++).toString(10),Si=je==="video"?`${jt}p`:je==="audio"?`${bi}Kbps`:hi,vi=`${It}@${Si}`,yi=[...H,...Fu,...mi],xt,Ht=j.querySelector("SegmentBase"),he=(Ms=j.querySelector("SegmentTemplate"))!=null?Ms:Uu;if(Ht){let _e=(Bs=(Ls=j.querySelector("SegmentBase Initialization"))==null?void 0:Ls.getAttribute("range"))!=null?Bs:"",[Ae,at]=_e.split("-").map(Qe=>parseInt(Qe,10)),ge={from:Ae,to:at},He=($s=j.querySelector("SegmentBase"))==null?void 0:$s.getAttribute("indexRange"),[nt,ze]=He?He.split("-").map(Qe=>parseInt(Qe,10)):[],Me=He?{from:nt,to:ze}:void 0;xt={type:"byteRange",url:rt,initRange:ge,indexRange:Me}}else if(he){let _e={representationId:(Ds=j.getAttribute("id"))!=null?Ds:void 0,bandwidth:(Cs=j.getAttribute("bandwidth"))!=null?Cs:void 0},Ae=parseInt((Vs=he.getAttribute("timescale"))!=null?Vs:"",10),at=(Os=he.getAttribute("initialization"))!=null?Os:"",ge=he.getAttribute("media"),He=(Fs=parseInt((_s=he.getAttribute("startNumber"))!=null?_s:"",10))!=null?Fs:1,nt=Vi(at,_e);if(!ge)throw new ReferenceError("No media attribute in SegmentTemplate");let ze=(Ns=he.querySelectorAll("SegmentTimeline S"))!=null?Ns:[],Me=[],Qe=0,Et="",Qt=0;if(ze.length){let Ti=He,Pe=0;for(let wt of ze){let Le=parseInt((Us=wt.getAttribute("d"))!=null?Us:"",10),ot=parseInt((qs=wt.getAttribute("r"))!=null?qs:"",10)||0,Ii=parseInt((js=wt.getAttribute("t"))!=null?js:"",10);Pe=Number.isFinite(Ii)?Ii:Pe;let rr=Le/Ae*1e3,sr=Pe/Ae*1e3;for(let xi=0;xi<ot+1;xi++){let Hu=Vi(ge,{..._e,segmentNumber:Ti.toString(10),segmentTime:(Pe+xi*Le).toString(10)}),Qs=(sr!=null?sr:0)+xi*rr,zu=Qs+rr;Ti++,Me.push({time:{from:Qs,to:zu},url:Hu})}Pe+=(ot+1)*Le,Qe+=(ot+1)*rr}Qt=Pe/Ae*1e3,Et=Vi(ge,{..._e,segmentNumber:Ti.toString(10),segmentTime:Pe.toString(10)})}else if((0,Nn.isNonNullable)(v)){let Pe=parseInt((Hs=he.getAttribute("duration"))!=null?Hs:"",10)/Ae*1e3,wt=Math.ceil(v/Pe),Le=0;for(let ot=1;ot<wt;ot++){let Ii=Vi(ge,{..._e,segmentNumber:ot.toString(10),segmentTime:Le.toString(10)});Me.push({time:{from:Le,to:Le+Pe},url:Ii}),Le+=Pe}Qt=Le,Et=Vi(ge,{..._e,segmentNumber:wt.toString(10),segmentTime:Le.toString(10)})}let ju={time:{from:Qt,to:1/0},url:Et};xt={type:"template",baseUrl:rt,segmentTemplateUrl:ge,initUrl:nt,totalSegmentsDurationMs:Qe,segments:Me,nextSegmentBeyondManifest:ju,timescale:Ae}}else throw new ReferenceError("Unknown MPD segment referencing type");if(!je||!qe)continue;let zt={video:"video",audio:"audio",text:"text"}[je];if(!zt)continue;yt||(yt=zt),fi={id:vi,kind:zt,segmentReference:xt,profiles:yi,duration:v,bitrate:bi,mime:qe,codecs:hi,width:st,height:jt,fps:ir,quality:Tt}}ae.language||(ae.language=Ue),ae.label||(ae.label=qt),ae.mime||(ae.mime=qe),ae.codecs||(ae.codecs=hi),ae.hdr||(ae.hdr=yt==="video"&&is(hi)),ae.representations.push(fi)}if(yt){let j=r[yt].find(Ue=>Ue.id===ae.id);if(j&&ae.representations.every(Ue=>pt(Ue.segmentReference)))for(let Ue of j.representations){let qt=ae.representations.find(qe=>qe.id===Ue.id),pi=qt==null?void 0:qt.segmentReference,rt=Ue.segmentReference;rt.segments.push(...pi.segments),rt.nextSegmentBeyondManifest=pi.nextSegmentBeyondManifest}else r[yt].push(ae)}}return{duration:v,streams:r,baseUrls:n,live:S}};var Au=require("@vkontakte/videoplayer-shared/es2018");var Eu=s=>{let e=[];for(let t=0;t<s.length;t++){let i=Math.floor(s.start(t)*1e3),r=Math.ceil(s.end(t)*1e3);e.push(i,r)}return e};var wu=class{constructor(e,t){this.lastUpdateTs=0;this.lastCallTs=0;this.prevRanges=[];this.subscription=new Au.Subscription;this.mediaSource=e,this.sourceBuffer=t,this.subscription.add((0,Au.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>this.updateend()))}updateend(){if(!Z(this.mediaSource,this.sourceBuffer))return;let{prevRanges:e}=this,t=Eu(this.sourceBuffer.buffered);this.prevRanges=t,this.isRangesRemoved(e,t)&&(this.lastUpdateTs=Date.now())}isRangesRemoved(e,t){if(e.length!==t.length)return!0;for(let i=0;i<e.length;i+=2){let r=e[i],a=e[i+1],n=t[i],o=t[i+1];if(n>r||o<a)return!0}return!1}wasUpdated(){let{lastCallTs:e,lastUpdateTs:t}=this;return this.lastCallTs=Date.now(),e<=t}destroy(){this.subscription.unsubscribe()}};var Un=class{constructor(e,t,i,{fetcher:r,tuning:a,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new k.ValueSubject(0);this.currentLowLatencySegmentLength$=new k.ValueSubject(0);this.currentSegmentLength$=new k.ValueSubject(0);this.onLastSegment$=new k.ValueSubject(!1);this.fullyBuffered$=new k.ValueSubject(!1);this.playingRepresentation$=new k.ValueSubject(void 0);this.playingRepresentationInit$=new k.ValueSubject(void 0);this.error$=new k.Subject;this.gaps=[];this.subscription=new k.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new be;this.switchAbortController=new be;this.destroyAbortController=new be;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.sourceBufferBufferedDiff=null;this.startWith=(0,k.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,k.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 $y(this.sourceBuffer),this.sourceBufferBufferedDiff=new wu(this.mediaSource,this.sourceBuffer),this.subscription.add((0,k.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.maintain()})),this.subscription.add((0,k.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:k.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!Z(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Zr(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=Ye(this.sourceBuffer.buffered,o),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<d).catch(c=>{this.handleAsyncError(c,"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,k.assertNonNullable)(i,"No init buffer for starting representation"),(0,k.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,k.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,k.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,k.isNullable)(a)||(0,k.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,k.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(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,k.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,k.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,k.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),a=this.initData.get(e);if((0,k.isNullable)(a)||(0,k.isNullable)(r)?yield this.loadInit(i,"high",!1):a instanceof Promise&&(yield a),r=this.segments.get(e),(0,k.assertNonNullable)(r,"No segments for starting representation"),a=this.initData.get(e),!(!a||!(a instanceof ArrayBuffer)||!this.sourceBuffer||!Z(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,k.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,k.abortable)(this.destroyAbortController.signal,async function*(e){var u,l;let t=(u=(0,ku.default)(e,d=>d.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let d of this.representations.keys()){let c=t.find(f=>f.id===d);c&&this.representations.set(d,c);let h=this.representations.get(d);if(!h||!pt(h.segmentReference))return;let p=this.getActualLiveStartingSegments(h.segmentReference);this.segments.set(h.id,p)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,k.assertNonNullable)(r);let a=this.segments.get(i);(0,k.assertNonNullable)(a,"No segments for starting representation");let n=this.initData.get(i);if((0,k.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))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 d;this.fetcher=r,this.tuning=a,this.compatibilityMode=u,this.forwardBufferTarget=a.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(d=l==null?void 0:l.baseUrls)!=null?d:[],this.initData=new Map(i.map(c=>[c.id,null])),this.segments=new Map,this.parsedInitData=new Map,this.representations=new Map(i.map(c=>[c.id,c])),this.kind=e,this.mediaSource=t,this.sourceBuffer=null}switchToWithPreviousAbort(e,t=!1){!Z(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new be,(0,k.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let a=this.representations.get(i);(0,k.assertNonNullable)(a,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,k.isNullable)(o)||(0,k.isNullable)(n)?yield this.loadInit(a,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,k.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!Z(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,k.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,k.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 be,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,k.isNullable)(e)||(0,k.isNullable)(this.downloadingRepresentationId)||(0,k.isNullable)(this.playingRepresentationId)||(0,k.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,k.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,k.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(d=>e>=d.time.from&&e<d.time.to);(0,k.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let a=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let d=Ye(this.sourceBuffer.buffered,e),c=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&d>=r.time.to-e+n&&(a=c)}if(isFinite(this.bufferLimit)&&Zr(this.sourceBuffer.buffered)>=this.bufferLimit){let d=Ye(this.sourceBuffer.buffered,e),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,d<c).catch(h=>{this.handleAsyncError(h,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,a),u!=null&&u.length)){let d="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,Pu.default)(u,r))d="high";else{let c=(0,os.default)(u,0);c&&c.time.from-r.time.to>=this.forwardBufferTarget/2&&(d="low")}this.loadSegments(u,t,d).catch(c=>{this.handleAsyncError(c,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!(u!=null&&u.length)&&Ye(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,os.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-Ye(this.sourceBuffer.buffered,e)<n),this.onLastSegment$.next(e-l.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,k.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=(0,ku.default)(e==null?void 0:e.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,a,n;let t=(i=(0,ku.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!pt(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>({...p,status:"none",size:void 0})),l=100,d=(r=this.segments.get(o.id))!=null?r:[],c=(n=(a=(0,os.default)(d,-1))==null?void 0:a.time.to)!=null?n:0,h=u==null?void 0:u.findIndex(p=>c>=p.time.from+l&&c<=p.time.to+l);if(h===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,p)}else{let p=u.slice(h+1);this.segments.set(o.id,[...d,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,k.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&t.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!pt(r))return;let a=this.segments.get(i.id);if(!a)continue;let n=a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!a.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),l=Vi(r.segmentTemplateUrl,{segmentTime:u});a.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,t;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),(t=this.sourceBufferBufferedDiff)==null||t.destroy(),this.gapDetectionIdleCallback&&ui&&ui(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&ui&&ui(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(i){if(!(i instanceof DOMException&&i.name==="NotFoundError"))throw i}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.checkEjectedSegments(),this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){if(this.playingRepresentationId!==this.downloadingRepresentationId){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);this.liveUpdateSegmentIndex=i}return this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):null}selectForwardBufferSegmentsRecord(e,t,i){let r=this.getForwardBufferDuration(i),a=e.findIndex(({status:h,time:{from:p,to:f}},b)=>{let S=p<=i&&f>=i,v=p>i||S||b===0&&i===0,T=Math.min(this.forwardBufferTarget,this.bufferLimit),x=this.preloadOnly&&p<=i+T||r<T&&f-p>=T||f<=i+T;return(h==="none"||h==="partially_ejected"&&v&&x&&this.sourceBuffer&&Z(this.mediaSource,this.sourceBuffer)&&!(tt(this.sourceBuffer.buffered,p)&&tt(this.sourceBuffer.buffered,f)))&&v&&x});if(a===-1)return null;if(t!=="byteRange")return e.slice(a,a+1);let n=e,o=0,u=0,l=[],d=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,c=this.preloadOnly?this.forwardBufferTarget:0;for(let h=a;h<n.length&&(o<=d||u<=c);h++){let p=n[h];if(o+=p.byte.to+1-p.byte.from,u+=p.time.to+1-p.time.from,p.status==="none"||p.status==="partially_ejected")l.push(p);else break}return l}async loadSegments(e,t,i="auto"){pt(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:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,k.abortable)(o,async function*(){let d=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(c=>setTimeout(c,d))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let d=await this.fetcher.fetch(n,{range:a,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency()});if(this.lastDataObtainedTimestampMs=(0,k.now)(),!d)return;let c=new DataView(d),h=_n(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=h.getChunkEndTime(c,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(c,o);let{serverDataReceivedTimestamp:p,serverDataPreparedTime:f}=h.getServerLatencyTimestamps(c);p&&f&&this.currentLiveSegmentServerLatency$.next(f-p),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(d){this.abortActiveSegments([e]),Fn(d)||(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())pt(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,k.abortable)(n,async function*(){let u=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,k.fromEvent)(window,"online").pipe((0,k.once)()).subscribe(()=>{l(),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}),this.lastDataObtainedTimestampMs=(0,k.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Fn(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(pt(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,os.default)(e,0).byte.from,to:(0,os.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,k.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:a,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!pt(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?(l,d)=>{if(!a.aborted)try{this.lastDataObtainedTimestampMs=(0,k.now)();let c=this.onSomeTemplateDataLoaded({dataView:l,loaded:d,signal:a,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(c)}catch(c){this.error$.next({id:"SegmentFeeding",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:c})}}:void 0;return{url:r,signal:a,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,Pu.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:a}){if(!this.activeSegments.size||!Z(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 l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),d=_n(n.mime).parseFeedableSegmentChunk(l,this.isLive);d!=null&&d.byteLength&&(u.status="partially_fed",o.feedingBytes+=d.byteLength,await this.sourceBufferTaskQueue.append(d),o.fedBytes+=d.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:a,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!Z(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){if(u.representationId!==t)continue;if(a.aborted){await n();continue}let{segment:l}=u,d=l.byte.from-i,c=l.byte.to-i,h=c-d+1,p=d<r,f=c<=r;if(p){if(l.status==="downloading"&&f){l.status="downloaded";let b=new DataView(e.buffer,e.byteOffset+d,h);await this.sourceBufferTaskQueue.append(b,a)&&!a.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(h,r-d),u.loadedBytes>u.feedingBytes)){let b=new DataView(e.buffer,e.byteOffset+d+u.feedingBytes,u.loadedBytes-u.feedingBytes),S=u.loadedBytes===h?b:_n(o.mime).parseFeedableSegmentChunk(b);S!=null&&S.byteLength&&(l.status="partially_fed",u.feedingBytes+=S.byteLength,await this.sourceBufferTaskQueue.append(S,a)&&!a.aborted?(u.fedBytes+=S.byteLength,u.fedBytes===h&&this.onSegmentFullyAppended(u,t)):await n())}}}}onSegmentFullyAppended(e,t){if(!((0,k.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer))){!this.isLive&&J.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(tt(this.sourceBuffer.buffered,e.segment.time.from,100)&&tt(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",Cd(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values()){if(i.id===t)continue;let r=this.segments.get(i.id);if(r)for(let a of r)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.isActiveLowLatency()&&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=Jr(()=>(0,Zy.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,k.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,_n(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:d}=o,c=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,c);let h=d;this.isLive&&pt(e.segmentReference)&&(h=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,h),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:k.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}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||!Z(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,k.isNullable)(e))return!1;this.checkEjectedSegments();let r=[],a=0,n=o=>{var l;if(a>=t)return;r.push({...o.time});let u=Cd(o)?(l=o.size)!=null?l:0:o.byte.to-o.byte.from;a+=u};for(let o of this.segments.values())for(let u of o){let l=u.time.to<=e-this.tuning.dash.bufferPruningSafeZone,d=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||d)&&u.status==="fed"&&n(u)}for(let o=0;o<this.sourceBuffer.buffered.length;o++){let u=this.sourceBuffer.buffered.start(o)*1e3,l=this.sourceBuffer.buffered.end(o)*1e3,d=0;for(let c of this.segments.values())for(let h of c)(0,Pu.default)(["none","partially_ejected"],h.status)&&Math.round(h.time.from)<=Math.round(u)&&Math.round(h.time.to)>=Math.round(l)&&d++;if(d===this.segments.size){let c={time:{from:u,to:l},url:"",status:"none"};n(c)}}if(r.length&&i){let o=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let u of this.segments.values())for(let l of u)l.time.from>=e+o&&l.status==="fed"&&n(l)}return r.length?(r=Qy(r),(await Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1}async abortBuffer(){if(!this.sourceBuffer||!Z(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||!Z(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)}}getBufferedTo(){return!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length?null:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,k.isNullable)(e)?0:Ye(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))return;let{buffered:i}=this.sourceBuffer;this.tuning.useRefactoredSearchGap&&(this.gaps=this.gaps.filter(a=>{if(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}));let r={representation:e,from:t.time.from,to:t.time.to,persistent:!1};for(let a=0;a<i.length;a++){let n=i.start(a)*1e3,o=i.end(a)*1e3;if(!(o<=t.time.from||n>=t.time.to)){if(n<=t.time.from&&o>=t.time.to){r=void 0;break}o>t.time.from&&o<t.time.to&&(r.from=o),n<t.time.to&&n>t.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(a=>r&&a.from===r.from&&a.to===r.to)&&this.gaps.push(r)}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!Z(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>r.persistent||this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Jr(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:k.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,k.isNullable)(this.sourceBuffer)||!Z(this.mediaSource,this.sourceBuffer)||(0,k.isNullable)(this.playingRepresentationId)||this.sourceBufferBufferedDiff&&!this.sourceBufferBufferedDiff.wasUpdated())return;let e=Eu(this.sourceBuffer.buffered),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=!1,l=0;for(let d=0;d<e.length;d+=2){let c=e[d],h=e[d+1];u||(u=c-t<=n&&h+t>=o),(n>=c&&n<h-t||o>c+t&&o<=h)&&(l+=1)}u||(l===1?r.status="partially_ejected":this.gaps.some(d=>d.from===r.time.from||d.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:k.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}};var se=require("@vkontakte/videoplayer-shared/es2018");var Mu=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:a=!1}){this.lastConnectionType$=new se.ValueSubject(void 0);this.lastConnectionReused$=new se.ValueSubject(void 0);this.lastRequestFirstBytes$=new se.ValueSubject(void 0);this.recoverableError$=new se.Subject;this.error$=new se.Subject;this.abortAllController=new be;this.subscription=new se.SubscriptionRemovable;this.fetchManifest=(0,se.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=Ki(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=ou(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(Ru);return r?(t.log("success",(0,se.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,se.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,se.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}={}){var _,V,ne;let l=e,d=new Headers,c=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let K=new URL(l,location.href);K.searchParams.append("bytes",`${i.from}-${i.to}`),l=K.toString();break}default:(0,se.assertNever)(t)}this.requestQuic&&(l=Ki(l));let h=this.abortAllController.signal,p;if(n){let K=new be;if(p=(0,se.merge)((0,se.fromEvent)(this.abortAllController.signal,"abort"),(0,se.fromEvent)(n,"abort")).subscribe(()=>{try{K.abort()}catch(B){Ru(B)}}),this.subscription.add(p),this.abortAllController.signal.aborted||n.aborted)try{K.abort()}catch(B){Ru(B)}h=K.signal}let f=(0,se.now)();c.log("startRequest",(0,se.flattenObject)({url:l,priority:a,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:f}));let b=yield this.doFetch(l,{priority:a,headers:d,signal:h}),S=(0,se.now)();if(!b)return c.error("error",{message:"No response in request"}),c.end(),this.unsubscribeAbortSubscription(p),null;if((_=this.throughputEstimator)==null||_.addRawRtt(S-f),!b.ok||!b.body){this.unsubscribeAbortSubscription(p);let K=`Fetch error ${b.status}: ${b.statusText}`;return c.error("error",{message:K}),c.end(),Promise.reject(new Error(`Fetch error ${b.status}: ${b.statusText}`))}if(this.onHeadersReceived(b.headers),!r&&!o){this.unsubscribeAbortSubscription(p);let K=(0,se.now)(),B={requestStartedAt:f,requestEndedAt:K,duration:K-f};return c.log("endRequest",(0,se.flattenObject)(B)),c.end(),b.arrayBuffer()}let v=b.body;if(o){let K;[v,K]=b.body.tee(),(V=this.throughputEstimator)==null||V.trackStream(K,u)}let T=v.getReader(),x,A=parseInt((ne=b.headers.get("content-length"))!=null?ne:"",10);Number.isFinite(A)&&(x=A),!x&&i&&(x=i.to-i.from+1);let w=0,M=x?new Uint8Array(x):new Uint8Array(0),H=!1,N=K=>{this.unsubscribeAbortSubscription(p),H=!0,Ru(K)},L=(0,se.abortable)(h,async function*({done:K,value:B}){if(w===0&&this.lastRequestFirstBytes$.next((0,se.now)()-f),h.aborted){this.unsubscribeAbortSubscription(p);return}if(!K&&B){if(x)M.set(B,w),w+=B.byteLength;else{let Q=new Uint8Array(M.length+B.length);Q.set(M),Q.set(B,M.length),M=Q,w+=B.byteLength}r==null||r(new DataView(M.buffer),w),yield T==null?void 0:T.read().then(L,N)}}.bind(this));yield T==null?void 0:T.read().then(L,N),this.unsubscribeAbortSubscription(p);let $=(0,se.now)(),q={failed:H,requestStartedAt:f,requestEndedAt:$,duration:$-f};return H?(c.error("endRequest",(0,se.flattenObject)(q)),c.end(),null):(c.log("endRequest",(0,se.flattenObject)(q)),c.end(),M.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,se.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,l,d;e.indexRange&&(l=e.indexRange.from,d=e.indexRange.to,u=a+1===l,u&&(n=Math.min(l,r),o=Math.max(d,a))),n=Math.min(n,0);let c=yield this.fetch(e.url,{range:{from:n,to:o},priority:i,measureThroughput:!1});if(!c)return null;let h=new DataView(c,r-n,a-n+1);if(!t.validateData(h))throw new Error("Invalid media file");let p=t.parseInit(h),f=(v=e.indexRange)!=null?v:t.getIndexRange(p);if(!f)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(c,f.from-n,f.to-f.from+1);else{let T=yield this.fetch(e.url,{range:f,priority:i,measureThroughput:!1});if(!T)return null;b=new DataView(T)}let S=t.parseSegments(b,p,f);return{init:p,dataView:new DataView(c),segments:S}}.bind(this));this.fetchTemplateRepresentation=(0,se.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});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}onHeadersReceived(e){let{type:t,reused:i}=nu(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){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,se.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}async doFetch(e,t){let i=await _t(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:se.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:se.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:se.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:se.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${a})`,category:se.ErrorCategory.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},Ru=s=>{if(!Fn(s))throw s};var Lu=require("@vkontakte/videoplayer-shared/es2018");var qn=class s{constructor(e,t){this.currentRepresentation$=new Lu.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,Lu.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 l=a.segments.find(d=>d.time.from<=e&&d.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next({...r,label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.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&&pt(t.segmentReference))}};var mB=["progress","play","seeked","stalled","waiting"],bB=["timeupdate","progress","loadeddata","playing","seeked"];var Bu=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new y.Subscription;this.representationSubscription=new y.Subscription;this.state$=new ue("none");this.currentVideoRepresentation$=new y.ValueSubject(void 0);this.currentVideoRepresentationInit$=new y.ValueSubject(void 0);this.currentAudioRepresentation$=new y.ValueSubject(void 0);this.currentVideoSegmentLength$=new y.ValueSubject(0);this.currentAudioSegmentLength$=new y.ValueSubject(0);this.error$=new y.Subject;this.lastConnectionType$=new y.ValueSubject(void 0);this.lastConnectionReused$=new y.ValueSubject(void 0);this.lastRequestFirstBytes$=new y.ValueSubject(void 0);this.currentLiveTextRepresentation$=new y.ValueSubject(null);this.isLive$=new y.ValueSubject(!1);this.isActiveLive$=new y.ValueSubject(!1);this.isLowLatency$=new y.ValueSubject(!1);this.liveDuration$=new y.ValueSubject(0);this.liveSeekableDuration$=new y.ValueSubject(0);this.liveAvailabilityStartTime$=new y.ValueSubject(0);this.liveStreamStatus$=new y.ValueSubject(void 0);this.bufferLength$=new y.ValueSubject(0);this.liveLatency$=new y.ValueSubject(void 0);this.liveLoadBufferLength$=new y.ValueSubject(0);this.livePositionFromPlayer$=new y.ValueSubject(0);this.currentStallDuration$=new y.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new y.ValueSubject(0);this.fetcherRecoverableError$=new y.Subject;this.fetcherError$=new y.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new y.Subject;this.gapWatchdogActive=!1;this.destroyController=new be;this.initManifest=(0,y.abortable)(this.destroyController.signal,async function*(e,t,i){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=$e(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:y.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,y.abortable)(this.destroyController.signal,async function*(){var n,o;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:y.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Jy(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=iu(e))!=null?n:{id:"ManifestParsing",category:y.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,d)=>{var c,h,p,f;return!!((h=(c=this.element)==null?void 0:c.canPlayType)!=null&&h.call(c,l)&&((f=(p=Lt())==null?void 0:p.isTypeSupported)!=null&&f.call(p,`${l}; codecs="${d}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:d,streamIsAlive:c}=t.live,h=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*h),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";c||(p=d?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let d=t.streams[u].filter(({mime:p,codecs:f})=>i(u,p,f)),c=new Set(d.map(({codecs:p})=>p)),h=bu(c);if(h&&(r[u]=d.filter(({codecs:p})=>p.startsWith(h))),u==="video"){let p=this.tuning.preferHDR,f=r.video.some(S=>S.hdr),b=r.video.some(S=>!S.hdr);J.display.isHDR&&p&&f?r.video=r.video.filter(S=>S.hdr):b&&(r.video=r.video.filter(S=>!S.hdr))}}let a={...t,streams:r};return this.tracer.log("updateManifestEnd",(0,y.flattenObject)(a)),a}.bind(this));this.initRepresentations=(0,y.abortable)(this.destroyController.signal,async function*(e,t,i){var h;this.tracer.log("initRepresentationsStart",(0,y.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,y.assertNonNullable)(this.manifest),(0,y.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new y.Subscription,this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,y.fromEvent)(p,"error").pipe((0,y.filter)(f=>{var b;return!!((b=this.element)!=null&&b.played.length)})).subscribe(f=>{this.error$.next({id:"VideoSource",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:f})}))};this.source=this.tuning.useManagedMediaSource?Uo():new MediaSource;let a=document.createElement("source");if(r(a),a.src=URL.createObjectURL(this.source),this.element.appendChild(a),this.tuning.useManagedMediaSource&&zr())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,f)=>[...p,...f.representations],[]);if(this.videoBufferManager=new Un("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,y.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((f,b)=>[...f,...b.representations],[]);this.audioBufferManager=new Un("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}qn.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new qn(this.manifest.streams.text,n)),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$));let u=()=>{var p;(p=this.stallWatchdogSubscription)==null||p.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,y.merge)(...bB.map(p=>(0,y.fromEvent)(this.element,p))).pipe((0,y.map)(p=>this.element?Ye(this.element.buffered,this.element.currentTime*1e3):0),(0,y.filterChanged)(),(0,y.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,y.merge)((0,y.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,y.filterChanged)()).subscribe(f=>this.liveStreamEndTimestamp=(0,y.now)())),this.subscription.add((0,y.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,y.interval)(1e3).subscribe(f=>{let b=Hi(this.manifestUrlString,2);this.manifestUrlString=$e(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,y.fromEvent)(this.element,"play").subscribe(f=>{var b;return(b=this.livePauseWatchdogSubscription)==null?void 0:b.unsubscribe()})),this.representationSubscription.add((0,y.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,y.map)(({isActiveLive:f,isLowLatency:b})=>f&&b),(0,y.filterChanged)()).subscribe(f=>{this.isManualDecreasePlaybackInLive()||ss(this.element,1)})),this.representationSubscription.add((0,y.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,y.filter)(({bufferLength:f,isActiveLive:b,isLowLatency:S})=>b&&S&&!!f)).subscribe(({bufferLength:f})=>this.liveBuffer.next(f))),this.representationSubscription.add(this.videoBufferManager.currentLowLatencySegmentLength$.subscribe(f=>{if(!this.isActiveLive$.getValue()&&!this.isLowLatency$.getValue()&&!f)return;let b=this.liveSeekableDuration$.getValue()-f/1e3;this.liveSeekableDuration$.next(Math.max(b,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+f/1e3)})),this.representationSubscription.add((0,y.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,y.filter)(({isLive:f})=>f),(0,y.filterChanged)((f,b)=>b.bufferLength<f.bufferLength),(0,y.map)(({rtt:f,bufferLength:b,segmentServerLatency:S})=>{let v=Hi(this.manifestUrlString,2);return(f/2+b+S+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,y.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:f,isActiveLive:b,isLowLatency:S})=>{if(!S||!b)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,T=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,x=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,A=f-v;if(this.isManualDecreasePlaybackInLive())return;let w=1;Math.abs(A)>T&&(w=1+Math.sign(A)*x),ss(this.element,w)})),this.representationSubscription.add(this.bufferLength$.subscribe(f=>{var S,v;let b=0;if(f){let T=((v=(S=this.element)==null?void 0:S.currentTime)!=null?v:0)*1e3;b=Math.min(...this.bufferManagers.map(A=>{var w,M;return(M=(w=A.getLiveSegmentsToLoadState(this.manifest))==null?void 0:w.to)!=null?M:T}))-T}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let p=0;this.representationSubscription.add((0,y.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,y.throttle)(1e3)).subscribe(async({liveLoadBufferLength:f,bufferLength:b})=>{if(!this.element||this.isUpdatingLive)return;let S=this.element.playbackRate,v=Hi(this.manifestUrlString,2),T=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,x=Math.min(T,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*S),A=this.tuning.dashCmafLive.normalizedActualBufferOffset*S,w=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*S,M=isFinite(f)?f:b,H=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),N=T<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(N);let L="none";if(H?L="active_low_latency":this.isLowLatency$.getValue()&&N?(this.bufferManagers.forEach($=>$.proceedLowLatencyLive()),L="active_low_latency"):v!==0&&M<x?L="live_forward_buffering":M<x+w&&(L="live_with_target_offset"),isFinite(f)&&(p=f>p?f:p),L==="live_forward_buffering"||L==="live_with_target_offset"){let $=p-(x+A),q=this.normolizeLiveOffset(Math.trunc(v+$/S)),_=Math.abs(q-v),V=0;!f||_<=this.tuning.dashCmafLive.offsetCalculationError?V=v:q>0&&_>this.tuning.dashCmafLive.offsetCalculationError&&(V=q),this.manifestUrlString=$e(this.manifestUrlString,V,2)}(L==="live_with_target_offset"||L==="live_forward_buffering")&&(p=0,await this.updateLive())},f=>{this.error$.next({id:"updateLive",category:y.ErrorCategory.VIDEO_PIPELINE,thrown:f,message:"Failed to update live with subscription"})}))}let l=(0,y.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,y.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),d=(0,y.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,y.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),c=(0,y.combine)({allBuffersFull:l,someBufferEnded:d}).pipe((0,y.filterChanged)(),(0,y.map)(({allBuffersFull:p,someBufferEnded:f})=>p&&f),(0,y.filter)(p=>p));if(this.representationSubscription.add((0,y.merge)(this.forceEnded$,c).subscribe(()=>{var p;if(this.source&&this.source.readyState==="open"&&Array.from(this.source.sourceBuffers).every(f=>!f.updating))try{(p=this.source)==null||p.endOfStream()}catch(f){this.error$.next({id:"EndOfStream",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:f})}})),this.representationSubscription.add((0,y.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(f=>{var b;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var S;if(((S=this.source)==null?void 0:S.readyState)==="open"){f();return}this.error$.next({id:"OpenOfStream",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Failed to open MediaSource",thrown:new Error("Timeout reject when wait sourceopen event"),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),(b=this.source)==null||b.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),f()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(h=this.manifest.duration)!=null?h:0,...(0,Nd.default)((0,Nd.default)([...this.manifest.streams.audio,...this.manifest.streams.video],f=>f.representations),f=>{let b=[];return f.duration&&b.push(f.duration),pt(f.segmentReference)&&f.segmentReference.totalSegmentsDurationMs&&b.push(f.segmentReference.totalSegmentsDurationMs),b})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,y.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,y.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:y.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.fetcher=new Mu({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.liveBuffer=$i.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){var r,a,n;(0,y.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,y.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=$e(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await((r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video)),await((a=this.audioBufferManager)==null?void 0:a.seekLive(this.manifest.streams.audio)),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))}initBuffer(){(0,y.assertNonNullable)(this.element),this.state$.setState("running");let e=(0,y.fromEvent)(this.element,"timeupdate");this.tuning.dash.timeupdateEventTickThrottle&&(e=e.pipe((0,y.throttle)(this.tuning.dash.timeupdateEventTickThrottle))),this.subscription.add((0,y.merge)(...mB.map(t=>(0,y.fromEvent)(this.element,t)),(0,y.fromEvent)(window,"online"),e).subscribe(()=>this.tick(),t=>{this.error$.next({id:"DashVKPlayer",category:y.ErrorCategory.WTF,message:"Internal logic error",thrown:t})})),this.subscription.add((0,y.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,y.fromEvent)(this.element,"waiting").subscribe(()=>{var i;this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&tt(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let t=()=>{var f,b,S,v,T,x,A,w,M,H,N;if(!this.element||((f=this.source)==null?void 0:f.readyState)!=="open")return;let r=this.currentStallDuration$.getValue();r+=50,this.currentStallDuration$.next(r);let a={timeInWaiting:r},n=(0,y.now)(),o=100,u=(S=(b=this.videoBufferManager)==null?void 0:b.lastDataObtainedTimestamp)!=null?S:0;this.videoLastDataObtainedTimestamp$.next(u);let l=(T=(v=this.audioBufferManager)==null?void 0:v.lastDataObtainedTimestamp)!=null?T:0,d=(A=(x=this.videoBufferManager)==null?void 0:x.getForwardBufferDuration())!=null?A:0,c=(M=(w=this.audioBufferManager)==null?void 0:w.getForwardBufferDuration())!=null?M:0,h=d<o&&n-u>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&c<o&&n-l>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((h||p)&&r>this.tuning.dash.crashOnStallTWithoutDataTimeout||r>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${r} ms`);if(this.isLive$.getValue()&&r%2e3===0){let L=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(L).catch($=>{this.error$.next({id:"stallIntervalCallback",category:y.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:$})}),a.liveLastOffset=L}else{let L=this.element.currentTime*1e3;(H=this.videoBufferManager)==null||H.maintain(L),(N=this.audioBufferManager)==null||N.maintain(L),a.position=L}this.tracer.log("stallIntervalCallback",(0,y.flattenObject)(a))};(i=this.stallWatchdogSubscription)==null||i.unsubscribe(),this.stallWatchdogSubscription=(0,y.interval)(50).subscribe(t,r=>{this.error$.next({id:"StallWatchdogCallback",category:y.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:r})}),this.subscription.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,y.assertNonNullable)(this.element),(0,y.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),tt(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()]),!((0,y.isNullable)(this.element)||(0,y.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,y.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,y.isNonNullable)(this.element)&&(0,y.isNonNullable)(this.source)&&(0,y.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}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.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,y.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){var e,t;this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getBufferedTo();if(e===null)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i=this.isJumpGapAfterSeekLive,r=this.element.currentTime;this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let a=this.element.currentTime*1e3,n=null,o=this.element.readyState===HTMLMediaElement.HAVE_METADATA?this.tuning.endGapTolerance:0;for(let u of this.bufferManagers)for(let l of u.gaps)(l.persistent||u.playingRepresentation$.getValue()===l.representation)&&l.from-o<=a&&l.to+o>a&&(this.element.duration*1e3-l.to<this.tuning.endGapTolerance?n=1/0:(n===null||l.to>n)&&(n=l.to));if(n!==null){let u=n+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,u===1/0?this.forceEnded$.next():(this.element.currentTime=u/1e3,this.tracer.log("jumpGap",(0,y.flattenObject)({isJumpGapAfterSeekLive:i,isActiveLowLatency:t,initialCurrentTime:r,jumpTo:u,resultCurrentTime:this.element.currentTime})))}}};var vt=require("@vkontakte/videoplayer-shared/es2018"),$u=class{constructor(){this.subscription=new vt.Subscription;this.pipSize$=new vt.ValueSubject(void 0);this.videoSize$=new vt.ValueSubject(void 0);this.elementSize$=new vt.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=vt.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,vt.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,vt.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,vt.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 Er=class{constructor(e){this.subscription=new te.Subscription;this.videoState=new ue("stopped");this.observableVideo=null;this.droppedFramesManager=new Yr;this.stallsManager=new Tu;this.elementSizeManager=new $u;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new Gi;this.audioTrackSwitchHistory=new Gi;this.selectedRepresentations={audio:null,video:null};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.hostname$.next(void 0),this.videoState.setState("stopped"),O(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"),O(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(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 as(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 Vt(e.source.url),this.params=e,this.video=ht(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(et(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 Bu({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;(0,te.isNullable)(this.observableVideo)&&(this.observableVideo=bt(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)(c=>!!c.length),(0,te.once)()).subscribe(c=>{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:c})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,te.map)(c=>c.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$}),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.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.isLive$,e.isLive$),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)(c=>c.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(ai(this.video,t.isLooped,r)),this.subscription.add(mt(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(Ct(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),a(Ot(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),O(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:c})=>{if(c==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let h=this.player.getStreams();if((0,te.assertNonNullable)(h,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let f=[];for(let b of h.audio){f.push($d(b));let S=[];for(let v of b.representations){let T=jy(v);S.push(T),this.audioTracksMap.set(T,{stream:b,representation:v})}this.audioStreamsMap.set(b,S)}this.params.output.availableAudioStreams$.next(f)}let p=[];for(let f of h.video){p.push(Dd(f));let b=[];for(let S of f.representations){let v=qy({...S,streamId:f.id});v&&(b.push(v),this.videoTracksMap.set(v,{stream:f,representation:S}))}this.videoStreamsMap.set(f,b)}this.params.output.availableVideoStreams$.next(p);for(let f of h.text)for(let b of f.representations){let S=Hy(f,b);this.textTracksMap.set(S,{stream:f,representation:b})}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),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else c==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r));let{vktvAbrThrottle:o}=this.params.tuning.dash,u=o&&Gy(o)||null;this.subscription.add((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)).subscribe(async()=>{let c=this.player.state$.getState(),h=this.player.state$.getTransition();if(c!=="manifest_ready"&&c!=="running"||h||c==="running"&&u&&!u())return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:p,audio:f}=this.selectedRepresentations;if(!p)return;let b=xr(this.videoTracksMap.keys(),v=>{var T;return((T=this.videoTracksMap.get(v))==null?void 0:T.representation.id)===p.id});(0,te.isNonNullable)(b)&&(this.stallsManager.lastVideoTrackSelected=b);let S=this.params.desiredState.autoVideoTrackLimits.getTransition();if(S&&this.params.output.autoVideoTrackLimits$.next(S.to),c==="manifest_ready")await this.player.initRepresentations(p.id,f==null?void 0:f.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",p.id),f){let v=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",f.id,v)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:c})=>{this.scene3D&&c&&this.scene3D.pointCameraTo(c.x,c.y)})),this.subscription.add(this.elementSizeManager.subscribe(c=>{this.scene3D&&c&&this.scene3D.setViewportSize(c.width,c.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,te.filterChanged)()).subscribe(c=>{let h=xr(this.videoTracksMap.entries(),([,{representation:S}])=>S.id===c);if(!h){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:f}]=h,b=this.params.desiredState.videoStream.getTransition();b&&b.to&&b.to.id===f.id&&this.params.desiredState.videoStream.setState(b.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(Dd(f))},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,te.filterChanged)()).subscribe(c=>{let h=xr(this.audioTracksMap.entries(),([,{representation:S}])=>S.id===c);if(!h){e.currentAudioStream$.next(void 0);return}let[p,{stream:f}]=h,b=this.params.desiredState.audioStream.getTransition();b&&b.to&&b.to.id===f.id&&this.params.desiredState.audioStream.setState(b.to),e.currentAudioStream$.next($d(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(c=>{var h,p;if(c!=null&&c.is3dVideo&&((h=this.params.tuning.spherical)!=null&&h.enabled))try{this.init3DScene(c),e.is3DVideo$.next(!0)}catch(f){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${f}`})}else this.destroy3DScene(),(p=this.params.tuning.spherical)!=null&&p.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 l=t.playbackState.stateChangeStarted$.pipe((0,te.map)(({to:c})=>c==="ready"),(0,te.filterChanged)());this.subscription.add((0,te.merge)(l,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,te.observableFrom)(["init"])).subscribe(()=>{let c=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:c?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,te.merge)(l,this.player.state$.stateChangeEnded$,(0,te.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let d=(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(d.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var N,L,$,q,_,V,ne,K,B,Q,C,R;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?Ia:Ta,t=this.params.tuning.useNewAutoSelectVideoTrack?Xo:Ko,i=this.params.tuning.useNewAutoSelectVideoTrack?ni:Yo,{desiredState:r,output:a}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(N=r.videoTrack.getState())==null?void 0:N.id,u=xr(this.videoTracksMap.keys(),U=>U.id===o),l=a.currentVideoTrack$.getValue(),d=((q=($=r.videoStream.getState())!=null?$:u&&((L=this.videoTracksMap.get(u))==null?void 0:L.stream))!=null?q:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let c=xr(this.videoStreamsMap.keys(),U=>U.id===d.id),h=c&&this.videoStreamsMap.get(c);if(!h)return;let p=Ye(this.video.buffered,this.video.currentTime*1e3),f;this.player.isActiveLive$.getValue()?f=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?f=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:f=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(p/Math.min(f,b||1/0),1),v=(_=r.audioStream.getState())!=null?_:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,T=(v==null?void 0:v.id)&&xr(this.audioStreamsMap.keys(),U=>U.id===v.id)||this.audioStreamsMap.keys().next().value,x=0;if(T){if(u&&!n){let U=e(u,h,(V=this.audioStreamsMap.get(T))!=null?V:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,(ne=U==null?void 0:U.bitrate)!=null?ne:-1/0)}if(l){let U=e(l,h,(K=this.audioStreamsMap.get(T))!=null?K:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);x=Math.max(x,(B=U==null?void 0:U.bitrate)!=null?B:-1/0)}}let A=u;(n||!A)&&(A=i(h,{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:l,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 w=T&&t(A,h,(Q=this.audioStreamsMap.get(T))!=null?Q:[],{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}),M=(C=this.videoTracksMap.get(A))==null?void 0:C.representation,H=w&&((R=this.audioTracksMap.get(w))==null?void 0:R.representation);M&&H?(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=H):M&&!H&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=M,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){gt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(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),ft(this.video),this.tracer.end()}};var jn=class extends Er{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 ve=require("@vkontakte/videoplayer-shared/es2018");var Hn=class extends Er{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=-1,{output:t,observableVideo:i,desiredState:r,connect:a}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),a(i.timeUpdate$,t.liveBufferTime$),a(this.player.liveSeekableDuration$,t.duration$),a(this.player.liveLatency$,t.liveLatency$);let n=new ve.ValueSubject(1);a(i.playbackRateState$,n),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(r.isLowLatency.stateChangeEnded$.pipe((0,ve.map)(o=>o.to)).subscribe(this.player.isLowLatency$)).add((0,ve.combine)({liveBufferTime:t.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,ve.map)(({liveBufferTime:o,liveAvailabilityStartTime:u})=>o&&u?o+u:void 0)).subscribe(t.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,ve.filter)(o=>(0,ve.isNonNullable)(o))).subscribe(o=>t.isLiveEnded$.next(o!=="active"&&t.position$.getValue()===0))).add((0,ve.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,ve.merge)(i.playbackRateState$,new ve.ValueSubject(1))}).pipe((0,ve.filter)(({liveStreamStatus:o,liveDuration:u})=>o==="active"&&!!u)).subscribe(({liveDuration:o,playbackRate:u})=>{let l=t.liveBufferTime$.getValue(),d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;d||u<1-c||this.video.paused||(0,ve.isNullable)(l)||(e=o-l)})).add((0,ve.combine)({time:t.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,ve.merge)(i.playbackRateState$,new ve.ValueSubject(1))}).pipe((0,ve.filterChanged)((o,u)=>this.player.liveStreamStatus$.getValue()==="active"?o.liveDuration===u.liveDuration:o.time===u.time)).subscribe(({time:o,liveDuration:u,playbackRate:l})=>{let d=t.position$.getValue(),{playbackCatchupSpeedup:c}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&l>=1-c||(0,ve.isNullable)(o)||(0,ve.isNullable)(u))return;let h=-1*(u-o-e);t.position$.next(Math.min(h,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(o=>{if(o){let u=zy(o);this.params.output.availableTextTracks$.next([u])}}))}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 tT="X-Playback-Duration",Ud=async s=>{var r;let e=await _t(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(tT)?parseInt(e.headers.get(tT),10):void 0};var le=require("@vkontakte/videoplayer-shared/es2018");var jd=Y(Kl(),1);var Du=require("@vkontakte/videoplayer-shared/es2018");var SB=s=>{let e=null;if(s.QUALITY&&(e=Qi(s.QUALITY)),!e&&s.RESOLUTION){let[t,i]=s.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,Du.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},vB=(s,e)=>{var a,n;let t=s.split(`
186
- `),i=[],r=[];for(let o=0;o<t.length;o++){let u=t[o],l=u.match(/^#EXT-X-STREAM-INF:(.+)/),d=u.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!l&&!d)){if(l){let c=(0,jd.default)(l[1].split(",").map(T=>T.split("="))),h=(a=c.QUALITY)!=null?a:`stream-${c.BANDWIDTH}`,p=SB(c),f;c.BANDWIDTH&&(f=parseInt(c.BANDWIDTH,10)/1e3||void 0),!f&&c["AVERAGE-BANDWIDTH"]&&(f=parseInt(c["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let b=c["FRAME-RATE"]?parseFloat(c["FRAME-RATE"]):void 0,S;if(c.RESOLUTION){let[T,x]=c.RESOLUTION.split("x").map(A=>parseInt(A,10));T&&x&&(S={width:T,height:x})}let v=new URL(t[++o],e).toString();p&&i.push({id:h,quality:p,url:v,bandwidth:f,size:S,fps:b})}if(d){let c=(0,jd.default)(d[1].split(",").map(b=>{let S=b.indexOf("=");return[b.substring(0,S),b.substring(S+1)]}).map(([b,S])=>[b,S.replace(/^"|"$/g,"")])),h=(n=c.URI)==null?void 0:n.replace(/playlist$/,"subtitles.vtt"),p=c.LANGUAGE,f=c.NAME;h&&p&&r.push({type:"internal",id:p,label:f,language:p,url:h,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},yB=s=>new Promise(e=>{setTimeout(()=>{e()},s)}),qd=0,iT=async(s,e=s,t,i)=>{let a=await(await _t(s,i)).text();qd+=1;try{let{qualityManifests:n,textTracks:o}=vB(a,e);return{qualityManifests:n,textTracks:o}}catch(n){if(qd<=t.manifestRetryMaxCount)return await yB((0,Du.getExponentialDelay)(qd-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),iT(s,e,t)}return{qualityManifests:[],textTracks:[]}},Cu=iT;var $t=require("@vkontakte/videoplayer-shared/es2018");var Vu=class{constructor(e,t,i,r,a){this.subscription=new $t.Subscription;this.abortControllers={destroy:new be,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new $t.ValueSubject(null);this.getCurrentTime$=new $t.ValueSubject(null);this.error$=new $t.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:a},this.subscription.add(e.pipe((0,$t.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 _t(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(`
187
- `),a=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],l=new URL(u,t).toString(),d=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:a,to:a+d},url:l}),a=a+d,!i.segmentStartTime){let c=new Date(i.vkStartTime).valueOf(),h=new Date(i.programDateTime).valueOf();i.segmentStartTime=h-c}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 l=new Date(u);l.setMilliseconds(0),a=l.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,$t.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 be;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:$t.ErrorCategory.WTF,thrown:t,message:e})}};var zn=class{constructor(e){this.subscription=new le.Subscription;this.videoState=new ue("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new le.ValueSubject([]);this.liveOffset=new br;this.manifestStartTime$=new le.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.hostname$.next(void 0),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if((r==null?void 0:r.to)!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?O(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),O(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"&&O(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 d=this.liveOffset.getTotalOffset();d>=this.maxSeekBackTime$.getValue()&&(d=0,this.liveOffset.resetTo(d)),this.liveOffset.resume(),this.params.output.position$.next(-d/1e3),this.prepare()}else(r==null?void 0:r.to)==="paused"&&(O(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,le.assertNever)(t)}};var i;this.params=e,this.video=ht(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:le.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,a)=>Cu(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 Vu(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new Vt(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:le.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:le.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(et(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new le.ValueSubject((i=e.source.maxSeekBackTime)!=null?i:1/0),this.subscribe()}selectManifest(){var u,l,d,c;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(c=(d=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?d:(l=t.getState())==null?void 0:l.id)!=null?c:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":a;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(h=>h.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:le.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=bt(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.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(mt(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ct(this.video,t.playbackRate,r.playbackRateState$,i)),a(Ot(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"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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,le.filterChanged)(),(0,le.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(),l=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,le.isNonNullable)(l.to)){let c=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let h=this.manifests$.getValue().find(p=>p.id===c);h&&(this.params.output.currentVideoTrack$.next(h),this.params.output.hostname$.next(et(h.url)))}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.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,l,d;let o=(d=(l=(u=this.video)==null?void 0:u.getStartDate)==null?void 0:l.call(u))==null?void 0:d.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,le.combine)({startTime:this.manifestStartTime$.pipe((0,le.filter)(le.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,le.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:c,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,le.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,le.observableFrom)(["init"])).pipe((0,le.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),ft(this.video)}prepare(){var o,u,l;let e=this.selectManifest();if((0,le.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:d,min:c}=(u=(o=t==null?void 0:t.to)!=null?o:i)!=null?u:{};for(let[h,p]of[[d,"mq"],[c,"lq"]]){let f=String(parseFloat(h||""));p&&h&&r.searchParams.set(p,f)}}let a=this.params.format==="HLS_LIVE_CMAF"?2:0,n=$e(r.toString(),this.liveOffset.getTotalOffset(),a);(l=this.liveTextManager)==null||l.prepare(n),this.video.setAttribute("src",n),this.video.load(),Ud(n).then(d=>{var c;if(!(0,le.isNullable)(d))this.maxSeekBackTime$.next(d);else{let h=(c=this.params.source.maxSeekBackTime)!=null?c:this.maxSeekBackTime$.getValue();((0,le.isNullable)(h)||!isFinite(h))&&_t(n).then(p=>p.text()).then(p=>{var b;let f=(b=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(p))==null?void 0:b[1];if(f){let S=new URL(f,n).toString();Ud(S).then(v=>{(0,le.isNullable)(v)||this.maxSeekBackTime$.next(v)})}}).catch(()=>{})}})}playIfAllowed(){gt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:le.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=$e(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 fe=require("@vkontakte/videoplayer-shared/es2018");var Qn=class{constructor(e){this.subscription=new fe.Subscription;this.videoState=new ue("stopped");this.manifests$=new fe.ValueSubject([]);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.hostname$.next(void 0),this.videoState.setState("stopped"),O(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(a||n||o){let d=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(d);let{currentTime:c}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:c*1e3,forcePrecise:!0});return}switch((r==null?void 0:r.to)!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?O(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,fe.assertNever)(t)}};this.textTracksManager=new Vt(e.source.url),this.params=e,this.video=ht(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:fe.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(et(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),Cu($e(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.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:fe.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){var u,l,d,c;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),a=(c=(d=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?d:(l=t.getState())==null?void 0:l.id)!=null?c:"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(h=>h.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:fe.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=bt(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.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,fe.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(ai(this.video,t.isLooped,i)),this.subscription.add(mt(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ct(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(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 p;let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),d=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,fe.isNonNullable)(l.to)){let f=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let b=this.manifests$.getValue().find(S=>S.id===f);b&&(this.params.output.currentVideoTrack$.next(b),this.params.output.hostname$.next(et(b.url)))}let c=this.params.desiredState.playbackRate.getState(),h=(p=this.params.output.element$.getValue())==null?void 0:p.playbackRate;if(c!==h){let f=this.params.output.element$.getValue();f&&(this.params.desiredState.playbackRate.setState(c),f.playbackRate=c)}d&&this.params.desiredState.autoVideoTrackSwitching.setState(d.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"),O(t.playbackState,"paused")})),this.subscription.add(this.manifests$.pipe((0,fe.map)(o=>o.map(({id:u,quality:l,size:d,bandwidth:c,fps:h})=>({id:u,quality:l,size:d,fps:h,bitrate:c})))).subscribe(this.params.output.availableVideoTracks$,i)),!J.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,fe.merge)((0,fe.fromEvent)(o,"addtrack"),(0,fe.fromEvent)(o,"removetrack"),(0,fe.fromEvent)(o,"change"),(0,fe.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,fe.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,fe.observableFrom)(["init"])).pipe((0,fe.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),ft(this.video)}prepare(){var a,n;let e=this.selectManifest();if((0,fe.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[l,d]of[[o,"mq"],[u,"lq"]]){let c=String(parseFloat(l||""));d&&l&&r.searchParams.set(d,c)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){gt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:fe.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var rT=Y(lr(),1),Hd=Y(mr(),1),sT=Y(Xt(),1);var Ee=require("@vkontakte/videoplayer-shared/es2018");var Gn=class{constructor(e){this.subscription=new Ee.Subscription;this.videoState=new ue("stopped");this.trackUrls={};this.textTracksManager=new Vt;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.hostname$.next(void 0),this.videoState.setState("stopped"),O(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"?O(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,Ee.assertNever)(e)}};this.params=e,this.video=ht(e.container,e.tuning),this.params.output.element$.next(this.video),(0,rT.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,Hd.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=bt(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.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(ai(this.video,t.isLooped,i)),this.subscription.add(mt(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(Ct(this.video,t.playbackRate,r.playbackRateState$,i)),a(Ot(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),O(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),O(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var u,l;((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 d=this.params.desiredState.playbackRate.getState(),c=(l=this.params.output.element$.getValue())==null?void 0:l.playbackRate;if(d!==c){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(d),h.playbackRate=d)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.params.tuning.changePlaybackStateToPausedWhenEnded&&this.subscription.add(r.ended$.subscribe(()=>{this.videoState.setState("paused"),O(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),ft(this.video)}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=Ki(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(et(t))}playIfAllowed(){gt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(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 l,d;this.params.output.autoVideoTrackLimits$.next(e);let t=c=>{this.params.output.currentVideoTrack$.next(c),this.params.desiredState.videoTrack.startTransitionTo(c)},i=c=>{let h=ni(n,{container:this.video.getBoundingClientRect(),panelSize:this.params.panelSize,estimatedThroughput:this.params.dependencies.throughputEstimator.throughput$.getValue(),tuning:this.params.tuning.autoTrackSelection,forwardBufferHealth:0,limits:c,abrLogger:this.params.dependencies.abrLogger});t(h)},r=(l=this.params.output.currentVideoTrack$.getValue())==null?void 0:l.quality,a=!!(e.max||e.min),n=(0,Hd.default)(this.trackUrls).map(c=>c.track);if(!r||!a||Qr(e,n[0].quality,(d=(0,sT.default)(n,-1))==null?void 0:d.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 ke=require("@vkontakte/videoplayer-shared/es2018");var nT=require("@vkontakte/videoplayer-shared/es2018"),aT=["stun:videostun.mycdn.me:80"],TB=1e3,IB=3,zd=()=>null,Ou=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=zd;this.externalStopCallback=zd;this.externalErrorCallback=zd;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:aT}]};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:nT.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),TB)}normalizeOptions(e={}){let t={stunServerList:aT,maxRetryNumber:IB,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var Wn=class{constructor(e){this.videoState=new ue("stopped");this.maxSeekBackTime$=new ke.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.hostname$.next(void 0),this.videoState.setState("stopped"),O(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"),O(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"&&O(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&O(this.params.desiredState.playbackState,"paused");return;default:return(0,ke.assertNever)(e)}};this.subscription=new ke.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=ht(e.container,e.tuning),this.liveStreamClient=new Ou(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),ft(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:ke.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,ke.merge)(this.videoState.stateChangeStarted$.pipe((0,ke.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,ke.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=bt(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(Ot(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(mt(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,ke.assertNever)(n.to)}},i)).add((0,ke.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ke.observableFrom)(["init"])).pipe((0,ke.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(et(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:ke.VideoQuality.INVARIANT}),this.video.srcObject=e,O(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.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:ke.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){gt(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),O(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ke.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var Yn=class{constructor(e){this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next()}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}};var E=require("@vkontakte/videoplayer-shared/es2018");var Oi=require("@vkontakte/videoplayer-shared/es2018"),oT=s=>new Oi.Observable(e=>{let t=new Oi.Subscription,i=s.desiredPlaybackState$.stateChangeStarted$.pipe((0,Oi.map)(({from:l,to:d})=>`${l}-${d}`)),r=s.desiredPlaybackState$.stateChangeEnded$,a=s.providerChanged$.pipe((0,Oi.map)(({type:l})=>l!==void 0)),n=new Oi.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),s.maxTransitionInterval)})),t.add(r.subscribe(()=>{window.clearTimeout(o),u="unknown",o=0})),t.add(a.subscribe(l=>{o&&(window.clearTimeout(o),o=0,l&&(o=window.setTimeout(()=>n.next(u),s.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var Ft=require("@vkontakte/videoplayer-shared/es2018");function uT(){return new(window.AudioContext||window.webkitAudioContext)}var Kn=class Kn{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new be;this.subscriptions=new Ft.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,Ft.filter)(a=>!!a.type),(0,Ft.once)()).subscribe(({type:a})=>this.subscribe(a)))}subscribe(e){J.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,Ft.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,Ft.filter)(({playbackState:t,video:i,volume:{muted:r,volume:a}})=>t==="playing"&&!!i&&!r&&!!a),(0,Ft.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=uT();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:Kn.errorId,category:Ft.ErrorCategory.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${Kn.errorId} exception`,thrown:e})}};Kn.errorId="VolumeMultiplierManager";var us=Kn;var xB={chunkDuration:5e3,maxParallelRequests:5},Xn=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),availableAudioStreams$:new E.ValueSubject([]),currentAudioStream$:new E.ValueSubject(void 0),availableAudioTracks$: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),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,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),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),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=xy([...wy(this.params.tuning),...Ey(this.params.tuning)],this.params.tuning).filter(l=>(0,E.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,a=[];i?a=[i]:r.length?a=[...t.filter(l=>!(0,Qd.default)(r,l)),...t.filter(l=>(0,Qd.default)(r,l))]:a=t,this.log({message:`Selected formats: ${a.join(" > ")}`}),this.tracer.log("Selected formats",(0,E.flattenObject)(a)),this.screenFormatsIterator=new Yn(a);let n=[...Ed(!0),...Ed(!1)];this.chromecastFormatsIterator=new Yn(n.filter(l=>(0,E.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&us.isSupported()&&(this.volumeMultiplierManager=new us(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()),this.subscription.add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()}))}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()}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){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 u=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,E.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new jn({...o,source:u,sourceHls:l}):new dn({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new Hn({...o,source:u}):new pn({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Qn({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new zn({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Gn({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new MS({...o,source:u,config:{...xB,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,E.assertNonNullable)(u),new Wn({container:i,source:u,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=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,E.assertNonNullable)(o),new Sa({connection:o,meta:a,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}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,cT.default)((0,lT.default)(e).map(([r,a])=>[r,i(a)]))}initProviderErrorHandling(){let e=new E.Subscription,t=!1,i=0;return e.add((0,E.merge)(this.providerOutput.error$.pipe((0,E.filter)(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),oT({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,E.map)(r=>({id:`ProviderHangup:${r}`,category:E.ErrorCategory.WTF,message:`A ${r} 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 r=this.params.desiredState.playbackState.transitionEnded$.pipe((0,E.filter)(({to:a})=>a==="playing"),(0,E.once)()).subscribe(()=>t=!0);e.add(r)})),e.add(this.providerError$.subscribe(r=>{let a=this.current$.getValue().destination,n={error:r,currentDestination:a};if(a==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=r.category===E.ErrorCategory.NETWORK,u=r.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&&!u,c=l&&!u&&(o&&t||!d);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:c,canReinitProvider:d},d?(i++,this.reinitProvider()):c?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(a!=null?a:"SCREEN"))}r.traceAsLog?this.tracer.log("providerInfo",(0,E.flattenObject)(n)):this.tracer.error("providerError",(0,E.flattenObject)(n))})),e}};var ie=require("@vkontakte/videoplayer-shared/es2018");var EB=5e3,dT="one_video_throughput",pT="one_video_rtt",_i=window.navigator.connection,hT=()=>{let s=_i==null?void 0:_i.downlink;if((0,ie.isNonNullable)(s)&&s!==10)return s*1e3},fT=()=>{let s=_i==null?void 0:_i.rtt;if((0,ie.isNonNullable)(s)&&s!==3e3)return s},mT=(s,e,t)=>{let i=t*8,r=i/s;return i/(r+e)},Gd=class s{constructor(e){this.subscription=new ie.Subscription;this.concurrentDownloads=new Set;var r,a;this.tuningConfig=e;let t=s.load(dT)||(e.useBrowserEstimation?hT():void 0)||EB,i=(a=(r=s.load(pT))!=null?r:e.useBrowserEstimation?fT():void 0)!=null?a:0;if(this.throughput$=new ie.ValueSubject(t),this.rtt$=new ie.ValueSubject(i),this.rttAdjustedThroughput$=new ie.ValueSubject(mT(t,i,e.rttPenaltyRequestSize)),this.throughput=$i.getSmoothedValue(t,-1,e),this.rtt=$i.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let u=hT();u&&this.throughput.next(u);let l=fT();(0,ie.isNonNullable)(l)&&this.rtt.next(l)};_i&&"onchange"in _i&&this.subscription.add((0,ie.fromEvent)(_i,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{ie.safeStorage.set(dT,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{ie.safeStorage.set(pT,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,ie.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,ie.map)(({throughput:n,rtt:o})=>mT(n,o,e.rttPenaltyRequestSize)),(0,ie.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,ie.now)(),r=new ie.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,ie.fromEvent)(e,"progress").pipe((0,ie.once)()).subscribe(a=>{t=a.loaded,i=(0,ie.now)()}));break;case 1:case 0:r.add((0,ie.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,ie.now)()}));break}r.add((0,ie.fromEvent)(e,"loadend").subscribe(a=>{if(e.status===200){let n=a.loaded,o=(0,ie.now)(),u=n-t,l=o-i;this.addRawSpeed(u,l,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,ie.now)(),n=0,o=(0,ie.now)(),u=d=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${d}`).catch(()=>{})},l=async({done:d,value:c})=>{if(d)!t&&this.addRawSpeed(r,(0,ie.now)()-a,1),this.concurrentDownloads.delete(e);else if(c){if(t){let h=(0,ie.now)();if(h-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||h-a>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let f=o-a;f&&this.addRawSpeed(n,f,1,t),n=c.byteLength,a=(0,ie.now)()}else n+=c.byteLength;o=(0,ie.now)()}else r+=c.byteLength,n+=c.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,ie.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,ie.now)()-o,this.concurrentDownloads.size),n=0,o=(0,ie.now)());await(i==null?void 0:i.read().then(l,u))}};this.concurrentDownloads.add(e),i==null||i.read().then(l,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=ie.safeStorage.get(e);if((0,ie.isNonNullable)(t))return(i=parseInt(t,10))!=null?i:void 0}},bT=Gd;var wr=require("@vkontakte/videoplayer-shared/es2018"),gT={configName:["core"],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:wr.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:wr.VideoQuality.Q_720P,trafficSavingLimit:wr.VideoQuality.Q_480P},stallsManager:{enabled:!1,stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!0,stallsMetricsHistoryLength:5,maxPossibleStallDuration:3e4,minTvtToBeCounted:5,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:wr.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,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,vktvAbrThrottle:0,timeupdateEventTickThrottle:300},dashCmafLive:{maxActiveLiveOffset:1e4,normalizedTargetMinBufferSize:6e4,normalizedLiveMinBufferSize:5e3,normalizedActualBufferOffset:1e4,offsetCalculationError:3e3,maxLiveDuration:7200,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",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",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,useManagedMediaSource:!0,useNewSwitchTo:!1,useNewDashProvider:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,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,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1,changePlaybackStateToPausedWhenEnded:!1},ST=s=>{var e;return{...(0,wr.fillWithDefault)(s,gT),configName:[...(e=s.configName)!=null?e:[],...gT.configName]}};var m=require("@vkontakte/videoplayer-shared/es2018");var Fi=require("@vkontakte/videoplayer-shared/es2018"),Wd=({seekState:s,position$:e})=>(0,Fi.merge)(s.stateChangeEnded$.pipe((0,Fi.map)(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),(0,Fi.filter)(Fi.isNonNullable)),e.pipe((0,Fi.filter)(()=>s.getState().state==="none")));var vT=require("@vkontakte/videoplayer-shared/es2018"),yT=s=>{let e=typeof s.container=="string"?document.getElementById(s.container):s.container;return(0,vT.assertNonNullable)(e,`Wrong container or containerId {${s.container}}`),e};var _u=require("@vkontakte/videoplayer-shared/es2018"),TT=(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,_u.filter)(r=>r.length>0),(0,_u.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(s)}):(s===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(s)};var Jn=class{constructor(e={configName:[]},t=m.TracerFactory.createRootTracer(!1)){this.subscription=new m.Subscription;this.logger=new m.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new m.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new m.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new ue("stopped"),seekState:new ue({state:"none"}),volume:new ue({volume:1,muted:!1}),videoTrack:new ue(void 0),videoStream:new ue(void 0),audioStream:new ue(void 0),autoVideoTrackSwitching:new ue(!0),autoVideoTrackLimits:new ue({}),isLooped:new ue(!1),isLowLatency:new ue(!1),playbackRate:new ue(1),externalTextTracks:new ue([]),internalTextTracks:new ue([]),currentTextTrack:new ue(void 0),textTrackCuesSettings:new ue({}),cameraOrientation:new ue({x:0,y:0})};this.info={playbackState$:new m.ValueSubject(void 0),position$:new m.ValueSubject(0),duration$:new m.ValueSubject(1/0),muted$:new m.ValueSubject(!1),volume$:new m.ValueSubject(1),availableVideoStreams$:new m.ValueSubject([]),currentVideoStream$:new m.ValueSubject(void 0),availableQualities$:new m.ValueSubject([]),availableQualitiesFps$:new m.ValueSubject({}),currentQuality$:new m.ValueSubject(void 0),isAutoQualityEnabled$:new m.ValueSubject(!0),autoQualityLimitingAvailable$:new m.ValueSubject(!1),autoQualityLimits$:new m.ValueSubject({}),predefinedQualityLimitType$:new m.ValueSubject("unknown"),availableAudioStreams$:new m.ValueSubject([]),currentAudioStream$:new m.ValueSubject(void 0),availableAudioTracks$:new m.ValueSubject([]),isAudioAvailable$:new m.ValueSubject(!0),currentPlaybackRate$:new m.ValueSubject(1),currentBuffer$:new m.ValueSubject({start:0,end:0}),isBuffering$:new m.ValueSubject(!0),isStalled$:new m.ValueSubject(!1),isEnded$:new m.ValueSubject(!1),isLooped$:new m.ValueSubject(!1),isLive$:new m.ValueSubject(void 0),isLiveEnded$:new m.ValueSubject(null),canChangePlaybackSpeed$:new m.ValueSubject(void 0),atLiveEdge$:new m.ValueSubject(void 0),atLiveDurationEdge$:new m.ValueSubject(void 0),liveTime$:new m.ValueSubject(void 0),liveBufferTime$:new m.ValueSubject(void 0),liveLatency$:new m.ValueSubject(void 0),currentFormat$:new m.ValueSubject(void 0),availableTextTracks$:new m.ValueSubject([]),currentTextTrack$:new m.ValueSubject(void 0),throughputEstimation$:new m.ValueSubject(void 0),rttEstimation$:new m.ValueSubject(void 0),videoBitrate$:new m.ValueSubject(void 0),hostname$:new m.ValueSubject(void 0),httpConnectionType$:new m.ValueSubject(void 0),httpConnectionReused$:new m.ValueSubject(void 0),surface$:new m.ValueSubject("none"),chromecastState$:new m.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new m.ValueSubject(void 0),intrinsicVideoSize$:new m.ValueSubject(void 0),availableSources$:new m.ValueSubject(void 0),is3DVideo$:new m.ValueSubject(!1),currentVideoSegmentLength$:new m.ValueSubject(0),currentAudioSegmentLength$:new m.ValueSubject(0)};this.events={inited$:new m.Subject,ready$:new m.Subject,started$:new m.Subject,playing$:new m.Subject,paused$:new m.Subject,stopped$:new m.Subject,willReady$:new m.Subject,willStart$:new m.Subject,willResume$:new m.Subject,willPause$:new m.Subject,willStop$:new m.Subject,willDestruct$:new m.Subject,watchCoverageRecord$:new m.Subject,watchCoverageLive$:new m.Subject,managedError$:new m.Subject,fatalError$:new m.Subject,fetcherRecoverableError$:new m.Subject,ended$:new m.Subject,looped$:new m.Subject,seeked$:new m.Subject,willSeek$:new m.Subject,autoplaySoundProhibited$:new m.Subject,firstBytes$:new m.Subject,loadedMetadata$:new m.Subject,firstFrame$:new m.Subject,canplay$:new m.Subject,log$:new m.Subject,fetcherError$:new m.Subject,severeStallOccured$:new m.Subject};this.experimental={element$:new m.ValueSubject(void 0),tuningConfigName$:new m.ValueSubject([]),enableDebugTelemetry$:new m.ValueSubject(!1),dumpTelemetry:hS,getCurrentTime$:new m.ValueSubject(null)};if(this.initLogs(),this.tuning=ST(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new no({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new bT(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new m.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,a)=>{let n=Reflect.get(i,r,a);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(h=>JSON.stringify(h,(p,f)=>{let b=typeof f;return(0,IT.default)(["number","string","boolean"],b)?f:f===null?null:`<${b}>`})),d=`Player.${String(r)}`,c=`Exception calling ${d} (${l.join(", ")})`;throw this.events.fatalError$.next({id:d,category:m.ErrorCategory.WTF,message:c,thrown:u}),u}}}})}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,l,d;let{container:n,...o}=e;this.tracer.log("initVideo",(0,m.flattenObject)(o)),this.domContainer=yT(e),this.chromecastInitializer.contentId=(u=e.meta)==null?void 0:u.videoId,this.providerContainer=new Xn({sources:e.sources,meta:(l=e.meta)!=null?l:{},failoverHosts:(d=e.failoverHosts)!=null?d:[],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)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?J.isInited$.pipe((0,m.filter)(n=>!!n),(0,m.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,m.fromEvent)(document,"visibilitychange").pipe((0,m.once)()).subscribe(r)):r(),this}destroy(){var e,t;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()}prepare(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{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.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e,t=!1){return this.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{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.setMuted(r):i.startTransitionTo({volume:n,muted:r})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{(0,m.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,m.filter)(i=>i.length>0),(0,m.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)})),this}setAutoQuality(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,m.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var i;(0,m.assertNonNullable)(this.providerContainer);let t=(i=this.providerContainer)==null?void 0:i.providerOutput.element$.getValue();this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,m.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var t;TT(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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(e=>e),(0,m.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,m.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,m.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,m.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,m.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(Qc(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,m.filter)(({from:e})=>e==="stopped"),(0,m.once)()).subscribe(()=>{this.initedAt=(0,m.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,m.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:m.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,m.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,m.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,m.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,m.map)(n=>n.destination),(0,m.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,m.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,m.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,m.isInvariantQuality)(u)?1:(0,m.isInvariantQuality)(l)?-1:(0,m.isHigher)(l,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,m.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,m.filter)(n=>(0,m.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,m.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,m.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,m.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,m.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,m.filterChanged)()).subscribe(this.info.httpConnectionReused$)).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,m.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).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,m.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,m.combine)({hasLiveOffsetByPaused:(0,m.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,m.map)(n=>n.to),(0,m.filterChanged)(),(0,m.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,m.combine)({atLiveEdge:(0,m.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:Wd({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,m.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,m.filterChanged)(),(0,m.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,m.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,m.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,m.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,m.filterChanged)(),(0,m.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,m.map)(n=>n.muted),(0,m.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,m.map)(n=>n.volume),(0,m.filterChanged)()).subscribe(this.info.volume$)).add(Wd({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,m.merge)(e.providerOutput.endedEvent$.pipe((0,m.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,m.mapTo)(!1))).pipe((0,m.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,m.map)(n=>({id:n?`No${n}`:"NoProviders",category:m.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.firstBytesEvent$.pipe((0,m.once)(),(0,m.map)(n=>n!=null?n:(0,m.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,m.once)(),(0,m.map)(()=>(0,m.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,m.once)(),(0,m.map)(()=>(0,m.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 m.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new m.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,m.filter)(({to:n})=>n==="playing"),(0,m.once)()).subscribe(()=>i.next(!1)));let r=0,a=(0,m.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,m.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,m.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,m.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,l;let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:(u=n==null?void 0:n.size)==null?void 0:u.width,height:(l=n==null?void 0:n.size)==null?void 0:l.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,m.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(),l=e.providerOutput.elementVisible$.getValue(),d=this.chromecastInitializer.castState$.getValue(),c;d==="CONNECTED"?c="second_screen":u?l?n?c="pip":o?c="fullscreen":c="inline":c="invisible":c="none",this.info.surface$.getValue()!==c&&this.info.surface$.next(c)}))}initChromecastSubscription(){this.subscription.add(this.chromecastInitializer.castState$.subscribe(this.info.chromecastState$)),this.subscription.add(this.chromecastInitializer.connection$.pipe((0,m.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 m.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,m.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,m.filter)(i=>i.length>0),(0,m.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=ni(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,m.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,m.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,m.assertNonNullable)(this.providerContainer),(0,m.assertNonNullable)(e),pS(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>dS(i)),this.providerContainer.current$.subscribe(({type:i})=>ya("provider",i)),e.duration$.subscribe(i=>ya("duration",i)),e.availableVideoTracks$.pipe((0,m.filter)(i=>!!i.length),(0,m.once)()).subscribe(i=>ya("tracks",i)),this.events.fatalError$.subscribe(new lt("fatalError")),this.events.managedError$.subscribe(new lt("managedError")),e.position$.subscribe(new lt("position")),e.currentVideoTrack$.pipe((0,m.map)(i=>i==null?void 0:i.quality)).subscribe(new lt("quality")),this.info.currentBuffer$.subscribe(new lt("buffer")),e.isBuffering$.subscribe(new lt("isBuffering"))].forEach(i=>this.subscription.add(i)),ya("codecs",J.video.supportedCodecs)}initTracerSubscription(){let e=(0,m.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,m.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,m.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,m.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,m.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,m.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,m.filter)(i=>i>0),(0,m.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,m.filter)(i=>i>0),(0,m.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,m.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,m.filter)(i=>i.end>0),(0,m.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,m.filterChanged)())}).pipe((0,m.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,m.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,m.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,m.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,m.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,m.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,m.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,m.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,m.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,m.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,m.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,m.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,m.filterChanged)(),(0,m.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:m.ErrorCategory.DOM,message:String(r)})})};this.subscription.add((0,m.merge)((0,m.fromEvent)(document,"visibilitychange"),(0,m.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,m.flattenObject)({quality:t,availableTracks:(0,m.flattenObject)(e),track:(0,m.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&&!Aa()}};var li=require("@vkontakte/videoplayer-shared/es2018"),wB=`@vkontakte/videoplayer-core@${Qu}`;
178
+ `;var kr=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 Wn(this.params.fov,this.params.orientation),this.cameraRotationManager=new zn(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"),s=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(s,-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(Uv,this.gl.VERTEX_SHADER),i=this.createShader(qv,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,s=e-i,n=t-r,o=e+i,u=t-r,l=e+i,c=t+r,d=e-i,f=t+r;return[s,n,o,u,l,c,d,f]}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 ge=require("@vkontakte/videoplayer-shared/es2018");var Yn="stalls_manager_metrics",Xl="stalls_manager_abr_params",Hv="stalls_manager_default_tuning_abr_params",Jl=class{constructor(){this.isSeeked$=new ge.ValueSubject(!1);this.isBuffering$=new ge.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 ge.Subscription;this.severeStallOccurred$=new ge.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.resetStoredAbrParamsIfNeeded(),this.subscribe(e)}get videoMaxQualityLimit(){return this.maxQualityLimit}get predictedThroughput(){return this.predictedThroughputWithoutData}get abrTuningParams(){let e=this.tuning.enabled?this.getStoredData(Xl):{};return{...this.abrParams,...e}}set lastVideoTrackSelected(e){var t;((t=this.lastUniqueVideoTrackSelected)==null?void 0:t.id)!==e.id&&(this.lastUniqueVideoTrackSelected=e,this.lastUniqueVideoTrackSelectedTimestamp=(0,ge.now)(),this.currentStallsCount=0)}destroy(){window.clearTimeout(this.qualityRestrictionTimer),this.subscription.unsubscribe(),this.currentStallDuration$.getValue()!==0&&this.updateStallData();let e=((0,ge.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(Hv)},{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:s,containerSizeFactor:n}={...this.abrParams};this.tuning.enabled&&e===r&&t===s&&i===n||(this.removeStoredData(Xl),this.setStoredData(Hv,{bitrateFactorAtEmptyBuffer:r,bitrateFactorAtFullBuffer:s,containerSizeFactor:n}))}updateStoredAbrParams(){let e=[],t=this.getStoredData(Yn,"[]");if(!this.tuning.enabled||t.length<this.tuning.stallsMetricsHistoryLength)return;let i=t.reduce((s,n)=>s+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 s=t.reduce((n,o)=>n+o.stallsDurationPerTvt,0)/t.length;e.push(this.calculateOptimalAbrParams(s,i))}this.tuning.useEmaStallsDurationPerTvt&&e.push(this.calculateOptimalAbrParams(t[t.length-1].stallsDurationPerTvtSmoothed,i));let r={bitrateFactorAtEmptyBuffer:Math.max(...e.map(s=>s.bitrateFactorAtEmptyBuffer)),bitrateFactorAtFullBuffer:Math.max(...e.map(s=>s.bitrateFactorAtFullBuffer)),containerSizeFactor:Math.min(...e.map(s=>s.containerSizeFactor))};this.setStoredData(Yn,[]),this.setStoredData(Xl,r)}calculateOptimalAbrParams(e,t){let{targetStallsDurationPerTvt:i,deviationStallsDurationPerTvt:r,criticalStallsDurationPerTvt:s,abrAdjustingSpeed:n,significantTvt:o,stallsMetricsHistoryLength:u}=this.tuning,l=n*Math.min(t/(o*u),1),c=this.abrTuningParams;return e<i-r?c={bitrateFactorAtEmptyBuffer:Math.max(c.bitrateFactorAtEmptyBuffer-l,this.abrParams.minBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.max(c.bitrateFactorAtFullBuffer-l,this.abrParams.minBitrateFactorAtFullBuffer),containerSizeFactor:Math.min(c.containerSizeFactor+l,this.abrParams.maxContainerSizeFactor)}:e>i+r&&(c={bitrateFactorAtEmptyBuffer:Math.min(c.bitrateFactorAtEmptyBuffer+l,this.abrParams.maxBitrateFactorAtEmptyBuffer),bitrateFactorAtFullBuffer:Math.min(c.bitrateFactorAtFullBuffer+l,this.abrParams.maxBitrateFactorAtFullBuffer),containerSizeFactor:Math.max(c.containerSizeFactor-l,this.abrParams.minContainerSizeFactor)}),e>s&&(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=ge.safeStorage.get(e))!=null?i:t)}setStoredData(e,t){ge.safeStorage.set(e,JSON.stringify(t))}removeStoredData(e){ge.safeStorage.remove(e)}addStallInfoToHistory(e,t){if(e<this.tuning.minTvtToBeCounted||e>this.tuning.maxTvtToBeCounted||e*1e3<t)return;let i=this.getStoredData(Yn,"[]"),r=t/e,s=i.length?Qt(i[i.length-1].stallsDurationPerTvtSmoothed,t/e,this.tuning.emaAlpha):r,n={tvt:e,stallsDuration:t,stallsDurationPerTvt:r,stallsDurationPerTvtSmoothed:s};i.push(n),i.length>this.tuning.stallsMetricsHistoryLength&&i.shift(),this.setStoredData(Yn,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,ge.once)()).subscribe(t=>this.providerStartWatchingTimestamp=(0,ge.now)())),this.subscription.add(this.currentStallDuration$.pipe((0,ge.filterChanged)()).subscribe(t=>{let{stallDurationNoDataBeforeQualityDecrease:i,stallCountBeforeQualityDecrease:r,resetQualityRestrictionTimeout:s,ignoreStallsOnSeek:n}=this.tuning;if((0,ge.isNullable)(this.lastUniqueVideoTrackSelected)||n&&this.isSeeked$.getValue())return;let o=this.rtt$.getValue(),u=this.throughput$.getValue(),l=this.videoLastDataObtainedTimestamp$.getValue(),c=(0,ge.now)(),d=r&&this.currentStallsCount>=r,f=i&&c-this.lastUniqueVideoTrackSelectedTimestamp>=i+o&&c-l>=i+o&&t>=i;(d||f)&&(this.severeStallOccurred$.next(!0),window.clearTimeout(this.qualityRestrictionTimer),this.maxQualityLimit=this.lastUniqueVideoTrackSelected.quality,(0,ge.isNonNullable)(this.lastUniqueVideoTrackSelected.bitrate)&&u>this.lastUniqueVideoTrackSelected.bitrate&&(this.predictedThroughputWithoutData=this.lastUniqueVideoTrackSelected.bitrate)),!t&&(0,ge.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},s)),this.lastStallDuration=t}))}},Kn=Jl;var ze=require("@vkontakte/videoplayer-shared/es2018"),Xn=class{constructor(){this.subscription=new ze.Subscription;this.pipSize$=new ze.ValueSubject(void 0);this.videoSize$=new ze.ValueSubject(void 0);this.elementSize$=new ze.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=ze.noop}connect({observableVideo:e,video:t}){let i=r=>{let s=r.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add((0,ze.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,ze.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,ze.map)(({videoSize:r,inPip:s,pipSize:n})=>s?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 Oi=class{constructor(e){this.subscription=new X.Subscription;this.videoState=new re("stopped");this.observableVideo=null;this.droppedFramesManager=new vr;this.stallsManager=new Kn;this.elementSizeManager=new Xn;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new li;this.audioTrackSwitchHistory=new li;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.hostname$.next(void 0),this.videoState.setState("stopped"),F(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"),F(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&F(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"&&F(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&F(this.params.desiredState.playbackState,"paused");return;default:return(0,X.assertNever)(e)}}};this.init3DScene=e=>{var i,r,s;if(this.scene3D)return;this.scene3D=new kr(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:((s=e.projectionData)==null?void 0:s.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 lt(e.source.url),this.params=e,this.video=He(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(Ve(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 Gn({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;(0,X.isNullable)(this.observableVideo)&&(this.observableVideo=Ge(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:X.ErrorCategory.WTF,message:`${i} internal logic error`,thrown:n})},s=(n,o)=>this.subscription.add(n.subscribe(o,r));return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:s}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,X.filter)(l=>!!l.length),(0,X.once)()).subscribe(l=>{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:l})}));let n=this.params.desiredState.seekState.stateChangeEnded$.pipe((0,X.map)(l=>l.to.state!=="none"),(0,X.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$}),s(i.ended$,e.endedEvent$),s(i.looped$,e.loopedEvent$),s(i.error$,e.error$),s(i.isBuffering$,e.isBuffering$),s(i.currentBuffer$,e.currentBuffer$),s(i.playing$,e.firstFrameEvent$),s(i.canplay$,e.canplay$),s(i.inPiP$,e.inPiP$),s(i.inFullscreen$,e.inFullscreen$),s(i.loadedMetadata$,e.loadedMetadataEvent$),s(this.player.error$,e.error$),s(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),s(this.player.fetcherError$,e.fetcherError$),s(this.player.lastConnectionType$,e.httpConnectionType$),s(this.player.lastConnectionReused$,e.httpConnectionReused$),s(this.player.isLive$,e.isLive$),s(this.player.lastRequestFirstBytes$.pipe((0,X.filter)(X.isNonNullable),(0,X.once)()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe((0,X.map)(l=>l.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(kt(this.video,t.isLooped,r)),this.subscription.add(Qe(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(ut(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(ct(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),F(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),F(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),this.subscription.add(this.player.state$.stateChangeEnded$.subscribe(({to:l})=>{if(l==="manifest_ready"){this.videoTracksMap=new Map,this.audioTracksMap=new Map,this.textTracksMap=new Map;let c=this.player.getStreams();if((0,X.assertNonNullable)(c,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let f=[];for(let p of c.audio){f.push(Hl(p));let h=[];for(let b of p.representations){let g=$v(b);h.push(g),this.audioTracksMap.set(g,{stream:p,representation:b})}this.audioStreamsMap.set(p,h)}this.params.output.availableAudioStreams$.next(f)}let d=[];for(let f of c.video){d.push(jl(f));let p=[];for(let h of f.representations){let b=Lv({...h,streamId:f.id});b&&(p.push(b),this.videoTracksMap.set(b,{stream:f,representation:h}))}this.videoStreamsMap.set(f,p)}this.params.output.availableVideoStreams$.next(d);for(let f of c.text)for(let p of f.representations){let h=Mv(f,p);this.textTracksMap.set(h,{stream:f,representation:p})}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),this.audioTracksMap.size&&this.textTracksMap.size&&this.params.desiredState.internalTextTracks.startTransitionTo(Array.from(this.textTracksMap.keys()))}else l==="representations_ready"&&(this.videoState.setState("ready"),this.player.initBuffer())},r)),this.subscription.add((0,X.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,X.fromEvent)(this.video,"progress")).pipe((0,X.filter)(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let l=this.player.state$.getState(),c=this.player.state$.getTransition();if(!(0,jv.default)(["manifest_ready","running"],l)||c)return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState());let d=this.selectVideoAudioRepresentations();if(!d)return;let[f,p]=d,h=[...this.videoTracksMap.keys()].find(g=>{var v;return((v=this.videoTracksMap.get(g))==null?void 0:v.representation.id)===f.id});(0,X.isNonNullable)(h)&&(this.stallsManager.lastVideoTrackSelected=h);let b=this.params.desiredState.autoVideoTrackLimits.getTransition();if(b&&this.params.output.autoVideoTrackLimits$.next(b.to),l==="manifest_ready")await this.player.initRepresentations(f.id,p==null?void 0:p.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",f.id),p){let g=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",p.id,g)}},r)),this.subscription.add(t.cameraOrientation.stateChangeEnded$.subscribe(({to:l})=>{this.scene3D&&l&&this.scene3D.pointCameraTo(l.x,l.y)})),this.subscription.add(this.elementSizeManager.subscribe(l=>{this.scene3D&&l&&this.scene3D.setViewportSize(l.width,l.height)})),this.subscription.add(this.player.currentVideoRepresentation$.pipe((0,X.filterChanged)()).subscribe(l=>{let c=[...this.videoTracksMap.entries()].find(([,{representation:b}])=>b.id===l);if(!c){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[d,{stream:f}]=c,p=this.params.desiredState.videoStream.getTransition();p&&p.to&&p.to.id===f.id&&this.params.desiredState.videoStream.setState(p.to),e.currentVideoTrack$.next(d),e.currentVideoStream$.next(jl(f));let h=this.player.calculateDurationFromSegments();h&&this.params.output.duration$.next(h/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,X.filterChanged)()).subscribe(l=>{let c=[...this.audioTracksMap.entries()].find(([,{representation:h}])=>h.id===l);if(!c){e.currentAudioStream$.next(void 0);return}let[d,{stream:f}]=c,p=this.params.desiredState.audioStream.getTransition();p&&p.to&&p.to.id===f.id&&this.params.desiredState.audioStream.setState(p.to),e.currentAudioStream$.next(Hl(f))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(l=>{var c,d;if(l!=null&&l.is3dVideo&&((c=this.params.tuning.spherical)!=null&&c.enabled))try{this.init3DScene(l),e.is3DVideo$.next(!0)}catch(f){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${f}`})}else this.destroy3DScene(),(d=this.params.tuning.spherical)!=null&&d.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 o=t.playbackState.stateChangeStarted$.pipe((0,X.map)(({to:l})=>l==="ready"),(0,X.filterChanged)());this.subscription.add((0,X.merge)(o,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,X.observableFrom)(["init"])).subscribe(()=>{let l=t.autoVideoTrackSwitching.getState(),d=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:l?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(d)})),this.subscription.add((0,X.merge)(o,this.player.state$.stateChangeEnded$,(0,X.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let u=(0,X.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,X.observableFrom)(["init"])).pipe((0,X.debounce)(0));this.subscription.add(u.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var V,H,U,G,ue,le,w,_,$,M,q,Te,Ke;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?fa:ha,t=this.params.tuning.useNewAutoSelectVideoTrack?wn:xn,i=this.params.tuning.useNewAutoSelectVideoTrack?Lt:En,{desiredState:r,output:s}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(V=r.videoTrack.getState())==null?void 0:V.id,l=[...this.videoTracksMap.keys()].find(({id:me})=>me===o),c=s.currentVideoTrack$.getValue(),d=((G=(U=r.videoStream.getState())!=null?U:l&&((H=this.videoTracksMap.get(l))==null?void 0:H.stream))!=null?G:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!d)return;let f=[...this.videoStreamsMap.keys()].find(({id:me})=>me===d.id),p=f&&this.videoStreamsMap.get(f);if(!p)return;let h=$e(this.video.buffered,this.video.currentTime*1e3),b;this.player.isActiveLive$.getValue()?b=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?b=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:b=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let g=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,v=Math.min(h/Math.min(b,g||1/0),1),E=(ue=r.audioStream.getState())!=null?ue:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,I=(le=[...this.audioStreamsMap.keys()].find(({id:me})=>me===(E==null?void 0:E.id)))!=null?le:this.audioStreamsMap.keys().next().value,A=0;if(I){if(l&&!n){let me=e(l,p,(w=this.audioStreamsMap.get(I))!=null?w:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);A=Math.max(A,(_=me==null?void 0:me.bitrate)!=null?_:-1/0)}if(c){let me=e(c,p,($=this.audioStreamsMap.get(I))!=null?$:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);A=Math.max(A,(M=me==null?void 0:me.bitrate)!=null?M:-1/0)}}let P=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:A,forwardBufferHealth:v,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}),C=n?P!=null?P:l:l!=null?l:P,N=I&&t(C,p,(q=this.audioStreamsMap.get(I))!=null?q:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:v,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),O=(Te=this.videoTracksMap.get(C))==null?void 0:Te.representation,B=N&&((Ke=this.audioTracksMap.get(N))==null?void 0:Ke.representation);if(O&&B)return[O,B];if(O&&!B&&this.audioTracksMap.size===0)return[O,void 0]}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){We(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),F(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}))}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),je(this.video),this.tracer.end()}};var es=class extends Oi{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 pe=require("@vkontakte/videoplayer-shared/es2018");var ts=class extends Oi{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=!1,t=-1,{output:i,observableVideo:r,desiredState:s,connect:n}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),n(r.timeUpdate$,i.liveBufferTime$),n(this.player.liveSeekableDuration$,i.duration$),n(this.player.liveLatency$,i.liveLatency$);let o=new pe.ValueSubject(1);n(r.playbackRateState$,o),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe((0,pe.filterChanged)()).subscribe(u=>{let l=i.position$.getValue(),c=i.volume$.getValue(),d=!c.volume||c.muted;!u&&!l&&d?e=!0:u&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(s.isLowLatency.stateChangeEnded$.pipe((0,pe.map)(u=>u.to)).subscribe(this.player.isLowLatency$)).add((0,pe.combine)({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,pe.map)(({liveBufferTime:u,liveAvailabilityStartTime:l})=>u&&l?u+l:void 0)).subscribe(i.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,pe.filter)(u=>(0,pe.isNonNullable)(u))).subscribe(u=>i.isLiveEnded$.next(u!=="active"&&i.position$.getValue()===0))).add((0,pe.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,pe.merge)(r.playbackRateState$,new pe.ValueSubject(1))}).pipe((0,pe.filter)(({liveStreamStatus:u,liveDuration:l})=>u==="active"&&!!l)).subscribe(({liveDuration:u,playbackRate:l})=>{let c=i.liveBufferTime$.getValue(),d=i.position$.getValue(),{playbackCatchupSpeedup:f}=this.params.tuning.dashCmafLive.lowLatency;d||l<1-f||this.video.paused||(0,pe.isNullable)(c)||(t=u-c)})).add((0,pe.combine)({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,pe.merge)(r.playbackRateState$,new pe.ValueSubject(1))}).pipe((0,pe.filterChanged)((u,l)=>this.player.liveStreamStatus$.getValue()==="active"?u.liveDuration===l.liveDuration:u.time===l.time)).subscribe(({time:u,liveDuration:l,playbackRate:c})=>{let d=i.position$.getValue(),{playbackCatchupSpeedup:f}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&c>=1-f||(0,pe.isNullable)(u)||(0,pe.isNullable)(l))return;let p=-1*(l-u-t);i.position$.next(Math.min(p,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(u=>{if(u){let l=Dv(u);this.params.output.availableTextTracks$.next([l])}}))}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 J=require("@vkontakte/videoplayer-shared/es2018");var sc=z(Ta(),1);var y=require("@vkontakte/videoplayer-shared/es2018");var io=z(ot(),1),Ni=z(yt(),1),ro=z(Ta(),1);var Zv=z(ln(),1);var fi=require("@vkontakte/videoplayer-shared/es2018");var n$=18,Qv=!1;try{Qv=Y.browser.isSafari&&!!Y.browser.safariVersion&&Y.browser.safariVersion<=n$}catch(a){console.error(a)}var Zl=class{constructor(e){this.bufferFull$=new fi.Subject;this.error$=new fi.Subject;this.queue=[];this.currentTask=null;this.destroyed=!1;this.abortRequested=!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.queue.length&&this.pull()}catch(t){this.error$.next({id:"BufferTaskQueueUnknown",category:fi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer appending or removal failed",thrown:t})}};this.buffer=e,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 s={operation:"remove",from:e,to:t,signal:i,callback:r};this.queue.unshift(s),this.pull()})}async abort(e){return new Promise(t=>{let i,r=s=>{this.abortRequested=!1,t(s)};Qv&&e?i={operation:"safariAbort",init:e,callback:r}:i={operation:"abort",callback:r};for(let{callback:s}of this.queue)s(!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.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(s){s instanceof DOMException&&s.name==="QuotaExceededError"&&t==="append"?this.bufferFull$.next(this.currentTask.data.byteLength):s instanceof DOMException&&s.name==="InvalidStateError"||this.error$.next({id:`BufferTaskQueue:${t}`,category:fi.ErrorCategory.VIDEO_PIPELINE,message:"Buffer operation failed",thrown:s}),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,fi.assertNever)(t)}}},Gv=Zl;var k=require("@vkontakte/videoplayer-shared/es2018");var ec=z(yt(),1);var Jn=require("@vkontakte/videoplayer-shared/es2018"),Wv=({id:a,width:e,height:t,bitrate:i,fps:r,quality:s,streamId:n})=>{var u;let o=(u=s?ui(s):void 0)!=null?u:(0,Jn.videoSizeToQuality)({width:e,height:t});return o&&{id:a,quality:o,bitrate:i,size:{width:e,height:t},fps:r,streamId:n}},zv=({id:a,bitrate:e})=>({id:a,bitrate:e}),Yv=({language:a,label:e},{id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),Kv=({language:a,label:e,id:t,url:i,isAuto:r})=>({id:t,url:i,isAuto:r,type:"internal",language:a,label:e}),tc=({id:a,language:e,label:t,codecs:i,isDefault:r})=>({id:a,language:e,label:t,codec:(0,ec.default)(i.split("."),0),isDefault:r}),ic=({id:a,language:e,label:t,hdr:i,codecs:r})=>({id:a,language:e,hdr:i,label:t,codec:(0,ec.default)(r.split("."),0)}),rc=a=>"url"in a,at=a=>a.type==="template";var Xv=a=>{a.sort((t,i)=>t.from-i.from);let e=[a[0]];for(let t=1;t<a.length;t++){let{from:i,to:r}=a[t],s=e[e.length-1];s.to>=i?s.to=Math.max(s.to,r):e.push(a[t])}return e},Fi=(a,e)=>{for(let t of a)if(e(t))return t;return null},Jv=a=>{let e=!1,t=(0,Jn.throttleFn)(()=>{e=!0},a);return()=>{try{return t(),e}finally{e=!1}}};var to=require("@vkontakte/videoplayer-shared/es2018");var Zn=a=>{let e=[];for(let t=0;t<a.length;t++){let i=Math.floor(a.start(t)*1e3),r=Math.ceil(a.end(t)*1e3);e.push(i,r)}return e};var eo=class{constructor(e,t){this.lastUpdateTs=0;this.lastCallTs=0;this.prevRanges=[];this.subscription=new to.Subscription;this.mediaSource=e,this.sourceBuffer=t,this.subscription.add((0,to.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>this.updateend()))}updateend(){if(!K(this.mediaSource,this.sourceBuffer))return;let{prevRanges:e}=this,t=Zn(this.sourceBuffer.buffered);this.prevRanges=t,this.isRangesRemoved(e,t)&&(this.lastUpdateTs=Date.now())}isRangesRemoved(e,t){if(e.length!==t.length)return!0;for(let i=0;i<e.length;i+=2){let r=e[i],s=e[i+1],n=t[i],o=t[i+1];if(n>r||o<s)return!0}return!1}wasUpdated(){let{lastCallTs:e,lastUpdateTs:t}=this;return this.lastCallTs=Date.now(),e<=t}destroy(){this.subscription.unsubscribe()}};var is=class{constructor(e,t,i,{fetcher:r,tuning:s,getCurrentPosition:n,isActiveLowLatency:o,compatibilityMode:u=!1,manifest:l}){this.currentLiveSegmentServerLatency$=new k.ValueSubject(0);this.currentLowLatencySegmentLength$=new k.ValueSubject(0);this.currentSegmentLength$=new k.ValueSubject(0);this.onLastSegment$=new k.ValueSubject(!1);this.fullyBuffered$=new k.ValueSubject(!1);this.playingRepresentation$=new k.ValueSubject(void 0);this.playingRepresentationInit$=new k.ValueSubject(void 0);this.error$=new k.Subject;this.gaps=[];this.subscription=new k.Subscription;this.allInitsLoaded=!1;this.activeSegments=new Set;this.downloadAbortController=new ce;this.switchAbortController=new ce;this.destroyAbortController=new ce;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.sourceBufferBufferedDiff=null;this.startWith=(0,k.abortable)(this.destroyAbortController.signal,async function*(e){let t=this.representations.get(e);(0,k.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 Gv(this.sourceBuffer),this.sourceBufferBufferedDiff=new eo(this.mediaSource,this.sourceBuffer),this.subscription.add((0,k.fromEvent)(this.sourceBuffer,"updateend").subscribe(()=>{this.maintain()})),this.subscription.add((0,k.fromEvent)(this.sourceBuffer,"error").subscribe(()=>this.error$.next({id:"SourceBuffer",category:k.ErrorCategory.VIDEO_PIPELINE,message:"SourceBuffer Error event fired"}))),this.subscription.add(this.sourceBufferTaskQueue.bufferFull$.subscribe(n=>{let o=this.getCurrentPosition();if(!this.sourceBuffer||!o||!K(this.mediaSource,this.sourceBuffer))return;let u=Math.min(this.bufferLimit,Er(this.sourceBuffer.buffered)*.8);this.bufferLimit=u;let l=$e(this.sourceBuffer.buffered,o),c=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(o,n*2,l<c).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),s=this.parsedInitData.get(t.id);(0,k.assertNonNullable)(i,"No init buffer for starting representation"),(0,k.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(s))}.bind(this));this.switchTo=(0,k.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!K(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,k.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,k.isNullable)(s)||(0,k.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,k.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer))){if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer();else{let n=this.getCurrentPosition();(0,k.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,k.abortable)(this.destroyAbortController.signal,async function*(e,t=!1){if(!K(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId)return;this.switchingToRepresentationId=e;let i=this.representations.get(e);(0,k.assertNonNullable)(i,`No such representation ${e}`);let r=this.segments.get(e),s=this.initData.get(e);if((0,k.isNullable)(s)||(0,k.isNullable)(r)?yield this.loadInit(i,"high",!1):s instanceof Promise&&(yield s),r=this.segments.get(e),(0,k.assertNonNullable)(r,"No segments for starting representation"),s=this.initData.get(e),!(!s||!(s instanceof ArrayBuffer)||!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer)))if(yield this.abort(),yield this.sourceBufferTaskQueue.append(s,this.downloadAbortController.signal),t)this.switchingToRepresentationId=void 0,this.downloadingRepresentationId=e,yield this.dropBuffer(),this.maintain();else{let n=this.getCurrentPosition();(0,k.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,k.abortable)(this.destroyAbortController.signal,async function*(e){var u,l;let t=(u=(0,ro.default)(e,c=>c.representations))!=null?u:[];if(this.isSeekingLive=!0,!this.downloadingRepresentationId||!t)return;for(let c of this.representations.keys()){let d=t.find(h=>h.id===c);d&&this.representations.set(c,d);let f=this.representations.get(c);if(!f||!at(f.segmentReference))return;let p=this.getActualLiveStartingSegments(f.segmentReference);this.segments.set(f.id,p)}let i=(l=this.switchingToRepresentationId)!=null?l:this.downloadingRepresentationId,r=this.representations.get(i);(0,k.assertNonNullable)(r);let s=this.segments.get(i);(0,k.assertNonNullable)(s,"No segments for starting representation");let n=this.initData.get(i);if((0,k.assertNonNullable)(n,"No init buffer for starting representation"),!(n instanceof ArrayBuffer))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(s,r),yield this.sourceBufferTaskQueue.append(n,this.destroyAbortController.signal),this.isSeekingLive=!1}.bind(this));var c;this.fetcher=r,this.tuning=s,this.compatibilityMode=u,this.forwardBufferTarget=s.dash.forwardBufferTargetAuto,this.getCurrentPosition=n,this.isActiveLowLatency=o,this.isLive=!!(l!=null&&l.live),this.baseUrls=(c=l==null?void 0:l.baseUrls)!=null?c:[],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){!K(this.mediaSource,this.sourceBuffer)||e===this.downloadingRepresentationId||e===this.switchingToRepresentationId||(this.switchAbortController.abort(),this.switchAbortController=new ce,(0,k.abortable)(this.switchAbortController.signal,async function*(i,r=!1){this.switchingToRepresentationId=i;let s=this.representations.get(i);(0,k.assertNonNullable)(s,`No such representation ${i}`);let n=this.segments.get(i),o=this.initData.get(i);if((0,k.isNullable)(o)||(0,k.isNullable)(n)?yield this.loadInit(s,"high",!1):o instanceof Promise&&(yield o),n=this.segments.get(i),(0,k.assertNonNullable)(n,"No segments for starting representation"),o=this.initData.get(i),!(!(o instanceof ArrayBuffer)||!this.sourceBuffer||!K(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,k.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,k.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 ce,this.abortBuffer()}maintain(e=this.getCurrentPosition()){if((0,k.isNullable)(e)||(0,k.isNullable)(this.downloadingRepresentationId)||(0,k.isNullable)(this.playingRepresentationId)||(0,k.isNullable)(this.sourceBuffer)||!K(this.mediaSource,this.sourceBuffer)||(0,k.isNonNullable)(this.switchingToRepresentationId)||this.isSeekingLive)return;let t=this.representations.get(this.downloadingRepresentationId),i=this.segments.get(this.downloadingRepresentationId);if((0,k.assertNonNullable)(t,`No such representation ${this.downloadingRepresentationId}`),!i)return;let r=i.find(c=>e>=c.time.from&&e<c.time.to);(0,k.isNonNullable)(r)&&isFinite(r.time.from)&&isFinite(r.time.to)&&this.currentSegmentLength$.next((r==null?void 0:r.time.to)-r.time.from);let s=e,n=100;if(this.playingRepresentationId!==this.downloadingRepresentationId){let c=$e(this.sourceBuffer.buffered,e),d=r?r.time.to+n:-1/0;r&&r.time.to-e<this.tuning.dash.maxSegmentDurationLeftToSelectNextSegment&&c>=r.time.to-e+n&&(s=d)}if(isFinite(this.bufferLimit)&&Er(this.sourceBuffer.buffered)>=this.bufferLimit){let c=$e(this.sourceBuffer.buffered,e),d=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;this.pruneBuffer(e,1/0,c<d).catch(f=>{this.handleAsyncError(f,"pruneBuffer")});return}let u=null;if(!this.activeSegments.size&&(u=this.selectForwardBufferSegments(i,t.segmentReference.type,s),u!=null&&u.length)){let c="auto";if(this.tuning.dash.useFetchPriorityHints&&r)if((0,io.default)(u,r))c="high";else{let d=(0,Ni.default)(u,0);d&&d.time.from-r.time.to>=this.forwardBufferTarget/2&&(c="low")}this.loadSegments(u,t,c).catch(d=>{this.handleAsyncError(d,"loadSegments")})}(!this.preloadOnly&&!this.allInitsLoaded&&r&&r.status==="fed"&&!(u!=null&&u.length)&&$e(this.sourceBuffer.buffered,e)>3e3||this.isActiveLowLatency())&&this.loadNextInit();let l=(0,Ni.default)(i,-1);!this.isLive&&l&&(this.fullyBuffered$.next(l.time.to-e-$e(this.sourceBuffer.buffered,e)<n),this.onLastSegment$.next(e-l.time.from>0))}get lastDataObtainedTimestamp(){return this.lastDataObtainedTimestampMs}searchGaps(e,t){this.gaps=[];let i=0,r=this.isLive?this.liveInitialAdditionalOffset:0;for(let s of e)Math.trunc(s.time.from-i)>0&&this.gaps.push({representation:t.id,from:i,to:s.time.from+r,persistent:!0}),i=s.time.to;(0,k.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=[],s=0,n=t.length-1;do r.unshift(t[n]),s+=t[n].time.to-t[n].time.from,n--;while(s<i&&n>=0);return this.liveInitialAdditionalOffset=s-i,this.isActiveLowLatency()?[r[0]]:r}getLiveSegmentsToLoadState(e){let t=(0,ro.default)(e==null?void 0:e.streams[this.kind],r=>r.representations).find(r=>r.id===this.downloadingRepresentationId);if(!t)return;let i=this.segments.get(t.id);if(i!=null&&i.length)return{from:i[0].time.from,to:i[i.length-1].time.to}}updateLive(e){var i,r,s,n;let t=(i=(0,ro.default)(e==null?void 0:e.streams[this.kind],o=>o.representations))!=null?i:[];if(![...this.segments.values()].every(o=>!o.length))for(let o of t){if(!o||!at(o.segmentReference))return;let u=o.segmentReference.segments.map(p=>({...p,status:"none",size:void 0})),l=100,c=(r=this.segments.get(o.id))!=null?r:[],d=(n=(s=(0,Ni.default)(c,-1))==null?void 0:s.time.to)!=null?n:0,f=u==null?void 0:u.findIndex(p=>d>=p.time.from+l&&d<=p.time.to+l);if(f===-1){this.liveUpdateSegmentIndex=0;let p=this.getActualLiveStartingSegments(o.segmentReference);this.segments.set(o.id,p)}else{let p=u.slice(f+1);this.segments.set(o.id,[...c,...p])}}}proceedLowLatencyLive(){let e=this.downloadingRepresentationId;(0,k.assertNonNullable)(e);let t=this.segments.get(e);if(t!=null&&t.length){let i=t[t.length-1];this.updateLowLatencyLiveIfNeeded(i)}}updateLowLatencyLiveIfNeeded(e){let t=0;for(let i of this.representations.values()){let r=i.segmentReference;if(!at(r))return;let s=this.segments.get(i.id);if(!s)continue;let n=s.find(u=>Math.floor(u.time.from)===Math.floor(e.time.from));if(n&&!isFinite(n.time.to)&&(n.time.to=e.time.to,t=n.time.to-n.time.from),!!!s.find(u=>Math.floor(u.time.from)===Math.floor(e.time.to))&&this.isActiveLowLatency()){let u=Math.round(e.time.to*r.timescale/1e3).toString(10),l=It(r.segmentTemplateUrl,{segmentTime:u});s.push({status:"none",time:{from:e.time.to,to:1/0},url:l})}}this.currentLowLatencySegmentLength$.next(t)}findSegmentStartTime(e){var s,n,o;let t=(n=(s=this.switchingToRepresentationId)!=null?s: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,t;if(this.initData.clear(),this.segments.clear(),this.parsedInitData.clear(),this.representations.clear(),(e=this.sourceBufferTaskQueue)==null||e.destroy(),(t=this.sourceBufferBufferedDiff)==null||t.destroy(),this.gapDetectionIdleCallback&&Mt&&Mt(this.gapDetectionIdleCallback),this.initLoadIdleCallback&&Mt&&Mt(this.initLoadIdleCallback),this.subscription.unsubscribe(),this.sourceBuffer)try{this.mediaSource.removeSourceBuffer(this.sourceBuffer)}catch(i){if(!(i instanceof DOMException&&i.name==="NotFoundError"))throw i}this.sourceBuffer=null,this.downloadAbortController.abort(),this.switchAbortController.abort(),this.destroyAbortController.abort(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)}selectForwardBufferSegments(e,t,i){return this.checkEjectedSegments(),this.isLive?this.selectForwardBufferSegmentsLive(e,i):this.selectForwardBufferSegmentsRecord(e,t,i)}selectForwardBufferSegmentsLive(e,t){if(this.playingRepresentationId!==this.downloadingRepresentationId){let i=e.findIndex(r=>t>=r.time.from&&t<r.time.to);this.liveUpdateSegmentIndex=i}return this.liveUpdateSegmentIndex<e.length?e.slice(this.liveUpdateSegmentIndex++):null}selectForwardBufferSegmentsRecord(e,t,i){let r=this.getForwardBufferDuration(i),s=e.findIndex(({status:f,time:{from:p,to:h}},b)=>{let g=p<=i&&h>=i,v=p>i||g||b===0&&i===0,E=Math.min(this.forwardBufferTarget,this.bufferLimit),I=this.preloadOnly&&p<=i+E||r<E&&h-p>=E||h<=i+E;return(f==="none"||f==="partially_ejected"&&v&&I&&this.sourceBuffer&&K(this.mediaSource,this.sourceBuffer)&&!(_e(this.sourceBuffer.buffered,p)&&_e(this.sourceBuffer.buffered,h)))&&v&&I});if(s===-1)return null;if(t!=="byteRange")return e.slice(s,s+1);let n=e,o=0,u=0,l=[],c=this.preloadOnly?0:this.tuning.dash.segmentRequestSize,d=this.preloadOnly?this.forwardBufferTarget:0;for(let f=s;f<n.length&&(o<=c||u<=d);f++){let p=n[f];if(o+=p.byte.to+1-p.byte.from,u+=p.time.to+1-p.time.from,p.status==="none"||p.status==="partially_ejected")l.push(p);else break}return l}async loadSegments(e,t,i="auto"){at(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:s,url:n,signal:o,onProgress:u,onProgressTasks:l}=this.prepareTemplateFetchSegmentParams(e,t);this.failedDownloads&&o&&(await(0,k.abortable)(o,async function*(){let c=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(d=>setTimeout(d,c))}.bind(this))(),o.aborted&&this.abortActiveSegments([e]));try{let c=await this.fetcher.fetch(n,{range:s,signal:o,onProgress:u,priority:i,isLowLatency:this.isActiveLowLatency(),bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation});if(this.lastDataObtainedTimestampMs=(0,k.now)(),!c)return;let d=new DataView(c),f=Dt(t.mime);if(!isFinite(r.segment.time.to)){let b=t.segmentReference.timescale;r.segment.time.to=f.getChunkEndTime(d,b)}u&&r.feedingBytes&&l?await Promise.all(l):await this.sourceBufferTaskQueue.append(d,o);let{serverDataReceivedTimestamp:p,serverDataPreparedTime:h}=f.getServerLatencyTimestamps(d);p&&h&&this.currentLiveSegmentServerLatency$.next(h-p),r.segment.status="downloaded",this.onSegmentFullyAppended(r,t.id),this.failedDownloads=0}catch(c){this.abortActiveSegments([e]),Ct(c)||(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())at(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:s,signal:n,onProgress:o}=this.prepareByteRangeFetchSegmentParams(e,t);this.failedDownloads&&n&&(await(0,k.abortable)(n,async function*(){let u=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(l=>{this.loadByteRangeSegmentsTimeoutId=window.setTimeout(l,u),(0,k.fromEvent)(window,"online").pipe((0,k.once)()).subscribe(()=>{l(),window.clearTimeout(this.loadByteRangeSegmentsTimeoutId)})})}.bind(this))(),n.aborted&&this.abortActiveSegments(e));try{await this.fetcher.fetch(s,{range:r,onProgress:o,signal:n,priority:i,bufferOptimisation:this.tuning.dash.fetcherBufferOptimisation}),this.lastDataObtainedTimestampMs=(0,k.now)(),this.failedDownloads=0}catch(u){this.abortActiveSegments(e),Ct(u)||(this.failedDownloads++,this.updateRepresentationsBaseUrlIfNeeded())}}prepareByteRangeFetchSegmentParams(e,t){if(at(t.segmentReference))throw new Error("Representation is not byte range type");let i=t.segmentReference.url,r={from:(0,Ni.default)(e,0).byte.from,to:(0,Ni.default)(e,-1).byte.to},{signal:s}=this.downloadAbortController;return{url:i,range:r,signal:s,onProgress:async(o,u)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,k.now)(),await this.onSomeByteRangesDataLoaded({dataView:o,loaded:u,signal:s,onSegmentAppendFailed:()=>this.abort(),globalFrom:r?r.from:0,representationId:t.id})}catch(l){this.error$.next({id:"SegmentFeeding",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:l})}}}}prepareTemplateFetchSegmentParams(e,t){if(!at(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:s}=this.downloadAbortController,n=[],u=this.isActiveLowLatency()||this.tuning.dash.enableSubSegmentBufferFeeding&&this.liveUpdateSegmentIndex<3?(l,c)=>{if(!s.aborted)try{this.lastDataObtainedTimestampMs=(0,k.now)();let d=this.onSomeTemplateDataLoaded({dataView:l,loaded:c,signal:s,onSegmentAppendFailed:()=>this.abort(),representationId:t.id});n.push(d)}catch(d){this.error$.next({id:"SegmentFeeding",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Error when feeding segments",thrown:d})}}:void 0;return{url:r,signal:s,onProgress:u,onProgressTasks:n}}abortActiveSegments(e){for(let t of this.activeSegments)(0,io.default)(e,t.segment)&&this.abortSegment(t.segment)}async onSomeTemplateDataLoaded({dataView:e,representationId:t,loaded:i,onSegmentAppendFailed:r,signal:s}){if(!this.activeSegments.size||!K(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(s.aborted){r();continue}if(o.loadedBytes=i,o.loadedBytes>o.feedingBytes){let l=new DataView(e.buffer,e.byteOffset+o.feedingBytes,o.loadedBytes-o.feedingBytes),c=Dt(n.mime).parseFeedableSegmentChunk(l,this.isLive);c!=null&&c.byteLength&&(u.status="partially_fed",o.feedingBytes+=c.byteLength,await this.sourceBufferTaskQueue.append(c),o.fedBytes+=c.byteLength)}}}}async onSomeByteRangesDataLoaded({dataView:e,representationId:t,globalFrom:i,loaded:r,signal:s,onSegmentAppendFailed:n}){if(!this.activeSegments.size||!K(this.mediaSource,this.sourceBuffer))return;let o=this.representations.get(t);if(o)for(let u of this.activeSegments){if(u.representationId!==t)continue;if(s.aborted){await n();continue}let{segment:l}=u,c=l.byte.from-i,d=l.byte.to-i,f=d-c+1,p=c<r,h=d<=r;if(p){if(l.status==="downloading"&&h){l.status="downloaded";let b=new DataView(e.buffer,e.byteOffset+c,f);await this.sourceBufferTaskQueue.append(b,s)&&!s.aborted?this.onSegmentFullyAppended(u,t):await n()}else if(this.tuning.dash.enableSubSegmentBufferFeeding&&(l.status==="downloading"||l.status==="partially_fed")&&(u.loadedBytes=Math.min(f,r-c),u.loadedBytes>u.feedingBytes)){let b=new DataView(e.buffer,e.byteOffset+c+u.feedingBytes,u.loadedBytes-u.feedingBytes),g=u.loadedBytes===f?b:Dt(o.mime).parseFeedableSegmentChunk(b);g!=null&&g.byteLength&&(l.status="partially_fed",u.feedingBytes+=g.byteLength,await this.sourceBufferTaskQueue.append(g,s)&&!s.aborted?(u.fedBytes+=g.byteLength,u.fedBytes===f&&this.onSegmentFullyAppended(u,t)):await n())}}}}onSegmentFullyAppended(e,t){if(!((0,k.isNullable)(this.sourceBuffer)||!K(this.mediaSource,this.sourceBuffer))){!this.isLive&&Y.browser.isSafari&&this.tuning.useSafariEndlessRequestBugfix&&(_e(this.sourceBuffer.buffered,e.segment.time.from,100)&&_e(this.sourceBuffer.buffered,e.segment.time.to,100)||this.error$.next({id:"EmptyAppendBuffer",category:k.ErrorCategory.VIDEO_PIPELINE,message:"Browser stuck on empty result of adding segment to source buffer"})),this.playingRepresentationId=t,this.playingRepresentation$.next(this.playingRepresentationId),this.playingRepresentationInit$.next(this.parsedInitData.get(this.playingRepresentationId)),e.segment.status="fed",rc(e.segment)&&(e.segment.size=e.fedBytes);for(let i of this.representations.values()){if(i.id===t)continue;let r=this.segments.get(i.id);if(r)for(let s of r)s.status==="fed"&&Math.round(s.time.from)===Math.round(e.segment.time.from)&&Math.round(s.time.to)===Math.round(e.segment.time.to)&&(s.status="none")}this.isActiveLowLatency()&&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,s]of this.initData.entries()){let n=s instanceof Promise;t||(t=n),s===null&&(e=r)}if(!e){this.allInitsLoaded=!0;return}if(t)return;let i=this.representations.get(e);i&&(this.initLoadIdleCallback=Ir(()=>(0,Zv.default)(this.loadInit(i,"low",!1),()=>this.initLoadIdleCallback=null)))}async loadInit(e,t="auto",i=!1){let r=this.tuning.dash.useFetchPriorityHints?t:"auto",n=(!i&&this.failedDownloads>0?(0,k.abortable)(this.destroyAbortController.signal,async function*(){let o=(0,k.getExponentialDelay)(this.failedDownloads,this.tuning.downloadBackoff);yield new Promise(u=>setTimeout(u,o))}.bind(this))():Promise.resolve()).then(()=>this.fetcher.fetchRepresentation(e.segmentReference,Dt(e.mime),r)).then(o=>{if(!o)return;let{init:u,dataView:l,segments:c}=o,d=l.buffer.slice(l.byteOffset,l.byteOffset+l.byteLength);this.initData.set(e.id,d);let f=c;this.isLive&&at(e.segmentReference)&&(f=this.getActualLiveStartingSegments(e.segmentReference)),(!this.isLive||!this.segments.has(e.id))&&this.segments.set(e.id,f),u&&this.parsedInitData.set(e.id,u)}).then(()=>this.failedDownloads=0,o=>{this.initData.set(e.id,null),i&&this.error$.next({id:"LoadInits",category:k.ErrorCategory.WTF,message:"loadInit threw",thrown:o})});return this.initData.set(e.id,n),n}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||!K(this.mediaSource,this.sourceBuffer)||!this.playingRepresentationId||(0,k.isNullable)(e))return!1;this.checkEjectedSegments();let r=[],s=0,n=o=>{var l;if(s>=t)return;r.push({...o.time});let u=rc(o)?(l=o.size)!=null?l:0:o.byte.to-o.byte.from;s+=u};for(let o of this.segments.values())for(let u of o){let l=u.time.to<=e-this.tuning.dash.bufferPruningSafeZone,c=u.time.from>=e+Math.min(this.forwardBufferTarget,this.bufferLimit);(l||c)&&u.status==="fed"&&n(u)}for(let o=0;o<this.sourceBuffer.buffered.length;o++){let u=this.sourceBuffer.buffered.start(o)*1e3,l=this.sourceBuffer.buffered.end(o)*1e3,c=0;for(let d of this.segments.values())for(let f of d)(0,io.default)(["none","partially_ejected"],f.status)&&Math.round(f.time.from)<=Math.round(u)&&Math.round(f.time.to)>=Math.round(l)&&c++;if(c===this.segments.size){let d={time:{from:u,to:l},url:"",status:"none"};n(d)}}if(r.length&&i){let o=Math.min(this.forwardBufferTarget,this.bufferLimit)*this.tuning.dash.minSafeBufferThreshold;for(let u of this.segments.values())for(let l of u)l.time.from>=e+o&&l.status==="fed"&&n(l)}return r.length?(r=Xv(r),(await Promise.all(r.map(u=>this.sourceBufferTaskQueue.remove(u.from,u.to)))).reduce((u,l)=>u||l,!1)):!1}async abortBuffer(){if(!this.sourceBuffer||!K(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||!K(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)}}getBufferedTo(){return!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length?null:this.sourceBuffer.buffered.end(this.sourceBuffer.buffered.length-1)}getForwardBufferDuration(e=this.getCurrentPosition()){return!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer)||!this.sourceBuffer.buffered.length||(0,k.isNullable)(e)?0:$e(this.sourceBuffer.buffered,e)}detectGaps(e,t){if(!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer))return;let{buffered:i}=this.sourceBuffer;this.tuning.useRefactoredSearchGap&&(this.gaps=this.gaps.filter(s=>{if(s.persistent)return!0;let n=Math.round(s.from),o=Math.round(s.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}));let r={representation:e,from:t.time.from,to:t.time.to,persistent:!1};for(let s=0;s<i.length;s++){let n=i.start(s)*1e3,o=i.end(s)*1e3;if(!(o<=t.time.from||n>=t.time.to)){if(n<=t.time.from&&o>=t.time.to){r=void 0;break}o>t.time.from&&o<t.time.to&&(r.from=o),n<t.time.to&&n>t.time.from&&(r.to=n)}}r&&r.to-r.from>1&&!this.gaps.some(s=>r&&s.from===r.from&&s.to===r.to)&&this.gaps.push(r)}detectGapsWhenIdle(e,t){if(!(this.gapDetectionIdleCallback||!this.sourceBuffer||!K(this.mediaSource,this.sourceBuffer))){if(!this.tuning.useRefactoredSearchGap)for(let i=0;i<this.sourceBuffer.buffered.length;i++)this.gaps=this.gaps.filter(r=>r.persistent||this.sourceBuffer&&(Math.round(r.from)<Math.round(this.sourceBuffer.buffered.start(i)*1e3)||Math.round(r.to)>Math.round(this.sourceBuffer.buffered.end(i)*1e3)));this.gapDetectionIdleCallback=Ir(()=>{try{this.detectGaps(e,t)}catch(i){this.error$.next({id:"GapDetection",category:k.ErrorCategory.WTF,message:"detectGaps threw",thrown:i})}finally{this.gapDetectionIdleCallback=null}})}}checkEjectedSegments(){if((0,k.isNullable)(this.sourceBuffer)||!K(this.mediaSource,this.sourceBuffer)||(0,k.isNullable)(this.playingRepresentationId)||this.sourceBufferBufferedDiff&&!this.sourceBufferBufferedDiff.wasUpdated())return;let e=Zn(this.sourceBuffer.buffered),t=100;for(let i of this.segments.values())for(let r of i){let{status:s}=r;if(s!=="fed"&&s!=="partially_ejected")continue;let n=Math.floor(r.time.from),o=Math.ceil(r.time.to),u=!1,l=0;for(let c=0;c<e.length;c+=2){let d=e[c],f=e[c+1];u||(u=d-t<=n&&f+t>=o),(n>=d&&n<f-t||o>d+t&&o<=f)&&(l+=1)}u||(l===1?r.status="partially_ejected":this.gaps.some(c=>c.from===r.time.from||c.to===r.time.to)?r.status="partially_ejected":r.status="none")}}handleAsyncError(e,t){this.error$.next({id:t,category:k.ErrorCategory.VIDEO_PIPELINE,thrown:e,message:"Something went wrong"})}calculateDurationFromSegments(){var t;if(!this.playingRepresentationId)return 0;let e=this.segments.get(this.playingRepresentationId);return(e?(t=(0,Ni.default)(e,-1))==null?void 0:t.time.to:0)||0}};var te=require("@vkontakte/videoplayer-shared/es2018");var so=class{constructor({throughputEstimator:e,requestQuic:t,tracer:i,compatibilityMode:r=!1,useEnableSubtitlesParam:s=!1}){this.lastConnectionType$=new te.ValueSubject(void 0);this.lastConnectionReused$=new te.ValueSubject(void 0);this.lastRequestFirstBytes$=new te.ValueSubject(void 0);this.recoverableError$=new te.Subject;this.error$=new te.Subject;this.abortAllController=new ce;this.subscription=new te.SubscriptionRemovable;this.fetchManifest=(0,te.abortable)(this.abortAllController.signal,async function*(e){let t=this.tracer.createComponentTracer("FetchManifest"),i=e;this.requestQuic&&(i=pi(i)),!this.compatibilityMode&&this.useEnableSubtitlesParam&&(i=Vn(i));let r=yield this.doFetch(i,{signal:this.abortAllController.signal}).catch(ao);return r?(t.log("success",(0,te.flattenObject)({url:i,message:"Request successfully executed"})),t.end(),this.onHeadersReceived(r.headers),r.text()):(t.error("error",(0,te.flattenObject)({url:i,message:"No data in request manifest"})),t.end(),null)}.bind(this));this.fetch=(0,te.abortable)(this.abortAllController.signal,async function*(e,{rangeMethod:t=this.compatibilityMode?0:1,range:i,onProgress:r,priority:s="auto",signal:n,measureThroughput:o=!0,isLowLatency:u=!1,bufferOptimisation:l=!1}={}){var G,ue,le;let c=e,d=new Headers,f=this.tracer.createComponentTracer("Fetch");if(i)switch(t){case 0:{d.append("Range",`bytes=${i.from}-${i.to}`);break}case 1:{let w=new URL(c,location.href);w.searchParams.append("bytes",`${i.from}-${i.to}`),c=w.toString();break}default:(0,te.assertNever)(t)}this.requestQuic&&(c=pi(c));let p=this.abortAllController.signal,h;if(n){let w=new ce;if(h=(0,te.merge)((0,te.fromEvent)(this.abortAllController.signal,"abort"),(0,te.fromEvent)(n,"abort")).subscribe(()=>{try{w.abort()}catch(_){ao(_)}}),this.subscription.add(h),this.abortAllController.signal.aborted||n.aborted)try{w.abort()}catch(_){ao(_)}p=w.signal}let b=(0,te.now)();f.log("startRequest",(0,te.flattenObject)({url:c,priority:s,rangeMethod:t,range:i,isLowLatency:u,requestStartedAt:b}));let g=yield this.doFetch(c,{priority:s,headers:d,signal:p}),v=(0,te.now)();if(!g)return f.error("error",{message:"No response in request"}),f.end(),this.unsubscribeAbortSubscription(h),null;if((G=this.throughputEstimator)==null||G.addRawRtt(v-b),!g.ok||!g.body){this.unsubscribeAbortSubscription(h);let w=`Fetch error ${g.status}: ${g.statusText}`;return f.error("error",{message:w}),f.end(),Promise.reject(new Error(`Fetch error ${g.status}: ${g.statusText}`))}if(this.onHeadersReceived(g.headers),!r&&!o){this.unsubscribeAbortSubscription(h);let w=(0,te.now)(),_={requestStartedAt:b,requestEndedAt:w,duration:w-b};return f.log("endRequest",(0,te.flattenObject)(_)),f.end(),g.arrayBuffer()}let E=g.body;if(o){let w;[E,w]=g.body.tee(),(ue=this.throughputEstimator)==null||ue.trackStream(w,u)}let I=E.getReader(),A,P=parseInt((le=g.headers.get("content-length"))!=null?le:"",10);Number.isFinite(P)&&(A=P),!A&&i&&(A=i.to-i.from+1);let C=0,N=A?new Uint8Array(A):new Uint8Array(0),O=!1,B=w=>{this.unsubscribeAbortSubscription(h),O=!0,ao(w)},V=(0,te.abortable)(p,async function*({done:w,value:_}){if(C===0&&this.lastRequestFirstBytes$.next((0,te.now)()-b),p.aborted){this.unsubscribeAbortSubscription(h);return}if(!w&&_){if(l&&A)N.set(_,C),C+=_.byteLength;else{let $=new Uint8Array(N.length+_.length);$.set(N),$.set(_,N.length),N=$,C+=_.byteLength}r==null||r(new DataView(N.buffer),C),yield I==null?void 0:I.read().then(V,B)}}.bind(this));yield I==null?void 0:I.read().then(V,B),this.unsubscribeAbortSubscription(h);let H=(0,te.now)(),U={failed:O,requestStartedAt:b,requestEndedAt:H,duration:H-b};return O?(f.error("endRequest",(0,te.flattenObject)(U)),f.end(),null):(f.log("endRequest",(0,te.flattenObject)(U)),f.end(),N.buffer)}.bind(this));this.fetchByteRangeRepresentation=(0,te.abortable)(this.abortAllController.signal,async function*(e,t,i){var v;if(e.type!=="byteRange")return null;let{from:r,to:s}=e.initRange,n=r,o=s,u=!1,l,c;e.indexRange&&(l=e.indexRange.from,c=e.indexRange.to,u=s+1===l,u&&(n=Math.min(l,r),o=Math.max(c,s))),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 f=new DataView(d,r-n,s-n+1);if(!t.validateData(f))throw new Error("Invalid media file");let p=t.parseInit(f),h=(v=e.indexRange)!=null?v:t.getIndexRange(p);if(!h)throw new ReferenceError("No way to load representation index");let b;if(u)b=new DataView(d,h.from-n,h.to-h.from+1);else{let E=yield this.fetch(e.url,{range:h,priority:i,measureThroughput:!1});if(!E)return null;b=new DataView(E)}let g=t.parseSegments(b,p,h);return{init:p,dataView:new DataView(d),segments:g}}.bind(this));this.fetchTemplateRepresentation=(0,te.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});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=s}onHeadersReceived(e){let{type:t,reused:i}=Bn(e);this.lastConnectionType$.next(t),this.lastConnectionReused$.next(i)}async fetchRepresentation(e,t,i="auto"){var s,n;let{type:r}=e;switch(r){case"byteRange":return(s=await this.fetchByteRangeRepresentation(e,t,i))!=null?s:null;case"template":return(n=await this.fetchTemplateRepresentation(e,i))!=null?n:null;default:(0,te.assertNever)(r)}}destroy(){this.abortAllController.abort(),this.tracer.end(),this.subscription.unsubscribe()}async doFetch(e,t){let i=await dt(e,t);if(i.ok)return i;let r=await i.text(),s=parseInt(r);if(!isNaN(s))switch(s){case 1:this.recoverableError$.next({id:"VideoDataLinkExpiredError",message:"Video data links have expired",category:te.ErrorCategory.FATAL});break;case 8:this.recoverableError$.next({id:"VideoDataLinkBlockedForFloodError",message:"Url blocked for flood",category:te.ErrorCategory.FATAL});break;case 18:this.recoverableError$.next({id:"VideoDataLinkIllegalIpChangeError",message:"Client IP has changed",category:te.ErrorCategory.FATAL});break;case 21:this.recoverableError$.next({id:"VideoDataLinkIllegalHostChangeError",message:"Request HOST has changed",category:te.ErrorCategory.FATAL});break;default:this.error$.next({id:"GeneralVideoDataFetchError",message:`Generic video data fetch error (${s})`,category:te.ErrorCategory.FATAL})}}unsubscribeAbortSubscription(e){e&&(e.unsubscribe(),this.subscription.remove(e))}},ao=a=>{if(!Ct(a))throw a};var no=require("@vkontakte/videoplayer-shared/es2018");var rs=class a{constructor(e,t){this.currentRepresentation$=new no.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,no.isNullable)(e))for(let i of this.representations)for(let r of i){let s=r.segmentReference,n=s.segments.length,o=s.segments[0].time.from,u=s.segments[n-1].time.to;if(e<o||e>u)continue;let l=s.segments.find(c=>c.time.from<=e&&c.time.to>=e);!l||((t=this.currentSegment)==null?void 0:t.time.from)===l.time.from&&this.currentSegment.time.to===l.time.to||(this.currentSegment=l,this.currentRepresentation$.next({...r,label:"Live Text",language:"ru",isAuto:!0,url:new URL(l.url,s.baseUrl).toString()}))}}destroy(){this.currentRepresentation$.next(null),this.currentSegment=null,this.representations=[]}processStreams(e){for(let t of e!=null?e:[]){let i=a.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=>a.filterRepresentations(t.representations)))}static filterRepresentations(e){return e==null?void 0:e.filter(t=>t.kind==="text"&&"segmentReference"in t&&at(t.segmentReference))}};var l$=["progress","play","seeked","stalled","waiting"],c$=["timeupdate","progress","loadeddata","playing","seeked"];var oo=class{constructor(e){this.element=null;this.manifestUrlString="";this.source=null;this.manifest=null;this.subscription=new y.Subscription;this.representationSubscription=new y.Subscription;this.state$=new re("none");this.currentVideoRepresentation$=new y.ValueSubject(void 0);this.currentVideoRepresentationInit$=new y.ValueSubject(void 0);this.currentAudioRepresentation$=new y.ValueSubject(void 0);this.currentVideoSegmentLength$=new y.ValueSubject(0);this.currentAudioSegmentLength$=new y.ValueSubject(0);this.error$=new y.Subject;this.lastConnectionType$=new y.ValueSubject(void 0);this.lastConnectionReused$=new y.ValueSubject(void 0);this.lastRequestFirstBytes$=new y.ValueSubject(void 0);this.currentLiveTextRepresentation$=new y.ValueSubject(null);this.isLive$=new y.ValueSubject(!1);this.isActiveLive$=new y.ValueSubject(!1);this.isLowLatency$=new y.ValueSubject(!1);this.liveDuration$=new y.ValueSubject(0);this.liveSeekableDuration$=new y.ValueSubject(0);this.liveAvailabilityStartTime$=new y.ValueSubject(0);this.liveStreamStatus$=new y.ValueSubject(void 0);this.bufferLength$=new y.ValueSubject(0);this.liveLatency$=new y.ValueSubject(void 0);this.liveLoadBufferLength$=new y.ValueSubject(0);this.livePositionFromPlayer$=new y.ValueSubject(0);this.currentStallDuration$=new y.ValueSubject(0);this.videoLastDataObtainedTimestamp$=new y.ValueSubject(0);this.fetcherRecoverableError$=new y.Subject;this.fetcherError$=new y.Subject;this.liveStreamEndTimestamp=0;this.isUpdatingLive=!1;this.isJumpGapAfterSeekLive=!1;this.forceEnded$=new y.Subject;this.gapWatchdogActive=!1;this.destroyController=new ce;this.initManifest=(0,y.abortable)(this.destroyController.signal,async function*(e,t,i){var r;this.tracer.log("initManifest"),this.element=e,this.manifestUrlString=xe(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:y.ErrorCategory.PARSER,message:"No playable video representations"})}.bind(this));this.updateManifest=(0,y.abortable)(this.destroyController.signal,async function*(){var n,o;this.tracer.log("updateManifestStart",{manifestUrl:this.manifestUrlString});let e=yield this.fetcher.fetchManifest(this.manifestUrlString).catch(u=>{!this.manifest&&!this.bufferLength$.getValue()&&this.error$.next({id:"LoadManifest",category:y.ErrorCategory.NETWORK,message:"Failed to load manifest",thrown:u})});if(!e)return null;let t=null;try{t=Mn(e!=null?e:"",this.manifestUrlString)}catch(u){let l=(n=Ln(e))!=null?n:{id:"ManifestParsing",category:y.ErrorCategory.PARSER,message:"Failed to parse MPD manifest",thrown:u};this.error$.next(l)}if(!t)return null;let i=(u,l,c)=>{var d,f,p,h;return!!((f=(d=this.element)==null?void 0:d.canPlayType)!=null&&f.call(d,l)&&((h=(p=tt())==null?void 0:p.isTypeSupported)!=null&&h.call(p,`${l}; codecs="${c}"`))||u==="text")};if(t.live){this.isLive$.next(!!t.live);let{availabilityStartTime:u,latestSegmentPublishTime:l,streamIsUnpublished:c,streamIsAlive:d}=t.live,f=((o=t.duration)!=null?o:0)/1e3;this.liveSeekableDuration$.next(-1*f),this.liveDuration$.next((l-u)/1e3),this.liveAvailabilityStartTime$.next(t.live.availabilityStartTime);let p="active";d||(p=c?"unpublished":"unexpectedly_down"),this.liveStreamStatus$.next(p)}let r={text:t.streams.text,video:[],audio:[]};for(let u of["video","audio"]){let c=t.streams[u].filter(({mime:p,codecs:h})=>i(u,p,h)),d=new Set(c.map(({codecs:p})=>p)),f=Qn(d);if(f&&(r[u]=c.filter(({codecs:p})=>p.startsWith(f))),u==="video"){let p=this.tuning.preferHDR,h=r.video.some(g=>g.hdr),b=r.video.some(g=>!g.hdr);Y.display.isHDR&&p&&h?r.video=r.video.filter(g=>g.hdr):b&&(r.video=r.video.filter(g=>!g.hdr))}}let s={...t,streams:r};return this.tracer.log("updateManifestEnd",(0,y.flattenObject)(s)),s}.bind(this));this.initRepresentations=(0,y.abortable)(this.destroyController.signal,async function*(e,t,i){var f;this.tracer.log("initRepresentationsStart",(0,y.flattenObject)({initialVideo:e,initialAudio:t,sourceHls:i})),(0,y.assertNonNullable)(this.manifest),(0,y.assertNonNullable)(this.element),this.representationSubscription.unsubscribe(),this.representationSubscription=new y.Subscription,this.state$.startTransitionTo("representations_ready");let r=p=>{this.representationSubscription.add((0,y.fromEvent)(p,"error").pipe((0,y.filter)(h=>{var b;return!!((b=this.element)!=null&&b.played.length)})).subscribe(h=>{this.error$.next({id:"VideoSource",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Unexpected video source error",thrown:h})}))};this.source=this.tuning.useManagedMediaSource?mn():new MediaSource;let s=document.createElement("source");if(r(s),s.src=URL.createObjectURL(this.source),this.element.appendChild(s),this.tuning.useManagedMediaSource&&mr())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 is("video",this.source,o,n),this.bufferManagers=[this.videoBufferManager],(0,y.isNonNullable)(t)){let p=this.manifest.streams.audio.reduce((h,b)=>[...h,...b.representations],[]);this.audioBufferManager=new is("audio",this.source,p,n),this.bufferManagers.push(this.audioBufferManager)}rs.isSupported(this.manifest.streams.text)&&!this.isLowLatency$.getValue()&&(this.liveTextManager=new rs(this.manifest.streams.text,n)),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$));let u=()=>{var p;(p=this.stallWatchdogSubscription)==null||p.unsubscribe(),this.currentStallDuration$.next(0)};if(this.representationSubscription.add((0,y.merge)(...c$.map(p=>(0,y.fromEvent)(this.element,p))).pipe((0,y.map)(p=>this.element?$e(this.element.buffered,this.element.currentTime*1e3):0),(0,y.filterChanged)(),(0,y.tap)(p=>{p>this.tuning.dash.bufferEmptinessTolerance&&u()})).subscribe(this.bufferLength$)),this.representationSubscription.add((0,y.merge)((0,y.fromEvent)(this.element,"ended"),this.forceEnded$).subscribe(()=>{u()})),this.isLive$.getValue()){this.subscription.add(this.liveDuration$.pipe((0,y.filterChanged)()).subscribe(h=>this.liveStreamEndTimestamp=(0,y.now)())),this.subscription.add((0,y.fromEvent)(this.element,"pause").subscribe(()=>{this.livePauseWatchdogSubscription=(0,y.interval)(1e3).subscribe(h=>{let b=ni(this.manifestUrlString,2);this.manifestUrlString=xe(this.manifestUrlString,b+1e3,2),this.liveStreamStatus$.getValue()==="active"&&this.updateManifest()}),this.subscription.add(this.livePauseWatchdogSubscription)})).add((0,y.fromEvent)(this.element,"play").subscribe(h=>{var b;return(b=this.livePauseWatchdogSubscription)==null?void 0:b.unsubscribe()})),this.representationSubscription.add((0,y.combine)({isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,y.map)(({isActiveLive:h,isLowLatency:b})=>h&&b),(0,y.filterChanged)()).subscribe(h=>{this.isManualDecreasePlaybackInLive()||Rr(this.element,1)})),this.representationSubscription.add((0,y.combine)({bufferLength:this.bufferLength$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).pipe((0,y.filter)(({bufferLength:h,isActiveLive:b,isLowLatency:g})=>b&&g&&!!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 b=this.liveSeekableDuration$.getValue()-h/1e3;this.liveSeekableDuration$.next(Math.max(b,-1*this.tuning.dashCmafLive.maxLiveDuration)),this.liveDuration$.next(this.liveDuration$.getValue()+h/1e3)})),this.representationSubscription.add((0,y.combine)({isLive:this.isLive$,rtt:this.throughputEstimator.rtt$,bufferLength:this.bufferLength$,segmentServerLatency:this.videoBufferManager.currentLiveSegmentServerLatency$}).pipe((0,y.filter)(({isLive:h})=>h),(0,y.filterChanged)((h,b)=>b.bufferLength<h.bufferLength),(0,y.map)(({rtt:h,bufferLength:b,segmentServerLatency:g})=>{let v=ni(this.manifestUrlString,2);return(h/2+b+g+v)/1e3})).subscribe(this.liveLatency$)),this.representationSubscription.add((0,y.combine)({liveBuffer:this.liveBuffer.smoothed$,isActiveLive:this.isActiveLive$,isLowLatency:this.isLowLatency$}).subscribe(({liveBuffer:h,isActiveLive:b,isLowLatency:g})=>{if(!g||!b)return;let v=this.tuning.dashCmafLive.lowLatency.maxTargetOffset,E=this.tuning.dashCmafLive.lowLatency.maxTargetOffsetDeviation,I=this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup,A=h-v;if(this.isManualDecreasePlaybackInLive())return;let P=1;Math.abs(A)>E&&(P=1+Math.sign(A)*I),Rr(this.element,P)})),this.representationSubscription.add(this.bufferLength$.subscribe(h=>{var g,v;let b=0;if(h){let E=((v=(g=this.element)==null?void 0:g.currentTime)!=null?v:0)*1e3;b=Math.min(...this.bufferManagers.map(A=>{var P,C;return(C=(P=A.getLiveSegmentsToLoadState(this.manifest))==null?void 0:P.to)!=null?C:E}))-E}this.liveLoadBufferLength$.getValue()!==b&&this.liveLoadBufferLength$.next(b)}));let p=0;this.representationSubscription.add((0,y.combine)({liveLoadBufferLength:this.liveLoadBufferLength$,bufferLength:this.bufferLength$}).pipe((0,y.throttle)(1e3)).subscribe(async({liveLoadBufferLength:h,bufferLength:b})=>{if(!this.element||this.isUpdatingLive)return;let g=this.element.playbackRate,v=ni(this.manifestUrlString,2),E=Math.abs(this.livePositionFromPlayer$.getValue())*1e3,I=Math.min(E,this.tuning.dashCmafLive.normalizedTargetMinBufferSize*g),A=this.tuning.dashCmafLive.normalizedActualBufferOffset*g,P=this.tuning.dashCmafLive.normalizedLiveMinBufferSize*g,C=isFinite(h)?h:b,N=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),O=E<=this.tuning.live.activeLiveDelay;this.isActiveLive$.next(O);let B="none";if(N?B="active_low_latency":this.isLowLatency$.getValue()&&O?(this.bufferManagers.forEach(V=>V.proceedLowLatencyLive()),B="active_low_latency"):v!==0&&C<I?B="live_forward_buffering":C<I+P&&(B="live_with_target_offset"),isFinite(h)&&(p=h>p?h:p),B==="live_forward_buffering"||B==="live_with_target_offset"){let V=p-(I+A),H=this.normolizeLiveOffset(Math.trunc(v+V/g)),U=Math.abs(H-v),G=0;!h||U<=this.tuning.dashCmafLive.offsetCalculationError?G=v:H>0&&U>this.tuning.dashCmafLive.offsetCalculationError&&(G=H),this.manifestUrlString=xe(this.manifestUrlString,G,2)}(B==="live_with_target_offset"||B==="live_forward_buffering")&&(p=0,await this.updateLive())},h=>{this.error$.next({id:"updateLive",category:y.ErrorCategory.VIDEO_PIPELINE,thrown:h,message:"Failed to update live with subscription"})}))}let l=(0,y.merge)(...this.bufferManagers.map(p=>p.fullyBuffered$)).pipe((0,y.map)(()=>this.bufferManagers.every(p=>p.fullyBuffered$.getValue()))),c=(0,y.merge)(...this.bufferManagers.map(p=>p.onLastSegment$)).pipe((0,y.map)(()=>this.bufferManagers.some(p=>p.onLastSegment$.getValue()))),d=(0,y.combine)({allBuffersFull:l,someBufferEnded:c}).pipe((0,y.filterChanged)(),(0,y.map)(({allBuffersFull:p,someBufferEnded:h})=>p&&h),(0,y.filter)(p=>p));if(this.representationSubscription.add((0,y.merge)(this.forceEnded$,d).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:y.ErrorCategory.VIDEO_PIPELINE,message:"Failed to end MediaSource stream",thrown:h})}})),this.representationSubscription.add((0,y.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 b;p&&(this.timeoutSourceOpenId=setTimeout(()=>{var g;if(((g=this.source)==null?void 0:g.readyState)==="open"){h();return}this.error$.next({id:"OpenOfStream",category:y.ErrorCategory.VIDEO_PIPELINE,message:"Failed to open MediaSource",thrown:new Error("Timeout reject when wait sourceopen event"),traceAsLog:!0})},this.tuning.dash.sourceOpenTimeout)),(b=this.source)==null||b.addEventListener("sourceopen",()=>{this.timeoutSourceOpenId&&clearTimeout(this.timeoutSourceOpenId),h()},{once:!0})})}if(!this.isLive$.getValue()){let p=[(f=this.manifest.duration)!=null?f:0,...(0,sc.default)((0,sc.default)([...this.manifest.streams.audio,...this.manifest.streams.video],h=>h.representations),h=>{let b=[];return h.duration&&b.push(h.duration),at(h.segmentReference)&&h.segmentReference.totalSegmentsDurationMs&&b.push(h.segmentReference.totalSegmentsDurationMs),b})];this.source.duration=Math.max(...p)/1e3}this.audioBufferManager&&(0,y.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,s;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||(s=this.audioBufferManager)!=null&&s.gaps.length)&&!this.gapWatchdogActive&&(this.gapWatchdogActive=!0,this.gapWatchdogSubscription=(0,y.interval)(this.tuning.gapWatchdogInterval).subscribe(()=>this.jumpGap(),n=>{this.error$.next({id:"GapWatchdog",category:y.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.fetcher=new so({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.liveBuffer=Gt.getLiveBufferSmoothedValue(this.tuning.dashCmafLive.lowLatency.maxTargetOffset,{...e.tuning.dashCmafLive.lowLatency.bufferEstimator}),this.initTracerSubscription()}async seekLive(e){var r,s,n;(0,y.assertNonNullable)(this.element);let t=this.liveStreamStatus$.getValue()!=="active"?(0,y.now)()-this.liveStreamEndTimestamp:0,i=this.normolizeLiveOffset(e+t);this.isActiveLive$.next(i===0),this.manifestUrlString=xe(this.manifestUrlString,i,2),this.manifest=await this.updateManifest(),this.manifest&&(this.isJumpGapAfterSeekLive=!0,await((r=this.videoBufferManager)==null?void 0:r.seekLive(this.manifest.streams.video)),await((s=this.audioBufferManager)==null?void 0:s.seekLive(this.manifest.streams.audio)),(n=this.liveTextManager)==null||n.seekLive(this.manifest.streams.text))}initBuffer(){(0,y.assertNonNullable)(this.element),this.state$.setState("running");let e=(0,y.fromEvent)(this.element,"timeupdate");this.tuning.dash.timeupdateEventTickThrottle&&(e=e.pipe((0,y.throttle)(this.tuning.dash.timeupdateEventTickThrottle))),this.subscription.add((0,y.merge)(...l$.map(t=>(0,y.fromEvent)(this.element,t)),(0,y.fromEvent)(window,"online"),e).subscribe(()=>this.tick(),t=>{this.error$.next({id:"DashVKPlayer",category:y.ErrorCategory.WTF,message:"Internal logic error",thrown:t})})),this.subscription.add((0,y.fromEvent)(this.element,"progress").subscribe(()=>{this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&(this.element.currentTime=this.element.currentTime)})),this.subscription.add((0,y.fromEvent)(this.element,"waiting").subscribe(()=>{var i;this.element&&this.element.readyState===HTMLMediaElement.HAVE_CURRENT_DATA&&!this.element.seeking&&_e(this.element.buffered,this.element.currentTime*1e3)&&(this.element.currentTime=this.element.currentTime);let t=()=>{var h,b,g,v,E,I,A,P,C,N,O;if(!this.element||((h=this.source)==null?void 0:h.readyState)!=="open")return;let r=this.currentStallDuration$.getValue();r+=50,this.currentStallDuration$.next(r);let s={timeInWaiting:r},n=(0,y.now)(),o=100,u=(g=(b=this.videoBufferManager)==null?void 0:b.lastDataObtainedTimestamp)!=null?g:0;this.videoLastDataObtainedTimestamp$.next(u);let l=(E=(v=this.audioBufferManager)==null?void 0:v.lastDataObtainedTimestamp)!=null?E:0,c=(A=(I=this.videoBufferManager)==null?void 0:I.getForwardBufferDuration())!=null?A:0,d=(C=(P=this.audioBufferManager)==null?void 0:P.getForwardBufferDuration())!=null?C:0,f=c<o&&n-u>this.tuning.dash.crashOnStallTWithoutDataTimeout,p=this.audioBufferManager&&d<o&&n-l>this.tuning.dash.crashOnStallTWithoutDataTimeout;if((f||p)&&r>this.tuning.dash.crashOnStallTWithoutDataTimeout||r>=this.tuning.dash.crashOnStallTimeout)throw new Error(`Stall timeout exceeded: ${r} ms`);if(this.isLive$.getValue()&&r%2e3===0){let B=this.normolizeLiveOffset(-1*this.livePositionFromPlayer$.getValue()*1e3);this.seekLive(B).catch(V=>{this.error$.next({id:"stallIntervalCallback",category:y.ErrorCategory.VIDEO_PIPELINE,message:"stallIntervalCallback failed",thrown:V})}),s.liveLastOffset=B}else{let B=this.element.currentTime*1e3;(N=this.videoBufferManager)==null||N.maintain(B),(O=this.audioBufferManager)==null||O.maintain(B),s.position=B}this.tracer.log("stallIntervalCallback",(0,y.flattenObject)(s))};(i=this.stallWatchdogSubscription)==null||i.unsubscribe(),this.stallWatchdogSubscription=(0,y.interval)(50).subscribe(t,r=>{this.error$.next({id:"StallWatchdogCallback",category:y.ErrorCategory.NETWORK,message:"Can't restore DASH after stall.",thrown:r})}),this.subscription.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,s,n,o,u;(0,y.assertNonNullable)(this.element),(0,y.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=(s=this.audioBufferManager)==null?void 0:s.findSegmentStartTime(e))!=null?n:e),this.warmUpMediaSourceIfNeeded(i),_e(this.element.buffered,i)||await Promise.all([this.videoBufferManager.abort(),(o=this.audioBufferManager)==null?void 0:o.abort()]),!((0,y.isNullable)(this.element)||(0,y.isNullable)(this.videoBufferManager))&&(this.videoBufferManager.maintain(i),(u=this.audioBufferManager)==null||u.maintain(i),this.element.currentTime=i/1e3,this.tracer.log("seek",(0,y.flattenObject)({requestedPosition:e,forcePrecise:t,position:i})))}warmUpMediaSourceIfNeeded(e=(t=>(t=this.element)==null?void 0:t.currentTime)()){var i;(0,y.isNonNullable)(this.element)&&(0,y.isNonNullable)(this.source)&&(0,y.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}setPreloadOnly(e){for(let t of this.bufferManagers)t.setPreloadOnly(e)}destroy(){var e;this.subscription.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,y.getTraceSubscriptionMethod)(this.tracer.error.bind(this.tracer));this.subscription.add(this.error$.subscribe(e("error")))}isManualDecreasePlaybackInLive(){return!this.element||!this.isLive$.getValue()?!1:1-this.element.playbackRate>this.tuning.dashCmafLive.lowLatency.playbackCatchupSpeedup}normolizeLiveOffset(e){return Math.trunc(e/1e3)*1e3}async updateLive(){var e,t;this.isUpdatingLive=!0,this.manifest=await this.updateManifest(),this.manifest&&((e=this.bufferManagers)==null||e.forEach(i=>i.updateLive(this.manifest)),(t=this.liveTextManager)==null||t.updateLive(this.manifest)),this.isUpdatingLive=!1}jumpGap(){if(!this.element||!this.videoBufferManager)return;let e=this.videoBufferManager.getBufferedTo();if(e===null)return;let t=this.isActiveLive$.getValue()&&this.isLowLatency$.getValue(),i=this.isJumpGapAfterSeekLive,r=this.element.currentTime;this.isJumpGapAfterSeekLive&&!t&&this.element.currentTime>e&&(this.isJumpGapAfterSeekLive=!1,this.element.currentTime=0);let s=this.element.currentTime*1e3,n=null,o=this.element.readyState===HTMLMediaElement.HAVE_METADATA?this.tuning.endGapTolerance:0;for(let u of this.bufferManagers)for(let l of u.gaps)(l.persistent||u.playingRepresentation$.getValue()===l.representation)&&l.from-o<=s&&l.to+o>s&&(this.element.duration*1e3-l.to<this.tuning.endGapTolerance?n=1/0:(n===null||l.to>n)&&(n=l.to));if(n!==null){let u=n+10;this.gapWatchdogSubscription.unsubscribe(),this.gapWatchdogActive=!1,u===1/0?this.forceEnded$.next():(this.element.currentTime=u/1e3,this.tracer.log("jumpGap",(0,y.flattenObject)({isJumpGapAfterSeekLive:i,isActiveLowLatency:t,initialCurrentTime:r,jumpTo:u,resultCurrentTime:this.element.currentTime})))}}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 Ye=require("@vkontakte/videoplayer-shared/es2018"),uo=class{constructor(){this.subscription=new Ye.Subscription;this.pipSize$=new Ye.ValueSubject(void 0);this.videoSize$=new Ye.ValueSubject(void 0);this.elementSize$=new Ye.ValueSubject(void 0);this.pictureInPictureWindowRemoveEventListener=Ye.noop}connect({observableVideo:e,video:t}){let i=r=>{let s=r.target;this.pipSize$.next({width:s.width,height:s.height})};this.subscription.add((0,Ye.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,Ye.combine)({videoSize:this.videoSize$,pipSize:this.pipSize$,inPip:e.inPiP$}).pipe((0,Ye.map)(({videoSize:r,inPip:s,pipSize:n})=>s?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 Ui=class{constructor(e){this.subscription=new J.Subscription;this.videoState=new re("stopped");this.observableVideo=null;this.droppedFramesManager=new vr;this.stallsManager=new Kn;this.elementSizeManager=new uo;this.videoTracksMap=new Map;this.audioTracksMap=new Map;this.textTracksMap=new Map;this.videoStreamsMap=new Map;this.audioStreamsMap=new Map;this.videoTrackSwitchHistory=new li;this.audioTrackSwitchHistory=new li;this.selectedRepresentations={audio:null,video:null};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.hostname$.next(void 0),this.videoState.setState("stopped"),F(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"),F(this.params.desiredState.playbackState,"paused")):t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="ready"&&F(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"&&F(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&F(this.params.desiredState.playbackState,"paused");return;default:return(0,J.assertNever)(e)}}};this.init3DScene=e=>{var i,r,s;if(this.scene3D)return;this.scene3D=new kr(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:((s=e.projectionData)==null?void 0:s.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 lt(e.source.url),this.params=e,this.video=He(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(Ve(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 oo({throughputEstimator:this.params.dependencies.throughputEstimator,tuning:this.params.tuning,compatibilityMode:this.params.source.compatibilityMode,tracer:this.tracer}),this.subscribe()}getProviderSubscriptionInfo(){let{output:e,desiredState:t}=this.params;(0,J.isNullable)(this.observableVideo)&&(this.observableVideo=Ge(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:J.ErrorCategory.WTF,message:`${i} internal logic error`,thrown:n})},s=(n,o)=>this.subscription.add(n.subscribe(o,r));return{output:e,desiredState:t,observableVideo:this.observableVideo,genericErrorListener:r,connect:s}}subscribe(){let{output:e,desiredState:t,observableVideo:i,genericErrorListener:r,connect:s}=this.getProviderSubscriptionInfo();this.subscription.add(this.params.output.availableVideoTracks$.pipe((0,J.filter)(d=>!!d.length),(0,J.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,J.map)(d=>d.to.state!=="none"),(0,J.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$}),s(i.ended$,e.endedEvent$),s(i.looped$,e.loopedEvent$),s(i.error$,e.error$),s(i.isBuffering$,e.isBuffering$),s(i.currentBuffer$,e.currentBuffer$),s(i.playing$,e.firstFrameEvent$),s(i.canplay$,e.canplay$),s(i.inPiP$,e.inPiP$),s(i.inFullscreen$,e.inFullscreen$),s(i.loadedMetadata$,e.loadedMetadataEvent$),s(this.player.error$,e.error$),s(this.player.fetcherRecoverableError$,e.fetcherRecoverableError$),s(this.player.fetcherError$,e.fetcherError$),s(this.player.lastConnectionType$,e.httpConnectionType$),s(this.player.lastConnectionReused$,e.httpConnectionReused$),s(this.player.isLive$,e.isLive$),s(this.player.lastRequestFirstBytes$.pipe((0,J.filter)(J.isNonNullable),(0,J.once)()),e.firstBytesEvent$),s(this.stallsManager.severeStallOccurred$,e.severeStallOccurred$),s(this.videoState.stateChangeEnded$.pipe((0,J.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(kt(this.video,t.isLooped,r)),this.subscription.add(Qe(this.video,t.volume,i.volumeState$,r)),this.subscription.add(i.volumeState$.subscribe(this.params.output.volume$,r)),this.subscription.add(ut(this.video,t.playbackRate,i.playbackRateState$,r)),this.elementSizeManager.connect({video:this.video,observableVideo:i}),s(ct(this.video,{threshold:this.params.tuning.autoTrackSelection.activeVideoAreaThreshold}),e.elementVisible$),this.subscription.add(i.playing$.subscribe(()=>{this.videoState.setState("playing"),F(t.playbackState,"playing"),this.scene3D&&this.scene3D.play()},r)).add(i.pause$.subscribe(()=>{this.videoState.setState("paused"),F(t.playbackState,"paused")},r)).add(i.canplay$.subscribe(()=>{this.videoState.getState()==="playing"&&this.playIfAllowed()},r)),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 f=this.player.getStreams();if((0,J.assertNonNullable)(f,"Manifest not loaded or empty"),!this.params.tuning.isAudioDisabled){let h=[];for(let b of f.audio){h.push(tc(b));let g=[];for(let v of b.representations){let E=zv(v);g.push(E),this.audioTracksMap.set(E,{stream:b,representation:v})}this.audioStreamsMap.set(b,g)}this.params.output.availableAudioStreams$.next(h)}let p=[];for(let h of f.video){p.push(ic(h));let b=[];for(let g of h.representations){let v=Wv({...g,streamId:h.id});v&&(b.push(v),this.videoTracksMap.set(v,{stream:h,representation:g}))}this.videoStreamsMap.set(h,b)}this.params.output.availableVideoStreams$.next(p);for(let h of f.text)for(let b of h.representations){let g=Yv(h,b);this.textTracksMap.set(g,{stream:h,representation:b})}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),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{vktvAbrThrottle:o}=this.params.tuning.dash,u=o&&Jv(o)||null;this.subscription.add((0,J.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,J.fromEvent)(this.video,"progress")).pipe((0,J.filter)(()=>this.videoTracksMap.size>0)).subscribe(async()=>{let d=this.player.state$.getState(),f=this.player.state$.getTransition();if(d!=="manifest_ready"&&d!=="running"||f||d==="running"&&u&&!u())return;t.autoVideoTrackSwitching.getTransition()&&t.autoVideoTrackSwitching.setState(t.autoVideoTrackSwitching.getState()),this.selectVideoAudioRepresentations();let{video:p,audio:h}=this.selectedRepresentations;if(!p)return;let b=Fi(this.videoTracksMap.keys(),v=>{var E;return((E=this.videoTracksMap.get(v))==null?void 0:E.representation.id)===p.id});(0,J.isNonNullable)(b)&&(this.stallsManager.lastVideoTrackSelected=b);let g=this.params.desiredState.autoVideoTrackLimits.getTransition();if(g&&this.params.output.autoVideoTrackLimits$.next(g.to),d==="manifest_ready")await this.player.initRepresentations(p.id,h==null?void 0:h.id,this.params.sourceHls);else if(await this.player.switchRepresentation("video",p.id),h){let v=!!t.audioStream.getTransition();await this.player.switchRepresentation("audio",h.id,v)}},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,J.filterChanged)()).subscribe(d=>{let f=Fi(this.videoTracksMap.entries(),([,{representation:v}])=>v.id===d);if(!f){e.currentVideoTrack$.next(void 0),e.currentVideoStream$.next(void 0);return}let[p,{stream:h}]=f,b=this.params.desiredState.videoStream.getTransition();b&&b.to&&b.to.id===h.id&&this.params.desiredState.videoStream.setState(b.to),e.currentVideoTrack$.next(p),e.currentVideoStream$.next(ic(h));let g=this.player.calculateDurationFromSegments();g&&this.params.output.duration$.next(g/1e3)},r)),this.subscription.add(this.player.currentAudioRepresentation$.pipe((0,J.filterChanged)()).subscribe(d=>{let f=Fi(this.audioTracksMap.entries(),([,{representation:g}])=>g.id===d);if(!f){e.currentAudioStream$.next(void 0);return}let[p,{stream:h}]=f,b=this.params.desiredState.audioStream.getTransition();b&&b.to&&b.to.id===h.id&&this.params.desiredState.audioStream.setState(b.to),e.currentAudioStream$.next(tc(h))},r)),this.subscription.add(this.player.currentVideoRepresentationInit$.subscribe(d=>{var f,p;if(d!=null&&d.is3dVideo&&((f=this.params.tuning.spherical)!=null&&f.enabled))try{this.init3DScene(d),e.is3DVideo$.next(!0)}catch(h){e.warning$.next({id:"DashProvider",message:`DashProvider could not initialize 3D-scene: ${h}`})}else this.destroy3DScene(),(p=this.params.tuning.spherical)!=null&&p.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 l=t.playbackState.stateChangeStarted$.pipe((0,J.map)(({to:d})=>d==="ready"),(0,J.filterChanged)());this.subscription.add((0,J.merge)(l,t.autoVideoTrackSwitching.stateChangeStarted$,this.player.state$.stateChangeEnded$,(0,J.observableFrom)(["init"])).subscribe(()=>{let d=t.autoVideoTrackSwitching.getState(),p=t.playbackState.getState()==="ready"?this.params.tuning.dash.forwardBufferTargetPreload:d?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;this.player.setBufferTarget(p)})),this.subscription.add((0,J.merge)(l,this.player.state$.stateChangeEnded$,(0,J.observableFrom)(["init"])).subscribe(()=>this.player.setPreloadOnly(t.playbackState.getState()==="ready")));let c=(0,J.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,this.videoState.stateChangeEnded$,(0,J.observableFrom)(["init"])).pipe((0,J.debounce)(0));this.subscription.add(c.subscribe(this.syncPlayback,r))}selectVideoAudioRepresentations(){var O,B,V,H,U,G,ue,le,w,_,$,M;if(this.player.isStreamEnded)return;let e=this.params.tuning.useNewAutoSelectVideoTrack?fa:ha,t=this.params.tuning.useNewAutoSelectVideoTrack?wn:xn,i=this.params.tuning.useNewAutoSelectVideoTrack?Lt:En,{desiredState:r,output:s}=this.params,n=r.autoVideoTrackSwitching.getState(),o=(O=r.videoTrack.getState())==null?void 0:O.id,u=Fi(this.videoTracksMap.keys(),q=>q.id===o),l=s.currentVideoTrack$.getValue(),c=((H=(V=r.videoStream.getState())!=null?V:u&&((B=this.videoTracksMap.get(u))==null?void 0:B.stream))!=null?H:this.videoStreamsMap.size===1)?this.videoStreamsMap.keys().next().value:void 0;if(!c)return;let d=Fi(this.videoStreamsMap.keys(),q=>q.id===c.id),f=d&&this.videoStreamsMap.get(d);if(!f)return;let p=$e(this.video.buffered,this.video.currentTime*1e3),h;this.player.isActiveLive$.getValue()?h=this.player.isLowLatency$.getValue()?this.params.tuning.dashCmafLive.lowLatency.maxTargetOffset:this.params.tuning.dashCmafLive.normalizedLiveMinBufferSize:this.player.isLive$.getValue()?h=this.params.tuning.dashCmafLive.normalizedTargetMinBufferSize:h=n?this.params.tuning.dash.forwardBufferTargetAuto:this.params.tuning.dash.forwardBufferTargetManual;let b=(this.video.duration*1e3||1/0)-this.video.currentTime*1e3,g=Math.min(p/Math.min(h,b||1/0),1),v=(U=r.audioStream.getState())!=null?U:this.audioStreamsMap.size===1?this.audioStreamsMap.keys().next().value:void 0,E=(v==null?void 0:v.id)&&Fi(this.audioStreamsMap.keys(),q=>q.id===v.id)||this.audioStreamsMap.keys().next().value,I=0;if(E){if(u&&!n){let q=e(u,f,(G=this.audioStreamsMap.get(E))!=null?G:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,(ue=q==null?void 0:q.bitrate)!=null?ue:-1/0)}if(l){let q=e(l,f,(le=this.audioStreamsMap.get(E))!=null?le:[],this.params.tuning.autoTrackSelection.minVideoAudioRatio);I=Math.max(I,(w=q==null?void 0:q.bitrate)!=null?w:-1/0)}}let A=u;(n||!A)&&(A=i(f,{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:I,forwardBufferHealth:g,current:l,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 P=E&&t(A,f,(_=this.audioStreamsMap.get(E))!=null?_:[],{estimatedThroughput:this.params.dependencies.throughputEstimator.rttAdjustedThroughput$.getValue(),stallsPredictedThroughput:this.stallsManager.predictedThroughput,tuning:this.stallsManager.abrTuningParams,forwardBufferHealth:g,history:this.audioTrackSwitchHistory,playbackRate:this.video.playbackRate,abrLogger:this.params.dependencies.abrLogger}),C=($=this.videoTracksMap.get(A))==null?void 0:$.representation,N=P&&((M=this.audioTracksMap.get(P))==null?void 0:M.representation);C&&N?(this.selectedRepresentations.video=C,this.selectedRepresentations.audio=N):C&&!N&&this.audioTracksMap.size===0&&(this.selectedRepresentations.video=C,this.selectedRepresentations.audio=null)}prepare(e=0){this.player.initManifest(this.video,this.params.source.url,e)}playIfAllowed(){We(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),F(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:J.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),je(this.video),this.tracer.end()}};var as=class extends Ui{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 he=require("@vkontakte/videoplayer-shared/es2018");var ss=class extends Ui{constructor(e){super(e),this.textTracksManager.destroy()}subscribe(){super.subscribe();let e=!1,t=-1,{output:i,observableVideo:r,desiredState:s,connect:n}=this.getProviderSubscriptionInfo();this.params.output.position$.next(0),this.params.output.isLive$.next(!0),n(r.timeUpdate$,i.liveBufferTime$),n(this.player.liveSeekableDuration$,i.duration$),n(this.player.liveLatency$,i.liveLatency$);let o=new he.ValueSubject(1);n(r.playbackRateState$,o),this.params.tuning.dashCmafLive.catchupLiveForMutedInactiveTab&&this.subscription.add(i.elementVisible$.pipe((0,he.filterChanged)()).subscribe(u=>{let l=i.position$.getValue(),c=i.volume$.getValue(),d=!c.volume||c.muted;!u&&!l&&d?e=!0:u&&e&&(this.seek(0),e=!1)})),this.subscription.add(this.params.output.position$.subscribe(this.player.livePositionFromPlayer$)).add(s.isLowLatency.stateChangeEnded$.pipe((0,he.map)(u=>u.to)).subscribe(this.player.isLowLatency$)).add((0,he.combine)({liveBufferTime:i.liveBufferTime$,liveAvailabilityStartTime:this.player.liveAvailabilityStartTime$}).pipe((0,he.map)(({liveBufferTime:u,liveAvailabilityStartTime:l})=>u&&l?u+l:void 0)).subscribe(i.liveTime$)).add(this.player.liveStreamStatus$.pipe((0,he.filter)(u=>(0,he.isNonNullable)(u))).subscribe(u=>i.isLiveEnded$.next(u!=="active"&&i.position$.getValue()===0))).add((0,he.combine)({liveDuration:this.player.liveDuration$,liveStreamStatus:this.player.liveStreamStatus$,playbackRate:(0,he.merge)(r.playbackRateState$,new he.ValueSubject(1))}).pipe((0,he.filter)(({liveStreamStatus:u,liveDuration:l})=>u==="active"&&!!l)).subscribe(({liveDuration:u,playbackRate:l})=>{let c=i.liveBufferTime$.getValue(),d=i.position$.getValue(),{playbackCatchupSpeedup:f}=this.params.tuning.dashCmafLive.lowLatency;d||l<1-f||this.video.paused||(0,he.isNullable)(c)||(t=u-c)})).add((0,he.combine)({time:i.liveBufferTime$,liveDuration:this.player.liveDuration$,playbackRate:(0,he.merge)(r.playbackRateState$,new he.ValueSubject(1))}).pipe((0,he.filterChanged)((u,l)=>this.player.liveStreamStatus$.getValue()==="active"?u.liveDuration===l.liveDuration:u.time===l.time)).subscribe(({time:u,liveDuration:l,playbackRate:c})=>{let d=i.position$.getValue(),{playbackCatchupSpeedup:f}=this.params.tuning.dashCmafLive.lowLatency;if(!d&&!this.video.paused&&c>=1-f||(0,he.isNullable)(u)||(0,he.isNullable)(l))return;let p=-1*(l-u-t);i.position$.next(Math.min(p,0))})).add(this.player.currentLiveTextRepresentation$.subscribe(u=>{if(u){let l=Kv(u);this.params.output.availableTextTracks$.next([l])}}))}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 ty="X-Playback-Duration",nc=async a=>{var r;let e=await dt(a),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(ty)?parseInt(e.headers.get(ty),10):void 0};var ae=require("@vkontakte/videoplayer-shared/es2018");var uc=z(xu(),1);var lo=require("@vkontakte/videoplayer-shared/es2018");var p$=a=>{let e=null;if(a.QUALITY&&(e=ui(a.QUALITY)),!e&&a.RESOLUTION){let[t,i]=a.RESOLUTION.split("x").map(r=>parseInt(r,10));e=(0,lo.videoSizeToQuality)({width:t,height:i})}return e!=null?e:null},h$=(a,e)=>{var s,n;let t=a.split(`
179
+ `),i=[],r=[];for(let o=0;o<t.length;o++){let u=t[o],l=u.match(/^#EXT-X-STREAM-INF:(.+)/),c=u.match(/^#EXT-X-MEDIA:TYPE=SUBTITLES,(.+)/);if(!(!l&&!c)){if(l){let d=(0,uc.default)(l[1].split(",").map(E=>E.split("="))),f=(s=d.QUALITY)!=null?s:`stream-${d.BANDWIDTH}`,p=p$(d),h;d.BANDWIDTH&&(h=parseInt(d.BANDWIDTH,10)/1e3||void 0),!h&&d["AVERAGE-BANDWIDTH"]&&(h=parseInt(d["AVERAGE-BANDWIDTH"],10)/1e3||void 0);let b=d["FRAME-RATE"]?parseFloat(d["FRAME-RATE"]):void 0,g;if(d.RESOLUTION){let[E,I]=d.RESOLUTION.split("x").map(A=>parseInt(A,10));E&&I&&(g={width:E,height:I})}let v=new URL(t[++o],e).toString();p&&i.push({id:f,quality:p,url:v,bandwidth:h,size:g,fps:b})}if(c){let d=(0,uc.default)(c[1].split(",").map(b=>{let g=b.indexOf("=");return[b.substring(0,g),b.substring(g+1)]}).map(([b,g])=>[b,g.replace(/^"|"$/g,"")])),f=(n=d.URI)==null?void 0:n.replace(/playlist$/,"subtitles.vtt"),p=d.LANGUAGE,h=d.NAME;f&&p&&r.push({type:"internal",id:p,label:h,language:p,url:f,isAuto:!1})}}}if(!i.length)throw new Error("Empty manifest");return{qualityManifests:i,textTracks:r}},f$=a=>new Promise(e=>{setTimeout(()=>{e()},a)}),oc=0,iy=async(a,e=a,t,i)=>{let s=await(await dt(a,i)).text();oc+=1;try{let{qualityManifests:n,textTracks:o}=h$(s,e);return{qualityManifests:n,textTracks:o}}catch(n){if(oc<=t.manifestRetryMaxCount)return await f$((0,lo.getExponentialDelay)(oc-1,{start:t.manifestRetryInterval,max:t.manifestRetryMaxInterval})),iy(a,e,t)}return{qualityManifests:[],textTracks:[]}},co=iy;var st=require("@vkontakte/videoplayer-shared/es2018");var po=class{constructor(e,t,i,r,s){this.subscription=new st.Subscription;this.abortControllers={destroy:new ce,nextManifest:null};this.prepareUrl=void 0;this.currentTextTrackData=null;this.availableTextTracks$=new st.ValueSubject(null);this.getCurrentTime$=new st.ValueSubject(null);this.error$=new st.Subject;this.params={fetchManifestData:i,sourceUrl:r,downloadThreshold:s},this.subscription.add(e.pipe((0,st.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 dt(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
+ `),s=0;for(let n=0;n<r.length;++n){let o=r[n];switch(!0){case o.startsWith("#EXTINF:"):{let u=r[++n],l=new URL(u,t).toString(),c=Number(this.extractPlaylistRowValue("#EXTINF:",o))*1e3;if(i.segments.push({time:{from:s,to:s+c},url:l}),s=s+c,!i.segmentStartTime){let d=new Date(i.vkStartTime).valueOf(),f=new Date(i.programDateTime).valueOf();i.segmentStartTime=f-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 l=new Date(u);l.setMilliseconds(0),s=l.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,st.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 ce;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:st.ErrorCategory.WTF,thrown:t,message:e})}};var ns=class{constructor(e){this.subscription=new ae.Subscription;this.videoState=new re("stopped");this.textTracksManager=null;this.liveTextManager=null;this.manifests$=new ae.ValueSubject([]);this.liveOffset=new Mi;this.manifestStartTime$=new ae.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(),s=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.hostname$.next(void 0),this.videoState.setState("stopped"),F(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c),this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:-this.liveOffset.getTotalOffset(),forcePrecise:!0});return}if((r==null?void 0:r.to)!=="paused"&&l.state==="requested"){this.videoState.startTransitionTo("ready"),this.seek(l.position&&l.position-this.liveOffset.getTotalPausedTime()),this.prepare();return}switch(t){case"ready":i==="ready"?F(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),this.liveOffset.pause(),F(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"&&F(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 c=this.liveOffset.getTotalOffset();c>=this.maxSeekBackTime$.getValue()&&(c=0,this.liveOffset.resetTo(c)),this.liveOffset.resume(),this.params.output.position$.next(-c/1e3),this.prepare()}else(r==null?void 0:r.to)==="paused"&&(F(this.params.desiredState.playbackState,"paused"),this.liveOffset.pause());return;case"changing_manifest":break;default:return(0,ae.assertNever)(t)}};var i;this.params=e,this.video=He(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:ae.VideoQuality.INVARIANT,url:this.params.source.url};let t=(r,s)=>co(r,this.params.source.url,{manifestRetryInterval:this.params.tuning.manifestRetryInterval,manifestRetryMaxInterval:this.params.tuning.manifestRetryMaxInterval,manifestRetryMaxCount:this.params.tuning.manifestRetryMaxCount},s);this.params.tuning.useHlsLiveNewTextManager?this.liveTextManager=new po(this.params.output.liveTime$,this.video,t,this.params.source.url,this.params.tuning.hlsLiveNewTextManagerDownloadThreshold):this.textTracksManager=new lt(e.source.url),t(this.generateLiveUrl()).then(({qualityManifests:r,textTracks:s})=>{var n;r.length===0&&this.params.output.error$.next({id:"HlsLiveProviderInternal:empty_manifest",category:ae.ErrorCategory.WTF,message:"HlsLiveProvider: there are no qualities in manifest"}),(n=this.liveTextManager)==null||n.processTextTracks(s,this.params.source.url),this.manifests$.next([this.masterManifest,...r])}).catch(r=>{this.params.output.error$.next({id:"ExtractHlsQualities",category:ae.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(Ve(this.params.source.url)),this.params.output.availableTextTracks$.next([]),this.params.desiredState.internalTextTracks.setState([]),this.maxSeekBackTime$=new ae.ValueSubject((i=e.source.maxSeekBackTime)!=null?i:1/0),this.subscribe()}selectManifest(){var u,l,c,d;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),s=(d=(c=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?c:(l=t.getState())==null?void 0:l.id)!=null?d:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&!r&&t.startTransitionTo(this.masterManifest),n.find(f=>f.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsLiveProvider",category:ae.ErrorCategory.WTF,message:"HlsLiveProvider internal logic error",thrown:o})},r=Ge(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(r.ended$,e.endedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),this.subscription.add(t.isLooped.stateChangeStarted$.subscribe(()=>t.isLooped.setState(!1),i)),this.subscription.add(Qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ut(this.video,t.playbackRate,r.playbackRateState$,i)),s(ct(this.video),e.elementVisible$),this.liveTextManager?(s(this.liveTextManager.getCurrentTime$,this.params.output.getCurrentTime$),s(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"),F(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),F(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,ae.filterChanged)(),(0,ae.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(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,ae.isNonNullable)(l.to)){let d=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let f=this.manifests$.getValue().find(p=>p.id===d);f&&(this.params.output.currentVideoTrack$.next(f),this.params.output.hostname$.next(Ve(f.url)))}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.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,l,c;let o=(c=(l=(u=this.video)==null?void 0:u.getStartDate)==null?void 0:l.call(u))==null?void 0:c.getTime();this.manifestStartTime$.next(o||void 0)},i)),this.subscription.add((0,ae.combine)({startTime:this.manifestStartTime$.pipe((0,ae.filter)(ae.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,ae.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:d,fps:f})=>({id:u,quality:l,size:c,fps:f,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i));let n=(0,ae.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,ae.observableFrom)(["init"])).pipe((0,ae.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),je(this.video)}prepare(){var o,u,l;let e=this.selectManifest();if((0,ae.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:c,min:d}=(u=(o=t==null?void 0:t.to)!=null?o:i)!=null?u:{};for(let[f,p]of[[c,"mq"],[d,"lq"]]){let h=String(parseFloat(f||""));p&&f&&r.searchParams.set(p,h)}}let s=this.params.format==="HLS_LIVE_CMAF"?2:0,n=xe(r.toString(),this.liveOffset.getTotalOffset(),s);(l=this.liveTextManager)==null||l.prepare(n),this.video.setAttribute("src",n),this.video.load(),nc(n).then(c=>{var d;if(!(0,ae.isNullable)(c))this.maxSeekBackTime$.next(c);else{let f=(d=this.params.source.maxSeekBackTime)!=null?d:this.maxSeekBackTime$.getValue();((0,ae.isNullable)(f)||!isFinite(f))&&dt(n).then(p=>p.text()).then(p=>{var b;let h=(b=/#EXT-X-STREAM-INF[^\n]+\n(.+)/m.exec(p))==null?void 0:b[1];if(h){let g=new URL(h,n).toString();nc(g).then(v=>{(0,ae.isNullable)(v)||this.maxSeekBackTime$.next(v)})}}).catch(()=>{})}})}playIfAllowed(){We(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),this.liveOffset.pause(),F(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ae.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=xe(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 oe=require("@vkontakte/videoplayer-shared/es2018");var os=class{constructor(e){this.subscription=new oe.Subscription;this.videoState=new re("stopped");this.manifests$=new oe.ValueSubject([]);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(),s=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.hostname$.next(void 0),this.videoState.setState("stopped"),F(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let l=this.params.desiredState.seekState.getState();if(t==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s||n||o){let c=this.videoState.getState();this.videoState.setState("changing_manifest"),this.videoState.startTransitionTo(c);let{currentTime:d}=this.video;this.prepare(),o&&this.params.output.autoVideoTrackLimits$.next(o.to),l.state==="none"&&this.params.desiredState.seekState.setState({state:"requested",position:d*1e3,forcePrecise:!0});return}switch((r==null?void 0:r.to)!=="paused"&&l.state==="requested"&&this.seek(l.position),t){case"ready":i==="ready"?F(this.params.desiredState.playbackState,"ready"):i==="paused"?(this.videoState.setState("paused"),F(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"&&F(this.params.desiredState.playbackState,"playing");return;case"paused":i==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(r==null?void 0:r.to)==="paused"&&F(this.params.desiredState.playbackState,"paused");return;case"changing_manifest":break;default:return(0,oe.assertNever)(t)}};this.textTracksManager=new lt(e.source.url),this.params=e,this.video=He(e.container,e.tuning),this.params.output.element$.next(this.video),this.masterManifest={id:"master",quality:oe.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(Ve(this.params.source.url)),this.params.output.autoVideoTrackLimitingAvailable$.next(!0),co(xe(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.manifests$.next([this.masterManifest,...t]),this.params.tuning.useNativeHLSTextTracks||this.params.desiredState.internalTextTracks.startTransitionTo(i)},t=>this.params.output.error$.next({id:"ExtractHlsQualities",category:oe.ErrorCategory.NETWORK,message:"Error fetching manifest and extracting qualities",thrown:t})),this.subscribe()}selectManifest(){var u,l,c,d;let{autoVideoTrackSwitching:e,videoTrack:t}=this.params.desiredState,i=e.getState(),r=t.getTransition(),s=(d=(c=(u=r==null?void 0:r.to)==null?void 0:u.id)!=null?c:(l=t.getState())==null?void 0:l.id)!=null?d:"master",n=this.manifests$.getValue();if(!n.length)return;let o=i?"master":s;return i&&(!r||!r.from)&&t.startTransitionTo(this.masterManifest),n.find(f=>f.id===o)}subscribe(){let{output:e,desiredState:t}=this.params,i=o=>{e.error$.next({id:"HlsProvider",category:oe.ErrorCategory.WTF,message:"HlsProvider internal logic error",thrown:o})},r=Ge(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u));if(s(r.timeUpdate$,e.position$),s(r.durationChange$,e.duration$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.seeked$,e.seekedEvent$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,oe.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(kt(this.video,t.isLooped,i)),this.subscription.add(Qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ut(this.video,t.playbackRate,r.playbackRateState$,i)),this.textTracksManager.connect(this.video,t,e),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),F(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),F(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 p;let o=this.params.desiredState.seekState.getState(),u=this.videoState.getTransition(),l=this.params.desiredState.videoTrack.getTransition(),c=this.params.desiredState.autoVideoTrackSwitching.getTransition();if(l&&(0,oe.isNonNullable)(l.to)){let h=l.to.id;this.params.desiredState.videoTrack.setState(l.to);let b=this.manifests$.getValue().find(g=>g.id===h);b&&(this.params.output.currentVideoTrack$.next(b),this.params.output.hostname$.next(Ve(b.url)))}let d=this.params.desiredState.playbackRate.getState(),f=(p=this.params.output.element$.getValue())==null?void 0:p.playbackRate;if(d!==f){let h=this.params.output.element$.getValue();h&&(this.params.desiredState.playbackRate.setState(d),h.playbackRate=d)}c&&this.params.desiredState.autoVideoTrackSwitching.setState(c.to),u&&u.from==="changing_manifest"&&this.videoState.setState(u.to),o.state==="requested"&&this.seek(o.position)},i))),this.subscription.add(this.manifests$.pipe((0,oe.map)(o=>o.map(({id:u,quality:l,size:c,bandwidth:d,fps:f})=>({id:u,quality:l,size:c,fps:f,bitrate:d})))).subscribe(this.params.output.availableVideoTracks$,i)),!Y.device.isIOS||!this.params.tuning.useNativeHLSTextTracks){let{textTracks:o}=this.video;this.subscription.add((0,oe.merge)((0,oe.fromEvent)(o,"addtrack"),(0,oe.fromEvent)(o,"removetrack"),(0,oe.fromEvent)(o,"change"),(0,oe.observableFrom)(["init"])).subscribe(()=>{for(let u=0;u<o.length;u++)o[u].mode="hidden"},i))}let n=(0,oe.merge)(t.playbackState.stateChangeStarted$,t.seekState.stateChangeEnded$,t.videoTrack.stateChangeStarted$,t.autoVideoTrackSwitching.stateChangeStarted$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,this.manifests$,(0,oe.observableFrom)(["init"])).pipe((0,oe.debounce)(0));this.subscription.add(n.subscribe(this.syncPlayback,i))}destroy(){this.subscription.unsubscribe(),this.textTracksManager.destroy(),this.params.output.element$.next(void 0),je(this.video)}prepare(){var s,n;let e=this.selectManifest();if((0,oe.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=(s=t==null?void 0:t.to)!=null?s:i)!=null?n:{};for(let[l,c]of[[o,"mq"],[u,"lq"]]){let d=String(parseFloat(l||""));c&&l&&r.searchParams.set(c,d)}}this.video.setAttribute("src",r.toString()),this.video.load()}playIfAllowed(){We(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),F(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:oe.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}};var ry=z(rr(),1),lc=z(hr(),1),ay=z(yt(),1);var Se=require("@vkontakte/videoplayer-shared/es2018");var us=class{constructor(e){this.subscription=new Se.Subscription;this.videoState=new re("stopped");this.trackUrls={};this.textTracksManager=new lt;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.hostname$.next(void 0),this.videoState.setState("stopped"),F(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.autoVideoTrackLimits.getTransition(),n=this.params.desiredState.videoTrack.getTransition(),o=this.params.desiredState.seekState.getState();if(s&&e!=="ready"&&!n){this.handleQualityLimitTransition(s.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"?F(this.params.desiredState.playbackState,"ready"):t==="paused"?(this.videoState.setState("paused"),F(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"&&F(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&F(this.params.desiredState.playbackState,"paused");return;default:return(0,Se.assertNever)(e)}};this.params=e,this.video=He(e.container,e.tuning),this.params.output.element$.next(this.video),(0,ry.default)(this.params.source).reverse().forEach(([t,i],r)=>{let s=r.toString(10);this.trackUrls[s]={track:{quality:t,id:s},url:i}}),this.params.output.isLive$.next(!1),this.params.output.availableVideoTracks$.next((0,lc.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:Se.ErrorCategory.WTF,message:"MpegProvider internal logic error",thrown:o})},r=Ge(this.video);this.subscription.add(()=>r.destroy());let s=(o,u)=>this.subscription.add(o.subscribe(u,i));s(r.timeUpdate$,e.position$),s(r.durationChange$,e.duration$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(r.loadedMetadata$,e.firstBytesEvent$),s(r.loadedMetadata$,e.loadedMetadataEvent$),s(r.playing$,e.firstFrameEvent$),s(r.canplay$,e.canplay$),s(r.seeked$,e.seekedEvent$),s(r.inPiP$,e.inPiP$),s(r.inFullscreen$,e.inFullscreen$),s(this.videoState.stateChangeEnded$.pipe((0,Se.map)(o=>o.to)),this.params.output.playbackState$),this.subscription.add(kt(this.video,t.isLooped,i)),this.subscription.add(Qe(this.video,t.volume,r.volumeState$,i)),this.subscription.add(r.volumeState$.subscribe(this.params.output.volume$,i)),this.subscription.add(ut(this.video,t.playbackRate,r.playbackRateState$,i)),s(ct(this.video),e.elementVisible$),this.subscription.add(r.playing$.subscribe(()=>{this.videoState.setState("playing"),F(t.playbackState,"playing")},i)).add(r.pause$.subscribe(()=>{this.videoState.setState("paused"),F(t.playbackState,"paused")},i)).add(r.canplay$.subscribe(()=>{var u,l;((u=this.videoState.getTransition())==null?void 0:u.to)==="ready"&&this.videoState.setState("ready");let o=this.params.desiredState.videoTrack.getTransition();if(o&&(0,Se.isNonNullable)(o.to)){this.params.desiredState.videoTrack.setState(o.to),this.params.output.currentVideoTrack$.next(this.trackUrls[o.to.id].track);let c=this.params.desiredState.playbackRate.getState(),d=(l=this.params.output.element$.getValue())==null?void 0:l.playbackRate;if(c!==d){let f=this.params.output.element$.getValue();f&&(this.params.desiredState.playbackRate.setState(c),f.playbackRate=c)}}this.videoState.getState()==="playing"&&this.playIfAllowed()},i)),this.textTracksManager.connect(this.video,t,e);let n=(0,Se.merge)(t.playbackState.stateChangeStarted$,t.videoTrack.stateChangeStarted$,t.seekState.stateChangeEnded$,t.autoVideoTrackLimits.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,Se.observableFrom)(["init"])).pipe((0,Se.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),je(this.video)}prepare(){var i;let e=(i=this.params.desiredState.videoTrack.getState())==null?void 0:i.id;(0,Se.assertNonNullable)(e,"MpegProvider: track is not selected");let{url:t}=this.trackUrls[e];(0,Se.assertNonNullable)(t,`MpegProvider: No url for ${e}`),this.params.tuning.requestQuick&&(t=pi(t)),this.video.setAttribute("src",t),this.video.load(),this.params.output.hostname$.next(Ve(t))}playIfAllowed(){We(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),F(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:Se.ErrorCategory.DOM,thrown:e}))}seek(e){this.params.output.willSeekEvent$.next(),this.video.currentTime=e/1e3}handleQualityLimitTransition(e){var l,c;this.params.output.autoVideoTrackLimits$.next(e);let t=d=>{this.params.output.currentVideoTrack$.next(d),this.params.desiredState.videoTrack.startTransitionTo(d)},i=d=>{let f=Lt(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(f)},r=(l=this.params.output.currentVideoTrack$.getValue())==null?void 0:l.quality,s=!!(e.max||e.min),n=(0,lc.default)(this.trackUrls).map(d=>d.track);if(!r||!s||br(e,n[0].quality,(c=(0,ay.default)(n,-1))==null?void 0:c.quality)){i();return}let o=e.max?(0,Se.isLowerOrEqual)(r,e.max):!0,u=e.min?(0,Se.isHigherOrEqual)(r,e.min):!0;o&&u||i(e)}};var ve=require("@vkontakte/videoplayer-shared/es2018");var ny=require("@vkontakte/videoplayer-shared/es2018"),sy=["stun:videostun.mycdn.me:80"],m$=1e3,b$=3,cc=()=>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=cc;this.externalStopCallback=cc;this.externalErrorCallback=cc;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:sy}]};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:ny.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),m$)}normalizeOptions(e={}){let t={stunServerList:sy,maxRetryNumber:b$,errorChanel:null};return e.stunServerList&&(t.stunServerList=e.stunServerList),e.maxRetryNumber&&e.maxRetryNumber>0&&(t.maxRetryNumber=e.maxRetryNumber),t}};var ls=class{constructor(e){this.videoState=new re("stopped");this.maxSeekBackTime$=new ve.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.hostname$.next(void 0),this.videoState.setState("stopped"),F(this.params.desiredState.playbackState,"stopped",!0));return}if(this.videoState.getTransition())return;let s=this.params.desiredState.videoTrack.getTransition();if(e==="stopped"){this.videoState.startTransitionTo("ready"),this.prepare();return}if(s){this.prepare();return}switch(e){case"ready":t==="paused"?(this.videoState.setState("paused"),F(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"&&F(this.params.desiredState.playbackState,"playing");return;case"paused":t==="playing"?(this.videoState.startTransitionTo("playing"),this.playIfAllowed()):(i==null?void 0:i.to)==="paused"&&F(this.params.desiredState.playbackState,"paused");return;default:return(0,ve.assertNever)(e)}};this.subscription=new ve.Subscription,this.params=e,this.log=this.params.dependencies.logger.createComponentLog("WebRTCLiveProvider"),this.video=He(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),je(this.video)}subscribe(){let{output:e,desiredState:t}=this.params,i=n=>{e.error$.next({id:"WebRTCLiveProvider",category:ve.ErrorCategory.WTF,message:"WebRTCLiveProvider internal logic error",thrown:n})};this.subscription.add((0,ve.merge)(this.videoState.stateChangeStarted$.pipe((0,ve.map)(n=>({transition:n,type:"start"}))),this.videoState.stateChangeEnded$.pipe((0,ve.map)(n=>({transition:n,type:"end"})))).subscribe(({transition:n,type:o})=>{this.log({message:`[videoState change] ${o}: ${JSON.stringify(n)}`})}));let r=Ge(this.video);this.subscription.add(()=>r.destroy());let s=(n,o)=>this.subscription.add(n.subscribe(o,i));s(r.timeUpdate$,e.liveTime$),s(r.ended$,e.endedEvent$),s(r.looped$,e.loopedEvent$),s(r.error$,e.error$),s(r.isBuffering$,e.isBuffering$),s(r.currentBuffer$,e.currentBuffer$),s(ct(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(Qe(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,ve.assertNever)(n.to)}},i)).add((0,ve.merge)(t.playbackState.stateChangeStarted$,this.videoState.stateChangeEnded$,(0,ve.observableFrom)(["init"])).pipe((0,ve.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(Ve(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:ve.VideoQuality.INVARIANT}),this.video.srcObject=e,F(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.hostname$.next(void 0),this.params.output.endedEvent$.next()}onLiveStreamError(e){this.onLiveStreamStop(),this.params.output.error$.next({id:"WebRTC stream runtime error",category:ve.ErrorCategory.EXTERNAL_API,message:e.message,thrown:e})}playIfAllowed(){We(this.video,()=>{this.params.output.soundProhibitedEvent$.next()}).then(e=>{e||(this.videoState.setState("paused"),F(this.params.desiredState.playbackState,"paused",!0))},e=>this.params.output.error$.next({id:"ForcePlay",message:"play() failed even with workarounds",category:ve.ErrorCategory.DOM,thrown:e}))}prepare(){this.liveStreamClient.connect()}};var cs=class{constructor(e){this.iterator=e[Symbol.iterator](),this.next()}next(){this.current=this.iterator.next()}getValue(){if(this.current.done)throw new Error("Iterable is completed");return this.current.value}isCompleted(){return!!this.current.done}};var x=require("@vkontakte/videoplayer-shared/es2018");var Wt=require("@vkontakte/videoplayer-shared/es2018"),oy=a=>new Wt.Observable(e=>{let t=new Wt.Subscription,i=a.desiredPlaybackState$.stateChangeStarted$.pipe((0,Wt.map)(({from:l,to:c})=>`${l}-${c}`)),r=a.desiredPlaybackState$.stateChangeEnded$,s=a.providerChanged$.pipe((0,Wt.map)(({type:l})=>l!==void 0)),n=new Wt.Subject,o=0,u="unknown";return t.add(i.subscribe(l=>{o&&window.clearTimeout(o),u=l,o=window.setTimeout(()=>n.next(l),a.maxTransitionInterval)})),t.add(r.subscribe(()=>{window.clearTimeout(o),u="unknown",o=0})),t.add(s.subscribe(l=>{o&&(window.clearTimeout(o),o=0,l&&(o=window.setTimeout(()=>n.next(u),a.maxTransitionInterval)))})),t.add(n.subscribe(e)),()=>{window.clearTimeout(o),t.unsubscribe()}});var pt=require("@vkontakte/videoplayer-shared/es2018");function uy(){return new(window.AudioContext||window.webkitAudioContext)}var ds=class ds{constructor(e,t,i,r){this.providerOutput=e;this.provider$=t;this.volumeMultiplierError$=i;this.volumeMultiplier=r;this.destroyController=new ce;this.subscriptions=new pt.Subscription;this.audioContext=null;this.gainNode=null;this.mediaElementSource=null;this.subscriptions.add(this.provider$.pipe((0,pt.filter)(s=>!!s.type),(0,pt.once)()).subscribe(({type:s})=>this.subscribe(s)))}subscribe(e){Y.browser.isSafari&&e!=="MPEG"||this.subscriptions.add((0,pt.combine)({video:this.providerOutput.element$,playbackState:this.providerOutput.playbackState$,volume:this.providerOutput.volume$}).pipe((0,pt.filter)(({playbackState:t,video:i,volume:{muted:r,volume:s}})=>t==="playing"&&!!i&&!r&&!!s),(0,pt.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=uy();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 s=i.createMediaElementSource(e);return this.mediaElementSource=s,s.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:ds.errorId,category:pt.ErrorCategory.VIDEO_PIPELINE,message:(t=e==null?void 0:e.message)!=null?t:`${ds.errorId} exception`,thrown:e})}};ds.errorId="VolumeMultiplierManager";var Lr=ds;var g$={chunkDuration:5e3,maxParallelRequests:5},ps=class{constructor(e){this.current$=new x.ValueSubject({type:void 0});this.providerError$=new x.Subject;this.noAvailableProvidersError$=new x.Subject;this.volumeMultiplierError$=new x.Subject;this.providerOutput={position$:new x.ValueSubject(0),duration$:new x.ValueSubject(1/0),volume$:new x.ValueSubject({muted:!1,volume:1}),availableVideoStreams$:new x.ValueSubject([]),currentVideoStream$:new x.ValueSubject(void 0),availableVideoTracks$:new x.ValueSubject([]),currentVideoTrack$:new x.ValueSubject(void 0),availableAudioStreams$:new x.ValueSubject([]),currentAudioStream$:new x.ValueSubject(void 0),availableAudioTracks$:new x.ValueSubject([]),currentVideoSegmentLength$:new x.ValueSubject(0),currentAudioSegmentLength$:new x.ValueSubject(0),isAudioAvailable$:new x.ValueSubject(!0),autoVideoTrackLimitingAvailable$:new x.ValueSubject(!1),autoVideoTrackLimits$:new x.ValueSubject(void 0),currentBuffer$:new x.ValueSubject(void 0),isBuffering$:new x.ValueSubject(!0),error$:new x.Subject,fetcherError$:new x.Subject,fetcherRecoverableError$:new x.Subject,warning$:new x.Subject,willSeekEvent$:new x.Subject,soundProhibitedEvent$:new x.Subject,seekedEvent$:new x.Subject,loopedEvent$:new x.Subject,endedEvent$:new x.Subject,firstBytesEvent$:new x.Subject,loadedMetadataEvent$:new x.Subject,firstFrameEvent$:new x.Subject,canplay$:new x.Subject,isLive$:new x.ValueSubject(void 0),isLiveEnded$:new x.ValueSubject(null),isLowLatency$:new x.ValueSubject(!1),canChangePlaybackSpeed$:new x.ValueSubject(!0),liveTime$:new x.ValueSubject(void 0),liveBufferTime$:new x.ValueSubject(void 0),liveLatency$:new x.ValueSubject(void 0),severeStallOccurred$:new x.Subject,availableTextTracks$:new x.ValueSubject([]),currentTextTrack$:new x.ValueSubject(void 0),hostname$:new x.ValueSubject(void 0),httpConnectionType$:new x.ValueSubject(void 0),httpConnectionReused$:new x.ValueSubject(void 0),inPiP$:new x.ValueSubject(!1),inFullscreen$:new x.ValueSubject(!1),element$:new x.ValueSubject(void 0),elementVisible$:new x.ValueSubject(!0),availableSources$:new x.ValueSubject(void 0),is3DVideo$:new x.ValueSubject(!1),playbackState$:new x.ValueSubject(""),getCurrentTime$:new x.ValueSubject(null)};this.subscription=new x.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=Vv([...Ov(this.params.tuning),..._v(this.params.tuning)],this.params.tuning).filter(l=>(0,x.isNonNullable)(e.sources[l])),{forceFormat:i,formatsToAvoid:r}=this.params.tuning,s=[];i?s=[i]:r.length?s=[...t.filter(l=>!(0,dc.default)(r,l)),...t.filter(l=>(0,dc.default)(r,l))]:s=t,this.log({message:`Selected formats: ${s.join(" > ")}`}),this.tracer.log("Selected formats",(0,x.flattenObject)(s)),this.screenFormatsIterator=new cs(s);let n=[...zl(!0),...zl(!1)];this.chromecastFormatsIterator=new cs(n.filter(l=>(0,x.isNonNullable)(e.sources[l]))),this.providerOutput.availableSources$.next(e.sources);let{volumeMultiplier:o=1,tuning:{useVolumeMultiplier:u}}=this.params;u&&o!==1&&Lr.isSupported()&&(this.volumeMultiplierManager=new Lr(this.providerOutput,this.current$,this.volumeMultiplierError$,o))}init(){this.subscription.add(this.initProviderErrorHandling()),this.subscription.add(this.params.dependencies.chromecastInitializer.connection$.subscribe(()=>{this.reinitProvider()}))}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,x.isNullable)(t)){this.handleNoFormatsError(e);return}let i;try{i=this.createProvider(e,t)}catch(r){this.providerError$.next({id:"ProviderNotConstructed",category:x.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()}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 s=this.providerOutput.isBuffering$;s.getValue()||s.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,x.assertNever)(e)}}createScreenProvider(e){let{sources:t,container:i,desiredState:r,panelSize:s}=this.params,n=this.providerOutput,o={container:i,source:null,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning,panelSize:s};switch(e){case"DASH_SEP":case"DASH_WEBM":case"DASH_WEBM_AV1":case"DASH_ONDEMAND":case"DASH_STREAMS":{let u=this.applyFailoverHost(t[e]),l=this.applyFailoverHost(t.HLS_ONDEMAND||t.HLS);return(0,x.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new as({...o,source:u,sourceHls:l}):new es({...o,source:u,sourceHls:l})}case"DASH_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,x.assertNonNullable)(u),this.params.tuning.useNewDashProvider?new ss({...o,source:u}):new ts({...o,source:u})}case"HLS":case"HLS_ONDEMAND":{let u=this.applyFailoverHost(t[e]);return(0,x.assertNonNullable)(u),new os({...o,source:u})}case"HLS_LIVE":case"HLS_LIVE_CMAF":{let u=this.applyFailoverHost(t[e]);return(0,x.assertNonNullable)(u),new ns({...o,source:u,config:{maxPausedTime:this.params.tuning.live.maxPausedTime},format:e})}case"MPEG":{let u=this.applyFailoverHost(t[e]);return(0,x.assertNonNullable)(u),new us({...o,source:u})}case"DASH_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,x.assertNonNullable)(u),new Cg({...o,source:u,config:{...g$,maxPausedTime:this.params.tuning.live.maxPausedTime}})}case"WEB_RTC_LIVE":{let u=this.applyFailoverHost(t[e]);return(0,x.assertNonNullable)(u),new ls({container:i,source:u,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,x.assertNever)(e)}}createChromecastProvider(e){let{sources:t,container:i,desiredState:r,meta:s}=this.params,n=this.providerOutput,o=this.params.dependencies.chromecastInitializer.connection$.getValue();return(0,x.assertNonNullable)(o),new ca({connection:o,meta:s,container:i,source:t,format:e,desiredState:r,output:n,dependencies:this.params.dependencies,tuning:this.params.tuning})}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,x.assertNever)(e)}}skipFormat(e){switch(e){case"SCREEN":return this.screenFormatsIterator.next();case"CHROMECAST":return this.chromecastFormatsIterator.next();default:return(0,x.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,x.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 s=new URL(r);return s.host=t,s.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,cy.default)((0,ly.default)(e).map(([r,s])=>[r,i(s)]))}initProviderErrorHandling(){let e=new x.Subscription,t=!1,i=0;return e.add((0,x.merge)(this.providerOutput.error$.pipe((0,x.filter)(r=>!this.params.tuning.ignoreAudioRendererError||!r.message||!/AUDIO_RENDERER_ERROR/ig.test(r.message))),oy({desiredPlaybackState$:this.params.desiredState.playbackState,maxTransitionInterval:this.params.tuning.maxPlaybackTransitionInterval,position$:this.providerOutput.position$,providerChanged$:this.current$}).pipe((0,x.map)(r=>({id:`ProviderHangup:${r}`,category:x.ErrorCategory.WTF,message:`A ${r} 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 r=this.params.desiredState.playbackState.transitionEnded$.pipe((0,x.filter)(({to:s})=>s==="playing"),(0,x.once)()).subscribe(()=>t=!0);e.add(r)})),e.add(this.providerError$.subscribe(r=>{let s=this.current$.getValue().destination,n={error:r,currentDestination:s};if(s==="CHROMECAST")this.destroyProvider(),this.params.dependencies.chromecastInitializer.stopMedia().then(()=>this.switchToNextProvider("SCREEN"),()=>this.params.dependencies.chromecastInitializer.disconnect());else{let o=r.category===x.ErrorCategory.NETWORK,u=r.category===x.ErrorCategory.FATAL,l=this.params.failoverHosts.length>0&&(this.failoverIndex===void 0||this.failoverIndex<this.params.failoverHosts.length-1),c=i<this.params.tuning.providerErrorLimit&&!u,d=l&&!u&&(o&&t||!c);n={...n,isNetworkError:o,isFatalError:u,haveFailoverHost:l,tryFailover:d,canReinitProvider:c},c?(i++,this.reinitProvider()):d?(this.failoverIndex=this.failoverIndex===void 0?0:this.failoverIndex+1,this.reinitProvider()):(i=0,this.switchToNextProvider(s!=null?s:"SCREEN"))}r.traceAsLog?this.tracer.log("providerInfo",(0,x.flattenObject)(n)):this.tracer.error("providerError",(0,x.flattenObject)(n))})),e}};var Z=require("@vkontakte/videoplayer-shared/es2018");var S$=5e3,dy="one_video_throughput",py="one_video_rtt",zt=window.navigator.connection,hy=()=>{let a=zt==null?void 0:zt.downlink;if((0,Z.isNonNullable)(a)&&a!==10)return a*1e3},fy=()=>{let a=zt==null?void 0:zt.rtt;if((0,Z.isNonNullable)(a)&&a!==3e3)return a},my=(a,e,t)=>{let i=t*8,r=i/a;return i/(r+e)},pc=class a{constructor(e){this.subscription=new Z.Subscription;this.concurrentDownloads=new Set;var r,s;this.tuningConfig=e;let t=a.load(dy)||(e.useBrowserEstimation?hy():void 0)||S$,i=(s=(r=a.load(py))!=null?r:e.useBrowserEstimation?fy():void 0)!=null?s:0;if(this.throughput$=new Z.ValueSubject(t),this.rtt$=new Z.ValueSubject(i),this.rttAdjustedThroughput$=new Z.ValueSubject(my(t,i,e.rttPenaltyRequestSize)),this.throughput=Gt.getSmoothedValue(t,-1,e),this.rtt=Gt.getSmoothedValue(i,1,e),e.useBrowserEstimation){let n=()=>{let u=hy();u&&this.throughput.next(u);let l=fy();(0,Z.isNonNullable)(l)&&this.rtt.next(l)};zt&&"onchange"in zt&&this.subscription.add((0,Z.fromEvent)(zt,"change").subscribe(n)),n()}this.subscription.add(this.throughput.smoothed$.subscribe(n=>{Z.safeStorage.set(dy,n.toFixed(0))})),this.subscription.add(this.rtt.smoothed$.subscribe(n=>{Z.safeStorage.set(py,n.toFixed(0))})),this.subscription.add(this.throughput.debounced$.subscribe(this.throughput$)),this.subscription.add(this.rtt.debounced$.subscribe(this.rtt$)),this.subscription.add((0,Z.combine)({throughput:this.throughput.smoothed$,rtt:this.rtt.smoothed$}).pipe((0,Z.map)(({throughput:n,rtt:o})=>my(n,o,e.rttPenaltyRequestSize)),(0,Z.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,Z.now)(),r=new Z.Subscription;switch(this.subscription.add(r),this.concurrentDownloads.add(e),e.readyState){case 4:break;case 3:case 2:r.add((0,Z.fromEvent)(e,"progress").pipe((0,Z.once)()).subscribe(s=>{t=s.loaded,i=(0,Z.now)()}));break;case 1:case 0:r.add((0,Z.fromEvent)(e,"loadstart").subscribe(()=>{t=0,i=(0,Z.now)()}));break}r.add((0,Z.fromEvent)(e,"loadend").subscribe(s=>{if(e.status===200){let n=s.loaded,o=(0,Z.now)(),u=n-t,l=o-i;this.addRawSpeed(u,l,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,s=(0,Z.now)(),n=0,o=(0,Z.now)(),u=c=>{this.concurrentDownloads.delete(e),i.releaseLock(),e.cancel(`Throughput Estimator error: ${c}`).catch(()=>{})},l=async({done:c,value:d})=>{if(c)!t&&this.addRawSpeed(r,(0,Z.now)()-s,1),this.concurrentDownloads.delete(e);else if(d){if(t){let f=(0,Z.now)();if(f-o>this.tuningConfig.lowLatency.continuesByteSequenceInterval||f-s>this.tuningConfig.lowLatency.maxLastEvaluationTimeout){let h=o-s;h&&this.addRawSpeed(n,h,1,t),n=d.byteLength,s=(0,Z.now)()}else n+=d.byteLength;o=(0,Z.now)()}else r+=d.byteLength,n+=d.byteLength,n>=this.tuningConfig.streamMinSampleSize&&(0,Z.now)()-o>=this.tuningConfig.streamMinSampleTime&&(this.addRawSpeed(n,(0,Z.now)()-o,this.concurrentDownloads.size),n=0,o=(0,Z.now)());await(i==null?void 0:i.read().then(l,u))}};this.concurrentDownloads.add(e),i==null||i.read().then(l,u)}addRawSpeed(e,t,i=1,r=!1){if(a.sanityCheck(e,t,r)){let s=e*8/t;this.throughput.next(s*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=Z.safeStorage.get(e);if((0,Z.isNonNullable)(t))return(i=parseInt(t,10))!=null?i:void 0}},by=pc;var qi=require("@vkontakte/videoplayer-shared/es2018"),gy={configName:["core"],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:qi.VideoQuality.Q_4320P,activeVideoAreaThreshold:.1,highQualityLimit:qi.VideoQuality.Q_720P,trafficSavingLimit:qi.VideoQuality.Q_480P},stallsManager:{enabled:!1,stallDurationNoDataBeforeQualityDecrease:500,stallDurationToBeCount:100,stallCountBeforeQualityDecrease:3,resetQualityRestrictionTimeout:1e4,ignoreStallsOnSeek:!0,stallsMetricsHistoryLength:5,maxPossibleStallDuration:3e4,minTvtToBeCounted:5,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:qi.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,representationSwitchForwardBufferGap:3e3,crashOnStallTimeout:25e3,crashOnStallTWithoutDataTimeout:5e3,enableSubSegmentBufferFeeding:!0,bufferEmptinessTolerance:100,useFetchPriorityHints:!0,enableBaseUrlSupport:!0,maxSegmentRetryCount:5,sourceOpenTimeout:1e3,vktvAbrThrottle:0,timeupdateEventTickThrottle:300,fetcherBufferOptimisation:!0},dashCmafLive:{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",useWebmBigRequest:!1,webmCodec:"vp9",androidPreferredFormat:"dash",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,useManagedMediaSource:!0,useNewSwitchTo:!1,useNewDashProvider:!1,useNewAutoSelectVideoTrack:!1,useSafariEndlessRequestBugfix:!0,useRefactoredSearchGap:!1,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,useOldMSEDetection:!1,useHlsLiveNewTextManager:!1,exposeInternalsToGlobal:!1,hlsLiveNewTextManagerDownloadThreshold:4e3,disableYandexPiP:!1,asyncResolveClientChecker:!1,autostartOnlyIfVisible:!1},Sy=a=>{var e;return{...(0,qi.fillWithDefault)(a,gy),configName:[...(e=a.configName)!=null?e:[],...gy.configName]}};var m=require("@vkontakte/videoplayer-shared/es2018");var Yt=require("@vkontakte/videoplayer-shared/es2018"),hc=({seekState:a,position$:e})=>(0,Yt.merge)(a.stateChangeEnded$.pipe((0,Yt.map)(({to:t})=>{var i;return t.state==="none"?void 0:((i=t.position)!=null?i:NaN)/1e3}),(0,Yt.filter)(Yt.isNonNullable)),e.pipe((0,Yt.filter)(()=>a.getState().state==="none")));var vy=require("@vkontakte/videoplayer-shared/es2018"),yy=a=>{let e=typeof a.container=="string"?document.getElementById(a.container):a.container;return(0,vy.assertNonNullable)(e,`Wrong container or containerId {${a.container}}`),e};var fo=require("@vkontakte/videoplayer-shared/es2018"),Ty=(a,e,t,i)=>{a!==void 0&&e.getState()===void 0&&e.getPrevState()===void 0&&(t==null?void 0:t.getValue().length)===0?t.pipe((0,fo.filter)(r=>r.length>0),(0,fo.once)()).subscribe(r=>{r.find(i)&&e.startTransitionTo(a)}):(a===void 0||t!=null&&t.getValue().find(i))&&e.startTransitionTo(a)};var hs=class{constructor(e={configName:[]},t=m.TracerFactory.createRootTracer(!1)){this.subscription=new m.Subscription;this.logger=new m.Logger;this.abrLogger=this.logger.createComponentLog("ABR");this.internalsExposure=null;this.isPlaybackStarted=!1;this.hasLiveOffsetByPaused=new m.ValueSubject(!1);this.hasLiveOffsetByPausedTimer=0;this.playerInitRequest=0;this.playerInited=new m.ValueSubject(!1);this.wasSetStartedQuality=!1;this.desiredState={playbackState:new re("stopped"),seekState:new re({state:"none"}),volume:new re({volume:1,muted:!1}),videoTrack:new re(void 0),videoStream:new re(void 0),audioStream:new re(void 0),autoVideoTrackSwitching:new re(!0),autoVideoTrackLimits:new re({}),isLooped:new re(!1),isLowLatency:new re(!1),playbackRate:new re(1),externalTextTracks:new re([]),internalTextTracks:new re([]),currentTextTrack:new re(void 0),textTrackCuesSettings:new re({}),cameraOrientation:new re({x:0,y:0})};this.info={playbackState$:new m.ValueSubject(void 0),position$:new m.ValueSubject(0),duration$:new m.ValueSubject(1/0),muted$:new m.ValueSubject(!1),volume$:new m.ValueSubject(1),availableVideoStreams$:new m.ValueSubject([]),currentVideoStream$:new m.ValueSubject(void 0),availableQualities$:new m.ValueSubject([]),availableQualitiesFps$:new m.ValueSubject({}),currentQuality$:new m.ValueSubject(void 0),isAutoQualityEnabled$:new m.ValueSubject(!0),autoQualityLimitingAvailable$:new m.ValueSubject(!1),autoQualityLimits$:new m.ValueSubject({}),predefinedQualityLimitType$:new m.ValueSubject("unknown"),availableAudioStreams$:new m.ValueSubject([]),currentAudioStream$:new m.ValueSubject(void 0),availableAudioTracks$:new m.ValueSubject([]),isAudioAvailable$:new m.ValueSubject(!0),currentPlaybackRate$:new m.ValueSubject(1),currentBuffer$:new m.ValueSubject({start:0,end:0}),isBuffering$:new m.ValueSubject(!0),isStalled$:new m.ValueSubject(!1),isEnded$:new m.ValueSubject(!1),isLooped$:new m.ValueSubject(!1),isLive$:new m.ValueSubject(void 0),isLiveEnded$:new m.ValueSubject(null),canChangePlaybackSpeed$:new m.ValueSubject(void 0),atLiveEdge$:new m.ValueSubject(void 0),atLiveDurationEdge$:new m.ValueSubject(void 0),liveTime$:new m.ValueSubject(void 0),liveBufferTime$:new m.ValueSubject(void 0),liveLatency$:new m.ValueSubject(void 0),currentFormat$:new m.ValueSubject(void 0),availableTextTracks$:new m.ValueSubject([]),currentTextTrack$:new m.ValueSubject(void 0),throughputEstimation$:new m.ValueSubject(void 0),rttEstimation$:new m.ValueSubject(void 0),videoBitrate$:new m.ValueSubject(void 0),hostname$:new m.ValueSubject(void 0),httpConnectionType$:new m.ValueSubject(void 0),httpConnectionReused$:new m.ValueSubject(void 0),surface$:new m.ValueSubject("none"),chromecastState$:new m.ValueSubject("NOT_AVAILABLE"),chromecastDeviceName$:new m.ValueSubject(void 0),intrinsicVideoSize$:new m.ValueSubject(void 0),availableSources$:new m.ValueSubject(void 0),is3DVideo$:new m.ValueSubject(!1),currentVideoSegmentLength$:new m.ValueSubject(0),currentAudioSegmentLength$:new m.ValueSubject(0)};this.events={inited$:new m.Subject,ready$:new m.Subject,started$:new m.Subject,playing$:new m.Subject,paused$:new m.Subject,stopped$:new m.Subject,willReady$:new m.Subject,willStart$:new m.Subject,willResume$:new m.Subject,willPause$:new m.Subject,willStop$:new m.Subject,willDestruct$:new m.Subject,watchCoverageRecord$:new m.Subject,watchCoverageLive$:new m.Subject,managedError$:new m.Subject,fatalError$:new m.Subject,fetcherRecoverableError$:new m.Subject,ended$:new m.Subject,looped$:new m.Subject,seeked$:new m.Subject,willSeek$:new m.Subject,autoplaySoundProhibited$:new m.Subject,firstBytes$:new m.Subject,loadedMetadata$:new m.Subject,firstFrame$:new m.Subject,canplay$:new m.Subject,log$:new m.Subject,fetcherError$:new m.Subject,severeStallOccured$:new m.Subject};this.experimental={element$:new m.ValueSubject(void 0),tuningConfigName$:new m.ValueSubject([]),enableDebugTelemetry$:new m.ValueSubject(!1),dumpTelemetry:gg,getCurrentTime$:new m.ValueSubject(null)};if(this.initLogs(),this.tuning=Sy(e),this.tracer=t,this.experimental.tuningConfigName$.next(this.tuning.configName),this.chromecastInitializer=new Cs({receiverApplicationId:e.chromecastReceiverId,isDisabled:e.disableChromecast,dependencies:{logger:this.logger}}),this.throughputEstimator=new by(this.tuning.throughputEstimator),e.exposeInternalsToGlobal&&(this.internalsExposure=new m.InternalsExposure("CORE"),this.internalsExposure.expose({player:this})),this.initChromecastSubscription(),this.initDesiredStateSubscriptions(),Proxy&&Reflect)return new Proxy(this,{get:(i,r,s)=>{let n=Reflect.get(i,r,s);return typeof n!="function"?n:(...o)=>{try{return n.apply(i,o)}catch(u){let l=o.map(f=>JSON.stringify(f,(p,h)=>{let b=typeof h;return(0,Iy.default)(["number","string","boolean"],b)?h:h===null?null:`<${b}>`})),c=`Player.${String(r)}`,d=`Exception calling ${c} (${l.join(", ")})`;throw this.events.fatalError$.next({id:c,category:m.ErrorCategory.WTF,message:d,thrown:u}),u}}}})}initVideo(e){var s;this.config=e,(s=this.internalsExposure)==null||s.expose({config:e,logger:this.logger,tuning:this.tuning}),this.setMuted(this.tuning.isAudioDisabled);let t=()=>{var u,l,c;let{container:n,...o}=e;this.tracer.log("initVideo",(0,m.flattenObject)(o)),this.domContainer=yy(e),this.chromecastInitializer.contentId=(u=e.meta)==null?void 0:u.videoId,this.providerContainer=new ps({sources:e.sources,meta:(l=e.meta)!=null?l:{},failoverHosts:(c=e.failoverHosts)!=null?c:[],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)},i=()=>{this.tuning.autostartOnlyIfVisible&&window.requestAnimationFrame?this.playerInitRequest=window.requestAnimationFrame(()=>t()):t()},r=()=>{this.tuning.asyncResolveClientChecker?Y.isInited$.pipe((0,m.filter)(n=>!!n),(0,m.once)()).subscribe(()=>{console.log("Core SDK async start"),i()}):i()};return this.isNotActiveTabCase()?(this.tracer.log("request play from hidden tab"),(0,m.fromEvent)(document,"visibilitychange").pipe((0,m.once)()).subscribe(r)):r(),this}destroy(){var e,t;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()}prepare(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("prepare",{currentPlayBackState:e.getState()}),e.getState()==="stopped"&&e.startTransitionTo("ready")})),this}play(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("play",{currentPlayBackState:e.getState()}),e.getState()!=="playing"&&e.startTransitionTo("playing")})),this}pause(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.desiredState.playbackState;this.tracer.log("pause",{currentPlayBackState:e.getState()}),e.getState()!=="paused"&&e.startTransitionTo("paused")})),this}stop(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{let i=this.info.duration$.getValue(),r=this.info.isLive$.getValue(),s=e;e>=i&&!r&&(s=i-this.tuning.seekNearDurationBias),this.tracer.log("seekTime",{duration:i,isLive:r,time:e,calculatedTime:s,forcePrecise:t}),Number.isFinite(s)&&(this.events.willSeek$.next({from:this.getExactTime(),to:s}),this.desiredState.seekState.setState({state:"requested",position:s*1e3,forcePrecise:t}))})),this}seekPercent(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{var o;let i=this.desiredState.volume,r=i.getTransition(),s=(o=r==null?void 0:r.to.muted)!=null?o:this.info.muted$.getValue(),n=t!=null?t:this.tuning.isAudioDisabled||s;this.tracer.log("setVolume",{volume:e,isAudioDisabled:this.tuning.isAudioDisabled,chromecastState:this.chromecastInitializer.castState$.getValue(),muted:n}),this.chromecastInitializer.castState$.getValue()==="CONNECTED"?this.chromecastInitializer.setVolume(e):i.startTransitionTo({volume:e,muted:n})})),this}setMuted(e,t=!1){return this.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{var o;let i=this.desiredState.volume,r=this.tuning.isAudioDisabled&&!t||e,s=i.getTransition(),n=(o=s==null?void 0:s.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.setMuted(r):i.startTransitionTo({volume:n,muted:r})})),this}setVideoStream(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.desiredState.videoStream.startTransitionTo(e)})),this}setAudioStream(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.desiredState.audioStream.startTransitionTo(e)})),this}setQuality(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{(0,m.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,m.filter)(i=>i.length>0),(0,m.once)()).subscribe(i=>{this.setVideoTrackIdByQuality(i,e)}):this.explicitInitialQuality=e:t.length>0&&this.setVideoTrackIdByQuality(t,e)})),this}setAutoQuality(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setAutoQuality",{enable:e}),this.desiredState.autoVideoTrackSwitching.startTransitionTo(e)})),this}setAutoQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{this.tracer.log("setAutoQualityLimits",(0,m.flattenObject)(e)),this.desiredState.autoVideoTrackLimits.startTransitionTo(e)})),this}setPredefinedQualityLimits(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var i;(0,m.assertNonNullable)(this.providerContainer);let t=(i=this.providerContainer)==null?void 0:i.providerOutput.element$.getValue();this.tracer.log("setPlaybackRate",{playbackRate:e,isVideoElementAvailable:!!t}),t&&(this.desiredState.playbackRate.setState(e),t.playbackRate=e)})),this}setExternalTextTracks(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{e.length&&this.tracer.log("setExternalTextTracks",(0,m.flattenObject)(e)),this.desiredState.externalTextTracks.startTransitionTo(e.map(t=>({type:"external",...t})))})),this}selectTextTrack(e){return this.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{var t;Ty(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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{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.subscription.add(this.playerInited.pipe((0,m.filter)(t=>!!t),(0,m.once)()).subscribe(()=>{let t=this.getScene3D();this.tracer.log("stopCameraManualRotation",{isScene3DAvailable:!!t,immediate:e}),t&&t.stopCameraManualRotation(e)})),this}moveCameraFocusPX(e,t){return this.subscription.add(this.playerInited.pipe((0,m.filter)(i=>!!i),(0,m.once)()).subscribe(()=>{let i=this.getScene3D();if(this.tracer.log("moveCameraFocusPX",{isScene3DAvailable:!!i,dxpx:e,dypx:t}),i){let r=i.getCameraRotation(),s=i.pixelToDegree({x:e,y:t});this.desiredState.cameraOrientation.setState({x:r.x+s.x,y:r.y+s.y})}})),this}holdCamera(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>e),(0,m.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.holdCamera()})),this}releaseCamera(){return this.subscription.add(this.playerInited.pipe((0,m.filter)(e=>!!e),(0,m.once)()).subscribe(()=>{let e=this.getScene3D();e&&e.releaseCamera()})),this}getExactTime(){if(!this.providerContainer)return 0;let e=this.providerContainer.providerOutput.element$.getValue();if((0,m.isNullable)(e))return this.info.position$.getValue();let t=this.desiredState.seekState.getState(),i=t.state==="none"?void 0:t.position;return(0,m.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,m.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,m.map)(e=>e.to)).subscribe(this.info.playbackState$)).add(this.desiredState.isLooped.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.isLooped$)).add(this.desiredState.playbackRate.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.currentPlaybackRate$)).add(this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(this.info.isAutoQualityEnabled$)).add(this.desiredState.autoVideoTrackLimits.stateChangeEnded$.pipe((0,m.map)(e=>e.to)).subscribe(e=>{this.info.autoQualityLimits$.next(e);let{highQualityLimit:t,trafficSavingLimit:i}=this.tuning.autoTrackSelection;this.info.predefinedQualityLimitType$.next(yl(e,t,i))})),this.subscription.add(this.desiredState.playbackState.stateChangeStarted$.pipe((0,m.filter)(({from:e})=>e==="stopped"),(0,m.once)()).subscribe(()=>{this.initedAt=(0,m.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,m.flattenObject)(n)),n.state==="requested"?this.desiredState.seekState.setState({...n,state:"applying"}):this.events.managedError$.next({id:`WillSeekIn${n.state}`,category:m.ErrorCategory.WTF,message:"Received unexpeceted willSeek$"})})).add(e.providerOutput.soundProhibitedEvent$.pipe((0,m.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,m.flattenObject)(n)),n.state==="applying"&&(this.desiredState.seekState.setState({state:"none"}),this.events.seeked$.next())})).add(e.current$.pipe((0,m.map)(n=>n.type)).subscribe(this.info.currentFormat$)).add(e.current$.pipe((0,m.map)(n=>n.destination),(0,m.filterChanged)()).subscribe(()=>this.isPlaybackStarted=!1)).add(e.providerOutput.availableVideoStreams$.subscribe(this.info.availableVideoStreams$)).add((0,m.combine)({availableVideoTracks:e.providerOutput.availableVideoTracks$,currentVideoStream:e.providerOutput.currentVideoStream$}).pipe((0,m.map)(({availableVideoTracks:n,currentVideoStream:o})=>n.filter(u=>o?o.id===u.streamId:!0).map(({quality:u})=>u).sort((u,l)=>(0,m.isInvariantQuality)(u)?1:(0,m.isInvariantQuality)(l)?-1:(0,m.isHigher)(l,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,m.filterChanged)()).subscribe(this.info.isAudioAvailable$)).add(e.providerOutput.currentVideoTrack$.pipe((0,m.filter)(n=>(0,m.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,m.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentVideoSegmentLength$)).add(e.providerOutput.currentAudioSegmentLength$.pipe((0,m.filterChanged)((n,o)=>Math.round(n)===Math.round(o))).subscribe(this.info.currentAudioSegmentLength$)).add(e.providerOutput.hostname$.pipe((0,m.filterChanged)()).subscribe(this.info.hostname$)).add(e.providerOutput.httpConnectionType$.pipe((0,m.filterChanged)()).subscribe(this.info.httpConnectionType$)).add(e.providerOutput.httpConnectionReused$.pipe((0,m.filterChanged)()).subscribe(this.info.httpConnectionReused$)).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,m.map)(n=>n?{start:n.from,end:n.to}:{start:0,end:0})).subscribe(this.info.currentBuffer$)).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,m.tap)(n=>n&&this.stop())).subscribe(this.info.isLiveEnded$)).add(e.providerOutput.canChangePlaybackSpeed$.subscribe(this.info.canChangePlaybackSpeed$)).add(e.providerOutput.liveTime$.subscribe(this.info.liveTime$)).add(e.providerOutput.liveBufferTime$.subscribe(this.info.liveBufferTime$)).add(e.providerOutput.liveLatency$.subscribe(this.info.liveLatency$)).add((0,m.combine)({hasLiveOffsetByPaused:(0,m.merge)(this.desiredState.playbackState.stateChangeStarted$,this.desiredState.playbackState.forceChanged$).pipe((0,m.map)(n=>n.to),(0,m.filterChanged)(),(0,m.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,m.combine)({atLiveEdge:(0,m.combine)({isLive:e.providerOutput.isLive$,isLowLatency:e.providerOutput.isLowLatency$,position:hc({seekState:this.desiredState.seekState,position$:e.providerOutput.position$})}).pipe((0,m.map)(({isLive:n,position:o,isLowLatency:u})=>{let l=this.getActiveLiveDelay(u);return n&&Math.abs(o)<l/1e3}),(0,m.filterChanged)(),(0,m.tap)(n=>n&&this.setPlaybackRate(1))),hasPausedTimeoutCase:this.hasLiveOffsetByPaused}).pipe((0,m.map)(({atLiveEdge:n,hasPausedTimeoutCase:o})=>n&&!o)).subscribe(this.info.atLiveEdge$)).add((0,m.combine)({isLive:e.providerOutput.isLive$,position:e.providerOutput.position$,duration:e.providerOutput.duration$}).pipe((0,m.map)(({isLive:n,position:o,duration:u})=>n&&(Math.abs(u)-Math.abs(o))*1e3<this.tuning.live.activeLiveDelay),(0,m.filterChanged)(),(0,m.tap)(n=>n&&this.setPlaybackRate(1))).subscribe(this.info.atLiveDurationEdge$)).add(e.providerOutput.volume$.pipe((0,m.map)(n=>n.muted),(0,m.filterChanged)()).subscribe(this.info.muted$)).add(e.providerOutput.volume$.pipe((0,m.map)(n=>n.volume),(0,m.filterChanged)()).subscribe(this.info.volume$)).add(hc({seekState:this.desiredState.seekState,position$:e.providerOutput.position$}).subscribe(this.info.position$)).add((0,m.merge)(e.providerOutput.endedEvent$.pipe((0,m.mapTo)(!0)),e.providerOutput.seekedEvent$.pipe((0,m.mapTo)(!1))).pipe((0,m.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,m.map)(n=>({id:n?`No${n}`:"NoProviders",category:m.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.firstBytesEvent$.pipe((0,m.once)(),(0,m.map)(n=>n!=null?n:(0,m.now)()-this.initedAt)).subscribe(this.events.firstBytes$)).add(e.providerOutput.loadedMetadataEvent$.subscribe(this.events.loadedMetadata$)).add(e.providerOutput.firstFrameEvent$.pipe((0,m.once)(),(0,m.map)(()=>(0,m.now)()-this.initedAt)).subscribe(this.events.firstFrame$)).add(e.providerOutput.canplay$.pipe((0,m.once)(),(0,m.map)(()=>(0,m.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 m.ValueSubject(!1);this.subscription.add(e.providerOutput.seekedEvent$.subscribe(()=>t.next(!1))).add(e.providerOutput.willSeekEvent$.subscribe(()=>t.next(!0)));let i=new m.ValueSubject(!0);this.subscription.add(e.current$.subscribe(()=>i.next(!0))).add(this.desiredState.playbackState.stateChangeEnded$.pipe((0,m.filter)(({to:n})=>n==="playing"),(0,m.once)()).subscribe(()=>i.next(!1)));let r=0,s=(0,m.merge)(e.providerOutput.isBuffering$,t,i).pipe((0,m.map)(()=>{let n=e.providerOutput.isBuffering$.getValue(),o=t.getValue()||i.getValue();return n&&!o}),(0,m.filterChanged)());this.subscription.add(s.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,m.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,l;let o=e.providerOutput.element$.getValue();this.setIntrinsicVideoSize({width:(u=n==null?void 0:n.size)==null?void 0:u.width,height:(l=n==null?void 0:n.size)==null?void 0:l.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,m.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(),l=e.providerOutput.elementVisible$.getValue(),c=this.chromecastInitializer.castState$.getValue(),d;c==="CONNECTED"?d="second_screen":u?l?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,m.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 m.Subscription;this.subscription.add(t),this.subscription.add(e.current$.pipe((0,m.filterChanged)((i,r)=>i.provider===r.provider)).subscribe(()=>{t.unsubscribe(),t.add(e.providerOutput.availableVideoTracks$.pipe((0,m.filter)(i=>i.length>0),(0,m.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:s})=>s===i),t||this.setAutoQuality(!0)),t||(t=Lt(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,m.merge)(this.desiredState.videoTrack.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"quality",type:"start"}))),this.desiredState.videoTrack.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"quality",type:"end"}))),this.desiredState.autoVideoTrackSwitching.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"start"}))),this.desiredState.autoVideoTrackSwitching.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"autoQualityEnabled",type:"end"}))),this.desiredState.seekState.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"seekState",type:"start"}))),this.desiredState.seekState.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"seekState",type:"end"}))),this.desiredState.playbackState.stateChangeStarted$.pipe((0,m.map)(e=>({transition:e,entity:"playbackState",type:"start"}))),this.desiredState.playbackState.stateChangeEnded$.pipe((0,m.map)(e=>({transition:e,entity:"playbackState",type:"end"})))).pipe((0,m.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,m.assertNonNullable)(this.providerContainer),(0,m.assertNonNullable)(e),bg(),this.experimental.enableDebugTelemetry$.next(this.tuning.enableTelemetryAtStart),[this.experimental.enableDebugTelemetry$.subscribe(i=>mg(i)),this.providerContainer.current$.subscribe(({type:i})=>pa("provider",i)),e.duration$.subscribe(i=>pa("duration",i)),e.availableVideoTracks$.pipe((0,m.filter)(i=>!!i.length),(0,m.once)()).subscribe(i=>pa("tracks",i)),this.events.fatalError$.subscribe(new Ne("fatalError")),this.events.managedError$.subscribe(new Ne("managedError")),e.position$.subscribe(new Ne("position")),e.currentVideoTrack$.pipe((0,m.map)(i=>i==null?void 0:i.quality)).subscribe(new Ne("quality")),this.info.currentBuffer$.subscribe(new Ne("buffer")),e.isBuffering$.subscribe(new Ne("isBuffering"))].forEach(i=>this.subscription.add(i)),pa("codecs",Y.video.supportedCodecs)}initTracerSubscription(){let e=(0,m.getTraceSubscriptionMethod)(this.tracer.log.bind(this.tracer)),t=(0,m.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,m.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,m.combine)({currentQuality:this.info.currentQuality$,videoBitrate:this.info.videoBitrate$}).pipe((0,m.filter)(({currentQuality:i,videoBitrate:r})=>!!i&&!!r),(0,m.filterChanged)((i,r)=>i.currentQuality===r.currentQuality)).subscribe(e("currentVideoTrack"))).add(this.info.currentVideoSegmentLength$.pipe((0,m.filter)(i=>i>0),(0,m.filterChanged)()).subscribe(e("currentVideoSegmentLength"))).add(this.info.currentAudioSegmentLength$.pipe((0,m.filter)(i=>i>0),(0,m.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,m.combine)({currentBuffer:this.info.currentBuffer$.pipe((0,m.filter)(i=>i.end>0),(0,m.filterChanged)((i,r)=>i.end===r.end&&i.start===r.start)),position:this.info.position$.pipe((0,m.filterChanged)())}).pipe((0,m.throttle)(1e3)).subscribe(e("currentBufferAndPosition"))).add(this.info.duration$.pipe((0,m.filterChanged)()).subscribe(e("duration"))).add(this.info.isBuffering$.subscribe(e("isBuffering"))).add(this.info.isLive$.pipe((0,m.filterChanged)()).subscribe(e("isLive"))).add(this.info.canChangePlaybackSpeed$.pipe((0,m.filterChanged)()).subscribe(e("canChangePlaybackSpeed"))).add((0,m.combine)({liveTime:this.info.liveTime$,liveBufferTime:this.info.liveBufferTime$,position:this.info.position$}).pipe((0,m.filter)(({liveTime:i,liveBufferTime:r})=>!!i&&!!r),(0,m.throttle)(1e3)).subscribe(e("liveBufferAndPosition"))).add(this.info.atLiveEdge$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("atLiveEdge"))).add(this.info.atLiveDurationEdge$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("atLiveDurationEdge"))).add(this.info.muted$.pipe((0,m.filterChanged)()).subscribe(e("muted"))).add(this.info.volume$.pipe((0,m.filterChanged)()).subscribe(e("volume"))).add(this.info.isEnded$.pipe((0,m.filterChanged)(),(0,m.filter)(i=>i===!0)).subscribe(e("isEnded"))).add(this.info.availableSources$.subscribe(e("availableSources"))).add((0,m.combine)({throughputEstimation:this.info.throughputEstimation$,rtt:this.info.rttEstimation$}).pipe((0,m.filter)(({throughputEstimation:i,rtt:r})=>!!i&&!!r),(0,m.throttle)(3e3)).subscribe(e("throughputEstimation"))).add(this.info.isStalled$.subscribe(e("isStalled"))).add(this.info.is3DVideo$.pipe((0,m.filterChanged)(),(0,m.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:m.ErrorCategory.DOM,message:String(r)})})};this.subscription.add((0,m.merge)((0,m.fromEvent)(document,"visibilitychange"),(0,m.fromEvent)(document,"fullscreenchange"),this.desiredState.playbackState.stateChangeEnded$).subscribe(()=>{let r=document.visibilityState==="visible",s=this.desiredState.playbackState.getState()==="playing",n=!!e&&!(e!=null&&e.released);r&&s?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,m.flattenObject)({quality:t,availableTracks:(0,m.flattenObject)(e),track:(0,m.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&&!Sa()}};var Bt=require("@vkontakte/videoplayer-shared/es2018"),v$=`@vkontakte/videoplayer-core@${yo}`;