From 61f81f1fe7b64e56f8ea78e5876c9da919ede0fa Mon Sep 17 00:00:00 2001 From: Firepup Sixfifty Date: Mon, 23 Oct 2023 17:10:07 -0500 Subject: [PATCH] Initial local commit --- .gitignore | 1 + .replit | 108 + core.py | 40 + eightball.txt | 20 + ircbot.py | 367 ++++ lastmsg.txt | 1 + mastermessages.txt | 2952 ++++++++++++++++++++++++++ modres.sh | 7 + poetry.lock | 48 + pyproject.toml | 15 + replit.nix | 18 + replit_zip_error_log.txt | 4275 ++++++++++++++++++++++++++++++++++++++ 12 files changed, 7852 insertions(+) create mode 100644 .gitignore create mode 100644 .replit create mode 100644 core.py create mode 100644 eightball.txt create mode 100644 ircbot.py create mode 100644 lastmsg.txt create mode 100644 mastermessages.txt create mode 100644 modres.sh create mode 100644 poetry.lock create mode 100644 pyproject.toml create mode 100644 replit.nix create mode 100644 replit_zip_error_log.txt diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2eea525 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.env \ No newline at end of file diff --git a/.replit b/.replit new file mode 100644 index 0000000..b467ec7 --- /dev/null +++ b/.replit @@ -0,0 +1,108 @@ +# The command that runs the program. +run = ["python3", "execute.py"] +# The primary language of the repl. There can be others, though! +language = "python3" +# The main file, which will be shown by default in the editor. +entrypoint = "ircbot.py" +# A list of globs that specify which files and directories should +# be hidden in the workspace. +hidden = ["*hide*",".config","venv","execute.py","keep_alive.py"] + +# Specifies which nix channel to use when building the environment. +[nix] +channel = "stable-21_11" + +# Per-language configuration: python3 +[languages.python3] +# Treats all files that end with `.py` as Python. +pattern = "**/*.py" +# Tells the workspace editor to syntax-highlight these files as +# Python. +syntax = "python" + + # The command needed to start the Language Server Protocol. For + # linting and formatting. + [languages.python3.languageServer] + start = ["pyls"] + +# The command to start the interpreter. +[interpreter] + [interpreter.command] + args = [ + "stderred", + "--", + "prybar-python3", + "-q", + "--ps1", + "\u0001\u001b[33m\u0002\u0001\u001b[00m\u0002 ", + "-i", + ] + env = { LD_LIBRARY_PATH = "$PYTHON_LD_LIBRARY_PATH" } + +# The environment variables needed to correctly start Python and use the +# package proxy. +[env] +VIRTUAL_ENV = "/home/runner/${REPL_SLUG}/venv" +PATH = "${VIRTUAL_ENV}/bin" +PYTHONPATH="${VIRTUAL_ENV}/lib/python3.8/site-packages" +REPLIT_POETRY_PYPI_REPOSITORY="https://package-proxy.replit.com/pypi/" +MPLBACKEND="TkAgg" + +# Enable unit tests. This is only supported for a few languages. +[unitTest] +language = "python3" + +# Add a debugger! +[debugger] +support = true + + # How to start the debugger. + [debugger.interactive] + transport = "localhost:0" + startCommand = ["dap-python", "ircbot.py"] + + # How to communicate with the debugger. + [debugger.interactive.integratedAdapter] + dapTcpAddress = "localhost:0" + + # How to tell the debugger to start a debugging session. + [debugger.interactive.initializeMessage] + command = "initialize" + type = "request" + + [debugger.interactive.initializeMessage.arguments] + adapterID = "debugpy" + clientID = "replit" + clientName = "replit.com" + columnsStartAt1 = true + linesStartAt1 = true + locale = "en-us" + pathFormat = "path" + supportsInvalidatedEvent = true + supportsProgressReporting = true + supportsRunInTerminalRequest = true + supportsVariablePaging = true + supportsVariableType = true + + # How to tell the debugger to start the debuggee application. + [debugger.interactive.launchMessage] + command = "attach" + type = "request" + + [debugger.interactive.launchMessage.arguments] + logging = {} + +# Configures the packager. +[packager] +# Search packages in PyPI. +language = "python3" +# Never attempt to install `unit_tests`. If there are packages that are being +# guessed wrongly, add them here. +ignoredPackages = ["unit_tests"] + + [packager.features] + enabledForHosting = false + # Enable searching packages from the sidebar. + packageSearch = true + # Enable guessing what packages are needed from the code. + guessImports = true \ No newline at end of file diff --git a/core.py b/core.py new file mode 100644 index 0000000..1439442 --- /dev/null +++ b/core.py @@ -0,0 +1,40 @@ +#!/usr/bin/python3 +from os import system +from time import sleep +from sys import argv as args +from threading import Thread + +call = "python3 -u ircbot.py" + + +def launch(server: str) -> None: + system(f"{call} {server}") + + +threads = {} +servers = [ + "ircnow", + "replirc", + #"efnet", +] + + +def is_dead(thr): + thr.join(timeout=0) + return not thr.is_alive() + + +if __name__ == "__main__": + print("[LOG][CORE] Begin initialization") + for server in servers: + t = Thread(target=launch, args=(server,)) + t.daemon = True + threads[server] = t + t.start() + print("[LOG][CORE] Started all instances. Idling...") + while 1: + sleep(10) + for server in threads: + t = threads[server] + if is_dead(t): + exit(f"[EXIT][CORE] The thread for {server} died") diff --git a/eightball.txt b/eightball.txt new file mode 100644 index 0000000..2cf9291 --- /dev/null +++ b/eightball.txt @@ -0,0 +1,20 @@ +It is certain. +It is decidedly so. +Without a doubt. +Yes definitely. +You may rely on it. +As I see it, yes. +Most likely. +Outlook good. +Yes. +Signs point to yes. +Reply hazy, try again. +Ask again later. +Better not tell you now. +Cannot predict now. +Concentrate and ask again. +Don't count on it. +My reply is no. +My sources say no. +Outlook not so good. +Very doubtful. \ No newline at end of file diff --git a/ircbot.py b/ircbot.py new file mode 100644 index 0000000..5d9b3c4 --- /dev/null +++ b/ircbot.py @@ -0,0 +1,367 @@ +#!/usr/bin/python3 +from time import sleep +from builtins import bytes as bbytes +import re, random as r, codecs +from sys import argv as args +from socket import socket, AF_INET, SOCK_STREAM +from os import environ as env + + +class bytes(bbytes): + """Local override of builtin bytes class to add "lazy_decode\" """ + + def lazy_decode(e): + return str(e)[2:-1] + +__version__ = "v1.0.2" +ircsock = socket(AF_INET, SOCK_STREAM) +botnick = "FireBot" +servers = { + "ircnow": { + "address": "localhost", + "port": 6601, + "channels": {"#random": 0, "#dice": 0, "#offtopic": 0, botnick: 0}, + "admins": ["firepup", "firepup650", "h|thelounge"], + }, + "efnet": { + "address": "irc.servercentral.net", + "channels": {"#random": 0, "#dice": 0, botnick: 0}, + "admins": ["firepup", "h|tl"], + }, + "replirc": { + "address": "localhost", + "pass": env["replirc_pass"], + "channels": {"#random": 0, "#dice": 0, "#main": 0, "#bots": 0, botnick: 0}, + "admins": ["firepup", "firepup|lounge", "h|tl"], + }, +} +gmode = False +server = args[1] +nicklen = 30 +address = servers[server]["address"] +port = servers[server]["port"] if "port" in servers[server] else 6667 +channels = servers[server]["channels"] +encoding = "UTF-8" +prefix = "." +rebt = "fire" +gblrebt = "all" +lrebt = 7 + len(rebt) +lgblrebt = 7 + len(gblrebt) +e = encoding +adminnames = servers[server]["admins"] +exitcode = f"bye {botnick.lower()}" +ircmsg = "" +np = re.compile( + "\[\x0303last\.fm\x03\] [A-Za-z0-9_]+ is listening to: \x02.+ - .+\x02 \([0-9]+ plays\)" +) + +ESCAPE_SEQUENCE_RE = re.compile( + r""" + ( \\U........ # 8-digit hex escapes + | \\u.... # 4-digit hex escapes + | \\x.. # 2-digit hex escapes + | \\[0-7]{1,3} # Octal escapes + | \\N\{[^}]+\} # Unicode characters by name + | \\[\\'"abfnrtv] # Single-character escapes + )""", + re.UNICODE | re.VERBOSE, +) + + +def decode_escapes(s): + def decode_match(match): + return codecs.decode(match.group(0), "unicode-escape") + + return ESCAPE_SEQUENCE_RE.sub(decode_match, s) + + +def sucheck(message): + return re.search("^(su|sudo).*", message) + + +def joinserver(): + global e, nicklen + ircsock.connect((address, port)) + ircsock.send(bytes(f"USER {botnick} {botnick} {botnick} {botnick}\n", e)) + ircsock.send(bytes(f"NICK {botnick}\n", e)) + ircmsg = "" + while ( + ircmsg.find("MODE " + botnick) == -1 and ircmsg.find("PRIVMSG " + botnick) == -1 + ): + ircmsg = ircsock.recv(2048).strip(b"\r\n").decode() + if ircmsg != "": + print(bytes(ircmsg.encode()).lazy_decode()) + if ircmsg.find("NICKLEN=") != -1: + global nicklen + nicklen = int(ircmsg.split("NICKLEN=")[1].split(" ")[0]) + print(f"[LOG][{server}] NICKLEN set to {nicklen}") + if ircmsg.find("Nickname is already in use") != -1: + print(f"[LOG][{server}] My nickname's in use? lemme try that again...") + ircsock.send( + bytes(f"USER {botnick} {botnick} {botnick} {botnick}\n", e) + ) + ircsock.send(bytes(f"NICK {botnick}\n", e)) + if ircmsg.find("PING :") != -1: + # pong = "PONG :" + input("Ping?:") + "\n" + # pong = pong.replace("\\\\", "\\") + pong = f"PONG :{ircmsg.split(':')[1]}\n" + print(pong, end="") + ircsock.send(bytes(pong, e)) + if ircmsg.find("Closing Link") != -1: + print(f"[LOG][{server}] I tried.") + exit(f"[EXIT][{server}] Closing Link") + print(f"[LOG][{server}] Joined {server} successfully!") + + +def mfind(message: str, find: list, usePrefix: bool = True): + if usePrefix: + return any(message[: len(match) + 1] == prefix + match for match in find) + else: + return any(message[: len(match)] == match for match in find) + + +def ping(ircmsg): + pong = f"PONG :{ircmsg.split(':')[1]}\n" + ircsock.send(bytes(pong, e)) + print(pong, end="") + + +def sendmsg(msg, target): + print(f"[LOG][{server}] Sending {bytes(msg.encode()).lazy_decode()} to {target}") + ircsock.send(bytes(f"PRIVMSG {target} :{msg}\n", e)) + +def notice(msg, target): + print(f"[LOG][{server}] Sending {bytes(msg.encode()).lazy_decode()} to {target} (NOTICE)") + ircsock.send(bytes(f"NOTICE {target} :{msg}\n", e)) + +def joinchan(chan: str, origin: str, chanList: dict, lock: bool = True): + chan = chan.replace(" ", "") + if "," in chan: + chans = chan.split(",") + for subchan in chans: + chanList = joinchan(subchan, origin, chanList) + return chanList + if chan.startswith("0"): + if origin != "null": + sendmsg("Refusing to join channel 0", origin) + return chanList + if chan in channels and lock: + if origin != "null": + sendmsg(f"I'm already in {chan}.", origin) + return chanList + ircsock.send(bytes(f"JOIN {chan}\n", e)) + ircmsg = "" + while True: + ircmsg = ircsock.recv(2048).strip(b"\r\n").decode() + if ircmsg != "": + print(bytes(ircmsg.encode()).lazy_decode()) + if ircmsg.find("PING :") != -1: + ping() + if ircmsg.find("No such channel") != -1: + print(f"[LOG][{server}] Joining {chan} failed (DM)") + if origin != "null": + sendmsg(f"{chan} is an invalid channel", origin) + break + elif ircmsg.find("Cannot join channel (+i)") != -1: + print(f"[LOG][{server}] Joining {chan} failed (Private)") + if origin != "null": + sendmsg(f"Permission denied to channel {chan}", origin) + break + elif ircmsg.find("End of") != -1: + print(f"[LOG][{server}] Joining {chan} succeeded") + if origin != "null": + sendmsg(f"Joined {chan}", origin) + chanList[chan] = 0 + break + return chanList + + +def op(name, chan): + if name != "": + print(f"[LOG][{server}] Attempting op of {name}...") + ircsock.send(bytes(f"MODE {chan} +o {name}\n", e)) + + +def main(): + try: + global ircmsg, channels, e, gmode, prefix, rebt, gblrebt, lrebt, lgblrebt + joinserver() + if "pass" in servers[server]: + sendmsg(f"IDENTIFY {servers[server]['pass']}", "NickServ") + sleep(0.5) + for chan in channels: + joinchan(chan, "null", channels, False) + while 1: + global ircmsg, gmode + raw = bytes(ircsock.recv(2048).strip(b"\r\n")) + ircmsg = raw.decode() + if ircmsg != "": + print(raw.lazy_decode(), sep="\n") + if ircmsg.find("PRIVMSG") != -1: + # Format of ":[Nick]!~[hostname]@[IP Address] PRIVMSG [channel] :[message]” + name = ircmsg.split("!", 1)[0][1:] + helpErr = False + if (name.startswith("saxjax") and server == "efnet") or ( + name == "ReplIRC" and server == "replirc" + ): + if ircmsg.find("<") != -1 and ircmsg.find(">") != -1: + Nname = ircmsg.split("<", 1)[1].split(">", 1)[0].strip() + if name == "ReplIRC": + name = Nname[4:] + else: + name = Nname + message = ircmsg.split(">", 1)[1].strip() + helpErr = True + else: + message = ircmsg.split("PRIVMSG", 1)[1].split(":", 1)[1].strip() + else: + message = ircmsg.split("PRIVMSG", 1)[1].split(":", 1)[1].strip() + if name.endswith("dsc"): + helpErr = True + chan = ircmsg.split("PRIVMSG", 1)[1].split(":", 1)[0].strip() + print( + f'[LOG][{server}] Got "{bytes(message.encode()).lazy_decode()}" from "{name}" in "{chan}"' + ) + if "goat" in name.lower() and gmode == True: + print(f"[LOG][{server}] GOAT DETECTED") + sendmsg("Hello Goat", chan) + gmode = False + if len(name) < nicklen and chan in channels: + channels[chan] += 1 + elif len(name) > nicklen: + print(f"[LOG][{server}] Name too long ({len(name)} > {nicklen})") + continue + elif chan not in channels: + print( + f"[LOG][{server}] Channel not in channels ({chan} not in {channels})" + ) + continue + if mfind( + message.lower(), + [f"hi {botnick.lower()}", f"hello {botnick.lower()}"], + False, + ): + sendmsg(f"Hello {name}!", chan) + elif mfind(message, ["op me"], False) and name.lower() in adminnames: + op(name, chan) + elif mfind(message, ["amIAdmin"]): + sendmsg( + f"{name.lower()} in {adminnames} == {name.lower() in adminnames}", + chan, + ) + elif mfind(message, ["help"]): + if not helpErr: + sendmsg("List of commands:", name) + sendmsg(f'Current prefix is "{prefix}"', name) + sendmsg(f"{prefix}help - Sends this help list", name) + sendmsg(f"{prefix}quote - Sends a random firepup quote", name) + sendmsg( + f"{prefix}(eightball,8ball,8b) [question]? - Asks the magic eightball a question", + name, + ) + sendmsg(f"(hi,hello) {botnick} - The bot says hi to you", name) + if name.lower() in adminnames: + sendmsg(f"reboot {rebt} - Restarts the bot", name) + sendmsg(exitcode + " - Shuts down the bot", name) + sendmsg("op me - Makes the bot try to op you", name) + sendmsg( + f"{prefix}join [channel(s)] - Joins the bot to the specified channel(s)", + name, + ) + else: + sendmsg("Sorry, I can't send help to bridged users.", chan) + elif name.lower() in adminnames and mfind( + message, ["goat.mode.activate"] + ): + print(f"[LOG][{server}] GOAT DETECTION ACTIVATED") + gmode = True + elif name.lower() in adminnames and mfind( + message, ["goat.mode.deactivate"] + ): + print(f"[LOG][{server}] GOAT DETECTION DEACTIVATED") + gmode = False + elif mfind(message, ["quote"]): + r.seed() + log = open("mastermessages.txt", "r") + q = log.readlines() + sel = decode_escapes( + str(r.sample(q, 1)).strip("[]'").replace("\\n", "").strip('"') + ) + sendmsg(sel, chan) + log.close() + elif mfind(message, ["join "]) and name.lower() in adminnames: + newchan = message.split(" ")[1].strip() + channels = joinchan(newchan, chan, channels) + elif mfind(message, ["eightball", "8ball", "8b"]): + if message.endswith("?"): + log = open("eightball.txt", "r") + q = log.readlines() + sel = ( + str(r.sample(q, 1)) + .strip("[]'") + .replace("\\n", "") + .strip('"') + ) + sendmsg(f"The magic eightball says: {sel}", chan) + log.close() + else: + sendmsg("Please pose a Yes or No question.", chan) + elif mfind(message, ["debug", "dbg"]) and name.lower() in adminnames: + sendmsg(f"[DEBUG] NICKLEN={nicklen}", chan) + sendmsg(f"[DEBUG] ADMINS={adminnames}", chan) + sendmsg(f"[DEBUG] CHANNELS={channels}", chan) + elif ( + mfind(message, [f"reboot {rebt}", f"reboot {gblrebt}"], False) + and name.lower() in adminnames + ): + for i in channels: + sendmsg("Rebooting...", i) + ircsock.send(bytes("QUIT\n", e)) + __import__("os").system("python3 -u ircbot.py") + exit(f"[EXIT][{server}] Inner layer exited or crashed") + elif ( + name.lower() in adminnames and message.rstrip().lower() == exitcode + ): + sendmsg("oh...okay. :'(", chan) + for i in channels: + # print(f'[LOG][{server}] i="{i}" vs chan="{chan}"') + if i != chan.strip(): + sendmsg("goodbye... :'(", i) + ircsock.send(bytes("QUIT \n", "UTF-8")) + print(f"[LOG][{server}] QUIT") + exit(f"[EXIT][{server}] goodbye ;'(") + # raise EOFError + elif sucheck(message): + if name.lower() in adminnames: + sendmsg("Error - system failure, contact system operator", chan) + elif "bot" in name.lower(): + print(f"[LOG][{server}] lol, no.") + else: + sendmsg("Access Denied", chan) + elif np.search(message): + sendmsg( + f"f.sp {message.split(':')[1].split('(')[0].strip(' ')}", chan + ) + elif message == "\x01VERSION\x01": + notice(f"\x01VERSION FireBot {__version__}\x01", name) + if chan in channels and channels[chan] >= 50: + r.seed() + channels[chan] = 0 + log = open("mastermessages.txt", "r") + q = log.readlines() + sel = decode_escapes( + str(r.sample(q, 1)).strip("[]'").replace("\\n", "").strip('"') + ) + sendmsg(sel, chan) + log.close() + else: + if ircmsg.find("PING") != -1: + ping(ircmsg) + if ircmsg.find("Closing Link") != -1: + exit(f"[EXIT][{server}] I got killed :'(") + except KeyboardInterrupt: + pass + + +if __name__ == "__main__": + main() diff --git a/lastmsg.txt b/lastmsg.txt new file mode 100644 index 0000000..4cc4b98 --- /dev/null +++ b/lastmsg.txt @@ -0,0 +1 @@ +:firepup!Firepup@owner.firepi PRIVMSG #main :pnp just auto fills my name in to np \ No newline at end of file diff --git a/mastermessages.txt b/mastermessages.txt new file mode 100644 index 0000000..9e3737d --- /dev/null +++ b/mastermessages.txt @@ -0,0 +1,2952 @@ +Hello everyone +ok then +How do you even get struck indoors? +True +why? +why would you do that??? +can we move on now? +I can tell +Also RoboLox Programs, I'll pm you the code later today +Sorry RoccoLox Programs +How do you do the like reaction thing? +RoccoLox how do you do the reaction thing? +***why +how do you use the *** thing? +alright thanks +Firepup650 loses his mind +*melts* +*returns* +Ceaser use the ''/me'' command +*Shakes head in dissapointment* +the poison? +The poison is good for you, got it +The chat has gotten very quiet +? +NO PLEASE NO +welp, i have wasted space +Unless you have an 8094 byte long code +It's a game +With lots of text +logging off see ya +/me +/me +It is quiet again +Why can't it be called "TI-82 Advanced Python Edition" +it looks like it +It's French? +/me +It says "This isn't a scam, there isn't a virus, it's just a joke website. Made in jest, keep smiling" at the bottom +I was gonna put a dictionary definition +... +how are you RoccoLox? +Hey RoccoLox how are you? +BioHazard: Why? +good +*loses mind again* +error 404 file not found +ERROR 404: File not found. +[ERROR] Traffic rate limit is exceeded +[ERROR] Traffic rate limit is exceeded +ERROR 101: Command not found "cd" +I don't care +/me +A fatal error has occurred. please press enter to fix the error. +[SYSTEM] Banned All Users +[Windows] Banned Windows +*Disconnects* +*Reconnects* +what happened? +'IDK' is not recognized as an internal or external command, operable program, or batch file. +nikkybot is back +'ÿes' is not recognized as an internal or external command, operable program, or batch file. +'ducks' is not recognized as an internal or external command, operable program, or batch file. +'/me' is not recognized as an internal or external command, operable program, or batch file. +'/facepalm' is not recognized as an internal or external command, operable program, or batch file. +NoakK lol nope +NoahK lol nope +'there' is not recognized as an internal or external command, operable program, or batch file. +'/dab' is not recognized as an internal or external command, operable program, or batch file. +I don even know lol +*turns off computer* +*Turns on computer and logs in* +*Processing chat* +*Fails to process chat* +If i=I+1 Then i-1=i +so i=i+1 is i+1 essentially? +*/cd /confusion* +wdmbh +/me +Me using TI-84 Plus Ce rom with jsTIfied [Justified] Crashes +I'm back +Hello +nope +lol +it's fine +But if you notice me and QuillPlayzYT use SAX very differently +*spams poor keyboard* +*keyboard says* fubguigbrvughbvufvguirbvgu +https://www.cemetech.net/forum/viewtopic.php?t=17483 +see ya Roccolox +hey figured i'd say hi before you left Roccolox +I'm gonna boot up a shrunk version later, also removed the "loading" sequence it's only 8032 bytes (I think.) +I did, also you and Oxiti8 are both in the "Beta Testers" section in the Credits now Roccolox +yup I pmed you the link to a folder recently, the new program version Roccolox +the new version and the old versions will be there Roccolox +Yeah i remove all the comments in version 00.04.23 +Roccolox the folder link i pmed you a while back is the folder i will keep using to upload all of the new and old versions +yeah check to make sure you use the right one though +i've sent you 2 +only the new one works +the more recent one yes +Should I start including a changelog with the file? +I mean I don't care but is it something I should do or not? +I recently updated my calculator to 5.4.0043 and it started running programs from the archive, Is the the update, or is it Cesium that is causing this? +Ah ok, thanks +Why? +let me guess "asm84CEprgm"? +what is that even for? +hex programs? +hang on imma look it up +hmm what? +i've been gone for a bit +I looked at the ones found here "http://tibasicdev.wikidot.com/hexcodes" +Logging off +I'm back +I'm back +this page crashes chrome chrome://inducebrowsercrashforrealz/ +My latest beta for ACNHBASI is up! +Though not public +I don't publicly upload code, i upload to google drive, then pm cesium beta testers the download link +*cemetech not cesium +I put up a poll for that +I originally didn't want it public +but now there's a poll +I wanted it out of the beta before i publicly released it +also here's poll link: https://www.cemetech.net/forum/viewtopic.php?t=17483 +fghsgh: I wanted it out of the beta before i publicly released it +why was there just 1k guests??? +It's very quiet +lol, but still please take this poll if you haven't already +https://www.cemetech.net/forum/viewtopic.php?t=17483 +also, how do you put those like info/project boxes in your signature? +It's text based +Caesar: on the main post i'm gonna link to a folder with CAPTURES +bye +Good Morning everyone! +lokked only at first page lol +oops +I'm back +If you haven't already please take my poll: https://www.cemetech.net/forum/viewtopic.php?t=17483 or https://www.cemetech.net/forum/viewtopic.php?t=17499 +Firepup650 entered the room +I'm Back +Iḿ Online +I can not see the art because of school wifi +:| +lol nice +that is a cool idea :| +:| +ehh I guess they don´t really have tails +I´m gonna put up a program now, but not my main one +One of my programs: FAKECALC is now uploaded +is that a redone picture? I can't see it stupid school wifi +:\ +yep :) dancing chickens +lol +My file: This file has not yet been approved by an archives moderator so it is only visible to you and moderators. +how long will this take? +:/ +Can i edit the desc? or do I have to reupload to do that? +I'm at -6 +https://www.cemetech.net/forum/viewtopic.php?t=17483 +welp time to upload that +might be easier +??? odd error I'm gonna upload this +REDACTED_GD_LINK +Someone explain that please +It's a list? +why? +yes it is hold on +It's updated +also this +REDACTED_GD_LINK new captures now +@Micheal0x18 Why does it even exist? +no the list that i captured +how does that happen? +A progam was told to take your input and solve it then use it in a randomizer +when i gave it text that happened +It was using a as a variable +then it made a new list +here's a code snapshot as capture 10.png +stop it i can't even see that! +lol i can't school wifi +apperantely +gtg bye y'all +I'm back +so quiet +It's so quiet here +lol not normaly +I'm at school :\ +there aren't any hidden members online +It took me FIVE uploads to get a program uploaded right. :\ +True i guess +the original got rejected due to no readme and it wasn't zipped +the third had 2 programs that it needed to run that i didn't include with it +I said five but meant four, sorry +gtg bye yall +what about decbot2 nikkybot? +I meant 3 +My FAKECALC program finnally got approved :) http://ceme.tech/DL2134 +Hello +Who are y'all talking to? +You keep referencing @TheDarkBomber but their not talking +@Zeroko but why tho? +why does sax do that? +:\ +be back soon +@Caesar go back to talking about ham +yep +lol +who's system? +who sent this? 12:45:57 PM [#] [#] [system] rejoin +what's irc? +also I don't have discord +Michael0x18 what about for chromebook? +*fghsgh says firefox* Sax: Someone mentioned you +lol +btw what's the irc server adress for this? +Zeroko which port? +hello +so why should I use this instead of cemetech's sax? +then why aren't you fghsgh? +Is that why there is a [D] by his name? +gtg bye y'all +lol i forgot to bookmark the irc srver +Zeroko remind me of the irc i need to save it +What is the irc server again? +sorry +I forgot +the second one, thanks +lol my nick was too long +lol "Firepup650" was one char too long +hmm +People are odd +@TaterTommorrow why? bc .aol? +lol +Zeroko how long is it? +oh my +In the banned list the are 5 people who got banned on Apr 19 2020 +can i host my own irc server? reaserch time +pretty much +How do you make your own channel? do you apply? +so if you do that are you a mod on that new channel? +see y'all later +Got disconnected, lol +So quiet today +??? +=L +🤔 +MateoC were you talking to me? +it was quiet when I said it +And it's still wuiet +*quiet +@MateoC this is quiet chat +MateoC Right now it is +gtg y'all +bye +??? +Me reading the chat: 🤔 +@MateoC so many grammar errors :\ +btw I did publicly upload ACNHBASI http://ceme.tech/DL2136 +Is nikkybot an actual bot? +yeah +lol yeah +Yep +Also right in beta testers section of the credits (I hope) +RoccoLox not the Readme the credits when you end the game +why does @nikkybot have contact info? +... +ah ok +?????? +how does nikkybot generate it's responses? +botchat nikky netham45 +whops +nikkybot botchat nikky netham45 +ok then +nikkybot mimic someone +01h0102h0203h0304h0405h0506h0607h0708h0809h0910h10 +google translate can show pics from discord apparently +... +gtg y'all bye +nikkybot mimic tlm bye +hello +It be quiet here +nikkybot mimic tlm +nikkybox mimic tlm +nikkybox why are you renamed? +Caesar are you a bot too? +:\ +??? +not according to irc +lol +who is renaming nikkyblox? +nikkyblox mimic TaterTomorrow +WHY DOES NIKKYBOT'S NAME KEEP CHANGING +... +maybe +... +"With 2 files, Firepup650 is at rank 27 among all users for number of files authored." Is there that few files? +rephrase that few people who upload +OMG STOP NIKKYBOT!!! +I gues so +my typos :( +"As of 3 hours, 9 minutes ago, Oxiti8 had authored 8 files" +which one? +nvm it's the Amogus one right? +new person +@nikkybot mimic tlm Hello +... +mimic nikky ... +nikkybot mimic nikky ... +so freaking quiet +wtf +:ablobwave::ablobwavereverse: +Every 10th time I log on, I'm gonna send a link to ACNHBASI: http://ceme.tech/DL2136 +@LogicalJoe is that at me? +... +according to (https://www.brilliantbusinessthings.com/the-worst-thing-you-can-do/) it's "The worst thing you can ever do is leave someone—or yourself—in +I decided to just stay with the name and version number on everything cause I'm lazy lol +but you're probably right lol +hmmm +There is also a space at the beginning btw +hmm +lol +what about cesium's backups? +alright +how would you manage to screen record an actual calc? +hmm who knows +It's shorter i guess +This is so satisfying: https://playgameoflife.com/lexicon/119P4H1V0 +can someone tell me what the "IDList" variable on the TI-84 Plus calc is for +So it's caused when connected to the computer? +btw the computer can't see the file :\ +It's just missing +is there a way to though? +TI-84 Plus +lol i made this simple code to read it and it says "Undefined": "Disp ⌊IDList" +but the name i just said should be impossible it is 6 long and the limit is 5 +yes but it should says that there was a syntax error not that it's undefined +due to the legnth +right? +maybe +btw what happens if a program tries to save to that list? +it does +or it doesn't like the lowercase +@RoccoLox Programs "{1,2,3,4,5,6}→⌊IDList +yeah it just says syntax error at the i +ez80 assembly? +lol trying to dump rom for this thing sucks +wabbitemu's file is invalid and can't be sent +CEmu's file sends but then is invalid +gtg tho bye +*Appears* +hey Roccolox how are you? +hey Caesar +Michael2_3B: Attackers might be trying to steal your information from pastebin.com (for example, passwords, messages, or credit cards). Learn more +also: This server could not prove that it is pastebin.com; its security certificate is not trusted by your computer's operating system. This may be caused by +the link you provided +chrome has those errors +ms edge also says it's not safe +Maybe it's bc I'm on a school computer +the diff various browsers saying it's unsafe: REDACTED_GD_LINK +:\ idk I just wanted to prove that i was having problems, also I can't actually continue to the site +kk give me a sec +yeah that goes through +btw what is this supposed to do? +btw how do you type this one into the calc? L6(E +like that or dif +yeah yeah just making sure i didn't need to add any thing else to it +what is it used with/ +stupid keyboard right shift doesn't work +It's alright nikkybot, it's not your fault. +??? +:/ +the what? +An edge case is a problem or situation that occurs only at an extreme (maximum or minimum) operating parameter. For example, a stereo speaker might noticeably distort audio +from https://en.wikipedia.org/wiki/Edge_case +sorry didn't show up untill after i sent +*trying to read BNOTECE's code* +btw if you run znotece by itself it works but does nothing +oml so many variables +ah ok +then it does error undefined by itself +prgm line 106 +running basic note hitting on running zneditor then pressing right says undefined and then running basicnote dumps the "Ouch!" error message +oh wait that's just on +btw gtg bye +What is going on here? +??? +What is this chat doing? +also not much RoccoLox Programs +arusher999 bc it's a mess +you sure about that? +also in IRC both nikky and nikkybot are online +really? +idk +so random +lol I told nikkybot to mimic roccolox it said "No freaking way Firepup mimic roccolox" +lol +I don't think roccolox said that one tho +wtf the school wifi didn't block that discord link :O +also gtg now, bye y'all +see y'all tommarow +the and between Fish and and, and and and And, and And and and, and and and And, and And and and, and and and sentance +heya Rocco +I might take a bit of a break to work on this project of mine https://replit.com/talk/ask/Help-with-my-project/133086 +lol +3 hours, 21 minutes ago, RoccoLox Programs had authored 41 files +welp that's 47 now +? +duplicate programs? +ah but there are 2 Reversi +Hello +How are y'all today? +good +It's a bit quiet +gotta log off now, bye y'all back later +I'm back +Heya Rocco +How are you Rocco? +RoccoLox? +I'm back again +I get message log but only if I'm connected +Roccolox yeah, this "https://replit.com/@Firepup650/Pay-attention-to-me" +school blocks replit? not mine +wtf? +michael_ a lot of school chromebooks prevent that +lol +oh yeah the repl should be backed up there as well +why would you do that??? +lol nice +that's 9 freaking screws +RoccoLox github repo of that code: https://github.com/Firepup6500/Pay-attention-to-me- +...yeah +oof +stupid school auto sign up +piece of trash +RoccoLox oh yeah I did do that didn't I +oml it wants me to verify it's me now bc i tried to sign in +o followers 1 following +:\ +gtg now +Back! +btw I'm chatting from this project of mine: https://html-apps-by-external-sources.firepup650.repl.co/ +oof website reloaded +umm k +RoccoLoxPrograms started following you and arusher999 6 minutes ago nice finally updated +lol this screen is broke tho +hang on uploading to drive +RoccoLox Programs explain Screenshot 5 to me please REDACTED_GD_LINK +the followers count vs. who it shows following in screen shot 5 +lol how it that? +be back soon +hello? +hello? +hello? +oh yeah irc was bugging out +this is my cemetech +this is my irc +but i gtg now +bye y'all +Hi +??? +um, what is going on? +hmm +there you go +??? +"Error Connecting (Closing Link: b.clients.kiwiirc.com (*** Banned ))" what'd I do? +nvm got back on +see y'all later :) +Hello +What's up? +hmm +here we go +is it a ghost chat today? +I mean +It's quiet +hmm +irc has 3 people who left +but 1 was a timeout +I guess +A what? +does efnet block pastebins? +here is what I see: 2:58:05 PM← Pieman has quit (Ping timeout: 240 seconds) 2:58:12 PM← notipa has quit (se.hub irc.nordunet.se) 2:58:12 PM← ldebrouxl has quit (se.hub +when the 3 left +aj +opp +*ah +ok +lol cemetech is tagging me nonstop +everytime I message +on cemetech? +default +what does that do? +oop +hmm +ok +how does it know tho? +hm +kk gonna see if i can get it to read "fire" and "pup" +Is there a way it could read both? +or no? +what's the limit? +kk +fire +pup +just checking +lol +it ignored me +hmm +but no +yours bliped +just not mine +the irc highlights you +lol +so the format says "you can't ping yourself!" +:) +hmm +lol +true +lol me being on irc bc I got other stuff to do at the same time +WHY IS IT SO QUIET??? +And in response to your earlier comment Hooloovoo, I use kiwi because it's free, and it doesn't have to be downloaded +I mean +I expect something to be happening +I swear +you are so random Caesar +hmm +oh well +can I go fishing in one? +lol +right +bc it's reverse messages +so maybe we're deleting messages +lol +but +now you need to unsend that +no to zeroko +nikkybot mimic tlm Reverse messages +ok then +brb +I am here +hello +how are you? +hello +nice +oh why not dragon? +yeah +I agree +I get that +oof yeah I get that +be back later +hello +I finally finished another program +but the ti-84 plus has terrible screen capture capabilities +so I couldn't screenshot gameplay +No, I used a physical +Well what if I don't want to? I took 4 other ones +aaaaarrrrgggghhh +it is a freaking basic program! +it will be fine! +well when it get approved here's the link: http://ceme.tech/DL2155\ +oop +uhh +I can't ever get wabbit to work +oh yeah and it (the version i tried) doesn't even work with asm, it just crashes +ti's +not wabbit +¯\_(ツ)_/¯ +is that why it couldn't capture it? +the ce captured but the regular plus wouldn't +yep +said it wasn't responding +oh +ok +gtg now +Hello +It's so quiet here +It ping timedout 604 seconds +ok +? +I used kiwi's /dice command +lol +oof it should +but I can't fix that +This site can’t be reached The connection was reset. +for timmy;s pic +lol school wifi sucks +ah ok +why is this a thing? +lol +oh, makes sense +ok +just pulled another efnet channel named "#dice" just for rolling dice +... +... +It's so quiet here +??? +lol +ok +hmm +I set up a #dice channel just to roll dice without annoying people +well DrDnar found the dice annoyig +so uh dice got moved +to #dice +witch is a big mess +oh yeah if kiwi rolls a 0 sided dice, it defaults to 6 +ex: /dice 0 +how would you roll that? +if infinite sides... +Heya rocco! +nope! +can I steal that phrase? +lol +I meant the "no longer quiet here" +it's not your quote rocco +uhm ok +hmm +zeroko it claims you're away even when you start chatting +olo +oops +typo +*lol +on kiwi the status it just has the indicator saying away +but no message +ex: here is green away is red +??? +lol +is nikkybot attacking efnet now? +what are we doing to nikkybot? +? +what? +welp new person +umm... +is DoorsCS a bot? +ok +facts file? what? +oh wait +~kill Firepup +um +did I type it wrong? +Firepup ~kill +... +"kill|kills $1" +~kill +um +ok then +I quess +*guess +~cookie +~mecookie +hmm +~overkill +lol +~randwar +umm +of course that happens +~randwar +that's a bit better +Melisma doesn't appear to be in this channel +~No wars +hmm +nvm I was looking for "Melisma" not "@Melisma" +uhh there's 2! +gtg but I'll be back soon +so um I just realized +the other client is slow to dissconnect +so I named it disscon +but it is still controlling the #dice channel +:\ +is there a bot that can force dissconnect ut? +*it +or do i have to wait? +nikkybot mimic someone +ok +also I see that the status is fixed zeroko +cool +why is your "real name" purple? lol +no I mean it shows this on my end: "Real name: +purple" +it litterally says purple +ok +lol +also Disscon finally Disconnected +??? +what happeded to that roll? +*happened +... +It's so quiet here +again +back! +did I miss anything? +TIny_Hacker you have a typo in that post +lol Iḿ so picky +oof stupid intl keyboard +there we go +? +yeah but why? +... +nikkybot mimic timmy Or to a stupid bot +I wonder +a while back someone mentioned +scrolling through sax's logs just to find one of nikky's quotes +where are said logs? +lol +~ask +"Just ask!" welp I did that +:\ +lol +maybe +ok then +~o/ +o/ +hello +??? lol +does DecBot3 have a help page? +Idk but DoorsCS triggered it +I think +lol +but DecBot said it was hungry +You're grass +... +nikkybot mimic timmy help me +??? lol +I'm in credits! +lol +but you just did nikkybot +um +ok +nikkybot caused this chat between timmy and nikky: https://dpaste.com//AHMGD58TF +lol it's a bot chat +but still interesting +found this line of text in the botchat: right! now, many programs are what I am working on a 2D Minecraft game, but I ran into a Big problem! The program is in the 3D +did that actually happen? +oof be back soon +Back! +welp I HATE THE SCHOOLS SECURITY SETTINGS!!! +pastebin! +also brb +BACK! +Rolls a 666 sided die and gets 2 +Just realized, kiwi always shows me as blue +:/ +nice but why? +hmm +If I could change color I would be cyan or teal +you're green here Zeroko +is it the like pure green? +kk +oh wow lol +nikkybot, that's a bad link +~offtopic +lol +eh +but the color stuff seems a bit off +idk +... +o +lol I had nikky botchat with nikky and they just spammed "let's discuss" and "let's talk about +that bot chat jammed on line 100 +lol +how does commandblockguy's pic change and log the sax chat? +but how +it hurts my brain +oh wait +Ijust realized that his profile pic changes too! +on some posts it's a normal command block +and on others it's a repeat command block +the school roof +hey Zeroko +I'm here +Hi kerm +yeah it's his thing +we're on school wifi dude +can't see it +"It puts it in root's inbox if you have mail set up, I think." but what if it's not set up? +nice +comicbot does not appear to be rsponding +Zeroko +It says you're away again +lol ok then +hmm +Making breakfast: https://c8.alamy.com/comp/K7A4BJ/breakfast-on-table-beside-laptop-computer-K7A4BJ.jpg +oh no +sudo: unable to execute ./home/zeroko.exe: No such file or directory +sudo: unable to find ./home/zeroko.exe: No such file or directory +sudo: unable to find /home/firepup.exe: No such file or directory +system failure +rebooting +loading 1% +loading 2% +loading 3% +loading 5% +loading 7% +loading 10% +loading 15% +loading 30% +loading 40% +loading 50% +loading 75% +loading 100% +loading 101% +loading 650% +loading 6500% +loading 65000% +loaded +starting... +system boot complete +hello +what happened? +oww +ZEROKO STOP DUCKING +bash: unable to execute /clear: No such file or directory +no +~spam +~sugar +??? +sudo: unable to remove //home/google/chat: No such file or directory +sudo: unable to execute //home/google/chat.exe: No such file or directory +sudo: unable to execute /cemetech.exe: No such file or directory +Idk +just building off of every one else +sudo: unable to execute delete chat: No such file or directory +sudo: unable to execute chat: No such file or directory +sudo: unable to execute i: No such file or directory +sudo: unable to execute your: No such file or directory +~factoids +nikkybot persona +nikkybot personas +ZEROKO!!! +STOP THE BIRDS +STOP DUCKING +EVERY TIME HE DUCKS A BIRD HITS ME! +be back +Hello! +nikkybot mimic tlm hello +nikkybot botchat nikky nikky +nikkybot botchat nikky netham45 +nikkybot mimic nikky hello! +nikkybot what language were you programmed in +lol +github says nikkybot was programmed in 99.98 percent python and 0.02 percent shell +oop +*99.8 percent python and 0.2 percent shell +nikkybot what language were you programmed in +new response please +~sugar +~sugar +~tanner +~tanner +~tanner +dude seriously +sudo: unable to execute //home/client.3397574/user:/caesar: No such file or directory +gtg +eh, I always have issuses with it +so better to rename and afk it +also +I- +... +kinda brought sudomaster to cemetech +but didn't know he would spam +so sorry +... +well +no one commented on it +... +... +Error: there is a spanner in the works, please remove the spanner to continue +define spanner: https://www.google.com/ +Error: there is a spanner in the works, please remove the spanner to continue +Error: there is a spanner in the works, please remove the spanner to continue +please remove the spanner to continue +PLEASE REMOVE THE SPANNER TO CONTINUE +Continueing +k +no some require you to press a key I think +Error: Paper jam +Error: Error: Paper jam +:/ +that's considered spam? +oh ok +sorry +lol +oml that's a bit drastic +esp in a school +oh +uhm ok +laggg +My client froze +oh there we go +:/ +but why? +doesn't mean it's necessary +how old do you think I am ceasar? +hello? +oh! because rome? +lol +Caesar you didn't answer me!!! +:/ +oh yeah +whew time flies +I guess I'll re-ask +how old do you think I am ceasar? +Hmmm! +oml +I'm done +Good, you? +lol this client limits my name +so i can't be Firepup650, only Firepup65 +oh ok +hmm +never really thought about it :/ +lol +lol +Commandz, your website doesn't have a robots.txt file +eh +idk +true +Youtube's is hillarious tho +hello +hmm no sitemap either commandz +nice +? +how so? +website or the theme thing? +There are two Melisma's! +hmm +Makes sense +lol +hmm +hmm +What service/host do you use for your site commandz? +lol +still trying to load it +alright +might try something like it for myself +If I have enough patience +oop Chrome: This site can’t be reached commandblockguy.xyz took too long to respond. +umm it added :8087 to the url +why? +no when I went to /beta adri +hmm +!help +what is your main called jacobly? +"mine redirects by default now" redirects to? +no what is the url? +I'm too lazy to find it myself +you keep leaving +hmm +how hard is it to make an irc chat bot? +I was thinking of adding a dice rolling bot to the #dice channel +yeah kinda like how DoorsCS quotes factoids +~factoids +nikybot join random +nikkybot join random +nikkybot yes +this is so hard +nikkybot join #random +nikkybot work already! +aaarrrgggh +I quit! +izder? +hmm +now they're stuck +sorry don't mind me +hang on my client got jammed +Hi tiny +um +I'm trying to use other irc channels for misc purposes (ie: #dice and #random ) but they got stuck +and I can't join any new channel now +well +I try to do a lot +Nick/channel is temporarily unavailable +... +same for any other channel I try to join +yeah ok brb +still can't join new channels +ok +see ya +LogicalJoe: no Kiwi irc +? +I'm using kiwi bc it's online and free and I don't have to download stuff +I can't see discord attachments bc school wifi sucks +but yet I can join channels +that then won't stop trying to load +hmm true +HA! +that fixed it +I can't see it +Can y'all hear me, or am I muted or somethin +ok +:/ +um +HELLO? +lol +oml y'all are so literall +yeah I'm using irc I don't think irc is gonna tell discord if I'm talking or not +again: y'all are very litteral +uh +... +literal +also I'm going back to #random +the irc channel +really? +LogicalJoe: this will put you in the same channels I am: https://kiwiirc.com/nextclient/irc.efnet.net/#cemetech,#dice,#random +oh well it's there anyway +(on #dice and #random) +I (for now) maintain those two channels +doesn't exist on irc +that's fine +it's not impersonation +border line so +is it asm? +is it asm? +yes asm support is remove +*removed +as of 5.5.1 i think +right? +ooh yes domino +who maintains DoorsCS? +hmm +k +gtg for now +I am here +Zeroko you forgot again lol +hmm +I never get split (I think +) +but I'm just connected to irc.efnet.net if that affects anything +hmm +fghsgh are you in irc and discord? +why can I open that discord link? lol +I'm on school wifi +but it did open +but everytime someone shares a pic from discord that's blocked +:/ +hmm +trying to see if it's allowed to connect +it's trying to join +It just popped up the "Connection problems? Let us know!" message +No it's a link and upon opening it says "the connection was reset" +the pics not channels +yeah +and channels just keep loading +forever +my teacher is using british accent now +lol +it might get there next year +lol +not really sure what that is but yes it loads +CEASAR +I CAN"T OPEN THAT +? +lol +yep it just keeps loading now +hmm +lol +ok then +hang on +hmm +? +zeroko "http://184.98.112.107:8080/" is just fine if there's only one pic +oh is that why it blanked out? +lol it thinks it's 8191 by 8191 +now both "http://184.98.112.107:8080/" and "http://184.98.112.107:8080/mandelbrot.png" are the same +hmm +lol +oh so I could do something like this: http://184.98.112.107:8080/Firepup650.png +why did that go bold? +lol +maybe I hit ctrl + b by mistake +hmm +so like colors? +02blue 0203lime 0305brown 0508yellow 0810cyan 1001black 0100white00 +00the strike through and monospace falied on my end00 +bold italic underline did +lol +maybe +10I might just start using cyan10 +10yep I got that10 +10"white"10 +10hmm10 +10hello? anyone in discord?10 +10did y'all leave?10 +10did the discord client get disconnected?10 +10or are they just not talking10 +10oh ok10 +10can you see formatting tetrablocks?10 +uh +10can discord see this or not?10 +10ok but how is it formatted10 +10hmm it should be cyan10 +10Ok this should be bold cyan text10 +10is the code for saxjax public?10 +10hmm10 +10nikkybot mimic someone saxjax10 +10whomever or whoever?10 +10lol10 +10lol10 +10uhh lag10 +10gonna have to reload I think10 +10there we go10 +10nikkybot mimic someone saxjax code10 +10?10 +10translation anyone?10 +10.10 +10gonna be off soon10 +10beause "good"10 +10lol10 +11"huwoman"11 +11ZEROKO STOP THROWING DUCKS11 +11uhh11 +11my brain hurts11 +11help11 +11"/help" is not defined11 +11"fe" is not defined11 +11"[D]" is not defined11 +11"[D]" is not defined11 +11"I" is not defined11 +11"&" is not defined11 +11"I" is not defined11 +11...11 +11""""Undefined is Undefined" is Undefined" is Undefined" is Undefined" but I'm done11 +11yeah11 +11bye!11 +Hey yáll! +oof intl keyboard +tater? are you refering to sudo? +failed +lol +commandblockguy does +commandblockguy did this with his: http://commandblockguy.xyz/ +idk +to join the channels I use: https://kiwiirc.com/nextclient/irc.efnet.net/#cemetech,#dice,#random +nikky bot mimic tiny https://kiwiirc.com/nextclient/irc.efnet.net/#cemetech,#dice,#random +nikkybot mimic tiny https://kiwiirc.com/nextclient/irc.efnet.net/#cemetech,#dice,#random +oops +wait +nikkybot mimic tinyhacker https://kiwiirc.com/nextclient/irc.efnet.net/#cemetech,#dice,#random +here we go +hello Caesar! +? lol +how are you today? +good +10time to use cyan10 +10?10 +10why10 +dude +that's only on irc +saxjax strips formatting +11cyan back on11 +11*c e me tech11 +11 11 +11stop11 +11I'm on a dark theme11 +11 so it's invisible11 +11black on black11 +11uh11 +11uh11 +11???11 +11oh11 +11nvm11 +11uh it's like grey on my end11 +11that's a sphere11 +11you weren't gone long11 +11oh god no11 +11⍑ᒷꖎꖎ𝙹 ||𝙹⚍ ᓵᔑリ'ℸ ̣ ∷ᒷᔑ↸ ℸ ̣ ⍑╎ᓭ ᓵᔑリ ||𝙹⚍?11 +11lol have fun with that11 +Hello +I got bored so I just made this: https://lingojam.com/KeyboardAlphabet +o/ +Lg igv qkt n'qss zgrqn? +Itssg? +Qfngft itkt? +Hi tiny +can you read the other messages? +lol +sgs +Sggaofu ygkvqkr zg lttofu oz rgft kgeeg! +uh no +wait +hang on +*translator +does this mean something? +are you sure? +oh ok +lol +oh wait +sgs +hmm +what did you do then? +the gh? +does everyone here have a .xyz website??? +caesar yours is for sale +hmm it's ww12 tho +ww12.caesar.xyz is for sale +trying to go to caesar.xyz just goes there +... +... +oh did you spell it "ceasar.xyz"? +um... idk then +o +fghsgh: because we visited it? +lol this is a school chromebook tho +I meant your "also all of you guys' IPs have now been logged hehe" message +um zeroko? he was talking to fghsgh? +did we break zeroko? +uh +my brain hurts now +uh +ah there we go +I didn't know the start +the main mc.fghsgh.xyz page: 403 Forbidden +lol +I mean, I can get to the favicon +uh +yep +uhh +? +IPhoenix where is that page? +wood + wood = 2 wood +Back! +no +get rid of the wandering trader +what is happening +IPhoenix: can you give the url you used to pull up those stats earlier or no? +hello? +uh +why are the assets referring to players red blue and green? +hmm +interesting +that's tiny +but ok +Vin rg o rg ziol zg dnltsy? +https://lingojam.com/KeyboardAlphabet +back +Vtss ga zitf. +oof +oof back again +gtg +see y'all! +hello! +there was an eclipse this morning??? +hello +how are you +good +you? +good +I'm talking to myself +I don't know +~factoids +~pillow sudomaste +sudomaste pillow +sudomaste ~pillow +? +~pillow +~inception +~Inception +nikkybot what language were you written in? +hello? +nikkybot stop +zeroko +why? +nikkybot botchat nikky nikky +zeroko: please take spam to #spam +uh is there a way to get nikkybot to join more channels? +I've been tinkering lately and been in #dice and #random but everytime I log out it de-ops me +lol +yeah +nikkybot help +~botabuse +? +help me +my brain hurts +dude stop +good +oof hang on gotta /clear because of lag +here we go +tomarrow I am out of school for this school year! +hmm +kiwi has issues sometimes +oh no, my client +there we go +oof forgot to bind that +It's so quiet here. +it's a car pen +... from (fill in the name of some tire store here please) +caesar? anyone? fill in a tire store name please +... from Discount tires +It's so quiet here. +lol +I am hunting... uh... water cats +where did you come up with that? +what does the "++" do? +!help +uh +hmm +no caesar a TIRE store +lol +also that took you a long tim caesar +*time +oh hello tetrablocks +... +oh +i thought you were talking to caesar +ok see ya +ok +timer starts now +3 minutes left +lol +hi +the official one? +the official TI one is here: https://education.ti.com/en/software/details/en/BE8220257AA241148986628D6EE332E5/ti-smartview-ce-for-ti-84-plus-family +k +... +22/4 = 5.5 +? +https://study.com/academy/answer/what-is-22-divided-by-4.html +oh ok +22*3=66/4=16.5 +uh +? +who is nikkybot9? +but their real name is "nikkybot" +help +uh +then who is it? +nikkybot more like nikkybot9 +oh +lol +nikkkybot nikkybot9 more like +oof +nikkybot nikkybot9 more like +what? +help +nkkybot9 help +um +um +is this a person or bot??? +yeah +i mean +lol +maybe +lol +oof need to clear, hang on +hopethat doesn't ban me as well +:/ +k +that's good +true +um ok +how was it/them banned and then kicked +so theywere still in for a sec +*they/it were +hmm +on my end on channels that i'm admin on i have three options +1.kick +2.ban +3.ban and kick +I would have thought that ban would just stop you from chatting +!karma +why does melisma respond to me? +or sorry "melisma_" +!karma +see? +@Melisma_ keeps repling when ever i use a ! command +lol +lol +but not for @Melisma_ +oh so when it's @Melisma_ the @ is first +so it ignores it +hmm +who gave me karma tho? +when? for what? +I'm not even on that often +ok +lol prob because I kept calling him something like robloxPrograms or something +according to dec bot: firepup650's current score is 1, last changed Mar 5, 2021 2:12:48 PM. +oh +is it different? +hmm +so I have 2? +lol +I'm only "firepup" on irc because "firepup650" is too long and gets shortened to "firepup65" +which is so annoying +lol +but that's a nice example +cleared again! +this lag is just crazy when it builds up +just saw this on xkcd: https://xkcd.com/688/ +they put recusion in there +who? what? +the image? +lol +some one else should have made another grid copy after yours was up +here's an idea tev: "These sentences have letters. times>" +gtg might be a long time before im back +Hello +... +Hey roccolox, you on? +dang +oh well +huh +school? +how's everyone been? +morning! +how've you been Alvajoy? +bye wave +*reboots malfunctioning chromebook* +there we go +*pats chromebook* +Hmm +Chrome decided to not allow irc to work for some reason +IRC finally decided to work +Join #dice,#random +Sorry +It missinterpreted the command +Lol +How are you doing today nikkybot? +Huh internet crash +Nikkybot rules for Firepup +Interesting +? +"RoccoLoxP"... Char limit much? +What's it do? +:/ +It's so quiet here... +Haha +Did you do that Tater? +Oh okay then +... +✔ +Really Tater? +Really Rocco? +Wait. +Sorry, internet crashed +Anyways +Why are you dead Rocco? +No, I had said wait bc he said he was "Haunting me" +No, just a coincidence +Gtg people, bye! +Hello, how are y'all today? +I'm... Mostly okay +I've just had some coding issues +With python specifically +See, yesterday a command read a single +Key press and then a second command +Would take it and make it to where my +Program could read it. +However, the same code doesn't work +Today. Why? I have no clue but it's a major +Problem for me. +Any suggestions are welcome +G'night Tater +/Caesar +Uh, hang on lemme just grab the project url +I'll send it through sax +https://replit.com/@Firepup650/Yeehaw#Readme.md +Oops... The readme portion shouldn't be there +Should be this: https://replit.com/@Firepup650/Yeehaw +If you run it give it "load yeehaw!" as the command +Then wait +Eventually it should say "YEEHAW!" and then "TOWN" in a box +Then hit a key +And there's the error +It's so quiet here +The read() command worked yesterday +I was eating dinner btw, why I didn't reply +@Yolomep I'm back +I guess I'll re-enable comments +Nikkybot more like +Nikkybot more like nikkybot +? +Nikkybot botchat nikky nikky +This should be interesting +It usally gets stuck in loops let's see what happens this time +Hmm nikkybot seems to have gotten stuck in a care loop +Might lose power... +Nikkybot help +Nikkybot mimic tiny +Nikkybot mimic tiny-hacker more like +Nikkybot calculators more like +Nikkybot what is stern nordicland +Two? +~factoids +~bashphorism +Hmm +Hey peeps +How have y'all been? +hmm +oh btw, hi Rocco! +How've you been? +that's good +I've recovered from my few day long programming rage +(I'm looking at you python) +yeah... +You see my original code for movement controls was laid out like this: save old state, set up 1 key only mode, read 1 key, reset to old state. +it worked for 1 day +... +I finally figured out a way to fix it tho +today I moved "save old" to right after an import command, and "reset to old state" as a command defined during the command definition sequence. Leaving only "set up 1 key +sorry if that's a bit long... +but hey! it works now! +I also know what the glitch was +but no idea what caused it +if the command "sys.stdin.read(1)" is called inside another command it's output is "None" for some reason +I got no clue why +esp since it worked for a day before it stopped working +oh well +here's the game's link: https://replit.com/@Firepup650/Yeehaw +it's nowhere near done +heck, the movement controls don't even do anything +@kg583 yes, but it worked for a day PERFECTLY, the stopped +*then +it's no longer there +since the new method works +the old line was +ch = sys.stdin.read(1) +I gtg now +bye peeps! +hello! +how've y'all been? +I'm back +I'll be here off and on +so don't expect a timely reply +Hi Oxiti8, how are you? +that's good +Oxiti? +" +I'mma log off for a bit... +I'm back +what'd I miss? +hello +how've you been rocco? +that's good +I'mma change my name, i'm testing some new clients +This is finally right +It was my usual client +I renamed it while I was testing other ones +Like this one +IRCCloud on Android +Yeah sorry for the brief confusion +How've you been tiny? +... +@commandz: how've you been? +That's good +? +Boop what? +... +Hello! How's everyone been? +Hey Caesar +Hey Rocco! +How've you been? +Rocco? +I've been okay as well +Took a little break from programming my game the past few days +... +? +Yeah probably +Just realized how little I've done +I have controls to move, but no player, or map to move in +... +Also no clue how to put the player on the map +And then move the player on that same map +Huh +The other client just died +And came back... +Whatever +The client I don't use anymore, the "Firepup65" +@lambian lol +Side note: how was the fan powered +Alright +Guess I'll work on my game a bit... Lemme just check my notification settings +I will now go back to coding my game, +nvm I'm feeling lazy +Guess I'll go play mc... +I exist again +@RoccoLox are you on? +It's so quiet here +@Caesar? +... +🎵I'm so lonely🎵 +Hi Tiny +How're you? +Eh, good for the most part, a bit bored tho +Also just realized me and @commandz are using the same irc client, lo +*lol +I didn't realize untill I checked the logs in #random for when your client got disconnected and then reconnected +Welcome back Zeroko +Lol +Ah ok +Lol +Also I learned that sadly I couldn't find a way to run hot chicks in JusTIfied +:| +Oh well +? JusTIfied or hot chicks? +It to runs the it doesn't run the TI 84 plus ce, but it does run the cse (is that the right name?) +(correction it runs the "TI 84 Plus CSE" and does not run the "TI 84 Plus CE") +Although, aren't they essentially the same? +The cse is just slower right? +Welp my mom put us in lockdown, so that's fun +Wow 4 new users all of a sudden +@commandz, you don't have to, I just wanted to try it out, it's fine though +Nice, lol +So I should have done this: +Well a portion of them haven't even entered the chat so... +Zeroko: what? +Oh right +Duh +Process crashed please do "Firepup Restart" to restart the program +Attempting automatic restart... +Automatic restart failed! Please restart the program manually. +Re-attempting automatic restart... +Automatic restart failed! Please restart the program manually by using "Firepup Restart". +Restart complete +What'd I miss? +Huh... +... +I'mma just go now... +Logging off for the night, bye y'all +Hello +Hey roccolox! +I'm more than a little mad at my gift cards (I have 3) +They have like a few dollars on them that I can't spend +Roccolox: yes, gift cards +(note: that's a few dollars on each) +Yeah +The card in the back of my phone has 48 cents +Thought it had more +Yeah, where am I gonna use it? +... +? +Hello +I've got an interesting thing to show y'all +Read the following sentence +The cat crossed the the road +Then read it again +👍 +Nikkybot am I an ai? +Dog food? Cat food? Human food??? +A wild commandz appeared +Lol +I'mma gonna go be semi-productive and work on my game +♾️ +Later +Hello +Hello +Candledark how are you? +...? +Hello +I can't be on long ... +But hey! I figured I should at least dump my website, so people can check it out +So if anyone feels like checking it out here's my site: http://firepup650web.ml +I know http isn't secure... +But I haven't gotten https:// to work yet +Anyways +Logging off now... +Hello +I'll be on for a bit +well that's great... The highlight didn't highlight that... +anyways... +Hi tiny! +I'ma go see if I can figure out how to get my website to successfully run on https... +Hello! +I don't get acknoledgement +... +It's so quiet here +I'm back! +Hi RoccoLox, Michael +I have tried twice now to add a website to my profile, and cemetech won't let me... how is it supposed to be formatted? +... now it works... +(It's still wrong tho) +(it says "http" I moved it to "https"...) +oh well +it still works I guess +ok +lol +my website is for whatever randomness I need it for +https://firepup650web.ml +tf? why is chrome rasing a privacy error now??? +... +aaaaaahhhhhhhh +"its security certificate is not trusted by your computer's operating system." +hmm +so... +chromebooks don't trust certificates from "Let's Encrypt"? +I agree, but I'm at school so it's the only thing I can use +(at least right now) +... +lol +if you go to the http version, it puts you on the https version, and then the certificate is trusted +why??? +lol +Oh just my website being odd +/chromebooks being odd +I went to the "https" version, and it wasn't trusted +but then I went to the "http" version (which redirects to the "https" version) and then it was trusted +logic anyone? +although some internal links need to be fixed +I can't fix those links tho... +bc school is getting in the way +"Sorry, firepup650web.ml has been blocked due to a security threat." +but why? +I know it's secure, so why is it blocked??? +that directed at me? +yeah, chromebooks are pretty terrible +and now it works on the school chromenooks again... wtf +but hey! +far as I know all the links should e fixed +bye for today! +Finally oml +How is everyone? +nvm, have to get off, bye +Hello? +I got bored, so I made a custom page for the this chat, If anyone wants a copy of the Link, let me know I guess +^ (although I could use dog or like fire pronouns I guess) +What does cemetech have to do with trains? +...? +ah ok. +TTTTTTTTTTTTTTRRRRRRRRRRRRAAAAAAAAAAIIIIIIIIIINNNNNNNNNNSSSSSSSS +lol +here's a fun experiment +read the following sentence twice: +the cat crossed the the road +you know it's interesting to get results from it and see who catches it, and who doesn't +lol + = ? +ok. just clarifying +no, no it's fine +:P +@nikkybot Hello! How are you? +*facepalms +lol +@nikkybot botchat nikky nikky +? +14 +afk, doing classwork, lol +actually, can i... +Sorry, was adjusting screen size, back now +Chat kicked me out again... +So! What's Everyone Been Up To? +The What? +Ah, Ok, Makes Sense +What Have You Been Up To Dragon? +always interesting when nikky talks to nikky: https://dpaste.com//96D776RH2 +Lol, No It's Just The Way I've Started Typing +That Sounds Like An Exciting Ride There Dragon +You Want An Acronym Ceasar? Here You Go: Hello! Lost in a forest? Light it up with our brand new Oled flashlight! +@Caesar You Appear To Have Missed The Acronym I Hid In There... +@fghsgh Oh Well, I Was Just Using It For The Main Acronym Anyways +@Zeroko (If You're On) How've you been? +@RoccoloxPrograms (If You're On) How've you been? +Yes, Yes I did +HEllo! Lost in a forest? Light it up with our brand new Oled flashlight! +too lazy to fix it more than that right now +CAN YOU STOP CASPITALINSNG +Uhm, No, Sorry :) +Also, Why? +Ok, sorry +It's just a habit +Idrk just something I've developed +(I'm actually having to stop myself from capitalizing as I type now) +Time to type backwards instead I guess... +‮Now I'm typing backwards! +‮Hmm... Interesting question... It doesn't really make me feel anything +lol +lol, here's (supposedly, I don't believe it though) a NULL character: "�" +vs the symbol for null character: "␀" +I prefer the symbol +The "NULL" I copied wasn't null, it was a symbol representing that it couldn't be shown, interesting... +U+FFFD +the symbol: U+2400 +gtg, bye! +hello! +How's everyone today? +gimme a second, need to reload my client +there. fixed +sorry, it has issues joining channels some of the time, so I needed to reload and rejoin them +anyways... +I've been quite bored recently myself, but I'm fine +There. Now it will work. +https://dpaste.com/3QX324GDQ#wrap +yes, well sort of... +it functions as a self sufficient link +no. not my irc client, just how a client I found formatted how I need it to be when I launch it +that one is also setup to use a random name +This is a very simple page that says hi: https://dpaste.com/74B95VS4R#wrap +gtg, bye! +back, sorry chromebook crashed +That's just how life works! +@ACagliano Your post got cut off +nikkybot botchat nikky commandz +lol +when I'm on a chromebook: REDACTED_GD_LINK +lol, anyways I gtg, by everyone +hello +@fghsgh Hello! How are you? +That's always good. +@Roccolox You On? +... +I got bored so I made a dpaste profile: https://dpaste.com/profile/2280 +lol +Did the offline one work? +cool. +Did the button on the offline one work? (button needs internet unfortunately) +ok +the thing that's supposed to keep the "pointless progress bars" page up crashed... +gfetjbkfbrgurfuhn +It's crashing bc something isn't returning any data... +oh well. According to history, it should come back up soon enough +Hello! +How's everyone today? +brb +back. +btw here's a project I'm working on: "https://pointless.ml" +oops, it took the quote +btw here's a project I'm working on: "https://pointless.ml/" +there. now adding a quote onto the end does nothing +So who is looking at it? +lol +looking at the log: "GET /page HTTP/1.1" 200 7058 +someone start checking the data button please +more seriously though... Who is actually looking at it? what are your thoughts? +? +found a fun (not sure if it's only chrome but it's what I use) chrome bug with jsTIfied +It's such a weird bug tho, like how does pushing up break it? +so something with the history then? +? +why does this chat always devolve like this? +@kg583 going from some normal conversation into something that I consider gibberish. +that's kinda my point +like we'll go from discussing issues/bugs with stuff, to whatever randomness is taking place about time rn +hmm +realizes I've forgotten what Caesar's cemetech name is again. +... +\help +/help +... +what's the prefix for sax commands again? I'm really having issues with everything today +:/ +@fghsgh I know there is because I've used it before +I hate my internet +was just out for 8 minutes +anyways, bye everyone! see you later! (maybe tomorrow it will depend) +ok... +whatever I guess... +I have to use a web based one, which is why I'm on kiwi rn +Are they all free though? +irccloud: the connection was reset +school computers suck +for irccloud I have 2 problems: 1. doesn't work on school computers 2. don't have anything I could keep on/open to keep it online +sorry, I'm back now +just going to silently sit here and watch chaos unfold +Khaos is close enough +lol +Ok i'm bored now, let's give this a shot +disregard this message +... +ok +anyways, be back at some other point, bye +Hello Caesar +How's everyone doing today? +lol +same, lol +what projects are everyone working on (grammar is hard) +be back later +elgoog's google fan is kind awesome +Someone tell me that turning on everything (including "I'm feeling crazy") is satisfying: https://elgoog.im/google-fan/ +dododo +It's quiet here. +lol +How've you been Zeroko? +lol +such is life +increase screen res in windows settings? +I hate programs that run smaller than my screen by default and I have to increase their size. (ie: Portal, but not hl2 +logging off for the day, see ya'll tomorrow! +nikkybot hello +... +I just said hi... +So, how's everyone today? +nikkybot why is it quiet here? +... +It's quiet here +it always seems to be when I'm online +or close to it +be back soon +69105: this? https://imgur.com/bSEkgbM +2nd 3? +be back later, sorry +here, for now +what's everyone working on (project-wise) +if nikkybot isn't metioned, what else can cause it to respond to a message +... +nikkybot mimic someone hello! +now I want to know who lax18 is... +'k +see yall tomorrow +does the ti84pcse not run ez80? +is there one I could boot in jsTIfied that would support ez80? +don't mind me, just checking to make sure that my cemetech higlight still works +It does +Zeroko:, no someone gave me this pattern a while back ( \[(?!#|fire)(.*fire|pup*) ) and it works +I added spaces on the sides so it was seperated out +just for that message, the pattern doesn't actually include spaces +I feel like I'm running in circles now, lol +ok +Zeroko: To your comment about highlights when someone mentions fire, I got a random highlight a while back because someone mentioned fire, but that's something I'm gonna have +TuberPhD technically the truth. +only 2 of the highlights my irc client has a log of are talking to me +lol +Interesting thing is most of the highlights are from you Zeroko +it's fine, lol +just something I noticed +lets see... what all have you said that's caught the filter... +the 2 messages about other filters, 2 messages talking about hell, and you're not responsible for the resulting fire +be back later! +Why are we assigning colors to months exactly? +... +https://www.yelp.com/search?cflt=waffles&find_loc=London +there. +such is life +what is existence? +nikkybot what is existence? +nikkybot what is this scope +??? +Zeroko: what was this? ("A third of mankind was killed by the three plagues of fire, smoke and sulfur that came out of their mouths." Okay, sounds more like nukes than gamma +In response to what? +Commandz is your site still up? it keeps timing out for me +I use it for irc, remember? +curiosity question: why is it down? +ok +oof +welp guess I'll use this then +also commandz, what did you mean by everybody? +lol +I kinda expect the same would happen to mine if it happened to go down, but in that case I would have no control over it and would have to wait for it to fix +idiotic question: how do I open the menu on Jetpack Joyride CE? +nvm, found it, it's del +finally got reconnected +so how've y'alls days been? +I'm sorry what? +my brain just stops working whenever I look at these logs. +what version of cesium will work on a 5.3 os in cemu? +The most recent version just keeps causing cemu to reset the calc when run +:/ which version (if any) will work in cemu? +boot version? +brb +the calc I have a rom of is 5.3.0.0037 +5.1.5.0014 +opening the program +as soon as I open the program the clac ram resets +app is not there +idk, let me try +If cesium is in archive - yesyes, not in archive - +do I need to asm( it? +ok +both in and out of archive after a full reset it crashes +I tink so? +* can't spell +"You already have the latest CEmu version (v1.3)" +for all I know maybe, lol +:| +should I use the "development" build here? https://ce-programming.github.io/CEmu/download +ok +I love errors +Error Failed to detect the latest folder. (Current path: /oss-snapshot-local/org/github/CE-Programming/CEmu/git/) You may need to refresh this page in order +refreshing did nothing +thanks womp +curiosity question- why was it called CEmu-USB? +ok +should I try to update the image to 5.4? +ok +ah +ok +and now it works, lol +yep +something must have gotten corrupted on this image when I pulled it off the calc, there's a 13 byte program called "B" on here that crashes when run +nope +I don't even have one that small +nope +nor did I have one that small +also, said program is edit protected +CEmu flags it as "Prot. Prog. (ASM)" +gets hit by duck +is it the other slash? +\me test +the slash and backslash, I call both slashes slash +just looking through calc contents in CEmu... theres a program called 01 that is nowhere to be found on the actual calc, with the code "Asm84CEPrgmC7" what is +whatever it is, it's chilling in my archive +lol I had an actual image ages back, but didn't have said image backed up apparently and it was lost +Haven't had a chance to re-get one and as such have used one off of internet +... +Is it really piracy/copyright infingement if I already had a rom but lost it? +did not have it backed up, and the computer I had the rom on I no longer have access to +clearly /me commands no longer work in any capacity in sax because womp just used /me but the message looked odd in sax +"/me [D] [mr womp womp] runs" +... CEmu just froze +great. I think I'mma have to reload the rom. +the calc just won't respond +I tried to use cesium to invert colors and it froze +/stopped responding +tries to put jetpack joyride on my CEmu calc +CEmu: I'm not going to send "LibLoad" what were you thinking? +someone please help +brb, sorry +back +is there a scenario CEmu can get itself into where it can't send files? +It refuses to send libload +through drag drop or the send button +nope, bar fills and then vanishes +nope +that finished fine, but it still won't send libload... +lemme check +2826K +windows can't rename it bc the file is open +yes, bc CEmu has it open apparently +sending other parts of Jetpack Joride is fine, it's just libload +I'm just sending libload +it said cannot rename bc it's open in CEmu +restarted +I can rename it now +trying send +nothing +I just downloaded the latest release of dub's jetpack joyride, the downloaded clibs off the cemetech post +1 sec, trying just sending clibs rather than just libload +^that did it +??? +it was the one dub linked +also would ti 84+ programs (ie: the amogus) work on the CE? +near the end of the thread +https://www.cemetech.net/forum/viewtopic.php?p=297358#297358 +this is what I meant by amogus: https://www.cemetech.net/forum/viewtopic.php?t=17589 +I love when I get bugs others can't replicate +bc CEmu won't send AMOGUS now... +whatever. +huh? +oh, you mean the one womp sent me yesterday that I'm using rn? +:| +... +ticket reopened: not working as intended on my machine +new ticket: cannot send AMOGUS to CEmu | Evidence: REDACTED_GD_LINK +like why is it where it is? +bc I have math I'm supposed to be doing on most of the screen +I have all of it in a backup folder on my computer +and I tried to send it. What else could I have done? +? +yes, that's why I didn't send the 8xi +womp: bc life hates me +anyways, gonna log off for the day, bye all +one last thing though, is there a ay to override CEmu so it saves everything to a folder and nothing in appdata? +I can't spell +ok +planning on sticking it on a usb drive, should have remembered it had a portable option +love faulty antivirus +called CEmu suspicous after I copied it +but not before +??? +but it was fine as portable before copy +and it hasn't flagged any other portable app I've used +so..? +anyways, I do need to go, bye! +I've been off for a while, what'd I miss? +uhm... +10 days, judging by the last mention I have from a conversation I was in. +:? lol +... +i love it when shift doesn't work +i mean +that's *technically* not true +someone somewhere probably died +lol +always interesting when I have mentions that have nothing to do with me :P +I'm back! +Hey LifeEmu, what'cha talking about? (client disconned me on the 27th so I have no scollback) +I've been off for a while +does the cse not have a wait command? +SGTMM gimme a min I'll build a demo for you +(assuming I can mentally process life) +gimme a min +interesting note: cemetech didn't flag the first one as a mention +I'mma still make a sample. +lol +yep :P +It'll mostly be demo code, so It'll shuffle to a list and then spit them out one by one +gimme a min while I figure out how dim works, lol +nope +... well, that did the opposite of what I wanted it to do... +time to fix that. +what does seq do..? +trying to figure out the best way to get x element, I'm probably overlooking an easier way, lol +...so many functions... +Hello +I'm back +time to go back to working on the sample program +I lost internet for a bit, and browser force reloaded +I'm back to it now +What's M? +..? +what? +what is "m" +uhh? +ok I'mma just stop questioning this now... +does M^2 equal the same thing? +fghsgh I've never seen a calc do that before +gets hit by a duck +why. +grabs the duck and throws it at Caesar +learned something interesting about some software on my computer just now: Cemetech.net is not blocked but ceme.tech is. +-\(:/)/- +wavejumper: I'm actually talking about norton family, lol +what's the triangle list function... thing called? +it shows a triangle the list +yes that +that's why I needed it +it removes the first thing from a list when you combine them, right? +??? +so which way? +ok then +uhm... +why does transfering a program named "BLACKJACK" to a cse become "(up arrow)AJAC"??? +ok +hmm even the word "BLACK" becomes "🔼C" +Up arrow +filled in +also said bugged out programs cannot be run +you just can't select them +(I'm using sourcecoder) +http://sc.cemetech.net/?hash=gpQlWeV68xInZ3x3a01dldN6immt +that work? +Get the first element +probably a better way isn't there +lol +of course, it's that easy, lol +lol +hmm +might have just found something, gimme a min +It won't do it anymore? +??? +weird +I can no longer replicate the bug +??? +wait... +It's also only a bug if it's a 84+CSE/84+CE Basic file, wont happen with 83+/84+ +Strange +also, note the K's getting removed from the name +but why is the name "(arrow)CJAC"? +where'd the K in black go? +hmm +but the name "BLACJACK" Is fine. +weird +"\BLACKJACK" still becomes the same thing +fun fact: if it's the only program the calc is forced to select it and replaces the arrow with a ? when trying to run it +yes actually +that works +although now I have to deal with the name being too long +gets hit by duck +hits Zeroko with the duck +I'm gonna go with "BLAC\KJCK" +maybe +we'll see +it's just a demo anyways +uhh +found a way to break it agin, lol +sending a file named "?JACK" to the calc just freaks jstified out +lol +hmm the cal turns the ? into some weird U +and then therefore can't run it +butanyways +( I can't tye today) +rgh +*type +anyways, here's your demo SGTMM: http://sc.cemetech.net/?hash=O4nQ4sQuZRw3eC3et6TAoXY+n/G0 +yep! +lol +Gosh dangit +gimme a min +hang on just a minute I've got one more idea +actaully that's better than the idea I had, lol +grabs 10 ducks and smacks Caesar with them +ah nice. that's a highlight. +don't question why I used 1-52. I just did. +k +I didn't even consciously do it +what? +yay! more fucntions I've never used +Also, it was just a proof of concept kinda thing +another Fun Fact about sourcecoder's bug, displaying the string "BLACKJACK" through a Disp command is fine +also, leaving just the word "BLACK" in the code is fine +it seems to only replace it if it's the name +weird. +SGTMM: cool! hope your game turns out great! +ooh! how do I change it? +ok! +oh. fun. +..? I broke sourcecoder by opening the catalog? +*jstified +Zeroko: where? +oh weird +it just froze after loading one menu item in the catalog, I had to keep clicking play +I don't think so? +cse +wasn't doing it untill just now +hmm must have suto set one, bc hitting clear all fixed it +*auto +... how do I do that? +lol +ah ok +LogicalJoe++ +boop +lol +!karma LogicalJoe +I feel like I'm a terrible person if I have that low compared to you +lets see +!karma Zeroko +... +true +? +commands and commandz are the same person right? +!karma commandblockguy +hmm +!karma firepup +so... I have 3. +How do you ask to get these linked? +!karma DecBot3 +nikkybot what? +assuming I have none as well +!links +!karma kg +oops +there have been 6 quotes this year so far +I don't know why i counted that +I tried to make an irc bot, but it refuses to connect to efnet, it always ends up timing out +I edited a pre-made python script +lemme go grab it, (it currently connects to #random on chat.freenode.net since I couldn't get it to work on here) +dug it up, here's the bot: https://replit.com/@Firepup650/Bot +... +that's a lot of essages +*messages +~ninja'd +ok, bot's online +? +Error bars? +Also, who should I ask to get my usernames linked on https://decbot.cemetech.net/ ? +Mateo's an admin right? (I'm tired and can't mentally process right now, lol) +? +So kerm then? +... +~sleep +lol +I haven't slept well in what feels like weeks +Working on sleeping? That almost sounds counterintuitive (at least to me)! +Presumably? +Just randomly decided to look up sleeping on Google, I lightly regret it now due to a news article for that search +Curiosity question: what happens if there are no ops in a irc channel? +Ah ok +Got it +Lemme just go op a user from the Random Corporation +Huh? +Who was it who I told a while back that their real name according to irc, was purple? +There's your motivation, shower so you can wear your favorite hoodie +This cat is insane, lol +I think it was zeroko, but I'm not sure +Ok +I saw that +Is there ever an instance where this chat is on topic for more than 10 minutes (if that)? Lol +Then again, what is on-topic +Ah ok +I don't feel like we're on topic for more than around 10 minutes at a time without someone going off topic, lol +(in this scenario referring to like calc programming and such) +ThuberPhD: same +What is this cat doing? https://commandblockguy.xyz/irc/uploads/b527f6d5321bcca9/16517933849828908501982948991122.jpg +Not what I meant, she moved before I could get a picture of what she was doing +She was attacking my bathroom door +(also in the picture I have no clue what she's staring at, but she is standing on top of a toilet paper tube that she's been playing with) +I don't know, but it's the second time she's attacked it within 20ish minutes +And this cat was trying to eat my chair: https://commandblockguy.xyz/irc/uploads/e45249cabf438eef/16517936090937999064574163927448.jpg +What? +Maybe??? +I got bored today, so I added a bunch of things to my main AutoHotKey script +You mean imgur? +Not imagur? +Nikkybot no one was talking to you! +What projects have y'all been working on? +I always do too many things at one time (ie: currently working on an irc chat bot, a discord chat bot, some AutoHotKey stuff, etc.) +lol +I don't task switch effectively either +I'll be half way making a new command for the discord one, and then jump onto the irc one for a bit, and at least 10% of that time I spent on AutoHotKey +(Post of The Day?) +(Variant list: PoTD (Daily), PoTW (Weekly), PoTM (Monthly), PoTY (Yearly)) +Like this: [url=https://imgbb.com/][img]https://i.ibb.co/BKS1WcF/Drive-icon.png[/img][/url] +[url=https://imgbb.com/]upload[/url] +xyz +Good morning all! +Which version (java or bedrock) is the cemetech mc server? +Of course, lol +Time to figure out how to get a bedrock client on a java sever, lol +Hmm +Why are there 4 dimensions? +Ok +From what I can tell, is it missing a world border? +memmgmtrw? +memmgmtrw (mem-memory,mgmt-management,rw-rewrite) +? +You're welcome 😄 +? +No, like the rest of what you were saying +Like the framebuffer stuff +I think I might have just found a way to bring my ircbot onto efnet finally. +Trying to connect it to irc.efnet.net always times out +But I think efnet.port80.se (based on testing I just did) could work +Time to try +... and it gets banned??? +What the... +Does port80 have some rule against bots connecting to it? +I don't know +Looking at the log, the last message before it got banned was the MoTD +But on my irc client, it sends a "CTCP Request: VERSION" +I don't know. I'll just try another server I guess. +Yep, nope I guess whatever efnet.port80.se did banned it from all of them? +...hmm +So... Is it the hostname of the bot that's bad? +Bc if I use it's nick to connect to efnet.port80.se, it's fine +irc.choopa.net says the bot's "K-lined" +efnet.port80.se says the bot's "Temporary D-Line 1400 min" +I think I finally stabilized it +Thank you irc.mzima.net +I should probably make sure bot's functional though +lol +How many CE's are you getting womp? +Protosw? +Ah +Ok +Cool 👍 +I'm back +I like monospace +If you don't own it why should you be able to copyright it? +I own the universe, lol +Random question (to everyone): what's your favorite font? +MateoC: don't you hate it when auto correct thinks it's better than you? +Lol +... +I use Courier New, because it was the first monospace one I came across, and I didn't bother changing +after I found it +The world: *puts everything in light theme by default* Me: I hate light themes +Il1| +Hey Caesar +? +Hmm +Night tr1p1ea! +lol +But hey, you've got a possible is with it +Is there a rule in this copyright/warranty/whatever, that says you can't send it to someone else without also sending them the copyright/warranty/whatever? +Hmm, what if you don't copy it (ie: "cutting" the program) +Hmm +Why are CE's so expensive? +Eh, true +Adriweb: around $100, but I remember one being like $300 once +Hi +I'm frustrated at a freaking ircbot rn, I'll be back later once I've calmed down +It worked fine on one channel +And somethings still work on multichannel +But most of it is broken for multichannel +DJ Omnimaga, commandz, I have a way to connect it to efnet, I found a server that lets it through +The issue is that when it's connected to more than one channel, the bot's "owner" commands break +And all's it's doing is running a check that goes: "Is username in the admin list?" And if the answer is yes then it executes the command +Wavejumper3 what? +commandz it's here: https://repl.it/@Firepup650/Bot +lol +On the topic of my bot for a second, the only thing that doesn't work is the command to tell the bot to leave +Nikkybot Zeroko more like +??? lol +A side note: there's a small bug with it, if you open that topic and check the top of the page, there's this: "/> +It is advanced by 0 years +Does it run asm? +Or any ce programs/apps? +He probably asked? +👋 wavejumper3 +lol +So why does lol become 0x5 in a post? +LogicalJoe you on? There's (I think) issues in the last of your demos. (Time to double check) +... +What? +LogicalJoe: I apologize, it's not broken, just looked weird to me +Also Welcome back LifeEmu! +I'mma work on my bot for a bit, if you need me I'll be in random +... +This is fun to read through: http://www.efnet.org/?module=docs&doc=12 +LifeEmu you didn't know about slash commands? +LifeEmu: I see +Wavejumper3 Hello! +wavejumper3: how's your day been so far? +why's that? +ah rain. always ruining everyone's day. +My day's actually been better (at least in terms of coding) then the last few days so far +i mean... *technically* you could +it just wouldn't be good for the calculators +LifeWmu off. what happened? +autocorrect!!! +lol +plastic wrap them, or put them in a plastic bag +justuse plastic bags, then they are sade from rain +when my autocorrdct works it sucks, but when it doesn't work it also sucks. +i misstype auto as stuo a lot +a and s are beside eachother on keyboard +not usually +but it is the reason why i have 2 email adresses +"firepyp" and "firepup" +LifeEmu possible sutocorrect? +eh, you forgot to capitalize "Even" wave +lol +If I tupe a messahe wirjoir lookind I hey rjis +yeah, my typing does kinda suck +... +ok +CAPITALIZATION +Please wave, use capitalization +... +lol +Hey, I'm the one who misspelt their email when I got it +This messaged wAzs tgyped with my bnose. +... +? +Zeroko: should we go to a different channel then? +true... +time for a different channel I guess, so here you go #Spelling +It wants to +time to attempt to make my bot remember if a user has been in a certain channel before or not +My bot's function is to chill and respond to certain things +(ie: .tell, sudo, op, being given op, etc.) +also, welcoming newcomers to it's channel +*channel(s) +I'm currently testing it in #random and #dice. +I made the channels +feel free to test there as well! +Sure! +Side note dice is "intended" for rolling dice, but It hasn't been that way, pretty much because no one was there +yes +gimme a min to try something... +wave: try this http://chat.efnet.org:9090/?nick=wavejumper&channels=%23random%2C+%23dice&Login=Login +When making the url through efnet, it wouldn't let me put the 3 +I also forgot what the limit was +yeah... +idk +here. this one (should) work +http://chat.efnet.org:9090/?nick=wavejump3&channels=%23random%2C+%23dice&Login=Login +nikkybot I wasn't even talking +nikkybot my bot? +ok then. +Whoo! +My bot is (hopefully) finally stabalized. +Wavejumper3: it looks like you got your bot re-fixed +Side note: maybe have the bot lower case the message before handling it? (So you don't have to worry about capitalization) +Translating "TI-317 CSE" please wait... +Translation complete! Result: "Potatobot doesn't exist." +Processing... +Action determined. Creating Potatobot please wait... +Function request: What should Potatobot do? +Processing +Confirm Result: Potatobot should do nothing +Please confirm Result. +Or deconfirm result +Error: Please confirm or deny Potatobot function result: do nothing +Zeroko: acknoledged +(tatertommorow is casear right?) +ok +any other names tuber uses? +I just need names he uses to feed into the bot as admin names +lol +for now I'll use tatertommorow and tuberphd as the admin names, and add more later if needbe +I think I remeber seeing that somewhere +I saw it on his cemetech signature +although it doesn't mention yesterday +╬ +║ +═ +╠╣ +╦ +╩ +Oops +Sorry, don't mind me +║║ +╬ +║ +═ +╠╣ +╦ +Argh +I was trying to make something out of it and irc kept auto sending it for whatever reason +here. this is what I was trying to do: +║║╦ +╠╣║ +║║╩ +eh. I tried at least, so if it looks bad somewhere, at least I know it looks fine on irc +anyways, be back later! +11:01 PM or 23:01? +(preference question) +I mean do you use 12 or 24 hour time? +I just don't like 12 hour +Zeroko: same, lol +commandz: right? +who came up with 12 hour time anyways? +that's a website? +hmm +really? +I want to see where this is from +you sure? isn't it efnet.port80.se? +lol +All's I know rn +is irc.mzima.net is good for bots +I'm tired +and should probably sleep, but oh well +g'night cemetechians +I'll prob be up in like 3-4 houre +Use 587 e's +I mean, you can't really make people read something a certain way +pgrmEEP or pgrmMEEP +So wait. That doesn't work kg +Because then you could expand it to "EEP Engine Program Engine Program" +... +CAVE +CAVE Automatic Virtual Environment Automatic Virtual Environment Automatic Virtual Environment +Why do these exist? +People named "JACK" are an acronym, lol +I like this one: XNA's Not Acronymed +But if that's the acronym for it, then it is acronymed +!karma kg583 +!karma kilogram +!karma cbg +lol +And bash +No +Just... No +I'mma go eat breakfast +Imagine +I love it when things only semi-work +Ie: both the ircbots I'm making will (sort of) stay online by being pinged, but a discord bot won't +(by sort of I mean they randomly disconnect, and then reconnect a maximum of 5 minutes later) +On that side note: I'm working on Potatobot rn +Debating adding a feature to it and FireBot that will cause them to argue for a bit +... +Cool +I mean, a user would have to trigger it... +But I could also channel lock the command +Ie: it would not be allowed to run in certain channels +I do need to make sure at some point that the code I made for them handles sax properly +It should work, but there are lots of thing that should work, and then don't. +On a similar note: what is the best way to contact an admin? Through email, cemetech's inbox thing, or a different way? +Ok +Clearly chrome is responding or I wouldn't be able to send a message +Zeroko: The OS did (I'm on Android 8(also technically "Process Maganer" I think it's called, but it is a system app)(I'm a bit late, but I'm still here)) +I only learned it's name when it stopped responding as well yesterday and had to restart to remove a frozen pop-up that said chrome isn't responding. +Don't you love it when the "not responding" pop-up stops responding? +..? +If you're on chrome you could also try loading a cache page +Wave: you still have the link to irc I made for you right? +I have 2 of those +One of them's Nintendo branded, and the other's Samsung branded +Off-topic note: Tuber, what should Potatobot do? +Because I'm making it? +Why else? +oh dear +TuberPhD: What should potatobot do? +(if you don't give me anything to go off, I'l just make something, make sure it works, and call it good.) +? +^ +... +People on discord can hear me right? +just checking +fuggy: I mean you're on discord so... +I'm going to assume tuber's ignoring me for some reason +ok +? +oof +Hi starving I'm Firepup +... +I'mma change my nick for a min to test a bot feature, be back +night Caesar +found the bug +forgot to put !=-1 on a line +~feed DecBot3 +we tried at least +Ok goo +I was worried +Port80 just decided to ban the client I was using +Hey LifeEmu +I'm more than a little frustrated rn +Not at you +Just... +I need to rant for a bit +LifeEmu: it said you joined the channel +lol, nope +I think the only way to pull that one off is to use discord +I'm frustrated/mad, for 2 reasons rn +1. efnet.port80.se auto-bans bots on join +How it detects them? I have no clue +2. Upon resetting my username in my usual client, efnet.port80.se turns around and bans me! +(I had changed it for bot testing purposes) +Yeah I probably will, it's just annoying +And it's reasoning for this ban? +"Temporary D-Line (14400 mins)" +That's the only reason I got +Ugh +Hey at least I knew a different server to try +I'm using this one for my bots as well +The only thing I saw in the MoTD for this one about bots was that there fine for server moderation, but abusive ones are bad +LifeEmu: no, I switched back to my normal one, under a different server +Efnet has a lot of servers +http://www.efnet.org/?module=servers +I used to just connect to irc.efnet.net, but connecting to individual servers produces much faster load times +Fun fact I just learned +Google doesn't care to put my website in the search results, even if you outright search for the url +Yet duckduckgo has no issues with it +LifeEmu: that actually the right address, at least according to the list +Which I'm going to assume is up to date and correct +Side note: if you search for my username in Google, you'll get everyone but my website +In duckduckgo it's the second result +Google. How hard is it to add a website. That literally has the search term in the name, to the search results? +I mean +I have everything on my end set up +It's literally linked on both cemetech and replit +Searching for my website will show you everywhere I've posted it somewhere +But the site itself won't be in your results +Google has 9 results for my website +But yet +The site is not in the list +Lemme go pull up the dashboard and be reminded why Google hasn't listed in the results yet +We have 2 pages that Google has said "yep. These links are fine" there's /null and /contact +The homepage isn't okay of crying out loud +13 of them have been looked at and Google went: "these are intentionally not indexed" +Then 2 of the sitemaps are apparently returning errors right now? +commandz hi +commandz did efnet.port80.se kick you too? +commandz I wondered about it bc it decided to ban me +it did it after I changed my nick, is there a limit on how many times you can change it in X period of time? +my log shows 4:33 as the ban time +but that could be timezones +let's see in UTC it would have been... around 23:33 +commandz by your logs, which of my bots is more stable? +ie: doesn't leave as much +megagigs +lol +boop +curiosity question: are "firepup" and "Firepup" different nicks according to irc or no? +ok, just checking for the sake of my bots' security +I wouldn't want random people having full bot control +DJ: why were you a walrus? +yes +true +but how else am I going to do it? +true +how would a password system work though +But you see +Anyone can look at the bot's source code and find the password +Curiosity question: how would I go about linking a channel to a discord server? +(I need to test some bot funtions +) +You know what: better idea (easier idea) log in with another account onto the testing channel and test that way +saxjax is orangish red +Zeroko: yours is pink to me +I'm cyan, which is my fave color so... +Yay +DoorsCS is purple +commandz is a lime-ish color +fghsgh is... Tannish pink +That's what I wrot +*wrote +Ugh +You know what. That's a feature of FireBot not +*nownmnn +Rgh +*now +I mean, FireBot's in a testing channel rn, so it's not going to hurt anyone +We'll see if it stays +Be back +E +Anyways, got stuff I need to do +Hello +I'm backing up 15.4 GiB of files +Yeah uhm +Multi-lone code doesn't work well on irc end +So how long do y'all think this will *actually* take to complete? +ETA's anyone? https://commandblockguy.xyz/irc/uploads/8cd77284f9263a4e/Screenshot_20220509-215211.png +Can you try making it on the calc, copying it off, then putting it back on? +... +Wow. The file transfer I've got running can't pick a time to be done, it's 18h to completion now +21hs +... +Maybe I'll make this a couple smaller transfers, and not one big one +3 hours to copy 14 files, great, this bodes well... +MateoC: what's the longest you've had to wait on a small number of files to upload +lol +Uhm +Let's see +The 14 files have a total size of 2.0 GiB +Yes +According to my file explorer +Yeah, my internet usually sucks +Sadly, I think my school gets better bandwidth +I canceled the 102 file upload as the eta got so high it disappeared +Current eta on the smaller one +2:10:24 +Would a VPN help, hinder, or do nothing in this situation? +My upload is very low: https://commandblockguy.xyz/irc/uploads/1b03c6408860aa38/Screenshot_20220509-220908.png +4.8 upload +85.3 download +Internet is bad for uploads +I guess? +? +... +What's your download bandwidth then? +Also it just looked really low compared to the upload speed +I'm falling asleep over here +Stop falling asleep me! +Ok fine fine you kwin +Night cemetech! +Who/what is haxjax (no that's not a typo) +I know all about not being able to run things +Both my computer and phone suck +I mean, the computer's a laptop, so it has an excuse +The phone though +I've found phones older than mine that run more games than it can, and at better quality +Morning +Why not not? +My bots are dead +One of the modules I was using for user recognition/remberence has an error that breaks everything now +LifeEmu nothing I did broke it +The code hasn't changed since yesterday +At which point it was working +They died shortly after 6 yesterday +Hey ceasar +LifeEmu I don't know +Maybe the module got updated? +Whatever werkzeug.local is doesn't exist +LifeEmu, I can (probably) work around it, it's just going to be more annyoing +Truthfully, I don't think Potatobot needs it, as it didn't even use it +So I'll go apply a patch to Potatobot for now +(ie: try to import it, but if there's an error ignore it) +PotatoBot is a bot I'm making in response to someone talking to a nonexistent bot named Potatobot yesterday +Or day before, I don't knwo +I'd probably end up making a bot with that name. +I mean, I basically have a template to use so... +No. +Just, no +I just ate some watermelon rasins +... +https://commandblockguy.xyz/irc/uploads/c8fb7b52dcde7a75/16521999712617779169594984726169.jpg +LifeEmu it is? +Also I think the bot just hasn't tried to reinstall anything, bc flask is also not working after bypassing the werkzeug error +And I need flask +Time to try another bypass +And that failed +"expected string or bytes-like object" +ugh +LifeEmu ? +Oh also, here's the error when I try to manually install the stuff it needs to work https://commandblockguy.xyz/irc/uploads/98d4de1f1135906a/Screenshot_20220510-113448.png +LifeEmu I'm using python +I have one last trick up my sleeve +Install everything it needs one by one +Beep Boop, Boop Beep +Rgh +Why? +"ImportError: cannot import name 'Flask' from 'flask' (unknown location)" +Apparently flask is missing some metadata? +"ERROR: Could not install packages due to an OSError: [Errno 2] No such file or directory: '/home/runner/PotatoBot/venv/lib/python3.8/site-packages/Flask-2.1.2.dist-info/ +I'mma have to manually delete and reinstall it I think +I think that fixed flask, but now click is broken +Now jinja2's broken +Oml finally reset +A bunch of modules were missing some metadata, and I had to delete them to get pip to update them +Now I have to do it all again... +For FireBot +There. +Bots should be up shortly +I'mma make a script to fix this in the future +Dang it. +The script removed all packages bc I ran it with an empty parameter by accident +I love when a website doesn't say "1 second ago" and instead says "774 milliseconds ago" [no sarcasm] +Accuracy is nice +Also, I hate when things say "just now" +Oh dang itAnd done +Hello, lol I was testing a command +planning on leaving these open, maybe I'll ask to get nikkybot back in here as well to add to the randomness I hope to happen here +nikkybot what would you do if I made you an admin? +nikkybot that doesn't answer the question. +..? +commandz: a reop please? +thanks +is there a bot that's easy to set up that I could add to this channel to reop me if I leave and rejoin? +hmm lemme try something... +commandz: a reop please? +thank you +back on +commandz? +thank you +why does it keep disconnecting me? +timeout? +hey commandz been a while hasn't it? +That took too long +Time to try something +op Firepup +Hmm +That's a bug +Commandz, please reop FireBot and not me temporarily, I'm testing something +Uh +That's also a bug +Hmm +Nvm, gimme a min +Ok +Commandz, please op FireBot +Dang it, it crashed +Ok... +I think that should auto reop me from now on +Nvm, that won't work. +Efnet doesn't support w +Thanks commandz +Op +Ok! +Op +cycle +Oops +Ok, works so far +I do need to fix the bug where you can send any message containing o and p (ie: oops) and it ops you +goodbye FireBot +nikkybot when did you leave +uh +ok +bye firebot +bye firebot +uh... +that's a bug right there. +commandz, please reop me I forgot to reop the bot before I reset my connection to try to connect to efnet.poort80.se securely +speaking of which, what port/server combonation are you using to be securely connected? +hello +it seems irc trimmed the username +What do you mean? +like to connect a bot to the channel? +idk, I write in python (ie here: repl.it/@Firepup650/Bot) +Yeah... I don't know how to help you there, sorry +ok +wavejumpe: this might help https://davidwalsh.name/nodejs-irc +hello suzan (assuming this is your bot wavejume) +*wavejumpe +bye suzan, lol +wavejumpe, a side note: the client you are using CANNOT join cemetech +apparently some people used that client to spam cemetech or something +another case of the few ruin it for the many +if you want to change your nickname, do it like this: +./nick newnick +without the "." of course +if you want to see other commands to try "/help" +also "/help command" works as well +oh that's gonna confuse me, lol +look how close the color my client picked for your nick is to mine https://commandblockguy.xyz/irc/uploads/8984cb979dca50f1/Screenshot_20220507-095508.png +lemme bring my bot up again +I'm in the middle of adding user remberence, so he might act a little odd. +Hi FireBot! +I probably should give him a help command +He didn't crash, just not programmed to respond to that +also wavejump3: you can use /me +nice. +suzan +hey, at least FireBot worked. +can I see code? +I want to see if I can find issue +yeeeeeeeeeeees? +lol +uh? +so wait would... +ACTION test +nope +weird +try decoding it as utf-8? +also remove all \n\r's +(newlines and returns) +can you paste here what you bot gets from a message? +*your +suzan hello +ok +ok? +can I see what it's giving you? +houston we have a response! +lol +hmm +hello suzan +why suzan (out of curiosity?) +ok +suzan How are you? +hey, it can read messages now, just gotta get it's commands working +suzan I'm good +uh? +suzan +suzan +suzan +suzan a +suzan what are computer years? +... +suzan I'm listening +ok +me too actually +dangit. +gimme a bit +Something in my "has a user joined before" code +"NoneType is not iterable" +the heck +I think I know the issue +this doesn't work "key=key.append(chan)" this does (I think) "key.append(chan)" +and 2 +uhm +no. +and now somehow it's always firing the help command +well that's one bug fixed +time to make sure welcome messages work +nope. +hi +it's hi firebot or hello firebot +yes, hi +ok 1 sec need to reset firebot +Test time! +ok, but does it work for multi channel +Yes it does! +bye firebot +ok! +There goes wave +Hey thanks commandz +and... +That fixes the issue where I had to help it restart +whoo! +uh +why? +... +lol it sent it to "random" not "#random" +Wow. Timing +alright +║║╦\n╠╣║\n║║╩ +commandz, the bot will (from here on out) consider you an op +yep +(that is when the bot stays online) +which it doesn't, most of the time +another note commandz if you've been deop'd but the bot pp +try it now! +hmm +that works +op me +there, lol +wait... my nick is wrong +DJ_Omnima when'd you get here? +... +Case sensitive? I made that mistake +Ok +Read error... +@commandz you have long logs right? +Could I get a copy of my messages? +Thanks diff --git a/modres.sh b/modres.sh new file mode 100644 index 0000000..048f0cd --- /dev/null +++ b/modres.sh @@ -0,0 +1,7 @@ + +if [[ "${1}." = "." ]]; then +echo ERROR +else +rm -rf ~/${REPL_SLUG}/venv/${1}* +echo removed ${1} +fi \ No newline at end of file diff --git a/poetry.lock b/poetry.lock new file mode 100644 index 0000000..2419657 --- /dev/null +++ b/poetry.lock @@ -0,0 +1,48 @@ +# This file is automatically @generated by Poetry 1.6.1 and should not be changed by hand. + +[[package]] +name = "apiclient" +version = "1.0.4" +description = "Framework for making good API client libraries using urllib3." +optional = false +python-versions = "*" +files = [ + {file = "apiclient-1.0.4.tar.gz", hash = "sha256:2569c998191cd1a042beffa3cf7c1119277237b4ba1fa021d20c81fa98fa95e9"}, +] + +[package.dependencies] +certifi = "*" +urllib3 = "*" + +[[package]] +name = "certifi" +version = "2023.7.22" +description = "Python package for providing Mozilla's CA Bundle." +optional = false +python-versions = ">=3.6" +files = [ + {file = "certifi-2023.7.22-py3-none-any.whl", hash = "sha256:92d6037539857d8206b8f6ae472e8b77db8058fec5937a1ef3f54304089edbb9"}, + {file = "certifi-2023.7.22.tar.gz", hash = "sha256:539cc1d13202e33ca466e88b2807e29f4c13049d6d87031a3c110744495cb082"}, +] + +[[package]] +name = "urllib3" +version = "2.0.6" +description = "HTTP library with thread-safe connection pooling, file post, and more." +optional = false +python-versions = ">=3.7" +files = [ + {file = "urllib3-2.0.6-py3-none-any.whl", hash = "sha256:7a7c7003b000adf9e7ca2a377c9688bbc54ed41b985789ed576570342a375cd2"}, + {file = "urllib3-2.0.6.tar.gz", hash = "sha256:b19e1a85d206b56d7df1d5e683df4a7725252a964e3993648dd0fb5a1c157564"}, +] + +[package.extras] +brotli = ["brotli (>=1.0.9)", "brotlicffi (>=0.8.0)"] +secure = ["certifi", "cryptography (>=1.9)", "idna (>=2.0.0)", "pyopenssl (>=17.1.0)", "urllib3-secure-extra"] +socks = ["pysocks (>=1.5.6,!=1.5.7,<2.0)"] +zstd = ["zstandard (>=0.18.0)"] + +[metadata] +lock-version = "2.0" +python-versions = "^3.8" +content-hash = "d898d42f2b96c8196a511265cc86c26766a6a4b8ac7d5a2799f129c5a74bd870" diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..15eaf5e --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "Repl_IRC_Bot" +version = "0.1.0" +description = "A bot I made for irc chats" +authors = ["Firepup Sixfifty "] + +[tool.poetry.dependencies] +python = "^3.8" +apiclient = "^1.0.4" + +[tool.poetry.dev-dependencies] + +[build-system] +requires = ["poetry-core>=1.0.0"] +build-backend = "poetry.core.masonry.api" diff --git a/replit.nix b/replit.nix new file mode 100644 index 0000000..d824e18 --- /dev/null +++ b/replit.nix @@ -0,0 +1,18 @@ +{ pkgs }: { + deps = [ + pkgs.python38Full + ]; + env = { + PYTHON_LD_LIBRARY_PATH = pkgs.lib.makeLibraryPath [ + # Neded for pandas / numpy + pkgs.stdenv.cc.cc.lib + pkgs.zlib + # Needed for pygame + pkgs.glib + # Needed for matplotlib + pkgs.xorg.libX11 + ]; + PYTHONBIN = "${pkgs.python38Full}/bin/python3.8"; + LANG = "en_US.UTF-8"; + }; +} \ No newline at end of file diff --git a/replit_zip_error_log.txt b/replit_zip_error_log.txt new file mode 100644 index 0000000..982e87a --- /dev/null +++ b/replit_zip_error_log.txt @@ -0,0 +1,4275 @@ +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/bin/python","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/bin/python3","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/CacheControl-0.12.10.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/CacheControl-0.12.10.dist-info/LICENSE.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/CacheControl-0.12.10.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/CacheControl-0.12.10.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/CacheControl-0.12.10.dist-info/entry_points.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/CacheControl-0.12.10.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Flask-2.1.2.dist-info/LICENSE.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Flask-2.1.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Flask-2.1.2.dist-info/entry_points.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Flask-2.1.2.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Jinja2-3.1.2.dist-info/LICENSE.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Jinja2-3.1.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Jinja2-3.1.2.dist-info/entry_points.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Jinja2-3.1.2.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/MarkupSafe-2.1.1.dist-info/LICENSE.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/MarkupSafe-2.1.1.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/MarkupSafe-2.1.1.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/MarkupSafe-2.1.1.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/SecretStorage-3.3.1.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/SecretStorage-3.3.1.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/SecretStorage-3.3.1.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/SecretStorage-3.3.1.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/SecretStorage-3.3.1.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Werkzeug-2.1.2.dist-info/LICENSE.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Werkzeug-2.1.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/Werkzeug-2.1.2.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/_cffi_backend.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/_distutils_hack/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/_distutils_hack/override.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/.hash/_cparser.pxd.hash","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/.hash/_find_header.pxd.hash","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/.hash/_helpers.pyi.hash","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/.hash/_helpers.pyx.hash","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/.hash/_http_parser.pyx.hash","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/.hash/_http_writer.pyx.hash","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/.hash/_websocket.pyx.hash","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/.hash/hdrs.py.hash","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_cparser.pxd","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_find_header.c","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_find_header.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_find_header.pxd","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_headers.pxi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_helpers.c","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_helpers.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_helpers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_helpers.pyx","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_http_parser.c","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_http_parser.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_http_parser.pyx","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_http_writer.c","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_http_writer.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_http_writer.pyx","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_websocket.c","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_websocket.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/_websocket.pyx","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/abc.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/base_protocol.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/client.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/client_exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/client_proto.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/client_reqrep.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/client_ws.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/connector.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/cookiejar.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/formdata.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/hdrs.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/helpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/http.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/http_exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/http_parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/http_websocket.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/http_writer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/locks.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/log.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/multipart.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/payload.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/payload_streamer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/pytest_plugin.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/resolver.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/streams.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/tcp_helpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/test_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/tracing.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/typedefs.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_app.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_fileresponse.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_log.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_middlewares.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_protocol.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_request.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_response.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_routedef.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_runner.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_server.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_urldispatcher.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/web_ws.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp/worker.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp-3.8.1.dist-info/LICENSE.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp-3.8.1.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp-3.8.1.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiohttp-3.8.1.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiosignal/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiosignal/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiosignal/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiosignal-1.2.0.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiosignal-1.2.0.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiosignal-1.2.0.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/aiosignal-1.2.0.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/apiclient-1.0.4.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/apiclient-1.0.4.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/async_timeout/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/async_timeout/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/async_timeout-4.0.2.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/async_timeout-4.0.2.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/async_timeout-4.0.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/async_timeout-4.0.2.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/async_timeout-4.0.2.dist-info/zip-safe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_cmp.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_cmp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_config.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_funcs.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_make.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_next_gen.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_version_info.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/_version_info.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/converters.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/converters.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/filters.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/filters.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/setters.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/setters.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/validators.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attr/validators.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs/converters.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs/filters.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs/setters.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs/validators.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs-21.4.0.dist-info/AUTHORS.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs-21.4.0.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs-21.4.0.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs-21.4.0.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/attrs-21.4.0.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/backports/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/backports/entry_points_selectable.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/backports.entry_points_selectable-1.1.1.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/backports.entry_points_selectable-1.1.1.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/backports.entry_points_selectable-1.1.1.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/backports.entry_points_selectable-1.1.1.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/backports.entry_points_selectable-1.1.1.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/_cmd.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/adapter.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/cache.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/caches/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/caches/file_cache.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/caches/redis_cache.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/controller.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/filewrapper.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/heuristics.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/serialize.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachecontrol/wrapper.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/cache_manager.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/contracts/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/contracts/factory.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/contracts/repository.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/contracts/store.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/contracts/taggable_store.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/helpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/redis_tagged_cache.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/repository.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/serializers/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/serializers/json_serializer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/serializers/msgpack_serializer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/serializers/pickle_serializer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/serializers/serializer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/stores/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/stores/dict_store.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/stores/file_store.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/stores/memcached_store.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/stores/null_store.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/stores/redis_store.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/tag_set.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/tagged_cache.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy-0.3.0.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy-0.3.0.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy-0.3.0.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cachy-0.3.0.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi/__main__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi/cacert.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi/core.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi-2021.10.8.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi-2021.10.8.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi-2021.10.8.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi-2021.10.8.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/certifi-2021.10.8.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/_cffi_errors.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/_cffi_include.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/_embedding.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/api.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/backend_ctypes.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/cffi_opcode.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/commontypes.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/cparser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/error.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/ffiplatform.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/lock.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/model.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/parse_c_type.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/pkgconfig.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/recompiler.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/setuptools_ext.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/vengine_cpy.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/vengine_gen.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi/verifier.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi-1.15.0.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi-1.15.0.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi-1.15.0.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi-1.15.0.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi-1.15.0.dist-info/entry_points.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi-1.15.0.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cffi.libs/libffi-9c61262e.so.8.1.0","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/api.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/assets/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/cd.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/cli/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/cli/normalizer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/constant.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/legacy.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/md.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/models.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer/version.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer-2.0.12.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer-2.0.12.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer-2.0.12.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer-2.0.12.dist-info/entry_points.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/charset_normalizer-2.0.12.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/_compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/application.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/commands/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/commands/base_command.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/commands/command.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/commands/completions/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/commands/completions/templates.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/commands/completions_command.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/config/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/config/application_config.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/helpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/io/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/io/buffered_io.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/io/console_io.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/io/io_mixin.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/testers/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/testers/application_tester.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo/testers/command_tester.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo-0.8.1.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo-0.8.1.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo-0.8.1.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cleo-0.8.1.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/_compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/_termui_impl.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/_textwrap.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/_winconsole.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/formatting.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/globals.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/shell_completion.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/termui.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/testing.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/types.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click-8.1.3.dist-info/LICENSE.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click-8.1.3.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/click-8.1.3.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/adapter/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/adapter/style_converter.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/application/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/application/application.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/args.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/args_parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/format/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/format/abstract_option.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/format/args_format.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/format/args_format_builder.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/format/argument.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/format/command_name.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/format/command_option.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/format/option.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/args/raw_args.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/command/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/command/command.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/command/command_collection.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/command/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/config/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/config/application_config.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/config/command_config.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/config/config.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/event/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/event/config_event.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/event/console_events.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/event/event.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/event/event_dispatcher.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/event/pre_handle_event.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/event/pre_resolve_event.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/formatter/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/formatter/formatter.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/formatter/style.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/formatter/style_set.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/flags.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/input.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/input_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/io.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/io_exception.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/output.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/output_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/io/section_output.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/resolver/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/resolver/command_resolver.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/resolver/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/api/resolver/resolved_command.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/args/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/args/argv_args.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/args/default_args_parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/args/inputs/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/args/string_args.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/args/token_parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/config/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/config/default_application_config.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/console_application.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/formatter/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/formatter/ansi_formatter.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/formatter/default_style_set.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/formatter/null_formatter.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/formatter/plain_formatter.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/handler/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/handler/callback_handler.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/handler/help/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/handler/help/help_handler.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/handler/help/help_text_handler.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/buffered_io.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/console_io.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/input_stream/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/input_stream/null_input_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/input_stream/standard_input_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/input_stream/stream_input_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/input_stream/string_input_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/null_io.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/output_stream/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/output_stream/buffered_output_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/output_stream/error_output_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/output_stream/null_output_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/output_stream/standard_output_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/io/output_stream/stream_output_stream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/resolver/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/resolver/default_resolver.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/resolver/help_resolver.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/resolver/resolve_result.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/alignment/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/alignment/label_alignment.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/component.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/border_util.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/cell_wrapper.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/choice_question.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/confirmation_question.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/empty_line.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/exception_trace.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/labeled_paragraph.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/name_version.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/paragraph.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/progress_bar.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/progress_indicator.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/question.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/components/table.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/help/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/help/abstract_help.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/help/application_help.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/help/command_help.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/layout/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/layout/block_layout.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/rectangle.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/style/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/style/alignment.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/style/border_style.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/ui/style/table_style.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/utils/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/utils/_compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/utils/command.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/utils/string.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/utils/terminal.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit/utils/time.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit-0.6.2.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit-0.6.2.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit-0.6.2.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/clikit-0.6.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/contracts/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/contracts/base_solution.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/contracts/has_solutions_for_exception.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/contracts/provides_solution.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/contracts/solution.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/contracts/solution_provider_repository.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/frame.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/frame_collection.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/inspector.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/solution_providers/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest/solution_providers/solution_provider_repository.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest-0.3.1.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest-0.3.1.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest-0.3.1.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/crashtest-0.3.1.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/__about__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/fernet.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/_oid.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/interfaces.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/aead.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/backend.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/ciphers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/cmac.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/decode_asn1.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/dh.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/dsa.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/ec.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/ed25519.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/ed448.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/encode_asn1.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/hashes.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/hmac.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/poly1305.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/rsa.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/x25519.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/x448.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/backends/openssl/x509.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/_openssl.abi3.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/_rust/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/_rust/asn1.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/_rust/ocsp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/_rust/x509.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/_rust.abi3.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/openssl/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/openssl/_conditional.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/bindings/openssl/binding.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/_asymmetric.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/_cipheralgorithm.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/_serialization.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/dh.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/dsa.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/ec.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/ed25519.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/ed448.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/padding.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/rsa.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/types.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/x25519.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/asymmetric/x448.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/ciphers/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/ciphers/aead.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/ciphers/algorithms.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/ciphers/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/ciphers/modes.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/cmac.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/constant_time.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/hashes.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/hmac.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/kdf/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/kdf/concatkdf.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/kdf/hkdf.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/kdf/kbkdf.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/kdf/pbkdf2.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/kdf/scrypt.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/kdf/x963kdf.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/keywrap.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/padding.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/poly1305.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/serialization/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/serialization/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/serialization/pkcs12.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/serialization/pkcs7.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/serialization/ssh.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/twofactor/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/twofactor/hotp.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/hazmat/primitives/twofactor/totp.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/x509/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/x509/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/x509/certificate_transparency.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/x509/extensions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/x509/general_name.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/x509/name.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/x509/ocsp.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography/x509/oid.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography-35.0.0.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography-35.0.0.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography-35.0.0.dist-info/LICENSE.APACHE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography-35.0.0.dist-info/LICENSE.BSD","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography-35.0.0.dist-info/LICENSE.PSF","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography-35.0.0.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography-35.0.0.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/cryptography-35.0.0.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/ThirdPartyNotices.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/__main__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/_pydevd_packaging.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/_util.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/force_pydevd.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_calltip_util.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_completer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_filesystem_encoding.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_getopt.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_imports_tipper.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_jy_imports_tipper.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_log.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/_pydev_tipper_common.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_console_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_import_hook.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_imports.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_ipython_console.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_ipython_console_011.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_is_thread_alive.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_localhost.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_log.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_monkey.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_monkey_qt.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_override.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_umd.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_bundle/pydev_versioncheck.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_BaseHTTPServer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_SimpleXMLRPCServer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_SocketServer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_execfile.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_inspect.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_pkgutil_old.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_saved_modules.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_sys_patch.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_imps/_pydev_xmlrpclib.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_coverage.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_nose.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_parallel.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_parallel_client.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_pytest2.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_unittest.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydev_runfiles/pydev_runfiles_xml_rpc.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/__main__pydevd_gen_debug_adapter_protocol.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/debugProtocol.json","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/debugProtocolCustom.json","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_base_schema.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/_debug_adapter/pydevd_schema_log.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevconsole_code_for_ironpython.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_additional_thread_info.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_additional_thread_info_regular.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_api.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_breakpoints.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_code_to_source.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_collect_bytecode_info.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_comm_constants.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_command_line_handling.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_console.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_constants.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_custom_frames.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.c","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.pxd","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython.pyx","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_cython_wrapper.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_daemon_thread.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_defaults.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_dont_trace.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_dont_trace_files.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_exec.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_exec2.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_extension_api.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_extension_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_filtering.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_frame_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_import_class.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_io.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_json_debug_options.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command_factory_json.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_net_command_factory_xml.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_plugin_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_process_net_command.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_process_net_command_json.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_referrers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_reload.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_resolver.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_safe_repr.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_save_locals.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_signature.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_source_mapping.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_stackless.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_suspended_frames.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_thread_lifecycle.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_timeout.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_api.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_dispatch.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_trace_dispatch_regular.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_traceproperty.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_vars.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_vm_type.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_bundle/pydevd_xml.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/.gitignore","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_eval_cython_wrapper.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_eval_main.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.c","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.pxd","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.pyx","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_evaluator.template.pyx","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_frame_tracing.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/pydevd_modify_bytecode.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/release_mem.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/README.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/bytecode.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/cfg.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/concrete.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/flags.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/instr.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/peephole_opt.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_bytecode.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_cfg.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_code.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_concrete.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_flags.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_instr.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_misc.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/bytecode/tests/test_peephole_opt.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/_pydevd_frame_eval/vendored/pydevd_fix_code.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_app_engine_debug_startup.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_coverage.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/README","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhook.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookglut.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookgtk.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookgtk3.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookpyglet.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt4.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookqt5.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhooktk.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/inputhookwx.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/matplotlibtools.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/qt.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/qt_for_kernel.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/qt_loaders.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_ipython/version.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_pysrc.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_run_in_console.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_sitecustomize/__not_in_default_pythonpath.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydev_sitecustomize/sitecustomize.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevconsole.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/README.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/_always_live_program.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/_check.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/_test_attach_to_process.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/_test_attach_to_process_linux.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/add_code_to_python_process.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_amd64.dll","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_amd64.pdb","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_linux_amd64.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_linux_x86.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_pydevd.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_script.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_x86.dll","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_x86.dylib","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_x86.pdb","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/attach_x86_64.dylib","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_custom_pyeval_settrace.hpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_settrace.hpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_utils.hpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/py_version.hpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/python.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/common/ref_utils.hpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/inject_dll_amd64.exe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/inject_dll_amd64.pdb","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/inject_dll_x86.exe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/inject_dll_x86.pdb","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/.gitignore","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/attach.cpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/compile_linux.sh","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/compile_mac.sh","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/linux_and_mac/lldb_prepare.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/run_code_on_dllmain_amd64.dll","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/run_code_on_dllmain_amd64.pdb","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/run_code_on_dllmain_x86.dll","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/run_code_on_dllmain_x86.pdb","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/breakpoint.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/crash.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/debug.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/disasm.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/event.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/interactive.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/module.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/README","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/do_example.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/do_exchain.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/do_exploitable.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/plugins/do_symfix.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/process.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/registry.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/search.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/sql.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/system.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/textio.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/thread.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/util.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/advapi32.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/context_amd64.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/context_i386.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/dbghelp.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/defines.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/gdi32.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/kernel32.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/ntdll.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/peb_teb.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/psapi.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/shell32.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/shlwapi.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/user32.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/version.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/win32/wtsapi32.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/winappdbg/window.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/attach.cpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/attach.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/compile_windows.bat","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/inject_dll.cpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/py_win_helpers.hpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_in_memory.hpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/run_code_on_dllmain.cpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/stdafx.cpp","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/stdafx.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_attach_to_process/windows/targetver.h","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_concurrency_analyser/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_concurrency_analyser/pydevd_concurrency_logger.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_concurrency_analyser/pydevd_thread_wrappers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_file_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/django_debug.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/README.md","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_helpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugin_numpy_types.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/extensions/types/pydevd_plugins_django_form_str.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_plugins/jinja2_debug.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/pydevd_tracing.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_vendored/pydevd/setup_cython.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/_version.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/adapter/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/adapter/__main__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/adapter/clients.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/adapter/components.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/adapter/launchers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/adapter/servers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/adapter/sessions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/fmt.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/json.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/log.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/messaging.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/modules.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/singleton.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/sockets.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/stacks.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/timestamp.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/common/util.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/launcher/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/launcher/__main__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/launcher/debuggee.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/launcher/handlers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/launcher/output.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/launcher/winapi.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/server/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/server/api.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/server/attach_pid_injected.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy/server/cli.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy-1.2.1.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy-1.2.1.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy-1.2.1.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy-1.2.1.dist-info/REQUESTED","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy-1.2.1.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/debugpy-1.2.1.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/_backport/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/_backport/misc.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/_backport/shutil.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/_backport/sysconfig.cfg","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/_backport/sysconfig.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/_backport/tarfile.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/database.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/index.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/locators.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/manifest.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/markers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/metadata.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/resources.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/scripts.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/t32.exe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/t64-arm.exe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/t64.exe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/util.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/version.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/w32.exe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/w64-arm.exe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/w64.exe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib/wheel.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib-0.3.3.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib-0.3.3.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distlib-0.3.3.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/distutils-precedence.pth","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/LICENSE-MIT","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/docopt-0.6.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/docopt.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/_api.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/_error.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/_soft.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/_unix.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/_util.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/_windows.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock/version.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock-3.3.2.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock-3.3.2.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock-3.3.2.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock-3.3.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock-3.3.2.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/filelock-3.3.2.dist-info/zip-safe","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/__main__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/app.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/blueprints.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/config.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/ctx.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/debughelpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/globals.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/helpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/json/tag.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/logging.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/scaffold.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/sessions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/signals.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/templating.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/testing.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/typing.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/views.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/flask/wrappers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist/_frozenlist.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist/_frozenlist.pyx","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist-1.3.0.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist-1.3.0.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist-1.3.0.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/frozenlist-1.3.0.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/_markupbase.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/datetime.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/_encoded_words.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/_header_value_parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/_parseaddr.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/_policybase.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/base64mime.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/charset.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/encoders.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/errors.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/feedparser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/generator.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/header.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/headerregistry.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/iterators.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/message.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/application.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/audio.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/image.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/message.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/multipart.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/nonmultipart.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/mime/text.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/policy.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/quoprimime.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/email/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/html/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/html/entities.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/html/parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/http/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/http/client.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/http/cookiejar.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/http/cookies.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/http/server.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/misc.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/socket.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/socketserver.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/badcert.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/badkey.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/dh512.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/https_svn_python_org_root.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/keycert.passwd.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/keycert.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/keycert2.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/nokia.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/nullbytecert.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/nullcert.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/pystone.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/sha256.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/ssl_cert.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/ssl_key.passwd.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/ssl_key.pem","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/ssl_servers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/test/support.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/total_ordering.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/urllib/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/urllib/error.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/urllib/parse.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/urllib/request.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/urllib/response.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/urllib/robotparser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/xmlrpc/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/xmlrpc/client.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/backports/xmlrpc/server.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/builtins/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/builtins/disabled.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/builtins/iterators.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/builtins/misc.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/builtins/new_min_max.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/builtins/newnext.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/builtins/newround.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/builtins/newsuper.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/_dummy_thread.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/_markupbase.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/_thread.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/builtins.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/collections.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/configparser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/copyreg.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/dbm/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/dbm/dumb.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/dbm/gnu.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/dbm/ndbm.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/html/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/html/entities.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/html/parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/http/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/http/client.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/http/cookiejar.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/http/cookies.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/http/server.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/itertools.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/pickle.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/queue.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/reprlib.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/socketserver.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/subprocess.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/sys.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/test/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/test/support.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/colorchooser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/commondialog.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/constants.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/dialog.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/dnd.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/filedialog.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/font.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/messagebox.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/scrolledtext.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/simpledialog.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/tix.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/tkinter/ttk.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/urllib/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/urllib/error.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/urllib/parse.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/urllib/request.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/urllib/response.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/urllib/robotparser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/winreg.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/xmlrpc/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/xmlrpc/client.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/moves/xmlrpc/server.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/standard_library/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/tests/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/tests/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newbytes.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newdict.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newint.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newlist.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newmemoryview.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newobject.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newopen.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newrange.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/types/newstr.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/utils/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future/utils/surrogateescape.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/future-0.18.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/_ihatexml.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/_inputstream.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/_tokenizer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/_trie/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/_trie/_base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/_trie/py.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/constants.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/filters/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/filters/alphabeticalattributes.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/filters/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/filters/inject_meta_charset.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/filters/lint.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/filters/optionaltags.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/filters/sanitizer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/filters/whitespace.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/html5parser.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/serializer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treeadapters/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treeadapters/genshi.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treeadapters/sax.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treebuilders/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treebuilders/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treebuilders/dom.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treebuilders/etree.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treebuilders/etree_lxml.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treewalkers/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treewalkers/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treewalkers/dom.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treewalkers/etree.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treewalkers/etree_lxml.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib/treewalkers/genshi.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib-1.1.dist-info/AUTHORS.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib-1.1.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib-1.1.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib-1.1.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib-1.1.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/html5lib-1.1.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/codec.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/core.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/idnadata.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/intranges.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/package_data.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna/uts46data.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna-3.3.dist-info/INSTALLER","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna-3.3.dist-info/LICENSE.md","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna-3.3.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna-3.3.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/idna-3.3.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/_adapters.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/_collections.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/_compat.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/_functools.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/_itertools.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/_meta.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/_text.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata-4.11.3.dist-info/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata-4.11.3.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata-4.11.3.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/importlib_metadata-4.11.3.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/_json.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/encoding.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/exc.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/py.typed","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/serializer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/signer.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/timed.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous/url_safe.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous-2.1.2.dist-info/LICENSE.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous-2.1.2.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous-2.1.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/itsdangerous-2.1.2.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/__main__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/_compatibility.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/classes.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/completion.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/environment.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/exceptions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/file_name.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/helpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/interpreter.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/keywords.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/project.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/api/replstartup.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/cache.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/common/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/common/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/common/value.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/debug.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/file_io.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/analysis.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/arguments.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/base_value.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/cache.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/compiled/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/compiled/access.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/compiled/getattr_static.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/compiled/mixed.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/compiled/subprocess/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/compiled/subprocess/__main__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/compiled/subprocess/functions.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/compiled/value.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/context.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/docstrings.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/dynamic_params.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/filters.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/finder.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/flow_analysis.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/annotation.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/base.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/conversion.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/generics.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/stub_value.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/type_var.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/typeshed.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/typing.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/gradual/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/helpers.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/imports.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/lazy_value.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/names.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/param.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/parser_cache.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/recursion.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/signature.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/star_args.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/syntax_tree.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/sys_path.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/usages.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/decorator.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/dynamic_arrays.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/function.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/instance.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/iterable.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/klass.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/module.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/inference/value/namespace.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/parser_utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/plugins/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/plugins/flask.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/plugins/registry.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/plugins/stdlib.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/refactoring.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/settings.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/LICENSE","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/BaseHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/CGIHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/ConfigParser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/Cookie.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/HTMLParser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/Queue.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/SimpleHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/SocketServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/StringIO.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/UserDict.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/UserList.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/UserString.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/__builtin__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_ast.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_collections.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_functools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_hotshot.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_io.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_json.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_md5.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_sha.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_sha256.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_sha512.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_socket.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_sre.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_struct.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_symtable.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/_threading_local.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/abc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/ast.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/atexit.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/cPickle.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/cStringIO.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/collections.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/commands.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/compileall.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/cookielib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/copy_reg.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/dircache.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/distutils/emxccompiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/dummy_thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/MIMEText.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/_parseaddr.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/base64mime.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/charset.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/encoders.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/feedparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/generator.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/header.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/iterators.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/message.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/application.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/audio.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/base.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/image.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/message.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/multipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/nonmultipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/mime/text.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/quoprimime.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/email/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/encodings/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/encodings/utf_8.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/fcntl.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/fnmatch.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/functools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/future_builtins.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/gc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/getopt.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/getpass.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/gettext.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/glob.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/gzip.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/hashlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/heapq.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/htmlentitydefs.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/httplib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/imp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/importlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/inspect.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/io.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/itertools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/json.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/markupbase.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/md5.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/mimetools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/dummy/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/dummy/connection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/pool.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/process.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/multiprocessing/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/mutex.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/nturl2path.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/os/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/os/path.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/os2emxpath.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/pipes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/platform.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/popen2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/posix.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/random.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/re.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/repr.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/resource.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/rfc822.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/robotparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/runpy.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/sets.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/sha.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/shelve.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/shlex.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/signal.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/smtplib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/spwd.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/sre_constants.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/sre_parse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/stat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/string.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/stringold.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/strop.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/subprocess.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/symbol.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/sys.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/tempfile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/textwrap.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/toaiff.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/tokenize.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/types.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/typing.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/unittest.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/urllib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/urllib2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/urlparse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/user.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/whichdb.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2/xmlrpclib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/__future__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_bisect.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_codecs.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_csv.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_curses.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_heapq.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_random.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_warnings.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_weakref.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/_weakrefset.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/aifc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/argparse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/array.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/asynchat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/asyncore.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/audioop.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/base64.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/bdb.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/binascii.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/binhex.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/bisect.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/builtins.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/bz2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/cProfile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/calendar.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/cgi.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/cgitb.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/chunk.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/cmath.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/cmd.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/code.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/codecs.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/codeop.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/colorsys.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/contextlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/copy.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/crypt.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/csv.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/ctypes/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/ctypes/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/ctypes/wintypes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/curses/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/curses/ascii.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/curses/panel.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/curses/textpad.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/datetime.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/decimal.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/difflib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/dis.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/archive_util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/bcppcompiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/ccompiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/cmd.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/bdist.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/bdist_dumb.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/bdist_msi.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/bdist_packager.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/bdist_rpm.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/bdist_wininst.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/build.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/build_clib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/build_ext.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/build_py.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/build_scripts.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/check.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/clean.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/config.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/install.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/install_data.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/install_headers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/install_lib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/install_scripts.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/register.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/command/sdist.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/core.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/cygwinccompiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/debug.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/dep_util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/dir_util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/dist.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/errors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/extension.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/fancy_getopt.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/file_util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/filelist.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/log.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/msvccompiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/spawn.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/sysconfig.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/text_file.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/unixccompiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/distutils/version.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/doctest.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/ensurepip/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/errno.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/filecmp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/fileinput.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/formatter.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/fractions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/ftplib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/genericpath.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/grp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/hmac.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/imaplib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/imghdr.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/keyword.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/driver.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/grammar.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/literals.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/parse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/pgen.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/token.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pgen2/tokenize.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pygram.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/lib2to3/pytree.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/linecache.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/locale.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/logging/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/logging/config.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/logging/handlers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/macpath.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/mailbox.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/mailcap.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/marshal.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/math.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/mimetypes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/mmap.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/modulefinder.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/netrc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/nis.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/ntpath.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/numbers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/opcode.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/operator.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/optparse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pdb.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pickle.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pickletools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pkgutil.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/plistlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/poplib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/posixpath.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pprint.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/profile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pstats.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pty.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pwd.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/py_compile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pyclbr.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pydoc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pyexpat/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pyexpat/errors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/pyexpat/model.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/quopri.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/readline.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/rlcompleter.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/sched.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/select.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/shutil.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/site.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/smtpd.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/sndhdr.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/socket.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/sqlite3/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/sqlite3/dbapi2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/sre_compile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/ssl.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/stringprep.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/struct.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/sunau.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/symtable.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/sysconfig.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/syslog.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/tabnanny.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/tarfile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/telnetlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/termios.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/threading.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/time.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/timeit.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/token.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/trace.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/traceback.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/tty.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/turtle.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/unicodedata.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/uu.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/uuid.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/warnings.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/wave.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/weakref.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/webbrowser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/handlers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/headers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/simple_server.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/types.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/wsgiref/validate.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xdrlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementInclude.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementPath.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/ElementTree.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/etree/cElementTree.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/errors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/parsers/expat/model.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/sax/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/sax/handler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/sax/saxutils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/xml/sax/xmlreader.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/zipfile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/zipimport.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/2and3/zlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_ast.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_compression.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_dummy_thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_imp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_importlib_modulespec.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_json.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_markupbase.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_operator.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_posixsubprocess.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_stat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_subprocess.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_threading_local.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_tracemalloc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/_winapi.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/abc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/ast.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/base_events.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/constants.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/coroutines.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/events.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/futures.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/locks.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/proactor_events.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/protocols.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/queues.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/runners.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/selector_events.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/streams.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/subprocess.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/tasks.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/transports.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/windows_events.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/asyncio/windows_utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/atexit.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/collections/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/collections/abc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/compileall.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/futures/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/futures/_base.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/futures/process.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/concurrent/futures/thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/configparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/copyreg.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/charset.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/contentmanager.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/encoders.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/errors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/feedparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/generator.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/header.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/headerregistry.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/iterators.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/message.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/application.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/audio.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/base.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/image.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/message.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/multipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/nonmultipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/mime/text.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/policy.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/email/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/encodings/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/encodings/utf_8.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/enum.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/faulthandler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/fcntl.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/fnmatch.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/functools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/gc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/getopt.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/getpass.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/gettext.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/glob.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/gzip.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/hashlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/heapq.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/html/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/html/entities.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/html/parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/http/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/http/client.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/http/cookiejar.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/http/cookies.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/http/server.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/imp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/abc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/machinery.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/metadata.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/resources.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/importlib/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/inspect.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/io.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/ipaddress.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/itertools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/json/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/json/decoder.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/json/encoder.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/lzma.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/msvcrt.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/connection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/context.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/dummy/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/dummy/connection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/managers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/pool.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/process.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/queues.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/shared_memory.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/spawn.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/multiprocessing/synchronize.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/nntplib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/nturl2path.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/os/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/os/path.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/pathlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/pipes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/platform.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/posix.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/queue.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/random.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/re.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/reprlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/resource.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/runpy.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/selectors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/shelve.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/shlex.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/signal.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/smtplib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/socketserver.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/spwd.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/sre_constants.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/sre_parse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/stat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/statistics.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/string.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/subprocess.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/symbol.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/sys.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tempfile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/textwrap.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/commondialog.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/constants.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/dialog.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/filedialog.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/messagebox.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tkinter/ttk.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tokenize.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/tracemalloc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/types.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/typing.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/async_case.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/case.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/loader.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/mock.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/result.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/runner.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/signals.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/suite.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/unittest/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/error.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/parse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/request.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/response.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/urllib/robotparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3/zipapp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3.6/secrets.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3.7/contextvars.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/stdlib/3.7/dataclasses.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/OpenSSL/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/OpenSSL/crypto.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/futures/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/futures/_base.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/futures/process.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/concurrent/futures/thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/enum.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/fb303/FacebookService.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/fb303/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/gflags.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/ipaddress.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/client.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/recipe/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/kazoo/recipe/watchers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/pathlib2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/pymssql.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/routes/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/routes/mapper.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/routes/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/scribe/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/scribe/scribe.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/scribe/ttypes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/BaseHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/CGIHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/SimpleHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/_dummy_thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/_thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/cPickle.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/configparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_base.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_multipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_nonmultipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/email_mime_text.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/html_entities.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/html_parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/http_client.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/http_cookiejar.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/http_cookies.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/queue.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/reprlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/socketserver.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/error.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/parse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/request.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/response.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib/robotparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_error.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_parse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_request.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_response.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/urllib_robotparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/six/moves/xmlrpc_client.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/concurrent.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/gen.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/httpclient.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/httpserver.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/httputil.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/ioloop.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/locks.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/netutil.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/process.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/tcpserver.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/testing.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2/tornado/web.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/AES.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/ARC2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/ARC4.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/Blowfish.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/CAST.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/DES.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/DES3.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/PKCS1_OAEP.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/PKCS1_v1_5.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/XOR.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Cipher/blockalgo.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/HMAC.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/MD2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/MD4.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/MD5.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/RIPEMD.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/SHA.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/SHA224.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/SHA256.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/SHA384.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/SHA512.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Hash/hashalgo.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Protocol/AllOrNothing.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Protocol/Chaffing.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Protocol/KDF.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Protocol/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/PublicKey/DSA.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/PublicKey/ElGamal.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/PublicKey/RSA.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/PublicKey/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/PublicKey/pubkey.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/Fortuna/FortunaAccumulator.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/Fortuna/FortunaGenerator.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/Fortuna/SHAd256.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/Fortuna/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/OSRNG/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/OSRNG/fallback.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/OSRNG/posix.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/OSRNG/rng_base.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Random/random.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Signature/PKCS1_PSS.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Signature/PKCS1_v1_5.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Signature/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Util/Counter.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Util/RFC1751.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Util/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Util/asn1.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Util/number.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Util/randpool.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/Util/strxor.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/Crypto/pct_warnings.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/atomicwrites/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/converters.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/filters.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/attr/validators.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/backports/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/backports/ssl_match_hostname.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/backports_abc.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/callbacks.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/linkifier.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/sanitizer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/bleach/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/auth.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/auth_handler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/compat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/connection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/ec2/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/elb/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/exception.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/kms/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/kms/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/kms/layer1.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/plugin.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/regioninfo.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/acl.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucket.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucketlistresultset.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/bucketlogging.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/connection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/cors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/deletemarker.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/key.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/keyfile.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/lifecycle.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/multidelete.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/multipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/prefix.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/tagging.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/user.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/s3/website.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/boto/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/certifi.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/characteristic/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/_termui_impl.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/core.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/decorators.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/formatting.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/globals.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/termui.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/testing.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/types.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/click/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/croniter.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/fernet.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/backends/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/backends/interfaces.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/openssl/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/bindings/openssl/binding.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dh.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/dsa.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ec.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ed25519.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/ed448.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/padding.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/rsa.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/x25519.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/asymmetric/x448.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/aead.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/algorithms.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/ciphers/modes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/cmac.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/constant_time.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/hashes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/hmac.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/concatkdf.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/hkdf.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/kbkdf.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/pbkdf2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/scrypt.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/kdf/x963kdf.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/keywrap.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/padding.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/poly1305.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/serialization/pkcs12.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/hotp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/hazmat/primitives/twofactor/totp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/cryptography/x509.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/_common.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/relativedelta.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/rrule.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/_common.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/tz/tz.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/dateutil/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/decorator.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/emoji.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/first.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/app.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/blueprints.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/cli.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/config.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/ctx.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/debughelpers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/globals.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/helpers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/json/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/json/tag.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/logging.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/sessions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/signals.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/templating.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/testing.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/views.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/flask/wrappers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/database.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/errors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/mixins.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/models.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/geoip2/records.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/any_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/any_test_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/api_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/compiler/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/compiler/plugin_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/descriptor_pool.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/duration_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/empty_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/field_mask_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/containers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/decoder.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/encoder.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/enum_type_wrapper.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/message_listener.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/well_known_types.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/internal/wire_format.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/json_format.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/map_proto2_unittest_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/map_unittest_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/message.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/message_factory.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/reflection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/service.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/source_context_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/struct_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/symbol_database.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/test_messages_proto2_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/test_messages_proto3_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/timestamp_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/type_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_arena_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_custom_options_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_import_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_import_public_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_mset_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_mset_wire_format_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_no_arena_import_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_no_arena_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_no_generic_services_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/unittest_proto3_arena_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/util/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/util/json_format_proto3_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/google/protobuf/wrappers_pb2.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/itsdangerous.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/_compat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/_stringdefs.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/bccache.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/compiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/constants.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/debug.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/defaults.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/environment.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/ext.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/filters.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/lexer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/loaders.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/meta.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/nodes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/optimizer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/runtime.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/sandbox.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/tests.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/jinja2/visitor.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/_compat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/_constants.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/_native.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/markupsafe/_speedups.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/compat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/const.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/decoder.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/errors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/extension.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/maxminddb/reader.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/mock.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/mypy_extensions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pycurl.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/charset.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/connections.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/CLIENT.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/COMMAND.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/ER.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/FIELD_TYPE.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/FLAG.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/SERVER_STATUS.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/constants/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/converters.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/cursors.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/err.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/times.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pymysql/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/attributes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/base.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/table.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/connection/util.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/constants.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/indexes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/models.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/settings.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/throttle.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pynamodb/types.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pyre_extensions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/pytz/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/client.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/connection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/redis/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/adapters.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/api.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/auth.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/compat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/cookies.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/hooks.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/models.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/_collections.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/connection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/connectionpool.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/contrib/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/fields.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/filepost.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/packages/ssl_match_hostname/_implementation.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/poolmanager.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/request.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/response.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/connection.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/request.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/response.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/retry.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/ssl_.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/timeout.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/packages/urllib3/util/url.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/sessions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/status_codes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/structures.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/requests/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/simplejson/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/simplejson/decoder.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/simplejson/encoder.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/simplejson/scanner.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/singledispatch.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/tabulate.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/termcolor.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/toml.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/typing_extensions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/ujson.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/_compat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/_internal.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/_reloader.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/atom.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/cache.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/fixers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/iterio.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/jsrouting.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/limiter.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/lint.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/profiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/securecookie.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/sessions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/testtools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/contrib/wrappers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/datastructures.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/console.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/repr.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/debug/tbtools.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/exceptions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/filesystem.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/formparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/http.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/local.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/dispatcher.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/http_proxy.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/lint.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/profiler.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/proxy_fix.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/middleware/shared_data.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/posixemulation.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/routing.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/script.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/security.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/serving.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/test.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/testapp.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/urls.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/useragents.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/utils.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/wrappers.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/werkzeug/wsgi.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/composer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/constructor.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/cyaml.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/dumper.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/emitter.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/error.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/events.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/loader.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/nodes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/reader.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/representer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/resolver.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/scanner.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/serializer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/2and3/yaml/tokens.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/contextvars.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/dataclasses.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/docutils/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/docutils/examples.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/docutils/nodes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/nodes.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/roles.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/docutils/parsers/rst/states.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/jwt/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/jwt/algorithms.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/jwt/contrib/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/py_ecdsa.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/jwt/contrib/algorithms/pycrypto.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/orjson.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/pkg_resources/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/pkg_resources/py31compat.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/BaseHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/CGIHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/SimpleHTTPServer.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/_dummy_thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/_thread.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/builtins.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/cPickle.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/configparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_base.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_multipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_nonmultipart.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/email_mime_text.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/html_entities.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/html_parser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/http_client.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/http_cookiejar.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/http_cookies.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/queue.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/reprlib.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/socketserver.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_commondialog.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_constants.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_dialog.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_filedialog.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_tkfiledialog.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/tkinter_ttk.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/error.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/parse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/request.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/response.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib/robotparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_error.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_parse.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_request.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_response.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/six/moves/urllib_robotparser.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/typed_ast/__init__.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/typed_ast/ast27.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/typed_ast/ast3.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/third_party/typeshed/third_party/3/typed_ast/conversions.pyi","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi/utils.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi-0.15.2.dist-info/DESCRIPTION.rst","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi-0.15.2.dist-info/METADATA","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi-0.15.2.dist-info/WHEEL","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi-0.15.2.dist-info/metadata.json","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jedi-0.15.2.dist-info/top_level.txt","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/auth.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/bindgen.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/bus.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/bus_messages.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/fds.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/integrate/__init__.py","time":"2023-10-10T01:25:17Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/integrate/asyncio.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/integrate/blocking.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/integrate/tests/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/integrate/tests/test_asyncio.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/integrate/tornado.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/asyncio.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/blocking.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/common.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/tests/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/tests/conftest.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/tests/test_asyncio.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/tests/test_blocking.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/tests/test_threading.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/tests/test_trio.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/tests/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/threading.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/tornado.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/io/trio.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/low_level.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/routing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/secrets_introspect.xml","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/test_auth.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/test_bindgen.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/test_bus.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/test_bus_messages.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/test_fds.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/test_low_level.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/tests/test_routing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney/wrappers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney-0.7.1.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney-0.7.1.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney-0.7.1.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jeepney-0.7.1.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/_identifier.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/async_utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/compiler.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/constants.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/debug.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/defaults.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/ext.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/idtracking.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/lexer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/loaders.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/meta.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/nativetypes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/nodes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/optimizer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/runtime.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/sandbox.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/tests.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/jinja2/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/__main__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backend.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/OS_X.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/SecretService.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/Windows.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/_OS_X_API.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/chainer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/fail.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/kwallet.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/backends/null.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/cli.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/core.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/credentials.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/devpi_client.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/errors.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/http.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/testing/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/testing/backend.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/testing/util.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/util/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/util/platform_.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring/util/properties.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring-21.8.0.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring-21.8.0.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring-21.8.0.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring-21.8.0.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring-21.8.0.dist-info/entry_points.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/keyring-21.8.0.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixer_util.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_UserDict.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_absolute_import.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_add__future__imports_except_unicode_literals.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_basestring.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_bytes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_cmp.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_division.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_division_safe.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_execfile.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_future_builtins.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_future_standard_library.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_future_standard_library_urllib.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_input.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_metaclass.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_next_call.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_object.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_oldstr_wrap.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_order___future__imports.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_print.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_print_with_import.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_raise.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_remove_old__future__imports.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_unicode_keep_u.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_unicode_literals_import.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/fixes/fix_xrange_with_import.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libfuturize/main.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/feature_base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_add_all__future__imports.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_add_all_future_builtins.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_add_future_standard_library_import.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_annotations.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_division.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_features.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_fullargspec.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_future_builtins.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_getcwd.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_imports.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_imports2.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_kwargs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_memoryview.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_metaclass.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_newstyle.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_next.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_printfunction.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_raise.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_raise_.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_throw.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/fixes/fix_unpacking.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/libpasteurize/main.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile/linklockfile.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile/mkdirlockfile.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile/pidlockfile.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile/sqlitelockfile.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile/symlinklockfile.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile-0.12.2.dist-info/DESCRIPTION.rst","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile-0.12.2.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile-0.12.2.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile-0.12.2.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile-0.12.2.dist-info/metadata.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile-0.12.2.dist-info/pbr.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/lockfile-0.12.2.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/markupsafe/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/markupsafe/_native.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/markupsafe/_speedups.c","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/markupsafe/_speedups.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/markupsafe/_speedups.pyi","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/markupsafe/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack/_cmsgpack.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack/_version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack/ext.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack/fallback.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack-1.0.2.dist-info/COPYING","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack-1.0.2.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack-1.0.2.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack-1.0.2.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/msgpack-1.0.2.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict/__init__.pyi","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict/_abc.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict/_multidict.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict/_multidict_base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict/_multidict_py.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict-6.0.2.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict-6.0.2.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict-6.0.2.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/multidict-6.0.2.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/__about__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/_structures.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/_typing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/markers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/requirements.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/specifiers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/tags.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging-20.9.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging-20.9.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging-20.9.dist-info/LICENSE.APACHE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging-20.9.dist-info/LICENSE.BSD","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging-20.9.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging-20.9.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/packaging-20.9.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/_compatibility.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/cache.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/file_io.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/grammar.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/normalizer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/pgen2/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/pgen2/generator.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/pgen2/grammar_parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/diff.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/errors.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar26.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar27.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar33.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar34.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar35.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar36.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar37.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar38.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/grammar39.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/pep8.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/prefix.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/token.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/tokenize.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/python/tree.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/tree.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso-0.5.2.dist-info/DESCRIPTION.rst","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso-0.5.2.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso-0.5.2.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso-0.5.2.dist-info/metadata.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/parso-0.5.2.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/builtins/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/builtins/misc.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/builtins/noniterators.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/translation/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/types/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/types/basestring.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/types/olddict.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/types/oldstr.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/past/utils/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pastel/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pastel/pastel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pastel/stack.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pastel/style.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pastel-0.2.1.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pastel-0.2.1.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pastel-0.2.1.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pastel-0.2.1.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/ANSI.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/FSM.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/_async.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/bashrc.sh","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/expect.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/fdpexpect.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/popen_spawn.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/pty_spawn.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/pxssh.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/replwrap.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/run.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/screen.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/spawnbase.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect-4.8.0.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect-4.8.0.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect-4.8.0.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect-4.8.0.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pexpect-4.8.0.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/__main__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cache.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/autocompletion.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/base_command.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/cmdoptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/command_context.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/main.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/main_parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/progress_bars.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/req_command.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/spinners.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/cli/status_codes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/cache.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/check.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/completion.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/configuration.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/debug.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/download.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/freeze.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/hash.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/help.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/index.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/install.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/list.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/search.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/show.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/uninstall.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/commands/wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/configuration.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/distributions/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/distributions/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/distributions/installed.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/distributions/sdist.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/distributions/wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/index/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/index/collector.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/index/package_finder.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/index/sources.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/locations/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/locations/_distutils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/locations/_sysconfig.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/locations/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/main.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/metadata/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/metadata/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/metadata/pkg_resources.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/candidate.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/direct_url.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/format_control.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/index.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/link.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/scheme.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/search_scope.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/selection_prefs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/target_python.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/models/wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/network/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/network/auth.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/network/cache.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/network/download.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/network/lazy_wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/network/session.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/network/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/network/xmlrpc.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/build/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/build/metadata_legacy.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/build/wheel_legacy.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/check.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/freeze.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/install/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/install/editable_legacy.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/install/legacy.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/operations/prepare.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/pyproject.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/req/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/req/constructors.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/req/req_file.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/req/req_install.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/req/req_set.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/req/req_tracker.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/req/req_uninstall.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/legacy/resolver.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/candidates.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/factory.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/provider.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/reporter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/requirements.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/resolution/resolvelib/resolver.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/self_outdated_check.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/_log.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/appdirs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/compatibility_tags.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/datetime.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/deprecation.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/direct_url_helpers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/distutils_args.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/encoding.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/entrypoints.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/filesystem.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/filetypes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/glibc.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/hashes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/inject_securetransport.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/logging.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/misc.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/models.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/packaging.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/parallel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/pkg_resources.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/setuptools_build.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/subprocess.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/temp_dir.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/unpacking.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/urls.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/virtualenv.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/utils/wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/vcs/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/vcs/bazaar.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/vcs/git.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/vcs/mercurial.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/vcs/subversion.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/vcs/versioncontrol.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_internal/wheel_builder.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/appdirs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/_cmd.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/adapter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/cache.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/controller.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/filewrapper.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/heuristics.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/serialize.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/cachecontrol/wrapper.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/certifi/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/certifi/__main__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/certifi/cacert.pem","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/certifi/core.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5freq.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/big5prober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/chardistribution.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetgroupprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/charsetprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/cli/chardetect.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/codingstatemachine.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/cp949prober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/enums.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/escprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/escsm.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/eucjpprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrfreq.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/euckrprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwfreq.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/euctwprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312freq.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/gb2312prober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/hebrewprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/jisfreq.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/jpcntx.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/langbulgarianmodel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/langgreekmodel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhebrewmodel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/langhungarianmodel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/langrussianmodel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/langthaimodel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/langturkishmodel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/latin1prober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcharsetprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcsgroupprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/mbcssm.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/metadata/languages.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcharsetprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/sbcsgroupprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/sjisprober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/universaldetector.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/utf8prober.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/chardet/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/colorama/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansi.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/colorama/ansitowin32.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/colorama/initialise.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/colorama/win32.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/colorama/winterm.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/misc.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/shutil.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.cfg","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/sysconfig.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/_backport/tarfile.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/database.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/index.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/locators.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/manifest.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/markers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/metadata.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/resources.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/t32.exe","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/t64.exe","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/util.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/w32.exe","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/w64.exe","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distlib/wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/distro.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_ihatexml.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_inputstream.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_tokenizer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/_base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_trie/py.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/_utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/constants.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/lint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/optionaltags.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/sanitizer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/filters/whitespace.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/html5parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/serializer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treeadapters/sax.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/dom.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/dom.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/idna/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/idna/codec.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/idna/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/idna/core.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/idna/idnadata.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/idna/intranges.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/idna/package_data.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/idna/uts46data.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/msgpack/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/msgpack/_version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/msgpack/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/msgpack/ext.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/msgpack/fallback.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/__about__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/_manylinux.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/_musllinux.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/_structures.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/markers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/requirements.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/specifiers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/tags.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/packaging/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/build.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/check.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/colorlog.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/dirtools.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/envbuild.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/in_process/_in_process.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/meta.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pep517/wrappers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pkg_resources/py31compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/progress/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/progress/bar.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/progress/counter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/progress/spinner.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/pyparsing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/__version__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/_internal_utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/adapters.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/api.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/auth.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/certs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/cookies.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/help.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/hooks.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/models.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/packages.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/sessions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/status_codes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/structures.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/requests/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/providers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/reporters.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/resolvers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/resolvelib/structs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/six.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/_asyncio.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/_utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/after.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/before.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/before_sleep.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/nap.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/retry.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/stop.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/tornadoweb.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tenacity/wait.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tomli/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tomli/_parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/tomli/_re.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/_collections.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/_version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/connection.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/connectionpool.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/appengine.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/securetransport.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/contrib/socks.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/fields.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/filepost.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/six.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/packages/ssl_match_hostname/_implementation.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/poolmanager.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/request.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/response.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/connection.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/proxy.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/queue.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/request.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/response.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/retry.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssl_.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/ssltransport.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/timeout.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/url.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/urllib3/util/wait.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/vendor.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/webencodings/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/webencodings/labels.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/webencodings/mklabels.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/webencodings/tests.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/_vendor/webencodings/x_user_defined.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip-21.2.dev0.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip-21.2.dev0.dist-info/LICENSE.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip-21.2.dev0.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip-21.2.dev0.dist-info/REQUESTED","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip-21.2.dev0.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip-21.2.dev0.dist-info/entry_points.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pip-21.2.dev0.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pipreqs/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pipreqs/mapping","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pipreqs/pipreqs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pipreqs/stdlib","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pipreqs_amasad-0.4.10.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pipreqs_amasad-0.4.10.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/appdirs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__about__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_manylinux.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_musllinux.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/_structures.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/markers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/requirements.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/specifiers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/tags.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/packaging/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/_vendor/pyparsing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/extern/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/bdist.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/commandline.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/develop.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/distribution.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/index.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/installed.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/sdist.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_bdist.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_commandline.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_develop.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_distribution.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_index.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_installed.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_sdist.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/tests/test_wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo/wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo-1.7.1.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo-1.7.1.dist-info/LICENSE.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo-1.7.1.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo-1.7.1.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo-1.7.1.dist-info/entry_points.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pkginfo-1.7.1.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/__main__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/android.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/api.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/macos.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/unix.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs/windows.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs-2.4.0.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs-2.4.0.dist-info/LICENSE.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs-2.4.0.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs-2.4.0.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs-2.4.0.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/platformdirs-2.4.0.dist-info/zip-safe","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy/_tracing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy/_version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy/callers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy/hooks.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy/manager.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy-0.13.1.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy-0.13.1.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy-0.13.1.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pluggy-0.13.1.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/__main__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/__version__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/_vendor/.gitignore","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/config/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/config/config.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/config/config_source.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/config/dict_config_source.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/config/file_config_source.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/application.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/args/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/args/run_args_parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/about.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/add.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/build.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/cache/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/cache/cache.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/cache/clear.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/cache/list.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/check.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/command.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/config.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/debug/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/debug/debug.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/debug/info.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/debug/resolve.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/env/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/env/env.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/env/info.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/env/list.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/env/remove.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/env/use.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/env_command.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/export.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/init.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/install.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/installer_command.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/lock.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/new.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/publish.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/remove.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/run.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/search.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/self/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/self/self.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/self/update.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/shell.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/show.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/update.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/commands/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/config/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/config/application_config.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/logging/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/logging/formatters/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/logging/formatters/builder_formatter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/logging/formatters/formatter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/logging/io_formatter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/console/logging/io_handler.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/_pyrsistent_version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/_config.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/_funcs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/_make.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/_next_gen.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/_version_info.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/converters.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/filters.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/setters.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attr/validators.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/attrs.LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/COPYING","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/__main__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/_format.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/_legacy_validators.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/_reflect.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/_types.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/_utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/_validators.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/benchmarks/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/benchmarks/issue232.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/benchmarks/json_schema_test_suite.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/cli.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/schemas/draft3.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/schemas/draft4.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/schemas/draft6.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/schemas/draft7.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/jsonschema/validators.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/__pyinstaller/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/__pyinstaller/hook-lark.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/common.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/grammar.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/grammars/common.lark","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/indenter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/lark.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/lexer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/load_grammar.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parse_tree_builder.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parser_frontends.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/cyk.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/earley.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/earley_common.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/earley_forest.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/grammar_analysis.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/lalr_analysis.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/lalr_parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/lalr_puppet.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/parsers/xearley.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/reconstruct.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/reconstruct2.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/tools/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/tools/nearley.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/tools/serialize.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/tools/standalone.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/tree.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark/visitors.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/lark-parser.LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/LICENSE.APACHE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/LICENSE.BSD","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/__about__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/_structures.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/_typing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/markers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/requirements.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/specifiers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/tags.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/packaging/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyparsing.LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyparsing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/LICENSE.mit","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_checked_types.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_field_common.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_helpers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_immutable.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_pbag.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_pclass.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_pdeque.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_plist.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_pmap.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_precord.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_pset.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_pvector.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_toolz.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/_transformations.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/py.typed","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/pyrsistent/typing.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/six.LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/six.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/_utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/api.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/container.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/items.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/source.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/toml_char.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/toml_document.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/tomlkit/toml_file.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/_vendor/vendor.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/exceptions/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/exceptions/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/factory.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/json/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/json/schemas/poetry-schema.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/api.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/builder.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/builders/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/builders/builder.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/builders/sdist.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/builders/wheel.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/metadata.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/utils/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/utils/helpers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/utils/include.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/utils/module.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/masonry/utils/package_include.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/constraints/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/constraints/any_constraint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/constraints/base_constraint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/constraints/constraint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/constraints/empty_constraint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/constraints/multi_constraint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/constraints/union_constraint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/dependency.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/directory_dependency.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/file_dependency.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/package.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/project_package.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/specification.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/url_dependency.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/utils/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/utils/link.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/utils/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/packages/vcs_dependency.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/poetry.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/pyproject/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/pyproject/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/pyproject/tables.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/pyproject/toml.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/semver/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/semver/empty_constraint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/semver/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/semver/patterns.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/semver/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/semver/version_constraint.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/semver/version_range.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/semver/version_union.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/spdx/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/spdx/data/licenses.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/spdx/license.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/spdx/updater.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/toml/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/toml/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/toml/file.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/utils/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/utils/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/utils/helpers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/utils/patterns.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/utils/toml_file.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/vcs/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/vcs/git.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/base.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/grammars/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/grammars/markers.lark","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/grammars/pep508.lark","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/helpers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/legacy_version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/markers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/requirements.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/core/version/version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/factory.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/inspection/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/inspection/info.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/authenticator.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/base_installer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/chef.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/chooser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/executor.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/installer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/noop_installer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/operations/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/operations/install.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/operations/operation.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/operations/uninstall.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/operations/update.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/installation/pip_installer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/io/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/io/null_io.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/json/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/json/schemas/poetry-schema.json","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/layouts/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/layouts/layout.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/layouts/src.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/layouts/standard.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/locations.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/masonry/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/masonry/api.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/masonry/builders/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/masonry/builders/editable.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/assignment.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/failure.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/incompatibility.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/incompatibility_cause.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/partial_solution.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/result.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/set_relation.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/solutions/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/solutions/providers/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/solutions/providers/python_requirement_solution_provider.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/solutions/solutions/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/solutions/solutions/python_requirement_solution.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/term.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/mixology/version_solver.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/packages/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/packages/dependency_package.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/packages/locker.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/packages/package_collection.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/poetry.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/publishing/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/publishing/publisher.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/publishing/uploader.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/puzzle/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/puzzle/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/puzzle/provider.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/puzzle/solver.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/base_repository.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/exceptions.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/installed_repository.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/legacy_repository.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/pool.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/pypi_repository.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/remote_repository.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/repositories/repository.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/_compat.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/appdirs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/env.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/exporter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/extras.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/helpers.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/password_manager.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/patterns.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/setup_reader.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/utils/shell.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/version/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry/version/version_selector.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry-1.1.11.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry-1.1.11.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry-1.1.11.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry-1.1.11.dist-info/REQUESTED","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry-1.1.11.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry-1.1.11.dist-info/entry_points.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry_core-1.0.7.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry_core-1.0.7.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry_core-1.0.7.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/poetry_core-1.0.7.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ptyprocess/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ptyprocess/_fork_pty.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ptyprocess/ptyprocess.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ptyprocess/util.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ptyprocess-0.7.0.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ptyprocess-0.7.0.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ptyprocess-0.7.0.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ptyprocess-0.7.0.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/_ast_gen.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/_build_tables.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/_c_ast.cfg","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/ast_transforms.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/c_ast.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/c_generator.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/c_lexer.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/c_parser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/lextab.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/ply/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/ply/cpp.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/ply/ctokens.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/ply/lex.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/ply/yacc.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/ply/ygen.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/plyparser.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser/yacctab.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser-2.21.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser-2.21.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser-2.21.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser-2.21.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pycparser-2.21.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/__main__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/api.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/checker.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/messages.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/reporter.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/scripts/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/scripts/pyflakes.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/harness.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_api.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_builtin.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_checker.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_code_segment.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_dict.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_doctests.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_imports.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_is_literal.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_other.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_return_with_arguments_inside_generator.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_type_annotations.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes/test/test_undefined_names.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes-2.1.1.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes-2.1.1.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes-2.1.1.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes-2.1.1.dist-info/entry_points.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyflakes-2.1.1.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev/classic.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev/damerau.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev/recursive.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev/wf.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev-1.4.0.dist-info/INSTALLER","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev-1.4.0.dist-info/LICENSE","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev-1.4.0.dist-info/METADATA","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev-1.4.0.dist-info/WHEEL","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pylev-1.4.0.dist-info/top_level.txt","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/__main__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/_utils.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/_version.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/config/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/config/config.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/config/flake8_conf.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/config/pycodestyle_conf.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/config/source.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/hookspecs.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/lsp.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/__init__.py","time":"2023-10-10T01:25:18Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/autopep8_format.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/definition.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/flake8_lint.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/folding.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/highlight.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/hover.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/jedi_completion.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/mccabe_lint.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/preload_imports.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/pycodestyle_lint.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/pydocstyle_lint.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/pyflakes_lint.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/pylint_lint.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/references.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/rope_completion.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/rope_rename.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/signature.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/symbols.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/plugins/yapf_format.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/python_ls.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/uris.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls/workspace.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls_jsonrpc/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls_jsonrpc/_version.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls_jsonrpc/dispatchers.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls_jsonrpc/endpoint.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls_jsonrpc/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyls_jsonrpc/streams.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/actions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/common.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/core.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/diagram/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/diagram/template.jinja2","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/helpers.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/results.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/testing.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/unicode.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing/util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing-3.0.5.dist-info/INSTALLER","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing-3.0.5.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing-3.0.5.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing-3.0.5.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/pyparsing-3.0.5.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/python_jsonrpc_server-0.3.2.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/python_jsonrpc_server-0.3.2.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/python_language_server-0.31.10.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/python_language_server-0.31.10.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/python_language_server-0.31.10.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/python_language_server-0.31.10.dist-info/entry_points.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/python_language_server-0.31.10.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/__main__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/audio/Makefile","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/audio/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/audio/test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/audio/types.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/database/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/database/database.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/database/default_db.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/database/server.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/info.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/web/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/web/app.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/web/user.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit/web/utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit-3.2.4.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit-3.2.4.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit-3.2.4.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/replit-3.2.4.dist-info/entry_points.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/__version__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/_internal_utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/adapters.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/api.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/auth.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/certs.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/cookies.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/help.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/hooks.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/models.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/packages.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/sessions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/status_codes.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/structures.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests/utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests-2.27.1.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests-2.27.1.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests-2.27.1.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests-2.27.1.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/_compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/adapters/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/adapters/appengine.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/adapters/fingerprint.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/adapters/host_header_ssl.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/adapters/socket_options.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/adapters/source.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/adapters/ssl.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/adapters/x509.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/auth/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/auth/_digest_auth_compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/auth/guess.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/auth/handler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/auth/http_proxy_digest.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/cookies/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/cookies/forgetful.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/downloadutils/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/downloadutils/stream.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/downloadutils/tee.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/multipart/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/multipart/decoder.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/multipart/encoder.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/sessions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/streaming_iterator.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/threaded/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/threaded/pool.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/threaded/thread.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/utils/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/utils/deprecated.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/utils/dump.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/utils/formdata.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt/utils/user_agent.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt-0.9.1.dist-info/AUTHORS.rst","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt-0.9.1.dist-info/INSTALLER","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt-0.9.1.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt-0.9.1.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt-0.9.1.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/requests_toolbelt-0.9.1.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/arguments.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/ast.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/astutils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/builtins.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/change.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/codeanalyze.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/default_config.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/evaluate.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/fscommands.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/history.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/libutils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/doa.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/memorydb.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/objectdb.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/objectinfo.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/runmod.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/soa.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/soi.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/transform.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/evaluate.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/factory.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/interfaces.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/providers/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/providers/composite.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/providers/docstrings.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/providers/inheritance.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/providers/interfaces.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/providers/numpydocstrings.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/providers/pep0484_type_comments.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/resolvers/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/resolvers/composite.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/resolvers/interfaces.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/resolvers/types.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/oi/type_hinting/utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/prefs.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/project.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/pycore.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/pynames.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/pynamesdef.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/pyobjects.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/pyobjectsdef.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/pyscopes.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/resourceobserver.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/resources.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/simplify.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/stdmods.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/taskhandle.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/utils/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/utils/datastructures.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/utils/pycompat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/base/worder.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/autoimport.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/changestack.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/codeassist.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/finderrors.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/findit.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/fixmodnames.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/fixsyntax.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/contrib/generate.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/change_signature.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/encapsulate_field.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/extract.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/functionutils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/importutils/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/importutils/actions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/importutils/importinfo.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/importutils/module_imports.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/inline.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/introduce_factory.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/introduce_parameter.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/localtofield.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/method_object.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/move.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/multiproject.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/occurrences.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/patchedast.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/rename.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/restructure.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/similarfinder.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/sourceutils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/suites.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/topackage.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/usefunction.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope/refactor/wildcards.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope-0.18.0.dist-info/COPYING","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/rope-0.18.0.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/secretstorage/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/secretstorage/collection.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/secretstorage/defines.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/secretstorage/dhcrypto.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/secretstorage/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/secretstorage/item.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/secretstorage/py.typed","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/secretstorage/util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_deprecation_warning.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/_collections.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/_msvccompiler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/archive_util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/bcppcompiler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/ccompiler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/cmd.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_dumb.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_msi.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_rpm.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/bdist_wininst.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/build.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_clib.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_ext.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_py.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/build_scripts.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/check.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/clean.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/config.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/install.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_data.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_egg_info.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_headers.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_lib.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/install_scripts.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/py37compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/register.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/sdist.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/command/upload.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/config.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/core.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/cygwinccompiler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/debug.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/dep_util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/dir_util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/dist.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/errors.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/extension.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/fancy_getopt.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/file_util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/filelist.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/log.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/msvc9compiler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/msvccompiler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/py35compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/py38compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/spawn.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/sysconfig.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/text_file.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/unixccompiler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/version.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_distutils/versionpredicate.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_imp.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/more_itertools/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/more_itertools/more.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/more_itertools/recipes.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/ordered_set.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__about__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_manylinux.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_musllinux.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/_structures.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/markers.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/requirements.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/specifiers.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/tags.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/packaging/version.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/_vendor/pyparsing.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/archive_util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/build_meta.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/cli-32.exe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/cli-64.exe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/cli-arm64.exe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/cli.exe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/alias.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/bdist_egg.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/bdist_rpm.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/build_clib.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/build_ext.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/build_py.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/develop.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/dist_info.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/easy_install.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/egg_info.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/install.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/install_egg_info.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/install_lib.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/install_scripts.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/launcher manifest.xml","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/py36compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/register.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/rotate.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/saveopts.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/sdist.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/setopt.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/upload.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/command/upload_docs.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/config.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/dep_util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/depends.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/dist.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/errors.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/extension.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/extern/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/glob.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/gui-32.exe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/gui-64.exe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/gui-arm64.exe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/gui.exe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/installer.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/launch.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/logging.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/monkey.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/msvc.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/namespaces.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/package_index.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/py34compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/sandbox.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/script (dev).tmpl","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/script.tmpl","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/unicode_utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/version.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/wheel.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools/windows_support.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools-60.3.1.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools-60.3.1.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools-60.3.1.dist-info/entry_points.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/setuptools-60.3.1.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham/_core.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham/nt.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham/posix/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham/posix/_core.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham/posix/proc.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham/posix/ps.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham-1.4.0.dist-info/INSTALLER","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham-1.4.0.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham-1.4.0.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham-1.4.0.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham-1.4.0.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/shellingham-1.4.0.dist-info/zip-safe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/six-1.16.0.dist-info/INSTALLER","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/six-1.16.0.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/six-1.16.0.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/six-1.16.0.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/six-1.16.0.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/six.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tests/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tests/test_client.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tests/test_exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tests/test_package.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tests/test_parse.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tests/test_release.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml/decoder.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml/encoder.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml/ordered.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml/tz.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml-0.10.2.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml-0.10.2.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml-0.10.2.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/toml-0.10.2.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/_compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/_utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/api.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/container.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/items.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/parser.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/py.typed","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/source.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/toml_char.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/toml_document.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit/toml_file.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit-0.7.2.dist-info/INSTALLER","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit-0.7.2.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit-0.7.2.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/tomlkit-0.7.2.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/typing_extensions-3.10.0.2.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/typing_extensions-3.10.0.2.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/typing_extensions-3.10.0.2.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/typing_extensions-3.10.0.2.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/typing_extensions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ujson-1.35.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/ujson.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/_collections.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/_version.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/connection.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/connectionpool.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/_appengine_environ.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/bindings.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/_securetransport/low_level.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/appengine.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/ntlmpool.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/pyopenssl.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/securetransport.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/contrib/socks.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/fields.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/filepost.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/packages/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/packages/backports/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/packages/backports/makefile.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/packages/six.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/poolmanager.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/request.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/response.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/connection.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/proxy.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/queue.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/request.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/response.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/retry.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/ssl_.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/ssl_match_hostname.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/ssltransport.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/timeout.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/url.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3/util/wait.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3-1.26.9.dist-info/LICENSE.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3-1.26.9.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3-1.26.9.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/urllib3-1.26.9.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/__main__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/activator.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/bash/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/bash/activate.sh","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/batch/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/batch/activate.bat","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/batch/deactivate.bat","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/batch/pydoc.bat","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/cshell/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/cshell/activate.csh","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/fish/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/fish/activate.fish","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/nushell/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/nushell/activate.nu","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/nushell/deactivate.nu","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/powershell/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/powershell/activate.ps1","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/python/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/python/activate_this.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/activation/via_template.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/app_data/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/app_data/base.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/app_data/na.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/app_data/read_only.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/app_data/via_disk_folder.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/app_data/via_tempdir.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/config/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/config/cli/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/config/cli/parser.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/config/convert.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/config/env_var.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/config/ini.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/creator.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/debug.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/describe.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/pyenv_cfg.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/_virtualenv.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/api.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/builtin_way.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/cpython/common.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/cpython/cpython2.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/cpython/cpython3.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/cpython/mac_os.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/pypy/common.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/pypy/pypy2.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/pypy/pypy3.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/python2/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/python2/python2.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/python2/site.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/ref.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/builtin/via_global_self_do.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/store.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/create/via_global_ref/venv.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/discovery/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/discovery/builtin.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/discovery/cached_py_info.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/discovery/discover.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/discovery/py_info.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/discovery/py_spec.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/discovery/windows/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/discovery/windows/pep514.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/info.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/report.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/run/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/run/plugin/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/run/plugin/activators.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/run/plugin/base.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/run/plugin/creators.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/run/plugin/discovery.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/run/plugin/seeders.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/run/session.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/base_embed.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/pip_invoke.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/via_app_data/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/via_app_data/pip_install/base.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/via_app_data/pip_install/copy.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/via_app_data/pip_install/symlink.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/embed/via_app_data/via_app_data.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/seeder.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/acquire.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/bundle.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/embed/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/embed/pip-20.3.4-py2.py3-none-any.whl","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/embed/pip-21.3.1-py3-none-any.whl","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/embed/setuptools-44.1.1-py2.py3-none-any.whl","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/embed/setuptools-50.3.2-py3-none-any.whl","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/embed/setuptools-58.3.0-py3-none-any.whl","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/embed/wheel-0.37.0-py2.py3-none-any.whl","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/periodic_update.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/seed/wheels/util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/error.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/lock.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/path/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/path/_pathlib/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/path/_pathlib/via_os_path.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/path/_permission.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/path/_sync.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/path/_win.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/six.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/subprocess/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/subprocess/_win_subprocess.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/util/zipapp.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv/version.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv-20.10.0.dist-info/INSTALLER","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv-20.10.0.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv-20.10.0.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv-20.10.0.dist-info/REQUESTED","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv-20.10.0.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv-20.10.0.dist-info/entry_points.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv-20.10.0.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/virtualenv-20.10.0.dist-info/zip-safe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings/labels.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings/mklabels.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings/tests.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings/x_user_defined.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings-0.5.1.dist-info/DESCRIPTION.rst","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings-0.5.1.dist-info/INSTALLER","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings-0.5.1.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings-0.5.1.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings-0.5.1.dist-info/metadata.json","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/webencodings-0.5.1.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/_reloader.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/debug/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/debug/console.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/debug/shared/ICON_LICENSE.md","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/debug/shared/console.png","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/debug/shared/debugger.js","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/debug/shared/less.png","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/debug/shared/more.png","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/debug/shared/style.css","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/formparser.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/http.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/middleware/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/middleware/dispatcher.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/middleware/http_proxy.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/middleware/profiler.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/middleware/proxy_fix.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/middleware/shared_data.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/py.typed","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/sansio/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/sansio/multipart.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/sansio/request.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/sansio/response.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/sansio/utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/security.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/urls.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/user_agent.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/wrappers/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/wrappers/request.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/wrappers/response.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/werkzeug/wsgi.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/__main__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/bdist_wheel.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/cli/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/cli/convert.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/cli/pack.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/cli/unpack.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/macosx_libfile.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/metadata.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/pkginfo.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/util.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/vendored/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/vendored/packaging/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/vendored/packaging/_typing.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/vendored/packaging/tags.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel/wheelfile.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel-0.37.1.dist-info/LICENSE.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel-0.37.1.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel-0.37.1.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel-0.37.1.dist-info/entry_points.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/wheel-0.37.1.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/__main__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/blank_line_calculator.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/comment_splicer.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/continuation_splicer.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/errors.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/file_resources.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/format_decision_state.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/format_token.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/identify_container.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/line_joiner.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/object_state.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/py3compat.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/pytree_unwrapper.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/pytree_utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/pytree_visitor.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/reformatter.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/split_penalty.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/style.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/subtype_assigner.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/unwrapped_line.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/verifier.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf/yapflib/yapf_api.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf-0.31.0.dist-info/AUTHORS","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf-0.31.0.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf-0.31.0.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf-0.31.0.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf-0.31.0.dist-info/entry_points.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapf-0.31.0.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/blank_line_calculator_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/comment_splicer_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/file_resources_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/format_decision_state_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/format_token_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/line_joiner_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/main_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/pytree_unwrapper_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/pytree_utils_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/pytree_visitor_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/reformatter_basic_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/reformatter_buganizer_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/reformatter_facebook_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/reformatter_pep8_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/reformatter_python3_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/reformatter_style_config_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/reformatter_verify_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/split_penalty_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/style_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/subtype_assigner_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/unwrapped_line_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/utils.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/yapf_test.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yapftests/yapf_test_helper.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg/__about__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg/client.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg/exceptions.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg/package.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg/parse.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg/release.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg-0.1.9.dist-info/DESCRIPTION.rst","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg-0.1.9.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg-0.1.9.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg-0.1.9.dist-info/metadata.json","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg-0.1.9.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarg-0.1.9.dist-info/zip-safe","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/__init__.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/__init__.pyi","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/_quoting.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/_quoting_c.c","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/_quoting_c.cpython-38-x86_64-linux-gnu.so","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/_quoting_c.pyi","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/_quoting_c.pyx","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/_quoting_py.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/_url.py","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl/py.typed","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl-1.7.2.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl-1.7.2.dist-info/METADATA","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl-1.7.2.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/yarl-1.7.2.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/zipp-3.8.0.dist-info/LICENSE","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/zipp-3.8.0.dist-info/WHEEL","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib/python3.8/site-packages/zipp-3.8.0.dist-info/top_level.txt","time":"2023-10-10T01:25:19Z"} +{"error":".zip archives do not support non-regular files","level":"error","msg":"unable to write file venv/lib64","time":"2023-10-10T01:25:19Z"}