distube 3.0.0-beta.8 → 3.0.2
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.
- package/LICENSE +21 -21
- package/README.md +64 -51
- package/dist/DisTube.d.ts +522 -0
- package/dist/DisTube.d.ts.map +1 -0
- package/dist/DisTube.js +794 -0
- package/dist/DisTube.js.map +1 -0
- package/dist/constant.d.ts +130 -0
- package/dist/constant.d.ts.map +1 -0
- package/dist/constant.js +150 -0
- package/dist/constant.js.map +1 -0
- package/dist/core/DisTubeBase.d.ts +55 -0
- package/dist/core/DisTubeBase.d.ts.map +1 -0
- package/dist/core/DisTubeBase.js +76 -0
- package/dist/core/DisTubeBase.js.map +1 -0
- package/dist/core/DisTubeHandler.d.ts +95 -0
- package/dist/core/DisTubeHandler.d.ts.map +1 -0
- package/dist/core/DisTubeHandler.js +337 -0
- package/dist/core/DisTubeHandler.js.map +1 -0
- package/dist/core/DisTubeOptions.d.ts +26 -0
- package/dist/core/DisTubeOptions.d.ts.map +1 -0
- package/dist/core/DisTubeOptions.js +93 -0
- package/dist/core/DisTubeOptions.js.map +1 -0
- package/dist/core/DisTubeStream.d.ts +52 -0
- package/dist/core/DisTubeStream.d.ts.map +1 -0
- package/dist/core/DisTubeStream.js +111 -0
- package/dist/core/DisTubeStream.js.map +1 -0
- package/dist/core/index.d.ts +7 -0
- package/dist/core/index.d.ts.map +1 -0
- package/dist/core/index.js +19 -0
- package/dist/core/index.js.map +1 -0
- package/dist/core/manager/BaseManager.d.ts +18 -0
- package/dist/core/manager/BaseManager.d.ts.map +1 -0
- package/dist/core/manager/BaseManager.js +44 -0
- package/dist/core/manager/BaseManager.js.map +1 -0
- package/dist/core/manager/QueueManager.d.ts +60 -0
- package/dist/core/manager/QueueManager.d.ts.map +1 -0
- package/dist/core/manager/QueueManager.js +202 -0
- package/dist/core/manager/QueueManager.js.map +1 -0
- package/dist/core/manager/index.d.ts +3 -0
- package/dist/core/manager/index.d.ts.map +1 -0
- package/dist/core/manager/index.js +15 -0
- package/dist/core/manager/index.js.map +1 -0
- package/dist/core/voice/DJSAdapter.d.ts +4 -0
- package/dist/core/voice/DJSAdapter.d.ts.map +1 -0
- package/dist/core/voice/DJSAdapter.js +61 -0
- package/dist/core/voice/DJSAdapter.js.map +1 -0
- package/dist/core/voice/DisTubeVoice.d.ts +85 -0
- package/dist/core/voice/DisTubeVoice.d.ts.map +1 -0
- package/dist/core/voice/DisTubeVoice.js +246 -0
- package/dist/core/voice/DisTubeVoice.js.map +1 -0
- package/dist/core/voice/DisTubeVoiceManager.d.ts +41 -0
- package/dist/core/voice/DisTubeVoiceManager.d.ts.map +1 -0
- package/dist/core/voice/DisTubeVoiceManager.js +67 -0
- package/dist/core/voice/DisTubeVoiceManager.js.map +1 -0
- package/dist/core/voice/index.d.ts +4 -0
- package/dist/core/voice/index.d.ts.map +1 -0
- package/dist/core/voice/index.js +16 -0
- package/dist/core/voice/index.js.map +1 -0
- package/dist/index.d.ts +8 -0
- package/dist/index.d.ts.map +1 -0
- package/dist/index.js +23 -0
- package/dist/index.js.map +1 -0
- package/dist/plugin/http.d.ts +8 -0
- package/dist/plugin/http.d.ts.map +1 -0
- package/dist/plugin/http.js +20 -0
- package/dist/plugin/http.js.map +1 -0
- package/dist/plugin/https.d.ts +14 -0
- package/dist/plugin/https.d.ts.map +1 -0
- package/dist/plugin/https.js +50 -0
- package/dist/plugin/https.js.map +1 -0
- package/dist/plugin/index.d.ts +4 -0
- package/dist/plugin/index.d.ts.map +1 -0
- package/dist/plugin/index.js +16 -0
- package/dist/plugin/index.js.map +1 -0
- package/dist/plugin/youtube-dl.d.ts +11 -0
- package/dist/plugin/youtube-dl.d.ts.map +1 -0
- package/dist/plugin/youtube-dl.js +75 -0
- package/dist/plugin/youtube-dl.js.map +1 -0
- package/dist/struct/CustomPlugin.d.ts +27 -0
- package/dist/struct/CustomPlugin.d.ts.map +1 -0
- package/dist/struct/CustomPlugin.js +35 -0
- package/dist/struct/CustomPlugin.js.map +1 -0
- package/dist/struct/DisTubeError.d.ts +56 -0
- package/dist/struct/DisTubeError.d.ts.map +1 -0
- package/dist/struct/DisTubeError.js +75 -0
- package/dist/struct/DisTubeError.js.map +1 -0
- package/dist/struct/ExtractorPlugin.d.ts +29 -0
- package/dist/struct/ExtractorPlugin.d.ts.map +1 -0
- package/dist/struct/ExtractorPlugin.js +32 -0
- package/dist/struct/ExtractorPlugin.js.map +1 -0
- package/dist/struct/Playlist.d.ts +42 -0
- package/dist/struct/Playlist.d.ts.map +1 -0
- package/dist/struct/Playlist.js +104 -0
- package/dist/struct/Playlist.js.map +1 -0
- package/dist/struct/Plugin.d.ts +82 -0
- package/dist/struct/Plugin.d.ts.map +1 -0
- package/dist/struct/Plugin.js +108 -0
- package/dist/struct/Plugin.js.map +1 -0
- package/dist/struct/Queue.d.ts +217 -0
- package/dist/struct/Queue.d.ts.map +1 -0
- package/dist/struct/Queue.js +481 -0
- package/dist/struct/Queue.js.map +1 -0
- package/dist/struct/SearchResult.d.ts +28 -0
- package/dist/struct/SearchResult.d.ts.map +1 -0
- package/dist/struct/SearchResult.js +79 -0
- package/dist/struct/SearchResult.js.map +1 -0
- package/dist/struct/Song.d.ts +68 -0
- package/dist/struct/Song.d.ts.map +1 -0
- package/dist/struct/Song.js +229 -0
- package/dist/struct/Song.js.map +1 -0
- package/dist/struct/TaskQueue.d.ts +33 -0
- package/dist/struct/TaskQueue.d.ts.map +1 -0
- package/dist/struct/TaskQueue.js +58 -0
- package/dist/struct/TaskQueue.js.map +1 -0
- package/dist/struct/index.d.ts +10 -0
- package/dist/struct/index.d.ts.map +1 -0
- package/dist/struct/index.js +22 -0
- package/dist/struct/index.js.map +1 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/dist/type.d.ts +159 -0
- package/dist/type.d.ts.map +1 -0
- package/dist/type.js +3 -0
- package/dist/type.js.map +1 -0
- package/dist/util.d.ts +47 -0
- package/dist/util.d.ts.map +1 -0
- package/dist/util.js +205 -0
- package/dist/util.js.map +1 -0
- package/package.json +88 -62
- package/src/DisTube.js +0 -851
- package/src/DisTubeBase.js +0 -39
- package/src/DisTubeHandler.js +0 -440
- package/src/DisTubeOptions.js +0 -82
- package/src/Filter.js +0 -36
- package/src/Playlist.js +0 -75
- package/src/Plugin/CustomPlugin.js +0 -26
- package/src/Plugin/ExtractorPlugin.js +0 -25
- package/src/Plugin/Plugin.js +0 -36
- package/src/Plugin/http.js +0 -27
- package/src/Plugin/https.js +0 -27
- package/src/Queue.js +0 -340
- package/src/SearchResult.js +0 -57
- package/src/Song.js +0 -169
- package/src/util.js +0 -65
- package/typings/DisTube.d.ts +0 -518
- package/typings/DisTubeBase.d.ts +0 -31
- package/typings/DisTubeHandler.d.ts +0 -130
- package/typings/DisTubeOptions.d.ts +0 -5
- package/typings/Filter.d.ts +0 -83
- package/typings/Playlist.d.ts +0 -58
- package/typings/Plugin/CustomPlugin.d.ts +0 -21
- package/typings/Plugin/ExtractorPlugin.d.ts +0 -20
- package/typings/Plugin/Plugin.d.ts +0 -31
- package/typings/Plugin/http.d.ts +0 -4
- package/typings/Plugin/https.d.ts +0 -4
- package/typings/Queue.d.ts +0 -227
- package/typings/SearchResult.d.ts +0 -51
- package/typings/Song.d.ts +0 -153
- package/typings/util.d.ts +0 -6
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
import Playlist from "./Playlist";
|
|
2
|
+
import type ytdl from "@distube/ytdl-core";
|
|
3
|
+
import type { GuildMember, User } from "discord.js";
|
|
4
|
+
import type { Chapter, OtherSongInfo, SearchResult } from "..";
|
|
5
|
+
/**
|
|
6
|
+
* Class representing a song.
|
|
7
|
+
*
|
|
8
|
+
* <info>If {@link Song} is added from a YouTube {@link SearchResult} or {@link Playlist},
|
|
9
|
+
* some info will be missing to save your resources. It will be filled when emitting {@link DisTube#playSong} event.
|
|
10
|
+
*
|
|
11
|
+
* Missing info: {@link Song#likes}, {@link Song#dislikes}, {@link Song#streamURL},
|
|
12
|
+
* {@link Song#related}, {@link Song#chapters}, {@link Song#age_restricted}</info>
|
|
13
|
+
*/
|
|
14
|
+
export declare class Song {
|
|
15
|
+
source: string;
|
|
16
|
+
formats?: ytdl.videoFormat[];
|
|
17
|
+
member?: GuildMember;
|
|
18
|
+
user?: User;
|
|
19
|
+
id?: string;
|
|
20
|
+
name?: string;
|
|
21
|
+
isLive: boolean;
|
|
22
|
+
duration: number;
|
|
23
|
+
formattedDuration?: string;
|
|
24
|
+
url: string;
|
|
25
|
+
streamURL?: string;
|
|
26
|
+
thumbnail?: string;
|
|
27
|
+
related: Song[];
|
|
28
|
+
views: number;
|
|
29
|
+
likes: number;
|
|
30
|
+
dislikes: number;
|
|
31
|
+
uploader: {
|
|
32
|
+
name?: string;
|
|
33
|
+
url?: string;
|
|
34
|
+
};
|
|
35
|
+
age_restricted: boolean;
|
|
36
|
+
chapters: Chapter[];
|
|
37
|
+
reposts: number;
|
|
38
|
+
playlist?: Playlist;
|
|
39
|
+
/**
|
|
40
|
+
* Create a Song
|
|
41
|
+
* @param {ytdl.videoInfo|SearchResult|OtherSongInfo} info Raw info
|
|
42
|
+
* @param {Discord.GuildMember?} member Requested user
|
|
43
|
+
* @param {string} source Song source
|
|
44
|
+
*/
|
|
45
|
+
constructor(info: ytdl.videoInfo | SearchResult | OtherSongInfo | ytdl.relatedVideo, member?: GuildMember, source?: string);
|
|
46
|
+
_patchYouTube(i: ytdl.videoInfo | SearchResult): void;
|
|
47
|
+
/**
|
|
48
|
+
* Patch data from other source
|
|
49
|
+
* @param {OtherSongInfo} info Video info
|
|
50
|
+
* @private
|
|
51
|
+
*/
|
|
52
|
+
private _patchOther;
|
|
53
|
+
/**
|
|
54
|
+
* @param {Playlist} playlist Playlist
|
|
55
|
+
* @param {Discord.GuildMember} [member] Requested user
|
|
56
|
+
* @private
|
|
57
|
+
* @returns {Song}
|
|
58
|
+
*/
|
|
59
|
+
_patchPlaylist(playlist: Playlist, member?: GuildMember): Song;
|
|
60
|
+
/**
|
|
61
|
+
* @param {Discord.GuildMember} [member] Requested user
|
|
62
|
+
* @private
|
|
63
|
+
* @returns {Song}
|
|
64
|
+
*/
|
|
65
|
+
_patchMember(member?: GuildMember): Song;
|
|
66
|
+
}
|
|
67
|
+
export default Song;
|
|
68
|
+
//# sourceMappingURL=Song.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Song.d.ts","sourceRoot":"","sources":["../../src/struct/Song.ts"],"names":[],"mappings":"AAAA,OAAO,QAAQ,MAAM,YAAY,CAAC;AAElC,OAAO,KAAK,IAAI,MAAM,oBAAoB,CAAC;AAC3C,OAAO,KAAK,EAAE,WAAW,EAAE,IAAI,EAAE,MAAM,YAAY,CAAC;AACpD,OAAO,KAAK,EAAE,OAAO,EAAE,aAAa,EAAE,YAAY,EAAE,MAAM,IAAI,CAAC;AAE/D;;;;;;;;GAQG;AACH,qBAAa,IAAI;IACf,MAAM,EAAE,MAAM,CAAC;IACf,OAAO,CAAC,EAAE,IAAI,CAAC,WAAW,EAAE,CAAC;IAC7B,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,IAAI,CAAC,EAAE,IAAI,CAAC;IACZ,EAAE,CAAC,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,EAAG,OAAO,CAAC;IACjB,QAAQ,EAAG,MAAM,CAAC;IAClB,iBAAiB,CAAC,EAAE,MAAM,CAAC;IAC3B,GAAG,EAAG,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,OAAO,EAAG,IAAI,EAAE,CAAC;IACjB,KAAK,EAAG,MAAM,CAAC;IACf,KAAK,EAAG,MAAM,CAAC;IACf,QAAQ,EAAG,MAAM,CAAC;IAClB,QAAQ,EAAG;QACT,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,GAAG,CAAC,EAAE,MAAM,CAAC;KACd,CAAC;IACF,cAAc,EAAG,OAAO,CAAC;IACzB,QAAQ,EAAG,OAAO,EAAE,CAAC;IACrB,OAAO,EAAG,MAAM,CAAC;IACjB,QAAQ,CAAC,EAAE,QAAQ,CAAC;IACpB;;;;;OAKG;gBAED,IAAI,EAAE,IAAI,CAAC,SAAS,GAAG,YAAY,GAAG,aAAa,GAAG,IAAI,CAAC,YAAY,EACvE,MAAM,CAAC,EAAE,WAAW,EACpB,MAAM,SAAY;IAqBpB,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,SAAS,GAAG,YAAY;IAoH9C;;;;OAIG;IACH,OAAO,CAAC,WAAW;IAsBnB;;;;;OAKG;IACH,cAAc,CAAC,QAAQ,EAAE,QAAQ,EAAE,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI;IAW9D;;;;OAIG;IACH,YAAY,CAAC,MAAM,CAAC,EAAE,WAAW,GAAG,IAAI;CAezC;AAED,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,229 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
exports.Song = void 0;
|
|
7
|
+
const Playlist_1 = __importDefault(require("./Playlist"));
|
|
8
|
+
const __1 = require("..");
|
|
9
|
+
/**
|
|
10
|
+
* Class representing a song.
|
|
11
|
+
*
|
|
12
|
+
* <info>If {@link Song} is added from a YouTube {@link SearchResult} or {@link Playlist},
|
|
13
|
+
* some info will be missing to save your resources. It will be filled when emitting {@link DisTube#playSong} event.
|
|
14
|
+
*
|
|
15
|
+
* Missing info: {@link Song#likes}, {@link Song#dislikes}, {@link Song#streamURL},
|
|
16
|
+
* {@link Song#related}, {@link Song#chapters}, {@link Song#age_restricted}</info>
|
|
17
|
+
*/
|
|
18
|
+
class Song {
|
|
19
|
+
/**
|
|
20
|
+
* Create a Song
|
|
21
|
+
* @param {ytdl.videoInfo|SearchResult|OtherSongInfo} info Raw info
|
|
22
|
+
* @param {Discord.GuildMember?} member Requested user
|
|
23
|
+
* @param {string} source Song source
|
|
24
|
+
*/
|
|
25
|
+
constructor(info, member, source = "youtube") {
|
|
26
|
+
var _a;
|
|
27
|
+
if (typeof source !== "string" ||
|
|
28
|
+
(info.src && typeof info.src !== "string")) {
|
|
29
|
+
throw new __1.DisTubeError("INVALID_TYPE", "string", source, "source");
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* The source of the song
|
|
33
|
+
* @type {string}
|
|
34
|
+
*/
|
|
35
|
+
this.source = (((_a = info) === null || _a === void 0 ? void 0 : _a.src) || source).toLowerCase();
|
|
36
|
+
this._patchMember(member);
|
|
37
|
+
if (this.source === "youtube") {
|
|
38
|
+
this._patchYouTube(info);
|
|
39
|
+
}
|
|
40
|
+
else {
|
|
41
|
+
this._patchOther(info);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
_patchYouTube(i) {
|
|
45
|
+
var _a, _b, _c, _d, _e, _f, _g, _h, _j;
|
|
46
|
+
// FIXME
|
|
47
|
+
const info = i;
|
|
48
|
+
if (info.full === true) {
|
|
49
|
+
/**
|
|
50
|
+
* Stream formats (Available if the song is from YouTube and playing)
|
|
51
|
+
* @type {ytdl.videoFormat[]?}
|
|
52
|
+
* @private
|
|
53
|
+
*/
|
|
54
|
+
this.formats = info.formats;
|
|
55
|
+
// eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports
|
|
56
|
+
const err = require("@distube/ytdl-core/lib/utils").playError(info.player_response, [
|
|
57
|
+
"UNPLAYABLE",
|
|
58
|
+
"LIVE_STREAM_OFFLINE",
|
|
59
|
+
"LOGIN_REQUIRED",
|
|
60
|
+
]);
|
|
61
|
+
if (err)
|
|
62
|
+
throw err;
|
|
63
|
+
if (!((_a = info.formats) === null || _a === void 0 ? void 0 : _a.length))
|
|
64
|
+
throw new __1.DisTubeError("UNAVAILABLE_VIDEO");
|
|
65
|
+
}
|
|
66
|
+
const details = info.videoDetails || info;
|
|
67
|
+
/**
|
|
68
|
+
* YouTube video id
|
|
69
|
+
* @type {string?}
|
|
70
|
+
*/
|
|
71
|
+
this.id = details.videoId || details.id;
|
|
72
|
+
/**
|
|
73
|
+
* Song name aka video title.
|
|
74
|
+
* @type {string?}
|
|
75
|
+
*/
|
|
76
|
+
this.name = details.title || details.name;
|
|
77
|
+
/**
|
|
78
|
+
* Indicates if the video is an active live.
|
|
79
|
+
* @type {boolean}
|
|
80
|
+
*/
|
|
81
|
+
this.isLive = !!details.isLive;
|
|
82
|
+
/**
|
|
83
|
+
* Song duration.
|
|
84
|
+
* @type {number}
|
|
85
|
+
*/
|
|
86
|
+
this.duration = this.isLive ? 0 : (0, __1.toSecond)(details.lengthSeconds || details.length_seconds || details.duration);
|
|
87
|
+
/**
|
|
88
|
+
* Formatted duration string (`hh:mm:ss`, `mm:ss` or `Live`).
|
|
89
|
+
* @type {string?}
|
|
90
|
+
*/
|
|
91
|
+
this.formattedDuration = this.isLive ? "Live" : (0, __1.formatDuration)(this.duration);
|
|
92
|
+
/**
|
|
93
|
+
* Song URL.
|
|
94
|
+
* @type {string}
|
|
95
|
+
*/
|
|
96
|
+
this.url = `https://www.youtube.com/watch?v=${this.id}`;
|
|
97
|
+
/**
|
|
98
|
+
* Stream / Download URL (Available if the song is playing)
|
|
99
|
+
* @type {string?}
|
|
100
|
+
*/
|
|
101
|
+
this.streamURL = undefined;
|
|
102
|
+
/**
|
|
103
|
+
* Song thumbnail.
|
|
104
|
+
* @type {string?}
|
|
105
|
+
*/
|
|
106
|
+
this.thumbnail =
|
|
107
|
+
((_b = details.thumbnails) === null || _b === void 0 ? void 0 : _b.sort((a, b) => b.width - a.width)[0].url) ||
|
|
108
|
+
((_c = details.thumbnail) === null || _c === void 0 ? void 0 : _c.url) ||
|
|
109
|
+
details.thumbnail;
|
|
110
|
+
/**
|
|
111
|
+
* Related songs
|
|
112
|
+
* @type {Song[]}
|
|
113
|
+
*/
|
|
114
|
+
this.related = ((_d = info === null || info === void 0 ? void 0 : info.related_videos) === null || _d === void 0 ? void 0 : _d.map((v) => new Song(v))) || details.related || [];
|
|
115
|
+
/**
|
|
116
|
+
* Song views count
|
|
117
|
+
* @type {number}
|
|
118
|
+
*/
|
|
119
|
+
this.views = (0, __1.parseNumber)(details.viewCount || details.view_count || details.views);
|
|
120
|
+
/**
|
|
121
|
+
* Song like count
|
|
122
|
+
* @type {number}
|
|
123
|
+
*/
|
|
124
|
+
this.likes = (0, __1.parseNumber)(details.likes);
|
|
125
|
+
/**
|
|
126
|
+
* Song dislike count
|
|
127
|
+
* @type {number}
|
|
128
|
+
*/
|
|
129
|
+
this.dislikes = (0, __1.parseNumber)(details.dislikes);
|
|
130
|
+
/**
|
|
131
|
+
* Song uploader
|
|
132
|
+
* @type {Object}
|
|
133
|
+
* @prop {string?} name Uploader name
|
|
134
|
+
* @prop {string?} url Uploader url
|
|
135
|
+
*/
|
|
136
|
+
this.uploader = {
|
|
137
|
+
name: ((_e = info.uploader) === null || _e === void 0 ? void 0 : _e.name) || ((_f = details.author) === null || _f === void 0 ? void 0 : _f.name),
|
|
138
|
+
url: ((_g = info.uploader) === null || _g === void 0 ? void 0 : _g.url) || ((_h = details.author) === null || _h === void 0 ? void 0 : _h.channel_url) || ((_j = details.author) === null || _j === void 0 ? void 0 : _j.url),
|
|
139
|
+
};
|
|
140
|
+
/**
|
|
141
|
+
* Whether or not an age-restricted content
|
|
142
|
+
* @type {boolean}
|
|
143
|
+
*/
|
|
144
|
+
this.age_restricted = !!details.age_restricted;
|
|
145
|
+
/**
|
|
146
|
+
* @typedef {Object} Chapter
|
|
147
|
+
* @prop {string} title Chapter title
|
|
148
|
+
* @prop {number} start_time Chapter start time in seconds
|
|
149
|
+
*/
|
|
150
|
+
/**
|
|
151
|
+
* Chapters information (YouTube only)
|
|
152
|
+
* @type {Chapter[]}
|
|
153
|
+
*/
|
|
154
|
+
this.chapters = details.chapters || [];
|
|
155
|
+
/**
|
|
156
|
+
* Song repost count
|
|
157
|
+
* @type {number}
|
|
158
|
+
*/
|
|
159
|
+
this.reposts = 0;
|
|
160
|
+
}
|
|
161
|
+
/**
|
|
162
|
+
* Patch data from other source
|
|
163
|
+
* @param {OtherSongInfo} info Video info
|
|
164
|
+
* @private
|
|
165
|
+
*/
|
|
166
|
+
_patchOther(info) {
|
|
167
|
+
if (info.id)
|
|
168
|
+
this.id = info.id;
|
|
169
|
+
if (info.title)
|
|
170
|
+
this.name = info.title;
|
|
171
|
+
else if (info.name)
|
|
172
|
+
this.name = info.name;
|
|
173
|
+
this.isLive = Boolean(info.is_live || info.isLive);
|
|
174
|
+
this.duration = this.isLive ? 0 : (0, __1.toSecond)(info._duration_raw || info.duration);
|
|
175
|
+
this.formattedDuration = this.isLive ? "Live" : (0, __1.formatDuration)(this.duration);
|
|
176
|
+
this.url = info.webpage_url || info.url;
|
|
177
|
+
this.thumbnail = info.thumbnail;
|
|
178
|
+
this.related = info.related || [];
|
|
179
|
+
this.views = (0, __1.parseNumber)(info.view_count || info.views);
|
|
180
|
+
this.likes = (0, __1.parseNumber)(info.like_count || info.likes);
|
|
181
|
+
this.dislikes = (0, __1.parseNumber)(info.dislike_count || info.dislikes);
|
|
182
|
+
this.reposts = (0, __1.parseNumber)(info.repost_count || info.reposts);
|
|
183
|
+
this.uploader = {
|
|
184
|
+
name: info.uploader,
|
|
185
|
+
url: info.uploader_url,
|
|
186
|
+
};
|
|
187
|
+
this.age_restricted = info.age_restricted || (!!info.age_limit && (0, __1.parseNumber)(info.age_limit) >= 18);
|
|
188
|
+
this.chapters = info.chapters || [];
|
|
189
|
+
}
|
|
190
|
+
/**
|
|
191
|
+
* @param {Playlist} playlist Playlist
|
|
192
|
+
* @param {Discord.GuildMember} [member] Requested user
|
|
193
|
+
* @private
|
|
194
|
+
* @returns {Song}
|
|
195
|
+
*/
|
|
196
|
+
_patchPlaylist(playlist, member) {
|
|
197
|
+
if (!(playlist instanceof Playlist_1.default))
|
|
198
|
+
throw new __1.DisTubeError("INVALID_TYPE", "Playlist", playlist, "playlist");
|
|
199
|
+
/**
|
|
200
|
+
* The playlist added this song
|
|
201
|
+
* @type {Playlist?}
|
|
202
|
+
*/
|
|
203
|
+
this.playlist = playlist;
|
|
204
|
+
return this._patchMember(member);
|
|
205
|
+
}
|
|
206
|
+
/**
|
|
207
|
+
* @param {Discord.GuildMember} [member] Requested user
|
|
208
|
+
* @private
|
|
209
|
+
* @returns {Song}
|
|
210
|
+
*/
|
|
211
|
+
_patchMember(member) {
|
|
212
|
+
if (member) {
|
|
213
|
+
/**
|
|
214
|
+
* User requested
|
|
215
|
+
* @type {Discord.GuildMember?}
|
|
216
|
+
*/
|
|
217
|
+
this.member = member;
|
|
218
|
+
/**
|
|
219
|
+
* User requested
|
|
220
|
+
* @type {Discord.User?}
|
|
221
|
+
*/
|
|
222
|
+
this.user = member === null || member === void 0 ? void 0 : member.user;
|
|
223
|
+
}
|
|
224
|
+
return this;
|
|
225
|
+
}
|
|
226
|
+
}
|
|
227
|
+
exports.Song = Song;
|
|
228
|
+
exports.default = Song;
|
|
229
|
+
//# sourceMappingURL=Song.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Song.js","sourceRoot":"","sources":["../../src/struct/Song.ts"],"names":[],"mappings":"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","sourcesContent":["import Playlist from \"./Playlist\";\nimport { DisTubeError, formatDuration, parseNumber, toSecond } from \"..\";\nimport type ytdl from \"@distube/ytdl-core\";\nimport type { GuildMember, User } from \"discord.js\";\nimport type { Chapter, OtherSongInfo, SearchResult } from \"..\";\n\n/**\n * Class representing a song.\n *\n * <info>If {@link Song} is added from a YouTube {@link SearchResult} or {@link Playlist},\n * some info will be missing to save your resources. It will be filled when emitting {@link DisTube#playSong} event.\n *\n * Missing info: {@link Song#likes}, {@link Song#dislikes}, {@link Song#streamURL},\n * {@link Song#related}, {@link Song#chapters}, {@link Song#age_restricted}</info>\n */\nexport class Song {\n source: string;\n formats?: ytdl.videoFormat[];\n member?: GuildMember;\n user?: User;\n id?: string;\n name?: string;\n isLive!: boolean;\n duration!: number;\n formattedDuration?: string;\n url!: string;\n streamURL?: string;\n thumbnail?: string;\n related!: Song[];\n views!: number;\n likes!: number;\n dislikes!: number;\n uploader!: {\n name?: string;\n url?: string;\n };\n age_restricted!: boolean;\n chapters!: Chapter[];\n reposts!: number;\n playlist?: Playlist;\n /**\n * Create a Song\n * @param {ytdl.videoInfo|SearchResult|OtherSongInfo} info Raw info\n * @param {Discord.GuildMember?} member Requested user\n * @param {string} source Song source\n */\n constructor(\n info: ytdl.videoInfo | SearchResult | OtherSongInfo | ytdl.relatedVideo,\n member?: GuildMember,\n source = \"youtube\",\n ) {\n if (\n typeof source !== \"string\" ||\n ((info as OtherSongInfo).src && typeof (info as OtherSongInfo).src !== \"string\")\n ) {\n throw new DisTubeError(\"INVALID_TYPE\", \"string\", source, \"source\");\n }\n /**\n * The source of the song\n * @type {string}\n */\n this.source = ((info as OtherSongInfo)?.src || source).toLowerCase();\n this._patchMember(member);\n if (this.source === \"youtube\") {\n this._patchYouTube(info as ytdl.videoInfo);\n } else {\n this._patchOther(info as OtherSongInfo);\n }\n }\n\n _patchYouTube(i: ytdl.videoInfo | SearchResult) {\n // FIXME\n const info = i as any;\n if ((info as any).full === true) {\n /**\n * Stream formats (Available if the song is from YouTube and playing)\n * @type {ytdl.videoFormat[]?}\n * @private\n */\n this.formats = info.formats;\n // eslint-disable-next-line @typescript-eslint/no-var-requires, @typescript-eslint/no-require-imports\n const err = require(\"@distube/ytdl-core/lib/utils\").playError(info.player_response, [\n \"UNPLAYABLE\",\n \"LIVE_STREAM_OFFLINE\",\n \"LOGIN_REQUIRED\",\n ]);\n if (err) throw err;\n\n if (!info.formats?.length) throw new DisTubeError(\"UNAVAILABLE_VIDEO\");\n }\n const details = info.videoDetails || info;\n /**\n * YouTube video id\n * @type {string?}\n */\n this.id = details.videoId || details.id;\n /**\n * Song name aka video title.\n * @type {string?}\n */\n this.name = details.title || details.name;\n /**\n * Indicates if the video is an active live.\n * @type {boolean}\n */\n this.isLive = !!details.isLive;\n /**\n * Song duration.\n * @type {number}\n */\n this.duration = this.isLive ? 0 : toSecond(details.lengthSeconds || details.length_seconds || details.duration);\n /**\n * Formatted duration string (`hh:mm:ss`, `mm:ss` or `Live`).\n * @type {string?}\n */\n this.formattedDuration = this.isLive ? \"Live\" : formatDuration(this.duration);\n /**\n * Song URL.\n * @type {string}\n */\n this.url = `https://www.youtube.com/watch?v=${this.id}`;\n /**\n * Stream / Download URL (Available if the song is playing)\n * @type {string?}\n */\n this.streamURL = undefined;\n /**\n * Song thumbnail.\n * @type {string?}\n */\n this.thumbnail =\n details.thumbnails?.sort((a: any, b: any) => b.width - a.width)[0].url ||\n details.thumbnail?.url ||\n details.thumbnail;\n /**\n * Related songs\n * @type {Song[]}\n */\n this.related = info?.related_videos?.map((v: any) => new Song(v)) || details.related || [];\n /**\n * Song views count\n * @type {number}\n */\n this.views = parseNumber(details.viewCount || details.view_count || details.views);\n /**\n * Song like count\n * @type {number}\n */\n this.likes = parseNumber(details.likes);\n /**\n * Song dislike count\n * @type {number}\n */\n this.dislikes = parseNumber(details.dislikes);\n /**\n * Song uploader\n * @type {Object}\n * @prop {string?} name Uploader name\n * @prop {string?} url Uploader url\n */\n this.uploader = {\n name: info.uploader?.name || details.author?.name,\n url: info.uploader?.url || details.author?.channel_url || details.author?.url,\n };\n /**\n * Whether or not an age-restricted content\n * @type {boolean}\n */\n this.age_restricted = !!details.age_restricted;\n /**\n * @typedef {Object} Chapter\n * @prop {string} title Chapter title\n * @prop {number} start_time Chapter start time in seconds\n */\n /**\n * Chapters information (YouTube only)\n * @type {Chapter[]}\n */\n this.chapters = details.chapters || [];\n /**\n * Song repost count\n * @type {number}\n */\n this.reposts = 0;\n }\n\n /**\n * Patch data from other source\n * @param {OtherSongInfo} info Video info\n * @private\n */\n private _patchOther(info: OtherSongInfo) {\n if (info.id) this.id = info.id;\n if (info.title) this.name = info.title;\n else if (info.name) this.name = info.name;\n this.isLive = Boolean(info.is_live || info.isLive);\n this.duration = this.isLive ? 0 : toSecond(info._duration_raw || info.duration);\n this.formattedDuration = this.isLive ? \"Live\" : formatDuration(this.duration);\n this.url = info.webpage_url || info.url;\n this.thumbnail = info.thumbnail;\n this.related = info.related || [];\n this.views = parseNumber(info.view_count || info.views);\n this.likes = parseNumber(info.like_count || info.likes);\n this.dislikes = parseNumber(info.dislike_count || info.dislikes);\n this.reposts = parseNumber(info.repost_count || info.reposts);\n this.uploader = {\n name: info.uploader,\n url: info.uploader_url,\n };\n this.age_restricted = info.age_restricted || (!!info.age_limit && parseNumber(info.age_limit) >= 18);\n this.chapters = info.chapters || [];\n }\n\n /**\n * @param {Playlist} playlist Playlist\n * @param {Discord.GuildMember} [member] Requested user\n * @private\n * @returns {Song}\n */\n _patchPlaylist(playlist: Playlist, member?: GuildMember): Song {\n if (!(playlist instanceof Playlist)) throw new DisTubeError(\"INVALID_TYPE\", \"Playlist\", playlist, \"playlist\");\n\n /**\n * The playlist added this song\n * @type {Playlist?}\n */\n this.playlist = playlist;\n return this._patchMember(member);\n }\n\n /**\n * @param {Discord.GuildMember} [member] Requested user\n * @private\n * @returns {Song}\n */\n _patchMember(member?: GuildMember): Song {\n if (member) {\n /**\n * User requested\n * @type {Discord.GuildMember?}\n */\n this.member = member;\n /**\n * User requested\n * @type {Discord.User?}\n */\n this.user = member?.user;\n }\n return this;\n }\n}\n\nexport default Song;\n"]}
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Task queuing system
|
|
3
|
+
* @private
|
|
4
|
+
*/
|
|
5
|
+
export declare class TaskQueue {
|
|
6
|
+
/**
|
|
7
|
+
* The task array
|
|
8
|
+
* @type {Task[]}
|
|
9
|
+
* @private
|
|
10
|
+
*/
|
|
11
|
+
private tasks;
|
|
12
|
+
/**
|
|
13
|
+
* Waits for last task finished and queues a new task
|
|
14
|
+
* @param {boolean} [resolveInfo=false] Whether the task is a resolving info task
|
|
15
|
+
* @returns {Promise<void>}
|
|
16
|
+
*/
|
|
17
|
+
queuing(resolveInfo?: boolean): Promise<void>;
|
|
18
|
+
/**
|
|
19
|
+
* Removes the finished task and processes the next task
|
|
20
|
+
*/
|
|
21
|
+
resolve(): void;
|
|
22
|
+
/**
|
|
23
|
+
* The remaining number of tasks
|
|
24
|
+
* @type {number}
|
|
25
|
+
*/
|
|
26
|
+
get remaining(): number;
|
|
27
|
+
/**
|
|
28
|
+
* Whether or not having a resolving info task
|
|
29
|
+
* @type {boolean}
|
|
30
|
+
*/
|
|
31
|
+
get hasResolveTask(): boolean;
|
|
32
|
+
}
|
|
33
|
+
//# sourceMappingURL=TaskQueue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TaskQueue.d.ts","sourceRoot":"","sources":["../../src/struct/TaskQueue.ts"],"names":[],"mappings":"AAYA;;;GAGG;AACH,qBAAa,SAAS;IACpB;;;;OAIG;IACH,OAAO,CAAC,KAAK,CAAc;IAE3B;;;;OAIG;IACI,OAAO,CAAC,WAAW,UAAQ,GAAG,OAAO,CAAC,IAAI,CAAC;IAMlD;;OAEG;IACI,OAAO,IAAI,IAAI;IAItB;;;OAGG;IACH,IAAW,SAAS,IAAI,MAAM,CAE7B;IAED;;;OAGG;IACH,IAAW,cAAc,IAAI,OAAO,CAEnC;CACF"}
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.TaskQueue = void 0;
|
|
4
|
+
class Task {
|
|
5
|
+
constructor(resolveInfo) {
|
|
6
|
+
this.resolveInfo = resolveInfo;
|
|
7
|
+
this.promise = new Promise(res => {
|
|
8
|
+
this.resolve = res;
|
|
9
|
+
});
|
|
10
|
+
}
|
|
11
|
+
}
|
|
12
|
+
/**
|
|
13
|
+
* Task queuing system
|
|
14
|
+
* @private
|
|
15
|
+
*/
|
|
16
|
+
class TaskQueue {
|
|
17
|
+
constructor() {
|
|
18
|
+
/**
|
|
19
|
+
* The task array
|
|
20
|
+
* @type {Task[]}
|
|
21
|
+
* @private
|
|
22
|
+
*/
|
|
23
|
+
this.tasks = [];
|
|
24
|
+
}
|
|
25
|
+
/**
|
|
26
|
+
* Waits for last task finished and queues a new task
|
|
27
|
+
* @param {boolean} [resolveInfo=false] Whether the task is a resolving info task
|
|
28
|
+
* @returns {Promise<void>}
|
|
29
|
+
*/
|
|
30
|
+
queuing(resolveInfo = false) {
|
|
31
|
+
const next = this.remaining ? this.tasks[this.tasks.length - 1].promise : Promise.resolve();
|
|
32
|
+
this.tasks.push(new Task(resolveInfo));
|
|
33
|
+
return next;
|
|
34
|
+
}
|
|
35
|
+
/**
|
|
36
|
+
* Removes the finished task and processes the next task
|
|
37
|
+
*/
|
|
38
|
+
resolve() {
|
|
39
|
+
var _a;
|
|
40
|
+
(_a = this.tasks.shift()) === null || _a === void 0 ? void 0 : _a.resolve();
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* The remaining number of tasks
|
|
44
|
+
* @type {number}
|
|
45
|
+
*/
|
|
46
|
+
get remaining() {
|
|
47
|
+
return this.tasks.length;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Whether or not having a resolving info task
|
|
51
|
+
* @type {boolean}
|
|
52
|
+
*/
|
|
53
|
+
get hasResolveTask() {
|
|
54
|
+
return !!this.tasks.find(t => t.resolveInfo);
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
exports.TaskQueue = TaskQueue;
|
|
58
|
+
//# sourceMappingURL=TaskQueue.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TaskQueue.js","sourceRoot":"","sources":["../../src/struct/TaskQueue.ts"],"names":[],"mappings":";;;AAAA,MAAM,IAAI;IAIR,YAAY,WAAoB;QAC9B,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,IAAI,CAAC,OAAO,GAAG,IAAI,OAAO,CAAO,GAAG,CAAC,EAAE;YACrC,IAAI,CAAC,OAAO,GAAG,GAAG,CAAC;QACrB,CAAC,CAAC,CAAC;IACL,CAAC;CACF;AAED;;;GAGG;AACH,MAAa,SAAS;IAAtB;QACE;;;;WAIG;QACK,UAAK,GAAW,EAAE,CAAC;IAmC7B,CAAC;IAjCC;;;;OAIG;IACI,OAAO,CAAC,WAAW,GAAG,KAAK;QAChC,MAAM,IAAI,GAAG,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,KAAK,CAAC,MAAM,GAAG,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,OAAO,CAAC,OAAO,EAAE,CAAC;QAC5F,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,IAAI,CAAC,WAAW,CAAC,CAAC,CAAC;QACvC,OAAO,IAAI,CAAC;IACd,CAAC;IAED;;OAEG;IACI,OAAO;;QACZ,MAAA,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,0CAAE,OAAO,EAAE,CAAC;IAChC,CAAC;IAED;;;OAGG;IACH,IAAW,SAAS;QAClB,OAAO,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC;IAC3B,CAAC;IAED;;;OAGG;IACH,IAAW,cAAc;QACvB,OAAO,CAAC,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC;IAC/C,CAAC;CACF;AAzCD,8BAyCC","sourcesContent":["class Task {\n resolve!: () => void;\n promise: Promise<void>;\n resolveInfo: boolean;\n constructor(resolveInfo: boolean) {\n this.resolveInfo = resolveInfo;\n this.promise = new Promise<void>(res => {\n this.resolve = res;\n });\n }\n}\n\n/**\n * Task queuing system\n * @private\n */\nexport class TaskQueue {\n /**\n * The task array\n * @type {Task[]}\n * @private\n */\n private tasks: Task[] = [];\n\n /**\n * Waits for last task finished and queues a new task\n * @param {boolean} [resolveInfo=false] Whether the task is a resolving info task\n * @returns {Promise<void>}\n */\n public queuing(resolveInfo = false): Promise<void> {\n const next = this.remaining ? this.tasks[this.tasks.length - 1].promise : Promise.resolve();\n this.tasks.push(new Task(resolveInfo));\n return next;\n }\n\n /**\n * Removes the finished task and processes the next task\n */\n public resolve(): void {\n this.tasks.shift()?.resolve();\n }\n\n /**\n * The remaining number of tasks\n * @type {number}\n */\n public get remaining(): number {\n return this.tasks.length;\n }\n\n /**\n * Whether or not having a resolving info task\n * @type {boolean}\n */\n public get hasResolveTask(): boolean {\n return !!this.tasks.find(t => t.resolveInfo);\n }\n}\n"]}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
export * from "./DisTubeError";
|
|
2
|
+
export * from "./TaskQueue";
|
|
3
|
+
export * from "./Playlist";
|
|
4
|
+
export * from "./SearchResult";
|
|
5
|
+
export * from "./Song";
|
|
6
|
+
export * from "./Queue";
|
|
7
|
+
export * from "./Plugin";
|
|
8
|
+
export * from "./CustomPlugin";
|
|
9
|
+
export * from "./ExtractorPlugin";
|
|
10
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/struct/index.ts"],"names":[],"mappings":"AAAA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC;AACxB,cAAc,UAAU,CAAC;AACzB,cAAc,gBAAgB,CAAC;AAC/B,cAAc,mBAAmB,CAAC"}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
|
5
|
+
}) : (function(o, m, k, k2) {
|
|
6
|
+
if (k2 === undefined) k2 = k;
|
|
7
|
+
o[k2] = m[k];
|
|
8
|
+
}));
|
|
9
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
10
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
11
|
+
};
|
|
12
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
13
|
+
__exportStar(require("./DisTubeError"), exports);
|
|
14
|
+
__exportStar(require("./TaskQueue"), exports);
|
|
15
|
+
__exportStar(require("./Playlist"), exports);
|
|
16
|
+
__exportStar(require("./SearchResult"), exports);
|
|
17
|
+
__exportStar(require("./Song"), exports);
|
|
18
|
+
__exportStar(require("./Queue"), exports);
|
|
19
|
+
__exportStar(require("./Plugin"), exports);
|
|
20
|
+
__exportStar(require("./CustomPlugin"), exports);
|
|
21
|
+
__exportStar(require("./ExtractorPlugin"), exports);
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/struct/index.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,iDAA+B;AAC/B,8CAA4B;AAC5B,6CAA2B;AAC3B,iDAA+B;AAC/B,yCAAuB;AACvB,0CAAwB;AACxB,2CAAyB;AACzB,iDAA+B;AAC/B,oDAAkC","sourcesContent":["export * from \"./DisTubeError\";\nexport * from \"./TaskQueue\";\nexport * from \"./Playlist\";\nexport * from \"./SearchResult\";\nexport * from \"./Song\";\nexport * from \"./Queue\";\nexport * from \"./Plugin\";\nexport * from \"./CustomPlugin\";\nexport * from \"./ExtractorPlugin\";\n"]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.esnext.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../node_modules/@distube/ytpl/typings/index.d.ts","../node_modules/@distube/ytsr/typings/index.d.ts","../node_modules/@distube/ytdl-core/typings/index.d.ts","../node_modules/ow/dist/predicates/base-predicate.d.ts","../node_modules/ow/dist/predicates/predicate.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/ow/node_modules/type-fest/source/primitive.d.ts","../node_modules/ow/node_modules/type-fest/source/typed-array.d.ts","../node_modules/ow/node_modules/type-fest/source/basic.d.ts","../node_modules/ow/node_modules/type-fest/source/observable-like.d.ts","../node_modules/ow/node_modules/type-fest/source/except.d.ts","../node_modules/ow/node_modules/type-fest/source/simplify.d.ts","../node_modules/ow/node_modules/type-fest/source/mutable.d.ts","../node_modules/ow/node_modules/type-fest/source/merge.d.ts","../node_modules/ow/node_modules/type-fest/source/merge-exclusive.d.ts","../node_modules/ow/node_modules/type-fest/source/require-at-least-one.d.ts","../node_modules/ow/node_modules/type-fest/source/require-exactly-one.d.ts","../node_modules/ow/node_modules/type-fest/source/partial-deep.d.ts","../node_modules/ow/node_modules/type-fest/source/readonly-deep.d.ts","../node_modules/ow/node_modules/type-fest/source/literal-union.d.ts","../node_modules/ow/node_modules/type-fest/source/promisable.d.ts","../node_modules/ow/node_modules/type-fest/source/opaque.d.ts","../node_modules/ow/node_modules/type-fest/source/set-optional.d.ts","../node_modules/ow/node_modules/type-fest/source/set-required.d.ts","../node_modules/ow/node_modules/type-fest/source/value-of.d.ts","../node_modules/ow/node_modules/type-fest/source/promise-value.d.ts","../node_modules/ow/node_modules/type-fest/source/async-return-type.d.ts","../node_modules/ow/node_modules/type-fest/source/conditional-keys.d.ts","../node_modules/ow/node_modules/type-fest/source/conditional-except.d.ts","../node_modules/ow/node_modules/type-fest/source/conditional-pick.d.ts","../node_modules/ow/node_modules/type-fest/source/union-to-intersection.d.ts","../node_modules/ow/node_modules/type-fest/source/stringified.d.ts","../node_modules/ow/node_modules/type-fest/source/fixed-length-array.d.ts","../node_modules/ow/node_modules/type-fest/source/iterable-element.d.ts","../node_modules/ow/node_modules/type-fest/source/entry.d.ts","../node_modules/ow/node_modules/type-fest/source/entries.d.ts","../node_modules/ow/node_modules/type-fest/source/set-return-type.d.ts","../node_modules/ow/node_modules/type-fest/source/asyncify.d.ts","../node_modules/ow/node_modules/type-fest/source/package-json.d.ts","../node_modules/ow/node_modules/type-fest/source/tsconfig-json.d.ts","../node_modules/ow/node_modules/type-fest/base.d.ts","../node_modules/ow/node_modules/type-fest/source/utilities.d.ts","../node_modules/ow/node_modules/type-fest/ts41/utilities.d.ts","../node_modules/ow/node_modules/type-fest/ts41/camel-case.d.ts","../node_modules/ow/node_modules/type-fest/ts41/camel-cased-properties.d.ts","../node_modules/ow/node_modules/type-fest/ts41/camel-cased-properties-deep.d.ts","../node_modules/ow/node_modules/type-fest/ts41/delimiter-case.d.ts","../node_modules/ow/node_modules/type-fest/ts41/kebab-case.d.ts","../node_modules/ow/node_modules/type-fest/ts41/delimiter-cased-properties.d.ts","../node_modules/ow/node_modules/type-fest/ts41/kebab-cased-properties.d.ts","../node_modules/ow/node_modules/type-fest/ts41/delimiter-cased-properties-deep.d.ts","../node_modules/ow/node_modules/type-fest/ts41/kebab-cased-properties-deep.d.ts","../node_modules/ow/node_modules/type-fest/ts41/pascal-case.d.ts","../node_modules/ow/node_modules/type-fest/ts41/pascal-cased-properties.d.ts","../node_modules/ow/node_modules/type-fest/ts41/pascal-cased-properties-deep.d.ts","../node_modules/ow/node_modules/type-fest/ts41/snake-case.d.ts","../node_modules/ow/node_modules/type-fest/ts41/snake-cased-properties.d.ts","../node_modules/ow/node_modules/type-fest/ts41/snake-cased-properties-deep.d.ts","../node_modules/ow/node_modules/type-fest/ts41/includes.d.ts","../node_modules/ow/node_modules/type-fest/ts41/screaming-snake-case.d.ts","../node_modules/ow/node_modules/type-fest/ts41/split.d.ts","../node_modules/ow/node_modules/type-fest/ts41/trim.d.ts","../node_modules/ow/node_modules/type-fest/ts41/get.d.ts","../node_modules/ow/node_modules/type-fest/ts41/last-array-element.d.ts","../node_modules/ow/node_modules/type-fest/ts41/index.d.ts","../node_modules/ow/dist/predicates/string.d.ts","../node_modules/ow/dist/predicates/number.d.ts","../node_modules/ow/dist/predicates/bigint.d.ts","../node_modules/ow/dist/predicates/boolean.d.ts","../node_modules/ow/dist/predicates/array.d.ts","../node_modules/ow/dist/utils/match-shape.d.ts","../node_modules/ow/dist/predicates/object.d.ts","../node_modules/ow/dist/predicates/date.d.ts","../node_modules/ow/dist/predicates/error.d.ts","../node_modules/ow/dist/predicates/map.d.ts","../node_modules/ow/dist/predicates/weak-map.d.ts","../node_modules/ow/dist/predicates/set.d.ts","../node_modules/ow/dist/predicates/weak-set.d.ts","../node_modules/ow/dist/predicates/typed-array.d.ts","../node_modules/ow/dist/predicates/array-buffer.d.ts","../node_modules/ow/dist/predicates/data-view.d.ts","../node_modules/ow/dist/predicates/any.d.ts","../node_modules/ow/dist/predicates.d.ts","../node_modules/ow/dist/modifiers.d.ts","../node_modules/ow/dist/argument-error.d.ts","../node_modules/ow/dist/index.d.ts","../node_modules/discord-api-types/globals.d.ts","../node_modules/discord-api-types/payloads/v9/permissions.d.ts","../node_modules/discord-api-types/payloads/v9/emoji.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/responses.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/base.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/messageComponents.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/ping.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/_applicationCommands/internals.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/_applicationCommands/chatInput.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/_applicationCommands/contextMenu.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/_applicationCommands/permissions.d.ts","../node_modules/discord-api-types/payloads/v9/_interactions/applicationCommands.d.ts","../node_modules/discord-api-types/payloads/v9/interactions.d.ts","../node_modules/discord-api-types/payloads/v9/sticker.d.ts","../node_modules/discord-api-types/payloads/v9/channel.d.ts","../node_modules/discord-api-types/payloads/v9/gateway.d.ts","../node_modules/discord-api-types/payloads/v9/stageInstance.d.ts","../node_modules/discord-api-types/payloads/v9/voice.d.ts","../node_modules/discord-api-types/payloads/v9/guild.d.ts","../node_modules/discord-api-types/payloads/v9/user.d.ts","../node_modules/discord-api-types/payloads/v9/teams.d.ts","../node_modules/discord-api-types/payloads/v9/application.d.ts","../node_modules/discord-api-types/payloads/v9/webhook.d.ts","../node_modules/discord-api-types/payloads/v9/auditLog.d.ts","../node_modules/discord-api-types/payloads/v9/invite.d.ts","../node_modules/discord-api-types/payloads/v9/oauth2.d.ts","../node_modules/discord-api-types/rest/common.d.ts","../node_modules/discord-api-types/rest/v9/auditLog.d.ts","../node_modules/discord-api-types/rest/v9/channel.d.ts","../node_modules/discord-api-types/rest/v9/emoji.d.ts","../node_modules/discord-api-types/rest/v9/gateway.d.ts","../node_modules/discord-api-types/utils/internals.d.ts","../node_modules/discord-api-types/rest/v9/guild.d.ts","../node_modules/discord-api-types/rest/v9/webhook.d.ts","../node_modules/discord-api-types/rest/v9/interactions.d.ts","../node_modules/discord-api-types/rest/v9/invite.d.ts","../node_modules/discord-api-types/rest/v9/oauth2.d.ts","../node_modules/discord-api-types/rest/v9/stageInstance.d.ts","../node_modules/discord-api-types/rest/v9/sticker.d.ts","../node_modules/discord-api-types/rest/v9/template.d.ts","../node_modules/discord-api-types/rest/v9/user.d.ts","../node_modules/discord-api-types/rest/v9/voice.d.ts","../node_modules/discord-api-types/rest/v9/index.d.ts","../node_modules/discord-api-types/payloads/v9/template.d.ts","../node_modules/discord-api-types/payloads/v9/index.d.ts","../node_modules/discord-api-types/gateway/common.d.ts","../node_modules/discord-api-types/gateway/v9.d.ts","../node_modules/discord-api-types/rpc/v9.d.ts","../node_modules/discord-api-types/utils/v9.d.ts","../node_modules/discord-api-types/v9.d.ts","../node_modules/@discordjs/builders/dist/index.d.ts","../node_modules/@discordjs/collection/dist/index.d.ts","../node_modules/form-data/index.d.ts","../node_modules/@types/node-fetch/externals.d.ts","../node_modules/@types/node-fetch/index.d.ts","../node_modules/@types/ws/index.d.ts","../node_modules/discord.js/typings/enums.d.ts","../node_modules/discord.js/typings/rawDataTypes.d.ts","../node_modules/discord.js/typings/index.d.ts","../src/type.ts","../src/constant.ts","../src/struct/DisTubeError.ts","../src/struct/TaskQueue.ts","../src/struct/Playlist.ts","../src/struct/SearchResult.ts","../src/struct/Song.ts","../src/core/DisTubeOptions.ts","../node_modules/prism-media/typings/opus.d.ts","../node_modules/prism-media/typings/vorbis.d.ts","../node_modules/prism-media/typings/index.d.ts","../node_modules/tiny-typed-emitter/lib/index.d.ts","../node_modules/@discordjs/voice/dist/index.d.ts","../src/core/voice/DJSAdapter.ts","../src/core/voice/DisTubeVoice.ts","../src/core/DisTubeBase.ts","../src/core/manager/BaseManager.ts","../src/core/manager/QueueManager.ts","../src/core/manager/index.ts","../src/core/voice/DisTubeVoiceManager.ts","../src/core/voice/index.ts","../src/core/DisTubeStream.ts","../src/core/DisTubeHandler.ts","../src/core/index.ts","../src/struct/Queue.ts","../src/struct/Plugin.ts","../src/struct/CustomPlugin.ts","../src/struct/ExtractorPlugin.ts","../src/struct/index.ts","../src/plugin/http.ts","../src/plugin/https.ts","../node_modules/execa/index.d.ts","../node_modules/@distube/youtube-dl/src/index.d.ts","../src/plugin/youtube-dl.ts","../src/plugin/index.ts","../src/index.ts","../src/util.ts","../src/DisTube.ts","../node_modules/@babel/types/lib/index.d.ts","../node_modules/@types/babel__generator/index.d.ts","../node_modules/@babel/parser/typings/babel-parser.d.ts","../node_modules/@types/babel__template/index.d.ts","../node_modules/@types/babel__traverse/index.d.ts","../node_modules/@types/babel__core/index.d.ts","../node_modules/@types/keyv/index.d.ts","../node_modules/@types/http-cache-semantics/index.d.ts","../node_modules/@types/responselike/index.d.ts","../node_modules/@types/cacheable-request/index.d.ts","../node_modules/@types/graceful-fs/index.d.ts","../node_modules/@types/istanbul-lib-coverage/index.d.ts","../node_modules/@types/istanbul-lib-report/index.d.ts","../node_modules/@types/istanbul-reports/index.d.ts","../node_modules/jest-diff/build/cleanupSemantic.d.ts","../node_modules/jest-diff/build/types.d.ts","../node_modules/jest-diff/build/diffLines.d.ts","../node_modules/jest-diff/build/printDiffs.d.ts","../node_modules/jest-diff/build/index.d.ts","../node_modules/pretty-format/build/types.d.ts","../node_modules/pretty-format/build/index.d.ts","../node_modules/@types/jest/index.d.ts","../node_modules/@types/json-schema/index.d.ts","../node_modules/@types/minimist/index.d.ts","../node_modules/@types/normalize-package-data/index.d.ts","../node_modules/@types/parse-json/index.d.ts","../node_modules/@types/prettier/index.d.ts","../node_modules/@types/stack-utils/index.d.ts","../node_modules/@types/yargs-parser/index.d.ts","../node_modules/@types/yargs/index.d.ts"],"fileInfos":[{"version":"aa9fb4c70f369237c2f45f9d969c9a59e0eae9a192962eb48581fe864aa609db","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940","eb75e89d63b3b72dd9ca8b0cac801cecae5be352307c004adeaa60bc9d6df51f","2cc028cd0bdb35b1b5eb723d84666a255933fffbea607f72cbd0c7c7b4bee144",{"version":"51b8b27c21c066bf877646e320bf6a722b80d1ade65e686923cd9d4494aef1ca","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"2c8c5ee58f30e7c944e04ab1fb5506fdbb4dd507c9efa6972cf4b91cec90c503","affectsGlobalScope":true},{"version":"2bb4b3927299434052b37851a47bf5c39764f2ba88a888a107b32262e9292b7c","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"df9c8a72ca8b0ed62f5470b41208a0587f0f73f0a7db28e5a1272cf92537518e","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"93544ca2f26a48716c1b6c5091842cad63129daac422dfa4bc52460465f22bb1","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"7435b75fdf3509622e79622dbe5091cf4b09688410ee2034e4fc17d0c99d0862","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"9f1817f7c3f02f6d56e0f403b927e90bb133f371dcebc36fa7d6d208ef6899da","affectsGlobalScope":true},{"version":"cd6efb9467a8b6338ece2e2855e37765700f2cd061ca54b01b33878cf5c7677e","affectsGlobalScope":true},{"version":"fb4416144c1bf0323ccbc9afb0ab289c07312214e8820ad17d709498c865a3fe","affectsGlobalScope":true},{"version":"5b0ca94ec819d68d33da516306c15297acec88efeb0ae9e2b39f71dbd9685ef7","affectsGlobalScope":true},{"version":"4632665b87204bb1caa8b44d165bce0c50dfab177df5b561b345a567cabacf9a","affectsGlobalScope":true},"b09ed0465e2c4244a8225c322941182fbd64101dac77c76ea96ffb3797364937","6d6b07e437b620687741ea220c757e794bf218caf4251315b3e56e2e362370e1","4045e7e1708461cebbe1f34edd75fd8d9ce85ec4183dffe9dc4e7fbeca352465","7664bc39c9085e161f5f6f8f647ceffe26418a98a3f2a4c381fdc755be4b9e64","2cfbeb3885b75d97160fee31a23f4e5d1508cb2af1ce34ad98741b38a4b253b9","0d5a2ee1fdfa82740e0103389b9efd6bfe145a20018a2da3c02b89666181f4d9","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"ccc94049a9841fe47abe5baef6be9a38fc6228807974ae675fb15dc22531b4be",{"version":"9acfe4d1ff027015151ce81d60797b04b52bffe97ad8310bb0ec2e8fd61e1303","affectsGlobalScope":true},"95843d5cfafced8f3f8a5ce57d2335f0bcd361b9483587d12a25e4bd403b8216","afc6e96061af46bcff47246158caee7e056f5288783f2d83d6858cd25be1c565",{"version":"34f5bcac12b36d70304b73de5f5aab3bb91bd9919f984be80579ebcad03a624e","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","2f520601649a893e6a49a8851ebfcf4be8ce090dc1281c2a08a871cb04e8251f","f50c975ab7b50e25a69e3d8a3773894125b44e9698924105f23b812bf7488baf","2b8c764f856a1dd0a9a2bf23e5efddbff157de8138b0754010be561ae5fcaa90","ad4b60488fb1e562bf375dac9299815f7028bf667d9b5887b2d01d501b7d1ddd","246341c3a7a2638cf830d690e69de1e6085a102c6a30596435b050e6ac86c11a","6972fca26f6e9bd56197568d4379f99071a90766e06b4fcb5920a0130a9202be",{"version":"4a2628e95962c8ab756121faa3ac2ed348112ff7a87b5c286dd2cc3326546b4c","affectsGlobalScope":true},"6dfd135b38ab97c536d9c966fc5a5a879a19c6ed75c2c9633902be1ef0945ff7","a049a59a02009fc023684fcfaf0ac526fe36c35dcc5d2b7d620c1750ba11b083","a361a26932d73497a174a6d48c53cfedb55f735f20e8638fdf7b25cdeaac9ca4","b287b810b5035d5685f1df6e1e418f1ca452a3ed4f59fd5cc081dbf2045f0d9b","4b9a003b5c556c96784132945bb41c655ea11273b1917f5c8d0c154dd5fd20dd","a458dc78104cc80048ac24fdc02fe6dce254838094c2f25641b3f954d9721241",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"902cd98bf46e95caf4118a0733fb801e9e90eec3edaed6abdad77124afec9ca2","abc1c425b2ad6720433f40f1877abfa4223f0f3dd486c9c28c492179ca183cb6","cd4854d38f4eb5592afd98ab95ca17389a7dfe38013d9079e802d739bdbcc939","94eed4cc2f5f658d5e229ff1ccd38860bddf4233e347bf78edd2154dee1f2b99",{"version":"e51bee3200733b1f58818b5a9ea90fcd61c5b8afa3a0378391991f3696826a65","affectsGlobalScope":true},"9f1069b9e2c051737b1f9b4f1baf50e4a63385a6a89c32235549ae87fc3d5492","ee18f2da7a037c6ceeb112a084e485aead9ea166980bf433474559eac1b46553","29c2706fa0cc49a2bd90c83234da33d08bb9554ecec675e91c1f85087f5a5324","0acbf26bf958f9e80c1ffa587b74749d2697b75b484062d36e103c137c562bc3","d7838022c7dab596357a9604b9c6adffe37dc34085ce0779c958ce9545bd7139","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"a279435e7813d1f061c0cab6ab77b1b9377e8d96851e5ed4a76a1ce6eb6e628f","c33a6ea7147af60d8e98f1ac127047f4b0d4e2ce28b8f08ff3de07ca7cc00637",{"version":"b42b47e17b8ece2424ae8039feb944c2e3ba4b262986aebd582e51efbdca93dc","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","2408611d9b4146e35d1dbd1f443ccd8e187c74614a54b80300728277529dbf11","998a3de5237518c0b3ac00a11b3b4417affb008aa20aedee52f3fdae3cb86151","ad41008ffe077206e1811fc873f4d9005b5fd7f6ab52bb6118fef600815a5cb4","d88ecca73348e7c337541c4b8b60a50aca5e87384f6b8a422fc6603c637e4c21","badae0df9a8016ac36994b0a0e7b82ba6aaa3528e175a8c3cb161e4683eec03e","c3db860bcaaaeb3bbc23f353bbda1f8ab82756c8d5e973bebb3953cb09ea68f2","235a53595bd20b0b0eeb1a29cb2887c67c48375e92f03749b2488fbd46d0b1a0","bc09393cd4cd13f69cf1366d4236fbae5359bb550f0de4e15767e9a91d63dfb1","9c266243b01545e11d2733a55ad02b4c00ecdbda99c561cd1674f96e89cdc958","c71155c05fc76ff948a4759abc1cb9feec036509f500174bc18dad4c7827a60c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"e6ef68f677c1b63967d87568043b8af9d2dfd71d5873acd1de3abeb1db606741","ee4c2b821cdb6bb1b2ee139f8b39c3090b85ee9f21ef0c4e6da85ccc37c27190","abf86bf93468ee47bb82ef281ede349a9a5cdaa79f7623cb0c38b3b8f4d6d16d","b3adea08320fa04c6e67b5a2571f2b1835cbc09d3a1d9f9491e248ddd523ad80",{"version":"febefb735835bcc7c7f512a9ac6583d39e60b77a381a6ebfe5d065893d931f44","affectsGlobalScope":true},"869121668002b9cf188bba1b107acd7ee744c9446e66a1449dbfcc5bca521f9d","8219de3b0d8d9562babc19fe66d6d9b06a259aec7728b0ee3d05c690c0bc7ebd","523650e6460edf906889a51cd3996350e3a072ab81445b8703ad712406f4e86f","43726bb507c00fad304764a0b1e7d1e1e2485693d5748565853b84bcc76eae2c","b00a6a38b27ac8da6d1f290fcf91821a0ea76eda17409a6b776584bbf323b928","e0f585012eb7a61df9c139924d46f178a762ebf0a4f32e22656482891278f048","c2389f38d4f97b0ede032aee00627816037dd362d66150436245811bb9de3b3b","33babe20c9adb21832bf548abd2e71fbf12d2ef7712c0c77f6dd58d80cb42650","0bcf96ec816d5f3d30aac24de98373c7892724934971cc6e81c3318b6124245b","1e859aa44b6cb8edf1b42b38f5b45d7a4d4b7c5d157537a65ad9d6b38227321b","c5d5f4d1c61ba66e03a1c5dee152ae53e7f956f0a4ac867d42fedd0b222e8ae5","771043a81c343f37b3ca003c52639eea34b759cfe603ea9ee500748869d1db19","66847422c47f51670aa3c4a63c36b03e8b350c47b88cc3a595fccc6fcb1e700b","6373a6a0129bfedb2e2ffa1858a813137fc4656a01ae6973a86778d20fd4647f","eb7fbf4e57b111b45002e4b50fb2bf0f3c8267a5a4bdd5b3e1142fe198ab4797","71ed5df98c13d32d55e2941ac3951408cf56d636dc4d3e064b3fb99804c69d06","bbfdccb50fbe35e3cde5b4cd4a7b86a2694958da28a085153c0dc9753d89427e","36c05e7b3586aefb636d84a555dbec0055c85d3955ff2c388656fb6a914d5830","b7a81d9ddd3fcf7d4154b570c3f9d25e5095bcfd95fc2fd33ee89c30d4785f19","d103de0a2913b9441f245c70582cb5f94f62534d52470f854addf9bee999d826","9bd59851e397abd2bce281c8841510a96907bac3592291403400557f30d68efd","0fcaba280a7fb59281c01e7b39f2830187eabd0664bf8a8da465fa85955aac15","c956baa533de1c7d04f16c941c962f3d81f3d2463ac1ddbc76b6236a2271aad5","7cb93870a50a26953ab4ce10abe37a3722ce46aa56aa7606de3d9fb0ae0c7cab","19e20dff584ff4da2d0740ad9bc3acac618350764d8cb14ef104f1b9d07d7f17","6790ec7df08e8eaa46bd62dc4e2ace6f84e6035011c806313dc38c533dc2a5af","7ca52cabaaef26f719c4bbd54faa88fe391252fc5a2b7de2388ae872f306addd","84c013084535dcbe6edba14e9783ac43fdb6dd9f2d8f3517eee15375c780eeac","004142d65d3fe8f9eb7c98d25a72a6a1b756e7aa1ce2a29ef79ed6f75362b058","96a4e37864153ffb215a3b562e237572df79770a1ccea9e121a2a9c6a2b7c1bc","acbb1e9d529e1d8899ec719b76bcd1d7db080e00cdbb17cbf067b932f3ce24a6","679a500b60fdb879af3ff20dab0bc5937098dd1ea5b75f786c672fde09faaeef","035c74cad659923dd64bf6d84038675b352adca39eb1db2c5fb2aaad706ddb06","a15147866807eff433c82a49f14722fffae34d236b8209d2fe482e01d17827da","bd32eb2524c83f21252f825296b82bbe9861c006becb899bd65e0e3ccfef27b3","8700a6edece324a740e8c4814e066a28b59a6f82ae411fa546697ae0f160bab5","a3646c068d83643c687a9a774e4601a5859f29ff8524fdc2107aa309c06e541c","bf745adef30390f9ce2fb2e1289ead832d7cdc0e8b24a81c1466aba67146aa2e","f5c28deb6a28f159a47d235572232d42ed0e6bd8defcb8b1ca060e5e5a922949","3f7e2c3e68f5608b4ebffc2d6b7b9f241237bf4999b46c595deb32fd961ea936","61b89bcfa97b71163088a68c7a2c4236c241ef36bdd49e57d58d50ed55ecee97","c2a7c738eac005906514dcd53803f03196adbdc07959c22540a058edf45dd78f","f9eaefa84f17bd2eccdb58b2b315299f0a00e9417a0235766061233695ff3f4f","2d1ea98405903025396cba227b2ee05c43f005f83bce6ca33afe37759e691378","731d8cd4570c24819b660a60bd89e0e1f12b6e512c23827458c667a7cdb0a49e","1143318400a0da3b23951a6ec8e5ba7f787d8603064a02c9d023f6dc383bf709","7a7c3a30c1040c027c68951441667576bafeb769c1bbd1119dfe35f97d027506","d280c3b34e25d02998825aca95848a73550edc0e6cc9d7e3fb59fab7caffd023","e8b405807261832262e75fc6e511b912267db4d66b52a6319a906bf273458e61","17fd39370a6ff62e85f93b571504c0f458d22fdc0618bf8e00550375a2b8e593","b5e6514e67caeecb665d4df53669951c672de30abd1aa10a1c1da98c7b9f0de7","1d4127595cdf32eff6baa0eb1361902820309231c8796e81c61a9794a62ea23f","5e42bca6b52fd095640a945f0ed429ebda6ab011d400f0e74287d37e55ad7984","b04bbf66d68477ed776a5f0fc7de26c4e6ff71474341b3566531177db5befe21","25304de59a5dd68db6ff329ba711fa6139b25c16fb45db8fd9009875205d8e0b","acf43834501c92da619d35679372c53d08a135fce5de10cc04e2f54c07134ae1","bc8f5e3c72bcb2e68e2feb272c8312b81fd0ba7417e2993eb569aa9aba05661d","ef275855066eb67627a2e8e388226fd510824d27d2a8f5555251fe096a9def3e","3b8ab6d861339b4c45682219429441534c00abd7f23fc0714e9326213669d35a","74ff64ddbb6c72565b2ffc98652f78c3895cc40c8264ed0881ec1221e759de18","83cf78cb96cbe2cf84d7acbb777345919e79d1357bf051bd5c1da1e7d85b755a","40c1a3ed908790d2d173914c88721ea4182cac8a6b1e5e13ef268a82404828c4","8b27c6ae71f8849874f800e49d14a98c92bb0ae54e0a79d6ae617063ba2a6e5c","ce6fbdceac62521a6f474355eb2a0b85446f7dd7437ce59eed9ac9ced059d4a0","466e0434af11422a1621060ca2745a4b94067076065b6e0c0aeb874c6eaa9a63","2b1177d4681eade2485edf0433bcd0037fbd2a7e6851c9fa7d3285056d30193e","323c2d2acc276d554fff791a55433159d117aa9662ac861090a2426fa1d01ab2","ecb626a33e299fc633fdab872d726f7de7abe01e7dade946a7d0b2572854aa0a","b66bda369763090577e770ab5ba3adbaba74f25b2560d5131b4448a03e004f89","9de2b351d62216e6b894c2e8ccb9b1a44ba320afca185d071ae1e63e608b8d8d","6a1a11860069ab718960e14c936567b39e4c66d8e650e94ba4d8da60415f0a33","84f576c5d9942a70efa2b4d14c8a805134f0bb3364535964b6d9eddf94219408","84d0c690923e92fa502a2463c099f3a6a272d2f3ba3e6dedab82aa30c3d069d0","cf49d08267c66f93e5e86e2e0137f85220e525f57fa93da5b3510dae11e6ba6d","0f988bd62f9188817239c3f2793995f642aa24f6e676296777e817fae7e8a5e3","bf5b753c3de36b9fc1ec7748afef5e3c2299541511ebf89839a763d447212785","eabab93ca9a786745af72195153280e883d8e36df9829ecf8b2f539824d042be","4d02b0f99724ded7a50dcfcad5f797bc0048c54e446687f4e711f8156af56cb0","681f35c141c7a6201d5ffc038fbc28e46fb7a8702fc52b29d2d2dc7ca03328c2","1bcc518782fd7e8c494f9e7e1610db255f3b5f8837bec6f431354682ca817162","6a122c58351557c40b66aa3bb1053ca80456fc2b1962bc7706b6e663d0cd25e3","d0d504c82b2a5d2bf48b951a5502ac7284ed974e3249a4fd1c795522c11d9a0d","168eef670afa53e786ccb6afbf3cb78457ff6cc90064e80f0bc5da96cffda665","cdb9451988aef334a797bc31eed3235d7b471a6e013bd2ccc92fbf89a535f4d7","be3d99aa76a7087f501fe6bdf75f76b0a483542a8e96bf9b05ab33c3cb4521d8","d91ebb09c2ae0cf320b66c42db3811e4cc8a8ebfc63c3b1e0ee0085cf1fa51ef","b044fccf84b0f5c7cd8a1800a2ef0a7b740c062245823ce009265f4db3942623","97e85df57e051301f940bad38a1e521bf4bd5e98da75554223cd30b0126b29f3","c292ebc6194ebd86169cfb13c7c3d793aefd82143bf6e2393bcf9f9969d2b6c5","9b39acb572930d9093cae87ebc3d1cac76f85d3959c879d198e41af727d05680","d7e1d242979a986a596ba1739cf7d88117f12bdcd3512a3b0a62b0e62cc15216","018e8fa83db6e4bc72a9b7ae59114457883303ac22f3a04d7b807347542b1dd3","fef0f40e32a9e21e58a8ed60607caa0037e55c4c6fe3c842a5c3bd54888f9afa","aebf66a3565c822b77a0c63280f3b07ef3040c985cfea54ad60e91f93b171ab9","46b0a75109313e28a7fefd8da44a999ad20192c16c9df50e2618aab4653b8bac","3856293778528ce4390b8dd604f3026a83b65953b97c037aa12941440d249bd7","d110ef7cb005b60066855a3d0613dcb33e78c88ab48f1a94be49d8670d9b5496","9dca03e56594dcb6da7ec0062cbdd48d156c9a9b0a8fbbf6c90b66ff38ebd2b4","236a8048bc96944178f7459a0533cc3002e4f923a5f9bca88834d0d2a9290483","20e4d74d06c6e3fcec3c011d8f040163233f6d7a25802877cf8e6617cb8bcb64","355e5ee195122c2fa0c595859d8ca3ff0ccd7559d7f2d658043a6ed3df8ca385","942bb675b74bd5c81493e1e3955ffb6afce78e8e57bfba590d07459065c6c633","356ad0f5a5de85de948574e14bc33a86e90e04ff35691669aeed05f7667bba40","f29e54511f37f6b0c8fa2825db6498afb9ffe2ab828ea6e692b68529cdba7482","52bda44b3ad70cdddadc8b25026bfda7a9e4841df765aca63248639fbe3d0ef1","14dc7a4905d3efdbd48a308235dd845c65d6fb11900206c28c2458926197dafc","3134088754c10c988c58ad5cc63b6746e390d72c14a89d73a56100656925b532","2d90e07aed4760e7f72ac6a56c95adb8a9a183d5069d373344cdcd0586387c38","c46254cff0417e0d4e4c54b70f2e0d327eb16b4a0ac997a61d4a635b87bcfb4a","8817e5c6683a55dc63a7c5f94e1952a3897502127a7ff723928f9e2eed6642e9","00f78a355a91d468fbe9df8b06ca28c9f0a9ce735591e07ca28d8ceaeb794517","24d01508ba2c2f43d1160aad262ce6456e14eec7a7b55409a067418c39c50bbe","fa51e795c197f47e1637261e029249887cd04c36ca9b811d08af8604d8691dc8","e3c9ba3e51df8b583d78fae95aa165cbbd6f22e5b8ab39812af4dcbbb462b4cd","48400d03a4592825229ca1007145723c3245d650175c52342f53ba33ebdc93ed","469dccf4d7d12c4b6e1f5f237c76d9fe3efa2d03840ca04f2c3ac8d376f7ff19","62a25c0dcfddb1f82f0186f21c1d5aee323bc9d9dd2a60860d4bc543f6fb68ce","e6c450d02573f08e0b7253cbfadd93855c2353344e38b0681c06d44c3caaa6a3","f9e7c3a62b3cf41cb285cc2b8f5edf961ef32aa593143d708aa4c39d91d20043","301c604c264389f8f6b4911830488dade60db491489c53b8e7f782616e2b9385","0c89aa22ce07701d1ee12be114155464a8db3c6f04d30ec0a5eb158812564262","bad7ce18863ea540ea1b6a908f14bb407eeb8ba629f5daed791740cf6512c10e","167f2d017527f81a3fef64dad1aa032b5da9cd7e7830c770af5c6c44a5098f5d","d9de6be7ea546933d744a8f6c222ce18f840a68cddc8eac8c5a4af37fbc6d802","06511a15f80ee05b40d987fe15532069416e8276d6cd0b0112e6bf058c975ffe","880787c9fb1ef2e540e1f3316ef53d3fb3ce65fc286afc7a060532e8996d475d","3d8bdfc1d533479ea49c20413e5f8cf359627743df827f6ac880871cac6f9e76","da566bec95857ad3234ea65680f917c233e3e4d4418682d43548f2fc259cdf54","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","208bb742e0f201470da121bc73847c74b62cff4172f38ae5949ae77d6c9c6b71","062bd2910098fc059ba93e347649b3e126c555f7b144033d21d3f8ef63d3e39b","d7a041dfebb4e5ab34e9a6771436bd96e9ad7c42728f89a87a0d77dcab766f56","4cbbcb339f280775cc3ce9e4b10b72270ba38a609f67b1eae78a7b7fd6f8abcc","b2aafe05ff263e1146b9f656d10bf6aede5e4ba5082b49d3d95593ee5c854a73","1f89d5223bc83d2e03f674e2bf3555e9eea29e02e6bcefeb962318768abfa05b","fcede5148e973ba9ddeaec316955b19fc77568ada5aef66ed50c132c765ce310","498f94deecc8eef4f56768f37014cde4300fe53b0de6570505839bf87c2865a1","1f46f8c0dd49474c9814e69c6a6427cd6a0ab4f10d6e7bff5b46991f6daae644","6986ee58ebf74e8e869436c8a5c16ac207be092b159371c2dae49d0f3041ba3c","83452b59382bf0a05d35e86db342f39b9c3664daed38f5dbce3603364e7339a3","40d2408eb17487d927c1a35fc21b6266b9429d5d10b609898c4fa250aff92dd1","79aea5e1347069b4aeca1b6656b337f39619e39ec27ac11a4539d0d5dbea4385","0a4132e4fd0a9cd38e43bdd0d65cf2344e0a1dc5305ded22bac9cda2bb9e0a74","b13715eda434461367e0dc0d7374f313631e02b3fd5b03a299ac6b223312b802","c6196a8bb53c3bca8185c25a4319c7a60a3614b7b0475621c561e89860a4df59","7001d2b80d3339eb8e77d65f1c67451f732744877a1e96c4a992638fcce81842","3103df94f61695e93f42896943943f8005a32821ce2ccbc1233a78c27ac82474","1222ca1455aad750ff7726e7baf15bf65164d8c5c13aa115b8712e9f8e358112","e734a1bd1ef70c338f191494f9a68c3d773772def753410e0f2be66d30be2720","177b60327d337ef3a0f24261bf9feb65af82c35a00057a780d02f1bd1cb72be8","e2edff37e74c54d6292dc82246ef4ec2ec4b7ff2f4fc26a6be5fd4976698d803","eaca442e82ba2de3dfb3726c08f1edcaf294ef53d3de927f48250978d2e6527b","5288d536786bcaa0b60b5685af31205047dcf0615e8728491413f37cfeca7c95","adf35bb26ba990d31d56cbaca26065945a5b61da3ded825d76154a7e71562db0","8a486df92dd40e1d4328bc9c43de551882f471c5f9a1a38e8e95483f1722a3d0","8796565c3f8e80152aecb23d6b7a270548adf1f875baf02342c2769b5b2a6b01","e429ddb082620d532d6e17b4e30fd57111351cc63fcae8f10a79060fbaaa9f44","2abfa29cfab431662c4da4ee32426b9210f04c0907153927b8d76daf6d2903ca","f83b503393fd41f2b20ff09e48dae7b702800b5f48a171cf21edd51e8151cc2d","3cf3e7bcc6c347c98055b37a39f136cfc0f910f0c6f6bf0236d065f4b61cf1ee","13ecd737d18b855797cb1ec2ae9b4a2af259a86b472c98eb083c58622611f328","b7ec2127f3506a3010bcf159e8d9d56a70decb9a2b45e5a46dfc70b665303af0","d3d7b71a1980ad431ca3ae9bf1bd98eae99d922aa7306fcf50f860dbf127dfef","df563ba4312d3a8805ba562826f9a4b5ccc1141f413a5fe226c5e6b6d24099ac","ef69fbf8d8f3c08a94d375f474fc06a1c5a3ed88f8f05ac7e282ea047fb94cf7","91081606fa6da5b30d500f031c7a97a2d4e88de3e9cf6e1beea22d5b3b2dbf84","088703b7810394a5af823ac753cca116931df81a97183725ae1e2c4e6038268d","1347d3dd49acf0fc17720443eec35492ffb54ebb178168f1d1719336976d4b74","449543622df3ca5d450faf4b5e7276f0ac9fa7deef649fafa80107d7009873b3","62c1ad137b5d8fd4a8eb581d119190123aab9681843927c690538e63320f6dca","211f8f312bee75e48c0141734f5ff0070edef85084be2428e84565fb04405e97","fd34292e37ffd811aa6eb1e9f6b37f36a1f6810f46c3f514ad0dc5c11add39cb","0f560a25cc93501a2ad52da1c70a8cba8e08829e120093186256640561958d2d","272c2dac4baaf7fdd2d7efeef0fa2547af54cc21883c5e138b8c4d1661697a54","8dfed5c91ad36e69e6da6b7e49be929d4e19666db2b651aa839c485170a2902c","64b867c61effed7b5bc0cc06b3d8eac23b067a3fba581fc7d3c292fa593e6a45","93de1c6dab503f053efe8d304cb522bb3a89feab8c98f307a674a4fae04773e9","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","d0b0a00cf31968a33baeaadf974ce4e5e7edf58cea5288765293f41ba5e72b3a","82169f198ffdfc787fba368ccfad2b2d8ef3712f3c696df94ac13f6884bbbe2d","cab425b5559edac18327eb2c3c0f47e7e9f71b667290b7689faafd28aac69eae","3cfb0cb51cc2c2e1b313d7c4df04dbf7e5bda0a133c6b309bf6af77cf614b971","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","f5638f7c2f12a9a1a57b5c41b3c1ea7db3876c003bab68e6a57afd6bcc169af0","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","8a8a96898906f065f296665e411f51010b51372fa260d5373bf9f64356703190","f014d6d053cb1840965952268a589c9e2a74d66c8c88286562d5699350e28e19","66851b263230decb3684072b2cb777f70ea3e52d4489b88f78f185618d4d398e",{"version":"e9f2cdc4e98e73a606ff68c470a8cb4f23cd638c47649d71b90a2d9413102080","affectsGlobalScope":true},"0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","209e814e8e71aec74f69686a9506dd7610b97ab59dcee9446266446f72a76d05","6fa0008bf91a4cc9c8963bace4bba0bd6865cbfa29c3e3ccc461155660fb113a","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","f58599a92d4a64416f4999a4d7241e1647aec2a6249214892722f712a6eedbe0","b0d10e46cfe3f6c476b69af02eaa38e4ccc7430221ce3109ae84bb9fb8282298","f7e133b20ee2669b6c0e5d7f0cd510868c57cd64b283e68c7f598e30ce9d76d2","6ba73232c9d3267ca36ddb83e335d474d2c0e167481e3dec416c782894e11438"],"options":{"declaration":true,"declarationMap":true,"esModuleInterop":true,"inlineSources":true,"module":1,"outDir":"./","removeComments":false,"skipDefaultLibCheck":true,"skipLibCheck":true,"sourceMap":true,"strict":true,"target":6},"fileIdsList":[[92,277],[92],[91,92,179,180,229],[81,92,229,235,249,250],[92,270],[67,81,92],[92,277,278,279,280,281],[92,277,279],[64,67,91,92,99,283,284,285],[65,92,99],[92,288],[92,289],[92,295,297],[64,92,99],[67,91,92,99,232,233],[49,92],[52,92],[53,58,92],[54,64,65,72,81,91,92],[54,55,64,72,92],[56,92],[57,58,65,73,92],[58,81,88,92],[59,61,64,72,92],[60,92],[61,62,92],[63,64,92],[64,92],[64,65,66,81,91,92],[64,65,66,81,92],[67,72,81,91,92],[64,65,67,68,72,81,88,91,92],[67,69,81,88,91,92],[49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98],[64,70,92],[71,91,92],[61,64,72,81,92],[73,92],[74,92],[52,75,92],[76,90,92,96],[77,92],[78,92],[64,79,92],[79,80,92,94],[64,81,82,83,92],[81,83,92],[81,82,92],[84,92],[85,92],[64,86,87,92],[86,87,92],[58,72,88,92],[89,92],[72,90,92],[53,67,78,91,92],[58,92],[81,92,93],[92,94],[92,95],[53,58,64,66,75,81,91,92,94,96],[81,92,97],[67,81,92,99],[64,67,69,72,81,88,91,92,97,99],[92,305],[92,180,211,224,225],[92,180,184,187,191,224],[92,180,184,187,191,194,199],[92,180,191],[92,180],[92,180,183,184,188,189,190,194,198],[92,180,183,194,198,199],[92,184,192,194],[92,183,184],[92,224,229],[92,180,199,200],[92,180,181,193,194,196,198,199,202],[92,180,181,182,192,193,198,199,201],[92,180,181,199],[92,180,182,194,199],[92,180,181,182,193,194,195,196,197,199],[92,181,182,192,193,194,195,196,197,198,199,200,201,202,203,204,205,223],[92,183,184,185,186,191],[92,194,196,198,199,201],[92,180,198],[92,180,199],[92,180,199,222],[92,180,224],[92,180,203],[92,224],[92,180,208,211,224],[92,180,206,207,208,209,210,212,213,214,215,216,217,218,219,220,221],[92,213,224],[92,180,211,224],[92,180,222,224,226,227,228],[54,64,69,81,92,96,229,230,231,234,235,236,237],[92,229,238],[54,81,92,99],[92,291,292],[92,291,292,293,294],[47,48,92,176,177,178],[92,176,179],[47,48,92,99,158,159,160,161,162,163,165,166,167,168,169,170,171,172,173,174,175],[47,48,92,179],[48,92],[47,48,92],[92,179],[47,48,92,164],[47,92,179],[48,92,158],[92,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133],[92,119],[92,119,130],[92,104,121],[92,121],[92,128],[92,100],[92,104,105],[92,113],[92,104],[92,135,136],[92,137],[92,135],[92,140],[92,134,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157],[92,144],[92,142],[92,146],[92,140,149,152],[92,296],[54,81,92,247,248],[81,92],[44,45,92,238,250,274,275],[92,274],[92,238,274],[44,46,92,238,262,274],[46,92,274],[46,92,249,251,267,274],[92,246,254,257,259,260,261],[92,238,254,274],[92,238,257,274],[92,255,256],[92,229,238,251],[92,238,250,251,274],[92,238,251,257,259,274],[92,252,253,258],[92,239,240,262,267,273,275,276],[67,92,238,266,274],[67,69,91,92,238,266,274],[92,268,269,272],[92,238,266,267,271,274],[92,238,264,274],[92,238,264,267,274],[44,92,238,274],[92,238,262,274],[45,92,274],[46,92,238,243,274],[92,241,242,243,244,245,263,264,265,266],[46,92,238,274],[91,92,238,274]],"referencedMap":[[279,1],[277,2],[230,3],[231,2],[251,4],[271,5],[46,6],[44,2],[45,2],[282,7],[278,1],[280,8],[281,1],[286,9],[287,10],[284,2],[288,2],[289,11],[290,12],[298,13],[299,2],[283,14],[300,2],[233,2],[234,15],[49,16],[50,16],[52,17],[53,18],[54,19],[55,20],[56,21],[57,22],[58,23],[59,24],[60,25],[61,26],[62,26],[63,27],[64,28],[65,29],[66,30],[51,2],[98,2],[67,31],[68,32],[69,33],[99,34],[70,35],[71,36],[72,37],[73,38],[74,39],[75,40],[76,41],[77,42],[78,43],[79,44],[80,45],[81,46],[83,47],[82,48],[84,49],[85,50],[86,51],[87,52],[88,53],[89,54],[90,55],[91,56],[92,57],[93,58],[94,59],[95,60],[96,61],[97,62],[301,2],[302,2],[303,2],[285,63],[304,2],[235,64],[305,2],[306,65],[225,2],[226,66],[180,2],[188,67],[189,68],[187,69],[190,70],[191,71],[184,72],[185,73],[186,74],[183,75],[201,76],[203,77],[194,78],[182,79],[195,80],[198,81],[224,82],[192,83],[204,84],[205,2],[181,70],[196,85],[193,86],[200,86],[223,87],[199,85],[197,85],[202,88],[206,2],[207,89],[208,88],[209,88],[210,90],[212,91],[222,92],[214,93],[215,90],[216,88],[217,88],[218,90],[219,90],[220,88],[221,90],[213,94],[227,2],[211,2],[228,90],[229,95],[236,2],[238,96],[237,97],[270,98],[232,63],[291,2],[293,99],[295,100],[294,99],[292,2],[178,2],[179,101],[177,102],[176,103],[175,104],[173,105],[163,106],[47,107],[161,105],[162,105],[174,105],[166,105],[167,105],[168,105],[160,105],[165,108],[48,109],[170,105],[159,105],[172,110],[169,105],[171,105],[164,107],[134,111],[120,112],[131,113],[102,2],[122,114],[121,2],[123,115],[129,116],[128,2],[104,2],[126,2],[127,2],[113,117],[108,2],[107,118],[106,118],[103,2],[115,2],[132,119],[111,117],[100,2],[114,2],[119,2],[112,117],[109,120],[110,2],[116,118],[117,118],[130,2],[105,2],[125,2],[133,2],[101,2],[124,2],[135,2],[118,2],[137,121],[139,122],[138,122],[140,123],[144,124],[142,124],[156,121],[152,2],[158,125],[141,124],[145,126],[143,127],[157,2],[146,122],[148,128],[147,128],[153,129],[149,124],[151,126],[150,127],[154,2],[155,2],[136,2],[297,130],[296,2],[249,131],[247,132],[248,132],[250,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[39,2],[35,2],[36,2],[37,2],[38,2],[8,2],[40,2],[41,2],[42,2],[1,2],[9,2],[43,2],[276,133],[240,134],[254,135],[261,136],[246,137],[260,138],[262,139],[255,140],[256,141],[257,142],[252,143],[253,144],[258,145],[259,146],[274,147],[268,148],[269,149],[273,150],[272,151],[265,152],[241,2],[266,153],[243,154],[264,135],[263,155],[244,156],[245,157],[242,2],[267,158],[239,159],[275,160]],"exportedModulesMap":[[279,1],[277,2],[230,3],[231,2],[251,4],[271,5],[46,6],[44,2],[45,2],[282,7],[278,1],[280,8],[281,1],[286,9],[287,10],[284,2],[288,2],[289,11],[290,12],[298,13],[299,2],[283,14],[300,2],[233,2],[234,15],[49,16],[50,16],[52,17],[53,18],[54,19],[55,20],[56,21],[57,22],[58,23],[59,24],[60,25],[61,26],[62,26],[63,27],[64,28],[65,29],[66,30],[51,2],[98,2],[67,31],[68,32],[69,33],[99,34],[70,35],[71,36],[72,37],[73,38],[74,39],[75,40],[76,41],[77,42],[78,43],[79,44],[80,45],[81,46],[83,47],[82,48],[84,49],[85,50],[86,51],[87,52],[88,53],[89,54],[90,55],[91,56],[92,57],[93,58],[94,59],[95,60],[96,61],[97,62],[301,2],[302,2],[303,2],[285,63],[304,2],[235,64],[305,2],[306,65],[225,2],[226,66],[180,2],[188,67],[189,68],[187,69],[190,70],[191,71],[184,72],[185,73],[186,74],[183,75],[201,76],[203,77],[194,78],[182,79],[195,80],[198,81],[224,82],[192,83],[204,84],[205,2],[181,70],[196,85],[193,86],[200,86],[223,87],[199,85],[197,85],[202,88],[206,2],[207,89],[208,88],[209,88],[210,90],[212,91],[222,92],[214,93],[215,90],[216,88],[217,88],[218,90],[219,90],[220,88],[221,90],[213,94],[227,2],[211,2],[228,90],[229,95],[236,2],[238,96],[237,97],[270,98],[232,63],[291,2],[293,99],[295,100],[294,99],[292,2],[178,2],[179,101],[177,102],[176,103],[175,104],[173,105],[163,106],[47,107],[161,105],[162,105],[174,105],[166,105],[167,105],[168,105],[160,105],[165,108],[48,109],[170,105],[159,105],[172,110],[169,105],[171,105],[164,107],[134,111],[120,112],[131,113],[102,2],[122,114],[121,2],[123,115],[129,116],[128,2],[104,2],[126,2],[127,2],[113,117],[108,2],[107,118],[106,118],[103,2],[115,2],[132,119],[111,117],[100,2],[114,2],[119,2],[112,117],[109,120],[110,2],[116,118],[117,118],[130,2],[105,2],[125,2],[133,2],[101,2],[124,2],[135,2],[118,2],[137,121],[139,122],[138,122],[140,123],[144,124],[142,124],[156,121],[152,2],[158,125],[141,124],[145,126],[143,127],[157,2],[146,122],[148,128],[147,128],[153,129],[149,124],[151,126],[150,127],[154,2],[155,2],[136,2],[297,130],[296,2],[249,131],[247,132],[248,132],[250,2],[11,2],[10,2],[2,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[18,2],[19,2],[3,2],[4,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[31,2],[32,2],[33,2],[34,2],[7,2],[39,2],[35,2],[36,2],[37,2],[38,2],[8,2],[40,2],[41,2],[42,2],[1,2],[9,2],[43,2],[276,133],[240,134],[254,135],[261,136],[246,137],[260,138],[262,139],[255,140],[256,141],[257,142],[252,143],[253,144],[258,145],[259,146],[274,147],[268,148],[269,149],[273,150],[272,151],[265,152],[241,2],[266,153],[243,154],[264,135],[263,155],[244,156],[245,157],[242,2],[267,158],[239,159],[275,160]],"semanticDiagnosticsPerFile":[279,277,230,231,251,271,46,44,45,282,278,280,281,286,287,284,288,289,290,298,299,283,300,233,234,49,50,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,51,98,67,68,69,99,70,71,72,73,74,75,76,77,78,79,80,81,83,82,84,85,86,87,88,89,90,91,92,93,94,95,96,97,301,302,303,285,304,235,305,306,225,226,180,188,189,187,190,191,184,185,186,183,201,203,194,182,195,198,224,192,204,205,181,196,193,200,223,199,197,202,206,207,208,209,210,212,222,214,215,216,217,218,219,220,221,213,227,211,228,229,236,238,237,270,232,291,293,295,294,292,178,179,177,176,175,173,163,47,161,162,174,166,167,168,160,165,48,170,159,172,169,171,164,134,120,131,102,122,121,123,129,128,104,126,127,113,108,107,106,103,115,132,111,100,114,119,112,109,110,116,117,130,105,125,133,101,124,135,118,137,139,138,140,144,142,156,152,158,141,145,143,157,146,148,147,153,149,151,150,154,155,136,297,296,249,247,248,250,11,10,2,12,13,14,15,16,17,18,19,3,4,23,20,21,22,24,25,26,5,27,28,29,30,6,31,32,33,34,7,39,35,36,37,38,8,40,41,42,1,9,43,276,240,254,261,246,260,262,255,256,257,252,253,258,259,274,268,269,273,272,265,241,266,243,264,263,244,245,242,267,239,275]},"version":"4.4.4"}
|