davinci-resolve-mcp 2.151.0 → 2.153.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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,47 @@
2
2
 
3
3
  Release history for the DaVinci Resolve MCP Server. The latest release is summarized in the root README; older entries live here to keep the README focused.
4
4
 
5
+ ## What's New in v2.153.0 — the QC loop learns fades
6
+
7
+ ### Added
8
+
9
+ - **`editorial.verify_roundtrip` is fade-aware.** A correct fade conform
10
+ used to fail QC three ways: the re-export's Solid Color legs mismatched
11
+ the EDL's BL reels, the leg counts differed, and the fade boundary-shift
12
+ moved picture edges by half the transition. Now BL/Solid-Color legs
13
+ canonicalize to BLACK and drop out of the pairwise compare (counted in
14
+ `blackSegments`), picture edges inside an input junction's fade window are
15
+ excused into `fadeReshapedBoundaries` — reported, never silently absorbed
16
+ — and the per-source TC offset is fitted net of the record shift so a
17
+ source cut both plain and faded doesn't read as source-frames drift.
18
+ Live loop verified: EDL fades → conform → import → OTIO re-export →
19
+ `pass: true` with the reshape named. Beyond-window shifts and shifts at
20
+ junction-free edges still fail as real record drift.
21
+
22
+ ## What's New in v2.152.0 — AAF dissolves conform at last, and AAF fades join the family
23
+
24
+ ### Fixed
25
+
26
+ - **No AAF dissolve could ever conform through `assemble_from_interchange`**:
27
+ an AAF Transition consumes record time, so the walker (correctly) emits the
28
+ incoming clip overlapping the outgoing — and the bridge's overlap gate
29
+ threw on exactly that shape. A reconciliation pre-pass now trims the
30
+ outgoing's tail to the overlap start; the boundary shift then re-extends it
31
+ to the cut point, which is the AAF notional-cut (`CutPoint`) semantics
32
+ exactly. Render-verified: the dissolve blends through the 181.8 midpoint
33
+ fingerprint.
34
+
35
+ ### Added
36
+
37
+ - **AAF fades**: the walker synthesizes BL pseudo-events at filler-adjacent
38
+ and sequence-edge Transitions, completing fade parity across all four
39
+ formats (EDL v2.150, OTIO/XMEML v2.151, AAF now). The head-transition
40
+ "clamp" case is reinterpreted as what it is — a fade-in from black.
41
+ Full triple render-verified: fade-in 18→123, dissolve-to-white through the
42
+ midpoint, fade-out 230→21.
43
+ - A pyaaf2-authored AAF fixture test exercises the real walker end to end
44
+ (no stubs), skipped only where pyaaf2 is unavailable.
45
+
5
46
  ## What's New in v2.151.0 — fade parity: OTIO and XMEML fades author too
6
47
 
7
48
  ### Added
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  English | [简体中文](README.zh-CN.md)
4
4
 
5
- [![Version](https://img.shields.io/badge/version-2.151.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
5
+ [![Version](https://img.shields.io/badge/version-2.153.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
6
6
  [![npm](https://img.shields.io/npm/v/davinci-resolve-mcp.svg?label=npm&color=CB3837)](https://www.npmjs.com/package/davinci-resolve-mcp)
7
7
  [![API Coverage](https://img.shields.io/badge/API%20Coverage-100%25-brightgreen.svg)](docs/reference/api-coverage.md)
8
8
  [![Tools](https://img.shields.io/badge/MCP%20Tools-36%20(353%20full)-blue.svg)](#server-modes)
package/README.zh-CN.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [English](README.md) | 简体中文
4
4
 
5
- [![Version](https://img.shields.io/badge/version-2.151.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
5
+ [![Version](https://img.shields.io/badge/version-2.153.0-blue.svg)](https://github.com/samuelgursky/davinci-resolve-mcp/releases)
6
6
  [![npm](https://img.shields.io/npm/v/davinci-resolve-mcp.svg?label=npm&color=CB3837)](https://www.npmjs.com/package/davinci-resolve-mcp)
7
7
  [![API Coverage](https://img.shields.io/badge/API%20Coverage-100%25-brightgreen.svg)](docs/reference/api-coverage.md)
8
8
  [![Tools](https://img.shields.io/badge/MCP%20Tools-36%20(353%20full)-blue.svg)](#服务器模式)
@@ -12,7 +12,7 @@
12
12
  [![Python](https://img.shields.io/badge/python-3.10+-green.svg)](https://www.python.org/downloads/)
13
13
  [![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://opensource.org/licenses/MIT)
14
14
 
15
- > 本翻译对应 v2.151.0 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
15
+ > 本翻译对应 v2.153.0 版 README。如与英文原版有出入,以 [英文原版](README.md) 为准。
16
16
 
17
17
  一个 Model Context Protocol (MCP) 服务器,让 AI 助手通过官方脚本 API 控制 DaVinci Resolve Studio(达芬奇)。它提供完整的 API 覆盖,外加带护栏的工作流助手,涵盖剪辑、媒体池整理、渲染设置、审阅标记、调色、Fusion、Fairlight、项目生命周期任务、扩展开发,以及不碰源媒体的媒体分析。
18
18
 
package/install.py CHANGED
@@ -37,7 +37,7 @@ from src.utils.update_check import (
37
37
 
38
38
  # ─── Version ──────────────────────────────────────────────────────────────────
39
39
 
40
- VERSION = "2.151.0"
40
+ VERSION = "2.153.0"
41
41
  # Only hard floor: mcp[cli] requires Python 3.10+. There is no upper bound —
42
42
  # Resolve's scripting bridge loads into newer interpreters on recent builds
43
43
  # (Python 3.14 verified against Resolve Studio 20.3.2). Older Resolve builds
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "davinci-resolve-mcp",
3
- "version": "2.151.0",
3
+ "version": "2.153.0",
4
4
  "description": "NPM bootstrapper for the DaVinci Resolve MCP Server.",
5
5
  "license": "MIT",
6
6
  "author": "Samuel Gursky <samgursky@gmail.com>",
@@ -1161,6 +1161,21 @@ def _walk_components(sequence, *, track, fps, rec, state, depth, transition=None
1161
1161
  """
1162
1162
  start = rec
1163
1163
  pending_transition = transition
1164
+ # Sequence start counts as black: a Transition with Filler (or nothing)
1165
+ # on one side is a FADE. Synthesize zero-length BL pseudo-events so the
1166
+ # bridge's black machinery (E91-E93) authors a real clip-to-generator
1167
+ # dissolve — Resolve renders empty track as black, and the bridge grows
1168
+ # the BL leg to cover its side of the overlap.
1169
+ at_black = True
1170
+
1171
+ def _emit_bl(rec_pos, trans):
1172
+ state["events"].append({
1173
+ "index": state["idx"], "track": track, "source": "BL",
1174
+ "srcIn": 0, "srcOut": 0, "recIn": rec_pos, "recOut": rec_pos,
1175
+ "speed": 100, "reverse": False, "transition": trans, "fps": fps,
1176
+ })
1177
+ state["idx"] += 1
1178
+
1164
1179
  components = getattr(sequence, "components", None)
1165
1180
  if components is None:
1166
1181
  components = [sequence]
@@ -1190,15 +1205,29 @@ def _walk_components(sequence, *, track, fps, rec, state, depth, transition=None
1190
1205
  # be a worse lie than the malformed AAF that produced it.
1191
1206
  rec = max(start, rec - duration)
1192
1207
  continue
1208
+ if pending_transition is not None and cls in ("Filler", "ScopeReference"):
1209
+ # Transition then Filler = fade-OUT into black: the fade
1210
+ # attaches to a synthetic BL leg at the overlap start.
1211
+ _emit_bl(rec, pending_transition)
1212
+ pending_transition = None
1213
+ elif pending_transition is not None and at_black:
1214
+ # Filler (or sequence start) then Transition then clip =
1215
+ # fade-IN from black: zero-length BL predecessor at the
1216
+ # overlap start; the bridge's boundary shift grows it.
1217
+ _emit_bl(rec, None)
1193
1218
  rec += _walk_segment(
1194
1219
  comp, track=track, fps=fps, rec=rec, state=state, depth=depth, transition=pending_transition
1195
1220
  )
1196
1221
  pending_transition = None
1222
+ at_black = cls in ("Filler", "ScopeReference")
1197
1223
  except Exception:
1198
1224
  # Never let one bad component abort the whole sequence — but say so.
1199
1225
  _note_unhandled(state, cls)
1200
1226
  pending_transition = None
1201
1227
  continue
1228
+ if pending_transition is not None:
1229
+ # Transition as the LAST component = fade-out to the sequence end.
1230
+ _emit_bl(rec, pending_transition)
1202
1231
  return rec - start
1203
1232
 
1204
1233
 
@@ -443,6 +443,29 @@ export function eventsToAssembleSpec(events, opts = {}) {
443
443
  if (!perSource.has(e.source)) perSource.set(e.source, []);
444
444
  perSource.get(e.source).push(cut);
445
445
  }
446
+ // AAF overlap reconciliation (E93): an AAF Transition CONSUMES record time
447
+ // — the incoming component starts `duration` frames before the outgoing
448
+ // ends, so the walker legitimately emits OVERLAPPING events with the
449
+ // transition on the incoming (alignment 'start' at the overlap start).
450
+ // Trim the outgoing's tail to the overlap start before the overlap gates:
451
+ // the boundary-shift below then re-extends it to the cut point, which is
452
+ // exactly the AAF notional-cut semantics (CutPoint, centered by default).
453
+ // Without this the overlap gate threw and NO AAF dissolve could conform.
454
+ const reconcileAafOverlap = (cands, pls) => {
455
+ for (const c of cands) {
456
+ if (!c.explicitSpan || c.pre !== 0) continue;
457
+ const prev = pls.find((pl) => pl.track === c.track && pl.start < c.atFrame && pl.end > c.atFrame && pl.end - c.atFrame <= c.durationFrames);
458
+ if (!prev) continue;
459
+ const o = prev.end - c.atFrame;
460
+ if (prev.durationFrames <= o) continue; // degenerate: leave for the drop paths
461
+ prev.end -= o;
462
+ prev.durationFrames -= o;
463
+ prev.cutRef.durationFrames -= o;
464
+ }
465
+ };
466
+ reconcileAafOverlap(transitionCandidates, placements);
467
+ reconcileAafOverlap(audioTransCandidates, audioPlacements);
468
+
446
469
  audioPlacements.sort((a, b) => a.start - b.start);
447
470
  const audByTrack = new Map();
448
471
  for (const pl of audioPlacements) {
@@ -819,8 +842,29 @@ export function verifyRoundtrip(inputEvents, exportedEvents, opts = {}) {
819
842
  .map((e) => ({ track: canonTrack(e.track), source: mapSource(canonSource(e.source)), recIn: e.recIn - off, recOut: e.recOut - off, srcIn: e.srcIn ?? 0 }))
820
843
  .sort((a, b) => a.track.localeCompare(b.track) || a.recIn - b.recIn);
821
844
  };
822
- const a = norm(inputEvents);
823
- const b = norm(exportedEvents);
845
+ const a0 = norm(inputEvents);
846
+ const b0 = norm(exportedEvents);
847
+ // FADES (E94): BL legs on the input side and the Solid Color generators a
848
+ // fade conform authors for them are the same thing — BLACK. Black segments
849
+ // are synthesized filler whose extents follow from the picture boundaries,
850
+ // so the pairwise compare runs over PICTURE legs only; black is counted
851
+ // informationally. And a fade's boundary-shift legitimately moves a
852
+ // picture edge by up to the transition duration (matching Resolve's own
853
+ // start-at-cut reshaping), so an edge within an input junction's fade
854
+ // window is excused — and reported, not silently absorbed.
855
+ const isBlackSeg = (e) => /^(bl|black|solid color)$/.test(e.source);
856
+ const a = a0.filter((e) => !isBlackSeg(e));
857
+ const b = b0.filter((e) => !isBlackSeg(e));
858
+ const blackSegments = { input: a0.length - a.length, exported: b0.length - b.length };
859
+ const rawVids = vids(inputEvents);
860
+ const inOff = rawVids.length ? Math.min(...rawVids.map((e) => e.recIn)) : 0;
861
+ const junctions = inputEvents
862
+ .filter((e) => /^V\d*$/.test(String(e.track)) && e.recIn != null && e.transition && e.transition.duration > 0)
863
+ .map((e) => ({ frame: e.recIn - inOff, d: e.transition.duration }));
864
+ const inFadeWindow = (edgeIn, edgeExp) => junctions.some(
865
+ (j) => Math.abs(edgeIn - j.frame) <= j.d && Math.abs(edgeExp - edgeIn) <= j.d,
866
+ );
867
+ const fadeReshapedBoundaries = [];
824
868
  const mismatches = [];
825
869
  if (a.length !== b.length) mismatches.push({ kind: 'count', input: a.length, exported: b.length });
826
870
  const srcOffsets = {};
@@ -829,11 +873,23 @@ export function verifyRoundtrip(inputEvents, exportedEvents, opts = {}) {
829
873
  const x = a[i], y = b[i];
830
874
  if (x.track !== y.track) { mismatches.push({ kind: 'track', at: i, input: x.track, exported: y.track }); continue; }
831
875
  if (x.source !== y.source) { mismatches.push({ kind: 'source', at: i, input: x.source, exported: y.source }); continue; }
832
- if (Math.abs(x.recIn - y.recIn) > recTol || Math.abs(x.recOut - y.recOut) > recTol) {
833
- mismatches.push({ kind: 'record', at: i, input: [x.recIn, x.recOut], exported: [y.recIn, y.recOut] });
834
- continue;
876
+ const inBad = Math.abs(x.recIn - y.recIn) > recTol;
877
+ const outBad = Math.abs(x.recOut - y.recOut) > recTol;
878
+ if (inBad || outBad) {
879
+ const inExcused = !inBad || inFadeWindow(x.recIn, y.recIn);
880
+ const outExcused = !outBad || inFadeWindow(x.recOut, y.recOut);
881
+ if (inExcused && outExcused) {
882
+ fadeReshapedBoundaries.push({ at: i, source: x.source, input: [x.recIn, x.recOut], exported: [y.recIn, y.recOut] });
883
+ } else {
884
+ mismatches.push({ kind: 'record', at: i, input: [x.recIn, x.recOut], exported: [y.recIn, y.recOut] });
885
+ continue;
886
+ }
835
887
  }
836
- const off = y.srcIn - x.srcIn;
888
+ // A fade-reshaped head trims record AND source together (source stays
889
+ // record-aligned), so the per-source constant offset is fitted net of
890
+ // the record shift — otherwise a source cut both plain and faded would
891
+ // read as a source-frames drift.
892
+ const off = (y.srcIn - (y.recIn - x.recIn)) - x.srcIn;
837
893
  if (srcOffsets[x.source] === undefined) srcOffsets[x.source] = off;
838
894
  else if (Math.abs(off - srcOffsets[x.source]) > srcTol) {
839
895
  mismatches.push({ kind: 'source-frames', at: i, source: x.source, expectedOffset: srcOffsets[x.source], gotOffset: off });
@@ -870,5 +926,10 @@ export function verifyRoundtrip(inputEvents, exportedEvents, opts = {}) {
870
926
  }
871
927
  mismatches.push(...markers.mismatches);
872
928
  }
873
- return { pass: mismatches.length === 0, pairs: n, srcOffsets, mismatches, markers, ...(markersNotInExport ? { markersNotInExport } : {}) };
929
+ return {
930
+ pass: mismatches.length === 0, pairs: n, srcOffsets, mismatches, markers,
931
+ ...(markersNotInExport ? { markersNotInExport } : {}),
932
+ ...(blackSegments.input || blackSegments.exported ? { blackSegments } : {}),
933
+ ...(fadeReshapedBoundaries.length ? { fadeReshapedBoundaries } : {}),
934
+ };
874
935
  }
@@ -153,7 +153,7 @@ function requirePathArg(args, key, action) {
153
153
  export const drtTool = {
154
154
  name: 'drt',
155
155
  description:
156
- 'DaVinci Resolve Timeline (.drt) operations — offline, no Resolve required. Actions: assemble_from_interchange (EDL/OTIO/XML/AAF + sourceMap → IMPORTABLE RENDERING native .drt in one call; retimes AUTHOR — constant speed fwd/rev AND zero-speed freezes (EDL M2 000.0; render-proven frozen); cross-dissolves are AUTHORED when the cut abuts with handles both sides (render-verified on 19), else dropped with reason; fades AUTHOR across formats (EDL BL legs, OTIO gap-adjacent Transitions, XMEML edge transitionitems) — BL legs become Solid Color generators and the fade a real clip-to-generator dissolve, luma-ramp render-verified, while Resolve\'s OWN EDL importer drops BL dissolves silently; ledger in `conform`), assemble (spec → IMPORTABLE native-schema .drt via template-spliced real structures; pass targetAppVersion e.g. \'19.1\' for pre-21 hosts), parse, list_sequences (enumerate the timelines inside a .drp/.drt → [{id,name,eventCount,index}] to drive a "which sequence?" picker), author, validate, inject_into_drp, extract_from_drp (pull one SeqContainer out as a .drt — feed the .drt to the Python davinci-resolve MCP timeline.import_timeline_checked, or use timeline.import_from_drp to do both), downgrade (stamp <ProjectVersion> down so an OLDER Resolve will import a .drt/.drp from a newer one — pass targetAppVersion like "19.1.3" or targetProjectVersion).',
156
+ 'DaVinci Resolve Timeline (.drt) operations — offline, no Resolve required. Actions: assemble_from_interchange (EDL/OTIO/XML/AAF + sourceMap → IMPORTABLE RENDERING native .drt in one call; retimes AUTHOR — constant speed fwd/rev AND zero-speed freezes (EDL M2 000.0; render-proven frozen); cross-dissolves are AUTHORED when the cut abuts with handles both sides (render-verified on 19), else dropped with reason; fades AUTHOR across ALL FOUR formats (EDL BL legs, OTIO gap-adjacent Transitions, XMEML edge transitionitems, AAF filler-adjacent Transitions) and AAF overlap-consuming dissolves reconcile+author (CutPoint honored; before E93 they threw at the overlap gate) — BL legs become Solid Color generators and the fade a real clip-to-generator dissolve, luma-ramp render-verified, while Resolve\'s OWN EDL importer drops BL dissolves silently; ledger in `conform`), assemble (spec → IMPORTABLE native-schema .drt via template-spliced real structures; pass targetAppVersion e.g. \'19.1\' for pre-21 hosts), parse, list_sequences (enumerate the timelines inside a .drp/.drt → [{id,name,eventCount,index}] to drive a "which sequence?" picker), author, validate, inject_into_drp, extract_from_drp (pull one SeqContainer out as a .drt — feed the .drt to the Python davinci-resolve MCP timeline.import_timeline_checked, or use timeline.import_from_drp to do both), downgrade (stamp <ProjectVersion> down so an OLDER Resolve will import a .drt/.drp from a newer one — pass targetAppVersion like "19.1.3" or targetProjectVersion).',
157
157
  async handler({ action, args }) {
158
158
  if (action === 'parse') {
159
159
  const p = parseSchema.parse(requirePathArg(args, 'drtPath', 'parse'));
@@ -86,7 +86,7 @@ const markerSchema = z.object({
86
86
  export const editorialTool = {
87
87
  name: 'editorial',
88
88
  description:
89
- 'Editorial integrity (Cluster E) — turnover interchange → normalized events → changelist + conform manifest with TIMING silent-lie guards (flattened retime / dropped J/L-cut audio / framerate-pulldown slip / reverse dropped / transition-handle starvation → flag, skip-not-fake). Report-only (gate: review). Actions: parse_interchange (EDL/OTIO/XMEML natively + AAF via pyaaf2 + PRPROJ via gunzip+XML → normalized events; for AAF/PRPROJ pass the file PATH as content; AAF also returns per-sequence startTimecode/startFrame — build the timeline at THAT start, not the Resolve 01:00:00:00 default — and per-clip `geometry` for Avid transform effects), list_sequences (ONE offline picker entry point across xml/edl/otio/drt/drp/aaf/prproj → [{id,name,eventCount}], plus startTimecode/startFrame for AAF), convert_to_interchange (author OTIO/EDL/DRT Resolve CAN import from events or a parsed source — the .prproj→Resolve conform bridge, no Premiere needed; editorial timing/transitions survive and per-clip effects/color do not. SPEED/REVERSE survive on the otio (LinearTimeWarp) and edl (M2) targets ONLY — this FLAT drt target flattens every retime to 100% forward and returns `flattened`/`flattenedCount` naming each event that lost one (`flattened` is always present on `drt`, empty when there were none); for a .drt that AUTHORS retimes/dissolves/multi-track/audio, use drt.assemble_from_interchange), turnover_changelist (diff old vs new → moved/retimed/replaced/new/gone + timing flags), conform_manifest (per-event assert: source resolved/handles/retime/reverse/TC-base), marker_roundtrip (markers with provenance tags), verify_roundtrip (input events vs re-export events -> pass/mismatches + fitted per-source TC offsets; the conform QC loop-closer). Offline (AAF needs pyaaf2; live AAF/DRP import is on the Python davinci-resolve MCP).',
89
+ 'Editorial integrity (Cluster E) — turnover interchange → normalized events → changelist + conform manifest with TIMING silent-lie guards (flattened retime / dropped J/L-cut audio / framerate-pulldown slip / reverse dropped / transition-handle starvation → flag, skip-not-fake). Report-only (gate: review). Actions: parse_interchange (EDL/OTIO/XMEML natively + AAF via pyaaf2 + PRPROJ via gunzip+XML → normalized events; for AAF/PRPROJ pass the file PATH as content; AAF also returns per-sequence startTimecode/startFrame — build the timeline at THAT start, not the Resolve 01:00:00:00 default — and per-clip `geometry` for Avid transform effects), list_sequences (ONE offline picker entry point across xml/edl/otio/drt/drp/aaf/prproj → [{id,name,eventCount}], plus startTimecode/startFrame for AAF), convert_to_interchange (author OTIO/EDL/DRT Resolve CAN import from events or a parsed source — the .prproj→Resolve conform bridge, no Premiere needed; editorial timing/transitions survive and per-clip effects/color do not. SPEED/REVERSE survive on the otio (LinearTimeWarp) and edl (M2) targets ONLY — this FLAT drt target flattens every retime to 100% forward and returns `flattened`/`flattenedCount` naming each event that lost one (`flattened` is always present on `drt`, empty when there were none); for a .drt that AUTHORS retimes/dissolves/multi-track/audio, use drt.assemble_from_interchange), turnover_changelist (diff old vs new → moved/retimed/replaced/new/gone + timing flags), conform_manifest (per-event assert: source resolved/handles/retime/reverse/TC-base), marker_roundtrip (markers with provenance tags), verify_roundtrip (input events vs re-export events -> pass/mismatches + fitted per-source TC offsets + marker compare w/ markersNotInExport honesty flag; FADE-AWARE: BL/Solid-Color legs merge out as blackSegments and fade-window boundary reshapes are excused into fadeReshapedBoundaries instead of failing; the conform QC loop-closer). Offline (AAF needs pyaaf2; live AAF/DRP import is on the Python davinci-resolve MCP).',
90
90
  async handler({ action, args }) {
91
91
  if (action === 'parse_interchange') {
92
92
  const p = parseSchema.parse(args);
@@ -87,7 +87,7 @@ if not logging.getLogger().handlers:
87
87
  handlers=[logging.StreamHandler()],
88
88
  )
89
89
 
90
- VERSION = "2.151.0"
90
+ VERSION = "2.153.0"
91
91
  logger = logging.getLogger("davinci-resolve-mcp")
92
92
  logger.info(f"Starting DaVinci Resolve MCP Server v{VERSION}")
93
93
  logger.info(f"Detected platform: {get_platform()}")
package/src/server.py CHANGED
@@ -11,7 +11,7 @@ Usage:
11
11
  python src/server.py --full # Start the 353-tool granular server instead
12
12
  """
13
13
 
14
- VERSION = "2.151.0"
14
+ VERSION = "2.153.0"
15
15
 
16
16
  import base64
17
17
  import os