changeset 118:eac6dae753ca

*: major cleanup committer: GitHub <noreply@github.com>
author Paper <37962225+mrpapersonic@users.noreply.github.com>
date Fri, 03 Mar 2023 22:51:28 +0000
parents 40a7b6d9bd3b
children 196cf2e3d96e
files channeldownloader.py dlfilesinchannel.py from.py garf.c gendesc.py generatehtml.py getdate.py getlist.py getskin.py nhentai.py python3path.bat vegasman/7z/README vegasman/COPYING vegasman/README vegasman/manual.bat vegasman/vegas.reg
diffstat 16 files changed, 230 insertions(+), 1239 deletions(-) [+]
line wrap: on
line diff
--- a/channeldownloader.py	Fri Mar 03 22:33:53 2023 +0000
+++ b/channeldownloader.py	Fri Mar 03 22:51:28 2023 +0000
@@ -25,24 +25,14 @@
 import os
 import re
 import time
-try:
-    import urllib.request as compat_urllib
-    from urllib.error import HTTPError
-except ImportError:  # Python 2
-    import urllib as compat_urllib
-    from urllib2 import HTTPError
-try:
-    import yt_dlp as youtube_dl
-    from yt_dlp.utils import sanitize_filename, DownloadError
-except ImportError:
-    try:
-        import youtube_dl
-        from youtube_dl.utils import sanitize_filename, DownloadError
-    except ImportError:
-        print("ERROR: youtube-dl/yt-dlp not installed!")
-        exit(1)
-from io import open  # for Python 2 compatibility, in Python 3 this
-                     # just maps to the built-in function
+import urllib.request
+import requests  # need this for ONE (1) exception
+import yt_dlp as youtube_dl
+from urllib.error import HTTPError
+from yt_dlp.utils import sanitize_filename, DownloadError
+from pathlib import Path
+from requests.exceptions import ConnectTimeout
+
 
 class MyLogger(object):
     def debug(self, msg):
@@ -55,15 +45,19 @@
         print(" " + msg)
         pass
 
-def ytdl_hook(d):
+
+def ytdl_hook(d) -> None:
     if d["status"] == "finished":
         print(" downloaded %s:    100%% " % (os.path.basename(d["filename"])))
     if d["status"] == "downloading":
-        print(" downloading %s: %s\r" % (os.path.basename(d["filename"]), d["_percent_str"]), end="")
+        print(" downloading %s: %s\r" % (os.path.basename(d["filename"]),
+                                         d["_percent_str"]), end="")
     if d["status"] == "error":
-        print("\n an error occurred downloading %s!" % (os.path.basename(d["filename"])))
+        print("\n an error occurred downloading %s!"
+              % (os.path.basename(d["filename"])))
 
-def load_split_files(path):
+
+def load_split_files(path: str) -> dict:
     if os.path.isdir(path):
         result = {"videos": []}
         for fi in os.listdir(path):
@@ -75,16 +69,30 @@
     else:
         return json.loads(open(path, "r", encoding="utf-8").read())
 
-def reporthook(count, block_size, total_size):
+
+def reporthook(count: int, block_size: int, total_size: int) -> None:
     global start_time
     if count == 0:
         start_time = time.time()
         return
-    duration = time.time() - start_time
     percent = int(count * block_size * 100 / total_size)
     print(" downloading %d%%        \r" % (percent), end="")
 
-args = docopt.docopt(__doc__)
+
+def write_metadata(i: dict, basename: str) -> None:
+    if not os.path.exists(basename + ".info.json"):
+        with open(basename + ".info.json", "w", encoding="utf-8") as jsonfile:
+            try:
+                jsonfile.write(json.dumps(i).decode("utf-8"))
+            except AttributeError:
+                jsonfile.write(json.dumps(i))
+            print(" saved %s" % os.path.basename(jsonfile.name))
+    if not os.path.exists(basename + ".description"):
+        with open(basename + ".description", "w",
+                  encoding="utf-8") as descfile:
+            descfile.write(i["description"])
+            print(" saved %s" % os.path.basename(descfile.name))
+
 
 ytdl_opts = {
     "retries": 100,
@@ -97,7 +105,6 @@
     "writeannotations": True,
     "writesubtitles": True,
     "allsubtitles": True,
-    "ignoreerrors": True,
     "addmetadata": True,
     "continuedl": True,
     "embedthumbnail": True,
@@ -109,89 +116,117 @@
     "ignoreerrors": False,
 }
 
-if not os.path.exists(args["--output"]):
-    os.mkdir(args["--output"])
 
-for i in load_split_files(args["--database"])["videos"]:
-    uploader = i["uploader_id"] if "uploader_id" in i else None
-    for url in args["<url>"]:
-        channel = url.split("/")[-1]
-
-        output = "%s/%s" % (args["--output"], channel)
-        if not os.path.exists(output):
-            os.mkdir(output)
-        ytdl_opts["outtmpl"] = output + "/%(title)s-%(id)s.%(ext)s"
-        
+def wayback_machine_dl(video: dict, basename: str) -> int:
+    try:
+        url = ''.join(["https://web.archive.org/web/2oe_/http://wayback-fakeu",
+                       "rl.archive.org/yt/%s"])
+        headers = urllib.request.urlopen(url % video["id"])
+        contenttype = headers.getheader("Content-Type")
+        if contenttype == "video/webm":
+            ext = "webm"
+        elif contenttype == "video/mp4":
+            ext = "mp4"
+        else:
+            raise HTTPError(url=None, code=None, msg=None,
+                            hdrs=None, fp=None)
+        urllib.request.urlretrieve(url % video["id"], "%s.%s" % (basename, ext),
+                                   reporthook)
+        print(" downloaded %s.%s" % (basename, ext))
+        return 0
+    except TimeoutError:
+        return 1
+    except HTTPError:
+        print(" video not available on the Wayback Machine!")
+        return 0
+    except Exception as e:
+        print(" unknown error downloading video!\n")
+        print(e)
+        return 0
 
-        if uploader == channel:
-            print("%s:" % i["id"])
-            # :skull:
-            # todo: put this in a function?
-            if any(x in os.listdir(output) for x in [sanitize_filename("%s-%s.mp4"  % (i["title"], i["id"]), restricted=True),
-                                                     sanitize_filename("%s-%s.mkv"  % (i["title"], i["id"]), restricted=True),
-                                                     sanitize_filename("%s-%s.webm" % (i["title"], i["id"]), restricted=True)]):
-                print(" video already downloaded!")
+def internet_archive_dl(video: dict, basename: str) -> int:
+    if internetarchive.get_item("youtube-%s" % video["id"]).exists:
+        fnames = [f.name for f in internetarchive.get_files(
+                                  "youtube-%s" % video["id"])]
+        flist = []
+        for fname in range(len(fnames)):
+            if re.search(''.join([r"((?:.+?-)?", video["id"],
+                                  r"\.(?:mp4|jpg|webp|mkv|webm|info\\.json|des"
+                                  r"cription|annotations.xml))"]),
+                                 fnames[fname]):
+                flist.append(fnames[fname])
+        while True:
+            try:
+                internetarchive.download("youtube-%s" % video["id"],
+                                         files=flist, verbose=True,
+                                         destdir=output,
+                                         no_directory=True,
+                                         ignore_existing=True,
+                                         retries=9999)
+                break
+            except ConnectTimeout:
                 continue
-            # this code is *really* ugly... todo a rewrite?
-            with youtube_dl.YoutubeDL(ytdl_opts) as ytdl:
-                try:
-                    result = ytdl.extract_info("https://youtube.com/watch?v=%s" % i["id"])
-                    continue
-                except DownloadError:
-                    print(" video is not available! attempting to find Internet Archive pages of it...")
-                except Exception as e:
-                    print(" unknown error downloading video!\n")
-                    print(e)
-            if internetarchive.get_item("youtube-%s" % i["id"]).exists:  # download from internetarchive if available
-                fnames = [f.name for f in internetarchive.get_files("youtube-%s" % i["id"])]
-                flist = []
-                for fname in range(len(fnames)):
-                    if re.search("((?:.+?-)?%s\.(?:mp4|jpg|webp|mkv|webm|info\.json|description))" % (i["id"]), fnames[fname]):
-                        flist.append(fnames[fname])
-                if len(flist) >= 1:
-                    internetarchive.download("youtube-%s" % i["id"], files=flist, verbose=True, destdir=output, no_directory=True, ignore_existing=True, retries=9999)
-                else:
+            except Exception:
+                return 0
+        if flist[0][:len(video["id"])] == video["id"]:
+            for fname in flist:
+                if os.path.exists("%s/%s" % (output, fname)):
+                    os.replace("%s/%s" % (output, fname),
+                               "%s-%s" % (basename.rsplit("-", 1)[0],
+                                          fname))
+        return 1
+    return 0
+
+def main():
+    args = docopt.docopt(__doc__)
+
+    if not os.path.exists(args["--output"]):
+        os.mkdir(args["--output"])
+
+    for i in load_split_files(args["--database"])["videos"]:
+        uploader = i["uploader_id"] if "uploader_id" in i else None
+        for url in args["<url>"]:
+            channel = url.split("/")[-1]
+
+            output = "%s/%s" % (args["--output"], channel)
+            if not os.path.exists(output):
+                os.mkdir(output)
+            ytdl_opts["outtmpl"] = output + "/%(title)s-%(id)s.%(ext)s"
+
+            if uploader == channel:
+                print("%s:" % i["id"])
+                basename = "%s/%s-%s" % (output, sanitize_filename(i["title"],
+                                         restricted=True), i["id"])
+                path = Path(output)
+                files = list(path.glob("*-%s.mkv" % i["id"]))
+                files.extend(list(path.glob("*-%s.mp4" % i["id"])))
+                files.extend(list(path.glob("*-%s.webm" % i["id"])))
+                if files:
                     print(" video already downloaded!")
+                    write_metadata(i, basename)
                     continue
-                if os.path.exists("%s/%s.info.json" % (output, i["id"])):  # will always exist no matter which setting was used to download
-                    for fname in flist:
-                        if os.path.exists(output + "/" + fname) and not os.path.exists(output + "/" + sanitize_filename(i["title"], restricted=True) + "-" + fname):
-                            os.rename(output + "/" + fname, output + "/" + sanitize_filename(i["title"], restricted=True) + "-" + fname)
-                else:
-                    print("ID file not found!")
-            else:
-                print(" video does not have a Internet Archive page! attempting to download from the Wayback Machine...")
-                try:  # we could use yt-dlp's extractor, but then we would need to craft a fake wayback machine url,
-                      # and we wouldn't even know if it worked. so let's continue using our little "hack"
-                    headers = compat_urllib.urlopen("https://web.archive.org/web/2oe_/http://wayback-fakeurl.archive.org/yt/%s" % i["id"])
-                    if hasattr(headers.info(), "getheader"):
-                        contenttype = headers.info().getheader("Content-Type")
-                    else:
-                        contenttype = headers.getheader("Content-Type")
-                    if contenttype == "video/webm":
-                        ext = "webm"
-                    elif contenttype == "video/mp4":
-                        ext = "mp4"
-                    else:
-                        raise HTTPError(url=None, code=None, msg=None, hdrs=None, fp=None)
-                    compat_urllib.urlretrieve("https://web.archive.org/web/2oe_/http://wayback-fakeurl.archive.org/yt/%s" % i["id"], "%s/%s-%s.%s" % (output, sanitize_filename(i["title"], restricted=True), i["id"], ext), reporthook)
-                    print(" downloaded %s-%s.%s" % (sanitize_filename(i["title"], restricted=True), i["id"], ext))
-                except HTTPError:
-                    print(" video not available on the Wayback Machine!")
-                except Exception as e:
-                    print(" unknown error downloading video!\n")
-                    print(e)
-            # metadata
-            basename = "%s/%s-%s" % (output, sanitize_filename(i["title"], restricted=True), i["id"])
-            if not os.path.exists(basename + ".info.json"):
-                with open(basename + ".info.json", "w", encoding="utf-8") as jsonfile:
+                # this code is *really* ugly... todo a rewrite?
+                with youtube_dl.YoutubeDL(ytdl_opts) as ytdl:
                     try:
-                        jsonfile.write(json.dumps(i).decode("utf-8"))
-                    except AttributeError:
-                        jsonfile.write(json.dumps(i))
-                    print(" saved %s" % os.path.basename(jsonfile.name))
-            if not os.path.exists(basename + ".description"):
-                with open(basename + ".description", "w", encoding="utf-8") as descfile:
-                    descfile.write(i["description"])
-                    print(" saved %s" % os.path.basename(descfile.name))
+                        ytdl.extract_info("https://youtube.com/watch?v=%s"
+                                          % i["id"])
+                        continue
+                    except DownloadError:
+                        print(" video is not available! attempting to find In"
+                              "ternet Archive pages of it...")
+                    except Exception as e:
+                        print(" unknown error downloading video!\n")
+                        print(e)
+                if internet_archive_dl(i, basename) == 0:  # if we can't download from IA
+                    print(" video does not have a Internet Archive page! attem"
+                          "pting to download from the Wayback Machine...")
+                    while True:
+                        if wayback_machine_dl(i, basename) == 0:  # success
+                            break
+                        time.sleep(5)
+                        continue
+                write_metadata(i, basename)
 
+
+if __name__ == "__main__":
+    main()
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/dlfilesinchannel.py	Fri Mar 03 22:51:28 2023 +0000
@@ -0,0 +1,75 @@
+import math
+import requests
+import shutil
+import os
+import time
+import urllib.parse
+import re
+ID = "ID"
+CHN_ID = "CHN_ID"
+
+def find_urls(s):
+    urllist = []
+    for findall in re.findall(r"""http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+""", s):
+        urllist.append(findall.split("<")[0].split(">")[-1])
+    return urllist
+
+def download_file(url, local_filename):
+    with requests.get(url, stream=True) as r:
+        with open(local_filename, 'wb') as f:
+            shutil.copyfileobj(r.raw, f)
+    return
+
+
+session = requests.Session()
+
+session.headers = {
+  'authority': 'discord.com',
+  'x-super-properties': 'eyJvcyI6IldpbmRvd3MiLCJicm93c2VyIjoiRGlzY29yZCBDbGllbnQiLCJyZWxlYXNlX2NoYW5uZWwiOiJzdGFibGUiLCJjbGllbnRfdmVyc2lvbiI6IjEuMC45MDAyIiwib3NfdmVyc2lvbiI6IjEwLjAuMTkwNDMiLCJvc19hcmNoIjoieDY0Iiwic3lzdGVtX2xvY2FsZSI6ImVuLVVTIiwiY2xpZW50X2J1aWxkX251bWJlciI6OTQyOTQsImNsaWVudF9ldmVudF9zb3VyY2UiOm51bGx9',
+  'authorization': 'TOKEN',
+  'x-debug-options': 'bugReporterEnabled',
+  'accept-language': 'en-US',
+  'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) discord/1.0.9002 Chrome/83.0.4103.122 Electron/9.3.5 Safari/537.36',
+  'accept': '*/*',
+  'sec-fetch-site': 'same-origin',
+  'sec-fetch-mode': 'cors',
+  'sec-fetch-dest': 'empty',
+}
+
+response = session.get("https://discord.com/api/v9/guilds/%s/messages/search?has=link&channel_id=%s&include_nsfw=true" % (ID, CHN_ID)).json()
+
+for done in range(math.ceil(int(response["total_results"])/25)):
+    currentresponse = session.get("https://discord.com/api/v9/guilds/%s/messages/search?has=link&channel_id=%s&include_nsfw=true&offset=%d" % (ID, CHN_ID, done*25)).json()
+    for i in currentresponse["messages"]:
+        for x in find_urls(i[0]["content"]):
+            if urllib.parse.urlparse(x).netloc.find("tenor.com") != -1:
+                continue
+            try:
+                headresponse = session.head(x)
+            except Exception as e:
+                print("failed to download " + x.split("/")[-1] + " " + type(e).__name__)
+                time.sleep(1)
+                continue
+            if headresponse.headers["Content-Type"] == "video/mp4":
+                if os.path.exists(x.split("/")[-1]):
+                    if not os.path.getsize(x.split("/")[-1]) < int(headresponse.headers["Content-Length"]):
+                        print(x.split("/")[-1] + " already downloaded!")
+                        continue
+                try:
+                    download_file(x, x.split("/")[-1])
+                    print(x.split("/")[-1] + " downloaded!")
+                except Exception as e:
+                    print("failed to download " + x.split("/")[-1] + " " + type(e).__name__)
+                    continue
+            time.sleep(1)
+        for x in i[0]["attachments"]:
+            if os.path.exists(x["filename"]):
+                if not os.path.getsize(x["filename"]) < x["size"]:
+                    print(x["filename"] + " already downloaded!")
+                    continue
+            try:
+                download_file(x["url"], x["filename"])
+                print(x["filename"] + " downloaded!")
+            except Exception as e:
+                print(e)
+            time.sleep(1)
--- a/from.py	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,75 +0,0 @@
-import math
-import requests
-import shutil
-import os
-import time
-import urllib.parse
-import re
-ID = "ID"
-CHN_ID = "CHN_ID"
-
-def find_urls(s):
-    urllist = []
-    for findall in re.findall(r"""http[s]?://(?:[a-zA-Z]|[0-9]|[$-_@.&+]|[!*\(\),]|(?:%[0-9a-fA-F][0-9a-fA-F]))+""", s):
-        urllist.append(findall.split("<")[0].split(">")[-1])
-    return urllist
-
-def download_file(url, local_filename):
-    with requests.get(url, stream=True) as r:
-        with open(local_filename, 'wb') as f:
-            shutil.copyfileobj(r.raw, f)
-    return
-
-
-session = requests.Session()
-
-session.headers = {
-  'authority': 'discord.com',
-  'x-super-properties': 'eyJvcyI6IldpbmRvd3MiLCJicm93c2VyIjoiRGlzY29yZCBDbGllbnQiLCJyZWxlYXNlX2NoYW5uZWwiOiJzdGFibGUiLCJjbGllbnRfdmVyc2lvbiI6IjEuMC45MDAyIiwib3NfdmVyc2lvbiI6IjEwLjAuMTkwNDMiLCJvc19hcmNoIjoieDY0Iiwic3lzdGVtX2xvY2FsZSI6ImVuLVVTIiwiY2xpZW50X2J1aWxkX251bWJlciI6OTQyOTQsImNsaWVudF9ldmVudF9zb3VyY2UiOm51bGx9',
-  'authorization': 'TOKEN',
-  'x-debug-options': 'bugReporterEnabled',
-  'accept-language': 'en-US',
-  'user-agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) discord/1.0.9002 Chrome/83.0.4103.122 Electron/9.3.5 Safari/537.36',
-  'accept': '*/*',
-  'sec-fetch-site': 'same-origin',
-  'sec-fetch-mode': 'cors',
-  'sec-fetch-dest': 'empty',
-}
-
-response = session.get("https://discord.com/api/v9/guilds/%s/messages/search?has=link&channel_id=%s&include_nsfw=true" % (ID, CHN_ID)).json()
-
-for done in range(math.ceil(int(response["total_results"])/25)):
-    currentresponse = session.get("https://discord.com/api/v9/guilds/%s/messages/search?has=link&channel_id=%s&include_nsfw=true&offset=%d" % (ID, CHN_ID, done*25)).json()
-    for i in currentresponse["messages"]:
-        for x in find_urls(i[0]["content"]):
-            if urllib.parse.urlparse(x).netloc.find("tenor.com") != -1:
-                continue
-            try:
-                headresponse = session.head(x)
-            except Exception as e:
-                print("failed to download " + x.split("/")[-1] + " " + type(e).__name__)
-                time.sleep(1)
-                continue
-            if headresponse.headers["Content-Type"] == "video/mp4":
-                if os.path.exists(x.split("/")[-1]):
-                    if not os.path.getsize(x.split("/")[-1]) < int(headresponse.headers["Content-Length"]):
-                        print(x.split("/")[-1] + " already downloaded!")
-                        continue
-                try:
-                    download_file(x, x.split("/")[-1])
-                    print(x.split("/")[-1] + " downloaded!")
-                except Exception as e:
-                    print("failed to download " + x.split("/")[-1] + " " + type(e).__name__)
-                    continue
-            time.sleep(1)
-        for x in i[0]["attachments"]:
-            if os.path.exists(x["filename"]):
-                if not os.path.getsize(x["filename"]) < x["size"]:
-                    print(x["filename"] + " already downloaded!")
-                    continue
-            try:
-                download_file(x["url"], x["filename"])
-                print(x["filename"] + " downloaded!")
-            except Exception as e:
-                print(e)
-            time.sleep(1)
--- a/garf.c	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,15 +0,0 @@
-// garf simulator
-#include <stdio.h>
-#include <string.h>
-
-int main(void) {
-    char answer[255];
-    printf("would you like to monetize 1123.best?: ");
-    fgets(answer, sizeof(answer), stdin);
-    if(strcmp(answer, "yes") == 0) {
-        printf("it's a yes!");
-    } else {
-        printf("it's a yes!");
-    }
-    return 0;
-}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/gendesc.py	Fri Mar 03 22:51:28 2023 +0000
@@ -0,0 +1,10 @@
+import json
+import sys
+import datetime
+
+with open(sys.argv[1]) as f:
+    data = json.load(f)
+    print(data['fulltitle'] + " [{0}]".format(data["uploader"]), end="\n\n-----------------\n\n")
+    upload_date = datetime.datetime(int(data["upload_date"][:-4]), int(data["upload_date"][4:][:-2]), int(data["upload_date"][6:]))
+    print("Published on " + f"{upload_date.strftime('%b')} {upload_date.strftime('%d').strip('0')}, {upload_date.strftime('%Y')}", end="\n\n")
+    print(data["description"])
--- a/generatehtml.py	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,58 +0,0 @@
-# super simple
-
-import os
-import sys
-import html
-import markdown
-
-title = "Blog - Paper's website"
-
-def addtitle(out_str, title):
-    # add stuff here
-    # The title in question:
-    out_str += """	<div class="entry">\n		<h1>%s</h1>\n		<div class="pre">\n""" % html.escape(title.strip())
-    return out_str
-
-def main(argv):
-    file = open(argv[1], 'r')
-    out = open(argv[2], 'w')
-    out_str = (
-    """<!DOCTYPE html>
-<head>
-    <title>%s</title>
-    <meta name="viewport" content="width=device-width;initial-scale=1.0" />
-    <link rel="stylesheet" type="text/css" href="blog.css" />
-    <link href="https://maxcdn.bootstrapcdn.com/bootstrap/2.3.2/css/bootstrap.min.css" rel="stylesheet" media="screen">
-</head>
-<body>
-    <div class="navbar-wrapper">
-		<div class="container" style="width: 98%%;margin-top:1%%;">
-			<div class="navbar navbar-inverse" style="box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5)">
-				<div class="navbar-inner">
-					<a class="brand" href="#">Paper's website</a>
-					<ul class="nav">
-						<li><a href="../">Home</a></li>
-						<li><a href="../music.html">Music</a></li>
-						<li><a href="../projects.html">Projects</a></li>
-						<li class="active"><a href="#">Blog</a></li>
-					</ul>
-				</div>
-			</div>
-		</div>
-    </div>
-""" % (title))
-    lines = file.readlines()
-    for line in range(len(lines)):
-        if lines[line][0] == "#":
-            out_str = addtitle(out_str, lines[line][1:])
-            continue
-        # this sucks.
-        if lines[line][0:3] == "---":
-            out_str += "		</div>\n	</div>\n"
-            continue
-        out_str += """%s\n""" % markdown.markdown(lines[line].strip())
-    out_str += "</body>"
-    print(out_str, file=out)
-
-if __name__ == "__main__":
-    main(sys.argv)
--- a/getdate.py	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,10 +0,0 @@
-import json
-import sys
-import datetime
-
-with open(sys.argv[1]) as f:
-    data = json.load(f)
-    print(data['fulltitle'] + " [{0}]".format(data["uploader"]), end="\n\n-----------------\n\n")
-    upload_date = datetime.datetime(int(data["upload_date"][:-4]), int(data["upload_date"][4:][:-2]), int(data["upload_date"][6:]))
-    print("Published on " + f"{upload_date.strftime('%b')} {upload_date.strftime('%d').strip('0')}, {upload_date.strftime('%Y')}", end="\n\n")
-    print(data["description"])
--- a/getlist.py	Fri Mar 03 22:33:53 2023 +0000
+++ b/getlist.py	Fri Mar 03 22:51:28 2023 +0000
@@ -1,6 +1,7 @@
 import urllib.request
 import json
 import sys
+from yt_dlp.utils import sanitize_filename
 
 # Initialize variables
 # https://github.com/xbmc/metadata.themoviedb.org.python/blob/master/python/lib/tmdbscraper/tmdbapi.py#L36
@@ -46,8 +47,7 @@
         with urllib.request.urlopen(f'https://api.themoviedb.org/3/tv/{str(id)}/season/{season}/episode/{count}?api_key={key}') as url:
             data = json.loads(url.read().decode())
             f = open("list.txt", "a", encoding="utf-8")
-            f.write(data["name"].replace("?", "?").replace(
-                ":", "꞉").replace('"', "“").split("/")[0].rstrip() + "\n")
+            f.write(sanitize_filename(data["name"], restricted=True) + "\n")
             count += 1
             f.close()
 if source == 'mal':
@@ -59,7 +59,6 @@
         f.close()
         for i in range(len(data["episodes"])):
             f = open("list.txt", "a", encoding="utf-8")
-            f.write(data["episodes"][count]["title"].replace("?", "?").replace(
-                ":", "꞉").replace('"', "“").split("/")[0].rstrip() + "\n")
+            f.write(sanitize_filename(data["episodes"][count]["title"], restricted=True) + "\n")
             count += 1
             f.close()
--- a/getskin.py	Fri Mar 03 22:33:53 2023 +0000
+++ b/getskin.py	Fri Mar 03 22:51:28 2023 +0000
@@ -4,6 +4,8 @@
 # (for those beta versions of minecraft that don't support UUIDs)
 # however, i do not have any java experience, like, at all
 # so that'll be fun!
+#
+# update 2023-03-03: it was never written LOL
 
 import argparse
 import base64
--- a/nhentai.py	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,77 +0,0 @@
-import os
-import argparse
-import sys
-
-
-def main(argv):
-    global outputfile
-    parser = argparse.ArgumentParser()
-    parser.add_argument(
-        '-o', '--output', help="output file, defaults to urls.txt",
-        metavar='<output>', required=True)
-    args = parser.parse_args()
-    if args.output:
-        outputfile = args.output
-    a = ["257892", "226942", "236297", "216039", "221711", "267371", "235905",
-         "266808", "262036", "206069", "245304", "166174", "175220", "244327",
-         "191049", "147577", "188940", "240543", "165264", "267384", "220882",
-         "244859", "227446", "259322", "259862", "267372", "234932", "247540",
-         "253687", "259569", "259758", "259555", "242505", "255388", "262042",
-         "231290", "250827", "247175", "258728", "264370", "146718", "202230",
-         "259668", "259848", "259542", "266772", "267243", "264901", "263960",
-         "262771", "259420", "188717", "259727", "257889", "259904", "247703",
-         "244427", "242070", "238845", "228510", "258136", "259906", "259986",
-         "216926", "197648", "228426", "225259", "229779", "228922", "103383",
-         "232854", "156069", "122984", "260026", "259634", "160556", "100094",
-         "169468", "204746", "219077", "259610", "259348", "258669", "256097",
-         "118282", "269329", "173023", "186446", "229948", "256088", "260028",
-         "260058", "259557", "259497", "122220", "269582", "270455", "256776",
-         "238651", "242543", "260111", "260088", "259880", "258977", "260097",
-         "263329", "127727", "256789", "256787", "217410", "259765", "259359",
-         "260138", "259617", "107965", "269413", "268926", "208174", "211112",
-         "225664", "197255", "260276", "260209", "260210", "260203", "266834",
-         "196341", "267924", "258212", "248769", "191360", "191390", "248933",
-         "257567", "227913", "219077", "204746", "204066", "007693", "007695",
-         "211648", "210240", "260626", "259622", "257991", "017131", "130602",
-         "172787", "043168", "050856", "213966", "260623", "149112", "252168",
-         "198203", "056657", "064707", "162677", "079712", "167450", "114783",
-         "220958", "244387", "243734", "223315", "102346", "183783", "114427",
-         "119726", "142154", "118069", "136188", "260686", "241777", "260912",
-         "152889", "186055", "204746", "270536", "270528", "142154", "119298",
-         "261174", "258301", "256808", "270415", "270393", "270240", "269871",
-         "269834", "169134", "220354", "260271", "261725", "261378", "269821",
-         "269740", "269721", "269672", "269649", "252174", "261928", "114427",
-         "187003", "147572", "269638", "269434", "269279", "256302", "242517",
-         "249458", "157767", "224316", "175294", "258450", "212347", "268820",
-         "268306", "266301", "265066", "233864", "236128", "261162", "174036",
-         "187205", "270424", "269374", "269067", "268742", "267859", "210873",
-         "193318", "110232", "199310", "193816", "270629", "270628", "270517",
-         "270435", "270174", "220376", "193814", "193815", "219068", "220386",
-         "269064", "269653", "279474", "269366", "268487", "177642", "188269",
-         "181837", "220377", "119293", "268328", "268423", "267935", "265575",
-         "265453", "257528", "258926", "262384", "105951", "259904", "265002",
-         "265085", "270559", "270347", "266882", "208174", "249229", "245644",
-         "262538", "234818", "266442", "264901", "263960", "262771", "262326",
-         "216845", "149212", "134442", "135927", "262447", "261539", "269370",
-         "258301", "256785", "256808", "261811", "261650", "261225", "261226",
-         "260761", "255351", "253306", "242070", "235763", "230437", "250327",
-         "192327", "167801", "150309", "123554", "233736", "260606", "253099",
-         "236707", "231576"]
-    if os.path.exists(outputfile):
-        answer = ""
-        while answer not in ["y", "n", "yes", "no"]:
-            print(f"{outputfile} still exists. Delete it? [y/n]: ", end="")
-            answer = input().lower()
-        if answer in ["y", "yes"]:
-            os.remove(outputfile)
-        else:
-            sys.exit()
-    for i in a:
-        myfile = open(outputfile, "a")
-        myfile.write(f"https://nhentai.org/g/{i}\n")
-        myfile.close()
-    print("URLs successfully written!")
-
-
-if __name__ == "__main__":
-    main(sys.argv[1:])
--- a/python3path.bat	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,14 +0,0 @@
-@echo off
-echo Downloading pathed...
-if not exist %temp%\python3path mkdir %temp%\python3path
-if not exist %temp%\python3path\pathed.exe powershell "iwr -OutFile "%temp%\python3path\pathed.exe" https://cdn.discordapp.com/attachments/559034172274901012/795468079432990740/pathed.exe"
-if not exist %temp%\python3path\GSharpTools.dll powershell "iwr -OutFile "%temp%\python3path\GSharpTools.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469138469978162/GSharpTools.dll"
-if not exist %temp%\python3path\GSharpTools.WPF.dll powershell "iwr -OutFile "%temp%\python3path\GSharpTools.WPF.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469255575076914/GSharpTools.WPF.dll"
-if not exist %temp%\python3path\log4net.dll powershell "iwr -OutFile "%temp%\python3path\log4net.dll" https://cdn.discordapp.com/attachments/757237744530358292/795469497141035028/log4net.dll"
-%temp%\python3path\pathed.exe /append %userprofile%\AppData\Local\Programs\Python\Python39 /user
-%temp%\python3path\pathed.exe /append %userprofile%\AppData\Local\Programs\Python\Python39\Scripts /user
-echo Python added to path!
-echo.
-echo Performing cleanup...
-del /f /s /q %temp%\python3path > nul
-pause
--- a/vegasman/7z/README	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,763 +0,0 @@
-This folder contains all the files necessary to run Vegas.
-Note that in many distributions, this folder will be EMPTY for legal reasons.
-Because of this, you will need to find the necessary files and create your own archives.
-P.S.: The "2f303b36.msi" file in Installer.7z is vegas130.msi, from SonyInstall_1 in Temp.
-
-Filenames to where they are extracted, plus CRC32 hashes of the data:
-
-1A71A82B | Installer.7z       | C:\Windows\Installer
-916F655B | ProgramData.7z     | C:\ProgramData\Sony
-7B416AF1 | Shared Plug-ins.7z | C:\Program Files (x86)\Sony
-A3F913D3 | Start Menu.7z      | C:\ProgramData\Microsoft\Windows\Start Menu
-2779E10E | Vegas Pro 13.0.7z  | C:\Program Files\Sony
-
-File listings:
-
-Path = Installer.7z
-Type = 7z
-Physical Size = 381845
-Headers Size = 365
-Method = LZMA2:768k
-Solid = +
-Blocks = 2
-
-   Date      Time    Attr         Size   Compressed  Name
-------------------- ----- ------------ ------------  ------------------------
-2022-07-05 01:16:05 D....            0            0  {1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}
-2022-07-05 01:16:05 .R..A        62493       166260  {1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}\icon_veg.ico
-2022-07-05 01:16:05 .R..A         2238               {1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}\sfa.ico
-2022-07-05 01:16:05 .R..A         2238               {1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}\sfpca.ico
-2022-07-05 01:16:05 .R..A        55217               {1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}\vegas.ico
-2022-07-05 01:16:05 .R..A       300318               {1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}\vmspeproject.ico
-2022-07-05 01:16:05 .R..A         3638               {1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}\vorbis.ico
-2022-07-05 01:16:05 .R..A         2238               {1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}\wav64.ico
-2022-07-05 04:14:36 ....A       638976       215220  2f303b36.msi
-------------------- ----- ------------ ------------  ------------------------
-Path = ProgramData.7z
-Type = 7z
-Physical Size = 605033
-Headers Size = 290
-Method = LZMA2:22 BCJ
-Solid = +
-Blocks = 2
-
-   Date      Time    Attr         Size   Compressed  Name
-------------------- ----- ------------ ------------  ------------------------
-2022-07-05 13:11:56 D....            0            0  Vegas Pro
-2022-07-05 13:12:07 D....            0            0  Vegas Pro\13.0
-2022-07-05 13:11:56 D....            0            0  Vegas Pro\13.0.453
-2014-11-12 12:59:50 ....A          129         1194  Vegas Pro\13.0\Vegas profiles update.ini
-2014-11-12 12:59:50 ....A         3268               Vegas Pro\13.0\Vegas profiles.ini
-2015-06-05 17:20:05 ....A      3182080       603549  Vegas Pro\13.0.453\sonyinstall_x64.dll
-------------------- ----- ------------ ------------  ------------------------
-Path = Shared Plug-ins.7z
-Type = 7z
-Physical Size = 14866103
-Headers Size = 773
-Method = LZMA2:24 BCJ
-Solid = +
-Blocks = 2
-
-   Date      Time    Attr         Size   Compressed  Name
-------------------- ----- ------------ ------------  ------------------------
-2022-07-05 01:15:49 D....            0            0  Shared Plug-Ins
-2022-07-05 01:15:51 D....            0            0  Shared Plug-Ins\Audio_x64
-2022-07-05 01:16:02 D....            0            0  Shared Plug-Ins\Help Files
-2015-05-19 19:22:24 ....A        51150     12255310  Shared Plug-Ins\Help Files\mchammer_x64.chm
-2014-11-12 13:01:52 ....A       233784               Shared Plug-Ins\Help Files\PluginWrapper.chm
-2015-05-19 19:22:32 ....A        42408               Shared Plug-Ins\Help Files\sffrgpnv_x64.chm
-2015-05-19 19:22:24 ....A        74015               Shared Plug-Ins\Help Files\sfppack1_x64.chm
-2015-05-19 19:22:26 ....A        75833               Shared Plug-Ins\Help Files\sfppack2_x64.chm
-2015-05-19 19:22:26 ....A        64548               Shared Plug-Ins\Help Files\sfppack3_x64.chm
-2014-11-12 12:54:16 ....A        42089               Shared Plug-Ins\Help Files\sfpublish.chm
-2015-05-19 19:22:30 ....A        45335               Shared Plug-Ins\Help Files\sfresfilter_x64.chm
-2015-05-19 19:22:30 ....A        53799               Shared Plug-Ins\Help Files\sftrkfx1_x64.chm
-2015-05-19 19:22:28 ....A        57473               Shared Plug-Ins\Help Files\sfxpfx1_x64.chm
-2015-05-19 19:22:28 ....A        57142               Shared Plug-Ins\Help Files\sfxpfx2_x64.chm
-2015-05-19 19:22:30 ....A        62173               Shared Plug-Ins\Help Files\sfxpfx3_x64.chm
-2014-11-12 12:52:50 ....A       376340               Shared Plug-Ins\Help Files\spconsoleopt4.chm
-2015-05-20 14:27:10 ....A      8439153               Shared Plug-Ins\Help Files\vegas130.chm
-2014-11-12 13:01:54 ....A      2543295               Shared Plug-Ins\Help Files\vfx1.ofx.chm
-2008-08-07 10:16:30 ....A       168236               Shared Plug-Ins\Help Files\vidcap60.chm
-2015-05-19 19:22:34 ....A        50964               Shared Plug-Ins\Help Files\xpvinyl_x64.chm
-2015-06-05 16:51:32 ....A        78136      2610020  Shared Plug-Ins\Audio_x64\ErrorReport.dll
-2015-06-05 16:51:56 ....A      3355960               Shared Plug-Ins\Audio_x64\mchammer_x64.dll
-2015-06-05 16:52:30 ....A      3417400               Shared Plug-Ins\Audio_x64\sffrgpnv_x64.dll
-2015-06-05 16:52:32 ....A      3955512               Shared Plug-Ins\Audio_x64\sfppack1_x64.dll
-2015-06-05 16:52:32 ....A      4239160               Shared Plug-Ins\Audio_x64\sfppack2_x64.dll
-2015-06-05 16:52:32 ....A      3803960               Shared Plug-Ins\Audio_x64\sfppack3_x64.dll
-2015-06-05 16:52:34 ....A      3325752               Shared Plug-Ins\Audio_x64\sfresfilter_x64.dll
-2015-06-05 16:52:34 ....A      3731256               Shared Plug-Ins\Audio_x64\sftrkfx1_x64.dll
-2015-06-05 16:52:38 ....A      3278648               Shared Plug-Ins\Audio_x64\sfxpfx1_x64.dll
-2015-06-05 16:52:38 ....A      3284280               Shared Plug-Ins\Audio_x64\sfxpfx2_x64.dll
-2015-06-05 16:52:38 ....A      3475768               Shared Plug-Ins\Audio_x64\sfxpfx3_x64.dll
-2015-06-05 16:53:16 ....A      3419448               Shared Plug-Ins\Audio_x64\xpvinyl_x64.dll
-------------------- ----- ------------ ------------  ------------------------
-Path = Start Menu.7z
-Type = 7z
-Physical Size = 974
-Headers Size = 232
-Method = LZMA2:12
-Solid = +
-Blocks = 1
-
-   Date      Time    Attr         Size   Compressed  Name
-------------------- ----- ------------ ------------  ------------------------
-2022-07-05 01:16:05 D....            0            0  Sony
-2022-07-05 01:16:06 D....            0            0  Sony\Vegas Pro 13.0
-2022-07-05 01:16:06 ....A         1135          742  Sony\Vegas Pro 13.0\Vegas Pro 13.0 (64-bit).lnk
-2022-07-05 01:16:06 ....A         1260               Sony\Vegas Pro 13.0\Vegas Pro 13.0 Readme.lnk
-------------------- ----- ------------ ------------  ------------------------
-Path = Vegas Pro 13.0.7z
-Type = 7z
-Physical Size = 213197261
-Headers Size = 8970
-Method = LZMA2:24 BCJ
-Solid = +
-Blocks = 2
-
-   Date      Time    Attr         Size   Compressed  Name
-------------------- ----- ------------ ------------  ------------------------
-2022-07-05 01:16:05 D....            0            0  Vegas Pro 13.0
-2022-07-05 01:15:58 D....            0            0  Vegas Pro 13.0\Audio Hardware Drivers
-2022-07-05 01:16:03 D....            0            0  Vegas Pro 13.0\bdmux
-2022-07-05 01:16:03 D....            0            0  Vegas Pro 13.0\de
-2022-07-05 01:16:05 D....            0            0  Vegas Pro 13.0\es
-2022-07-05 01:16:02 D....            0            0  Vegas Pro 13.0\External Control Drivers
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\ac3plug
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\ac3plug\ac3market
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\ac3studioplug
-2022-07-05 01:15:51 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\aifplug
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\atracplug
-2022-07-05 01:15:51 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\aviplug
-2022-07-05 01:16:01 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\compoundplug
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\flacplug
-2022-07-05 01:15:51 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\gifplug
-2022-07-05 01:15:59 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2
-2022-07-05 01:15:59 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cpu
-2022-07-05 01:15:59 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cuda
-2022-07-05 01:15:59 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_open_cl
-2022-07-05 01:16:03 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs
-2022-07-05 01:16:03 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_cpu
-2022-07-05 01:16:03 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_cuda
-2022-07-05 01:16:03 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_open_cl
-2022-07-05 01:15:55 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mcplug2
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mp3plug2
-2022-07-05 01:15:58 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mp4plug3
-2022-07-05 01:15:56 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mvcplug
-2022-07-05 01:15:57 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mxfhdcamsrplug
-2022-07-05 01:16:01 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mxfp2
-2022-07-05 01:15:58 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mxfplug
-2022-07-05 01:15:59 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3
-2022-07-05 01:16:01 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\mxfxavc
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\oggplug
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\qt7plug
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\redplug
-2022-07-05 01:15:51 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\sctplug
-2022-07-05 01:15:56 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\sflgaplg
-2022-07-05 01:15:51 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\sfpaplug
-2022-07-05 01:15:51 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\stl2plg
-2022-07-05 01:15:51 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\vduplug
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\wavplug
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\wicplug
-2022-07-05 01:15:52 D....            0            0  Vegas Pro 13.0\FileIO Plug-Ins\wmfplug4
-2022-07-05 01:16:05 D....            0            0  Vegas Pro 13.0\fr
-2022-07-05 01:16:05 D....            0            0  Vegas Pro 13.0\ja-JP
-2022-07-05 01:15:53 D....            0            0  Vegas Pro 13.0\Joystick Profiles
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins
-2022-07-05 01:15:48 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle
-2022-07-05 01:15:48 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents
-2022-07-05 01:15:56 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources
-2022-07-05 01:15:55 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Win64
-2022-07-05 01:15:48 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle
-2022-07-05 01:15:48 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents
-2022-07-05 01:16:05 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources
-2022-07-05 01:16:05 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64
-2022-07-05 01:16:05 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HFPL
-2022-07-05 01:15:48 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle
-2022-07-05 01:15:48 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents
-2022-07-05 01:15:57 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets
-2022-07-05 01:15:56 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources
-2022-07-05 01:15:56 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Win64
-2022-07-05 01:15:48 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents
-2022-07-05 01:15:57 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets
-2022-07-05 01:15:57 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources
-2022-07-05 01:15:57 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Win64
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents
-2022-07-05 01:15:57 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets
-2022-07-05 01:15:57 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources
-2022-07-05 01:15:57 D....            0            0  Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Win64
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\OpenColorIO
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\OpenColorIO\configs
-2022-07-05 01:16:01 D....            0            0  Vegas Pro 13.0\OpenColorIO\configs\aces
-2022-07-05 01:16:01 D....            0            0  Vegas Pro 13.0\OpenColorIO\configs\aces\luts
-2022-07-05 01:15:54 D....            0            0  Vegas Pro 13.0\Readme
-2022-07-05 01:15:54 D....            0            0  Vegas Pro 13.0\Readme\HTML_ASSETS
-2022-07-05 01:15:54 D....            0            0  Vegas Pro 13.0\Script Menu
-2022-07-05 01:15:53 D....            0            0  Vegas Pro 13.0\Standard Layouts
-2022-07-05 01:15:49 D....            0            0  Vegas Pro 13.0\Vidcap Plug-Ins
-2022-07-05 01:15:53 D....            0            0  Vegas Pro 13.0\Vidcap Plug-Ins\aviplug
-2022-07-05 01:15:53 D....            0            0  Vegas Pro 13.0\Vidcap Plug-Ins\stl2plg
-2022-07-05 01:15:56 D....            0            0  Vegas Pro 13.0\Video Hardware Drivers
-2022-07-05 01:16:03 D....            0            0  Vegas Pro 13.0\Video Plug-Ins
-2022-07-05 01:16:00 D....            0            0  Vegas Pro 13.0\x86
-2014-11-12 12:53:58 ....A          231    138669102  Vegas Pro 13.0\bdmux\BdmuxServer.exe.config
-2014-11-12 12:53:58 ....A        22181               Vegas Pro 13.0\bdmux\StatusCodeTable.xml
-2014-11-12 12:53:58 ....A         9714               Vegas Pro 13.0\bdmux\udf_image.xsd
-2014-11-12 12:45:20 ....A         1516               Vegas Pro 13.0\ErrorReportConfig.xml
-2015-06-05 17:20:05 ....A        48528               Vegas Pro 13.0\eula
-2014-11-12 12:46:06 ....A        55633               Vegas Pro 13.0\FileIO Plug-Ins\ac3plug\ac3plug.chm
-2014-11-12 12:46:08 ....A           22               Vegas Pro 13.0\FileIO Plug-Ins\ac3plug\ac3plug.zip
-2014-11-12 12:44:48 ....A       330111               Vegas Pro 13.0\FileIO Plug-Ins\ac3plug\ac3_10.udat
-2014-11-12 12:46:10 ....A        45911               Vegas Pro 13.0\FileIO Plug-Ins\aifplug\aifplug.chm
-2014-11-12 12:46:10 ....A        48096               Vegas Pro 13.0\FileIO Plug-Ins\atracplug\atracplug.chm
-2014-11-12 12:46:10 ....A        50896               Vegas Pro 13.0\FileIO Plug-Ins\aviplug\aviplug.chm
-2014-11-12 12:46:20 ....A        47259               Vegas Pro 13.0\FileIO Plug-Ins\compoundplug\compoundplug.chm
-2014-11-12 12:46:40 ....A        47640               Vegas Pro 13.0\FileIO Plug-Ins\flacplug\flacplug.chm
-2014-11-12 12:46:46 ....A        50070               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mcmp4plug2.chm
-2015-03-17 10:34:56 ....A        65260               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mcplug2.chm
-2014-11-12 12:47:02 ....A        49689               Vegas Pro 13.0\FileIO Plug-Ins\mp3plug2\mp3plug2.chm
-2014-11-12 12:47:04 ....A        51356               Vegas Pro 13.0\FileIO Plug-Ins\mp4plug3\mp4plug3.chm
-2014-11-12 12:47:38 ....A        67165               Vegas Pro 13.0\FileIO Plug-Ins\mxfhdcamsrplug\mxfhdcamsrplug.chm
-2014-11-12 12:48:16 ....A      1515445               Vegas Pro 13.0\FileIO Plug-Ins\mxfp2\mxfp2.chm
-2014-11-12 12:47:34 ....A       897024               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_enc_mp2v.001
-2014-11-12 12:47:34 ....A       897024               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_enc_mp2v.002
-2014-11-12 12:47:34 ....A      1040384               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_enc_mp2v.003
-2014-11-12 12:47:34 ....A      1122304               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_enc_mp2v.004
-2014-11-12 12:47:34 ....A        47650               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mxfplug3.chm
-2014-11-12 12:48:28 ....A      1514877               Vegas Pro 13.0\FileIO Plug-Ins\mxfxavc\mxfxavc.chm
-2014-11-12 12:48:30 ....A        47088               Vegas Pro 13.0\FileIO Plug-Ins\oggplug\oggplug.chm
-2014-11-12 12:48:32 ....A        49760               Vegas Pro 13.0\FileIO Plug-Ins\qt7plug\qt7plug.chm
-2014-11-12 12:49:08 ....A        46887               Vegas Pro 13.0\FileIO Plug-Ins\sctplug\sctplug.chm
-2014-11-12 12:49:08 ....A        46001               Vegas Pro 13.0\FileIO Plug-Ins\sfpaplug\sfpaplug.chm
-2014-11-12 12:50:32 ....A        46744               Vegas Pro 13.0\FileIO Plug-Ins\wavplug\wavplug.chm
-2014-11-12 12:50:34 ....A        50154               Vegas Pro 13.0\FileIO Plug-Ins\wmfplug4\wmfplug4.chm
-2014-11-12 12:45:10 ....A          444               Vegas Pro 13.0\gnsdk_license.txt
-2014-11-12 12:59:50 ....A         2232               Vegas Pro 13.0\Joystick Profiles\Eliminator Precision Pro Joystick.ini
-2014-11-12 12:59:50 ....A         2052               Vegas Pro 13.0\Joystick Profiles\Logitech WingMan Extreme Digital 3D (USB).ini
-2014-11-12 12:59:50 ....A         2316               Vegas Pro 13.0\Joystick Profiles\Microsoft SideWinder Force Feedback 2.ini
-2014-11-12 12:59:50 ....A         4474               Vegas Pro 13.0\Joystick Profiles\ReadMe - Joystick Profiles.txt
-2014-11-12 12:59:52 ....A          993               Vegas Pro 13.0\ngen.xml
-2014-11-12 13:01:52 ....A         3939               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources\Filters.de-DE.xml
-2014-11-12 13:01:52 ....A         3976               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources\Filters.es-ES.xml
-2014-11-12 13:01:52 ....A         3973               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources\Filters.fr-FR.xml
-2014-11-12 13:01:52 ....A         3984               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources\Filters.ja-JP.xml
-2014-11-12 13:01:52 ....A         3920               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources\Filters.pl-PL.xml
-2014-11-12 13:01:52 ....A         4192               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources\Filters.ru-RU.xml
-2014-11-12 13:01:52 ....A         3828               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources\Filters.xml
-2014-11-12 13:01:52 ....A         3770               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Resources\Filters.zh-CN.xml
-2015-06-05 16:52:18 ....A      8352568               Vegas Pro 13.0\OFX Video Plug-Ins\Filters.ofx.bundle\Contents\Win64\Filters.ofx
-2014-11-12 13:01:52 ....A        53283               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources\com.FXHOME.HitFilm.BleachBypass.png
-2014-11-12 13:01:52 ....A        69974               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources\com.FXHOME.HitFilm.LightFlares.png
-2014-11-12 13:01:52 ....A        47162               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources\com.FXHOME.HitFilm.ScanLines.png
-2014-11-12 13:01:52 ....A        43111               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources\com.FXHOME.HitFilm.ThreeStripColor.png
-2014-11-12 13:01:52 ....A       142850               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources\com.FXHOME.HitFilm.TVDamage.png
-2014-11-12 13:01:52 ....A        74956               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources\com.FXHOME.HitFilm.Vibrance.png
-2014-11-12 13:01:52 ....A        32912               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources\com.FXHOME.HitFilm.WitnessProtection.png
-2014-11-12 13:01:52 ....A      1310748               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Resources\HitFilmVegasBasic.chm
-2014-11-12 13:01:52 ....A       349304               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HFPL\BleachBypass.hfpl
-2014-11-12 13:01:52 ....A       823928               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HFPL\LightFlares.hfpl
-2014-11-12 13:01:52 ....A       390264               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HFPL\ScanLines.hfpl
-2014-11-12 13:01:52 ....A       346744               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HFPL\ThreeStripColor.hfpl
-2014-11-12 13:01:52 ....A       481400               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HFPL\TVDamage.hfpl
-2014-11-12 13:01:52 ....A       382072               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HFPL\Vibrance.hfpl
-2014-11-12 13:01:52 ....A       432248               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HFPL\WitnessProtection.hfpl
-2014-11-12 13:01:52 ....A      1243256               Vegas Pro 13.0\OFX Video Plug-Ins\HitFilmVegasBasic.ofx.bundle\Contents\Win64\HitFilmVegasBasic.ofx
-2014-11-12 13:02:20 ....A         1884               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets\PresetPackage.de-DE.xml
-2014-11-12 13:02:20 ....A         1883               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets\PresetPackage.es-ES.xml
-2014-11-12 13:02:20 ....A         1887               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets\PresetPackage.fr-FR.xml
-2014-11-12 13:02:20 ....A         1884               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets\PresetPackage.ja-JP.xml
-2014-11-12 13:02:20 ....A         1875               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets\PresetPackage.pl-PL.xml
-2014-11-12 13:02:20 ....A         1933               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets\PresetPackage.ru-RU.xml
-2014-11-12 13:02:20 ....A         1874               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets\PresetPackage.xml
-2014-11-12 13:02:20 ....A         1863               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Presets\PresetPackage.zh-CN.xml
-2014-11-12 13:02:20 ....A         3933               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources\Stabilize.de-DE.xml
-2014-11-12 13:02:20 ....A         3803               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources\Stabilize.es-ES.xml
-2014-11-12 13:02:20 ....A         3845               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources\Stabilize.fr-FR.xml
-2014-11-12 13:02:20 ....A         4394               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources\Stabilize.ja-JP.xml
-2014-11-12 13:02:20 ....A         3498               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources\Stabilize.pl-PL.xml
-2014-11-12 13:02:20 ....A         4730               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources\Stabilize.ru-RU.xml
-2014-11-12 13:02:20 ....A         3400               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources\Stabilize.xml
-2014-11-12 13:02:20 ....A         3461               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Resources\Stabilize.zh-CN.xml
-2015-06-05 16:52:18 ....A      7574840               Vegas Pro 13.0\OFX Video Plug-Ins\Stabilize.ofx.bundle\Contents\Win64\Stabilize.ofx
-2014-11-12 12:54:52 ....A        61738               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets\PresetPackage.de-DE.xml
-2014-11-12 12:54:52 ....A        61819               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets\PresetPackage.es-ES.xml
-2014-11-12 12:54:52 ....A        61710               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets\PresetPackage.fr-FR.xml
-2014-11-12 12:54:52 ....A        61977               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets\PresetPackage.ja-JP.xml
-2014-11-12 12:54:52 ....A        61792               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets\PresetPackage.pl-PL.xml
-2014-11-12 12:54:52 ....A        62241               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets\PresetPackage.ru-RU.xml
-2014-11-12 12:54:52 ....A        61531               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets\PresetPackage.xml
-2014-11-12 12:54:52 ....A        61544               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Presets\PresetPackage.zh-CN.xml
-2014-11-12 12:54:52 ....A         4505               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources\TitlesAndText.de-DE.xml
-2014-11-12 12:54:52 ....A         4594               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources\TitlesAndText.es-ES.xml
-2014-11-12 12:54:52 ....A         4624               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources\TitlesAndText.fr-FR.xml
-2014-11-12 12:54:52 ....A         4685               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources\TitlesAndText.ja-JP.xml
-2014-11-12 12:54:52 ....A         4542               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources\TitlesAndText.pl-PL.xml
-2014-11-12 12:54:52 ....A         4801               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources\TitlesAndText.ru-RU.xml
-2014-11-12 12:54:52 ....A         4494               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources\TitlesAndText.xml
-2014-11-12 12:54:52 ....A         4465               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Resources\TitlesAndText.zh-CN.xml
-2015-06-05 16:52:18 ....A       380216               Vegas Pro 13.0\OFX Video Plug-Ins\TitlesAndText.ofx.bundle\Contents\Win64\TitlesAndText.ofx
-2014-11-12 13:02:00 ....A       698723               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets\PresetPackage.de-DE.xml
-2014-11-12 13:02:00 ....A       699812               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets\PresetPackage.es-ES.xml
-2014-11-12 13:02:00 ....A       699390               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets\PresetPackage.fr-FR.xml
-2014-11-12 13:02:00 ....A       700853               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets\PresetPackage.ja-JP.xml
-2014-11-12 13:02:00 ....A       699813               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets\PresetPackage.pl-PL.xml
-2014-11-12 13:02:00 ....A       711431               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets\PresetPackage.ru-RU.xml
-2014-11-12 13:02:00 ....A       696057               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets\PresetPackage.xml
-2014-11-12 13:02:00 ....A       695736               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Presets\PresetPackage.zh-CN.xml
-2014-11-12 13:02:18 ....A       187785               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources\Vfx1.de-DE.xml
-2014-11-12 13:02:18 ....A       188571               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources\Vfx1.es-ES.xml
-2014-11-12 13:02:18 ....A       188753               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources\Vfx1.fr-FR.xml
-2014-11-12 13:02:18 ....A       191396               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources\Vfx1.ja-JP.xml
-2014-11-12 13:02:18 ....A       189071               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources\Vfx1.pl-PL.xml
-2014-11-12 13:02:18 ....A       202841               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources\Vfx1.ru-RU.xml
-2014-11-12 13:02:18 ....A       186372               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources\Vfx1.xml
-2014-11-12 13:02:18 ....A       185797               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Resources\Vfx1.zh-CN.xml
-2015-06-05 16:52:22 ....A     13706040               Vegas Pro 13.0\OFX Video Plug-Ins\Vfx1.ofx.bundle\Contents\Win64\Vfx1.ofx
-2014-11-12 12:59:52 ....A         6681               Vegas Pro 13.0\OpenColorIO\configs\aces\config_1_0_3.ocio
-2014-11-12 12:59:52 ....A           77               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\adx_adx10_to_cdd.spimtx
-2014-11-12 12:59:52 ....A           86               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\adx_adx16_to_cdd.spimtx
-2014-11-12 12:59:52 ....A           84               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\adx_cdd_to_cid.spimtx
-2014-11-12 12:59:52 ....A        97048               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\adx_cid_to_rle.spi1d
-2014-11-12 12:59:52 ....A           83               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\adx_exp_to_aces.spimtx
-2014-11-12 12:59:52 ....A       394660               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\logc800.spi1d
-2014-11-12 12:59:52 ....A           94               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\logc_to_aces.spimtx
-2014-11-12 12:59:52 ....A      1103215               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\rrt_ut33_dcdm.spi3d
-2014-11-12 12:59:52 ....A       862848               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\rrt_ut33_p3d60.spi3d
-2014-11-12 12:59:52 ....A       855325               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\rrt_ut33_p3dci.spi3d
-2014-11-12 12:59:52 ....A       766046               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\rrt_ut33_rec709.spi3d
-2014-11-12 12:59:52 ....A       767989               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\rrt_ut33_sRGB.spi3d
-2014-11-12 12:59:52 ....A        49393               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\slog10.spi1d
-2014-11-12 12:59:52 ....A       393276               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\slog2.spi1d
-2014-11-12 12:59:52 ....A          121               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\slogf35_to_aces.spimtx
-2014-11-12 12:59:52 ....A          134               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\slogf65_to_aces_3200.spimtx
-2014-11-12 12:59:52 ....A          130               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\slogf65_to_aces_5500.spimtx
-2014-11-12 12:59:52 ....A           52               Vegas Pro 13.0\OpenColorIO\configs\aces\luts\ten_bit_scale.spimtx
-2014-11-12 12:58:50 ....A           43               Vegas Pro 13.0\Readme\HTML_ASSETS\-.gif
-2014-11-12 12:58:50 ....A         1228               Vegas Pro 13.0\Readme\HTML_ASSETS\acidplanet.gif
-2014-11-12 12:58:50 ....A           51               Vegas Pro 13.0\Readme\HTML_ASSETS\b-urt.gif
-2014-11-12 12:58:50 ....A          152               Vegas Pro 13.0\Readme\HTML_ASSETS\bar-bg.gif
-2014-11-12 12:58:50 ....A          271               Vegas Pro 13.0\Readme\HTML_ASSETS\bar-l.gif
-2014-11-12 12:58:50 ....A          279               Vegas Pro 13.0\Readme\HTML_ASSETS\bar-r.gif
-2014-11-12 12:58:50 ....A           51               Vegas Pro 13.0\Readme\HTML_ASSETS\bbg.gif
-2014-11-12 12:58:50 ....A           89               Vegas Pro 13.0\Readme\HTML_ASSETS\bl.gif
-2014-11-12 12:58:50 ....A          117               Vegas Pro 13.0\Readme\HTML_ASSETS\br.gif
-2014-11-12 12:58:50 ....A          887               Vegas Pro 13.0\Readme\HTML_ASSETS\cd.gif
-2014-11-12 12:58:50 ....A         4004               Vegas Pro 13.0\Readme\HTML_ASSETS\extras-banner.jpg
-2014-11-12 12:58:50 ....A        13341               Vegas Pro 13.0\Readme\HTML_ASSETS\extras-banner_jpn.jpg
-2014-11-12 12:58:50 ....A         1613               Vegas Pro 13.0\Readme\HTML_ASSETS\fonts.css
-2014-11-12 12:58:50 ....A           51               Vegas Pro 13.0\Readme\HTML_ASSETS\lbg.gif
-2014-11-12 12:58:50 ....A          963               Vegas Pro 13.0\Readme\HTML_ASSETS\note.gif
-2014-11-12 12:58:50 ....A           98               Vegas Pro 13.0\Readme\HTML_ASSETS\p-bl.gif
-2014-11-12 12:58:50 ....A           68               Vegas Pro 13.0\Readme\HTML_ASSETS\p-br.gif
-2014-11-12 12:58:50 ....A           70               Vegas Pro 13.0\Readme\HTML_ASSETS\p-tl.gif
-2014-11-12 12:58:50 ....A           70               Vegas Pro 13.0\Readme\HTML_ASSETS\p-tr.gif
-2014-11-12 12:58:50 ....A           51               Vegas Pro 13.0\Readme\HTML_ASSETS\rbg.gif
-2014-11-12 12:58:50 ....A         3686               Vegas Pro 13.0\Readme\HTML_ASSETS\release-banner.jpg
-2014-11-12 12:58:50 ....A        18675               Vegas Pro 13.0\Readme\HTML_ASSETS\release-banner_chs.jpg
-2014-11-12 12:58:50 ....A        12838               Vegas Pro 13.0\Readme\HTML_ASSETS\release-banner_deu.jpg
-2014-11-12 12:58:50 ....A         3081               Vegas Pro 13.0\Readme\HTML_ASSETS\release-banner_esp.jpg
-2014-11-12 12:58:50 ....A        12742               Vegas Pro 13.0\Readme\HTML_ASSETS\release-banner_fra.jpg
-2014-11-12 12:58:50 ....A        12124               Vegas Pro 13.0\Readme\HTML_ASSETS\release-banner_jpn.jpg
-2014-11-12 12:58:50 ....A        14219               Vegas Pro 13.0\Readme\HTML_ASSETS\release-banner_plk.jpg
-2014-11-12 12:58:50 ....A         3015               Vegas Pro 13.0\Readme\HTML_ASSETS\release-banner_rus.jpg
-2014-11-12 12:58:50 ....A         1493               Vegas Pro 13.0\Readme\HTML_ASSETS\softwaresolutions.gif
-2014-11-12 12:58:50 ....A         1236               Vegas Pro 13.0\Readme\HTML_ASSETS\solutionstag.gif
-2014-11-12 12:58:50 ....A         1369               Vegas Pro 13.0\Readme\HTML_ASSETS\solutionstag_chs.gif
-2014-11-12 12:58:50 ....A         1417               Vegas Pro 13.0\Readme\HTML_ASSETS\solutionstag_deu.gif
-2014-11-12 12:58:50 ....A         1494               Vegas Pro 13.0\Readme\HTML_ASSETS\solutionstag_esp.gif
-2014-11-12 12:58:50 ....A         1517               Vegas Pro 13.0\Readme\HTML_ASSETS\solutionstag_fra.gif
-2014-11-12 12:58:50 ....A         1230               Vegas Pro 13.0\Readme\HTML_ASSETS\solutionstag_jpn.gif
-2014-11-12 12:58:50 ....A         1589               Vegas Pro 13.0\Readme\HTML_ASSETS\solutionstag_plk.gif
-2014-11-12 12:58:50 ....A          505               Vegas Pro 13.0\Readme\HTML_ASSETS\solutionstag_rus.gif
-2014-11-12 12:58:50 ....A         1429               Vegas Pro 13.0\Readme\HTML_ASSETS\sony.gif
-2014-11-12 12:58:50 ....A          701               Vegas Pro 13.0\Readme\HTML_ASSETS\sonylogo.gif
-2014-11-12 12:58:50 ....A         1279               Vegas Pro 13.0\Readme\HTML_ASSETS\sonysoundseries.gif
-2014-11-12 12:58:50 ....A         1287               Vegas Pro 13.0\Readme\HTML_ASSETS\sonyvisionseries.gif
-2014-11-12 12:58:50 ....A          153               Vegas Pro 13.0\Readme\HTML_ASSETS\tbg.gif
-2014-11-12 12:58:50 ....A          271               Vegas Pro 13.0\Readme\HTML_ASSETS\tl.gif
-2014-11-12 12:58:50 ....A          278               Vegas Pro 13.0\Readme\HTML_ASSETS\tr.gif
-2015-06-05 16:16:04 ....A        28019               Vegas Pro 13.0\Readme\Vegas_readme.htm
-2014-11-12 12:59:52 ....A         1678               Vegas Pro 13.0\Release-x64.fio2007-config
-2014-11-12 13:00:20 ....A         1725               Vegas Pro 13.0\Script Menu\Add Timecode to all Media.cs
-2014-11-12 13:00:20 ....A        23808               Vegas Pro 13.0\Script Menu\Batch Render.cs
-2014-11-12 13:00:20 ....A         5953               Vegas Pro 13.0\Script Menu\Export Chapters.cs
-2014-11-12 13:00:20 ....A         8647               Vegas Pro 13.0\Script Menu\Export Closed Captioning for DVD Architect.cs
-2014-11-12 13:00:20 ....A        11773               Vegas Pro 13.0\Script Menu\Export Closed Captioning for QuickTime.cs
-2014-11-12 13:00:20 ....A        13129               Vegas Pro 13.0\Script Menu\Export Closed Captioning for Windows Media Player.cs
-2014-11-12 13:00:20 ....A         8592               Vegas Pro 13.0\Script Menu\Export Closed Captioning for YouTube.cs
-2014-11-12 13:00:20 ....A         7506               Vegas Pro 13.0\Script Menu\Export EDL.js
-2014-11-12 13:00:20 ....A         6285               Vegas Pro 13.0\Script Menu\Export Regions as Subtitles.cs
-2014-11-12 13:00:20 ....A         4457               Vegas Pro 13.0\Script Menu\Promote Media Closed Captioning.cs
-2014-11-12 13:00:20 ....A         3462               Vegas Pro 13.0\Script Menu\Promote Media Markers.cs
-2014-11-12 13:00:20 ....A         4966               Vegas Pro 13.0\Script Menu\Remove Letterboxing.cs
-2014-11-12 13:00:20 ....A         1091               Vegas Pro 13.0\Script Menu\Remove Timecode from all Media.cs
-2014-11-12 13:00:20 ....A         9702               Vegas Pro 13.0\Script Menu\Render Audio Tracks.cs
-2014-11-12 13:00:20 ....A         2143               Vegas Pro 13.0\Script Menu\Resize Generated Media.cs
-2014-11-12 13:00:20 ....A         4257               Vegas Pro 13.0\Script Menu\Stereo to Mono.cs
-2014-11-12 12:45:10 ....A       185764               Vegas Pro 13.0\sfcdix.cfg
-2014-11-12 12:59:54 ....A        12004               Vegas Pro 13.0\Sony - Vegas Pro 12 -- ShuttlePRO v2.pref
-2014-11-12 12:59:54 ....A        12004               Vegas Pro 13.0\Sony - Vegas Pro 12 -- ShuttlePRO.pref
-2014-11-12 12:59:54 ....A        12004               Vegas Pro 13.0\Sony - Vegas Pro 12 -- ShuttleXpress.pref
-2006-04-04 13:40:10 ....A        12004               Vegas Pro 13.0\Sony Video Capture - ShuttlePRO v2.pref
-2006-04-04 13:40:10 ....A        12004               Vegas Pro 13.0\Sony Video Capture - ShuttlePRO.pref
-2006-04-04 13:40:10 ....A        12004               Vegas Pro 13.0\Sony Video Capture - ShuttleXpress.pref
-2014-11-12 12:59:54 ....A         1871               Vegas Pro 13.0\Standard Layouts\Audio Mixing.VegasWindowLayout
-2014-11-12 12:59:54 ....A         1866               Vegas Pro 13.0\Standard Layouts\Color Correction.VegasWindowLayout
-2014-11-12 12:59:54 ....A         5189               Vegas Pro 13.0\Standard Layouts\Default Expanded Edit Mode.VegasWindowLayout
-2014-11-12 13:01:42 ....A     25482384               Vegas Pro 13.0\vegas.tut
-2014-11-12 13:01:48 ....A          470               Vegas Pro 13.0\vegas130.exe.config
-2014-11-12 13:01:50 ....A          346               Vegas Pro 13.0\vegas130.oemdat
-2015-06-05 17:20:05 ....A       330111               Vegas Pro 13.0\vegas130.udat
-2014-11-12 13:01:50 ....A          179               Vegas Pro 13.0\vegas130.zip
-2014-11-12 13:01:42 ....A     25718684               Vegas Pro 13.0\vegasdeu.tut
-2014-11-12 13:01:42 ....A     25622884               Vegas Pro 13.0\vegasesp.tut
-2014-11-12 13:01:42 ....A     25701587               Vegas Pro 13.0\vegasfra.tut
-2014-11-12 13:01:44 ....A     25739657               Vegas Pro 13.0\vegasjpn.tut
-2007-07-10 02:01:16 ....A        48392               Vegas Pro 13.0\vidcap6.tut
-2008-08-07 10:16:30 ....A        71050               Vegas Pro 13.0\VIDCAP60.hlp
-2006-04-04 13:40:10 ....A        95338               Vegas Pro 13.0\vidcap60.udat
-2014-11-12 12:45:28 ....A         2219               Vegas Pro 13.0\Video Hardware Drivers\DVIEffect.fx
-2014-11-12 12:45:28 ....A         1740               Vegas Pro 13.0\Video Hardware Drivers\DVIEffect.fxo
-2014-11-12 12:59:52 ....A      3034112     74519189  Vegas Pro 13.0\AAFCOAPI.dll
-2015-06-05 16:51:44 ....A        29496               Vegas Pro 13.0\AjaVideoProperties.dll
-2015-06-05 16:52:24 ....A      4856632               Vegas Pro 13.0\ApplicationRegistration.exe
-2015-06-05 16:51:48 ....A      2839864               Vegas Pro 13.0\Audio Hardware Drivers\extvid_drv.dll
-2015-06-05 16:51:18 ....A      3109688               Vegas Pro 13.0\Audio Hardware Drivers\sfasio.dll
-2015-06-05 16:51:32 ....A      2921272               Vegas Pro 13.0\Audio Hardware Drivers\sfdsound.dll
-2015-06-05 16:51:20 ....A        11576               Vegas Pro 13.0\bdmux\BdmuxInterface.dll
-2015-06-05 16:51:20 ....A        14648               Vegas Pro 13.0\bdmux\BdmuxServer.exe
-2015-06-05 16:51:20 ....A        66872               Vegas Pro 13.0\bdmux\ErrorReport.dll
-2015-06-05 16:51:22 ....A      2476856               Vegas Pro 13.0\bdmux\Ess.dll
-2014-11-12 12:53:58 ....A       135168               Vegas Pro 13.0\bdmux\Mux.net.dll
-2015-06-05 16:51:22 ....A        70456               Vegas Pro 13.0\bdmux\sfibdmux.dll
-2015-06-05 16:51:22 ....A      2966328               Vegas Pro 13.0\bdmux\sfsbdmux.dll
-2015-06-05 16:51:24 ....A      1096504               Vegas Pro 13.0\bdmux\sfwbdmux.dll
-2014-11-12 12:53:58 ....A        20480               Vegas Pro 13.0\bdmux\Vegmuxdh.dll
-2014-11-12 12:53:58 ....A       280064               Vegas Pro 13.0\bdmux\Vegmuxdw.dll
-2014-11-12 12:53:58 ....A        87552               Vegas Pro 13.0\bdmux\Vegmuxfa.dll
-2014-11-12 12:53:58 ....A       306176               Vegas Pro 13.0\bdmux\Vegmuxfb.dll
-2014-11-12 12:53:58 ....A        44032               Vegas Pro 13.0\bdmux\vegmuxfc.dll
-2014-11-12 12:53:58 ....A       414208               Vegas Pro 13.0\bdmux\Vegmuxfo.dll
-2014-11-12 12:53:58 ....A        53248               Vegas Pro 13.0\bdmux\Vegmuxmc.dll
-2014-11-12 12:53:58 ....A        24576               Vegas Pro 13.0\bdmux\Vegmuxrt.dll
-2014-11-12 12:53:58 ....A       481280               Vegas Pro 13.0\bdmux\Vegmuxtw.dll
-2015-06-05 16:52:54 ....A        33592               Vegas Pro 13.0\ControlLibrary.dll
-2015-06-05 16:52:54 ....A      3154232               Vegas Pro 13.0\CoreGraphics.Native.dll
-2015-06-05 16:52:56 ....A        42808               Vegas Pro 13.0\CorePrimitives.dll
-2015-06-05 16:52:56 ....A       118072               Vegas Pro 13.0\CoreUI.dll
-2015-06-05 16:52:56 ....A       311096               Vegas Pro 13.0\CoreUI.XmlSerializers.dll
-2015-06-05 16:51:38 ....A        31032               Vegas Pro 13.0\CreateMinidumpx64.exe
-2014-11-12 12:58:18 ....A      1337160               Vegas Pro 13.0\dbghelp.dll
-2015-06-05 16:51:44 ....A        13624               Vegas Pro 13.0\de\AjaVideoProperties.resources.dll
-2015-06-05 16:51:58 ....A        26424               Vegas Pro 13.0\de\MediaMgrNgen.resources.dll
-2015-06-05 16:52:00 ....A        21304               Vegas Pro 13.0\de\MediaMgrSqlWrapper.resources.dll
-2015-06-05 16:51:36 ....A        45368               Vegas Pro 13.0\de\PRSConfig.resources.dll
-2015-06-05 16:52:40 ....A        31032               Vegas Pro 13.0\de\Sony.Capture.resources.dll
-2015-06-05 16:51:16 ....A        15160               Vegas Pro 13.0\de\Sony.MediaSoftware.Archive.resources.dll
-2015-06-05 16:52:42 ....A        63800               Vegas Pro 13.0\de\Sony.MediaSoftware.clrshared.resources.dll
-2015-06-05 16:52:44 ....A        86840               Vegas Pro 13.0\de\Sony.MediaSoftware.DeviceExp.resources.dll
-2015-06-05 16:51:50 ....A        14648               Vegas Pro 13.0\de\Sony.MediaSoftware.FileExplorer.resources.dll
-2015-06-05 16:52:00 ....A       781624               Vegas Pro 13.0\de\Sony.MediaSoftware.MediaMgr.resources.dll
-2015-06-05 16:52:58 ....A        28984               Vegas Pro 13.0\de\Sony.MediaSoftware.TextGen.CoreGraphics.resources.dll
-2015-06-05 16:52:20 ....A        13624               Vegas Pro 13.0\de\Sony.MediaSoftware.TextGen.OFXInterop.resources.dll
-2015-06-05 16:53:06 ....A       175928               Vegas Pro 13.0\de\Sony.MediaSoftware.VideoEffectsUI.resources.dll
-2015-06-05 16:53:14 ....A       212792               Vegas Pro 13.0\de\Sony.MediaSoftware.XDCAMExp.resources.dll
-2015-06-05 16:52:08 ....A        10552               Vegas Pro 13.0\de\Sony.Monitor3D.resources.dll
-2015-06-05 16:52:04 ....A        15672               Vegas Pro 13.0\de\Sony.Vegas.MobileSync.resources.dll
-2015-06-05 16:52:48 ....A        19256               Vegas Pro 13.0\de\Sony.Vegas.Publish.Resources.dll
-2015-06-05 16:52:50 ....A        28984               Vegas Pro 13.0\de\Sony.Vegas.resources.dll
-2015-06-05 16:53:12 ....A        15160               Vegas Pro 13.0\de\WidgetLibrary.resources.dll
-2015-06-05 16:51:48 ....A        27448               Vegas Pro 13.0\DecklinkVideoProperties.dll
-2015-06-05 16:51:56 ....A      2857272               Vegas Pro 13.0\discdrv.dll
-2015-06-05 16:51:34 ....A        78648               Vegas Pro 13.0\ErrorReport.dll
-2015-06-05 16:51:34 ....A      7975736               Vegas Pro 13.0\ErrorReportClient.exe
-2015-06-05 16:51:34 ....A        25400               Vegas Pro 13.0\ErrorReportLauncher.exe
-2015-06-05 16:51:46 ....A        13624               Vegas Pro 13.0\es\AjaVideoProperties.resources.dll
-2015-06-05 16:52:00 ....A        26424               Vegas Pro 13.0\es\MediaMgrNgen.resources.dll
-2015-06-05 16:52:00 ....A        20280               Vegas Pro 13.0\es\MediaMgrSqlWrapper.resources.dll
-2015-06-05 16:51:36 ....A        45368               Vegas Pro 13.0\es\PRSConfig.resources.dll
-2015-06-05 16:52:40 ....A        31544               Vegas Pro 13.0\es\Sony.Capture.resources.dll
-2015-06-05 16:51:16 ....A        15160               Vegas Pro 13.0\es\Sony.MediaSoftware.Archive.resources.dll
-2015-06-05 16:52:42 ....A        63800               Vegas Pro 13.0\es\Sony.MediaSoftware.clrshared.resources.dll
-2015-06-05 16:52:44 ....A        86840               Vegas Pro 13.0\es\Sony.MediaSoftware.DeviceExp.resources.dll
-2015-06-05 16:51:50 ....A        14648               Vegas Pro 13.0\es\Sony.MediaSoftware.FileExplorer.resources.dll
-2015-06-05 16:52:02 ....A       700728               Vegas Pro 13.0\es\Sony.MediaSoftware.MediaMgr.resources.dll
-2015-06-05 16:52:58 ....A        29496               Vegas Pro 13.0\es\Sony.MediaSoftware.TextGen.CoreGraphics.resources.dll
-2015-06-05 16:52:20 ....A        13624               Vegas Pro 13.0\es\Sony.MediaSoftware.TextGen.OFXInterop.resources.dll
-2015-06-05 16:53:08 ....A       175928               Vegas Pro 13.0\es\Sony.MediaSoftware.VideoEffectsUI.resources.dll
-2015-06-05 16:53:14 ....A       212792               Vegas Pro 13.0\es\Sony.MediaSoftware.XDCAMExp.resources.dll
-2015-06-05 16:52:10 ....A        10552               Vegas Pro 13.0\es\Sony.Monitor3D.resources.dll
-2015-06-05 16:52:06 ....A        15672               Vegas Pro 13.0\es\Sony.Vegas.MobileSync.resources.dll
-2015-06-05 16:52:48 ....A        19256               Vegas Pro 13.0\es\Sony.Vegas.Publish.Resources.dll
-2015-06-05 16:52:26 ....A        12600               Vegas Pro 13.0\es\Sony.Vegas.RelinkSonyWirelessAdapterMedia.resources.dll
-2015-06-05 16:52:50 ....A        29496               Vegas Pro 13.0\es\Sony.Vegas.resources.dll
-2015-06-05 16:53:12 ....A        15160               Vegas Pro 13.0\es\WidgetLibrary.resources.dll
-2015-06-05 16:52:28 ....A      2627896               Vegas Pro 13.0\eula.dll
-2015-06-05 16:51:40 ....A      4956984               Vegas Pro 13.0\External Control Drivers\faderport.dll
-2015-06-05 16:51:40 ....A      3792696               Vegas Pro 13.0\External Control Drivers\networkXML.dll
-2015-06-05 16:51:42 ....A      9572152               Vegas Pro 13.0\External Control Drivers\spconsoleopt.dll
-2015-06-05 16:51:42 ....A      5402424               Vegas Pro 13.0\External Control Drivers\spgenctrlopt.dll
-2015-06-05 16:51:42 ....A      5224760               Vegas Pro 13.0\External Control Drivers\spmackiectrlopt.dll
-2015-06-05 16:51:44 ....A      3398456               Vegas Pro 13.0\External Control Drivers\tranzport.dll
-2015-06-05 16:51:24 ....A      2634040               Vegas Pro 13.0\fargo.pdd.dll
-2015-06-05 16:51:54 ....A      8111416               Vegas Pro 13.0\ffplugsk64.dll
-2015-06-05 16:51:12 ....A      3624760               Vegas Pro 13.0\FileIO Plug-Ins\ac3plug\ac3market\ApplicationRegistration.exe
-2015-06-05 16:51:12 ....A        78648               Vegas Pro 13.0\FileIO Plug-Ins\ac3plug\ac3market\ErrorReport.dll
-2015-06-05 16:51:14 ....A      2450744               Vegas Pro 13.0\FileIO Plug-Ins\ac3plug\ac3market\sfmarket2.dll
-2015-06-05 16:51:12 ....A      5494072               Vegas Pro 13.0\FileIO Plug-Ins\ac3plug\ac3plug.dll
-2015-06-05 16:51:14 ....A      5148472               Vegas Pro 13.0\FileIO Plug-Ins\ac3studioplug\ac3studioplug.dll
-2015-06-05 16:51:14 ....A      6160696               Vegas Pro 13.0\FileIO Plug-Ins\aifplug\aifplug.dll
-2015-06-05 16:51:18 ....A      1034040               Vegas Pro 13.0\FileIO Plug-Ins\atracplug\atracplug.dll
-2015-06-05 16:51:20 ....A       630584               Vegas Pro 13.0\FileIO Plug-Ins\aviplug\aviplug.dll
-2015-06-05 16:51:32 ....A      9289528               Vegas Pro 13.0\FileIO Plug-Ins\compoundplug\compoundplug.dll
-2014-11-12 12:45:32 ....A       508848               Vegas Pro 13.0\FileIO Plug-Ins\compoundplug\mc_dec_aac.dll
-2015-05-21 17:35:34 ....A      2447144               Vegas Pro 13.0\FileIO Plug-Ins\compoundplug\mc_dec_avc.dll
-2014-11-12 12:45:42 ....A       573360               Vegas Pro 13.0\FileIO Plug-Ins\compoundplug\mc_dec_mp2v.dll
-2014-11-12 12:45:38 ....A       853424               Vegas Pro 13.0\FileIO Plug-Ins\compoundplug\mc_demux_mp4.dll
-2014-11-12 12:45:42 ....A       979376               Vegas Pro 13.0\FileIO Plug-Ins\compoundplug\mc_enc_mp2v.dll
-2014-11-12 12:45:42 ....A      1052592               Vegas Pro 13.0\FileIO Plug-Ins\compoundplug\mc_mfimport.dll
-2015-06-05 16:51:54 ....A       421176               Vegas Pro 13.0\FileIO Plug-Ins\flacplug\flacplug.dll
-2015-06-05 16:51:56 ....A        85304               Vegas Pro 13.0\FileIO Plug-Ins\gifplug\gifplug.dll
-2015-06-05 16:51:58 ....A      1131832               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mcmp4plug2.dll
-2014-11-12 12:46:44 ....A       120136               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cpu\mc_config_avc.dll
-2014-11-12 12:46:44 ....A       505672               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cpu\mc_dec_aac.dll
-2014-11-12 12:46:44 ....A      2594632               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cpu\mc_dec_avc.dll
-2014-11-12 12:46:44 ....A       326984               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cpu\mc_enc_aac.dll
-2014-11-12 12:46:44 ....A      2619168               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cpu\mc_enc_avc.dll
-2014-11-12 12:46:46 ....A       144712               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cuda\mc_config_avc.dll
-2014-11-12 12:46:46 ....A      1810248               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_cuda\mc_enc_avc_cuda.dll
-2014-11-12 12:46:48 ....A       119296               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_open_cl\mc_config_avc.dll
-2014-11-12 12:46:48 ....A     25898496               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4plug2\mc_open_cl\mc_enc_avc_ocl.dll
-2015-06-05 16:51:58 ....A       570168               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mcmp4xavcs.dll
-2014-11-12 12:46:50 ....A       131872               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_cpu\mc_config_avc.dll
-2014-11-12 12:46:50 ....A       328480               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_cpu\mc_enc_aac.dll
-2014-11-12 12:46:50 ....A      2601248               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_cpu\mc_enc_avc.dll
-2014-11-12 12:46:52 ....A       139264               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_cuda\mc_config_avc_cuda.dll
-2014-11-12 12:46:52 ....A      1612288               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_cuda\mc_enc_avc_cuda.dll
-2014-11-12 12:46:56 ....A       121184               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_open_cl\mc_config_avc_opencl.dll
-2014-11-12 12:46:58 ....A     72972640               Vegas Pro 13.0\FileIO Plug-Ins\mcmp4xavcs\mc_open_cl\mc_enc_avc_ocl.dll
-2015-06-05 16:51:58 ....A      5231416               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mcplug2.dll
-2014-11-12 12:45:42 ....A       115120               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_config_mp2m.dll
-2014-11-12 12:45:42 ....A       122288               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_config_mp2v.dll
-2014-11-12 12:45:42 ....A       113584               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_config_mpa.dll
-2014-11-12 12:47:00 ....A       187904               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_dec_dd.dll
-2014-11-12 12:45:42 ....A       573360               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_dec_mp2v.dll
-2014-11-12 12:47:00 ....A       134984               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_dec_mpa.dll
-2014-11-12 12:45:42 ....A       690608               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_demux_mp2.dll
-2014-11-12 12:45:42 ....A       853424               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_demux_mp4.dll
-2014-11-12 12:45:42 ....A       300976               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_demux_mxf.dll
-2014-11-12 12:45:42 ....A       104368               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_enc_mp2sr.dll
-2014-11-12 12:45:42 ....A       979376               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_enc_mp2v.dll
-2014-11-12 12:45:42 ....A       270256               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_enc_mpa.dll
-2014-11-12 12:45:42 ....A        83376               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_enc_pcm.dll
-2014-11-12 12:45:42 ....A      1052592               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_mfimport.dll
-2014-11-12 12:45:42 ....A       918448               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_mux_mp2.dll
-2014-11-12 12:45:42 ....A      1427376               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_mux_mp4.dll
-2014-11-12 12:45:42 ....A       981424               Vegas Pro 13.0\FileIO Plug-Ins\mcplug2\mc_mux_mxf.dll
-2015-06-05 16:52:10 ....A       972088               Vegas Pro 13.0\FileIO Plug-Ins\mp3plug2\mp3plug2.dll
-2015-06-05 16:52:12 ....A      1592632               Vegas Pro 13.0\FileIO Plug-Ins\mp4plug3\mp4plug3.dll
-2014-11-12 12:47:18 ....A      3531776               Vegas Pro 13.0\FileIO Plug-Ins\mp4plug3\savce.dll
-2014-11-12 12:47:18 ....A       540672               Vegas Pro 13.0\FileIO Plug-Ins\mp4plug3\sgcudme.dll
-2014-11-12 12:47:18 ....A       159232               Vegas Pro 13.0\FileIO Plug-Ins\mp4plug3\sgocldme.dll
-2014-11-12 12:47:20 ....A       109056               Vegas Pro 13.0\FileIO Plug-Ins\mp4plug3\sgpuclb.dll
-2015-06-05 16:52:12 ....A      5396280               Vegas Pro 13.0\FileIO Plug-Ins\mvcplug\mvcplug.dll
-2014-11-12 12:47:32 ....A       910848               Vegas Pro 13.0\FileIO Plug-Ins\mvcplug\sonyjvtd.dll
-2014-11-12 12:47:56 ....A      1035264               Vegas Pro 13.0\FileIO Plug-Ins\mxfhdcamsrplug\mp4decoder_dll.dll
-2014-11-12 12:47:56 ....A      1880576               Vegas Pro 13.0\FileIO Plug-Ins\mxfhdcamsrplug\mp4encoder_dll.dll
-2015-06-05 16:52:12 ....A       473400               Vegas Pro 13.0\FileIO Plug-Ins\mxfhdcamsrplug\mxfhdcamsrplug.dll
-2014-11-12 12:51:14 ....A      2084352               Vegas Pro 13.0\FileIO Plug-Ins\mxfhdcamsrplug\SMDK-VC110-x64-4_0_0.dll
-2014-11-12 12:45:36 ....A      1576880               Vegas Pro 13.0\FileIO Plug-Ins\mxfp2\mc_bc_dec_avc.dll
-2014-11-12 12:45:36 ....A      1773488               Vegas Pro 13.0\FileIO Plug-Ins\mxfp2\mc_bc_enc_avc.dll
-2014-11-12 12:48:16 ....A       510792               Vegas Pro 13.0\FileIO Plug-Ins\mxfp2\mc_dec_dv100.dll
-2015-06-05 16:52:12 ....A      6586168               Vegas Pro 13.0\FileIO Plug-Ins\mxfp2\mxfp2.dll
-2015-06-05 15:26:06 ....A      4546560               Vegas Pro 13.0\FileIO Plug-Ins\mxfp2\SMDK-VC110-x64-4_0_0_scs.dll
-2015-06-05 16:52:14 ....A       495928               Vegas Pro 13.0\FileIO Plug-Ins\mxfp2\smdkwrap_p2.dll
-2014-11-12 12:47:34 ....A       114688               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_config_mp2m.dll
-2014-11-12 12:47:34 ....A       122880               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_config_mp2v.dll
-2014-11-12 12:47:34 ....A       110592               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_config_mpa.dll
-2014-11-12 12:47:34 ....A      1896448               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_dec_mp2v.dll
-2014-11-12 12:47:34 ....A       151552               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_dec_mpa.dll
-2014-11-12 12:47:34 ....A       491520               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_demux_mp2.dll
-2014-11-12 12:47:34 ....A       299008               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_demux_mp4.dll
-2014-11-12 12:47:34 ....A       229376               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_demux_mxf.dll
-2014-11-12 12:47:34 ....A       106496               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_enc_mp2sr.dll
-2014-11-12 12:47:34 ....A        73728               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_enc_mp2v.dll
-2014-11-12 12:47:34 ....A       274432               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_enc_mpa.dll
-2014-11-12 12:47:34 ....A        81920               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_enc_pcm.dll
-2014-11-12 12:47:34 ....A       598016               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_mfimport.dll
-2014-11-12 12:47:34 ....A       630784               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_mux_mp2.dll
-2014-11-12 12:47:34 ....A       487424               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_mux_mp4.dll
-2014-11-12 12:47:34 ....A       475136               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mc_mux_mxf.dll
-2015-06-05 16:52:16 ....A      5237048               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\mxfplug.dll
-2014-11-12 12:51:16 ....A      1455616               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\SMDK-VC110-x86-4_0_0.dll
-2015-06-05 16:52:16 ....A       309048               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\smdkwrap.dll
-2014-11-12 12:47:34 ....A       221184               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug\sonymvd4.dll
-2014-11-12 12:47:36 ....A       131584               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_config_mp2m.dll
-2014-11-12 12:47:36 ....A       138752               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_config_mp2v.dll
-2014-11-12 12:47:36 ....A       130048               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_config_mpa.dll
-2014-11-12 12:47:36 ....A      2677248               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_dec_mp2v.dll
-2014-11-12 12:47:36 ....A       140800               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_dec_mpa.dll
-2014-11-12 12:47:36 ....A       623104               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_demux_mp2.dll
-2014-11-12 12:47:36 ....A       388096               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_demux_mp4.dll
-2014-11-12 12:47:36 ....A       275456               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_demux_mxf.dll
-2014-11-12 12:47:36 ....A       110080               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_enc_mp2sr.dll
-2014-11-12 12:47:36 ....A      1198080               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_enc_mp2v.dll
-2014-11-12 12:47:36 ....A       253952               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_enc_mpa.dll
-2014-11-12 12:47:36 ....A        81408               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_enc_pcm.dll
-2014-11-12 12:47:36 ....A       665600               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_mfimport.dll
-2014-11-12 12:47:36 ....A       776192               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_mux_mp2.dll
-2014-11-12 12:47:36 ....A       713216               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_mux_mp4.dll
-2014-11-12 12:47:36 ....A       684032               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mc_mux_mxf.dll
-2015-06-05 16:52:14 ....A      6527800               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\mxfplug3.dll
-2015-06-05 15:26:06 ....A      4546560               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\SMDK-VC110-x64-4_0_0_scs.dll
-2015-06-05 16:52:14 ....A       390456               Vegas Pro 13.0\FileIO Plug-Ins\mxfplug3\smdkwrap3.dll
-2015-01-13 12:21:36 ....A      3005736               Vegas Pro 13.0\FileIO Plug-Ins\mxfxavc\mc_bc_dec_avc.dll
-2015-01-13 12:21:36 ....A      3189032               Vegas Pro 13.0\FileIO Plug-Ins\mxfxavc\mc_bc_enc_avc.dll
-2015-06-05 16:52:16 ....A      6851384               Vegas Pro 13.0\FileIO Plug-Ins\mxfxavc\mxfxavc.dll
-2015-04-10 06:33:26 ....A      2443264               Vegas Pro 13.0\FileIO Plug-Ins\mxfxavc\SMDK-VC110-x64-4_8_0.dll
-2015-06-05 16:52:16 ....A       467768               Vegas Pro 13.0\FileIO Plug-Ins\mxfxavc\smdkwrap_xavc.dll
-2015-06-05 16:52:22 ....A      5857080               Vegas Pro 13.0\FileIO Plug-Ins\oggplug\oggplug.dll
-2015-06-05 16:52:24 ....A       716600               Vegas Pro 13.0\FileIO Plug-Ins\qt7plug\qt7plug.dll
-2015-06-05 16:52:24 ....A      7047480               Vegas Pro 13.0\FileIO Plug-Ins\redplug\redplug.dll
-2015-06-05 16:52:28 ....A      6189368               Vegas Pro 13.0\FileIO Plug-Ins\sctplug\sctplug.dll
-2015-06-05 16:52:30 ....A      6198072               Vegas Pro 13.0\FileIO Plug-Ins\sflgaplg\sflgaplg.dll
-2015-06-05 16:52:30 ....A      6219064               Vegas Pro 13.0\FileIO Plug-Ins\sfpaplug\sfpaplug.dll
-2015-06-05 16:52:54 ....A      6412088               Vegas Pro 13.0\FileIO Plug-Ins\stl2plg\stl2plg.dll
-2015-06-05 16:53:02 ....A      6347576               Vegas Pro 13.0\FileIO Plug-Ins\vduplug\vduplug.dll
-2015-06-05 16:53:10 ....A       268088               Vegas Pro 13.0\FileIO Plug-Ins\wavplug\wavplug.dll
-2015-06-05 16:53:10 ....A      1430328               Vegas Pro 13.0\FileIO Plug-Ins\wicplug\wicplug.dll
-2015-06-05 16:53:14 ....A       432952               Vegas Pro 13.0\FileIO Plug-Ins\wmfplug4\wmfplug4.dll
-2015-06-05 16:51:52 ....A        58168               Vegas Pro 13.0\FileIOProxyStubx64.dll
-2015-06-05 16:51:46 ....A        13624               Vegas Pro 13.0\fr\AjaVideoProperties.resources.dll
-2015-06-05 16:52:02 ....A        26424               Vegas Pro 13.0\fr\MediaMgrNgen.resources.dll
-2015-06-05 16:52:02 ....A        21304               Vegas Pro 13.0\fr\MediaMgrSqlWrapper.resources.dll
-2015-06-05 16:51:36 ....A        45368               Vegas Pro 13.0\fr\PRSConfig.resources.dll
-2015-06-05 16:52:40 ....A        32056               Vegas Pro 13.0\fr\Sony.Capture.resources.dll
-2015-06-05 16:51:16 ....A        15160               Vegas Pro 13.0\fr\Sony.MediaSoftware.Archive.resources.dll
-2015-06-05 16:52:42 ....A        63800               Vegas Pro 13.0\fr\Sony.MediaSoftware.clrshared.resources.dll
-2015-06-05 16:52:46 ....A        86840               Vegas Pro 13.0\fr\Sony.MediaSoftware.DeviceExp.resources.dll
-2015-06-05 16:51:50 ....A        14648               Vegas Pro 13.0\fr\Sony.MediaSoftware.FileExplorer.resources.dll
-2015-06-05 16:52:02 ....A       783672               Vegas Pro 13.0\fr\Sony.MediaSoftware.MediaMgr.resources.dll
-2015-06-05 16:52:58 ....A        29496               Vegas Pro 13.0\fr\Sony.MediaSoftware.TextGen.CoreGraphics.resources.dll
-2015-06-05 16:52:20 ....A        13624               Vegas Pro 13.0\fr\Sony.MediaSoftware.TextGen.OFXInterop.resources.dll
-2015-06-05 16:53:08 ....A       175928               Vegas Pro 13.0\fr\Sony.MediaSoftware.VideoEffectsUI.resources.dll
-2015-06-05 16:53:16 ....A       213304               Vegas Pro 13.0\fr\Sony.MediaSoftware.XDCAMExp.resources.dll
-2015-06-05 16:52:10 ....A        10552               Vegas Pro 13.0\fr\Sony.Monitor3D.resources.dll
-2015-06-05 16:52:06 ....A        15672               Vegas Pro 13.0\fr\Sony.Vegas.MobileSync.resources.dll
-2015-06-05 16:52:48 ....A        19768               Vegas Pro 13.0\fr\Sony.Vegas.Publish.Resources.dll
-2015-06-05 16:52:26 ....A        12600               Vegas Pro 13.0\fr\Sony.Vegas.RelinkSonyWirelessAdapterMedia.resources.dll
-2015-06-05 16:52:52 ....A        29496               Vegas Pro 13.0\fr\Sony.Vegas.resources.dll
-2015-06-05 16:53:12 ....A        15160               Vegas Pro 13.0\fr\WidgetLibrary.resources.dll
-2014-11-12 12:45:10 ....A        70680               Vegas Pro 13.0\gnsdk_correlates.dll
-2014-11-12 12:45:10 ....A      3295256               Vegas Pro 13.0\gnsdk_dsp.dll
-2014-11-12 12:45:10 ....A       121880               Vegas Pro 13.0\gnsdk_link.dll
-2014-11-12 12:45:10 ....A      1028632               Vegas Pro 13.0\gnsdk_manager.dll
-2014-11-12 12:45:10 ....A      1105432               Vegas Pro 13.0\gnsdk_musicid.dll
-2014-11-12 12:45:10 ....A      1196056               Vegas Pro 13.0\gnsdk_musicid_file.dll
-2014-11-12 12:45:10 ....A       147992               Vegas Pro 13.0\gnsdk_musicid_match.dll
-2014-11-12 12:45:10 ....A       276504               Vegas Pro 13.0\gnsdk_playlist.dll
-2014-11-12 12:45:10 ....A       741400               Vegas Pro 13.0\gnsdk_sqlite.dll
-2014-11-12 12:45:10 ....A       305176               Vegas Pro 13.0\gnsdk_submit.dll
-2014-11-12 12:45:10 ....A       196632               Vegas Pro 13.0\gnsdk_video.dll
-2015-06-05 16:52:56 ....A        26424               Vegas Pro 13.0\Interop.dll
-2015-06-05 16:51:46 ....A        14136               Vegas Pro 13.0\ja-JP\AjaVideoProperties.resources.dll
-2015-06-05 16:52:04 ....A        26424               Vegas Pro 13.0\ja-JP\MediaMgrNgen.resources.dll
-2015-06-05 16:52:04 ....A        21304               Vegas Pro 13.0\ja-JP\MediaMgrSqlWrapper.resources.dll
-2015-06-05 16:51:38 ....A        45368               Vegas Pro 13.0\ja-JP\PRSConfig.resources.dll
-2015-06-05 16:52:40 ....A        34104               Vegas Pro 13.0\ja-JP\Sony.Capture.resources.dll
-2015-06-05 16:51:16 ....A        15672               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.Archive.resources.dll
-2015-06-05 16:52:44 ....A        71992               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.clrshared.resources.dll
-2015-06-05 16:52:46 ....A        88376               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.DeviceExp.resources.dll
-2015-06-05 16:51:52 ....A        14648               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.FileExplorer.resources.dll
-2015-06-05 16:52:04 ....A       786744               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.MediaMgr.resources.dll
-2015-06-05 16:52:58 ....A        30008               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.TextGen.CoreGraphics.resources.dll
-2015-06-05 16:52:22 ....A        13624               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.TextGen.OFXInterop.resources.dll
-2015-06-05 16:53:08 ....A       176440               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.VideoEffectsUI.resources.dll
-2015-06-05 16:53:16 ....A       214840               Vegas Pro 13.0\ja-JP\Sony.MediaSoftware.XDCAMExp.resources.dll
-2015-06-05 16:52:10 ....A        10552               Vegas Pro 13.0\ja-JP\Sony.Monitor3D.resources.dll
-2015-06-05 16:52:06 ....A        16184               Vegas Pro 13.0\ja-JP\Sony.Vegas.MobileSync.resources.dll
-2015-06-05 16:52:48 ....A        20280               Vegas Pro 13.0\ja-JP\Sony.Vegas.Publish.Resources.dll
-2015-06-05 16:52:28 ....A        12600               Vegas Pro 13.0\ja-JP\Sony.Vegas.RelinkSonyWirelessAdapterMedia.resources.dll
-2015-06-05 16:52:52 ....A        32568               Vegas Pro 13.0\ja-JP\Sony.Vegas.resources.dll
-2015-06-05 16:53:12 ....A        18232               Vegas Pro 13.0\ja-JP\WidgetLibrary.resources.dll
-2014-11-12 12:45:18 ....A       245760               Vegas Pro 13.0\log4net.dll
-2014-11-12 12:45:18 ....A       105984               Vegas Pro 13.0\Microsoft.WindowsAPICodePack.dll
-2014-11-12 12:45:18 ....A       542720               Vegas Pro 13.0\Microsoft.WindowsAPICodePack.Shell.dll
-2015-06-05 16:51:40 ....A      1325880               Vegas Pro 13.0\networkhost.dll
-2015-06-05 16:52:18 ....A        19768               Vegas Pro 13.0\NGenTool.exe
-2015-06-05 16:53:02 ....A      1699640               Vegas Pro 13.0\OpenColorIO.dll
-2014-11-12 12:53:50 ....A      1744896               Vegas Pro 13.0\proDADMercalli20.dll
-2014-11-12 13:01:50 ....A        14336               Vegas Pro 13.0\ProDiscAPI.dll
-2015-06-05 16:52:22 ....A      1711416               Vegas Pro 13.0\ProjectInterchange.dll
-2015-06-05 16:52:24 ....A       368952               Vegas Pro 13.0\ProjectInterchangeHelper.dll
-2015-06-05 16:51:34 ....A        74552               Vegas Pro 13.0\PRSConfig.exe
-2015-06-05 16:52:26 ....A      3488056               Vegas Pro 13.0\sfapprw.dll
-2015-06-05 16:51:26 ....A      1317176               Vegas Pro 13.0\sfcd.cdd.dll
-2015-06-05 16:51:26 ....A      2667320               Vegas Pro 13.0\sfcdfs.dll
-2015-06-05 16:51:26 ....A      4678968               Vegas Pro 13.0\sfcdix.dll
-2015-06-05 16:51:26 ....A        25400               Vegas Pro 13.0\sfcdsim.cdd.dll
-2015-06-05 16:51:28 ....A      3591480               Vegas Pro 13.0\sfdvd.dll
-2015-06-05 16:51:28 ....A      1541944               Vegas Pro 13.0\sfld.ldd.dll
-2015-06-05 16:51:28 ....A      2629944               Vegas Pro 13.0\sfldsim.ldd.dll
-2015-06-05 16:51:56 ....A      2812216               Vegas Pro 13.0\sfmarket2.dll
-2015-06-05 16:51:28 ....A      2628920               Vegas Pro 13.0\sfprnsim.pdd.dll
-2015-06-05 16:52:32 ....A      3434296               Vegas Pro 13.0\sfpublish.dll
-2010-04-20 10:19:48 ....A      1631576               Vegas Pro 13.0\sfs4rw.dll
-2015-06-05 16:51:30 ....A      2645304               Vegas Pro 13.0\sfscsi.dll
-2015-06-05 16:51:30 ....A        54584               Vegas Pro 13.0\sfspti.dll
-2015-06-05 16:53:02 ....A      7163192               Vegas Pro 13.0\sftutor.dll
-2010-04-20 10:21:02 ....A       820568               Vegas Pro 13.0\sftutor60.dll
-2015-06-05 16:52:36 ....A        21816               Vegas Pro 13.0\SfVstProxyStubx64.dll
-2015-06-05 16:52:36 ....A      5089592               Vegas Pro 13.0\sfvstwrap.dll
-2015-06-05 16:52:42 ....A       228152               Vegas Pro 13.0\Sony.Capture.dll
-2015-06-05 16:51:18 ....A       109880               Vegas Pro 13.0\Sony.MediaSoftware.Archive.dll
-2015-06-05 16:52:44 ....A       387384               Vegas Pro 13.0\Sony.MediaSoftware.clrshared.dll
-2015-06-05 16:52:46 ....A       294712               Vegas Pro 13.0\Sony.MediaSoftware.DeviceExp.dll
-2015-06-05 16:52:46 ....A       104248               Vegas Pro 13.0\Sony.MediaSoftware.ExternalVideoDevice.dll
-2015-06-05 16:51:52 ....A       250680               Vegas Pro 13.0\Sony.MediaSoftware.FileExplorer.dll
-2015-06-05 16:52:50 ....A        22840               Vegas Pro 13.0\Sony.MediaSoftware.SfBdMuxCom.dll
-2015-06-05 16:52:38 ....A        79672               Vegas Pro 13.0\Sony.MediaSoftware.Skins.dll
-2015-06-05 16:53:00 ....A       808248               Vegas Pro 13.0\Sony.MediaSoftware.TextGen.CoreGraphics.dll
-2015-06-05 16:53:00 ....A       452920               Vegas Pro 13.0\Sony.MediaSoftware.TextGen.CoreGraphics.XmlSerializers.dll
-2015-06-05 16:52:20 ....A       357176               Vegas Pro 13.0\Sony.MediaSoftware.TextGen.OFXInterop.dll
-2015-06-05 16:53:08 ....A      1504056               Vegas Pro 13.0\Sony.MediaSoftware.VideoEffectsUI.dll
-2015-06-05 16:53:16 ....A       428344               Vegas Pro 13.0\Sony.MediaSoftware.XDCAMExp.dll
-2015-06-05 16:52:08 ....A        70456               Vegas Pro 13.0\Sony.Monitor3D.dll
-2015-06-05 16:52:52 ....A       390456               Vegas Pro 13.0\Sony.Vegas.dll
-2015-06-05 16:52:06 ....A        53560               Vegas Pro 13.0\Sony.Vegas.MobileSync.dll
-2015-06-05 16:52:50 ....A        71480               Vegas Pro 13.0\Sony.Vegas.Publish.dll
-2015-06-05 16:52:28 ....A        19768               Vegas Pro 13.0\Sony.Vegas.RelinkSonyWirelessAdapterMedia.dll
-2015-06-05 16:53:04 ....A       114488               Vegas Pro 13.0\Sony.Vegas.RenderAs.dll
-2014-11-12 12:45:26 ....A       659456               Vegas Pro 13.0\sonymvd2pro_xp.dll
-2015-06-05 16:53:04 ....A     38179640               Vegas Pro 13.0\vegas130.exe
-2015-06-05 16:53:04 ....A     12092728               Vegas Pro 13.0\vegas130k.dll
-2015-06-05 16:53:06 ....A      1128760               Vegas Pro 13.0\Vidcap Plug-Ins\aviplug\aviplug.dll
-2015-06-05 16:53:06 ....A       731448               Vegas Pro 13.0\Vidcap Plug-Ins\stl2plg\stl2plg.dll
-2010-04-20 10:21:04 ....A      4275544               Vegas Pro 13.0\vidcap60.exe
-2015-06-05 16:51:44 ....A       428344               Vegas Pro 13.0\Video Hardware Drivers\AjaVideoDevice.dll
-2015-06-05 16:51:46 ....A      2872632               Vegas Pro 13.0\Video Hardware Drivers\AVCDevices.dll
-2015-06-05 16:51:48 ....A      2683704               Vegas Pro 13.0\Video Hardware Drivers\DecklinkVideoDevice.dll
-2015-06-05 16:51:48 ....A      4669240               Vegas Pro 13.0\Video Hardware Drivers\extviddev.dll
-2015-06-05 16:52:08 ....A      2901816               Vegas Pro 13.0\Video Hardware Drivers\Monitor3D.dll
-2015-06-05 16:51:32 ....A      3892536               Vegas Pro 13.0\Video Plug-Ins\colorcorrector.dll
-2015-06-05 16:53:00 ....A       167736               Vegas Pro 13.0\Video Plug-Ins\PluginWrapper.dll
-2015-06-05 16:52:30 ....A      4251448               Vegas Pro 13.0\Video Plug-Ins\sfpagepeel.dll
-2015-06-05 16:52:34 ....A      9394488               Vegas Pro 13.0\Video Plug-Ins\sftrans1.dll
-2015-06-05 16:53:04 ....A      3887416               Vegas Pro 13.0\Video Plug-Ins\vfplugs.dll
-2015-06-05 16:53:06 ....A      7802168               Vegas Pro 13.0\Video Plug-Ins\vfx1.dll
-2015-06-05 16:53:10 ....A      9875768               Vegas Pro 13.0\Video Plug-Ins\vidpcore.dll
-2015-06-05 16:53:14 ....A       724280               Vegas Pro 13.0\WidgetLibrary.dll
-2015-06-05 16:51:38 ....A        25912               Vegas Pro 13.0\x86\CreateMinidumpx86.exe
-2014-11-12 12:58:18 ....A      1045128               Vegas Pro 13.0\x86\dbghelp.dll
-2015-06-05 16:51:38 ....A        66872               Vegas Pro 13.0\x86\ErrorReport.dll
-2015-06-05 16:51:54 ....A      6316344               Vegas Pro 13.0\x86\ffplugsk32.dll
-2015-06-05 16:51:52 ....A        46392               Vegas Pro 13.0\x86\FileIOProxyStubx86.dll
-2015-06-05 16:51:54 ....A      3469112               Vegas Pro 13.0\x86\FileIOSurrogate.exe
-2015-06-05 16:51:30 ....A      2424632               Vegas Pro 13.0\x86\sfdvd.dll
-2015-06-05 16:52:36 ....A        20792               Vegas Pro 13.0\x86\sfvstproxystubx86.dll
-2015-06-05 16:52:36 ....A      3248952               Vegas Pro 13.0\x86\sfvstserver.exe
-------------------- ----- ------------ ------------  ------------------------
--- a/vegasman/COPYING	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,51 +0,0 @@
-MIT License
-
-Copyright (c) 2022 Paper
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in all
-copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-SOFTWARE.
-
-Parts of this package may be licensed under the Sony Creative Software License, which can be read here:
-
-The Software is owned by Sony and the Third Party Licensors, and its structure, organization and code are
-valuable trade secrets of Sony and the Third Party Licensors. Except as expressly set forth in this EULA, this
-EULA does not grant you any intellectual property rights in your Product (including but not limited to the
-Software), and you cannot use the Software except as specified herein. The Software is licensed, not sold.
-Sony grants you a limited license to use the Software only on one (1) computer or mobile device, as
-applicable, and you may create one (1) back up copy of the Software. If you received a trial version of the
-Software, subject to your compliance with the terms and conditions of this EULA, Sony grants you a
-limited license for a limited trial period to use one (1) copy of the Software to evaluate the Software, and
-only for your personal, noncommercial use on a single computer or mobile device, as applicable.  The
-Software may create data files automatically for use with the Software, and you agree that any such data
-files are deemed to be a part of the Software. This does not include, however, any user-generated content or
-project files, which will remain the property of the owner.  The Software is licensed as a single product, and
-you may not separate its component parts for use on more than one (1) computer or mobile device unless expressly
-authorized by Sony. You agree not to copy, modify, publish, adapt, redistribute, reverse engineer, decompile,
-disassemble, attempt to derive or discover source code, or otherwise reduce to a human-perceivable form, or
-create derivative works of, the Software in whole or in part or to use the Software in whole or in part for
-any purpose other than as expressly permitted under this EULA. In addition, you may not share, distribute,
-loan, rent, lease, sublicense, assign, transfer, or sell the Software, but you may transfer all of your rights
-under this EULA only as part of a sale or transfer of the Product provided: (i) you retain no copies of, and
-transfer all of the Software (including but not limited to all copies, component parts, any media, printed
-materials, all versions and any upgrades of the Software, and this EULA) as part of such sale or transfer;
-(ii) uninstall the Software from any device where it has been installed; and (iii) the recipient agrees to
-the terms of this EULA and Sony's privacy policy. Sony and its Third Party Licensors retain all rights, title
-and interest (including but not limited to intellectual property rights) that this EULA does not expressly
-grant to you. You shall not: (a) violate, tamper with, bypass, modify, defeat, or circumvent any of the
-functions or protections of the Software, or any mechanisms operatively linked to the Software; or (b)
-remove, alter, cover, or deface any trademarks or proprietary legends, notices or language in or on the Software.
--- a/vegasman/README	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,4 +0,0 @@
-This is a manual installer for Vegas Pro 13.0.
-
-If you're using a system without PowerShell 2, this script attempts to use curl as a fallback.
-To make use of this, place curl.exe and the certs into the `bin` directory.
--- a/vegasman/manual.bat	Fri Mar 03 22:33:53 2023 +0000
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,63 +0,0 @@
-@echo off
-SETLOCAL EnableDelayedExpansion
-REM  Manual Vegas Pro installer
-REM  Made by Paper because the Vegas installer
-REM  wasn't fucking working...
-REM
-REM  Run as admin!!!
-
-if not exist "%~dp0\bin\7zr.exe" (
-	call :downloadfile "https://www.7-zip.org/a/7zr.exe" "%~dp0\bin\7zr.exe"
-)
-
-REM cls
-echo Extracting Vegas files... please wait...
-echo.
-
-set "shared=C:\Program Files (x86)\Sony"
-"%~dp0\bin\7zr.exe" x -y "%~dp0\7z\Vegas Pro 13.0.7z" -o"C:\Program Files\Sony"
-"%~dp0\bin\7zr.exe" x -y "%~dp0\7z\Shared Plug-ins.7z" -o"C:\Program Files (x86)\Sony"
-"%~dp0\bin\7zr.exe" x -y "%~dp0\7z\Start Menu.7z" -o"C:\ProgramData\Microsoft\Windows\Start Menu"
-"%~dp0\bin\7zr.exe" x -y "%~dp0\7z\Installer.7z" -o"C:\Windows\Installer"
-"%~dp0\bin\7zr.exe" x -y "%~dp0\7z\ProgramData.7z" -o"C:\ProgramData\Sony"
-
-REM  need this to get audio plugins working...
-for %%i in ("%shared%\Shared Plug-Ins\Audio_x64\*.dll") do (
-	regsvr32 /s "%%i"
-	if %errorlevel% equ 0 echo %%~nxi registered!
-)
-
-reg.exe import "%~dp0\vegas.reg"
-
-echo Windows Registry Editor Version 5.00 > vegasuser.reg
-echo.>> vegasuser.reg
-echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\vegas130.exe]>> vegasuser.reg
-echo "C:\\Users\\%USERNAME%\\AppData\\Local\\Sony\\ErrorReport\\"="1">> vegasuser.reg
-echo "C:\\Users\\%USERNAME%\\AppData\\Local\\Sony\\"="1">> vegasuser.reg
-echo.>> vegasuser.reg
-echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Installer\UserData\S-1-5-18\Products\EEB0EEE18CB05E111AE90FD42AA3C585\InstallProperties]>> vegasuser.reg
-echo "InstallSource"="C:\\Users\\Paper\\AppData\\Local\\Temp\\SonyInstall_1\\vegas130\\">>vegasuser.reg
-echo.>> vegasuser.reg
-echo [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Uninstall\{1EEE0BEE-0BC8-11E5-A19E-F04DA23A5C58}]>> vegasuser.reg
-echo "InstallSource"="C:\\Users\\Paper\\AppData\\Local\\Temp\\SonyInstall_1\\vegas130\\">>vegasuser.reg
-
-reg.exe import "%~dp0\vegasuser.reg"
-
-pause
-goto :eof
-
-:downloadfile
-REM Downloads a file from a URL
-REM Input 1 is the URL, input 2 is the file to output to
-REM Compatible with PowerShell 2
-set "major="
-for /f "skip=3 delims=" %%i in ('powershell -Command "Get-Host | Select-Object Version"') do ( 
-	if not defined major set "major=%%i"
-)
-
-if %major:~0,1% GEQ 2 (
-	powershell -Command "& {$WebClient = New-Object System.Net.WebClient; $WebClient.DownloadFile('%~1', '%~2')}"
-) else (
-	"%~dp0\bin\curl.exe" -o "%~2" "%~1"
-)
-goto :eof
Binary file vegasman/vegas.reg has changed