From 6818f0b9bd00d46cc1046db9bd8b00323f19caf8 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 12:29:42 -0500 Subject: [PATCH 01/28] simulation is working --- .gitignore | 3 +- app.py | 212 ------------------------ main.py | 227 ++++++++++++++++++++++++++ requirements.txt | 5 + window.py | 134 --------------- window.ui | 416 +++++++++++++++++++++-------------------------- window_v0.ui | 259 +++++++++++++++++++++++++++++ 7 files changed, 681 insertions(+), 575 deletions(-) delete mode 100644 app.py create mode 100644 main.py create mode 100644 requirements.txt delete mode 100644 window.py create mode 100644 window_v0.ui diff --git a/.gitignore b/.gitignore index a57e37c..3a080c3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .idea -.pyc \ No newline at end of file +.pyc +.venv \ No newline at end of file diff --git a/app.py b/app.py deleted file mode 100644 index 0c566ba..0000000 --- a/app.py +++ /dev/null @@ -1,212 +0,0 @@ -# -*- coding: utf-8 -*- - -from dronekit import connect, VehicleMode -from pymavlink import mavutil - -from PyQt4 import QtCore, QtGui -from window import Ui_MainWindow -import time - - -class QDCWindow(QtGui.QMainWindow): - - def __init__(self): - - QtGui.QMainWindow.__init__(self) - - # UI created by QT Designer - self.ui = Ui_MainWindow() - self.ui.setupUi(self) - - # default value = 5 m - self.launchAlt = 5 - - #Set up option parsing to get connection string - import argparse - parser = argparse.ArgumentParser(description='Tracks GPS position of your computer (Linux only). Connects to SITL on local PC by default.') - parser.add_argument('--connect', help="vehicle connection target.") - args = parser.parse_args() - - self.connection_string = args.connect - self.sitl = None - - #Start SITL if no connection string specified - if not self.connection_string: - import dronekit_sitl - self.sitl = dronekit_sitl.start_default() - self.connection_string = self.sitl.connection_string() - - # Connect to the Vehicle - print 'Connecting to vehicle on: %s' % self.connection_string - self.vehicle = connect(self.connection_string, wait_ready=True) - - # Display Flight Mode - self.updateFlightModeGUI(self.vehicle.mode) - self.addObserverAndInit( - 'mode' - ,lambda vehicle,name,mode: self.updateFlightModeGUI(mode) ) - - # Display Location Info - self.updateLocationGUI(self.vehicle.location) - self.addObserverAndInit( - 'location' - ,lambda vehicle, name, location: self.updateLocationGUI(location) ) - - - def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): - msg = self.vehicle.message_factory.set_position_target_local_ned_encode( - 0, # time_boot_ms (not used) - 0, 0, # target system, target component - mavutil.mavlink.MAV_FRAME_LOCAL_NED, # frame - 0b0000111111000111, # type_mask (only speeds enabled) - 0, 0, 0, # x, y, z positions (not used) - velocity_x, velocity_y, velocity_z, # x, y, z velocity in m/s - 0, 0, 0, # x, y, z acceleration (not supported yet, ignored in GCS_Mavlink) - 0, 0) # yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) - - #send command to vehicle on 1 Hz cycle - for x in range(0,duration): - self.vehicle.send_mavlink(msg) - time.sleep(1) - - # set yaw from 0 to 359 / 0-north, 90-east, 180-south, 270-west - def condition_yaw(heading, relative=False): - if relative: - is_relative = 1 #yaw relative to direction of travel - else: - is_relative = 0 #yaw is an absolute angle - # create the CONDITION_YAW command using command_long_encode() - msg = vehicle.message_factory.command_long_encode( - 0, 0, # target system, target component - mavutil.mavlink.MAV_CMD_CONDITION_YAW, #command - 0, #confirmation - heading, # param 1, yaw in degrees - 0, # param 2, yaw speed deg/s - 1, # param 3, direction -1 ccw, 1 cw - is_relative, # param 4, relative offset 1, absolute angle 0 - 0, 0, 0) # param 5 ~ 7 not used - # send command to vehicle - vehicle.send_mavlink(msg) - - def updateLocationGUI(self, location): - self.ui.lblLongValue.setText(str(location.global_frame.lon)) - self.ui.lblLatValue.setText(str(location.global_frame.lat)) - self.ui.lblAltValue.setText(str(location.global_relative_frame.alt)) - - def updateFlightModeGUI(self, value): - index,mode = str(value).split(':') - self.ui.lblFlightModeValue.setText(mode) - - def addObserverAndInit(self, name, cb): - """We go ahead and call our observer once at startup to get an initial value""" - self.vehicle.add_attribute_listener(name, cb) - - - def vehicle_validation(self, function): - if self.vehicle.mode == "GUIDED": - function() - - def west_click(self): - @self.vehicle_validation - def wrapped(): - self.send_ned_velocity(0,-1,0,1) - self.send_ned_velocity(0,0,0,1) - - def east_click(self): - @self.vehicle_validation - def wrapped(): - self.send_ned_velocity(0,1,0,1) - self.send_ned_velocity(0,0,0,1) - - def north_click(self): - @self.vehicle_validation - def wrapped(): - self.send_ned_velocity(1,0,0,1) - self.send_ned_velocity(0,0,0,1) - - def south_click(self): - @self.vehicle_validation - def wrapped(): - self.send_ned_velocity(-1,0,0,1) - self.send_ned_velocity(0,0,0,1) - - def rtl_click(self): - @self.vehicle_validation - def wrapped(): - self.vehicle.mode = VehicleMode("RTL") - - def up_click(self): - @self.vehicle_validation - def wrapped(): - alt = self.vehicle.location.global_relative_frame.alt - if alt < 20: - self.send_ned_velocity(0,0,-0.5,1) - self.send_ned_velocity(0,0,0,1) - - def down_click(self): - @self.vehicle_validation - def wrapped(): - alt = self.vehicle.location.global_relative_frame.alt - if alt > 3: - self.send_ned_velocity(0,0,0.5,1) - self.send_ned_velocity(0,0,0,1) - - def launch_click(self): - """ - Arms vehicle and fly to self.alt - """ - print "Basic pre-arm checks" - # Don't let the user try to arm until autopilot is ready - while not self.vehicle.is_armable: - print " Waiting for vehicle to initialise..." - time.sleep(1) - - print "Arming motors" - # Copter should arm in GUIDED mode - self.vehicle.mode = VehicleMode("GUIDED") - self.vehicle.armed = True - - while not self.vehicle.armed: - print " Waiting for arming..." - time.sleep(1) - - print "Taking off!" - self.vehicle.simple_takeoff(self.launchAlt) # Take off to target altitude - - # Wait until the vehicle reaches a safe height before processing the goto (otherwise the command - # after Vehicle.simple_takeoff will execute immediately). - while True: - print " Altitude: ", self.vehicle.location.global_relative_frame.alt - if self.vehicle.location.global_relative_frame.alt>=self.launchAlt*0.95: #Trigger just below target alt. - print "Reached target altitude" - break - time.sleep(1) - - #def keyPressEvent (self, eventQKeyEvent): - # key = eventQKeyEvent.key() - # if key == QtCore.Qt.Key_Left: - # print 'Left' - # elif key == QtCore.Qt.Key_Up: - # print 'Up' - # elif key == QtCore.Qt.Key_Right: - # print 'Right' - # elif key == QtCore.Qt.Key_Down: - # print 'Down' - - #def keyReleaseEvent(self, eventQKeyEvent): - # key = eventQKeyEvent.key() - # if key == QtCore.Qt.Key_Left: - # print 'Left Released' - # elif key == QtCore.Qt.Key_Up: - # print 'Up Released' - # elif key == QtCore.Qt.Key_Right: - # print 'Right Released' - # elif key == QtCore.Qt.Key_Down: - # print 'Down Released' - -if __name__ == "__main__": - import sys - app = QtGui.QApplication(sys.argv) - MainWindow = QDCWindow() - MainWindow.show() - sys.exit(app.exec_()) \ No newline at end of file diff --git a/main.py b/main.py new file mode 100644 index 0000000..539ed88 --- /dev/null +++ b/main.py @@ -0,0 +1,227 @@ +from dronekit import connect, VehicleMode +from pymavlink import mavutil + +from PyQt6.QtWidgets import QApplication, QTableWidgetItem, QMainWindow +import sys +from PyQt6 import uic +from PyQt6.QtCore import QTimer +from threading import Thread + +import argparse +from enum import Enum +from collections import defaultdict +import time + +TAKEOFF_ALTITUDE = 5 # m +DT = 1 # sec +CMD_VEL = 1 # m/s + +class State(Enum): + INITIALIZED = 0 + ARMED = 1 + TAKEOFF = 2 + HOVER = 3 + +class Action(Enum): + IS_ARMABLE = 0 + IS_ARMED = 1 + HAS_ARRIVED = 2 + + +class MainWindow(QMainWindow): + def __init__(self, args): + super().__init__() + uic.loadUi('window.ui', self) + self.progressBar.setValue(0) + self.thread = Thread(target=self.connect, args=(args,)) + self.thread.start() + + self.transition = defaultdict(dict) + self.transition[State.INITIALIZED][Action.IS_ARMABLE] = State.ARMED + self.transition[State.ARMED][Action.IS_ARMED] = State.TAKEOFF + self.transition[State.TAKEOFF][Action.HAS_ARRIVED] = State.HOVER + + self.launchAlt = TAKEOFF_ALTITUDE + self.btnLaunch.clicked.connect(self.launch_click) + + self.btnWest.clicked.connect(self.west_click) + self.btnEast.clicked.connect(self.east_click) + self.btnNorth.clicked.connect(self.north_click) + self.btnSouth.clicked.connect(self.south_click) + self.btnRTL.clicked.connect(self.rtl_click) + self.btnUp.clicked.connect(self.up_click) + self.btnDown.clicked.connect(self.down_click) + + def connect(self, args): + self.connection_string = args.connect + self.sitl = None + + # Start SITL if no connection string specified + if not self.connection_string: + import dronekit_sitl + self.sitl = dronekit_sitl.start_default() + self.connection_string = self.sitl.connection_string() + + # Connect to the Vehicle + print('Connecting to vehicle on: %s' % self.connection_string) + + self.vehicle = connect(self.connection_string, wait_ready=True) + self.progressBar.setValue(25) + + # Display Flight Mode + self.updateFlightModeGUI(self.vehicle.mode) + self.addObserverAndInit( + 'mode' + , lambda vehicle, name, mode: self.updateFlightModeGUI(mode)) + + # Display Location Info + self.updateLocationGUI(self.vehicle.location) + self.addObserverAndInit( + 'location' + , lambda vehicle, name, location: self.updateLocationGUI(location)) + + # change state + self.state = State.INITIALIZED + # + + def updateFlightModeGUI(self, value): + print('flight mode change to ', value) + index, mode = str(value).split(':') + self.lblFlightModeValue.setText(mode) + + def updateLocationGUI(self, location): + self.lblLongValue.setText(str(location.global_frame.lon)) + self.lblLatValue.setText(str(location.global_frame.lat)) + self.lblAltValue.setText(str(location.global_relative_frame.alt)) + + def addObserverAndInit(self, name, cb): + """We go ahead and call our observer once at startup to get an initial value""" + self.vehicle.add_attribute_listener(name, cb) + + def getAction(self, state:State): + """get an action based on the state of the vehicle""" + if state == State.INITIALIZED and self.vehicle.is_armable: + return Action.IS_ARMABLE + elif state == State.ARMED and self.vehicle.armed and self.vehicle.mode.name == 'GUIDED': + return Action.IS_ARMED + elif state == State.TAKEOFF and self.vehicle.location.global_relative_frame.alt >= self.launchAlt * 0.95: + return Action.HAS_ARRIVED + def timerCallback(self): + """ + complete the launch process, update the state machine + """ + action = self.getAction(self.state) + if action is None: + return + + self.state = self.transition[self.state][action] + print(self.state.name, self.vehicle.system_status.state) + + if self.state == State.ARMED: + self.vehicle.mode = VehicleMode("GUIDED") + self.vehicle.armed = True + self.progressBar.setValue(50) + + elif self.state == State.TAKEOFF: + self.vehicle.simple_takeoff(self.launchAlt) + self.progressBar.setValue(75) + + elif self.state == State.HOVER: + print("vehicle reached to hovering position") + self.timer.stop() + self.progressBar.setValue(100) + + ############### MAV LINK communication ########################################################################## + def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): + msg = self.vehicle.message_factory.set_position_target_local_ned_encode( + 0, # time_boot_ms (not used) + 0, 0, # target system, target component + mavutil.mavlink.MAV_FRAME_LOCAL_NED, # frame + 0b0000111111000111, # type_mask (only speeds enabled) + 0, 0, 0, # x, y, z positions (not used) + velocity_x, velocity_y, velocity_z, # x, y, z velocity in m/s + 0, 0, 0, # x, y, z acceleration (not supported yet, ignored in GCS_Mavlink) + 0, 0) # yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) + + # send command to vehicle on 1 Hz cycle + for x in range(0, duration): + self.vehicle.send_mavlink(msg) + time.sleep(DT) + + ############### Joystick communication ########################################################################## + def vehicle_validation(self, function): + if self.vehicle.mode == "GUIDED": + print('button clicked ', function.__name__) + function() + + def west_click(self): + @self.vehicle_validation + def west_wrapped(): + self.send_ned_velocity(0, -CMD_VEL, 0, 1) + self.send_ned_velocity(0, 0, 0, 1) + + def east_click(self): + @self.vehicle_validation + def east_wrapped(): + self.send_ned_velocity(0, CMD_VEL, 0, 1) + self.send_ned_velocity(0, 0, 0, 1) + + def north_click(self): + @self.vehicle_validation + def north_wrapped(): + self.send_ned_velocity(CMD_VEL, 0, 0, 1) + self.send_ned_velocity(0, 0, 0, 1) + + def south_click(self): + @self.vehicle_validation + def south_wrapped(): + self.send_ned_velocity(-CMD_VEL, 0, 0, 1) + self.send_ned_velocity(0, 0, 0, 1) + + def rtl_click(self): + @self.vehicle_validation + def rtl_wrapped(): + self.vehicle.mode = VehicleMode("RTL") + + def up_click(self): + @self.vehicle_validation + def up_wrapped(): + alt = self.vehicle.location.global_relative_frame.alt + if alt < 20: + self.send_ned_velocity(0, 0, -0.5, 1) + self.send_ned_velocity(0, 0, 0, 1) + + def down_click(self): + @self.vehicle_validation + def down_wrapped(): + alt = self.vehicle.location.global_relative_frame.alt + if alt > 3: + self.send_ned_velocity(0, 0, 0.5 * CMD_VEL, 1) + self.send_ned_velocity(0, 0, 0, 1) + + + def launch_click(self): + """ + Arms vehicle and fly to self.alt + """ + print('launch button pressed') + if self.state == State.INITIALIZED: + print('initializeing taking off ...') + self.timer = QTimer() + self.timer.timeout.connect(self.timerCallback) + self.timer.start(1000) + else: + print("launch has already been initialized !") + + +if __name__ == '__main__': + # Set up option parsing to get connection string + parser = argparse.ArgumentParser( + description='Tracks GPS position of your computer (Linux only). Connects to SITL on local PC by default.') + parser.add_argument('--connect', help="vehicle connection target.") + args = parser.parse_args() + + app = QApplication(sys.argv) + window = MainWindow(args) + window.show() + sys.exit(app.exec()) \ No newline at end of file diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..bb0b162 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,5 @@ +pymavlink==2.4.8 +dronekit +dronekit-sitl +pyqt6 +matplotlib \ No newline at end of file diff --git a/window.py b/window.py deleted file mode 100644 index e2bdde9..0000000 --- a/window.py +++ /dev/null @@ -1,134 +0,0 @@ -# -*- coding: utf-8 -*- - -# Form implementation generated from reading ui file 'window.ui' -# -# Created by: PyQt4 UI code generator 4.11.4 -# -# WARNING! All changes made in this file will be lost! - -from PyQt4 import QtCore, QtGui - -try: - _fromUtf8 = QtCore.QString.fromUtf8 -except AttributeError: - def _fromUtf8(s): - return s - -try: - _encoding = QtGui.QApplication.UnicodeUTF8 - def _translate(context, text, disambig): - return QtGui.QApplication.translate(context, text, disambig, _encoding) -except AttributeError: - def _translate(context, text, disambig): - return QtGui.QApplication.translate(context, text, disambig) - -class Ui_MainWindow(object): - def setupUi(self, MainWindow): - MainWindow.setObjectName(_fromUtf8("MainWindow")) - MainWindow.resize(400, 279) - self.centralwidget = QtGui.QWidget(MainWindow) - self.centralwidget.setObjectName(_fromUtf8("centralwidget")) - self.btnWest = QtGui.QPushButton(self.centralwidget) - self.btnWest.setGeometry(QtCore.QRect(100, 180, 113, 32)) - self.btnWest.setObjectName(_fromUtf8("btnWest")) - self.btnEast = QtGui.QPushButton(self.centralwidget) - self.btnEast.setGeometry(QtCore.QRect(260, 180, 113, 32)) - self.btnEast.setObjectName(_fromUtf8("btnEast")) - self.btnNorth = QtGui.QPushButton(self.centralwidget) - self.btnNorth.setGeometry(QtCore.QRect(180, 150, 113, 32)) - self.btnNorth.setObjectName(_fromUtf8("btnNorth")) - self.btnSouth = QtGui.QPushButton(self.centralwidget) - self.btnSouth.setGeometry(QtCore.QRect(180, 210, 113, 32)) - self.btnSouth.setObjectName(_fromUtf8("btnSouth")) - self.btnRTL = QtGui.QPushButton(self.centralwidget) - self.btnRTL.setGeometry(QtCore.QRect(210, 180, 51, 32)) - self.btnRTL.setObjectName(_fromUtf8("btnRTL")) - self.lblAlt = QtGui.QLabel(self.centralwidget) - self.lblAlt.setGeometry(QtCore.QRect(54, 100, 71, 16)) - self.lblAlt.setObjectName(_fromUtf8("lblAlt")) - self.btnUp = QtGui.QPushButton(self.centralwidget) - self.btnUp.setGeometry(QtCore.QRect(20, 150, 71, 31)) - self.btnUp.setObjectName(_fromUtf8("btnUp")) - self.btnDown = QtGui.QPushButton(self.centralwidget) - self.btnDown.setGeometry(QtCore.QRect(20, 170, 71, 32)) - self.btnDown.setObjectName(_fromUtf8("btnDown")) - self.lblAltValue = QtGui.QLabel(self.centralwidget) - self.lblAltValue.setGeometry(QtCore.QRect(130, 100, 161, 16)) - self.lblAltValue.setText(_fromUtf8("")) - self.lblAltValue.setObjectName(_fromUtf8("lblAltValue")) - self.lblLat = QtGui.QLabel(self.centralwidget) - self.lblLat.setGeometry(QtCore.QRect(54, 50, 71, 16)) - self.lblLat.setObjectName(_fromUtf8("lblLat")) - self.lblLon = QtGui.QLabel(self.centralwidget) - self.lblLon.setGeometry(QtCore.QRect(54, 70, 71, 16)) - self.lblLon.setObjectName(_fromUtf8("lblLon")) - self.lblLatValue = QtGui.QLabel(self.centralwidget) - self.lblLatValue.setGeometry(QtCore.QRect(130, 50, 211, 16)) - self.lblLatValue.setText(_fromUtf8("")) - self.lblLatValue.setObjectName(_fromUtf8("lblLatValue")) - self.lblLongValue = QtGui.QLabel(self.centralwidget) - self.lblLongValue.setGeometry(QtCore.QRect(130, 70, 211, 16)) - self.lblLongValue.setText(_fromUtf8("")) - self.lblLongValue.setObjectName(_fromUtf8("lblLongValue")) - self.lblFlightMode = QtGui.QLabel(self.centralwidget) - self.lblFlightMode.setGeometry(QtCore.QRect(84, 10, 91, 16)) - self.lblFlightMode.setObjectName(_fromUtf8("lblFlightMode")) - self.lblFlightModeValue = QtGui.QLabel(self.centralwidget) - self.lblFlightModeValue.setGeometry(QtCore.QRect(170, 10, 151, 16)) - self.lblFlightModeValue.setText(_fromUtf8("")) - self.lblFlightModeValue.setObjectName(_fromUtf8("lblFlightModeValue")) - self.btnLaunch = QtGui.QPushButton(self.centralwidget) - self.btnLaunch.setGeometry(QtCore.QRect(20, 206, 71, 32)) - self.btnLaunch.setObjectName(_fromUtf8("btnLaunch")) - self.frame = QtGui.QFrame(self.centralwidget) - self.frame.setGeometry(QtCore.QRect(29, 40, 341, 91)) - self.frame.setFrameShape(QtGui.QFrame.StyledPanel) - self.frame.setFrameShadow(QtGui.QFrame.Raised) - self.frame.setObjectName(_fromUtf8("frame")) - MainWindow.setCentralWidget(self.centralwidget) - self.menubar = QtGui.QMenuBar(MainWindow) - self.menubar.setGeometry(QtCore.QRect(0, 0, 400, 22)) - self.menubar.setObjectName(_fromUtf8("menubar")) - MainWindow.setMenuBar(self.menubar) - self.statusbar = QtGui.QStatusBar(MainWindow) - self.statusbar.setObjectName(_fromUtf8("statusbar")) - MainWindow.setStatusBar(self.statusbar) - - self.retranslateUi(MainWindow) - - QtCore.QObject.connect(self.btnWest, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), MainWindow.west_click) - QtCore.QObject.connect(self.btnEast, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), MainWindow.east_click) - QtCore.QObject.connect(self.btnNorth, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), MainWindow.north_click) - QtCore.QObject.connect(self.btnSouth, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), MainWindow.south_click) - QtCore.QObject.connect(self.btnRTL, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), MainWindow.rtl_click) - QtCore.QObject.connect(self.btnUp, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), MainWindow.up_click) - QtCore.QObject.connect(self.btnDown, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), MainWindow.down_click) - QtCore.QObject.connect(self.btnLaunch, QtCore.SIGNAL(_fromUtf8("clicked(bool)")), MainWindow.launch_click) - - QtCore.QMetaObject.connectSlotsByName(MainWindow) - - def retranslateUi(self, MainWindow): - MainWindow.setWindowTitle(_translate("MainWindow", "Drone Controller", None)) - self.btnWest.setText(_translate("MainWindow", "Go West", None)) - self.btnEast.setText(_translate("MainWindow", "Go East", None)) - self.btnNorth.setText(_translate("MainWindow", "Go North", None)) - self.btnSouth.setText(_translate("MainWindow", "Go South", None)) - self.btnRTL.setText(_translate("MainWindow", "RTL", None)) - self.lblAlt.setText(_translate("MainWindow", "Altitude : ", None)) - self.btnUp.setText(_translate("MainWindow", "UP", None)) - self.btnDown.setText(_translate("MainWindow", "DOWN", None)) - self.lblLat.setText(_translate("MainWindow", "Latitude :", None)) - self.lblLon.setText(_translate("MainWindow", "Longitude :", None)) - self.lblFlightMode.setText(_translate("MainWindow", "Flight Mode :", None)) - self.btnLaunch.setText(_translate("MainWindow", "Launch", None)) - - -if __name__ == "__main__": - import sys - app = QtGui.QApplication(sys.argv) - MainWindow = QtGui.QMainWindow() - ui = Ui_MainWindow() - ui.setupUi(MainWindow) - MainWindow.show() - sys.exit(app.exec_()) - diff --git a/window.ui b/window.ui index 7fd5224..7a573e4 100644 --- a/window.ui +++ b/window.ui @@ -6,246 +6,206 @@ 0 0 - 400 - 279 + 915 + 724 Drone Controller - - - - 100 - 180 - 113 - 32 - - - - Go West - - - - - - 260 - 180 - 113 - 32 - - - - Go East - - - - - - 180 - 150 - 113 - 32 - - - - Go North - - - - - - 180 - 210 - 113 - 32 - - - - Go South - - - - - - 210 - 180 - 51 - 32 - - - - RTL - - - - - - 54 - 100 - 71 - 16 - - - - Altitude : - - - - - - 20 - 150 - 71 - 31 - - - - UP - - - - - - 20 - 170 - 71 - 32 - - - - DOWN - - - - - - 130 - 100 - 161 - 16 - - - - - - - - - - 54 - 50 - 71 - 16 - - - - Latitude : - - - - - - 54 - 70 - 71 - 16 - - - - Longitude : - - - - - - 130 - 50 - 211 - 16 - - - - - - - - - - 130 - 70 - 211 - 16 - - - - - - - - - - 84 - 10 - 91 - 16 - - - - Flight Mode : - - - - - - 170 - 10 - 151 - 16 - - - - - - - - - - 20 - 206 - 71 - 32 - - - - Launch - - - - - - 29 - 40 - 341 - 91 - - - - QFrame::StyledPanel - - - QFrame::Raised - - + + + + + + + + + + Qt::Vertical + + + + + + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + + + + + + Longitude : + + + + + + + Latitude : + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + 24 + + + + + + + + + + Launch + + + + + + + DOWN + + + + + + + Go South + + + + + + + Flight Mode : + + + + + + + + + + + + + + UP + + + + + + + Go North + + + + + + + RTL + + + + + + + + + + + + + + Go West + + + + + + + Go East + + + + + + + Altitude : + + + + + + + + + + + Qt::Vertical + + + + 0 0 - 400 - 22 + 915 + 24 diff --git a/window_v0.ui b/window_v0.ui new file mode 100644 index 0000000..7fd5224 --- /dev/null +++ b/window_v0.ui @@ -0,0 +1,259 @@ + + + MainWindow + + + + 0 + 0 + 400 + 279 + + + + Drone Controller + + + + + + 100 + 180 + 113 + 32 + + + + Go West + + + + + + 260 + 180 + 113 + 32 + + + + Go East + + + + + + 180 + 150 + 113 + 32 + + + + Go North + + + + + + 180 + 210 + 113 + 32 + + + + Go South + + + + + + 210 + 180 + 51 + 32 + + + + RTL + + + + + + 54 + 100 + 71 + 16 + + + + Altitude : + + + + + + 20 + 150 + 71 + 31 + + + + UP + + + + + + 20 + 170 + 71 + 32 + + + + DOWN + + + + + + 130 + 100 + 161 + 16 + + + + + + + + + + 54 + 50 + 71 + 16 + + + + Latitude : + + + + + + 54 + 70 + 71 + 16 + + + + Longitude : + + + + + + 130 + 50 + 211 + 16 + + + + + + + + + + 130 + 70 + 211 + 16 + + + + + + + + + + 84 + 10 + 91 + 16 + + + + Flight Mode : + + + + + + 170 + 10 + 151 + 16 + + + + + + + + + + 20 + 206 + 71 + 32 + + + + Launch + + + + + + 29 + 40 + 341 + 91 + + + + QFrame::StyledPanel + + + QFrame::Raised + + + + + + + 0 + 0 + 400 + 22 + + + + + + + + + slot1() + + From e4966057e9237011d28bde4ce703d6a551d8947a Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 13:07:41 -0500 Subject: [PATCH 02/28] matplotlib added --- main.py | 13 ++++++++++--- requirements.txt | 2 +- window.ui | 2 +- 3 files changed, 12 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index 539ed88..9d8472e 100644 --- a/main.py +++ b/main.py @@ -1,16 +1,17 @@ from dronekit import connect, VehicleMode from pymavlink import mavutil -from PyQt6.QtWidgets import QApplication, QTableWidgetItem, QMainWindow +from PyQt5.QtWidgets import QApplication, QTableWidgetItem, QMainWindow import sys -from PyQt6 import uic -from PyQt6.QtCore import QTimer +from PyQt5 import uic +from PyQt5.QtCore import QTimer from threading import Thread import argparse from enum import Enum from collections import defaultdict import time +from Quadrotor import Quadrotor TAKEOFF_ALTITUDE = 5 # m DT = 1 # sec @@ -52,6 +53,11 @@ def __init__(self, args): self.btnUp.clicked.connect(self.up_click) self.btnDown.clicked.connect(self.down_click) + # add visualizer + self.quad = Quadrotor(size=0.5) + + self.viewer.addWidget(self.quad.canvas) + def connect(self, args): self.connection_string = args.connect self.sitl = None @@ -93,6 +99,7 @@ def updateLocationGUI(self, location): self.lblLongValue.setText(str(location.global_frame.lon)) self.lblLatValue.setText(str(location.global_frame.lat)) self.lblAltValue.setText(str(location.global_relative_frame.alt)) + self.quad.update_pose(0,0,location.global_relative_frame.alt,0,0,0) def addObserverAndInit(self, name, cb): """We go ahead and call our observer once at startup to get an initial value""" diff --git a/requirements.txt b/requirements.txt index bb0b162..2469fd7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pymavlink==2.4.8 dronekit dronekit-sitl -pyqt6 +pyqt5 matplotlib \ No newline at end of file diff --git a/window.ui b/window.ui index 7a573e4..87ec072 100644 --- a/window.ui +++ b/window.ui @@ -18,7 +18,7 @@ - + From b13f04ca633cc14ad67a7aa0aa3fd57b6b7cb6bd Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 13:07:53 -0500 Subject: [PATCH 03/28] matplotlib added --- Quadrotor.py | 104 +++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 104 insertions(+) create mode 100644 Quadrotor.py diff --git a/Quadrotor.py b/Quadrotor.py new file mode 100644 index 0000000..f546e75 --- /dev/null +++ b/Quadrotor.py @@ -0,0 +1,104 @@ +""" +Class for plotting a quadrotor + +Author: Daniel Ingram (daniel-s-ingram) +""" + +from math import cos, sin +import numpy as np + +from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg, NavigationToolbar2QT +from matplotlib.figure import Figure + + +class Quadrotor: + def __init__(self, x=0, y=0, z=0, roll=0, pitch=0, yaw=0, size=0.25, show_animation=True): + self.p1 = np.array([size / 2, 0, 0, 1]).T + self.p2 = np.array([-size / 2, 0, 0, 1]).T + self.p3 = np.array([0, size / 2, 0, 1]).T + self.p4 = np.array([0, -size / 2, 0, 1]).T + + self.x_data = [] + self.y_data = [] + self.z_data = [] + self.show_animation = show_animation + + if self.show_animation: + # plt.ion() + # fig = plt.figure() + # # for stopping simulation with the esc key. + # fig.canvas.mpl_connect('key_release_event', + # lambda event: [exit(0) if event.key == 'escape' else None]) + self.fig = Figure() + self.ax = self.fig.add_subplot(111, projection='3d') + self.canvas = FigureCanvasQTAgg(self.fig) + + + self.update_pose(x, y, z, roll, pitch, yaw) + + def update_pose(self, x, y, z, roll, pitch, yaw): + self.x = x + self.y = y + self.z = z + self.roll = roll + self.pitch = pitch + self.yaw = yaw + self.x_data.append(x) + self.y_data.append(y) + self.z_data.append(z) + + if self.show_animation: + self.plot() + + def transformation_matrix(self): + x = self.x + y = self.y + z = self.z + roll = self.roll + pitch = self.pitch + yaw = self.yaw + return np.array( + [[cos(yaw) * cos(pitch), -sin(yaw) * cos(roll) + cos(yaw) * sin(pitch) * sin(roll), sin(yaw) * sin(roll) + cos(yaw) * sin(pitch) * cos(roll), x], + [sin(yaw) * cos(pitch), cos(yaw) * cos(roll) + sin(yaw) * sin(pitch) + * sin(roll), -cos(yaw) * sin(roll) + sin(yaw) * sin(pitch) * cos(roll), y], + [-sin(pitch), cos(pitch) * sin(roll), cos(pitch) * cos(roll), z] + ]) + + def plot(self): # pragma: no cover + T = self.transformation_matrix() + + p1_t = np.matmul(T, self.p1) + p2_t = np.matmul(T, self.p2) + p3_t = np.matmul(T, self.p3) + p4_t = np.matmul(T, self.p4) + + # plt.cla() + self.ax.cla() + + self.ax.plot([p1_t[0], p2_t[0], p3_t[0], p4_t[0]], + [p1_t[1], p2_t[1], p3_t[1], p4_t[1]], + [p1_t[2], p2_t[2], p3_t[2], p4_t[2]], 'k.') + + self.ax.plot([p1_t[0], p2_t[0]], [p1_t[1], p2_t[1]], + [p1_t[2], p2_t[2]], 'r-') + self.ax.plot([p3_t[0], p4_t[0]], [p3_t[1], p4_t[1]], + [p3_t[2], p4_t[2]], 'r-') + + self.ax.plot(self.x_data, self.y_data, self.z_data, 'b:') + + self.ax.set_xlim(-5, 5) + self.ax.set_ylim(-5, 5) + self.ax.set_zlim(0, 10) + + # plt.pause(0.001) + self.canvas.draw() + +if __name__ == '__main__': + quad = Quadrotor(size=0.5) + alt = 0 + while True: + alt += 0.1 + quad.update_pose(0,0,alt,0,0,0) + quad.plot() + if alt > 5.0: + break \ No newline at end of file From 3dc1d1bf8d931beea2597b3dacd1763953db5fb0 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 13:21:06 -0500 Subject: [PATCH 04/28] x, y coordinate simulated --- main.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 9d8472e..b2612b2 100644 --- a/main.py +++ b/main.py @@ -98,8 +98,15 @@ def updateFlightModeGUI(self, value): def updateLocationGUI(self, location): self.lblLongValue.setText(str(location.global_frame.lon)) self.lblLatValue.setText(str(location.global_frame.lat)) + self.lblAltValue.setText(str(location.global_relative_frame.alt)) - self.quad.update_pose(0,0,location.global_relative_frame.alt,0,0,0) + # location.local_frame. + x = location.local_frame.east + y = location.local_frame.north + if x is None or y is None: + x, y = 0, 0 + # print(x, y) + self.quad.update_pose(x,y,location.global_relative_frame.alt,0,0,0) def addObserverAndInit(self, name, cb): """We go ahead and call our observer once at startup to get an initial value""" From 26b60c5a231d3b24f91bf93b374d0d9b6d900f1a Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 13:25:22 -0500 Subject: [PATCH 05/28] x, y coordinate simulated --- main.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index b2612b2..bf00d5a 100644 --- a/main.py +++ b/main.py @@ -157,10 +157,10 @@ def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): 0, 0, 0, # x, y, z acceleration (not supported yet, ignored in GCS_Mavlink) 0, 0) # yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) - # send command to vehicle on 1 Hz cycle - for x in range(0, duration): - self.vehicle.send_mavlink(msg) - time.sleep(DT) + # send command to vehicle on x Hz cycle + self.vehicle.send_mavlink(msg) + time.sleep(DT) + ############### Joystick communication ########################################################################## def vehicle_validation(self, function): @@ -195,7 +195,7 @@ def south_wrapped(): def rtl_click(self): @self.vehicle_validation def rtl_wrapped(): - self.vehicle.mode = VehicleMode("RTL") + self.vehicle.mode = VehicleMode("LAND") def up_click(self): @self.vehicle_validation From 47b083e248f669837bf41a61a777ab0ad737c985 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 13:54:24 -0500 Subject: [PATCH 06/28] x, y coordinate simulated --- main.py | 33 +++++++++++++++++++++------------ 1 file changed, 21 insertions(+), 12 deletions(-) diff --git a/main.py b/main.py index bf00d5a..e68424d 100644 --- a/main.py +++ b/main.py @@ -14,14 +14,15 @@ from Quadrotor import Quadrotor TAKEOFF_ALTITUDE = 5 # m -DT = 1 # sec -CMD_VEL = 1 # m/s +DT = 0.05 # sec +CMD_VEL = 0.4 # m/s class State(Enum): INITIALIZED = 0 ARMED = 1 TAKEOFF = 2 HOVER = 3 + LAND = 4 class Action(Enum): IS_ARMABLE = 0 @@ -33,6 +34,7 @@ class MainWindow(QMainWindow): def __init__(self, args): super().__init__() uic.loadUi('window.ui', self) + self.state = State.LAND self.progressBar.setValue(0) self.thread = Thread(target=self.connect, args=(args,)) self.thread.start() @@ -96,8 +98,8 @@ def updateFlightModeGUI(self, value): self.lblFlightModeValue.setText(mode) def updateLocationGUI(self, location): - self.lblLongValue.setText(str(location.global_frame.lon)) - self.lblLatValue.setText(str(location.global_frame.lat)) + # self.lblLongValue.setText(str(location.global_frame.lon)) + # self.lblLatValue.setText(str(location.global_frame.lat)) self.lblAltValue.setText(str(location.global_relative_frame.alt)) # location.local_frame. @@ -106,6 +108,8 @@ def updateLocationGUI(self, location): if x is None or y is None: x, y = 0, 0 # print(x, y) + self.lblLongValue.setText(f"{x:.4f}") + self.lblLatValue.setText(f"{y:.4f}") self.quad.update_pose(x,y,location.global_relative_frame.alt,0,0,0) def addObserverAndInit(self, name, cb): @@ -158,8 +162,11 @@ def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): 0, 0) # yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) # send command to vehicle on x Hz cycle - self.vehicle.send_mavlink(msg) - time.sleep(DT) + elapsed_time = 0.0 + while elapsed_time < duration: + self.vehicle.send_mavlink(msg) + time.sleep(DT) + elapsed_time += DT ############### Joystick communication ########################################################################## @@ -172,30 +179,32 @@ def west_click(self): @self.vehicle_validation def west_wrapped(): self.send_ned_velocity(0, -CMD_VEL, 0, 1) - self.send_ned_velocity(0, 0, 0, 1) + # self.send_ned_velocity(0, 0, 0, 1) def east_click(self): @self.vehicle_validation def east_wrapped(): self.send_ned_velocity(0, CMD_VEL, 0, 1) - self.send_ned_velocity(0, 0, 0, 1) + # self.send_ned_velocity(0, 0, 0, 1) def north_click(self): @self.vehicle_validation def north_wrapped(): self.send_ned_velocity(CMD_VEL, 0, 0, 1) - self.send_ned_velocity(0, 0, 0, 1) + # self.send_ned_velocity(0, 0, 0, 1) def south_click(self): @self.vehicle_validation def south_wrapped(): self.send_ned_velocity(-CMD_VEL, 0, 0, 1) - self.send_ned_velocity(0, 0, 0, 1) + # self.send_ned_velocity(0, 0, 0, 1) def rtl_click(self): @self.vehicle_validation def rtl_wrapped(): self.vehicle.mode = VehicleMode("LAND") + self.state = State.INITIALIZED + def up_click(self): @self.vehicle_validation @@ -203,7 +212,7 @@ def up_wrapped(): alt = self.vehicle.location.global_relative_frame.alt if alt < 20: self.send_ned_velocity(0, 0, -0.5, 1) - self.send_ned_velocity(0, 0, 0, 1) + # self.send_ned_velocity(0, 0, 0, 1) def down_click(self): @self.vehicle_validation @@ -211,7 +220,7 @@ def down_wrapped(): alt = self.vehicle.location.global_relative_frame.alt if alt > 3: self.send_ned_velocity(0, 0, 0.5 * CMD_VEL, 1) - self.send_ned_velocity(0, 0, 0, 1) + # self.send_ned_velocity(0, 0, 0, 1) def launch_click(self): From 56ca313143d3a0aa0d4a769f6370335c7dab5e20 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 13:57:40 -0500 Subject: [PATCH 07/28] x, y coordinate simulated --- Quadrotor.py | 2 +- main.py | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Quadrotor.py b/Quadrotor.py index f546e75..5a9c394 100644 --- a/Quadrotor.py +++ b/Quadrotor.py @@ -88,7 +88,7 @@ def plot(self): # pragma: no cover self.ax.set_xlim(-5, 5) self.ax.set_ylim(-5, 5) - self.ax.set_zlim(0, 10) + self.ax.set_zlim(0, 3) # plt.pause(0.001) self.canvas.draw() diff --git a/main.py b/main.py index e68424d..55decaf 100644 --- a/main.py +++ b/main.py @@ -13,7 +13,7 @@ import time from Quadrotor import Quadrotor -TAKEOFF_ALTITUDE = 5 # m +TAKEOFF_ALTITUDE = 1 # m DT = 0.05 # sec CMD_VEL = 0.4 # m/s @@ -210,15 +210,15 @@ def up_click(self): @self.vehicle_validation def up_wrapped(): alt = self.vehicle.location.global_relative_frame.alt - if alt < 20: - self.send_ned_velocity(0, 0, -0.5, 1) + if alt < 3: + self.send_ned_velocity(0, 0, -0.5 * CMD_VEL, 1) # self.send_ned_velocity(0, 0, 0, 1) def down_click(self): @self.vehicle_validation def down_wrapped(): alt = self.vehicle.location.global_relative_frame.alt - if alt > 3: + if alt > 0.5: self.send_ned_velocity(0, 0, 0.5 * CMD_VEL, 1) # self.send_ned_velocity(0, 0, 0, 1) From 4af23f36e5a78629bdba41deadc155d27bd5f7d9 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 14:32:04 -0500 Subject: [PATCH 08/28] land fixed --- main.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 55decaf..7198f6d 100644 --- a/main.py +++ b/main.py @@ -28,6 +28,7 @@ class Action(Enum): IS_ARMABLE = 0 IS_ARMED = 1 HAS_ARRIVED = 2 + DISARMED = 3 class MainWindow(QMainWindow): @@ -43,6 +44,7 @@ def __init__(self, args): self.transition[State.INITIALIZED][Action.IS_ARMABLE] = State.ARMED self.transition[State.ARMED][Action.IS_ARMED] = State.TAKEOFF self.transition[State.TAKEOFF][Action.HAS_ARRIVED] = State.HOVER + self.transition[State.LAND][Action.DISARMED] = State.INITIALIZED self.launchAlt = TAKEOFF_ALTITUDE self.btnLaunch.clicked.connect(self.launch_click) @@ -124,6 +126,8 @@ def getAction(self, state:State): return Action.IS_ARMED elif state == State.TAKEOFF and self.vehicle.location.global_relative_frame.alt >= self.launchAlt * 0.95: return Action.HAS_ARRIVED + elif state == State.LAND and not self.vehicle.armed: + return Action.DISARMED def timerCallback(self): """ complete the launch process, update the state machine @@ -146,9 +150,12 @@ def timerCallback(self): elif self.state == State.HOVER: print("vehicle reached to hovering position") - self.timer.stop() self.progressBar.setValue(100) + elif self.state == State.INITIALIZED: + print("vehicle landed") + self.timer.stop() + ############### MAV LINK communication ########################################################################## def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): msg = self.vehicle.message_factory.set_position_target_local_ned_encode( @@ -203,7 +210,7 @@ def rtl_click(self): @self.vehicle_validation def rtl_wrapped(): self.vehicle.mode = VehicleMode("LAND") - self.state = State.INITIALIZED + self.state = State.LAND def up_click(self): From 8febb5eb2185489a3a3fb66fc1f6c50e203db200 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 16:56:04 -0500 Subject: [PATCH 09/28] traj --- trajs/spiral8.csv | 766 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 766 insertions(+) create mode 100644 trajs/spiral8.csv diff --git a/trajs/spiral8.csv b/trajs/spiral8.csv new file mode 100644 index 0000000..9168e94 --- /dev/null +++ b/trajs/spiral8.csv @@ -0,0 +1,766 @@ +0,0,0,1 +0.1,0.000607266,0.000260376,1 +0.2,0.00740714,0.00317609,1 +0.3,0.0280163,0.0120138,1 +0.4,0.0647502,0.0277683,1 +0.5,0.1131,0.0485089,1 +0.6,0.146436,0.0628135,1 +0.7,0.194818,0.0835844,1 +0.8,0.233435,0.100182,1 +0.9,0.259784,0.111536,1 +1,0.275673,0.118422,1 +1.1,0.285838,0.122873,1 +1.2,0.291845,0.125517,1 +1.3,0.304367,0.131011,1 +1.4,0.323197,0.139232,1 +1.5,0.349097,0.150508,1 +1.6,0.3806,0.164213,1 +1.7,0.414875,0.179134,1 +1.8,0.435207,0.188,1 +1.9,0.467738,0.202224,1 +2,0.496696,0.21495,1 +2.1,0.52177,0.226049,1 +2.2,0.543825,0.235891,1 +2.3,0.564414,0.245145,1 +2.4,0.575517,0.250153,1 +2.5,0.596945,0.259833,1 +2.6,0.62017,0.27033,1 +2.7,0.645321,0.2817,1 +2.8,0.671905,0.293735,1 +2.9,0.699076,0.306074,1 +3,0.711789,0.311868,1 +3.1,0.738293,0.324003,1 +3.2,0.763708,0.33573,1 +3.3,0.787974,0.347026,1 +3.4,0.811359,0.358008,1 +3.5,0.834315,0.368873,1 +3.6,0.843069,0.373035,1 +3.7,0.866148,0.384049,1 +3.8,0.889622,0.395305,1 +3.9,0.913509,0.406814,1 +4,0.937648,0.41851,1 +4.1,0.961793,0.43029,1 +4.2,0.968435,0.433548,1 +4.3,0.992244,0.445293,1 +4.4,1.01563,0.456948,1 +4.5,1.03859,0.468511,1 +4.6,1.0612,0.48002,1 +4.7,1.08359,0.491532,1 +4.8,1.08701,0.4933,1 +4.9,1.10928,0.504881,1 +5,1.13151,0.516554,1 +5.1,1.15369,0.528319,1 +5.2,1.17578,0.540158,1 +5.3,1.19769,0.552042,1 +5.4,1.19796,0.552187,1 +5.5,1.21962,0.564092,1 +5.6,1.24101,0.576005,1 +5.7,1.2621,0.587929,1 +5.8,1.28293,0.599877,1 +5.9,1.3005,0.610105,1 +6,1.3209,0.622143,1 +6.1,1.34108,0.634246,1 +6.2,1.36104,0.646414,1 +6.3,1.38075,0.658644,1 +6.4,1.39393,0.666953,1 +6.5,1.41315,0.679274,1 +6.6,1.43206,0.691648,1 +6.7,1.45064,0.704079,1 +6.8,1.46888,0.716572,1 +6.9,1.47757,0.722631,1 +7,1.49532,0.735231,1 +7.1,1.51272,0.747912,1 +7.2,1.52975,0.760675,1 +7.3,1.54639,0.773524,1 +7.4,1.55086,0.777041,1 +7.5,1.56697,0.790001,1 +7.6,1.58264,0.803053,1 +7.7,1.59785,0.816203,1 +7.79999,1.61258,0.829457,1 +7.89999,1.61326,0.830087,1 +7.99999,1.62745,0.843457,1 +8.09999,1.64111,0.856944,1 +8.2,1.65419,0.870553,1 +8.3,1.66435,0.881678,1 +8.4,1.6763,0.895521,1 +8.5,1.68757,0.9095,1 +8.6,1.69811,0.923619,1 +8.7,1.70376,0.931722,1 +8.8,1.71305,0.946067,1 +8.9,1.72146,0.960555,1 +9,1.72894,0.975181,1 +9.1,1.73123,0.980131,1 +9.2,1.73733,0.994925,1 +9.3,1.74232,1.00982,1 +9.4,1.74613,1.0248,1 +9.5,1.74655,1.02682,1 +9.6,1.74892,1.04183,1 +9.7,1.74995,1.05681,1 +9.8,1.74962,1.07171,1 +9.9,1.74788,1.08645,1 +10,1.74474,1.10097,1 +10.1,1.74041,1.11472,1 +10.2,1.73463,1.12861,1 +10.3,1.7276,1.14212,1 +10.4,1.71938,1.15522,1 +10.5,1.719,1.15577,1 +10.6,1.70965,1.16842,1 +10.7,1.69928,1.18063,1 +10.8,1.68798,1.19241,1 +10.9,1.68553,1.19479,1 +11,1.6732,1.20607,1 +11.1,1.66008,1.21695,1 +11.2,1.64624,1.22744,1 +11.3,1.64024,1.23172,1 +11.4,1.62546,1.2417,1 +11.5,1.61007,1.25132,1 +11.6,1.5941,1.26062,1 +11.7,1.58345,1.26649,1 +11.8,1.56662,1.27528,1 +11.9,1.54931,1.28378,1 +12,1.53155,1.29201,1 +12.1,1.51554,1.29904,1 +12.2,1.49699,1.30678,1 +12.3,1.47804,1.31428,1 +12.4,1.45872,1.32155,1 +12.5,1.43905,1.32859,1 +12.6,1.43701,1.32931,1 +12.7,1.41697,1.33612,1 +12.8,1.39661,1.34272,1 +12.9,1.37593,1.34913,1 +13,1.35497,1.35535,1 +13.1,1.3484,1.35724,1 +13.2,1.32707,1.36322,1 +13.3,1.30547,1.36902,1 +13.4,1.28361,1.37465,1 +13.5,1.26151,1.38011,1 +13.6,1.25033,1.38279,1 +13.7,1.22787,1.38802,1 +13.8,1.2052,1.39309,1 +13.9,1.18231,1.39801,1 +14,1.15921,1.40278,1 +14.1,1.14349,1.40592,1 +14.2,1.12006,1.41046,1 +14.3,1.09644,1.41485,1 +14.4,1.07265,1.41912,1 +14.5,1.04868,1.42325,1 +14.6,1.02862,1.42658,1 +14.7,1.00435,1.43048,1 +14.8,0.979924,1.43425,1 +14.9,0.955345,1.43791,1 +15,0.930621,1.44144,1 +15.1,0.906547,1.44474,1 +15.2,0.881553,1.44804,1 +15.3,0.85643,1.45123,1 +15.4,0.831181,1.45431,1 +15.5,0.805814,1.45727,1 +15.6,0.780331,1.46013,1 +15.7,0.778112,1.46037,1 +15.8,0.752509,1.46311,1 +15.9,0.726802,1.46574,1 +16,0.700994,1.46826,1 +16.1,0.675089,1.47069,1 +16.2,0.649092,1.47301,1 +16.3,0.644218,1.47343,1 +16.4,0.618117,1.47563,1 +16.5,0.591932,1.47773,1 +16.6,0.565669,1.47973,1 +16.7,0.53933,1.48163,1 +16.8,0.51292,1.48344,1 +16.9,0.505806,1.48391,1 +17,0.479311,1.48559,1 +17.1,0.452753,1.48718,1 +17.2,0.426137,1.48867,1 +17.3,0.399465,1.49007,1 +17.4,0.372742,1.49137,1 +17.5,0.363845,1.49178,1 +17.6,0.337059,1.49296,1 +17.7,0.31023,1.49405,1 +17.8,0.283362,1.49504,1 +17.9,0.256457,1.49595,1 +18,0.22952,1.49676,1 +18.1,0.219333,1.49704,1 +18.2,0.192357,1.49773,1 +18.3,0.165357,1.49832,1 +18.4,0.138335,1.49883,1 +18.5,0.111297,1.49924,1 +18.6,0.0842441,1.49957,1 +18.7,0.0732824,1.49967,1 +18.8,0.0462159,1.49987,1 +18.9,0.0191437,1.49998,1 +19,-0.00793097,1.5,1 +19.1,-0.0350046,1.49992,1 +19.2,-0.0620739,1.49976,1 +19.3,-0.0732824,1.49967,1 +19.4,-0.10034,1.49938,1 +19.5,-0.127384,1.499,1 +19.6,-0.154413,1.49854,1 +19.7,-0.181422,1.49798,1 +19.8,-0.208409,1.49733,1 +19.9,-0.219333,1.49704,1 +20,-0.246282,1.49626,1 +20.1,-0.273199,1.4954,1 +20.2,-0.300082,1.49444,1 +20.3,-0.326926,1.49338,1 +20.4,-0.353729,1.49224,1 +20.5,-0.363845,1.49178,1 +20.6,-0.390585,1.49051,1 +20.7,-0.417274,1.48914,1 +20.8,-0.443909,1.48768,1 +20.9,-0.470487,1.48613,1 +21,-0.497003,1.48448,1 +21.1,-0.505806,1.48391,1 +21.2,-0.532234,1.48213,1 +21.3,-0.558593,1.48025,1 +21.4,-0.584877,1.47828,1 +21.5,-0.611083,1.47621,1 +21.6,-0.637207,1.47403,1 +21.7,-0.644218,1.47343,1 +21.8,-0.670232,1.47113,1 +21.9,-0.696154,1.46873,1 +22,-0.721981,1.46622,1 +22.1,-0.747708,1.46361,1 +22.2,-0.77333,1.46089,1 +22.3,-0.778112,1.46037,1 +22.4,-0.803604,1.45752,1 +22.5,-0.828982,1.45457,1 +22.6,-0.85424,1.4515,1 +22.7001,-0.879375,1.44833,1 +22.8001,-0.904381,1.44504,1 +22.9001,-0.906547,1.44474,1 +23.0001,-0.931407,1.44133,1 +23.1001,-0.956126,1.43779,1 +23.2001,-0.980701,1.43414,1 +23.3001,-1.00512,1.43036,1 +23.4001,-1.02862,1.42658,1 +23.5001,-1.05273,1.42256,1 +23.6001,-1.07667,1.41841,1 +23.7001,-1.10044,1.41412,1 +23.8001,-1.12402,1.4097,1 +23.9001,-1.14349,1.40592,1 +24.0001,-1.16672,1.40125,1 +24.1001,-1.18975,1.39643,1 +24.2001,-1.21257,1.39146,1 +24.3001,-1.23518,1.38634,1 +24.4001,-1.25033,1.38279,1 +24.5001,-1.27255,1.37741,1 +24.6001,-1.29453,1.37187,1 +24.7001,-1.31625,1.36615,1 +24.8001,-1.33772,1.36026,1 +24.9001,-1.3484,1.35724,1 +25.0001,-1.36945,1.35108,1 +25.1001,-1.39021,1.34473,1 +25.2001,-1.41067,1.33819,1 +25.3001,-1.43082,1.33144,1 +25.4001,-1.43701,1.32931,1 +25.5001,-1.45672,1.32228,1 +25.6001,-1.47607,1.31504,1 +25.7001,-1.49506,1.30756,1 +25.8001,-1.51366,1.29985,1 +25.9001,-1.51554,1.29904,1 +26.0001,-1.53369,1.29104,1 +26.1001,-1.5514,1.28279,1 +26.2001,-1.56865,1.27425,1 +26.3001,-1.58345,1.26649,1 +26.4001,-1.59976,1.2574,1 +26.5001,-1.61553,1.24799,1 +26.6001,-1.63071,1.23824,1 +26.7001,-1.64024,1.23172,1 +26.8001,-1.65437,1.22139,1 +26.9001,-1.6678,1.21068,1 +27.0001,-1.68047,1.19957,1 +27.1001,-1.68553,1.19479,1 +27.2001,-1.69702,1.1831,1 +27.3001,-1.70759,1.17098,1 +27.4001,-1.71716,1.15842,1 +27.5001,-1.719,1.15577,1 +27.6001,-1.72727,1.14269,1 +27.7001,-1.73435,1.1292,1 +27.8001,-1.74019,1.11532,1 +27.9001,-1.74041,1.11472,1 +28.0001,-1.74487,1.10048,1 +28.1001,-1.74796,1.08595,1 +28.2001,-1.74962,1.07171,1 +28.3001,-1.74995,1.05681,1 +28.4001,-1.74892,1.04183,1 +28.5001,-1.74655,1.02682,1 +28.6001,-1.74291,1.01184,1 +28.7001,-1.73807,0.99693,1 +28.8001,-1.73211,0.98212,1 +28.9001,-1.73123,0.980131,1 +29.0001,-1.72409,0.96546,1 +29.1001,-1.71598,0.950925,1 +29.2001,-1.70698,0.936531,1 +29.3001,-1.70376,0.931722,1 +29.4001,-1.69366,0.917521,1 +29.5001,-1.6828,0.903462,1 +29.6001,-1.67123,0.889543,1 +29.7001,-1.66435,0.881678,1 +29.8001,-1.65176,0.867967,1 +29.9001,-1.63857,0.854382,1 +30.0001,-1.62481,0.840918,1 +30.1001,-1.61326,0.830087,1 +30.2001,-1.59856,0.816827,1 +30.3001,-1.58337,0.80367,1 +30.4001,-1.56772,0.790614,1 +30.5001,-1.55163,0.777652,1 +30.6001,-1.55086,0.777041,1 +30.7001,-1.53433,0.764172,1 +30.8001,-1.51741,0.751388,1 +30.9001,-1.50011,0.738685,1 +31.0001,-1.48245,0.726059,1 +31.1001,-1.47757,0.722631,1 +31.2001,-1.45947,0.710096,1 +31.3001,-1.44104,0.69763,1 +31.4001,-1.42229,0.685229,1 +31.5001,-1.40323,0.67289,1 +31.6001,-1.39393,0.666953,1 +31.7001,-1.37444,0.6547,1 +31.8001,-1.35468,0.642503,1 +31.9001,-1.33466,0.630358,1 +32.0001,-1.31437,0.618263,1 +32.1001,-1.3005,0.610105,1 +32.2001,-1.27981,0.598089,1 +32.3001,-1.25888,0.586118,1 +32.4001,-1.23773,0.574189,1 +32.5001,-1.21636,0.5623,1 +32.6001,-1.19796,0.552187,1 +32.7001,-1.1762,0.540369,1 +32.8001,-1.15425,0.528587,1 +32.9001,-1.13211,0.51684,1 +33.0001,-1.10979,0.505125,1 +33.1001,-1.08728,0.493442,1 +33.2001,-1.08701,0.4933,1 +33.3001,-1.06433,0.481647,1 +33.4001,-1.04149,0.470024,1 +33.5001,-1.01849,0.458428,1 +33.6001,-0.995327,0.446858,1 +33.7001,-0.972019,0.435314,1 +33.8001,-0.968435,0.433548,1 +33.9001,-0.944961,0.422032,1 +34.0001,-0.921348,0.410539,1 +34.1001,-0.897602,0.399069,1 +34.2001,-0.873726,0.38762,1 +34.3,-0.849726,0.376191,1 +34.4,-0.843069,0.373035,1 +34.5,-0.818916,0.361631,1 +34.6,-0.79465,0.350246,1 +34.7,-0.770273,0.338878,1 +34.8,-0.745791,0.327528,1 +34.9,-0.721207,0.316193,1 +35,-0.711789,0.311868,1 +35.1,-0.687071,0.300554,1 +35.2,-0.662262,0.289255,1 +35.3,-0.637364,0.27797,1 +35.4,-0.612381,0.266699,1 +35.5,-0.587319,0.255439,1 +35.6,-0.575517,0.250153,1 +35.7,-0.550342,0.238911,1 +35.8,-0.525097,0.22768,1 +35.9,-0.499784,0.216459,1 +36,-0.474406,0.205247,1 +36.1,-0.448968,0.194046,1 +36.2,-0.435207,0.188,1 +36.3,-0.409683,0.176811,1 +36.4,-0.384106,0.16563,1 +36.5,-0.358482,0.154456,1 +36.6,-0.332812,0.143289,1 +36.7,-0.307101,0.132128,1 +36.8,-0.291845,0.125517,1 +36.9,-0.266074,0.114365,1 +37,-0.24027,0.103218,1 +37.1,-0.214437,0.092075,1 +37.2,-0.188576,0.0809363,1 +37.3,-0.162693,0.069801,1 +37.4,-0.146436,0.0628135,1 +37.5,-0.120522,0.0516828,1 +37.6,-0.0945921,0.0405543,1 +37.7,-0.0686509,0.0294275,1 +37.8,-0.0427013,0.0183019,1 +37.9,-0.0167465,0.00717715,1 +38,-4.28626e-16,1.83697e-16,1 +38.1,0.0259565,-0.0111245,1 +38.2,0.0519099,-0.0222495,1 +38.3,0.0778568,-0.0333755,1 +38.4,0.103794,-0.0445028,1 +38.5,0.129719,-0.055632,1 +38.6,0.146436,-0.0628135,1 +38.7,0.172333,-0.0739468,1 +38.8,0.198208,-0.0850833,1 +38.9,0.224059,-0.0962235,1 +39,0.249882,-0.107368,1 +39.1,0.275674,-0.118517,1 +39.2,0.291845,-0.125517,1 +39.3,0.31758,-0.136674,1 +39.4,0.343275,-0.147837,1 +39.5,0.368926,-0.159007,1 +39.6,0.394532,-0.170184,1 +39.7,0.420088,-0.181368,1 +39.8,0.435207,-0.188,1 +39.9,0.460677,-0.199197,1 +40,0.486087,-0.210403,1 +40.1,0.511435,-0.221619,1 +40.2,0.536718,-0.232844,1 +40.3,0.561931,-0.244081,1 +40.4,0.575517,-0.250153,1 +40.5,0.600616,-0.261407,1 +40.6,0.625636,-0.272673,1 +40.7,0.650574,-0.283952,1 +40.7999,0.675426,-0.295244,1 +40.8999,0.700187,-0.30655,1 +40.9999,0.711789,-0.311868,1 +41.0999,0.736411,-0.323196,1 +41.1999,0.760933,-0.33454,1 +41.2999,0.78535,-0.345901,1 +41.3999,0.80966,-0.35728,1 +41.4999,0.833856,-0.368676,1 +41.5999,0.843069,-0.373035,1 +41.6999,0.867103,-0.384458,1 +41.7999,0.891013,-0.395901,1 +41.8999,0.914796,-0.407366,1 +41.9999,0.938446,-0.418852,1 +42.0999,0.961959,-0.430361,1 +42.1999,0.968435,-0.433548,1 +42.2999,0.991766,-0.445088,1 +42.3999,1.01495,-0.456653,1 +42.4999,1.03797,-0.468245,1 +42.5999,1.06084,-0.479865,1 +42.6999,1.08355,-0.491513,1 +42.7999,1.08701,-0.4933,1 +42.8999,1.10951,-0.504983,1 +42.9999,1.13184,-0.516697,1 +43.0999,1.15398,-0.528444,1 +43.1999,1.17594,-0.540226,1 +43.2999,1.19769,-0.552043,1 +43.3999,1.19796,-0.552187,1 +43.4999,1.21951,-0.564042,1 +43.5999,1.24085,-0.575936,1 +43.6999,1.26197,-0.587871,1 +43.7999,1.28286,-0.599849,1 +43.8999,1.3005,-0.610105,1 +43.9999,1.32096,-0.622167,1 +44.0999,1.34116,-0.634278,1 +44.1999,1.3611,-0.64644,1 +44.2999,1.38077,-0.658655,1 +44.3999,1.39393,-0.666953,1 +44.4999,1.41312,-0.679263,1 +44.5999,1.43202,-0.691634,1 +44.6999,1.45061,-0.704068,1 +44.7999,1.46887,-0.716569,1 +44.8999,1.47757,-0.722631,1 +44.9999,1.49533,-0.735237,1 +45.0999,1.51273,-0.747918,1 +45.1999,1.52976,-0.76068,1 +45.2999,1.54639,-0.773525,1 +45.3999,1.55086,-0.777041,1 +45.4999,1.56696,-0.789998,1 +45.5999,1.58264,-0.80305,1 +45.6999,1.59785,-0.816202,1 +45.7999,1.61258,-0.829457,1 +45.8999,1.61326,-0.830087,1 +45.9999,1.62745,-0.843458,1 +46.0999,1.64111,-0.856945,1 +46.1999,1.65419,-0.870553,1 +46.2999,1.66435,-0.881678,1 +46.3999,1.6763,-0.89552,1 +46.4999,1.68757,-0.909499,1 +46.5999,1.69811,-0.923619,1 +46.6999,1.70376,-0.931722,1 +46.7999,1.71305,-0.946067,1 +46.8999,1.72146,-0.960555,1 +46.9999,1.72894,-0.975181,1 +47.0999,1.73123,-0.980131,1 +47.1999,1.73733,-0.994925,1 +47.2999,1.74232,-1.00982,1 +47.3998,1.74613,-1.0248,1 +47.4998,1.74655,-1.02682,1 +47.5998,1.74892,-1.04183,1 +47.6998,1.74995,-1.05681,1 +47.7998,1.74962,-1.07171,1 +47.8998,1.74788,-1.08645,1 +47.9998,1.74474,-1.10097,1 +48.0998,1.74041,-1.11472,1 +48.1998,1.73463,-1.12861,1 +48.2998,1.7276,-1.14212,1 +48.3998,1.71938,-1.15522,1 +48.4998,1.719,-1.15577,1 +48.5998,1.70965,-1.16842,1 +48.6998,1.69928,-1.18063,1 +48.7998,1.68798,-1.19241,1 +48.8998,1.68553,-1.19479,1 +48.9998,1.6732,-1.20607,1 +49.0998,1.66009,-1.21695,1 +49.1998,1.64624,-1.22744,1 +49.2998,1.64024,-1.23172,1 +49.3998,1.62546,-1.2417,1 +49.4998,1.61007,-1.25132,1 +49.5998,1.5941,-1.26062,1 +49.6998,1.58345,-1.26649,1 +49.7998,1.56662,-1.27528,1 +49.8998,1.54931,-1.28378,1 +49.9998,1.53155,-1.29201,1 +50.0998,1.51554,-1.29904,1 +50.1998,1.49699,-1.30678,1 +50.2998,1.47804,-1.31428,1 +50.3998,1.45872,-1.32155,1 +50.4998,1.43905,-1.32859,1 +50.5998,1.43701,-1.32931,1 +50.6998,1.41697,-1.33612,1 +50.7998,1.39661,-1.34272,1 +50.8998,1.37593,-1.34913,1 +50.9998,1.35497,-1.35535,1 +51.0998,1.3484,-1.35724,1 +51.1998,1.32707,-1.36322,1 +51.2998,1.30547,-1.36902,1 +51.3998,1.28361,-1.37465,1 +51.4998,1.26151,-1.38011,1 +51.5998,1.25033,-1.38279,1 +51.6998,1.22787,-1.38802,1 +51.7998,1.2052,-1.39309,1 +51.8998,1.18231,-1.39801,1 +51.9998,1.15921,-1.40278,1 +52.0998,1.14349,-1.40592,1 +52.1998,1.12006,-1.41046,1 +52.2998,1.09644,-1.41485,1 +52.3998,1.07265,-1.41912,1 +52.4998,1.04868,-1.42325,1 +52.5998,1.02862,-1.42658,1 +52.6998,1.00435,-1.43048,1 +52.7998,0.979924,-1.43425,1 +52.8998,0.955345,-1.43791,1 +52.9998,0.930621,-1.44144,1 +53.0998,0.906547,-1.44474,1 +53.1998,0.881553,-1.44804,1 +53.2998,0.85643,-1.45123,1 +53.3998,0.831181,-1.45431,1 +53.4998,0.805814,-1.45727,1 +53.5998,0.780331,-1.46013,1 +53.6998,0.778112,-1.46037,1 +53.7998,0.752509,-1.46311,1 +53.8997,0.726802,-1.46574,1 +53.9997,0.700994,-1.46826,1 +54.0997,0.675089,-1.47069,1 +54.1997,0.649092,-1.47301,1 +54.2997,0.644218,-1.47343,1 +54.3997,0.618117,-1.47563,1 +54.4997,0.591932,-1.47773,1 +54.5997,0.565669,-1.47973,1 +54.6997,0.53933,-1.48163,1 +54.7997,0.51292,-1.48344,1 +54.8997,0.505806,-1.48391,1 +54.9997,0.479311,-1.48559,1 +55.0997,0.452753,-1.48718,1 +55.1997,0.426137,-1.48867,1 +55.2997,0.399465,-1.49007,1 +55.3997,0.372742,-1.49137,1 +55.4997,0.363845,-1.49178,1 +55.5997,0.337059,-1.49296,1 +55.6997,0.31023,-1.49405,1 +55.7997,0.283362,-1.49504,1 +55.8997,0.256457,-1.49595,1 +55.9997,0.22952,-1.49676,1 +56.0997,0.219333,-1.49704,1 +56.1997,0.192357,-1.49773,1 +56.2997,0.165357,-1.49832,1 +56.3997,0.138335,-1.49883,1 +56.4997,0.111297,-1.49924,1 +56.5997,0.0842441,-1.49957,1 +56.6997,0.0732824,-1.49967,1 +56.7997,0.0462159,-1.49987,1 +56.8997,0.0191437,-1.49998,1 +56.9997,-0.00793097,-1.5,1 +57.0997,-0.0350046,-1.49992,1 +57.1997,-0.0620739,-1.49976,1 +57.2997,-0.0732824,-1.49967,1 +57.3997,-0.10034,-1.49938,1 +57.4997,-0.127384,-1.499,1 +57.5997,-0.154413,-1.49854,1 +57.6997,-0.181422,-1.49798,1 +57.7997,-0.208409,-1.49733,1 +57.8997,-0.219333,-1.49704,1 +57.9997,-0.246282,-1.49626,1 +58.0997,-0.273199,-1.4954,1 +58.1997,-0.300082,-1.49444,1 +58.2997,-0.326926,-1.49338,1 +58.3997,-0.353729,-1.49224,1 +58.4997,-0.363845,-1.49178,1 +58.5997,-0.390585,-1.49051,1 +58.6997,-0.417274,-1.48914,1 +58.7997,-0.443909,-1.48768,1 +58.8997,-0.470487,-1.48613,1 +58.9997,-0.497003,-1.48448,1 +59.0997,-0.505806,-1.48391,1 +59.1997,-0.532234,-1.48213,1 +59.2997,-0.558593,-1.48025,1 +59.3997,-0.584877,-1.47828,1 +59.4997,-0.611083,-1.47621,1 +59.5997,-0.637207,-1.47403,1 +59.6997,-0.644218,-1.47343,1 +59.7997,-0.670232,-1.47113,1 +59.8997,-0.696154,-1.46873,1 +59.9997,-0.721981,-1.46622,1 +60.0997,-0.747708,-1.46361,1 +60.1997,-0.77333,-1.46089,1 +60.2997,-0.778112,-1.46037,1 +60.3997,-0.803604,-1.45752,1 +60.4996,-0.828982,-1.45457,1 +60.5996,-0.85424,-1.4515,1 +60.6996,-0.879375,-1.44833,1 +60.7996,-0.904381,-1.44504,1 +60.8996,-0.906547,-1.44474,1 +60.9996,-0.931407,-1.44133,1 +61.0996,-0.956126,-1.43779,1 +61.1996,-0.980701,-1.43414,1 +61.2996,-1.00512,-1.43036,1 +61.3996,-1.02862,-1.42658,1 +61.4996,-1.05273,-1.42256,1 +61.5996,-1.07667,-1.41841,1 +61.6996,-1.10044,-1.41412,1 +61.7996,-1.12402,-1.4097,1 +61.8996,-1.14349,-1.40592,1 +61.9996,-1.16672,-1.40125,1 +62.0996,-1.18975,-1.39643,1 +62.1996,-1.21257,-1.39146,1 +62.2996,-1.23518,-1.38634,1 +62.3996,-1.25033,-1.38279,1 +62.4996,-1.27255,-1.37741,1 +62.5996,-1.29453,-1.37187,1 +62.6996,-1.31625,-1.36615,1 +62.7996,-1.33772,-1.36026,1 +62.8996,-1.3484,-1.35724,1 +62.9996,-1.36945,-1.35108,1 +63.0996,-1.39021,-1.34473,1 +63.1996,-1.41067,-1.33819,1 +63.2996,-1.43082,-1.33144,1 +63.3996,-1.43701,-1.32931,1 +63.4996,-1.45672,-1.32228,1 +63.5996,-1.47607,-1.31504,1 +63.6996,-1.49506,-1.30756,1 +63.7996,-1.51366,-1.29985,1 +63.8996,-1.51554,-1.29904,1 +63.9996,-1.53369,-1.29104,1 +64.0996,-1.5514,-1.28279,1 +64.1996,-1.56865,-1.27425,1 +64.2996,-1.58345,-1.26649,1 +64.3996,-1.59976,-1.2574,1 +64.4996,-1.61553,-1.24799,1 +64.5996,-1.63071,-1.23824,1 +64.6996,-1.64024,-1.23172,1 +64.7996,-1.65437,-1.22139,1 +64.8996,-1.6678,-1.21068,1 +64.9996,-1.68047,-1.19957,1 +65.0996,-1.68553,-1.19479,1 +65.1996,-1.69702,-1.1831,1 +65.2996,-1.70759,-1.17098,1 +65.3996,-1.71716,-1.15842,1 +65.4996,-1.719,-1.15577,1 +65.5996,-1.72727,-1.14269,1 +65.6996,-1.73435,-1.1292,1 +65.7996,-1.74019,-1.11532,1 +65.8996,-1.74041,-1.11472,1 +65.9996,-1.74487,-1.10048,1 +66.0996,-1.74796,-1.08595,1 +66.1996,-1.74962,-1.07171,1 +66.2996,-1.74995,-1.05681,1 +66.3996,-1.74892,-1.04183,1 +66.4996,-1.74655,-1.02682,1 +66.5996,-1.74291,-1.01184,1 +66.6996,-1.73807,-0.99693,1 +66.7996,-1.73211,-0.98212,1 +66.8996,-1.73123,-0.980131,1 +66.9995,-1.72409,-0.96546,1 +67.0995,-1.71598,-0.950925,1 +67.1995,-1.70698,-0.936531,1 +67.2995,-1.70376,-0.931722,1 +67.3995,-1.69366,-0.91752,1 +67.4995,-1.6828,-0.903462,1 +67.5995,-1.67123,-0.889542,1 +67.6995,-1.66435,-0.881678,1 +67.7995,-1.65176,-0.867967,1 +67.8995,-1.63857,-0.854383,1 +67.9995,-1.62481,-0.840918,1 +68.0995,-1.61326,-0.830087,1 +68.1995,-1.59855,-0.816826,1 +68.2995,-1.58336,-0.803669,1 +68.3995,-1.56771,-0.790613,1 +68.4995,-1.55163,-0.777652,1 +68.5995,-1.55086,-0.777041,1 +68.6995,-1.53434,-0.764174,1 +68.7995,-1.51742,-0.751392,1 +68.8995,-1.50012,-0.738689,1 +68.9995,-1.48245,-0.72606,1 +69.0995,-1.47757,-0.722631,1 +69.1995,-1.45946,-0.710092,1 +69.2995,-1.44102,-0.697623,1 +69.3995,-1.42227,-0.685222,1 +69.4995,-1.40323,-0.672887,1 +69.5995,-1.39393,-0.666953,1 +69.6995,-1.37446,-0.654709,1 +69.7995,-1.35472,-0.642518,1 +69.8995,-1.33469,-0.630375,1 +69.9995,-1.31439,-0.618272,1 +70.0995,-1.3005,-0.610105,1 +70.1995,-1.27977,-0.598072,1 +70.2995,-1.25881,-0.586085,1 +70.3995,-1.23764,-0.574152,1 +70.4995,-1.2163,-0.562277,1 +70.5995,-1.19796,-0.552187,1 +70.6995,-1.17629,-0.540405,1 +70.7995,-1.15441,-0.528654,1 +70.8995,-1.13229,-0.516916,1 +70.9995,-1.10991,-0.50518,1 +71.0995,-1.08728,-0.493442,1 +71.1995,-1.08701,-0.4933,1 +71.2995,-1.06416,-0.481575,1 +71.3995,-1.04117,-0.469889,1 +71.4995,-1.01812,-0.458269,1 +71.5995,-0.995045,-0.446737,1 +71.6995,-0.971973,-0.435294,1 +71.7995,-0.968435,-0.433548,1 +71.8995,-0.945295,-0.422175,1 +71.9995,-0.921978,-0.410809,1 +72.0995,-0.898355,-0.399392,1 +72.1995,-0.87433,-0.387879,1 +72.2995,-0.849889,-0.376261,1 +72.3995,-0.843069,-0.373035,1 +72.4995,-0.818257,-0.361348,1 +72.5995,-0.793402,-0.349711,1 +72.6995,-0.768763,-0.33823,1 +72.7995,-0.744536,-0.326989,1 +72.8995,-0.720771,-0.316007,1 +72.9995,-0.711789,-0.311868,1 +73.0995,-0.68836,-0.301108,1 +73.1995,-0.664706,-0.290305,1 +73.2995,-0.640351,-0.279253,1 +73.3995,-0.614929,-0.267792,1 +73.4995,-0.588344,-0.255879,1 +73.5994,-0.575517,-0.250153,1 +73.6994,-0.547845,-0.237839,1 +73.7994,-0.520355,-0.225645,1 +73.8994,-0.49395,-0.213955,1 +73.9994,-0.469336,-0.203072,1 +74.0994,-0.446726,-0.193083,1 +74.1994,-0.435207,-0.188,1 +74.2994,-0.414471,-0.178866,1 +74.3994,-0.3932,-0.169533,1 +74.4994,-0.369712,-0.159276,1 +74.5994,-0.34269,-0.147528,1 +74.6994,-0.311736,-0.134118,1 +74.7994,-0.291845,-0.125517,1 +74.8994,-0.25703,-0.110483,1 +74.9994,-0.223141,-0.0958662,1 +75.0994,-0.193306,-0.0830061,1 +75.1994,-0.16993,-0.0729336,1 +75.2994,-0.153676,-0.0659311,1 +75.3994,-0.146436,-0.0628135,1 +75.4994,-0.136944,-0.058731,1 +75.5994,-0.125281,-0.0537258,1 +75.6994,-0.105907,-0.0454177,1 +75.7994,-0.0749691,-0.0321517,1 +75.8994,-0.032154,-0.0137904,1 +75.9994,-8.57253e-16,-3.67394e-16,1 +76.0994,0.0513898,0.0220421,1 +76.1994,0.0964803,0.0413836,1 +76.2994,0.127649,0.054754,1 +76.3994,0.142703,0.0612118,1 +76.4994,0.146321,0.0627641,1 From a02721198511cbb11fe8d18a2ce710e54bfb985e Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 17:56:23 -0500 Subject: [PATCH 10/28] traj --- main.py | 38 ++++++++++++++++++++++++++++++++++++-- window.ui | 7 +++++++ 2 files changed, 43 insertions(+), 2 deletions(-) diff --git a/main.py b/main.py index 7198f6d..4a3bcb0 100644 --- a/main.py +++ b/main.py @@ -12,6 +12,7 @@ from collections import defaultdict import time from Quadrotor import Quadrotor +import numpy as np TAKEOFF_ALTITUDE = 1 # m DT = 0.05 # sec @@ -36,6 +37,7 @@ def __init__(self, args): super().__init__() uic.loadUi('window.ui', self) self.state = State.LAND + self.coord = np.zeros(3) self.progressBar.setValue(0) self.thread = Thread(target=self.connect, args=(args,)) self.thread.start() @@ -56,12 +58,38 @@ def __init__(self, args): self.btnRTL.clicked.connect(self.rtl_click) self.btnUp.clicked.connect(self.up_click) self.btnDown.clicked.connect(self.down_click) + self.btnSendTraj.clicked.connect(self.sendTrajectory) # add visualizer self.quad = Quadrotor(size=0.5) self.viewer.addWidget(self.quad.canvas) + + def traj_callback(self): + self.traj_index += 1 + if self.traj_index < len(self.traj): + target = self.traj[self.traj_index][1:] + vel = target - self.coord + vx, vy, vz = vel + print(f"[Traj] vx = {vx:.3f}, vy = {vy:.3f} ") + self.publish_cmd_vel(vy, vx, -vz) + elif self.traj_index - 10 < len(self.traj): + self.publish_cmd_vel(0, 0, 0) + else: + print("trajectory timer stopped") + self.traj_timer.stop() + + def sendTrajectory(self): + trajPath = "/home/redwan/PycharmProjects/droneController/trajs/spiral8.csv" + print('sending trajectory') + + if self.state == State.HOVER: + self.traj = np.loadtxt(trajPath, delimiter=",") + self.traj_timer = QTimer() + self.traj_index = 0 + self.traj_timer.timeout.connect(self.traj_callback) + self.traj_timer.start(25) def connect(self, args): self.connection_string = args.connect self.sitl = None @@ -110,6 +138,9 @@ def updateLocationGUI(self, location): if x is None or y is None: x, y = 0, 0 # print(x, y) + self.coord[0] = x + self.coord[1] = y + self.coord[2] = location.global_relative_frame.alt self.lblLongValue.setText(f"{x:.4f}") self.lblLatValue.setText(f"{y:.4f}") self.quad.update_pose(x,y,location.global_relative_frame.alt,0,0,0) @@ -157,7 +188,8 @@ def timerCallback(self): self.timer.stop() ############### MAV LINK communication ########################################################################## - def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): + + def publish_cmd_vel(self, velocity_x, velocity_y, velocity_z): msg = self.vehicle.message_factory.set_position_target_local_ned_encode( 0, # time_boot_ms (not used) 0, 0, # target system, target component @@ -167,11 +199,13 @@ def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): velocity_x, velocity_y, velocity_z, # x, y, z velocity in m/s 0, 0, 0, # x, y, z acceleration (not supported yet, ignored in GCS_Mavlink) 0, 0) # yaw, yaw_rate (not supported yet, ignored in GCS_Mavlink) + self.vehicle.send_mavlink(msg) + def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): # send command to vehicle on x Hz cycle elapsed_time = 0.0 while elapsed_time < duration: - self.vehicle.send_mavlink(msg) + self.publish_cmd_vel(velocity_x, velocity_y, velocity_z) time.sleep(DT) elapsed_time += DT diff --git a/window.ui b/window.ui index 87ec072..f8afcb8 100644 --- a/window.ui +++ b/window.ui @@ -186,6 +186,13 @@ + + + + Send Traj + + + From 2717ce4a9773f35575abac30a98ca974126128ed Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 18:36:37 -0500 Subject: [PATCH 11/28] traj --- config.ini | 11 ++++++++ main.py | 73 ++++++++++++++++++++++++++++++++++-------------------- 2 files changed, 57 insertions(+), 27 deletions(-) create mode 100644 config.ini diff --git a/config.ini b/config.ini new file mode 100644 index 0000000..6b0bf3b --- /dev/null +++ b/config.ini @@ -0,0 +1,11 @@ +[DEFAULT] +TAKEOFF_ALTITUDE = 1 +DT = 0.05 +CMD_VEL = 0.4 + +[DRONEKIT] +IP_ADDR = "" + +[Trajectory] +traj_path = '/home/redwan/PycharmProjects/droneController/trajs/spiral8.csv' +traj_dt = 25 diff --git a/main.py b/main.py index 4a3bcb0..5302e82 100644 --- a/main.py +++ b/main.py @@ -7,16 +7,18 @@ from PyQt5.QtCore import QTimer from threading import Thread -import argparse +import configparser from enum import Enum from collections import defaultdict import time from Quadrotor import Quadrotor import numpy as np +import os + + +TRAJ_PATH = '/home/redwan/PycharmProjects/droneController/trajs/spiral8.csv' + -TAKEOFF_ALTITUDE = 1 # m -DT = 0.05 # sec -CMD_VEL = 0.4 # m/s class State(Enum): INITIALIZED = 0 @@ -33,13 +35,15 @@ class Action(Enum): class MainWindow(QMainWindow): - def __init__(self, args): + def __init__(self, config): + super().__init__() uic.loadUi('window.ui', self) + self.config = config self.state = State.LAND self.coord = np.zeros(3) self.progressBar.setValue(0) - self.thread = Thread(target=self.connect, args=(args,)) + self.thread = Thread(target=self.connect, args=(config.ip_addr,)) self.thread.start() self.transition = defaultdict(dict) @@ -48,7 +52,7 @@ def __init__(self, args): self.transition[State.TAKEOFF][Action.HAS_ARRIVED] = State.HOVER self.transition[State.LAND][Action.DISARMED] = State.INITIALIZED - self.launchAlt = TAKEOFF_ALTITUDE + self.launchAlt = self.config.default_takeoff_alt self.btnLaunch.clicked.connect(self.launch_click) self.btnWest.clicked.connect(self.west_click) @@ -81,21 +85,25 @@ def traj_callback(self): self.traj_timer.stop() def sendTrajectory(self): - trajPath = "/home/redwan/PycharmProjects/droneController/trajs/spiral8.csv" + + if not os.path.exists(TRAJ_PATH): + print(f'{self.config.traj_path} does not exist!') + return print('sending trajectory') if self.state == State.HOVER: - self.traj = np.loadtxt(trajPath, delimiter=",") + self.traj = np.loadtxt(TRAJ_PATH, delimiter=",") self.traj_timer = QTimer() self.traj_index = 0 self.traj_timer.timeout.connect(self.traj_callback) - self.traj_timer.start(25) - def connect(self, args): - self.connection_string = args.connect + self.traj_timer.start(self.config.traj_dt) + + def connect(self, ip_addr): + self.connection_string = ip_addr self.sitl = None # Start SITL if no connection string specified - if not self.connection_string: + if len(self.connection_string) < 3: import dronekit_sitl self.sitl = dronekit_sitl.start_default() self.connection_string = self.sitl.connection_string() @@ -206,8 +214,8 @@ def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): elapsed_time = 0.0 while elapsed_time < duration: self.publish_cmd_vel(velocity_x, velocity_y, velocity_z) - time.sleep(DT) - elapsed_time += DT + time.sleep(self.config.default_dt) + elapsed_time += self.config.default_dt ############### Joystick communication ########################################################################## @@ -219,25 +227,25 @@ def vehicle_validation(self, function): def west_click(self): @self.vehicle_validation def west_wrapped(): - self.send_ned_velocity(0, -CMD_VEL, 0, 1) + self.send_ned_velocity(0, -self.config.default_cmd_vel, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def east_click(self): @self.vehicle_validation def east_wrapped(): - self.send_ned_velocity(0, CMD_VEL, 0, 1) + self.send_ned_velocity(0, self.config.default_cmd_vel, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def north_click(self): @self.vehicle_validation def north_wrapped(): - self.send_ned_velocity(CMD_VEL, 0, 0, 1) + self.send_ned_velocity(self.config.default_cmd_vel, 0, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def south_click(self): @self.vehicle_validation def south_wrapped(): - self.send_ned_velocity(-CMD_VEL, 0, 0, 1) + self.send_ned_velocity(-self.config.default_cmd_vel, 0, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def rtl_click(self): @@ -252,7 +260,7 @@ def up_click(self): def up_wrapped(): alt = self.vehicle.location.global_relative_frame.alt if alt < 3: - self.send_ned_velocity(0, 0, -0.5 * CMD_VEL, 1) + self.send_ned_velocity(0, 0, -0.5 * self.config.default_cmd_vel, 1) # self.send_ned_velocity(0, 0, 0, 1) def down_click(self): @@ -260,7 +268,7 @@ def down_click(self): def down_wrapped(): alt = self.vehicle.location.global_relative_frame.alt if alt > 0.5: - self.send_ned_velocity(0, 0, 0.5 * CMD_VEL, 1) + self.send_ned_velocity(0, 0, 0.5 * self.config.default_cmd_vel, 1) # self.send_ned_velocity(0, 0, 0, 1) @@ -278,14 +286,25 @@ def launch_click(self): print("launch has already been initialized !") +class Config: + def __init__(self): + config = configparser.ConfigParser() + config.read('config.ini') + self.traj_path = f"{config['Trajectory']['traj_path']}" + self.traj_dt = int(config['Trajectory']['traj_dt']) + self.default_takeoff_alt = float(config['DEFAULT']['TAKEOFF_ALTITUDE']) + self.default_cmd_vel = float(config['DEFAULT']['CMD_VEL']) + self.default_dt = float(config['DEFAULT']['DT']) + + self.ip_addr = f"{config['DRONEKIT']['IP_ADDR']}" + + + if __name__ == '__main__': - # Set up option parsing to get connection string - parser = argparse.ArgumentParser( - description='Tracks GPS position of your computer (Linux only). Connects to SITL on local PC by default.') - parser.add_argument('--connect', help="vehicle connection target.") - args = parser.parse_args() + + config = Config() app = QApplication(sys.argv) - window = MainWindow(args) + window = MainWindow(config) window.show() sys.exit(app.exec()) \ No newline at end of file From 7c856e83bfcbe667990b845987cfa8b9fbcf49ae Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 19:09:05 -0500 Subject: [PATCH 12/28] config added --- config.ini | 4 +-- main.py | 73 ++++++++++++++++++++++++++++-------------------------- 2 files changed, 40 insertions(+), 37 deletions(-) diff --git a/config.ini b/config.ini index 6b0bf3b..c33026e 100644 --- a/config.ini +++ b/config.ini @@ -7,5 +7,5 @@ CMD_VEL = 0.4 IP_ADDR = "" [Trajectory] -traj_path = '/home/redwan/PycharmProjects/droneController/trajs/spiral8.csv' -traj_dt = 25 +traj_path = trajs/spiral8.csv +traj_dt = 30 diff --git a/main.py b/main.py index 5302e82..0ab68b1 100644 --- a/main.py +++ b/main.py @@ -14,9 +14,27 @@ from Quadrotor import Quadrotor import numpy as np import os +import logging +logging.basicConfig( + format='%(asctime)s %(levelname)-8s %(message)s', + level=logging.INFO, + datefmt='%H:%M:%S') -TRAJ_PATH = '/home/redwan/PycharmProjects/droneController/trajs/spiral8.csv' +class Config: + def __init__(self): + config = configparser.ConfigParser() + config.read('config.ini') + self.traj_path = f"{os.getcwd()}/{str(config['Trajectory']['traj_path'])}" + self.traj_dt = int(config['Trajectory']['traj_dt']) + self.default_takeoff_alt = float(config['DEFAULT']['TAKEOFF_ALTITUDE']) + self.default_cmd_vel = float(config['DEFAULT']['CMD_VEL']) + self.default_dt = float(config['DEFAULT']['DT']) + self.ip_addr = str(config['DRONEKIT']['IP_ADDR']) + + if not os.path.exists(self.traj_path): + logging.error(f'{self.traj_path} does not exist!') + return @@ -35,15 +53,15 @@ class Action(Enum): class MainWindow(QMainWindow): - def __init__(self, config): + def __init__(self): super().__init__() uic.loadUi('window.ui', self) - self.config = config + self.config = Config() self.state = State.LAND self.coord = np.zeros(3) self.progressBar.setValue(0) - self.thread = Thread(target=self.connect, args=(config.ip_addr,)) + self.thread = Thread(target=self.connect, args=(self.config.ip_addr,)) self.thread.start() self.transition = defaultdict(dict) @@ -76,23 +94,23 @@ def traj_callback(self): target = self.traj[self.traj_index][1:] vel = target - self.coord vx, vy, vz = vel - print(f"[Traj] vx = {vx:.3f}, vy = {vy:.3f} ") + logging.debug(f"[Traj] vx = {vx:.3f}, vy = {vy:.3f} ") self.publish_cmd_vel(vy, vx, -vz) elif self.traj_index - 10 < len(self.traj): self.publish_cmd_vel(0, 0, 0) else: - print("trajectory timer stopped") + logging.debug("trajectory timer stopped") self.traj_timer.stop() def sendTrajectory(self): - if not os.path.exists(TRAJ_PATH): - print(f'{self.config.traj_path} does not exist!') + if not os.path.exists(self.config.traj_path): + logging.error(f'{self.config.traj_path} does not exist!') return - print('sending trajectory') + logging.info('sending trajectory') if self.state == State.HOVER: - self.traj = np.loadtxt(TRAJ_PATH, delimiter=",") + self.traj = np.loadtxt(self.config.traj_path, delimiter=",") self.traj_timer = QTimer() self.traj_index = 0 self.traj_timer.timeout.connect(self.traj_callback) @@ -109,7 +127,7 @@ def connect(self, ip_addr): self.connection_string = self.sitl.connection_string() # Connect to the Vehicle - print('Connecting to vehicle on: %s' % self.connection_string) + logging.info('Connecting to vehicle on: %s' % self.connection_string) self.vehicle = connect(self.connection_string, wait_ready=True) self.progressBar.setValue(25) @@ -131,7 +149,7 @@ def connect(self, ip_addr): # def updateFlightModeGUI(self, value): - print('flight mode change to ', value) + logging.info(f'flight mode change to {value}') index, mode = str(value).split(':') self.lblFlightModeValue.setText(mode) @@ -176,7 +194,7 @@ def timerCallback(self): return self.state = self.transition[self.state][action] - print(self.state.name, self.vehicle.system_status.state) + logging.info("[State]: {} | Action = {}".format(self.state.name, self.vehicle.system_status.state)) if self.state == State.ARMED: self.vehicle.mode = VehicleMode("GUIDED") @@ -188,11 +206,11 @@ def timerCallback(self): self.progressBar.setValue(75) elif self.state == State.HOVER: - print("vehicle reached to hovering position") + logging.info("vehicle reached to hovering position") self.progressBar.setValue(100) elif self.state == State.INITIALIZED: - print("vehicle landed") + logging.info("vehicle landed") self.timer.stop() ############### MAV LINK communication ########################################################################## @@ -221,7 +239,7 @@ def send_ned_velocity(self, velocity_x, velocity_y, velocity_z, duration): ############### Joystick communication ########################################################################## def vehicle_validation(self, function): if self.vehicle.mode == "GUIDED": - print('button clicked ', function.__name__) + logging.debug('button clicked ', function.__name__) function() def west_click(self): @@ -276,35 +294,20 @@ def launch_click(self): """ Arms vehicle and fly to self.alt """ - print('launch button pressed') + logging.debug('launch button pressed') if self.state == State.INITIALIZED: - print('initializeing taking off ...') + logging.info('initializeing taking off ...') self.timer = QTimer() self.timer.timeout.connect(self.timerCallback) self.timer.start(1000) else: - print("launch has already been initialized !") + logging.warning("launch has not been initialized !") -class Config: - def __init__(self): - config = configparser.ConfigParser() - config.read('config.ini') - self.traj_path = f"{config['Trajectory']['traj_path']}" - self.traj_dt = int(config['Trajectory']['traj_dt']) - self.default_takeoff_alt = float(config['DEFAULT']['TAKEOFF_ALTITUDE']) - self.default_cmd_vel = float(config['DEFAULT']['CMD_VEL']) - self.default_dt = float(config['DEFAULT']['DT']) - - self.ip_addr = f"{config['DRONEKIT']['IP_ADDR']}" - if __name__ == '__main__': - - - config = Config() app = QApplication(sys.argv) - window = MainWindow(config) + window = MainWindow() window.show() sys.exit(app.exec()) \ No newline at end of file From c27f0dd5826470370b70a397f8ebda501e05a7e7 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 19:23:26 -0500 Subject: [PATCH 13/28] config added --- Quadrotor.py | 4 ++-- main.py | 26 +++++++++++++++++--------- 2 files changed, 19 insertions(+), 11 deletions(-) diff --git a/Quadrotor.py b/Quadrotor.py index 5a9c394..bd9cffc 100644 --- a/Quadrotor.py +++ b/Quadrotor.py @@ -86,8 +86,8 @@ def plot(self): # pragma: no cover self.ax.plot(self.x_data, self.y_data, self.z_data, 'b:') - self.ax.set_xlim(-5, 5) - self.ax.set_ylim(-5, 5) + self.ax.set_xlim(-3.0, 3.0) + self.ax.set_ylim(-3.0, 3.0) self.ax.set_zlim(0, 3) # plt.pause(0.001) diff --git a/main.py b/main.py index 0ab68b1..516fe2e 100644 --- a/main.py +++ b/main.py @@ -25,7 +25,7 @@ class Config: def __init__(self): config = configparser.ConfigParser() config.read('config.ini') - self.traj_path = f"{os.getcwd()}/{str(config['Trajectory']['traj_path'])}" + self.traj_path = f"{str(config['Trajectory']['traj_path'])}" self.traj_dt = int(config['Trajectory']['traj_dt']) self.default_takeoff_alt = float(config['DEFAULT']['TAKEOFF_ALTITUDE']) self.default_cmd_vel = float(config['DEFAULT']['CMD_VEL']) @@ -72,7 +72,6 @@ def __init__(self): self.launchAlt = self.config.default_takeoff_alt self.btnLaunch.clicked.connect(self.launch_click) - self.btnWest.clicked.connect(self.west_click) self.btnEast.clicked.connect(self.east_click) self.btnNorth.clicked.connect(self.north_click) @@ -82,6 +81,10 @@ def __init__(self): self.btnDown.clicked.connect(self.down_click) self.btnSendTraj.clicked.connect(self.sendTrajectory) + # intialize buttons + self.btnLaunch.setEnabled(False) + self.btnSendTraj.setEnabled(False) + # add visualizer self.quad = Quadrotor(size=0.5) @@ -146,7 +149,7 @@ def connect(self, ip_addr): # change state self.state = State.INITIALIZED - # + self.btnLaunch.setEnabled(True) def updateFlightModeGUI(self, value): logging.info(f'flight mode change to {value}') @@ -156,19 +159,23 @@ def updateFlightModeGUI(self, value): def updateLocationGUI(self, location): # self.lblLongValue.setText(str(location.global_frame.lon)) # self.lblLatValue.setText(str(location.global_frame.lat)) - - self.lblAltValue.setText(str(location.global_relative_frame.alt)) # location.local_frame. x = location.local_frame.east y = location.local_frame.north - if x is None or y is None: - x, y = 0, 0 - # print(x, y) + z = location.local_frame.down + + if x is None or y is None or z is None: + x, y, z = 0, 0, 0 + z = min(-z, 0.0) + logging.debug(f'location: {x}, {y}, {z}') self.coord[0] = x self.coord[1] = y - self.coord[2] = location.global_relative_frame.alt + self.coord[2] = z + self.lblLongValue.setText(f"{x:.4f}") self.lblLatValue.setText(f"{y:.4f}") + self.lblAltValue.setText(f"{z:.4f}") + self.quad.update_pose(x,y,location.global_relative_frame.alt,0,0,0) def addObserverAndInit(self, name, cb): @@ -208,6 +215,7 @@ def timerCallback(self): elif self.state == State.HOVER: logging.info("vehicle reached to hovering position") self.progressBar.setValue(100) + self.btnSendTraj.setEnabled(True) elif self.state == State.INITIALIZED: logging.info("vehicle landed") From a6b3025238d16809bb0fe982b7cceb9c9f5d8fa7 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 19:28:02 -0500 Subject: [PATCH 14/28] simulation bug fixed --- main.py | 4 ++-- window.ui | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/main.py b/main.py index 516fe2e..abfa568 100644 --- a/main.py +++ b/main.py @@ -166,7 +166,7 @@ def updateLocationGUI(self, location): if x is None or y is None or z is None: x, y, z = 0, 0, 0 - z = min(-z, 0.0) + z = max(-z, 0.0) logging.debug(f'location: {x}, {y}, {z}') self.coord[0] = x self.coord[1] = y @@ -176,7 +176,7 @@ def updateLocationGUI(self, location): self.lblLatValue.setText(f"{y:.4f}") self.lblAltValue.setText(f"{z:.4f}") - self.quad.update_pose(x,y,location.global_relative_frame.alt,0,0,0) + self.quad.update_pose(x,y,z,0,0,0) def addObserverAndInit(self, name, cb): """We go ahead and call our observer once at startup to get an initial value""" diff --git a/window.ui b/window.ui index f8afcb8..b4dc45c 100644 --- a/window.ui +++ b/window.ui @@ -68,14 +68,14 @@ - Longitude : + y_coord - Latitude : + x_coord @@ -154,7 +154,7 @@ - RTL + LAND From fa2f873efdf9f1e90626181f01becbc027b549f6 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 22:04:07 -0500 Subject: [PATCH 15/28] simulation bug fixed --- arrows/down.png | Bin 0 -> 31192 bytes arrows/left.png | Bin 0 -> 30568 bytes arrows/right.png | Bin 0 -> 30721 bytes arrows/up.png | Bin 0 -> 31279 bytes main.py | 24 +++++++++ window.ui | 135 ++++++++++++++++++++++++++++++++++++----------- 6 files changed, 128 insertions(+), 31 deletions(-) create mode 100644 arrows/down.png create mode 100644 arrows/left.png create mode 100644 arrows/right.png create mode 100644 arrows/up.png diff --git a/arrows/down.png b/arrows/down.png new file mode 100644 index 0000000000000000000000000000000000000000..20d0e720e46724bada2d87d23f456f929fd24511 GIT binary patch literal 31192 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 literal 0 HcmV?d00001 diff --git a/arrows/right.png b/arrows/right.png new file mode 100644 index 0000000000000000000000000000000000000000..5bd43fd4dcfcfa5989bf0f24c285d3ea90c79068 GIT binary patch literal 30721 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 Fe*j2`m^%Of literal 0 HcmV?d00001 diff --git a/arrows/up.png b/arrows/up.png new file mode 100644 index 0000000000000000000000000000000000000000..1d34c901265ad2dc240207f6dcfacfa2cd2b09cf GIT binary patch literal 31279 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¨SR;+IA8$4`@8$ljA)Yu|f;HP` z%@-fL=xJypaH3`hyd}9BS4n|kef?;4^^%P7)Hx$=-IjYI+@G#vuVeqn$#tuEX4Y{8 zFyBm%9v4c*JRE;=oTt?$l0EfKSY=!ie&{2^5p*Jk!*N1YYYF{X+@U^c(-600-_Ep@ z;CFV$A$Z{?xyG+(_Z=wyqZ%TG#oydo)>->4~w zoc`yF!Wp)OvR?@c!ZRwNA9qd#?!_=*8mB%sAKX)9Xcl44WQuV(Flu2~#%LDdpKDlJ qS`nJO@bJ64>oVsRT;=lCKl9}54a$Ad{hC literal 0 HcmV?d00001 diff --git a/main.py b/main.py index abfa568..9550c3a 100644 --- a/main.py +++ b/main.py @@ -6,6 +6,7 @@ from PyQt5 import uic from PyQt5.QtCore import QTimer from threading import Thread +import PyQt5 import configparser from enum import Enum @@ -72,11 +73,13 @@ def __init__(self): self.launchAlt = self.config.default_takeoff_alt self.btnLaunch.clicked.connect(self.launch_click) + self.btnWest.clicked.connect(self.west_click) self.btnEast.clicked.connect(self.east_click) self.btnNorth.clicked.connect(self.north_click) self.btnSouth.clicked.connect(self.south_click) self.btnRTL.clicked.connect(self.rtl_click) + self.btnUp.clicked.connect(self.up_click) self.btnDown.clicked.connect(self.down_click) self.btnSendTraj.clicked.connect(self.sendTrajectory) @@ -251,30 +254,45 @@ def vehicle_validation(self, function): function() def west_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving west is not possible") + return @self.vehicle_validation def west_wrapped(): self.send_ned_velocity(0, -self.config.default_cmd_vel, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def east_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving east is not possible") + return @self.vehicle_validation def east_wrapped(): self.send_ned_velocity(0, self.config.default_cmd_vel, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def north_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving north is not possible") + return @self.vehicle_validation def north_wrapped(): self.send_ned_velocity(self.config.default_cmd_vel, 0, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def south_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving south is not possible") + return @self.vehicle_validation def south_wrapped(): self.send_ned_velocity(-self.config.default_cmd_vel, 0, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def rtl_click(self): + if self.state == State.LAND or self.state == State.INITIALIZED: + logging.warning("[Invalid request]: landing is not possible") + return @self.vehicle_validation def rtl_wrapped(): self.vehicle.mode = VehicleMode("LAND") @@ -282,6 +300,9 @@ def rtl_wrapped(): def up_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving up is not possible") + return @self.vehicle_validation def up_wrapped(): alt = self.vehicle.location.global_relative_frame.alt @@ -290,6 +311,9 @@ def up_wrapped(): # self.send_ned_velocity(0, 0, 0, 1) def down_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving down is not possible") + return @self.vehicle_validation def down_wrapped(): alt = self.vehicle.location.global_relative_frame.alt diff --git a/window.ui b/window.ui index b4dc45c..b93e8b1 100644 --- a/window.ui +++ b/window.ui @@ -45,26 +45,6 @@ - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - @@ -79,8 +59,22 @@ - - + + + + 24 + + + + + + + + + + + + Qt::Vertical @@ -92,12 +86,18 @@ - - - - 24 + + + + Qt::Vertical - + + + 20 + 40 + + + @@ -119,7 +119,17 @@ - Go South + + + + + arrows/down.pngarrows/down.png + + + + 28 + 28 + @@ -147,15 +157,58 @@ - Go North + + + + + arrows/up.pngarrows/up.png + + + + 28 + 28 + + + + -1 + 75 + false + true + + + + QPushButton{ + background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #D3D3D3, stop: 0.4 #D8D8D8, + stop: 0.5 #DDDDDD, stop: 1.0 #E1E1E1); + border-style: outset; + border-width: 1px; + border-radius: 19px; + border-color: beige; + font: bold 14px; + min-width:1em; + padding: 10px; +} + +QPushButton:pressed { + background-color: rgb(224, 0, 0); + border-style: inset; +} + LAND + + + 28 + 28 + + @@ -168,14 +221,34 @@ - Go West + + + + + arrows/left.pngarrows/left.png + + + + 28 + 28 + - Go East + + + + + arrows/right.pngarrows/right.png + + + + 28 + 28 + From e1349cc6eb6f7df04fb89c5a943ff8ff80745eae Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 22:04:07 -0500 Subject: [PATCH 16/28] simulation bug fixed --- arrows/down.png | Bin 0 -> 31192 bytes arrows/left.png | Bin 0 -> 30568 bytes arrows/right.png | Bin 0 -> 30721 bytes arrows/up.png | Bin 0 -> 31279 bytes main.py | 24 +++++++++ window.ui | 135 ++++++++++++++++++++++++++++++++++++----------- 6 files changed, 128 insertions(+), 31 deletions(-) create mode 100644 arrows/down.png create mode 100644 arrows/left.png create mode 100644 arrows/right.png create mode 100644 arrows/up.png diff --git a/arrows/down.png b/arrows/down.png new file mode 100644 index 0000000000000000000000000000000000000000..20d0e720e46724bada2d87d23f456f929fd24511 GIT binary patch literal 31192 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 literal 0 HcmV?d00001 diff --git a/arrows/right.png b/arrows/right.png new file mode 100644 index 0000000000000000000000000000000000000000..5bd43fd4dcfcfa5989bf0f24c285d3ea90c79068 GIT binary patch literal 30721 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 Fe*j2`m^%Of literal 0 HcmV?d00001 diff --git a/arrows/up.png b/arrows/up.png new file mode 100644 index 0000000000000000000000000000000000000000..1d34c901265ad2dc240207f6dcfacfa2cd2b09cf GIT binary patch literal 31279 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¨SR;+IA8$4`@8$ljA)Yu|f;HP` z%@-fL=xJypaH3`hyd}9BS4n|kef?;4^^%P7)Hx$=-IjYI+@G#vuVeqn$#tuEX4Y{8 zFyBm%9v4c*JRE;=oTt?$l0EfKSY=!ie&{2^5p*Jk!*N1YYYF{X+@U^c(-600-_Ep@ z;CFV$A$Z{?xyG+(_Z=wyqZ%TG#oydo)>->4~w zoc`yF!Wp)OvR?@c!ZRwNA9qd#?!_=*8mB%sAKX)9Xcl44WQuV(Flu2~#%LDdpKDlJ qS`nJO@bJ64>oVsRT;=lCKl9}54a$Ad{hC literal 0 HcmV?d00001 diff --git a/main.py b/main.py index abfa568..9550c3a 100644 --- a/main.py +++ b/main.py @@ -6,6 +6,7 @@ from PyQt5 import uic from PyQt5.QtCore import QTimer from threading import Thread +import PyQt5 import configparser from enum import Enum @@ -72,11 +73,13 @@ def __init__(self): self.launchAlt = self.config.default_takeoff_alt self.btnLaunch.clicked.connect(self.launch_click) + self.btnWest.clicked.connect(self.west_click) self.btnEast.clicked.connect(self.east_click) self.btnNorth.clicked.connect(self.north_click) self.btnSouth.clicked.connect(self.south_click) self.btnRTL.clicked.connect(self.rtl_click) + self.btnUp.clicked.connect(self.up_click) self.btnDown.clicked.connect(self.down_click) self.btnSendTraj.clicked.connect(self.sendTrajectory) @@ -251,30 +254,45 @@ def vehicle_validation(self, function): function() def west_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving west is not possible") + return @self.vehicle_validation def west_wrapped(): self.send_ned_velocity(0, -self.config.default_cmd_vel, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def east_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving east is not possible") + return @self.vehicle_validation def east_wrapped(): self.send_ned_velocity(0, self.config.default_cmd_vel, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def north_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving north is not possible") + return @self.vehicle_validation def north_wrapped(): self.send_ned_velocity(self.config.default_cmd_vel, 0, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def south_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving south is not possible") + return @self.vehicle_validation def south_wrapped(): self.send_ned_velocity(-self.config.default_cmd_vel, 0, 0, 1) # self.send_ned_velocity(0, 0, 0, 1) def rtl_click(self): + if self.state == State.LAND or self.state == State.INITIALIZED: + logging.warning("[Invalid request]: landing is not possible") + return @self.vehicle_validation def rtl_wrapped(): self.vehicle.mode = VehicleMode("LAND") @@ -282,6 +300,9 @@ def rtl_wrapped(): def up_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving up is not possible") + return @self.vehicle_validation def up_wrapped(): alt = self.vehicle.location.global_relative_frame.alt @@ -290,6 +311,9 @@ def up_wrapped(): # self.send_ned_velocity(0, 0, 0, 1) def down_click(self): + if self.state != State.HOVER: + logging.warning("[Invalid request]: moving down is not possible") + return @self.vehicle_validation def down_wrapped(): alt = self.vehicle.location.global_relative_frame.alt diff --git a/window.ui b/window.ui index b4dc45c..b93e8b1 100644 --- a/window.ui +++ b/window.ui @@ -45,26 +45,6 @@ - - - - Qt::Vertical - - - - 20 - 40 - - - - - - - - - - - @@ -79,8 +59,22 @@ - - + + + + 24 + + + + + + + + + + + + Qt::Vertical @@ -92,12 +86,18 @@ - - - - 24 + + + + Qt::Vertical - + + + 20 + 40 + + + @@ -119,7 +119,17 @@ - Go South + + + + + arrows/down.pngarrows/down.png + + + + 28 + 28 + @@ -147,15 +157,58 @@ - Go North + + + + + arrows/up.pngarrows/up.png + + + + 28 + 28 + + + + -1 + 75 + false + true + + + + QPushButton{ + background-color: qlineargradient(x1: 0, y1: 0, x2: 0, y2: 1, + stop: 0 #D3D3D3, stop: 0.4 #D8D8D8, + stop: 0.5 #DDDDDD, stop: 1.0 #E1E1E1); + border-style: outset; + border-width: 1px; + border-radius: 19px; + border-color: beige; + font: bold 14px; + min-width:1em; + padding: 10px; +} + +QPushButton:pressed { + background-color: rgb(224, 0, 0); + border-style: inset; +} + LAND + + + 28 + 28 + + @@ -168,14 +221,34 @@ - Go West + + + + + arrows/left.pngarrows/left.png + + + + 28 + 28 + - Go East + + + + + arrows/right.pngarrows/right.png + + + + 28 + 28 + From 8e965e19d38390783c25312dce0576fe80184621 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Sun, 19 May 2024 22:09:59 -0500 Subject: [PATCH 17/28] simulation bug fixed --- main.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index 9550c3a..4104793 100644 --- a/main.py +++ b/main.py @@ -175,11 +175,12 @@ def updateLocationGUI(self, location): self.coord[1] = y self.coord[2] = z + heading = np.deg2rad(45) self.lblLongValue.setText(f"{x:.4f}") self.lblLatValue.setText(f"{y:.4f}") self.lblAltValue.setText(f"{z:.4f}") - self.quad.update_pose(x,y,z,0,0,0) + self.quad.update_pose(x,y,z,0,0,heading) def addObserverAndInit(self, name, cb): """We go ahead and call our observer once at startup to get an initial value""" From ee7dd792618b796c0323aa4081421234018617c8 Mon Sep 17 00:00:00 2001 From: Redwan Newaz Date: Mon, 20 May 2024 12:32:54 -0500 Subject: [PATCH 18/28] tested on mavic air 2 --- .gitignore | 5 +- .vscode/settings.json | 3 + __pycache__/Quadrotor.cpython-36.pyc | Bin 0 -> 2850 bytes config.ini | 2 +- main.py | 14 +- python=3.6/bin/Activate.ps1 | 247 + python=3.6/bin/activate | 69 + python=3.6/bin/activate.csh | 26 + python=3.6/bin/activate.fish | 69 + python=3.6/bin/pip | 8 + python=3.6/bin/pip3 | 8 + python=3.6/bin/pip3.10 | 8 + python=3.6/bin/python | 1 + python=3.6/bin/python3 | 1 + python=3.6/bin/python3.10 | 1 + .../site-packages/_distutils_hack/__init__.py | 132 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5121 bytes .../__pycache__/override.cpython-310.pyc | Bin 0 -> 246 bytes .../site-packages/_distutils_hack/override.py | 1 + .../site-packages/distutils-precedence.pth | 1 + .../pip-22.0.2.dist-info/INSTALLER | 1 + .../pip-22.0.2.dist-info/LICENSE.txt | 20 + .../pip-22.0.2.dist-info/METADATA | 92 + .../site-packages/pip-22.0.2.dist-info/RECORD | 1037 ++ .../pip-22.0.2.dist-info/REQUESTED | 0 .../site-packages/pip-22.0.2.dist-info/WHEEL | 5 + .../pip-22.0.2.dist-info/entry_points.txt | 5 + .../pip-22.0.2.dist-info/top_level.txt | 1 + .../python3.10/site-packages/pip/__init__.py | 13 + .../python3.10/site-packages/pip/__main__.py | 31 + .../pip/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 639 bytes .../pip/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 601 bytes .../site-packages/pip/_internal/__init__.py | 19 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 760 bytes .../__pycache__/build_env.cpython-310.pyc | Bin 0 -> 9604 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 8387 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 11133 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 23130 bytes .../__pycache__/main.cpython-310.pyc | Bin 0 -> 625 bytes .../__pycache__/pyproject.cpython-310.pyc | Bin 0 -> 3544 bytes .../self_outdated_check.cpython-310.pyc | Bin 0 -> 4584 bytes .../__pycache__/wheel_builder.cpython-310.pyc | Bin 0 -> 9146 bytes .../site-packages/pip/_internal/build_env.py | 296 + .../site-packages/pip/_internal/cache.py | 264 + .../pip/_internal/cli/__init__.py | 4 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 280 bytes .../autocompletion.cpython-310.pyc | Bin 0 -> 5313 bytes .../__pycache__/base_command.cpython-310.pyc | Bin 0 -> 6256 bytes .../__pycache__/cmdoptions.cpython-310.pyc | Bin 0 -> 22555 bytes .../command_context.cpython-310.pyc | Bin 0 -> 1314 bytes .../cli/__pycache__/main.cpython-310.pyc | Bin 0 -> 1378 bytes .../__pycache__/main_parser.cpython-310.pyc | Bin 0 -> 2164 bytes .../cli/__pycache__/parser.cpython-310.pyc | Bin 0 -> 9951 bytes .../__pycache__/progress_bars.cpython-310.pyc | Bin 0 -> 9240 bytes .../__pycache__/req_command.cpython-310.pyc | Bin 0 -> 13541 bytes .../cli/__pycache__/spinners.cpython-310.pyc | Bin 0 -> 4954 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 359 bytes .../pip/_internal/cli/autocompletion.py | 171 + .../pip/_internal/cli/base_command.py | 220 + .../pip/_internal/cli/cmdoptions.py | 1018 ++ .../pip/_internal/cli/command_context.py | 27 + .../site-packages/pip/_internal/cli/main.py | 70 + .../pip/_internal/cli/main_parser.py | 87 + .../site-packages/pip/_internal/cli/parser.py | 292 + .../pip/_internal/cli/progress_bars.py | 321 + .../pip/_internal/cli/req_command.py | 506 + .../pip/_internal/cli/spinners.py | 157 + .../pip/_internal/cli/status_codes.py | 6 + .../pip/_internal/commands/__init__.py | 127 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3143 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 6184 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 1577 bytes .../__pycache__/completion.cpython-310.pyc | Bin 0 -> 3144 bytes .../__pycache__/configuration.cpython-310.pyc | Bin 0 -> 8326 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 6681 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 3991 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 2657 bytes .../commands/__pycache__/hash.cpython-310.pyc | Bin 0 -> 2156 bytes .../commands/__pycache__/help.cpython-310.pyc | Bin 0 -> 1317 bytes .../__pycache__/index.cpython-310.pyc | Bin 0 -> 4640 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 17799 bytes .../commands/__pycache__/list.cpython-310.pyc | Bin 0 -> 10366 bytes .../__pycache__/search.cpython-310.pyc | Bin 0 -> 5370 bytes .../commands/__pycache__/show.cpython-310.pyc | Bin 0 -> 6123 bytes .../__pycache__/uninstall.cpython-310.pyc | Bin 0 -> 3114 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4846 bytes .../pip/_internal/commands/cache.py | 223 + .../pip/_internal/commands/check.py | 53 + .../pip/_internal/commands/completion.py | 96 + .../pip/_internal/commands/configuration.py | 266 + .../pip/_internal/commands/debug.py | 202 + .../pip/_internal/commands/download.py | 140 + .../pip/_internal/commands/freeze.py | 97 + .../pip/_internal/commands/hash.py | 59 + .../pip/_internal/commands/help.py | 41 + .../pip/_internal/commands/index.py | 139 + .../pip/_internal/commands/install.py | 771 ++ .../pip/_internal/commands/list.py | 363 + .../pip/_internal/commands/search.py | 174 + .../pip/_internal/commands/show.py | 178 + .../pip/_internal/commands/uninstall.py | 105 + .../pip/_internal/commands/wheel.py | 178 + .../pip/_internal/configuration.py | 366 + .../pip/_internal/distributions/__init__.py | 21 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 807 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1864 bytes .../__pycache__/installed.cpython-310.pyc | Bin 0 -> 1241 bytes .../__pycache__/sdist.cpython-310.pyc | Bin 0 -> 4453 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1608 bytes .../pip/_internal/distributions/base.py | 36 + .../pip/_internal/distributions/installed.py | 20 + .../pip/_internal/distributions/sdist.py | 127 + .../pip/_internal/distributions/wheel.py | 31 + .../site-packages/pip/_internal/exceptions.py | 658 ++ .../pip/_internal/index/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 234 bytes .../__pycache__/collector.cpython-310.pyc | Bin 0 -> 19313 bytes .../package_finder.cpython-310.pyc | Bin 0 -> 28122 bytes .../index/__pycache__/sources.cpython-310.pyc | Bin 0 -> 7127 bytes .../pip/_internal/index/collector.py | 648 ++ .../pip/_internal/index/package_finder.py | 1004 ++ .../pip/_internal/index/sources.py | 224 + .../pip/_internal/locations/__init__.py | 520 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 12394 bytes .../__pycache__/_distutils.cpython-310.pyc | Bin 0 -> 4662 bytes .../__pycache__/_sysconfig.cpython-310.pyc | Bin 0 -> 6245 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1544 bytes .../pip/_internal/locations/_distutils.py | 169 + .../pip/_internal/locations/_sysconfig.py | 219 + .../pip/_internal/locations/base.py | 52 + .../site-packages/pip/_internal/main.py | 12 + .../pip/_internal/metadata/__init__.py | 62 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2300 bytes .../metadata/__pycache__/base.cpython-310.pyc | Bin 0 -> 20854 bytes .../__pycache__/pkg_resources.cpython-310.pyc | Bin 0 -> 9870 bytes .../pip/_internal/metadata/base.py | 546 ++ .../pip/_internal/metadata/pkg_resources.py | 256 + .../pip/_internal/models/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 268 bytes .../__pycache__/candidate.cpython-310.pyc | Bin 0 -> 1420 bytes .../__pycache__/direct_url.cpython-310.pyc | Bin 0 -> 7293 bytes .../format_control.cpython-310.pyc | Bin 0 -> 2745 bytes .../models/__pycache__/index.cpython-310.pyc | Bin 0 -> 1237 bytes .../models/__pycache__/link.cpython-310.pyc | Bin 0 -> 10169 bytes .../models/__pycache__/scheme.cpython-310.pyc | Bin 0 -> 1036 bytes .../__pycache__/search_scope.cpython-310.pyc | Bin 0 -> 3491 bytes .../selection_prefs.cpython-310.pyc | Bin 0 -> 1698 bytes .../__pycache__/target_python.cpython-310.pyc | Bin 0 -> 3449 bytes .../models/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4365 bytes .../pip/_internal/models/candidate.py | 34 + .../pip/_internal/models/direct_url.py | 220 + .../pip/_internal/models/format_control.py | 80 + .../pip/_internal/models/index.py | 28 + .../pip/_internal/models/link.py | 288 + .../pip/_internal/models/scheme.py | 31 + .../pip/_internal/models/search_scope.py | 129 + .../pip/_internal/models/selection_prefs.py | 51 + .../pip/_internal/models/target_python.py | 110 + .../pip/_internal/models/wheel.py | 89 + .../pip/_internal/network/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 256 bytes .../network/__pycache__/auth.cpython-310.pyc | Bin 0 -> 7524 bytes .../network/__pycache__/cache.cpython-310.pyc | Bin 0 -> 2937 bytes .../__pycache__/download.cpython-310.pyc | Bin 0 -> 5503 bytes .../__pycache__/lazy_wheel.cpython-310.pyc | Bin 0 -> 8411 bytes .../__pycache__/session.cpython-310.pyc | Bin 0 -> 10732 bytes .../network/__pycache__/utils.cpython-310.pyc | Bin 0 -> 1452 bytes .../__pycache__/xmlrpc.cpython-310.pyc | Bin 0 -> 2069 bytes .../pip/_internal/network/auth.py | 323 + .../pip/_internal/network/cache.py | 69 + .../pip/_internal/network/download.py | 185 + .../pip/_internal/network/lazy_wheel.py | 210 + .../pip/_internal/network/session.py | 454 + .../pip/_internal/network/utils.py | 96 + .../pip/_internal/network/xmlrpc.py | 60 + .../pip/_internal/operations/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 204 bytes .../__pycache__/check.cpython-310.pyc | Bin 0 -> 4017 bytes .../__pycache__/freeze.cpython-310.pyc | Bin 0 -> 6202 bytes .../__pycache__/prepare.cpython-310.pyc | Bin 0 -> 14900 bytes .../_internal/operations/build/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 210 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 1437 bytes .../metadata_editable.cpython-310.pyc | Bin 0 -> 1471 bytes .../metadata_legacy.cpython-310.pyc | Bin 0 -> 2382 bytes .../build/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 1227 bytes .../wheel_editable.cpython-310.pyc | Bin 0 -> 1451 bytes .../__pycache__/wheel_legacy.cpython-310.pyc | Bin 0 -> 2767 bytes .../_internal/operations/build/metadata.py | 39 + .../operations/build/metadata_editable.py | 41 + .../operations/build/metadata_legacy.py | 74 + .../pip/_internal/operations/build/wheel.py | 37 + .../operations/build/wheel_editable.py | 46 + .../operations/build/wheel_legacy.py | 102 + .../pip/_internal/operations/check.py | 149 + .../pip/_internal/operations/freeze.py | 254 + .../_internal/operations/install/__init__.py | 2 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 268 bytes .../editable_legacy.cpython-310.pyc | Bin 0 -> 1555 bytes .../__pycache__/legacy.cpython-310.pyc | Bin 0 -> 3339 bytes .../install/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 21097 bytes .../operations/install/editable_legacy.py | 47 + .../_internal/operations/install/legacy.py | 120 + .../pip/_internal/operations/install/wheel.py | 738 ++ .../pip/_internal/operations/prepare.py | 642 ++ .../site-packages/pip/_internal/pyproject.py | 168 + .../pip/_internal/req/__init__.py | 94 + .../req/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2604 bytes .../__pycache__/constructors.cpython-310.pyc | Bin 0 -> 12167 bytes .../req/__pycache__/req_file.cpython-310.pyc | Bin 0 -> 13495 bytes .../__pycache__/req_install.cpython-310.pyc | Bin 0 -> 22184 bytes .../req/__pycache__/req_set.cpython-310.pyc | Bin 0 -> 5844 bytes .../__pycache__/req_tracker.cpython-310.pyc | Bin 0 -> 4312 bytes .../__pycache__/req_uninstall.cpython-310.pyc | Bin 0 -> 18950 bytes .../pip/_internal/req/constructors.py | 490 + .../pip/_internal/req/req_file.py | 536 ++ .../pip/_internal/req/req_install.py | 858 ++ .../pip/_internal/req/req_set.py | 189 + .../pip/_internal/req/req_tracker.py | 124 + .../pip/_internal/req/req_uninstall.py | 633 ++ .../pip/_internal/resolution/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 204 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 1056 bytes .../pip/_internal/resolution/base.py | 20 + .../_internal/resolution/legacy/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 211 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 12298 bytes .../_internal/resolution/legacy/resolver.py | 467 + .../resolution/resolvelib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 215 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6458 bytes .../__pycache__/candidates.cpython-310.pyc | Bin 0 -> 18365 bytes .../__pycache__/factory.cpython-310.pyc | Bin 0 -> 19223 bytes .../found_candidates.cpython-310.pyc | Bin 0 -> 4875 bytes .../__pycache__/provider.cpython-310.pyc | Bin 0 -> 7717 bytes .../__pycache__/reporter.cpython-310.pyc | Bin 0 -> 3184 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 7473 bytes .../__pycache__/resolver.cpython-310.pyc | Bin 0 -> 8110 bytes .../_internal/resolution/resolvelib/base.py | 141 + .../resolution/resolvelib/candidates.py | 547 ++ .../resolution/resolvelib/factory.py | 739 ++ .../resolution/resolvelib/found_candidates.py | 155 + .../resolution/resolvelib/provider.py | 248 + .../resolution/resolvelib/reporter.py | 68 + .../resolution/resolvelib/requirements.py | 166 + .../resolution/resolvelib/resolver.py | 292 + .../pip/_internal/self_outdated_check.py | 189 + .../pip/_internal/utils/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 199 bytes .../utils/__pycache__/_log.cpython-310.pyc | Bin 0 -> 1527 bytes .../utils/__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 1625 bytes .../utils/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1515 bytes .../compatibility_tags.cpython-310.pyc | Bin 0 -> 4084 bytes .../__pycache__/datetime.cpython-310.pyc | Bin 0 -> 522 bytes .../__pycache__/deprecation.cpython-310.pyc | Bin 0 -> 3320 bytes .../direct_url_helpers.cpython-310.pyc | Bin 0 -> 2090 bytes .../distutils_args.cpython-310.pyc | Bin 0 -> 1106 bytes .../__pycache__/egg_link.cpython-310.pyc | Bin 0 -> 2155 bytes .../__pycache__/encoding.cpython-310.pyc | Bin 0 -> 1312 bytes .../__pycache__/entrypoints.cpython-310.pyc | Bin 0 -> 1309 bytes .../__pycache__/filesystem.cpython-310.pyc | Bin 0 -> 5167 bytes .../__pycache__/filetypes.cpython-310.pyc | Bin 0 -> 949 bytes .../utils/__pycache__/glibc.cpython-310.pyc | Bin 0 -> 1678 bytes .../utils/__pycache__/hashes.cpython-310.pyc | Bin 0 -> 5201 bytes .../inject_securetransport.cpython-310.pyc | Bin 0 -> 994 bytes .../utils/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9638 bytes .../utils/__pycache__/misc.cpython-310.pyc | Bin 0 -> 19404 bytes .../utils/__pycache__/models.cpython-310.pyc | Bin 0 -> 1995 bytes .../__pycache__/packaging.cpython-310.pyc | Bin 0 -> 2087 bytes .../setuptools_build.cpython-310.pyc | Bin 0 -> 4602 bytes .../__pycache__/subprocess.cpython-310.pyc | Bin 0 -> 5781 bytes .../__pycache__/temp_dir.cpython-310.pyc | Bin 0 -> 7304 bytes .../__pycache__/unpacking.cpython-310.pyc | Bin 0 -> 6659 bytes .../utils/__pycache__/urls.cpython-310.pyc | Bin 0 -> 1592 bytes .../__pycache__/virtualenv.cpython-310.pyc | Bin 0 -> 3295 bytes .../utils/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 4420 bytes .../site-packages/pip/_internal/utils/_log.py | 38 + .../pip/_internal/utils/appdirs.py | 52 + .../pip/_internal/utils/compat.py | 63 + .../pip/_internal/utils/compatibility_tags.py | 165 + .../pip/_internal/utils/datetime.py | 11 + .../pip/_internal/utils/deprecation.py | 120 + .../pip/_internal/utils/direct_url_helpers.py | 87 + .../pip/_internal/utils/distutils_args.py | 42 + .../pip/_internal/utils/egg_link.py | 75 + .../pip/_internal/utils/encoding.py | 36 + .../pip/_internal/utils/entrypoints.py | 27 + .../pip/_internal/utils/filesystem.py | 182 + .../pip/_internal/utils/filetypes.py | 27 + .../pip/_internal/utils/glibc.py | 88 + .../pip/_internal/utils/hashes.py | 144 + .../_internal/utils/inject_securetransport.py | 35 + .../pip/_internal/utils/logging.py | 343 + .../site-packages/pip/_internal/utils/misc.py | 653 ++ .../pip/_internal/utils/models.py | 39 + .../pip/_internal/utils/packaging.py | 57 + .../pip/_internal/utils/setuptools_build.py | 195 + .../pip/_internal/utils/subprocess.py | 260 + .../pip/_internal/utils/temp_dir.py | 246 + .../pip/_internal/utils/unpacking.py | 258 + .../site-packages/pip/_internal/utils/urls.py | 62 + .../pip/_internal/utils/virtualenv.py | 104 + .../pip/_internal/utils/wheel.py | 136 + .../pip/_internal/vcs/__init__.py | 15 + .../vcs/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 522 bytes .../vcs/__pycache__/bazaar.cpython-310.pyc | Bin 0 -> 3349 bytes .../vcs/__pycache__/git.cpython-310.pyc | Bin 0 -> 12552 bytes .../vcs/__pycache__/mercurial.cpython-310.pyc | Bin 0 -> 5068 bytes .../__pycache__/subversion.cpython-310.pyc | Bin 0 -> 8456 bytes .../versioncontrol.cpython-310.pyc | Bin 0 -> 21151 bytes .../site-packages/pip/_internal/vcs/bazaar.py | 101 + .../site-packages/pip/_internal/vcs/git.py | 526 + .../pip/_internal/vcs/mercurial.py | 163 + .../pip/_internal/vcs/subversion.py | 324 + .../pip/_internal/vcs/versioncontrol.py | 705 ++ .../pip/_internal/wheel_builder.py | 377 + .../site-packages/pip/_vendor/__init__.py | 111 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2922 bytes .../__pycache__/distro.cpython-310.pyc | Bin 0 -> 38240 bytes .../_vendor/__pycache__/six.cpython-310.pyc | Bin 0 -> 27589 bytes .../typing_extensions.cpython-310.pyc | Bin 0 -> 66585 bytes .../pip/_vendor/cachecontrol/__init__.py | 18 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 650 bytes .../__pycache__/_cmd.cpython-310.pyc | Bin 0 -> 1588 bytes .../__pycache__/adapter.cpython-310.pyc | Bin 0 -> 3164 bytes .../__pycache__/cache.cpython-310.pyc | Bin 0 -> 1854 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 764 bytes .../__pycache__/controller.cpython-310.pyc | Bin 0 -> 8218 bytes .../__pycache__/filewrapper.cpython-310.pyc | Bin 0 -> 2800 bytes .../__pycache__/heuristics.cpython-310.pyc | Bin 0 -> 4724 bytes .../__pycache__/serialize.cpython-310.pyc | Bin 0 -> 4259 bytes .../__pycache__/wrapper.cpython-310.pyc | Bin 0 -> 695 bytes .../pip/_vendor/cachecontrol/_cmd.py | 61 + .../pip/_vendor/cachecontrol/adapter.py | 137 + .../pip/_vendor/cachecontrol/cache.py | 43 + .../_vendor/cachecontrol/caches/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 301 bytes .../__pycache__/file_cache.cpython-310.pyc | Bin 0 -> 3375 bytes .../__pycache__/redis_cache.cpython-310.pyc | Bin 0 -> 1581 bytes .../_vendor/cachecontrol/caches/file_cache.py | 150 + .../cachecontrol/caches/redis_cache.py | 37 + .../pip/_vendor/cachecontrol/compat.py | 32 + .../pip/_vendor/cachecontrol/controller.py | 415 + .../pip/_vendor/cachecontrol/filewrapper.py | 111 + .../pip/_vendor/cachecontrol/heuristics.py | 139 + .../pip/_vendor/cachecontrol/serialize.py | 186 + .../pip/_vendor/cachecontrol/wrapper.py | 33 + .../pip/_vendor/certifi/__init__.py | 3 + .../pip/_vendor/certifi/__main__.py | 12 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 283 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 462 bytes .../certifi/__pycache__/core.cpython-310.pyc | Bin 0 -> 1521 bytes .../pip/_vendor/certifi/cacert.pem | 4362 +++++++++ .../site-packages/pip/_vendor/certifi/core.py | 76 + .../pip/_vendor/chardet/__init__.py | 83 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1907 bytes .../__pycache__/big5freq.cpython-310.pyc | Bin 0 -> 27186 bytes .../__pycache__/big5prober.cpython-310.pyc | Bin 0 -> 1137 bytes .../chardistribution.cpython-310.pyc | Bin 0 -> 5747 bytes .../charsetgroupprober.cpython-310.pyc | Bin 0 -> 2236 bytes .../__pycache__/charsetprober.cpython-310.pyc | Bin 0 -> 3490 bytes .../codingstatemachine.cpython-310.pyc | Bin 0 -> 2909 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 408 bytes .../__pycache__/cp949prober.cpython-310.pyc | Bin 0 -> 1144 bytes .../chardet/__pycache__/enums.cpython-310.pyc | Bin 0 -> 2591 bytes .../__pycache__/escprober.cpython-310.pyc | Bin 0 -> 2638 bytes .../chardet/__pycache__/escsm.cpython-310.pyc | Bin 0 -> 8385 bytes .../__pycache__/eucjpprober.cpython-310.pyc | Bin 0 -> 2440 bytes .../__pycache__/euckrfreq.cpython-310.pyc | Bin 0 -> 12070 bytes .../__pycache__/euckrprober.cpython-310.pyc | Bin 0 -> 1145 bytes .../__pycache__/euctwfreq.cpython-310.pyc | Bin 0 -> 27190 bytes .../__pycache__/euctwprober.cpython-310.pyc | Bin 0 -> 1145 bytes .../__pycache__/gb2312freq.cpython-310.pyc | Bin 0 -> 19114 bytes .../__pycache__/gb2312prober.cpython-310.pyc | Bin 0 -> 1153 bytes .../__pycache__/hebrewprober.cpython-310.pyc | Bin 0 -> 3026 bytes .../__pycache__/jisfreq.cpython-310.pyc | Bin 0 -> 22142 bytes .../__pycache__/jpcntx.cpython-310.pyc | Bin 0 -> 37649 bytes .../langbulgarianmodel.cpython-310.pyc | Bin 0 -> 47930 bytes .../langgreekmodel.cpython-310.pyc | Bin 0 -> 46120 bytes .../langhebrewmodel.cpython-310.pyc | Bin 0 -> 44569 bytes .../langhungarianmodel.cpython-310.pyc | Bin 0 -> 47890 bytes .../langrussianmodel.cpython-310.pyc | Bin 0 -> 61023 bytes .../__pycache__/langthaimodel.cpython-310.pyc | Bin 0 -> 44745 bytes .../langturkishmodel.cpython-310.pyc | Bin 0 -> 44586 bytes .../__pycache__/latin1prober.cpython-310.pyc | Bin 0 -> 4436 bytes .../mbcharsetprober.cpython-310.pyc | Bin 0 -> 2255 bytes .../mbcsgroupprober.cpython-310.pyc | Bin 0 -> 1140 bytes .../__pycache__/mbcssm.cpython-310.pyc | Bin 0 -> 18767 bytes .../sbcharsetprober.cpython-310.pyc | Bin 0 -> 3086 bytes .../sbcsgroupprober.cpython-310.pyc | Bin 0 -> 1709 bytes .../__pycache__/sjisprober.cpython-310.pyc | Bin 0 -> 2478 bytes .../universaldetector.cpython-310.pyc | Bin 0 -> 5832 bytes .../__pycache__/utf8prober.cpython-310.pyc | Bin 0 -> 1989 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 446 bytes .../pip/_vendor/chardet/big5freq.py | 386 + .../pip/_vendor/chardet/big5prober.py | 47 + .../pip/_vendor/chardet/chardistribution.py | 233 + .../pip/_vendor/chardet/charsetgroupprober.py | 107 + .../pip/_vendor/chardet/charsetprober.py | 145 + .../pip/_vendor/chardet/cli/__init__.py | 1 + .../cli/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 203 bytes .../__pycache__/chardetect.cpython-310.pyc | Bin 0 -> 2702 bytes .../pip/_vendor/chardet/cli/chardetect.py | 84 + .../pip/_vendor/chardet/codingstatemachine.py | 88 + .../pip/_vendor/chardet/compat.py | 36 + .../pip/_vendor/chardet/cp949prober.py | 49 + .../pip/_vendor/chardet/enums.py | 76 + .../pip/_vendor/chardet/escprober.py | 101 + .../pip/_vendor/chardet/escsm.py | 246 + .../pip/_vendor/chardet/eucjpprober.py | 92 + .../pip/_vendor/chardet/euckrfreq.py | 195 + .../pip/_vendor/chardet/euckrprober.py | 47 + .../pip/_vendor/chardet/euctwfreq.py | 387 + .../pip/_vendor/chardet/euctwprober.py | 46 + .../pip/_vendor/chardet/gb2312freq.py | 283 + .../pip/_vendor/chardet/gb2312prober.py | 46 + .../pip/_vendor/chardet/hebrewprober.py | 292 + .../pip/_vendor/chardet/jisfreq.py | 325 + .../pip/_vendor/chardet/jpcntx.py | 233 + .../pip/_vendor/chardet/langbulgarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langgreekmodel.py | 4398 +++++++++ .../pip/_vendor/chardet/langhebrewmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langhungarianmodel.py | 4650 +++++++++ .../pip/_vendor/chardet/langrussianmodel.py | 5718 +++++++++++ .../pip/_vendor/chardet/langthaimodel.py | 4383 +++++++++ .../pip/_vendor/chardet/langturkishmodel.py | 4383 +++++++++ .../pip/_vendor/chardet/latin1prober.py | 145 + .../pip/_vendor/chardet/mbcharsetprober.py | 91 + .../pip/_vendor/chardet/mbcsgroupprober.py | 54 + .../pip/_vendor/chardet/mbcssm.py | 572 ++ .../pip/_vendor/chardet/metadata/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../__pycache__/languages.cpython-310.pyc | Bin 0 -> 7970 bytes .../pip/_vendor/chardet/metadata/languages.py | 310 + .../pip/_vendor/chardet/sbcharsetprober.py | 145 + .../pip/_vendor/chardet/sbcsgroupprober.py | 83 + .../pip/_vendor/chardet/sjisprober.py | 92 + .../pip/_vendor/chardet/universaldetector.py | 286 + .../pip/_vendor/chardet/utf8prober.py | 82 + .../pip/_vendor/chardet/version.py | 9 + .../pip/_vendor/colorama/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 451 bytes .../colorama/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 3012 bytes .../__pycache__/ansitowin32.cpython-310.pyc | Bin 0 -> 7910 bytes .../__pycache__/initialise.cpython-310.pyc | Bin 0 -> 1698 bytes .../__pycache__/win32.cpython-310.pyc | Bin 0 -> 3958 bytes .../__pycache__/winterm.cpython-310.pyc | Bin 0 -> 4575 bytes .../pip/_vendor/colorama/ansi.py | 102 + .../pip/_vendor/colorama/ansitowin32.py | 258 + .../pip/_vendor/colorama/initialise.py | 80 + .../pip/_vendor/colorama/win32.py | 152 + .../pip/_vendor/colorama/winterm.py | 169 + .../pip/_vendor/distlib/__init__.py | 23 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1070 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 31416 bytes .../__pycache__/database.cpython-310.pyc | Bin 0 -> 42871 bytes .../distlib/__pycache__/index.cpython-310.pyc | Bin 0 -> 17325 bytes .../__pycache__/locators.cpython-310.pyc | Bin 0 -> 38384 bytes .../__pycache__/manifest.cpython-310.pyc | Bin 0 -> 10238 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 5042 bytes .../__pycache__/metadata.cpython-310.pyc | Bin 0 -> 26570 bytes .../__pycache__/resources.cpython-310.pyc | Bin 0 -> 11044 bytes .../__pycache__/scripts.cpython-310.pyc | Bin 0 -> 11260 bytes .../distlib/__pycache__/util.cpython-310.pyc | Bin 0 -> 51703 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 20157 bytes .../distlib/__pycache__/wheel.cpython-310.pyc | Bin 0 -> 27317 bytes .../pip/_vendor/distlib/compat.py | 1116 +++ .../pip/_vendor/distlib/database.py | 1345 +++ .../pip/_vendor/distlib/index.py | 509 + .../pip/_vendor/distlib/locators.py | 1300 +++ .../pip/_vendor/distlib/manifest.py | 393 + .../pip/_vendor/distlib/markers.py | 152 + .../pip/_vendor/distlib/metadata.py | 1058 ++ .../pip/_vendor/distlib/resources.py | 358 + .../pip/_vendor/distlib/scripts.py | 429 + .../site-packages/pip/_vendor/distlib/util.py | 1932 ++++ .../pip/_vendor/distlib/version.py | 739 ++ .../pip/_vendor/distlib/wheel.py | 1053 ++ .../site-packages/pip/_vendor/distro.py | 1386 +++ .../pip/_vendor/html5lib/__init__.py | 35 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1310 bytes .../__pycache__/_ihatexml.cpython-310.pyc | Bin 0 -> 13865 bytes .../__pycache__/_inputstream.cpython-310.pyc | Bin 0 -> 21682 bytes .../__pycache__/_tokenizer.cpython-310.pyc | Bin 0 -> 37328 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 4804 bytes .../__pycache__/constants.cpython-310.pyc | Bin 0 -> 161269 bytes .../__pycache__/html5parser.cpython-310.pyc | Bin 0 -> 88479 bytes .../__pycache__/serializer.cpython-310.pyc | Bin 0 -> 10745 bytes .../pip/_vendor/html5lib/_ihatexml.py | 289 + .../pip/_vendor/html5lib/_inputstream.py | 918 ++ .../pip/_vendor/html5lib/_tokenizer.py | 1735 ++++ .../pip/_vendor/html5lib/_trie/__init__.py | 5 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 360 bytes .../_trie/__pycache__/_base.cpython-310.pyc | Bin 0 -> 1612 bytes .../_trie/__pycache__/py.cpython-310.pyc | Bin 0 -> 2275 bytes .../pip/_vendor/html5lib/_trie/_base.py | 40 + .../pip/_vendor/html5lib/_trie/py.py | 67 + .../pip/_vendor/html5lib/_utils.py | 159 + .../pip/_vendor/html5lib/constants.py | 2946 ++++++ .../pip/_vendor/html5lib/filters/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../alphabeticalattributes.cpython-310.pyc | Bin 0 -> 1338 bytes .../filters/__pycache__/base.cpython-310.pyc | Bin 0 -> 878 bytes .../inject_meta_charset.cpython-310.pyc | Bin 0 -> 1876 bytes .../filters/__pycache__/lint.cpython-310.pyc | Bin 0 -> 2584 bytes .../__pycache__/optionaltags.cpython-310.pyc | Bin 0 -> 2735 bytes .../__pycache__/sanitizer.cpython-310.pyc | Bin 0 -> 20032 bytes .../__pycache__/whitespace.cpython-310.pyc | Bin 0 -> 1382 bytes .../filters/alphabeticalattributes.py | 29 + .../pip/_vendor/html5lib/filters/base.py | 12 + .../html5lib/filters/inject_meta_charset.py | 73 + .../pip/_vendor/html5lib/filters/lint.py | 93 + .../_vendor/html5lib/filters/optionaltags.py | 207 + .../pip/_vendor/html5lib/filters/sanitizer.py | 916 ++ .../_vendor/html5lib/filters/whitespace.py | 38 + .../pip/_vendor/html5lib/html5parser.py | 2795 ++++++ .../pip/_vendor/html5lib/serializer.py | 409 + .../_vendor/html5lib/treeadapters/__init__.py | 30 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 949 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1561 bytes .../__pycache__/sax.cpython-310.pyc | Bin 0 -> 1468 bytes .../_vendor/html5lib/treeadapters/genshi.py | 54 + .../pip/_vendor/html5lib/treeadapters/sax.py | 50 + .../_vendor/html5lib/treebuilders/__init__.py | 88 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3340 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 11331 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 9418 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 11720 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 13035 bytes .../pip/_vendor/html5lib/treebuilders/base.py | 417 + .../pip/_vendor/html5lib/treebuilders/dom.py | 239 + .../_vendor/html5lib/treebuilders/etree.py | 343 + .../html5lib/treebuilders/etree_lxml.py | 392 + .../_vendor/html5lib/treewalkers/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3990 bytes .../__pycache__/base.cpython-310.pyc | Bin 0 -> 6951 bytes .../__pycache__/dom.cpython-310.pyc | Bin 0 -> 1722 bytes .../__pycache__/etree.cpython-310.pyc | Bin 0 -> 3480 bytes .../__pycache__/etree_lxml.cpython-310.pyc | Bin 0 -> 6567 bytes .../__pycache__/genshi.cpython-310.pyc | Bin 0 -> 1928 bytes .../pip/_vendor/html5lib/treewalkers/base.py | 252 + .../pip/_vendor/html5lib/treewalkers/dom.py | 43 + .../pip/_vendor/html5lib/treewalkers/etree.py | 131 + .../html5lib/treewalkers/etree_lxml.py | 215 + .../_vendor/html5lib/treewalkers/genshi.py | 69 + .../pip/_vendor/idna/__init__.py | 44 + .../idna/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 855 bytes .../idna/__pycache__/codec.cpython-310.pyc | Bin 0 -> 2826 bytes .../idna/__pycache__/compat.cpython-310.pyc | Bin 0 -> 755 bytes .../idna/__pycache__/core.cpython-310.pyc | Bin 0 -> 9570 bytes .../idna/__pycache__/idnadata.cpython-310.pyc | Bin 0 -> 38233 bytes .../__pycache__/intranges.cpython-310.pyc | Bin 0 -> 1992 bytes .../__pycache__/package_data.cpython-310.pyc | Bin 0 -> 219 bytes .../__pycache__/uts46data.cpython-310.pyc | Bin 0 -> 150954 bytes .../site-packages/pip/_vendor/idna/codec.py | 112 + .../site-packages/pip/_vendor/idna/compat.py | 13 + .../site-packages/pip/_vendor/idna/core.py | 397 + .../pip/_vendor/idna/idnadata.py | 2137 +++++ .../pip/_vendor/idna/intranges.py | 54 + .../pip/_vendor/idna/package_data.py | 2 + .../pip/_vendor/idna/uts46data.py | 8512 +++++++++++++++++ .../pip/_vendor/msgpack/__init__.py | 54 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1435 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 226 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 1816 bytes .../msgpack/__pycache__/ext.cpython-310.pyc | Bin 0 -> 6324 bytes .../__pycache__/fallback.cpython-310.pyc | Bin 0 -> 25453 bytes .../pip/_vendor/msgpack/_version.py | 1 + .../pip/_vendor/msgpack/exceptions.py | 48 + .../site-packages/pip/_vendor/msgpack/ext.py | 193 + .../pip/_vendor/msgpack/fallback.py | 1012 ++ .../pip/_vendor/packaging/__about__.py | 26 + .../pip/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 598 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 454 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7308 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4620 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2713 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9295 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3983 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 21535 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12198 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3583 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12933 bytes .../pip/_vendor/packaging/_manylinux.py | 301 + .../pip/_vendor/packaging/_musllinux.py | 136 + .../pip/_vendor/packaging/_structures.py | 61 + .../pip/_vendor/packaging/markers.py | 304 + .../pip/_vendor/packaging/requirements.py | 146 + .../pip/_vendor/packaging/specifiers.py | 802 ++ .../pip/_vendor/packaging/tags.py | 487 + .../pip/_vendor/packaging/utils.py | 136 + .../pip/_vendor/packaging/version.py | 504 + .../pip/_vendor/pep517/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 321 bytes .../pep517/__pycache__/build.cpython-310.pyc | Bin 0 -> 3604 bytes .../pep517/__pycache__/check.cpython-310.pyc | Bin 0 -> 4568 bytes .../__pycache__/colorlog.cpython-310.pyc | Bin 0 -> 2972 bytes .../pep517/__pycache__/compat.cpython-310.pyc | Bin 0 -> 1545 bytes .../__pycache__/dirtools.cpython-310.pyc | Bin 0 -> 1363 bytes .../__pycache__/envbuild.cpython-310.pyc | Bin 0 -> 4386 bytes .../pep517/__pycache__/meta.cpython-310.pyc | Bin 0 -> 2968 bytes .../__pycache__/wrappers.cpython-310.pyc | Bin 0 -> 12314 bytes .../site-packages/pip/_vendor/pep517/build.py | 127 + .../site-packages/pip/_vendor/pep517/check.py | 207 + .../pip/_vendor/pep517/colorlog.py | 115 + .../pip/_vendor/pep517/compat.py | 51 + .../pip/_vendor/pep517/dirtools.py | 44 + .../pip/_vendor/pep517/envbuild.py | 171 + .../pip/_vendor/pep517/in_process/__init__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 929 bytes .../__pycache__/_in_process.cpython-310.pyc | Bin 0 -> 10076 bytes .../_vendor/pep517/in_process/_in_process.py | 363 + .../site-packages/pip/_vendor/pep517/meta.py | 92 + .../pip/_vendor/pep517/wrappers.py | 375 + .../pip/_vendor/pkg_resources/__init__.py | 3296 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 99884 bytes .../__pycache__/py31compat.cpython-310.pyc | Bin 0 -> 668 bytes .../pip/_vendor/pkg_resources/py31compat.py | 23 + .../pip/_vendor/platformdirs/__init__.py | 331 + .../pip/_vendor/platformdirs/__main__.py | 46 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 10484 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 1244 bytes .../__pycache__/android.cpython-310.pyc | Bin 0 -> 4276 bytes .../__pycache__/api.cpython-310.pyc | Bin 0 -> 5210 bytes .../__pycache__/macos.cpython-310.pyc | Bin 0 -> 3198 bytes .../__pycache__/unix.cpython-310.pyc | Bin 0 -> 6899 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 303 bytes .../__pycache__/windows.cpython-310.pyc | Bin 0 -> 6442 bytes .../pip/_vendor/platformdirs/android.py | 119 + .../pip/_vendor/platformdirs/api.py | 156 + .../pip/_vendor/platformdirs/macos.py | 64 + .../pip/_vendor/platformdirs/unix.py | 181 + .../pip/_vendor/platformdirs/version.py | 4 + .../pip/_vendor/platformdirs/windows.py | 182 + .../pip/_vendor/progress/__init__.py | 189 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5738 bytes .../progress/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2703 bytes .../__pycache__/colors.cpython-310.pyc | Bin 0 -> 1496 bytes .../__pycache__/counter.cpython-310.pyc | Bin 0 -> 1567 bytes .../__pycache__/spinner.cpython-310.pyc | Bin 0 -> 1397 bytes .../site-packages/pip/_vendor/progress/bar.py | 93 + .../pip/_vendor/progress/colors.py | 79 + .../pip/_vendor/progress/counter.py | 47 + .../pip/_vendor/progress/spinner.py | 45 + .../pip/_vendor/pygments/__init__.py | 83 + .../pip/_vendor/pygments/__main__.py | 17 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3000 bytes .../__pycache__/__main__.cpython-310.pyc | Bin 0 -> 596 bytes .../__pycache__/cmdline.cpython-310.pyc | Bin 0 -> 15459 bytes .../__pycache__/console.cpython-310.pyc | Bin 0 -> 1891 bytes .../__pycache__/filter.cpython-310.pyc | Bin 0 -> 2662 bytes .../__pycache__/formatter.cpython-310.pyc | Bin 0 -> 3018 bytes .../__pycache__/lexer.cpython-310.pyc | Bin 0 -> 24372 bytes .../__pycache__/modeline.cpython-310.pyc | Bin 0 -> 1200 bytes .../__pycache__/plugin.cpython-310.pyc | Bin 0 -> 2052 bytes .../__pycache__/regexopt.cpython-310.pyc | Bin 0 -> 2964 bytes .../__pycache__/scanner.cpython-310.pyc | Bin 0 -> 3565 bytes .../__pycache__/sphinxext.cpython-310.pyc | Bin 0 -> 4550 bytes .../__pycache__/style.cpython-310.pyc | Bin 0 -> 4587 bytes .../__pycache__/token.cpython-310.pyc | Bin 0 -> 4659 bytes .../__pycache__/unistring.cpython-310.pyc | Bin 0 -> 31213 bytes .../pygments/__pycache__/util.cpython-310.pyc | Bin 0 -> 9170 bytes .../pip/_vendor/pygments/cmdline.py | 663 ++ .../pip/_vendor/pygments/console.py | 70 + .../pip/_vendor/pygments/filter.py | 71 + .../pip/_vendor/pygments/filters/__init__.py | 937 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 29521 bytes .../pip/_vendor/pygments/formatter.py | 94 + .../_vendor/pygments/formatters/__init__.py | 153 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4676 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 5543 bytes .../__pycache__/bbcode.cpython-310.pyc | Bin 0 -> 3093 bytes .../__pycache__/groff.cpython-310.pyc | Bin 0 -> 4366 bytes .../__pycache__/html.cpython-310.pyc | Bin 0 -> 29077 bytes .../__pycache__/img.cpython-310.pyc | Bin 0 -> 17505 bytes .../__pycache__/irc.cpython-310.pyc | Bin 0 -> 4596 bytes .../__pycache__/latex.cpython-310.pyc | Bin 0 -> 13502 bytes .../__pycache__/other.cpython-310.pyc | Bin 0 -> 4812 bytes .../__pycache__/pangomarkup.cpython-310.pyc | Bin 0 -> 2112 bytes .../__pycache__/rtf.cpython-310.pyc | Bin 0 -> 4142 bytes .../__pycache__/svg.cpython-310.pyc | Bin 0 -> 6340 bytes .../__pycache__/terminal.cpython-310.pyc | Bin 0 -> 4007 bytes .../__pycache__/terminal256.cpython-310.pyc | Bin 0 -> 9257 bytes .../_vendor/pygments/formatters/_mapping.py | 84 + .../pip/_vendor/pygments/formatters/bbcode.py | 108 + .../pip/_vendor/pygments/formatters/groff.py | 168 + .../pip/_vendor/pygments/formatters/html.py | 983 ++ .../pip/_vendor/pygments/formatters/img.py | 641 ++ .../pip/_vendor/pygments/formatters/irc.py | 179 + .../pip/_vendor/pygments/formatters/latex.py | 511 + .../pip/_vendor/pygments/formatters/other.py | 161 + .../pygments/formatters/pangomarkup.py | 83 + .../pip/_vendor/pygments/formatters/rtf.py | 146 + .../pip/_vendor/pygments/formatters/svg.py | 188 + .../_vendor/pygments/formatters/terminal.py | 127 + .../pygments/formatters/terminal256.py | 338 + .../pip/_vendor/pygments/lexer.py | 879 ++ .../pip/_vendor/pygments/lexers/__init__.py | 341 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9192 bytes .../__pycache__/_mapping.cpython-310.pyc | Bin 0 -> 58130 bytes .../lexers/__pycache__/python.cpython-310.pyc | Bin 0 -> 29391 bytes .../pip/_vendor/pygments/lexers/_mapping.py | 580 ++ .../pip/_vendor/pygments/lexers/python.py | 1188 +++ .../pip/_vendor/pygments/modeline.py | 43 + .../pip/_vendor/pygments/plugin.py | 69 + .../pip/_vendor/pygments/regexopt.py | 91 + .../pip/_vendor/pygments/scanner.py | 104 + .../pip/_vendor/pygments/sphinxext.py | 155 + .../pip/_vendor/pygments/style.py | 197 + .../pip/_vendor/pygments/styles/__init__.py | 93 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 3228 bytes .../pip/_vendor/pygments/token.py | 212 + .../pip/_vendor/pygments/unistring.py | 153 + .../pip/_vendor/pygments/util.py | 308 + .../pip/_vendor/pyparsing/__init__.py | 328 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 7133 bytes .../__pycache__/actions.cpython-310.pyc | Bin 0 -> 7190 bytes .../__pycache__/common.cpython-310.pyc | Bin 0 -> 10113 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 175243 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 9080 bytes .../__pycache__/helpers.cpython-310.pyc | Bin 0 -> 34775 bytes .../__pycache__/results.cpython-310.pyc | Bin 0 -> 24787 bytes .../__pycache__/testing.cpython-310.pyc | Bin 0 -> 12108 bytes .../__pycache__/unicode.cpython-310.pyc | Bin 0 -> 9822 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 8613 bytes .../pip/_vendor/pyparsing/actions.py | 207 + .../pip/_vendor/pyparsing/common.py | 424 + .../pip/_vendor/pyparsing/core.py | 5789 +++++++++++ .../pip/_vendor/pyparsing/diagram/__init__.py | 593 ++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 15653 bytes .../pip/_vendor/pyparsing/exceptions.py | 267 + .../pip/_vendor/pyparsing/helpers.py | 1069 +++ .../pip/_vendor/pyparsing/results.py | 760 ++ .../pip/_vendor/pyparsing/testing.py | 331 + .../pip/_vendor/pyparsing/unicode.py | 332 + .../pip/_vendor/pyparsing/util.py | 235 + .../pip/_vendor/requests/__init__.py | 154 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 4046 bytes .../__pycache__/__version__.cpython-310.pyc | Bin 0 -> 563 bytes .../_internal_utils.cpython-310.pyc | Bin 0 -> 1315 bytes .../__pycache__/adapters.cpython-310.pyc | Bin 0 -> 17051 bytes .../requests/__pycache__/api.cpython-310.pyc | Bin 0 -> 6662 bytes .../requests/__pycache__/auth.cpython-310.pyc | Bin 0 -> 8105 bytes .../__pycache__/certs.cpython-310.pyc | Bin 0 -> 647 bytes .../__pycache__/compat.cpython-310.pyc | Bin 0 -> 1682 bytes .../__pycache__/cookies.cpython-310.pyc | Bin 0 -> 18695 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 5256 bytes .../requests/__pycache__/help.cpython-310.pyc | Bin 0 -> 2915 bytes .../__pycache__/hooks.cpython-310.pyc | Bin 0 -> 1002 bytes .../__pycache__/models.cpython-310.pyc | Bin 0 -> 24321 bytes .../__pycache__/packages.cpython-310.pyc | Bin 0 -> 516 bytes .../__pycache__/sessions.cpython-310.pyc | Bin 0 -> 19629 bytes .../__pycache__/status_codes.cpython-310.pyc | Bin 0 -> 4679 bytes .../__pycache__/structures.cpython-310.pyc | Bin 0 -> 4461 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 24404 bytes .../pip/_vendor/requests/__version__.py | 14 + .../pip/_vendor/requests/_internal_utils.py | 42 + .../pip/_vendor/requests/adapters.py | 538 ++ .../site-packages/pip/_vendor/requests/api.py | 159 + .../pip/_vendor/requests/auth.py | 305 + .../pip/_vendor/requests/certs.py | 18 + .../pip/_vendor/requests/compat.py | 77 + .../pip/_vendor/requests/cookies.py | 549 ++ .../pip/_vendor/requests/exceptions.py | 133 + .../pip/_vendor/requests/help.py | 132 + .../pip/_vendor/requests/hooks.py | 34 + .../pip/_vendor/requests/models.py | 973 ++ .../pip/_vendor/requests/packages.py | 16 + .../pip/_vendor/requests/sessions.py | 771 ++ .../pip/_vendor/requests/status_codes.py | 123 + .../pip/_vendor/requests/structures.py | 105 + .../pip/_vendor/requests/utils.py | 1060 ++ .../pip/_vendor/resolvelib/__init__.py | 26 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 614 bytes .../__pycache__/providers.cpython-310.pyc | Bin 0 -> 6665 bytes .../__pycache__/reporters.cpython-310.pyc | Bin 0 -> 2585 bytes .../__pycache__/resolvers.cpython-310.pyc | Bin 0 -> 15138 bytes .../__pycache__/structs.cpython-310.pyc | Bin 0 -> 7171 bytes .../pip/_vendor/resolvelib/compat/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 209 bytes .../collections_abc.cpython-310.pyc | Bin 0 -> 385 bytes .../resolvelib/compat/collections_abc.py | 6 + .../pip/_vendor/resolvelib/providers.py | 133 + .../pip/_vendor/resolvelib/reporters.py | 43 + .../pip/_vendor/resolvelib/resolvers.py | 482 + .../pip/_vendor/resolvelib/structs.py | 165 + .../pip/_vendor/rich/__init__.py | 172 + .../pip/_vendor/rich/__main__.py | 280 + .../rich/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 5899 bytes .../rich/__pycache__/__main__.cpython-310.pyc | Bin 0 -> 7333 bytes .../__pycache__/_cell_widths.cpython-310.pyc | Bin 0 -> 7822 bytes .../__pycache__/_emoji_codes.cpython-310.pyc | Bin 0 -> 360062 bytes .../_emoji_replace.cpython-310.pyc | Bin 0 -> 1202 bytes .../__pycache__/_extension.cpython-310.pyc | Bin 0 -> 503 bytes .../rich/__pycache__/_inspect.cpython-310.pyc | Bin 0 -> 6620 bytes .../__pycache__/_log_render.cpython-310.pyc | Bin 0 -> 2648 bytes .../rich/__pycache__/_loop.cpython-310.pyc | Bin 0 -> 1300 bytes .../__pycache__/_lru_cache.cpython-310.pyc | Bin 0 -> 1583 bytes .../__pycache__/_palettes.cpython-310.pyc | Bin 0 -> 5105 bytes .../rich/__pycache__/_pick.cpython-310.pyc | Bin 0 -> 648 bytes .../rich/__pycache__/_ratio.cpython-310.pyc | Bin 0 -> 5165 bytes .../__pycache__/_spinners.cpython-310.pyc | Bin 0 -> 15221 bytes .../rich/__pycache__/_stack.cpython-310.pyc | Bin 0 -> 846 bytes .../rich/__pycache__/_timer.cpython-310.pyc | Bin 0 -> 695 bytes .../rich/__pycache__/_windows.cpython-310.pyc | Bin 0 -> 1886 bytes .../rich/__pycache__/_wrap.cpython-310.pyc | Bin 0 -> 1524 bytes .../rich/__pycache__/abc.cpython-310.pyc | Bin 0 -> 1322 bytes .../rich/__pycache__/align.cpython-310.pyc | Bin 0 -> 7976 bytes .../rich/__pycache__/ansi.cpython-310.pyc | Bin 0 -> 6025 bytes .../rich/__pycache__/bar.cpython-310.pyc | Bin 0 -> 2991 bytes .../rich/__pycache__/box.cpython-310.pyc | Bin 0 -> 7765 bytes .../rich/__pycache__/cells.cpython-310.pyc | Bin 0 -> 3507 bytes .../rich/__pycache__/color.cpython-310.pyc | Bin 0 -> 16763 bytes .../__pycache__/color_triplet.cpython-310.pyc | Bin 0 -> 1445 bytes .../rich/__pycache__/columns.cpython-310.pyc | Bin 0 -> 6205 bytes .../rich/__pycache__/console.cpython-310.pyc | Bin 0 -> 70450 bytes .../__pycache__/constrain.cpython-310.pyc | Bin 0 -> 1762 bytes .../__pycache__/containers.cpython-310.pyc | Bin 0 -> 6494 bytes .../rich/__pycache__/control.cpython-310.pyc | Bin 0 -> 6837 bytes .../default_styles.cpython-310.pyc | Bin 0 -> 6037 bytes .../rich/__pycache__/diagnose.cpython-310.pyc | Bin 0 -> 363 bytes .../rich/__pycache__/emoji.cpython-310.pyc | Bin 0 -> 3275 bytes .../rich/__pycache__/errors.cpython-310.pyc | Bin 0 -> 1535 bytes .../__pycache__/file_proxy.cpython-310.pyc | Bin 0 -> 2272 bytes .../rich/__pycache__/filesize.cpython-310.pyc | Bin 0 -> 2624 bytes .../__pycache__/highlighter.cpython-310.pyc | Bin 0 -> 5351 bytes .../rich/__pycache__/json.cpython-310.pyc | Bin 0 -> 4755 bytes .../rich/__pycache__/jupyter.cpython-310.pyc | Bin 0 -> 3834 bytes .../rich/__pycache__/layout.cpython-310.pyc | Bin 0 -> 14686 bytes .../rich/__pycache__/live.cpython-310.pyc | Bin 0 -> 11576 bytes .../__pycache__/live_render.cpython-310.pyc | Bin 0 -> 3410 bytes .../rich/__pycache__/logging.cpython-310.pyc | Bin 0 -> 9302 bytes .../rich/__pycache__/markup.cpython-310.pyc | Bin 0 -> 5921 bytes .../rich/__pycache__/measure.cpython-310.pyc | Bin 0 -> 5066 bytes .../rich/__pycache__/padding.cpython-310.pyc | Bin 0 -> 4490 bytes .../rich/__pycache__/pager.cpython-310.pyc | Bin 0 -> 1503 bytes .../rich/__pycache__/palette.cpython-310.pyc | Bin 0 -> 3716 bytes .../rich/__pycache__/panel.cpython-310.pyc | Bin 0 -> 6399 bytes .../rich/__pycache__/pretty.cpython-310.pyc | Bin 0 -> 25111 bytes .../rich/__pycache__/progress.cpython-310.pyc | Bin 0 -> 33339 bytes .../__pycache__/progress_bar.cpython-310.pyc | Bin 0 -> 6715 bytes .../rich/__pycache__/prompt.cpython-310.pyc | Bin 0 -> 11307 bytes .../rich/__pycache__/protocol.cpython-310.pyc | Bin 0 -> 1379 bytes .../rich/__pycache__/region.cpython-310.pyc | Bin 0 -> 535 bytes .../rich/__pycache__/repr.cpython-310.pyc | Bin 0 -> 4048 bytes .../rich/__pycache__/rule.cpython-310.pyc | Bin 0 -> 3745 bytes .../rich/__pycache__/scope.cpython-310.pyc | Bin 0 -> 2996 bytes .../rich/__pycache__/screen.cpython-310.pyc | Bin 0 -> 1887 bytes .../rich/__pycache__/segment.cpython-310.pyc | Bin 0 -> 20577 bytes .../rich/__pycache__/spinner.cpython-310.pyc | Bin 0 -> 4407 bytes .../rich/__pycache__/status.cpython-310.pyc | Bin 0 -> 4601 bytes .../rich/__pycache__/style.cpython-310.pyc | Bin 0 -> 20530 bytes .../rich/__pycache__/styled.cpython-310.pyc | Bin 0 -> 1771 bytes .../rich/__pycache__/syntax.cpython-310.pyc | Bin 0 -> 19044 bytes .../rich/__pycache__/table.cpython-310.pyc | Bin 0 -> 26982 bytes .../rich/__pycache__/tabulate.cpython-310.pyc | Bin 0 -> 1764 bytes .../terminal_theme.cpython-310.pyc | Bin 0 -> 1728 bytes .../rich/__pycache__/text.cpython-310.pyc | Bin 0 -> 39292 bytes .../rich/__pycache__/theme.cpython-310.pyc | Bin 0 -> 4708 bytes .../rich/__pycache__/themes.cpython-310.pyc | Bin 0 -> 301 bytes .../__pycache__/traceback.cpython-310.pyc | Bin 0 -> 19545 bytes .../rich/__pycache__/tree.cpython-310.pyc | Bin 0 -> 7325 bytes .../pip/_vendor/rich/_cell_widths.py | 451 + .../pip/_vendor/rich/_emoji_codes.py | 3610 +++++++ .../pip/_vendor/rich/_emoji_replace.py | 32 + .../pip/_vendor/rich/_extension.py | 10 + .../pip/_vendor/rich/_inspect.py | 210 + .../pip/_vendor/rich/_log_render.py | 94 + .../site-packages/pip/_vendor/rich/_loop.py | 43 + .../pip/_vendor/rich/_lru_cache.py | 34 + .../pip/_vendor/rich/_palettes.py | 309 + .../site-packages/pip/_vendor/rich/_pick.py | 17 + .../site-packages/pip/_vendor/rich/_ratio.py | 160 + .../pip/_vendor/rich/_spinners.py | 848 ++ .../site-packages/pip/_vendor/rich/_stack.py | 16 + .../site-packages/pip/_vendor/rich/_timer.py | 19 + .../pip/_vendor/rich/_windows.py | 72 + .../site-packages/pip/_vendor/rich/_wrap.py | 55 + .../site-packages/pip/_vendor/rich/abc.py | 33 + .../site-packages/pip/_vendor/rich/align.py | 312 + .../site-packages/pip/_vendor/rich/ansi.py | 228 + .../site-packages/pip/_vendor/rich/bar.py | 94 + .../site-packages/pip/_vendor/rich/box.py | 483 + .../site-packages/pip/_vendor/rich/cells.py | 147 + .../site-packages/pip/_vendor/rich/color.py | 581 ++ .../pip/_vendor/rich/color_triplet.py | 38 + .../site-packages/pip/_vendor/rich/columns.py | 187 + .../site-packages/pip/_vendor/rich/console.py | 2211 +++++ .../pip/_vendor/rich/constrain.py | 37 + .../pip/_vendor/rich/containers.py | 167 + .../site-packages/pip/_vendor/rich/control.py | 175 + .../pip/_vendor/rich/default_styles.py | 183 + .../pip/_vendor/rich/diagnose.py | 6 + .../site-packages/pip/_vendor/rich/emoji.py | 96 + .../site-packages/pip/_vendor/rich/errors.py | 34 + .../pip/_vendor/rich/file_proxy.py | 54 + .../pip/_vendor/rich/filesize.py | 89 + .../pip/_vendor/rich/highlighter.py | 147 + .../site-packages/pip/_vendor/rich/json.py | 140 + .../site-packages/pip/_vendor/rich/jupyter.py | 92 + .../site-packages/pip/_vendor/rich/layout.py | 444 + .../site-packages/pip/_vendor/rich/live.py | 365 + .../pip/_vendor/rich/live_render.py | 113 + .../site-packages/pip/_vendor/rich/logging.py | 268 + .../site-packages/pip/_vendor/rich/markup.py | 244 + .../site-packages/pip/_vendor/rich/measure.py | 149 + .../site-packages/pip/_vendor/rich/padding.py | 141 + .../site-packages/pip/_vendor/rich/pager.py | 34 + .../site-packages/pip/_vendor/rich/palette.py | 100 + .../site-packages/pip/_vendor/rich/panel.py | 250 + .../site-packages/pip/_vendor/rich/pretty.py | 903 ++ .../pip/_vendor/rich/progress.py | 1036 ++ .../pip/_vendor/rich/progress_bar.py | 216 + .../site-packages/pip/_vendor/rich/prompt.py | 376 + .../pip/_vendor/rich/protocol.py | 42 + .../site-packages/pip/_vendor/rich/region.py | 10 + .../site-packages/pip/_vendor/rich/repr.py | 151 + .../site-packages/pip/_vendor/rich/rule.py | 115 + .../site-packages/pip/_vendor/rich/scope.py | 86 + .../site-packages/pip/_vendor/rich/screen.py | 54 + .../site-packages/pip/_vendor/rich/segment.py | 720 ++ .../site-packages/pip/_vendor/rich/spinner.py | 134 + .../site-packages/pip/_vendor/rich/status.py | 132 + .../site-packages/pip/_vendor/rich/style.py | 785 ++ .../site-packages/pip/_vendor/rich/styled.py | 42 + .../site-packages/pip/_vendor/rich/syntax.py | 735 ++ .../site-packages/pip/_vendor/rich/table.py | 968 ++ .../pip/_vendor/rich/tabulate.py | 51 + .../pip/_vendor/rich/terminal_theme.py | 55 + .../site-packages/pip/_vendor/rich/text.py | 1282 +++ .../site-packages/pip/_vendor/rich/theme.py | 112 + .../site-packages/pip/_vendor/rich/themes.py | 5 + .../pip/_vendor/rich/traceback.py | 678 ++ .../site-packages/pip/_vendor/rich/tree.py | 249 + .../site-packages/pip/_vendor/six.py | 998 ++ .../pip/_vendor/tenacity/__init__.py | 517 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 16382 bytes .../__pycache__/_asyncio.cpython-310.pyc | Bin 0 -> 2622 bytes .../__pycache__/_utils.cpython-310.pyc | Bin 0 -> 1235 bytes .../__pycache__/after.cpython-310.pyc | Bin 0 -> 1239 bytes .../__pycache__/before.cpython-310.pyc | Bin 0 -> 1117 bytes .../__pycache__/before_sleep.cpython-310.pyc | Bin 0 -> 1419 bytes .../tenacity/__pycache__/nap.cpython-310.pyc | Bin 0 -> 1207 bytes .../__pycache__/retry.cpython-310.pyc | Bin 0 -> 8437 bytes .../tenacity/__pycache__/stop.cpython-310.pyc | Bin 0 -> 4025 bytes .../__pycache__/tornadoweb.cpython-310.pyc | Bin 0 -> 1772 bytes .../tenacity/__pycache__/wait.cpython-310.pyc | Bin 0 -> 7969 bytes .../pip/_vendor/tenacity/_asyncio.py | 92 + .../pip/_vendor/tenacity/_utils.py | 68 + .../pip/_vendor/tenacity/after.py | 46 + .../pip/_vendor/tenacity/before.py | 41 + .../pip/_vendor/tenacity/before_sleep.py | 58 + .../site-packages/pip/_vendor/tenacity/nap.py | 43 + .../pip/_vendor/tenacity/retry.py | 213 + .../pip/_vendor/tenacity/stop.py | 96 + .../pip/_vendor/tenacity/tornadoweb.py | 59 + .../pip/_vendor/tenacity/wait.py | 191 + .../pip/_vendor/tomli/__init__.py | 6 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 387 bytes .../tomli/__pycache__/_parser.cpython-310.pyc | Bin 0 -> 16341 bytes .../tomli/__pycache__/_re.cpython-310.pyc | Bin 0 -> 2431 bytes .../pip/_vendor/tomli/_parser.py | 703 ++ .../site-packages/pip/_vendor/tomli/_re.py | 83 + .../pip/_vendor/typing_extensions.py | 2296 +++++ .../pip/_vendor/urllib3/__init__.py | 85 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2197 bytes .../__pycache__/_collections.cpython-310.pyc | Bin 0 -> 11362 bytes .../__pycache__/_version.cpython-310.pyc | Bin 0 -> 221 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 13644 bytes .../connectionpool.cpython-310.pyc | Bin 0 -> 25486 bytes .../__pycache__/exceptions.cpython-310.pyc | Bin 0 -> 11002 bytes .../__pycache__/fields.cpython-310.pyc | Bin 0 -> 8191 bytes .../__pycache__/filepost.cpython-310.pyc | Bin 0 -> 2758 bytes .../__pycache__/poolmanager.cpython-310.pyc | Bin 0 -> 15306 bytes .../__pycache__/request.cpython-310.pyc | Bin 0 -> 5634 bytes .../__pycache__/response.cpython-310.pyc | Bin 0 -> 20925 bytes .../pip/_vendor/urllib3/_collections.py | 355 + .../pip/_vendor/urllib3/_version.py | 2 + .../pip/_vendor/urllib3/connection.py | 569 ++ .../pip/_vendor/urllib3/connectionpool.py | 1113 +++ .../pip/_vendor/urllib3/contrib/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 207 bytes .../_appengine_environ.cpython-310.pyc | Bin 0 -> 1387 bytes .../__pycache__/appengine.cpython-310.pyc | Bin 0 -> 8203 bytes .../__pycache__/ntlmpool.cpython-310.pyc | Bin 0 -> 3642 bytes .../__pycache__/pyopenssl.cpython-310.pyc | Bin 0 -> 15544 bytes .../securetransport.cpython-310.pyc | Bin 0 -> 21949 bytes .../contrib/__pycache__/socks.cpython-310.pyc | Bin 0 -> 5609 bytes .../urllib3/contrib/_appengine_environ.py | 36 + .../contrib/_securetransport/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 224 bytes .../__pycache__/bindings.cpython-310.pyc | Bin 0 -> 10720 bytes .../__pycache__/low_level.cpython-310.pyc | Bin 0 -> 9107 bytes .../contrib/_securetransport/bindings.py | 519 + .../contrib/_securetransport/low_level.py | 397 + .../pip/_vendor/urllib3/contrib/appengine.py | 314 + .../pip/_vendor/urllib3/contrib/ntlmpool.py | 130 + .../pip/_vendor/urllib3/contrib/pyopenssl.py | 511 + .../urllib3/contrib/securetransport.py | 922 ++ .../pip/_vendor/urllib3/contrib/socks.py | 216 + .../pip/_vendor/urllib3/exceptions.py | 323 + .../pip/_vendor/urllib3/fields.py | 274 + .../pip/_vendor/urllib3/filepost.py | 98 + .../pip/_vendor/urllib3/packages/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 208 bytes .../packages/__pycache__/six.cpython-310.pyc | Bin 0 -> 27662 bytes .../urllib3/packages/backports/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 218 bytes .../__pycache__/makefile.cpython-310.pyc | Bin 0 -> 1318 bytes .../urllib3/packages/backports/makefile.py | 51 + .../pip/_vendor/urllib3/packages/six.py | 1077 +++ .../pip/_vendor/urllib3/poolmanager.py | 539 ++ .../pip/_vendor/urllib3/request.py | 170 + .../pip/_vendor/urllib3/response.py | 821 ++ .../pip/_vendor/urllib3/util/__init__.py | 49 + .../util/__pycache__/__init__.cpython-310.pyc | Bin 0 -> 1117 bytes .../__pycache__/connection.cpython-310.pyc | Bin 0 -> 3445 bytes .../util/__pycache__/proxy.cpython-310.pyc | Bin 0 -> 1350 bytes .../util/__pycache__/queue.cpython-310.pyc | Bin 0 -> 1072 bytes .../util/__pycache__/request.cpython-310.pyc | Bin 0 -> 3480 bytes .../util/__pycache__/response.cpython-310.pyc | Bin 0 -> 2365 bytes .../util/__pycache__/retry.cpython-310.pyc | Bin 0 -> 16160 bytes .../util/__pycache__/ssl_.cpython-310.pyc | Bin 0 -> 11317 bytes .../ssl_match_hostname.cpython-310.pyc | Bin 0 -> 3289 bytes .../__pycache__/ssltransport.cpython-310.pyc | Bin 0 -> 7407 bytes .../util/__pycache__/timeout.cpython-310.pyc | Bin 0 -> 8941 bytes .../util/__pycache__/url.cpython-310.pyc | Bin 0 -> 10686 bytes .../util/__pycache__/wait.cpython-310.pyc | Bin 0 -> 3101 bytes .../pip/_vendor/urllib3/util/connection.py | 149 + .../pip/_vendor/urllib3/util/proxy.py | 57 + .../pip/_vendor/urllib3/util/queue.py | 22 + .../pip/_vendor/urllib3/util/request.py | 143 + .../pip/_vendor/urllib3/util/response.py | 107 + .../pip/_vendor/urllib3/util/retry.py | 620 ++ .../pip/_vendor/urllib3/util/ssl_.py | 495 + .../urllib3/util/ssl_match_hostname.py | 161 + .../pip/_vendor/urllib3/util/ssltransport.py | 221 + .../pip/_vendor/urllib3/util/timeout.py | 268 + .../pip/_vendor/urllib3/util/url.py | 432 + .../pip/_vendor/urllib3/util/wait.py | 153 + .../site-packages/pip/_vendor/vendor.txt | 25 + .../pip/_vendor/webencodings/__init__.py | 342 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 9754 bytes .../__pycache__/labels.cpython-310.pyc | Bin 0 -> 5244 bytes .../__pycache__/mklabels.cpython-310.pyc | Bin 0 -> 1949 bytes .../__pycache__/tests.cpython-310.pyc | Bin 0 -> 5051 bytes .../x_user_defined.cpython-310.pyc | Bin 0 -> 2600 bytes .../pip/_vendor/webencodings/labels.py | 231 + .../pip/_vendor/webencodings/mklabels.py | 59 + .../pip/_vendor/webencodings/tests.py | 153 + .../_vendor/webencodings/x_user_defined.py | 325 + .../lib/python3.10/site-packages/pip/py.typed | 4 + .../site-packages/pkg_resources/__init__.py | 3303 +++++++ .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 100609 bytes .../pkg_resources/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 201 bytes .../__pycache__/appdirs.cpython-310.pyc | Bin 0 -> 20262 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 198754 bytes .../pkg_resources/_vendor/appdirs.py | 608 ++ .../_vendor/packaging/__about__.py | 26 + .../_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 608 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 464 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7318 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4630 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2988 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9314 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 4002 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 22206 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12232 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3593 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12943 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 67 + .../_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 828 ++ .../pkg_resources/_vendor/packaging/tags.py | 484 + .../pkg_resources/_vendor/packaging/utils.py | 136 + .../_vendor/packaging/version.py | 504 + .../pkg_resources/_vendor/pyparsing.py | 5742 +++++++++++ .../pkg_resources/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2909 bytes .../__pycache__/setup.cpython-310.pyc | Bin 0 -> 329 bytes .../data/my-test-package-source/setup.py | 6 + .../setuptools-59.6.0.dist-info/INSTALLER | 1 + .../setuptools-59.6.0.dist-info/LICENSE | 19 + .../setuptools-59.6.0.dist-info/METADATA | 124 + .../setuptools-59.6.0.dist-info/RECORD | 298 + .../setuptools-59.6.0.dist-info/REQUESTED | 0 .../setuptools-59.6.0.dist-info/WHEEL | 5 + .../entry_points.txt | 56 + .../setuptools-59.6.0.dist-info/top_level.txt | 4 + .../site-packages/setuptools/__init__.py | 242 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 8605 bytes .../_deprecation_warning.cpython-310.pyc | Bin 0 -> 562 bytes .../__pycache__/_imp.cpython-310.pyc | Bin 0 -> 2088 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 5858 bytes .../__pycache__/build_meta.cpython-310.pyc | Bin 0 -> 9472 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 20941 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 869 bytes .../__pycache__/depends.cpython-310.pyc | Bin 0 -> 5308 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 36349 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 1514 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 1958 bytes .../__pycache__/glob.cpython-310.pyc | Bin 0 -> 3747 bytes .../__pycache__/installer.cpython-310.pyc | Bin 0 -> 2993 bytes .../__pycache__/launch.cpython-310.pyc | Bin 0 -> 919 bytes .../__pycache__/monkey.cpython-310.pyc | Bin 0 -> 4647 bytes .../__pycache__/msvc.cpython-310.pyc | Bin 0 -> 42651 bytes .../__pycache__/namespaces.cpython-310.pyc | Bin 0 -> 3630 bytes .../__pycache__/package_index.cpython-310.pyc | Bin 0 -> 32743 bytes .../__pycache__/py34compat.cpython-310.pyc | Bin 0 -> 494 bytes .../__pycache__/sandbox.cpython-310.pyc | Bin 0 -> 15770 bytes .../__pycache__/unicode_utils.cpython-310.pyc | Bin 0 -> 1124 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 336 bytes .../__pycache__/wheel.cpython-310.pyc | Bin 0 -> 7362 bytes .../windows_support.cpython-310.pyc | Bin 0 -> 1037 bytes .../setuptools/_deprecation_warning.py | 7 + .../setuptools/_distutils/__init__.py | 24 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 570 bytes .../__pycache__/_msvccompiler.cpython-310.pyc | Bin 0 -> 13847 bytes .../__pycache__/archive_util.cpython-310.pyc | Bin 0 -> 6575 bytes .../__pycache__/bcppcompiler.cpython-310.pyc | Bin 0 -> 6562 bytes .../__pycache__/ccompiler.cpython-310.pyc | Bin 0 -> 33319 bytes .../__pycache__/cmd.cpython-310.pyc | Bin 0 -> 13962 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 3601 bytes .../__pycache__/core.cpython-310.pyc | Bin 0 -> 7102 bytes .../cygwinccompiler.cpython-310.pyc | Bin 0 -> 9009 bytes .../__pycache__/debug.cpython-310.pyc | Bin 0 -> 264 bytes .../__pycache__/dep_util.cpython-310.pyc | Bin 0 -> 2785 bytes .../__pycache__/dir_util.cpython-310.pyc | Bin 0 -> 5896 bytes .../__pycache__/dist.cpython-310.pyc | Bin 0 -> 34061 bytes .../__pycache__/errors.cpython-310.pyc | Bin 0 -> 5006 bytes .../__pycache__/extension.cpython-310.pyc | Bin 0 -> 7020 bytes .../__pycache__/fancy_getopt.cpython-310.pyc | Bin 0 -> 10644 bytes .../__pycache__/file_util.cpython-310.pyc | Bin 0 -> 5990 bytes .../__pycache__/filelist.cpython-310.pyc | Bin 0 -> 10836 bytes .../__pycache__/log.cpython-310.pyc | Bin 0 -> 2321 bytes .../__pycache__/msvc9compiler.cpython-310.pyc | Bin 0 -> 17576 bytes .../__pycache__/msvccompiler.cpython-310.pyc | Bin 0 -> 14795 bytes .../__pycache__/py35compat.cpython-310.pyc | Bin 0 -> 640 bytes .../__pycache__/py38compat.cpython-310.pyc | Bin 0 -> 437 bytes .../__pycache__/spawn.cpython-310.pyc | Bin 0 -> 2907 bytes .../__pycache__/sysconfig.cpython-310.pyc | Bin 0 -> 12888 bytes .../__pycache__/text_file.cpython-310.pyc | Bin 0 -> 8483 bytes .../__pycache__/unixccompiler.cpython-310.pyc | Bin 0 -> 6815 bytes .../__pycache__/util.cpython-310.pyc | Bin 0 -> 14756 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 7857 bytes .../versionpredicate.cpython-310.pyc | Bin 0 -> 5350 bytes .../setuptools/_distutils/_msvccompiler.py | 561 ++ .../setuptools/_distutils/archive_util.py | 256 + .../setuptools/_distutils/bcppcompiler.py | 393 + .../setuptools/_distutils/ccompiler.py | 1123 +++ .../setuptools/_distutils/cmd.py | 403 + .../setuptools/_distutils/command/__init__.py | 31 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 543 bytes .../command/__pycache__/bdist.cpython-310.pyc | Bin 0 -> 3677 bytes .../__pycache__/bdist_dumb.cpython-310.pyc | Bin 0 -> 3656 bytes .../__pycache__/bdist_msi.cpython-310.pyc | Bin 0 -> 19732 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 12300 bytes .../__pycache__/bdist_wininst.cpython-310.pyc | Bin 0 -> 8643 bytes .../command/__pycache__/build.cpython-310.pyc | Bin 0 -> 3905 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 4882 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 16230 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 9901 bytes .../__pycache__/build_scripts.cpython-310.pyc | Bin 0 -> 4024 bytes .../command/__pycache__/check.cpython-310.pyc | Bin 0 -> 5021 bytes .../command/__pycache__/clean.cpython-310.pyc | Bin 0 -> 2160 bytes .../__pycache__/config.cpython-310.pyc | Bin 0 -> 10342 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 15280 bytes .../__pycache__/install_data.cpython-310.pyc | Bin 0 -> 2359 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 3324 bytes .../install_headers.cpython-310.pyc | Bin 0 -> 1782 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5184 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2211 bytes .../__pycache__/py37compat.cpython-310.pyc | Bin 0 -> 1052 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 8695 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 14511 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 5387 bytes .../setuptools/_distutils/command/bdist.py | 143 + .../_distutils/command/bdist_dumb.py | 123 + .../_distutils/command/bdist_msi.py | 749 ++ .../_distutils/command/bdist_rpm.py | 579 ++ .../_distutils/command/bdist_wininst.py | 377 + .../setuptools/_distutils/command/build.py | 157 + .../_distutils/command/build_clib.py | 209 + .../_distutils/command/build_ext.py | 755 ++ .../setuptools/_distutils/command/build_py.py | 392 + .../_distutils/command/build_scripts.py | 152 + .../setuptools/_distutils/command/check.py | 148 + .../setuptools/_distutils/command/clean.py | 76 + .../setuptools/_distutils/command/config.py | 344 + .../setuptools/_distutils/command/install.py | 721 ++ .../_distutils/command/install_data.py | 79 + .../_distutils/command/install_egg_info.py | 84 + .../_distutils/command/install_headers.py | 47 + .../_distutils/command/install_lib.py | 217 + .../_distutils/command/install_scripts.py | 60 + .../_distutils/command/py37compat.py | 30 + .../setuptools/_distutils/command/register.py | 304 + .../setuptools/_distutils/command/sdist.py | 494 + .../setuptools/_distutils/command/upload.py | 214 + .../setuptools/_distutils/config.py | 130 + .../setuptools/_distutils/core.py | 249 + .../setuptools/_distutils/cygwinccompiler.py | 425 + .../setuptools/_distutils/debug.py | 5 + .../setuptools/_distutils/dep_util.py | 92 + .../setuptools/_distutils/dir_util.py | 210 + .../setuptools/_distutils/dist.py | 1257 +++ .../setuptools/_distutils/errors.py | 97 + .../setuptools/_distutils/extension.py | 240 + .../setuptools/_distutils/fancy_getopt.py | 457 + .../setuptools/_distutils/file_util.py | 238 + .../setuptools/_distutils/filelist.py | 355 + .../setuptools/_distutils/log.py | 77 + .../setuptools/_distutils/msvc9compiler.py | 788 ++ .../setuptools/_distutils/msvccompiler.py | 643 ++ .../setuptools/_distutils/py35compat.py | 19 + .../setuptools/_distutils/py38compat.py | 7 + .../setuptools/_distutils/spawn.py | 106 + .../setuptools/_distutils/sysconfig.py | 601 ++ .../setuptools/_distutils/text_file.py | 286 + .../setuptools/_distutils/unixccompiler.py | 325 + .../setuptools/_distutils/util.py | 548 ++ .../setuptools/_distutils/version.py | 363 + .../setuptools/_distutils/versionpredicate.py | 169 + .../site-packages/setuptools/_imp.py | 82 + .../setuptools/_vendor/__init__.py | 0 .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 198 bytes .../__pycache__/ordered_set.cpython-310.pyc | Bin 0 -> 16334 bytes .../__pycache__/pyparsing.cpython-310.pyc | Bin 0 -> 198751 bytes .../_vendor/more_itertools/__init__.py | 4 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 279 bytes .../__pycache__/more.cpython-310.pyc | Bin 0 -> 109997 bytes .../__pycache__/recipes.cpython-310.pyc | Bin 0 -> 17979 bytes .../setuptools/_vendor/more_itertools/more.py | 3825 ++++++++ .../_vendor/more_itertools/recipes.py | 620 ++ .../setuptools/_vendor/ordered_set.py | 488 + .../setuptools/_vendor/packaging/__about__.py | 26 + .../setuptools/_vendor/packaging/__init__.py | 25 + .../__pycache__/__about__.cpython-310.pyc | Bin 0 -> 605 bytes .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 461 bytes .../__pycache__/_manylinux.cpython-310.pyc | Bin 0 -> 7315 bytes .../__pycache__/_musllinux.cpython-310.pyc | Bin 0 -> 4627 bytes .../__pycache__/_structures.cpython-310.pyc | Bin 0 -> 2985 bytes .../__pycache__/markers.cpython-310.pyc | Bin 0 -> 9308 bytes .../__pycache__/requirements.cpython-310.pyc | Bin 0 -> 3996 bytes .../__pycache__/specifiers.cpython-310.pyc | Bin 0 -> 22203 bytes .../__pycache__/tags.cpython-310.pyc | Bin 0 -> 12229 bytes .../__pycache__/utils.cpython-310.pyc | Bin 0 -> 3590 bytes .../__pycache__/version.cpython-310.pyc | Bin 0 -> 12940 bytes .../_vendor/packaging/_manylinux.py | 301 + .../_vendor/packaging/_musllinux.py | 136 + .../_vendor/packaging/_structures.py | 67 + .../setuptools/_vendor/packaging/markers.py | 304 + .../_vendor/packaging/requirements.py | 146 + .../_vendor/packaging/specifiers.py | 828 ++ .../setuptools/_vendor/packaging/tags.py | 484 + .../setuptools/_vendor/packaging/utils.py | 136 + .../setuptools/_vendor/packaging/version.py | 504 + .../setuptools/_vendor/pyparsing.py | 5742 +++++++++++ .../site-packages/setuptools/archive_util.py | 205 + .../site-packages/setuptools/build_meta.py | 290 + .../site-packages/setuptools/cli-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/cli-64.exe | Bin 0 -> 74752 bytes .../site-packages/setuptools/cli-arm64.exe | Bin 0 -> 137216 bytes .../site-packages/setuptools/cli.exe | Bin 0 -> 65536 bytes .../setuptools/command/__init__.py | 8 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 387 bytes .../command/__pycache__/alias.cpython-310.pyc | Bin 0 -> 2389 bytes .../__pycache__/bdist_egg.cpython-310.pyc | Bin 0 -> 13115 bytes .../__pycache__/bdist_rpm.cpython-310.pyc | Bin 0 -> 1602 bytes .../__pycache__/build_clib.cpython-310.pyc | Bin 0 -> 2476 bytes .../__pycache__/build_ext.cpython-310.pyc | Bin 0 -> 9905 bytes .../__pycache__/build_py.cpython-310.pyc | Bin 0 -> 8278 bytes .../__pycache__/develop.cpython-310.pyc | Bin 0 -> 6165 bytes .../__pycache__/dist_info.cpython-310.pyc | Bin 0 -> 1407 bytes .../__pycache__/easy_install.cpython-310.pyc | Bin 0 -> 65184 bytes .../__pycache__/egg_info.cpython-310.pyc | Bin 0 -> 22763 bytes .../__pycache__/install.cpython-310.pyc | Bin 0 -> 4213 bytes .../install_egg_info.cpython-310.pyc | Bin 0 -> 2938 bytes .../__pycache__/install_lib.cpython-310.pyc | Bin 0 -> 5153 bytes .../install_scripts.cpython-310.pyc | Bin 0 -> 2442 bytes .../__pycache__/py36compat.cpython-310.pyc | Bin 0 -> 4549 bytes .../__pycache__/register.cpython-310.pyc | Bin 0 -> 853 bytes .../__pycache__/rotate.cpython-310.pyc | Bin 0 -> 2520 bytes .../__pycache__/saveopts.cpython-310.pyc | Bin 0 -> 939 bytes .../command/__pycache__/sdist.cpython-310.pyc | Bin 0 -> 6968 bytes .../__pycache__/setopt.cpython-310.pyc | Bin 0 -> 4701 bytes .../command/__pycache__/test.cpython-310.pyc | Bin 0 -> 8145 bytes .../__pycache__/upload.cpython-310.pyc | Bin 0 -> 826 bytes .../__pycache__/upload_docs.cpython-310.pyc | Bin 0 -> 6195 bytes .../site-packages/setuptools/command/alias.py | 78 + .../setuptools/command/bdist_egg.py | 456 + .../setuptools/command/bdist_rpm.py | 40 + .../setuptools/command/build_clib.py | 101 + .../setuptools/command/build_ext.py | 328 + .../setuptools/command/build_py.py | 242 + .../setuptools/command/develop.py | 193 + .../setuptools/command/dist_info.py | 36 + .../setuptools/command/easy_install.py | 2354 +++++ .../setuptools/command/egg_info.py | 755 ++ .../setuptools/command/install.py | 132 + .../setuptools/command/install_egg_info.py | 82 + .../setuptools/command/install_lib.py | 148 + .../setuptools/command/install_scripts.py | 69 + .../setuptools/command/launcher manifest.xml | 15 + .../setuptools/command/py36compat.py | 134 + .../setuptools/command/register.py | 18 + .../setuptools/command/rotate.py | 64 + .../setuptools/command/saveopts.py | 22 + .../site-packages/setuptools/command/sdist.py | 196 + .../setuptools/command/setopt.py | 149 + .../site-packages/setuptools/command/test.py | 252 + .../setuptools/command/upload.py | 17 + .../setuptools/command/upload_docs.py | 202 + .../site-packages/setuptools/config.py | 751 ++ .../site-packages/setuptools/dep_util.py | 25 + .../site-packages/setuptools/depends.py | 176 + .../site-packages/setuptools/dist.py | 1156 +++ .../site-packages/setuptools/errors.py | 40 + .../site-packages/setuptools/extension.py | 55 + .../setuptools/extern/__init__.py | 73 + .../__pycache__/__init__.cpython-310.pyc | Bin 0 -> 2948 bytes .../site-packages/setuptools/glob.py | 167 + .../site-packages/setuptools/gui-32.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/gui-64.exe | Bin 0 -> 75264 bytes .../site-packages/setuptools/gui-arm64.exe | Bin 0 -> 137728 bytes .../site-packages/setuptools/gui.exe | Bin 0 -> 65536 bytes .../site-packages/setuptools/installer.py | 104 + .../site-packages/setuptools/launch.py | 36 + .../site-packages/setuptools/monkey.py | 177 + .../site-packages/setuptools/msvc.py | 1805 ++++ .../site-packages/setuptools/namespaces.py | 107 + .../site-packages/setuptools/package_index.py | 1127 +++ .../site-packages/setuptools/py34compat.py | 13 + .../site-packages/setuptools/sandbox.py | 530 + .../setuptools/script (dev).tmpl | 6 + .../site-packages/setuptools/script.tmpl | 3 + .../site-packages/setuptools/unicode_utils.py | 42 + .../site-packages/setuptools/version.py | 6 + .../site-packages/setuptools/wheel.py | 213 + .../setuptools/windows_support.py | 29 + python=3.6/lib64 | 1 + python=3.6/pyvenv.cfg | 3 + 1348 files changed, 246793 insertions(+), 6 deletions(-) create mode 100644 .vscode/settings.json create mode 100644 __pycache__/Quadrotor.cpython-36.pyc create mode 100644 python=3.6/bin/Activate.ps1 create mode 100644 python=3.6/bin/activate create mode 100644 python=3.6/bin/activate.csh create mode 100644 python=3.6/bin/activate.fish create mode 100755 python=3.6/bin/pip create mode 100755 python=3.6/bin/pip3 create mode 100755 python=3.6/bin/pip3.10 create mode 120000 python=3.6/bin/python create mode 120000 python=3.6/bin/python3 create mode 120000 python=3.6/bin/python3.10 create mode 100644 python=3.6/lib/python3.10/site-packages/_distutils_hack/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/_distutils_hack/__pycache__/override.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/_distutils_hack/override.py create mode 100644 python=3.6/lib/python3.10/site-packages/distutils-precedence.pth create mode 100644 python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/INSTALLER create mode 100644 python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/LICENSE.txt create mode 100644 python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/METADATA create mode 100644 python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD create mode 100644 python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED create mode 100644 python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL create mode 100644 python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt create mode 100644 python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt create mode 100644 python=3.6/lib/python3.10/site-packages/pip/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/__main__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/__pycache__/__main__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/configuration.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/main.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/build_env.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cache.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/base_command.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/command_context.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/main.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/parser.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/req_command.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/spinners.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/cache.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/index.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/install.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/show.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/cache.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/check.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/completion.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/configuration.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/debug.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/download.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/freeze.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/hash.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/help.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/index.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/install.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/list.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/search.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/show.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/commands/wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/configuration.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/installed.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/exceptions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/index/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/index/collector.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/index/package_finder.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/index/sources.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/locations/base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/main.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/link.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/target_python.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/candidate.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/direct_url.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/format_control.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/index.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/link.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/scheme.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/search_scope.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/target_python.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/models/wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/cache.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/auth.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/cache.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/download.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/session.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/check.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/freeze.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/operations/prepare.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/pyproject.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/constructors.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_set.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/constructors.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_file.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_install.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_set.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/_log.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/misc.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/models.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/urls.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/_log.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/datetime.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/encoding.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/glibc.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/hashes.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/logging.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/misc.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/models.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/packaging.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/urls.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/utils/wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/git.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/git.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_internal/wheel_builder.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/core.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/big5freq.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/big5prober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/chardistribution.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/charsetgroupprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/charsetprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/cli/chardetect.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/codingstatemachine.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/cp949prober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/enums.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/escprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/escsm.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/eucjpprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/euckrfreq.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/euckrprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/euctwfreq.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/euctwprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312freq.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/gb2312prober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/hebrewprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/jisfreq.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/jpcntx.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/langbulgarianmodel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/langgreekmodel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/langhebrewmodel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/langhungarianmodel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/langrussianmodel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/langthaimodel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/langturkishmodel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/latin1prober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/mbcharsetprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/mbcsgroupprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/mbcssm.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/metadata/languages.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/sbcharsetprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/sbcsgroupprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/sjisprober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/universaldetector.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/utf8prober.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/version.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/ansi.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/ansitowin32.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/initialise.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/win32.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/colorama/winterm.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/database.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/index.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/database.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/index.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/locators.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/manifest.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/markers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/metadata.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/util.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/version.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distlib/wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/distro.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_ihatexml.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_inputstream.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_tokenizer.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/_base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_trie/py.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/_utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/constants.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/alphabeticalattributes.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/inject_meta_charset.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/lint.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/optionaltags.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/sanitizer.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/filters/whitespace.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/html5parser.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/serializer.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/genshi.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treeadapters/sax.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/dom.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treebuilders/etree_lxml.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/base.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/dom.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/etree_lxml.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/html5lib/treewalkers/genshi.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/core.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/codec.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/core.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/_version.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__about__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/packaging/version.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/build.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/check.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/build.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/check.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/colorlog.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/dirtools.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/envbuild.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/in_process/_in_process.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/meta.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pep517/wrappers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pkg_resources/py31compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/bar.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/colors.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/counter.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/bar.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/colors.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/counter.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/progress/spinner.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/cmdline.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/console.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/bbcode.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/groff.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/html.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/img.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/irc.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/latex.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/other.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/rtf.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/svg.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/terminal256.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/style.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/token.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pygments/util.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/actions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/common.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/core.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/exceptions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/helpers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/results.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/testing.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/unicode.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/pyparsing/util.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/api.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/help.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/models.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/api.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/auth.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/certs.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/help.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/models.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/packages.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/structures.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/requests/utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_lru_cache.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/align.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/box.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/console.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/control.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/json.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/region.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/status.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/style.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/table.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/text.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_lru_cache.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/abc.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/align.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/bar.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/box.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/cells.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/color.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/columns.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/console.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/containers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/control.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/errors.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/json.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/layout.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/live.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/logging.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/markup.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/measure.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/padding.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/pager.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/palette.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/panel.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/progress.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/region.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/repr.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/rule.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/scope.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/screen.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/segment.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/status.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/style.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/styled.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/table.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/tabulate.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/text.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/theme.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/themes.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/rich/tree.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/six.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/_asyncio.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/_utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/after.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/before.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/before_sleep.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/nap.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/retry.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/stop.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/tornadoweb.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tenacity/wait.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/typing_extensions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/appengine.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/securetransport.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/packages/six.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/request.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/queue.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/vendor.txt create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/labels.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/mklabels.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/tests.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/_vendor/webencodings/x_user_defined.py create mode 100644 python=3.6/lib/python3.10/site-packages/pip/py.typed create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/appdirs.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/extern/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/__pycache__/setup.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/INSTALLER create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/LICENSE create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/METADATA create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/RECORD create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/REQUESTED create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/WHEEL create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/entry_points.txt create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/top_level.txt create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/_deprecation_warning.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/_imp.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/archive_util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/build_meta.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/config.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/dep_util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/depends.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/dist.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/errors.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/extension.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/glob.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/installer.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/launch.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/monkey.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/msvc.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/namespaces.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/package_index.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/py34compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/sandbox.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/unicode_utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/wheel.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/__pycache__/windows_support.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_deprecation_warning.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/bcppcompiler.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/config.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/core.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/debug.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/dist.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/errors.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/extension.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/log.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/msvc9compiler.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/msvccompiler.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/py35compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/py38compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/util.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/cmd.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_msi.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/bdist_wininst.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/py37compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/register.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/__pycache__/upload.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/build.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/check.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/config.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/install.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/register.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/config.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/core.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/debug.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/dist.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/errors.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/extension.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/file_util.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/filelist.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/log.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/spawn.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/text_file.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/util.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/version.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_imp.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/ordered_set.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/__pycache__/pyparsing.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__about__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/archive_util.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/build_meta.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/cli-32.exe create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/cli-64.exe create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/cli-arm64.exe create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/cli.exe create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/alias.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/build_clib.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/build_ext.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/build_py.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/develop.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/dist_info.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/easy_install.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/egg_info.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/install.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/install_lib.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/install_scripts.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/py36compat.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/register.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/rotate.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/saveopts.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/sdist.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/setopt.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/test.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/upload.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/__pycache__/upload_docs.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/alias.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/bdist_egg.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/build_clib.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/build_ext.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/build_py.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/develop.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/dist_info.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/easy_install.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/egg_info.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/install.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/install_egg_info.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/install_lib.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/install_scripts.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/launcher manifest.xml create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/py36compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/register.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/rotate.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/saveopts.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/sdist.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/setopt.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/test.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/upload.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/command/upload_docs.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/config.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/dep_util.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/depends.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/dist.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/errors.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/extension.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/extern/__init__.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/extern/__pycache__/__init__.cpython-310.pyc create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/glob.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/gui-32.exe create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/gui-64.exe create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/gui-arm64.exe create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/gui.exe create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/installer.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/launch.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/monkey.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/msvc.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/namespaces.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/package_index.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/py34compat.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/sandbox.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/script (dev).tmpl create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/script.tmpl create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/unicode_utils.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/version.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/wheel.py create mode 100644 python=3.6/lib/python3.10/site-packages/setuptools/windows_support.py create mode 120000 python=3.6/lib64 create mode 100644 python=3.6/pyvenv.cfg diff --git a/.gitignore b/.gitignore index 3a080c3..a1c839d 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,6 @@ .idea .pyc -.venv \ No newline at end of file +.venv +__pycache__ +.vscode +'python=3.6' diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..46d9a84 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "ros.distro": "humble" +} \ No newline at end of file diff --git a/__pycache__/Quadrotor.cpython-36.pyc b/__pycache__/Quadrotor.cpython-36.pyc new file mode 100644 index 0000000000000000000000000000000000000000..349ba6043fc694b6b39f49edf367a7f691b48fb5 GIT binary patch literal 2850 zcmbVO&2Jk;6rY)0uh;93CL#SU)D%Q9QWG_4g;XJ$Dix?gidu+3+C#S+&t_w1?R93? zZDKhm_gaYq7x)X{#+4gKj-2;|!~x}B;Kc9E+UryVRbs9A&3p6ay_xsk%p0%Q>(2V< zi`^e6Xx&k<}}^<(}=@db|`>dXDRG z_BoT5EWc#3JP~d+s7ZTYsBeR+tVrh-ck7b7jl;E|A*&xVw-MC4=U|P42TDG%IK$Y& zgrRT9+P-6T=LAl&mdK2DoMcAQ>2HBq{HzlWRj}#zpZm#^ z?FV6)EpPeHJE5O;;{J9VM?1b+d$Qf)nUzm%lbP9PgV;bzRsaEWIie_JU7E7=lDkG8 z8P}Ayth{81qa&;6Em?zajjZxy=7r+W{|gP@@AtRcm7HYMQ+*3~@~cb= z{EX0?@U9p$&&VZJwx2)0DSQ*W+e7Gq;U@+}#>FK?X)_@f;^A@5IOfGgHzi@VN1 z#oeGyDQGQaqCdz=zEb{C#hg@;4X)2UPz znKyPjp7U)9<97cMj^w6#(N`_%&+6;`%2n%jQeGW{j5Rsx!4V9TEDdr>N@V;(|cv zna2=*=5eHec>-y`VL>XGXO1l(sIJv5kNJdiB(!UT7E`(c+L+Rg`WjLseVRbN)vBqh zSVLVSc$?rIg6jlLg0}#fd311h`J28iI$KZ zmWOAGHI5%bHab5K(y4T|>73C=aiXiM<8%R|@QfWJR$YFKSaroQV%0T{5v#6wOc5#_ zTPdQH+Bm`-Seo!XiCBo zVQ5NoVxDC=6sN6euCNdaSvsY4dJnkur`9EIzSiqnDDCj4idK_WVXcnG9MAi7M-4n< zbB>;Kdn#M#E*ABnx}|Hoa_DT(J2n#gDK#U%UQQhq)CiQiM7pL_{)?8C z*P(_U8Qk_#*Bq>AT-SKVOY;h(YmqKPw4SaX?}K3677ea{h9jD&+)Z(VFLN|;DVG?d z#{95S@!M+Id4#Acok`Jw-ENiXedznW!1FT4^LnuyMnu;o_@dVZ(xdDArfalggYyO4xGd{5sm_oss8jn-mT_B>X82K>`}$vQX7(p}oIWMP3B6FJSU{2%@PszLgx}ocg4;-ujo&}- CZDWZ5 literal 0 HcmV?d00001 diff --git a/config.ini b/config.ini index c33026e..21ea1fe 100644 --- a/config.ini +++ b/config.ini @@ -4,7 +4,7 @@ DT = 0.05 CMD_VEL = 0.4 [DRONEKIT] -IP_ADDR = "" +SIM = 1 [Trajectory] traj_path = trajs/spiral8.csv diff --git a/main.py b/main.py index 4104793..dfb2dbd 100644 --- a/main.py +++ b/main.py @@ -31,7 +31,9 @@ def __init__(self): self.default_takeoff_alt = float(config['DEFAULT']['TAKEOFF_ALTITUDE']) self.default_cmd_vel = float(config['DEFAULT']['CMD_VEL']) self.default_dt = float(config['DEFAULT']['DT']) - self.ip_addr = str(config['DRONEKIT']['IP_ADDR']) + self.is_sim = int(config['DRONEKIT']['SIM']) + assert self.is_sim in [0, 1] + self.ip_addr = "0.0.0.0:18990" if self.is_sim == 0 else "" if not os.path.exists(self.traj_path): logging.error(f'{self.traj_path} does not exist!') @@ -86,7 +88,7 @@ def __init__(self): # intialize buttons self.btnLaunch.setEnabled(False) - self.btnSendTraj.setEnabled(False) + # self.btnSendTraj.setEnabled(False) # add visualizer self.quad = Quadrotor(size=0.5) @@ -151,8 +153,12 @@ def connect(self, ip_addr): , lambda vehicle, name, location: self.updateLocationGUI(location)) # change state - self.state = State.INITIALIZED - self.btnLaunch.setEnabled(True) + if self.config.is_sim == 0: + self.state = State.HOVER + self.vehicle.mode = VehicleMode("GUIDED") + else: + self.state = State.INITIALIZED + self.btnLaunch.setEnabled(True) def updateFlightModeGUI(self, value): logging.info(f'flight mode change to {value}') diff --git a/python=3.6/bin/Activate.ps1 b/python=3.6/bin/Activate.ps1 new file mode 100644 index 0000000..b49d77b --- /dev/null +++ b/python=3.6/bin/Activate.ps1 @@ -0,0 +1,247 @@ +<# +.Synopsis +Activate a Python virtual environment for the current PowerShell session. + +.Description +Pushes the python executable for a virtual environment to the front of the +$Env:PATH environment variable and sets the prompt to signify that you are +in a Python virtual environment. Makes use of the command line switches as +well as the `pyvenv.cfg` file values present in the virtual environment. + +.Parameter VenvDir +Path to the directory that contains the virtual environment to activate. The +default value for this is the parent of the directory that the Activate.ps1 +script is located within. + +.Parameter Prompt +The prompt prefix to display when this virtual environment is activated. By +default, this prompt is the name of the virtual environment folder (VenvDir) +surrounded by parentheses and followed by a single space (ie. '(.venv) '). + +.Example +Activate.ps1 +Activates the Python virtual environment that contains the Activate.ps1 script. + +.Example +Activate.ps1 -Verbose +Activates the Python virtual environment that contains the Activate.ps1 script, +and shows extra information about the activation as it executes. + +.Example +Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv +Activates the Python virtual environment located in the specified location. + +.Example +Activate.ps1 -Prompt "MyPython" +Activates the Python virtual environment that contains the Activate.ps1 script, +and prefixes the current prompt with the specified string (surrounded in +parentheses) while the virtual environment is active. + +.Notes +On Windows, it may be required to enable this Activate.ps1 script by setting the +execution policy for the user. You can do this by issuing the following PowerShell +command: + +PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser + +For more information on Execution Policies: +https://go.microsoft.com/fwlink/?LinkID=135170 + +#> +Param( + [Parameter(Mandatory = $false)] + [String] + $VenvDir, + [Parameter(Mandatory = $false)] + [String] + $Prompt +) + +<# Function declarations --------------------------------------------------- #> + +<# +.Synopsis +Remove all shell session elements added by the Activate script, including the +addition of the virtual environment's Python executable from the beginning of +the PATH variable. + +.Parameter NonDestructive +If present, do not remove this function from the global namespace for the +session. + +#> +function global:deactivate ([switch]$NonDestructive) { + # Revert to original values + + # The prior prompt: + if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) { + Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt + Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT + } + + # The prior PYTHONHOME: + if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) { + Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME + Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME + } + + # The prior PATH: + if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) { + Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH + Remove-Item -Path Env:_OLD_VIRTUAL_PATH + } + + # Just remove the VIRTUAL_ENV altogether: + if (Test-Path -Path Env:VIRTUAL_ENV) { + Remove-Item -Path env:VIRTUAL_ENV + } + + # Just remove VIRTUAL_ENV_PROMPT altogether. + if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) { + Remove-Item -Path env:VIRTUAL_ENV_PROMPT + } + + # Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether: + if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) { + Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force + } + + # Leave deactivate function in the global namespace if requested: + if (-not $NonDestructive) { + Remove-Item -Path function:deactivate + } +} + +<# +.Description +Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the +given folder, and returns them in a map. + +For each line in the pyvenv.cfg file, if that line can be parsed into exactly +two strings separated by `=` (with any amount of whitespace surrounding the =) +then it is considered a `key = value` line. The left hand string is the key, +the right hand is the value. + +If the value starts with a `'` or a `"` then the first and last character is +stripped from the value before being captured. + +.Parameter ConfigDir +Path to the directory that contains the `pyvenv.cfg` file. +#> +function Get-PyVenvConfig( + [String] + $ConfigDir +) { + Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg" + + # Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue). + $pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue + + # An empty map will be returned if no config file is found. + $pyvenvConfig = @{ } + + if ($pyvenvConfigPath) { + + Write-Verbose "File exists, parse `key = value` lines" + $pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath + + $pyvenvConfigContent | ForEach-Object { + $keyval = $PSItem -split "\s*=\s*", 2 + if ($keyval[0] -and $keyval[1]) { + $val = $keyval[1] + + # Remove extraneous quotations around a string value. + if ("'""".Contains($val.Substring(0, 1))) { + $val = $val.Substring(1, $val.Length - 2) + } + + $pyvenvConfig[$keyval[0]] = $val + Write-Verbose "Adding Key: '$($keyval[0])'='$val'" + } + } + } + return $pyvenvConfig +} + + +<# Begin Activate script --------------------------------------------------- #> + +# Determine the containing directory of this script +$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition +$VenvExecDir = Get-Item -Path $VenvExecPath + +Write-Verbose "Activation script is located in path: '$VenvExecPath'" +Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)" +Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)" + +# Set values required in priority: CmdLine, ConfigFile, Default +# First, get the location of the virtual environment, it might not be +# VenvExecDir if specified on the command line. +if ($VenvDir) { + Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values" +} +else { + Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir." + $VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/") + Write-Verbose "VenvDir=$VenvDir" +} + +# Next, read the `pyvenv.cfg` file to determine any required value such +# as `prompt`. +$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir + +# Next, set the prompt from the command line, or the config file, or +# just use the name of the virtual environment folder. +if ($Prompt) { + Write-Verbose "Prompt specified as argument, using '$Prompt'" +} +else { + Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value" + if ($pyvenvCfg -and $pyvenvCfg['prompt']) { + Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'" + $Prompt = $pyvenvCfg['prompt']; + } + else { + Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)" + Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'" + $Prompt = Split-Path -Path $venvDir -Leaf + } +} + +Write-Verbose "Prompt = '$Prompt'" +Write-Verbose "VenvDir='$VenvDir'" + +# Deactivate any currently active virtual environment, but leave the +# deactivate function in place. +deactivate -nondestructive + +# Now set the environment variable VIRTUAL_ENV, used by many tools to determine +# that there is an activated venv. +$env:VIRTUAL_ENV = $VenvDir + +if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) { + + Write-Verbose "Setting prompt to '$Prompt'" + + # Set the prompt to include the env name + # Make sure _OLD_VIRTUAL_PROMPT is global + function global:_OLD_VIRTUAL_PROMPT { "" } + Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT + New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt + + function global:prompt { + Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) " + _OLD_VIRTUAL_PROMPT + } + $env:VIRTUAL_ENV_PROMPT = $Prompt +} + +# Clear PYTHONHOME +if (Test-Path -Path Env:PYTHONHOME) { + Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME + Remove-Item -Path Env:PYTHONHOME +} + +# Add the venv to the PATH +Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH +$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH" diff --git a/python=3.6/bin/activate b/python=3.6/bin/activate new file mode 100644 index 0000000..e3bdb9e --- /dev/null +++ b/python=3.6/bin/activate @@ -0,0 +1,69 @@ +# This file must be used with "source bin/activate" *from bash* +# you cannot run it directly + +deactivate () { + # reset old environment variables + if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then + PATH="${_OLD_VIRTUAL_PATH:-}" + export PATH + unset _OLD_VIRTUAL_PATH + fi + if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then + PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}" + export PYTHONHOME + unset _OLD_VIRTUAL_PYTHONHOME + fi + + # This should detect bash and zsh, which have a hash command that must + # be called to get it to forget past commands. Without forgetting + # past commands the $PATH changes we made may not be respected + if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r 2> /dev/null + fi + + if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then + PS1="${_OLD_VIRTUAL_PS1:-}" + export PS1 + unset _OLD_VIRTUAL_PS1 + fi + + unset VIRTUAL_ENV + unset VIRTUAL_ENV_PROMPT + if [ ! "${1:-}" = "nondestructive" ] ; then + # Self destruct! + unset -f deactivate + fi +} + +# unset irrelevant variables +deactivate nondestructive + +VIRTUAL_ENV="/home/airlab/PyDev/droneController/python=3.6" +export VIRTUAL_ENV + +_OLD_VIRTUAL_PATH="$PATH" +PATH="$VIRTUAL_ENV/bin:$PATH" +export PATH + +# unset PYTHONHOME if set +# this will fail if PYTHONHOME is set to the empty string (which is bad anyway) +# could use `if (set -u; : $PYTHONHOME) ;` in bash +if [ -n "${PYTHONHOME:-}" ] ; then + _OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}" + unset PYTHONHOME +fi + +if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then + _OLD_VIRTUAL_PS1="${PS1:-}" + PS1="(python=3.6) ${PS1:-}" + export PS1 + VIRTUAL_ENV_PROMPT="(python=3.6) " + export VIRTUAL_ENV_PROMPT +fi + +# This should detect bash and zsh, which have a hash command that must +# be called to get it to forget past commands. Without forgetting +# past commands the $PATH changes we made may not be respected +if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then + hash -r 2> /dev/null +fi diff --git a/python=3.6/bin/activate.csh b/python=3.6/bin/activate.csh new file mode 100644 index 0000000..fe4d786 --- /dev/null +++ b/python=3.6/bin/activate.csh @@ -0,0 +1,26 @@ +# This file must be used with "source bin/activate.csh" *from csh*. +# You cannot run it directly. +# Created by Davide Di Blasi . +# Ported to Python 3.3 venv by Andrew Svetlov + +alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate' + +# Unset irrelevant variables. +deactivate nondestructive + +setenv VIRTUAL_ENV "/home/airlab/PyDev/droneController/python=3.6" + +set _OLD_VIRTUAL_PATH="$PATH" +setenv PATH "$VIRTUAL_ENV/bin:$PATH" + + +set _OLD_VIRTUAL_PROMPT="$prompt" + +if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then + set prompt = "(python=3.6) $prompt" + setenv VIRTUAL_ENV_PROMPT "(python=3.6) " +endif + +alias pydoc python -m pydoc + +rehash diff --git a/python=3.6/bin/activate.fish b/python=3.6/bin/activate.fish new file mode 100644 index 0000000..f997a51 --- /dev/null +++ b/python=3.6/bin/activate.fish @@ -0,0 +1,69 @@ +# This file must be used with "source /bin/activate.fish" *from fish* +# (https://fishshell.com/); you cannot run it directly. + +function deactivate -d "Exit virtual environment and return to normal shell environment" + # reset old environment variables + if test -n "$_OLD_VIRTUAL_PATH" + set -gx PATH $_OLD_VIRTUAL_PATH + set -e _OLD_VIRTUAL_PATH + end + if test -n "$_OLD_VIRTUAL_PYTHONHOME" + set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME + set -e _OLD_VIRTUAL_PYTHONHOME + end + + if test -n "$_OLD_FISH_PROMPT_OVERRIDE" + set -e _OLD_FISH_PROMPT_OVERRIDE + # prevents error when using nested fish instances (Issue #93858) + if functions -q _old_fish_prompt + functions -e fish_prompt + functions -c _old_fish_prompt fish_prompt + functions -e _old_fish_prompt + end + end + + set -e VIRTUAL_ENV + set -e VIRTUAL_ENV_PROMPT + if test "$argv[1]" != "nondestructive" + # Self-destruct! + functions -e deactivate + end +end + +# Unset irrelevant variables. +deactivate nondestructive + +set -gx VIRTUAL_ENV "/home/airlab/PyDev/droneController/python=3.6" + +set -gx _OLD_VIRTUAL_PATH $PATH +set -gx PATH "$VIRTUAL_ENV/bin" $PATH + +# Unset PYTHONHOME if set. +if set -q PYTHONHOME + set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME + set -e PYTHONHOME +end + +if test -z "$VIRTUAL_ENV_DISABLE_PROMPT" + # fish uses a function instead of an env var to generate the prompt. + + # Save the current fish_prompt function as the function _old_fish_prompt. + functions -c fish_prompt _old_fish_prompt + + # With the original prompt function renamed, we can override with our own. + function fish_prompt + # Save the return status of the last command. + set -l old_status $status + + # Output the venv prompt; color taken from the blue of the Python logo. + printf "%s%s%s" (set_color 4B8BBE) "(python=3.6) " (set_color normal) + + # Restore the return status of the previous command. + echo "exit $old_status" | . + # Output the original/"old" prompt. + _old_fish_prompt + end + + set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV" + set -gx VIRTUAL_ENV_PROMPT "(python=3.6) " +end diff --git a/python=3.6/bin/pip b/python=3.6/bin/pip new file mode 100755 index 0000000..d787ad4 --- /dev/null +++ b/python=3.6/bin/pip @@ -0,0 +1,8 @@ +#!/home/airlab/PyDev/droneController/python=3.6/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/python=3.6/bin/pip3 b/python=3.6/bin/pip3 new file mode 100755 index 0000000..d787ad4 --- /dev/null +++ b/python=3.6/bin/pip3 @@ -0,0 +1,8 @@ +#!/home/airlab/PyDev/droneController/python=3.6/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/python=3.6/bin/pip3.10 b/python=3.6/bin/pip3.10 new file mode 100755 index 0000000..d787ad4 --- /dev/null +++ b/python=3.6/bin/pip3.10 @@ -0,0 +1,8 @@ +#!/home/airlab/PyDev/droneController/python=3.6/bin/python +# -*- coding: utf-8 -*- +import re +import sys +from pip._internal.cli.main import main +if __name__ == '__main__': + sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0]) + sys.exit(main()) diff --git a/python=3.6/bin/python b/python=3.6/bin/python new file mode 120000 index 0000000..acd4152 --- /dev/null +++ b/python=3.6/bin/python @@ -0,0 +1 @@ +/usr/bin/python \ No newline at end of file diff --git a/python=3.6/bin/python3 b/python=3.6/bin/python3 new file mode 120000 index 0000000..d8654aa --- /dev/null +++ b/python=3.6/bin/python3 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/python=3.6/bin/python3.10 b/python=3.6/bin/python3.10 new file mode 120000 index 0000000..d8654aa --- /dev/null +++ b/python=3.6/bin/python3.10 @@ -0,0 +1 @@ +python \ No newline at end of file diff --git a/python=3.6/lib/python3.10/site-packages/_distutils_hack/__init__.py b/python=3.6/lib/python3.10/site-packages/_distutils_hack/__init__.py new file mode 100644 index 0000000..f707416 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/_distutils_hack/__init__.py @@ -0,0 +1,132 @@ +import sys +import os +import re +import importlib +import warnings + + +is_pypy = '__pypy__' in sys.builtin_module_names + + +warnings.filterwarnings('ignore', + r'.+ distutils\b.+ deprecated', + DeprecationWarning) + + +def warn_distutils_present(): + if 'distutils' not in sys.modules: + return + if is_pypy and sys.version_info < (3, 7): + # PyPy for 3.6 unconditionally imports distutils, so bypass the warning + # https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250 + return + warnings.warn( + "Distutils was imported before Setuptools, but importing Setuptools " + "also replaces the `distutils` module in `sys.modules`. This may lead " + "to undesirable behaviors or errors. To avoid these issues, avoid " + "using distutils directly, ensure that setuptools is installed in the " + "traditional way (e.g. not an editable install), and/or make sure " + "that setuptools is always imported before distutils.") + + +def clear_distutils(): + if 'distutils' not in sys.modules: + return + warnings.warn("Setuptools is replacing distutils.") + mods = [name for name in sys.modules if re.match(r'distutils\b', name)] + for name in mods: + del sys.modules[name] + + +def enabled(): + """ + Allow selection of distutils by environment variable. + """ + which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib') + return which == 'local' + + +def ensure_local_distutils(): + clear_distutils() + + # With the DistutilsMetaFinder in place, + # perform an import to cause distutils to be + # loaded from setuptools._distutils. Ref #2906. + add_shim() + importlib.import_module('distutils') + remove_shim() + + # check that submodules load as expected + core = importlib.import_module('distutils.core') + assert '_distutils' in core.__file__, core.__file__ + + +def do_override(): + """ + Ensure that the local copy of distutils is preferred over stdlib. + + See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401 + for more motivation. + """ + if enabled(): + warn_distutils_present() + ensure_local_distutils() + + +class DistutilsMetaFinder: + def find_spec(self, fullname, path, target=None): + if path is not None: + return + + method_name = 'spec_for_{fullname}'.format(**locals()) + method = getattr(self, method_name, lambda: None) + return method() + + def spec_for_distutils(self): + import importlib.abc + import importlib.util + + class DistutilsLoader(importlib.abc.Loader): + + def create_module(self, spec): + return importlib.import_module('setuptools._distutils') + + def exec_module(self, module): + pass + + return importlib.util.spec_from_loader('distutils', DistutilsLoader()) + + def spec_for_pip(self): + """ + Ensure stdlib distutils when running under pip. + See pypa/pip#8761 for rationale. + """ + if self.pip_imported_during_build(): + return + clear_distutils() + self.spec_for_distutils = lambda: None + + @staticmethod + def pip_imported_during_build(): + """ + Detect if pip is being imported in a build script. Ref #2355. + """ + import traceback + return any( + frame.f_globals['__file__'].endswith('setup.py') + for frame, line in traceback.walk_stack(None) + ) + + +DISTUTILS_FINDER = DistutilsMetaFinder() + + +def add_shim(): + sys.meta_path.insert(0, DISTUTILS_FINDER) + + +def remove_shim(): + try: + sys.meta_path.remove(DISTUTILS_FINDER) + except ValueError: + pass diff --git a/python=3.6/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/_distutils_hack/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7e19a1205e44d10070f0926dcdbbd8d82c1ab726 GIT binary patch literal 5121 zcmbtYTXWmS72X9v2&5!hkrR*8CLJ`+xM5?HzUAW9cHFTX*NshQEIXN~PGOL{6d{2G zy#S?u! zEv+YW!W5Qt_Ds%1LD-MkT2agi2iKA)iW08#VqPrZx*!%s8P~-dOdJtQkC|B7HP*_q zyvx>(h*!ii-Ytov;#FK<5qy}UZqkO#mk zwdn3UrWRpE-TbFjYeyYf^8*$7joPP!6}eRtD(cE>Q8!T$WK^}@AZbV4%jc`_*TSGN z?w+rnJyVN=M4s;X%}sw@#x*a8=C$#x=3)6D@w{qpkRGFzX9j?=vFs*G020GHS&3V` z%q`R626vvTBY3or%myChWWIvVK{7u9ku`PUlaCn@eTD7v9X4Vs>`Qw`Q-8!Svq#4? zxeIk=VV2=rQ>Kz(GdAucM70UF=Lg}iajxQw-$1jD6}~Ld{7(=yMtsju#)$vbcx1qZ z_;5bg$%974NDU>^LdQ>PfEVtTuLAO!s{S%PzIy%M{ZH@RxpQmPyT5wfTe-P<@BY1;w^ma-P6Sw)7PKxZ zW@<$6i1AdZxh|6mPYc`apxHhsI7ZPDqC)sdkh0})^%LA25_2E*61K}YOSo!F~e3`w$dbh}j6M z5Jj_S%KBADqy)7(;wIeg5LP za~D6naOSL@3^@w<1+l#oCBc?YY|MyOub7$uIsj?;XB4RYMmy-dh&+O*0wJ$L4KcZ! zJqNXM>zVo)I{O%ez7AejagEQRk&H?Vlouso2=g&VfnkXPlD{QvF^6kG+QJdV#|U9- zb6TDA>Cu%*%DpWU|Kk8zPt}{m+sQ$JiOL%7kQZ<>LIKm~$|l|kzQKeQXx{#f|C#St zi7{d$lr%uVcFmo_sIW`?EYycb1+sE6)=lE{OCpCb6blEzov@M$KQ&4(5*>!n;djc04S$u zEq%kDK(sw7Uyb_kwW(KDr-7!z)ms=}G1M7cU@h4BJFb3;PG$#fg2kqisAtC^?zgl6 ztybd0+c~1C6I6eI1l4^rAChOnX+=3f{d|II0@u!B?m@=P%dg-r*}LCOz*>Cx$^Q#> zX5MGw2tDmcoX^7K{Z` zeMG~Fv+$&GoZR>uO3N85P$ zu+{Dp8VaQjYL4T^k~2J+<9(^Q_qiR}kl1pKW^>Vuz{@>`CR&5mV0LElkK+bx~ku$LR#-Ql-mn>S=ONMC_m|Bgr_Gy{NVkwE+rYIbBjNz zV`yOgkQaXs>1J4#hf(z|^g-}G#*YU!e?AScfR}jf-^n+07 zszZH@so|&Opfeb>(H3%}VGa@`GgrYvXe{%g`@it)lbz(w)0K-3RgNLsfswMf1;ZIs z)l((EONJ^8@8pJBkqPQZH)xR^sCI8iGR;IT+L`&-dqOHVZmOV{RNcF><(@cq{=N66 zX47%CzK=g9kdO<+biR$|4^-kWJ}`Fp4oZ7uQT93&`-pU(q2PH0h=67)8ai}z)WeRa zj+(pJ^47zsff7A+WLL!7s9P{_83WToOHmH8!k~MoNGo1imtFZ)PhHU%C<7T^Tg*1f z&r8pTS6`&$?=|TR116J#0!3_Co3epj8vM9BNK4y(xanb2+uVfZ>sauB<<$*5>);$4 z93E;o&xWUe5EdO!D~`HE^IxWhc5>={YKU~|*J#oOz(|7TI62e0Ggzjc@D5(w!l}zv z2f4vk1(zxzU1E~X#h)Cp^uE9xHtLox0e4I-$+Vg?6bIA@>hQp&=1VsMm$UYvcQpKNF8 zs8Y!GcX#n&YGVBKUw%&1!>bw=3.7 +License-File: LICENSE.txt + +pip - The Python Package Installer +================================== + +.. image:: https://img.shields.io/pypi/v/pip.svg + :target: https://pypi.org/project/pip/ + +.. image:: https://readthedocs.org/projects/pip/badge/?version=latest + :target: https://pip.pypa.io/en/latest + +pip is the `package installer`_ for Python. You can use pip to install packages from the `Python Package Index`_ and other indexes. + +Please take a look at our documentation for how to install and use pip: + +* `Installation`_ +* `Usage`_ + +We release updates regularly, with a new version every 3 months. Find more details in our documentation: + +* `Release notes`_ +* `Release process`_ + +In pip 20.3, we've `made a big improvement to the heart of pip`_; `learn more`_. We want your input, so `sign up for our user experience research studies`_ to help us do it right. + +**Note**: pip 21.0, in January 2021, removed Python 2 support, per pip's `Python 2 support policy`_. Please migrate to Python 3. + +If you find bugs, need help, or want to talk to the developers, please use our mailing lists or chat rooms: + +* `Issue tracking`_ +* `Discourse channel`_ +* `User IRC`_ + +If you want to get involved head over to GitHub to get the source code, look at our development documentation and feel free to jump on the developer mailing lists and chat rooms: + +* `GitHub page`_ +* `Development documentation`_ +* `Development mailing list`_ +* `Development IRC`_ + +Code of Conduct +--------------- + +Everyone interacting in the pip project's codebases, issue trackers, chat +rooms, and mailing lists is expected to follow the `PSF Code of Conduct`_. + +.. _package installer: https://packaging.python.org/guides/tool-recommendations/ +.. _Python Package Index: https://pypi.org +.. _Installation: https://pip.pypa.io/en/stable/installation/ +.. _Usage: https://pip.pypa.io/en/stable/ +.. _Release notes: https://pip.pypa.io/en/stable/news.html +.. _Release process: https://pip.pypa.io/en/latest/development/release-process/ +.. _GitHub page: https://github.com/pypa/pip +.. _Development documentation: https://pip.pypa.io/en/latest/development +.. _made a big improvement to the heart of pip: https://pyfound.blogspot.com/2020/11/pip-20-3-new-resolver.html +.. _learn more: https://pip.pypa.io/en/latest/user_guide/#changes-to-the-pip-dependency-resolver-in-20-3-2020 +.. _sign up for our user experience research studies: https://pyfound.blogspot.com/2020/03/new-pip-resolver-to-roll-out-this-year.html +.. _Python 2 support policy: https://pip.pypa.io/en/latest/development/release-process/#python-2-support +.. _Issue tracking: https://github.com/pypa/pip/issues +.. _Discourse channel: https://discuss.python.org/c/packaging +.. _Development mailing list: https://mail.python.org/mailman3/lists/distutils-sig.python.org/ +.. _User IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa +.. _Development IRC: https://kiwiirc.com/nextclient/#ircs://irc.libera.chat:+6697/pypa-dev +.. _PSF Code of Conduct: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md + + diff --git a/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD new file mode 100644 index 0000000..21c5258 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/RECORD @@ -0,0 +1,1037 @@ +../../../bin/pip,sha256=Tns3gjC14Y585qtIVx7ORC6-3HWJ6BqgptBqWILWeuI,261 +../../../bin/pip3,sha256=Tns3gjC14Y585qtIVx7ORC6-3HWJ6BqgptBqWILWeuI,261 +../../../bin/pip3.10,sha256=Tns3gjC14Y585qtIVx7ORC6-3HWJ6BqgptBqWILWeuI,261 +../../../bin/pip3.10,sha256=Tns3gjC14Y585qtIVx7ORC6-3HWJ6BqgptBqWILWeuI,261 +pip-22.0.2.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip-22.0.2.dist-info/LICENSE.txt,sha256=Y0MApmnUmurmWxLGxIySTFGkzfPR_whtw0VtyLyqIQQ,1093 +pip-22.0.2.dist-info/METADATA,sha256=Yixa0LKkyzjT2N5JQO5qYDgZcmTs6Z6dg4UbwBNyT2A,4166 +pip-22.0.2.dist-info/RECORD,, +pip-22.0.2.dist-info/REQUESTED,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip-22.0.2.dist-info/WHEEL,sha256=G16H4A3IeoQmnOrYV4ueZGKSjhipXx8zc8nu9FGlvMA,92 +pip-22.0.2.dist-info/entry_points.txt,sha256=vUvIlB_ga0fFQuWvFEq6uJKftMG_HNuoe4kgXkb5rNY,126 +pip-22.0.2.dist-info/top_level.txt,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 +pip/__init__.py,sha256=PZBF-ESk5Q0DZxQd4HHmTU_wX8y1ynzxBCRdu_fxHSI,357 +pip/__main__.py,sha256=mXwWDftNLMKfwVqKFWGE_uuBZvGSIiUELhLkeysIuZc,1198 +pip/__pycache__/__init__.cpython-310.pyc,, +pip/__pycache__/__main__.cpython-310.pyc,, +pip/_internal/__init__.py,sha256=nnFCuxrPMgALrIDxSoy-H6Zj4W4UY60D-uL1aJyq0pc,573 +pip/_internal/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/__pycache__/build_env.cpython-310.pyc,, +pip/_internal/__pycache__/cache.cpython-310.pyc,, +pip/_internal/__pycache__/configuration.cpython-310.pyc,, +pip/_internal/__pycache__/exceptions.cpython-310.pyc,, +pip/_internal/__pycache__/main.cpython-310.pyc,, +pip/_internal/__pycache__/pyproject.cpython-310.pyc,, +pip/_internal/__pycache__/self_outdated_check.cpython-310.pyc,, +pip/_internal/__pycache__/wheel_builder.cpython-310.pyc,, +pip/_internal/build_env.py,sha256=QAsnxJFvj74jS2cZUcxk7zXLvrtAYiRL0EkSPkpSJTo,9739 +pip/_internal/cache.py,sha256=71eaYwrls34HJ6gzbmmYiotiKhPNFTM_tqYJXD5nf3s,9441 +pip/_internal/cli/__init__.py,sha256=FkHBgpxxb-_gd6r1FjnNhfMOzAUYyXoXKJ6abijfcFU,132 +pip/_internal/cli/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc,, +pip/_internal/cli/__pycache__/base_command.cpython-310.pyc,, +pip/_internal/cli/__pycache__/cmdoptions.cpython-310.pyc,, +pip/_internal/cli/__pycache__/command_context.cpython-310.pyc,, +pip/_internal/cli/__pycache__/main.cpython-310.pyc,, +pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc,, +pip/_internal/cli/__pycache__/parser.cpython-310.pyc,, +pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc,, +pip/_internal/cli/__pycache__/req_command.cpython-310.pyc,, +pip/_internal/cli/__pycache__/spinners.cpython-310.pyc,, +pip/_internal/cli/__pycache__/status_codes.cpython-310.pyc,, +pip/_internal/cli/autocompletion.py,sha256=wY2JPZY2Eji1vhR7bVo-yCBPJ9LCy6P80iOAhZD1Vi8,6676 +pip/_internal/cli/base_command.py,sha256=6IVFmOjObv0ILip28QcgP8glhXHiGRvU_9kO35Hr7Z0,8037 +pip/_internal/cli/cmdoptions.py,sha256=GT2G2YKBj-851qGseugn2Veq7fJe3FA30gWdcziPQvo,28525 +pip/_internal/cli/command_context.py,sha256=a1pBBvvGLDiZ1Kw64_4tT6HmRTwYDoYy8JFgG5Czn7s,760 +pip/_internal/cli/main.py,sha256=ioJ8IVlb2K1qLOxR-tXkee9lURhYV89CDM71MKag7YY,2472 +pip/_internal/cli/main_parser.py,sha256=Q9TnytfuC5Z2JSjBFWVGtEdYLFy7rukNIb04movHdAo,2614 +pip/_internal/cli/parser.py,sha256=CDXTuFr2UD8ozOlZYf1KDziQdo9-X_IaYOiUcyJQwrA,10788 +pip/_internal/cli/progress_bars.py,sha256=_52w11WoZrvDSR3oItLWvLrEZFUKAfLf4Y6I6WtOnIU,10339 +pip/_internal/cli/req_command.py,sha256=VwqonOy18QwZsRsVjHhp-6w15fG9x3Ltwoa8yJqQno8,18669 +pip/_internal/cli/spinners.py,sha256=TFhjxtOnLeNJ5YmRvQm4eKPgPbJNkZiqO8jOXuxRaYU,5076 +pip/_internal/cli/status_codes.py,sha256=sEFHUaUJbqv8iArL3HAtcztWZmGOFX01hTesSytDEh0,116 +pip/_internal/commands/__init__.py,sha256=Vc1HjsLEtyCh7506OozPHPKXe2Hk-z9cFkFF3BMj1lM,3736 +pip/_internal/commands/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/commands/__pycache__/cache.cpython-310.pyc,, +pip/_internal/commands/__pycache__/check.cpython-310.pyc,, +pip/_internal/commands/__pycache__/completion.cpython-310.pyc,, +pip/_internal/commands/__pycache__/configuration.cpython-310.pyc,, +pip/_internal/commands/__pycache__/debug.cpython-310.pyc,, +pip/_internal/commands/__pycache__/download.cpython-310.pyc,, +pip/_internal/commands/__pycache__/freeze.cpython-310.pyc,, +pip/_internal/commands/__pycache__/hash.cpython-310.pyc,, +pip/_internal/commands/__pycache__/help.cpython-310.pyc,, +pip/_internal/commands/__pycache__/index.cpython-310.pyc,, +pip/_internal/commands/__pycache__/install.cpython-310.pyc,, +pip/_internal/commands/__pycache__/list.cpython-310.pyc,, +pip/_internal/commands/__pycache__/search.cpython-310.pyc,, +pip/_internal/commands/__pycache__/show.cpython-310.pyc,, +pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc,, +pip/_internal/commands/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/commands/cache.py,sha256=p9gvc6W_xgxE2zO0o8NXqO1gGJEinEK42qEC-a7Cnuk,7524 +pip/_internal/commands/check.py,sha256=0gjXR7j36xJT5cs2heYU_dfOfpnFfzX8OoPNNoKhqdM,1685 +pip/_internal/commands/completion.py,sha256=kTG_I1VR3N5kGC4Ma9pQTSoY9Q1URCrNyseHSQ-rCL4,2958 +pip/_internal/commands/configuration.py,sha256=arE8vLstjBg-Ar1krXF-bBmT1qBtnL7Fpk-NVh38a0U,8944 +pip/_internal/commands/debug.py,sha256=krET-y45CnQzXwKR1qA3M_tJE4LE2vnQtm3yfGyDSnE,6629 +pip/_internal/commands/download.py,sha256=gVIAEOcpWolhRj9hl89Qzn52G2b_pcZ8naXhxaXobdo,4942 +pip/_internal/commands/freeze.py,sha256=PaJJB9mT_3vHeZ3mbFL_m1fzTYL-_Or3kDtXwTdZZ-A,2968 +pip/_internal/commands/hash.py,sha256=EVVOuvGtoPEdFi8SNnmdqlCQrhCxV-kJsdwtdcCnXGQ,1703 +pip/_internal/commands/help.py,sha256=gcc6QDkcgHMOuAn5UxaZwAStsRBrnGSn_yxjS57JIoM,1132 +pip/_internal/commands/index.py,sha256=8pYkICUJlccjm3E83b7UuZ5DtOfLh1N7ZHXAgkajjHo,4849 +pip/_internal/commands/install.py,sha256=YVygBF6vfrNi0jmdNBCM6bcoWb7vaALEGG1--8Mmf88,27893 +pip/_internal/commands/list.py,sha256=aKt1PP7enTiNLD_1qDXXaIKQ2QvLmUDfoQU6SYxJ8Ek,12318 +pip/_internal/commands/search.py,sha256=sbBZiARRc050QquOKcCvOr2K3XLsoYebLKZGRi__iUI,5697 +pip/_internal/commands/show.py,sha256=2VicM3jF0YWgn4O1jG_QF5oxOT0ln57VDu1NE6hqWcM,5859 +pip/_internal/commands/uninstall.py,sha256=DNTYAGJNljMO_YYBxrpcwj0FEl7lo_P55_98O6g2TNk,3526 +pip/_internal/commands/wheel.py,sha256=7HAjLclZxIzBrX6JmhmGBVxH5xrjaBYCtSdpQi1pWCE,6206 +pip/_internal/configuration.py,sha256=qmCX3uuVM73PQeAuWQHic22bhops8s31B8k02nFAoiQ,13171 +pip/_internal/distributions/__init__.py,sha256=Hq6kt6gXBgjNit5hTTWLAzeCNOKoB-N0pGYSqehrli8,858 +pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/base.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/installed.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc,, +pip/_internal/distributions/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/distributions/base.py,sha256=3FUYD8Gb4YuSu3pggC_FRctZBDbpm5ZK89tPksIUjoE,1172 +pip/_internal/distributions/installed.py,sha256=HzfNRu3smoOm54m8H2iK6LHzBx6_DEnka4OPEsizbXg,680 +pip/_internal/distributions/sdist.py,sha256=0nJvU1RhZtbwaeYtLbzSwYrbGRcY6IgNsWdEhAHROK8,5499 +pip/_internal/distributions/wheel.py,sha256=-NgzdIs-w_hcer_U81yzgpVTljJRg5m79xufqvbjv0s,1115 +pip/_internal/exceptions.py,sha256=U-dV1ixkSz6NAU6Aw9dosKi2EzZ5D3BA7ilYZuTLKeU,20912 +pip/_internal/index/__init__.py,sha256=vpt-JeTZefh8a-FC22ZeBSXFVbuBcXSGiILhQZJaNpQ,30 +pip/_internal/index/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/index/__pycache__/collector.cpython-310.pyc,, +pip/_internal/index/__pycache__/package_finder.cpython-310.pyc,, +pip/_internal/index/__pycache__/sources.cpython-310.pyc,, +pip/_internal/index/collector.py,sha256=8kXlmlnZ-qAknyxd0duCn5mxFHX-zr468ykutk8WOwo,21392 +pip/_internal/index/package_finder.py,sha256=9UVg-7582nYNEWa0cIIl8otzPm4mlfyrQVuozAcssLo,36783 +pip/_internal/index/sources.py,sha256=SVyPitv08-Qalh2_Bk5diAJ9GAA_d-a93koouQodAG0,6557 +pip/_internal/locations/__init__.py,sha256=ergvPwlfNTmQYFmaRYbj--ZwTN5izgTL9KE5d0FB7-8,17362 +pip/_internal/locations/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc,, +pip/_internal/locations/__pycache__/_sysconfig.cpython-310.pyc,, +pip/_internal/locations/__pycache__/base.cpython-310.pyc,, +pip/_internal/locations/_distutils.py,sha256=Sk7tw8ZP1DWMYJ8MibABsa8IME2Ejv1PKeGlYQCBTZc,5871 +pip/_internal/locations/_sysconfig.py,sha256=LQNKTJKyjVqxXaPntlBwdUqTG1xwYf6GVCKMbyRJx5M,7918 +pip/_internal/locations/base.py,sha256=x5D1ONktmPJd8nnUTh-ELsAJ7fiXA-k-0a_vhfi2_Us,1579 +pip/_internal/main.py,sha256=r-UnUe8HLo5XFJz8inTcOOTiu_sxNhgHb6VwlGUllOI,340 +pip/_internal/metadata/__init__.py,sha256=iGoDbe_iTXQTIAEVy9f7dm-VQfZANO8kkwFr1CpqxqI,2036 +pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/metadata/__pycache__/base.cpython-310.pyc,, +pip/_internal/metadata/__pycache__/pkg_resources.cpython-310.pyc,, +pip/_internal/metadata/base.py,sha256=SCRPtShrtPy0lfFxuaFTgJJHsRXToGFToQUAZoBBbeA,19429 +pip/_internal/metadata/pkg_resources.py,sha256=wAnEtrcgH9YtV996MfoBjR2hGLHvi3uxk0vUOHbqBak,9456 +pip/_internal/models/__init__.py,sha256=3DHUd_qxpPozfzouoqa9g9ts1Czr5qaHfFxbnxriepM,63 +pip/_internal/models/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/models/__pycache__/candidate.cpython-310.pyc,, +pip/_internal/models/__pycache__/direct_url.cpython-310.pyc,, +pip/_internal/models/__pycache__/format_control.cpython-310.pyc,, +pip/_internal/models/__pycache__/index.cpython-310.pyc,, +pip/_internal/models/__pycache__/link.cpython-310.pyc,, +pip/_internal/models/__pycache__/scheme.cpython-310.pyc,, +pip/_internal/models/__pycache__/search_scope.cpython-310.pyc,, +pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc,, +pip/_internal/models/__pycache__/target_python.cpython-310.pyc,, +pip/_internal/models/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/models/candidate.py,sha256=6pcABsaR7CfIHlbJbr2_kMkVJFL_yrYjTx6SVWUnCPQ,990 +pip/_internal/models/direct_url.py,sha256=7XtGQSLLDQb5ZywI2EMnnLcddtf5CJLx44lMtTHPxFw,6350 +pip/_internal/models/format_control.py,sha256=DJpMYjxeYKKQdwNcML2_F0vtAh-qnKTYe-CpTxQe-4g,2520 +pip/_internal/models/index.py,sha256=tYnL8oxGi4aSNWur0mG8DAP7rC6yuha_MwJO8xw0crI,1030 +pip/_internal/models/link.py,sha256=hoT_qsOBAgLBm9GKqpBrNF_mrEXeGXQE-aH_RX2cGgg,9817 +pip/_internal/models/scheme.py,sha256=3EFQp_ICu_shH1-TBqhl0QAusKCPDFOlgHFeN4XowWs,738 +pip/_internal/models/search_scope.py,sha256=LwloG0PJAmtI1hFXIypsD95kWE9xfR5hf_a2v1Vw7sk,4520 +pip/_internal/models/selection_prefs.py,sha256=KZdi66gsR-_RUXUr9uejssk3rmTHrQVJWeNA2sV-VSY,1907 +pip/_internal/models/target_python.py,sha256=qKpZox7J8NAaPmDs5C_aniwfPDxzvpkrCKqfwndG87k,3858 +pip/_internal/models/wheel.py,sha256=wlyz23BcZ40nBLX3rXKtrV6tmc8-8RxHyV-hq5zJ74Q,3525 +pip/_internal/network/__init__.py,sha256=jf6Tt5nV_7zkARBrKojIXItgejvoegVJVKUbhAa5Ioc,50 +pip/_internal/network/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/network/__pycache__/auth.cpython-310.pyc,, +pip/_internal/network/__pycache__/cache.cpython-310.pyc,, +pip/_internal/network/__pycache__/download.cpython-310.pyc,, +pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc,, +pip/_internal/network/__pycache__/session.cpython-310.pyc,, +pip/_internal/network/__pycache__/utils.cpython-310.pyc,, +pip/_internal/network/__pycache__/xmlrpc.cpython-310.pyc,, +pip/_internal/network/auth.py,sha256=a3C7Xaa8kTJjXkdi_wrUjqaySc8Z9Yz7U6QIbXfzMyc,12190 +pip/_internal/network/cache.py,sha256=FJ3uTUo3wgf2KHmeZ3ltN9x3tQoy_0X6qNsRtNXsuL0,2131 +pip/_internal/network/download.py,sha256=12Ef_L7MlhNUN_0-n_3DggozWJER8c9J0us16cbvkKA,6062 +pip/_internal/network/lazy_wheel.py,sha256=1b8ZJ1w4bSBzpGzGwJR_CL2yQ6AFIwWQkS1vbPPw2XU,7627 +pip/_internal/network/session.py,sha256=38IKGKC64MTVUIH5XOR1hr2pOCzp39RccykdmGAvqRU,16729 +pip/_internal/network/utils.py,sha256=igLlTu_-q0LmL8FdJKq-Uj7AT_owrQ-T9FfyarkhK5U,4059 +pip/_internal/network/xmlrpc.py,sha256=AzQgG4GgS152_cqmGr_Oz2MIXsCal-xfsis7fA7nmU0,1791 +pip/_internal/operations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/__pycache__/check.cpython-310.pyc,, +pip/_internal/operations/__pycache__/freeze.cpython-310.pyc,, +pip/_internal/operations/__pycache__/prepare.cpython-310.pyc,, +pip/_internal/operations/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata_editable.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc,, +pip/_internal/operations/build/__pycache__/wheel_legacy.cpython-310.pyc,, +pip/_internal/operations/build/metadata.py,sha256=ES_uRmAvhrNm_nDTpZxshBfUsvnXtkj-g_4rZrH9Rww,1404 +pip/_internal/operations/build/metadata_editable.py,sha256=_Rai0VZjxoeJUkjkuICrq45LtjwFoDOveosMYH43rKc,1456 +pip/_internal/operations/build/metadata_legacy.py,sha256=o-eU21As175hDC7dluM1fJJ_FqokTIShyWpjKaIpHZw,2198 +pip/_internal/operations/build/wheel.py,sha256=AO9XnTGhTgHtZmU8Dkbfo1OGr41rBuSDjIgAa4zUKgE,1063 +pip/_internal/operations/build/wheel_editable.py,sha256=TVETY-L_M_dSEKBhTIcQOP75zKVXw8tuq1U354Mm30A,1405 +pip/_internal/operations/build/wheel_legacy.py,sha256=C9j6rukgQI1n_JeQLoZGuDdfUwzCXShyIdPTp6edbMQ,3064 +pip/_internal/operations/check.py,sha256=ca4O9CkPt9Em9sLCf3H0iVt1GIcW7M8C0U5XooaBuT4,5109 +pip/_internal/operations/freeze.py,sha256=ZiYw5GlUpLVx4VJHz4S1AP2JFNyvH0iq5kpcYj2ovyw,9770 +pip/_internal/operations/install/__init__.py,sha256=mX7hyD2GNBO2mFGokDQ30r_GXv7Y_PLdtxcUv144e-s,51 +pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc,, +pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/operations/install/editable_legacy.py,sha256=ee4kfJHNuzTdKItbfAsNOSEwq_vD7DRPGkBdK48yBhU,1354 +pip/_internal/operations/install/legacy.py,sha256=x7BG8kBm0K3JO6AR4sBl0zh2LOrfUaz7EdNt-keHBv4,4091 +pip/_internal/operations/install/wheel.py,sha256=QuQyCZE-XjuJjDYRixo40oUt2ucFhNmSrCbcXY7A9aE,27412 +pip/_internal/operations/prepare.py,sha256=LJP97jsuiCAaTGVIRrcINvxc1ntVsB45MoRbyMIukg4,24145 +pip/_internal/pyproject.py,sha256=Wm2ljdT6spC-tSdf1LBRaMYSJaXr1xUxV3OwdHCW9jc,6722 +pip/_internal/req/__init__.py,sha256=A7mUvT1KAcCYP3H7gUOTx2GRMlgoDur3H68Q0OJqM5A,2793 +pip/_internal/req/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/req/__pycache__/constructors.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_file.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_install.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_set.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc,, +pip/_internal/req/__pycache__/req_uninstall.cpython-310.pyc,, +pip/_internal/req/constructors.py,sha256=fXmtNI_J77JFP_HRvYcQW-1nKw3AiUu6Q3b1Nm8aMm0,16094 +pip/_internal/req/req_file.py,sha256=5N8OTouPCof-305StC2YK9HBxQMw-xO46skRoBPbkZo,17421 +pip/_internal/req/req_install.py,sha256=jU1HQBT_DnXZean7jY8wPNMhb6_CzdKHcilHFY_o-Fc,32524 +pip/_internal/req/req_set.py,sha256=kHYiLvkKRx21WaLTwOI-54Ng0SSzZZ9SE7FD0PsfvYA,7584 +pip/_internal/req/req_tracker.py,sha256=jK7JDu-Wt73X-gqozrFtgJVlUlnQo0P4IQ4x4_gPlfM,4117 +pip/_internal/req/req_uninstall.py,sha256=K2BHYRRJAfkSpFqcPzc9XfX2EvbhaRtQIPRFmMtUdfo,23814 +pip/_internal/resolution/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/__pycache__/base.cpython-310.pyc,, +pip/_internal/resolution/base.py,sha256=qlmh325SBVfvG6Me9gc5Nsh5sdwHBwzHBq6aEXtKsLA,583 +pip/_internal/resolution/legacy/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc,, +pip/_internal/resolution/legacy/resolver.py,sha256=b7bf5qL1ROg73sl8dhTvLdD1w5XF8xybBAF6eF_kz7c,18288 +pip/_internal/resolution/resolvelib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc,, +pip/_internal/resolution/resolvelib/base.py,sha256=u1O4fkvCO4mhmu5i32xrDv9AX5NgUci_eYVyBDQhTIM,5220 +pip/_internal/resolution/resolvelib/candidates.py,sha256=KR5jxZRSahByOABXbwrX-zNoawa7Gm9Iss-HrvrcvNw,18357 +pip/_internal/resolution/resolvelib/factory.py,sha256=0bbxnUSSjaeTmtIEgeeKtEqhEFfNhv3xpq7j9IaMq2c,28298 +pip/_internal/resolution/resolvelib/found_candidates.py,sha256=hvL3Hoa9VaYo-qEOZkBi2Iqw251UDxPz-uMHVaWmLpE,5705 +pip/_internal/resolution/resolvelib/provider.py,sha256=LzQQyzMVaZYAwLgKInbq-it6mbQL1gX0hGohz5Cr5wg,9915 +pip/_internal/resolution/resolvelib/reporter.py,sha256=3ZVVYrs5PqvLFJkGLcuXoMK5mTInFzl31xjUpDBpZZk,2526 +pip/_internal/resolution/resolvelib/requirements.py,sha256=B1ndvKPSuyyyTEXt9sKhbwminViSWnBrJa7qO2ln4Z0,5455 +pip/_internal/resolution/resolvelib/resolver.py,sha256=ucoVKHtwH6gkZjcfIVJbUiOIHLqJxeYlrKTMIJciYwM,11335 +pip/_internal/self_outdated_check.py,sha256=GKSatNlt2cz_CMGxu72FbUzuPaXpWOnIVKOOYIk0gvY,6849 +pip/_internal/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_internal/utils/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/utils/__pycache__/_log.cpython-310.pyc,, +pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc,, +pip/_internal/utils/__pycache__/compat.cpython-310.pyc,, +pip/_internal/utils/__pycache__/compatibility_tags.cpython-310.pyc,, +pip/_internal/utils/__pycache__/datetime.cpython-310.pyc,, +pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc,, +pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc,, +pip/_internal/utils/__pycache__/distutils_args.cpython-310.pyc,, +pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc,, +pip/_internal/utils/__pycache__/encoding.cpython-310.pyc,, +pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc,, +pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc,, +pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc,, +pip/_internal/utils/__pycache__/glibc.cpython-310.pyc,, +pip/_internal/utils/__pycache__/hashes.cpython-310.pyc,, +pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc,, +pip/_internal/utils/__pycache__/logging.cpython-310.pyc,, +pip/_internal/utils/__pycache__/misc.cpython-310.pyc,, +pip/_internal/utils/__pycache__/models.cpython-310.pyc,, +pip/_internal/utils/__pycache__/packaging.cpython-310.pyc,, +pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc,, +pip/_internal/utils/__pycache__/subprocess.cpython-310.pyc,, +pip/_internal/utils/__pycache__/temp_dir.cpython-310.pyc,, +pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc,, +pip/_internal/utils/__pycache__/urls.cpython-310.pyc,, +pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc,, +pip/_internal/utils/__pycache__/wheel.cpython-310.pyc,, +pip/_internal/utils/_log.py,sha256=-jHLOE_THaZz5BFcCnoSL9EYAtJ0nXem49s9of4jvKw,1015 +pip/_internal/utils/appdirs.py,sha256=swgcTKOm3daLeXTW6v5BUS2Ti2RvEnGRQYH_yDXklAo,1665 +pip/_internal/utils/compat.py,sha256=ACyBfLgj3_XG-iA5omEDrXqDM0cQKzi8h8HRBInzG6Q,1884 +pip/_internal/utils/compatibility_tags.py,sha256=ydin8QG8BHqYRsPY4OL6cmb44CbqXl1T0xxS97VhHkk,5377 +pip/_internal/utils/datetime.py,sha256=m21Y3wAtQc-ji6Veb6k_M5g6A0ZyFI4egchTdnwh-pQ,242 +pip/_internal/utils/deprecation.py,sha256=NKo8VqLioJ4nnXXGmW4KdasxF90EFHkZaHeX1fT08C8,3627 +pip/_internal/utils/direct_url_helpers.py,sha256=6F1tc2rcKaCZmgfVwsE6ObIe_Pux23mUVYA-2D9wCFc,3206 +pip/_internal/utils/distutils_args.py,sha256=mcAscyp80vTt3xAGTipnpgc83V-_wCvydNELVXLq7JI,1249 +pip/_internal/utils/egg_link.py,sha256=5MVlpz5LirT4iLQq86OYzjXaYF0D4Qk1dprEI7ThST4,2203 +pip/_internal/utils/encoding.py,sha256=bdZ3YgUpaOEBI5MP4-DEXiQarCW3V0rxw1kRz-TaU1Q,1169 +pip/_internal/utils/entrypoints.py,sha256=aPvCnQVi9Hdk35Kloww_D5ibjUpqxgqcJP8O9VuMZek,1055 +pip/_internal/utils/filesystem.py,sha256=rrl-rY1w8TYyKYndUyZlE9ffkQyA4-jI9x_59zXkn5s,5893 +pip/_internal/utils/filetypes.py,sha256=i8XAQ0eFCog26Fw9yV0Yb1ygAqKYB1w9Cz9n0fj8gZU,716 +pip/_internal/utils/glibc.py,sha256=tDfwVYnJCOC0BNVpItpy8CGLP9BjkxFHdl0mTS0J7fc,3110 +pip/_internal/utils/hashes.py,sha256=anpZfFGIT6HcIj2td9NHtE8AWg6GeAIhwpP8GPvZE0E,4811 +pip/_internal/utils/inject_securetransport.py,sha256=o-QRVMGiENrTJxw3fAhA7uxpdEdw6M41TjHYtSVRrcg,795 +pip/_internal/utils/logging.py,sha256=Rvght-fDXL70VWib1cpgZ3iU-kXODV98bNeLUlbqVto,11522 +pip/_internal/utils/misc.py,sha256=MdUB12BMhj73sEmskEutmPyWFaJB7asoPCfLzs_YeT0,19359 +pip/_internal/utils/models.py,sha256=5GoYU586SrxURMvDn_jBMJInitviJg4O5-iOU-6I0WY,1193 +pip/_internal/utils/packaging.py,sha256=5Wm6_x7lKrlqVjPI5MBN_RurcRHwVYoQ7Ksrs84de7s,2108 +pip/_internal/utils/setuptools_build.py,sha256=vNH9hQB9wT6d-h1hVQhBKw91jNeT42meHpVeii-urOI,5652 +pip/_internal/utils/subprocess.py,sha256=vIWGpet5ARBmZ2Qn4NEHNgzCOduqbPIuByZmhhmr6mM,9182 +pip/_internal/utils/temp_dir.py,sha256=zob3PYMVevONkheOMUp_4jDofrEY3HIu5DHK78cSspI,7662 +pip/_internal/utils/unpacking.py,sha256=HUFlMEyCa9dPwdLh6sWeh95DeKytV8rsOyKShEw9y6g,8906 +pip/_internal/utils/urls.py,sha256=AhaesUGl-9it6uvG6fsFPOr9ynFpGaTMk4t5XTX7Z_Q,1759 +pip/_internal/utils/virtualenv.py,sha256=4_48qMzCwB_F5jIK5BC_ua7uiAMVifmQWU9NdaGUoVA,3459 +pip/_internal/utils/wheel.py,sha256=lXOgZyTlOm5HmK8tw5iw0A3_5A6wRzsXHOaQkIvvloU,4549 +pip/_internal/vcs/__init__.py,sha256=UAqvzpbi0VbZo3Ub6skEeZAw-ooIZR-zX_WpCbxyCoU,596 +pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/bazaar.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/git.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/mercurial.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc,, +pip/_internal/vcs/__pycache__/versioncontrol.cpython-310.pyc,, +pip/_internal/vcs/bazaar.py,sha256=IGb5ca1xSZfgegRD2_JeyoZPrQQHs7lEYEIgpVsKpoU,3047 +pip/_internal/vcs/git.py,sha256=mjhwudCx9WlLNkxZ6_kOKmueF0rLoU2i1xeASKF6yiQ,18116 +pip/_internal/vcs/mercurial.py,sha256=Bzbd518Jsx-EJI0IhIobiQqiRsUv5TWYnrmRIFWE0Gw,5238 +pip/_internal/vcs/subversion.py,sha256=TEMRdwECvMcXakZX0pTNUep79kmBYkWDkWFkrYmcmac,11718 +pip/_internal/vcs/versioncontrol.py,sha256=KUOc-hN51em9jrqxKwUR3JnkgSE-xSOqMiiJcSaL6B8,22811 +pip/_internal/wheel_builder.py,sha256=65rOA8FSYt3c3HyqEw17uujjlCgqmoKEIv6rv9xN2NM,12307 +pip/_vendor/__init__.py,sha256=xjcBX0EP50pkaMdCssrsBXoZgo2hTtYxlcH1CIyA3T4,4708 +pip/_vendor/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/__pycache__/distro.cpython-310.pyc,, +pip/_vendor/__pycache__/six.cpython-310.pyc,, +pip/_vendor/__pycache__/typing_extensions.cpython-310.pyc,, +pip/_vendor/cachecontrol/__init__.py,sha256=1j_YQfjmiix6YyouLrftC6NzksAm8e8xGSjMKMRPIkM,465 +pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc,, +pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc,, +pip/_vendor/cachecontrol/_cmd.py,sha256=lxUXqfNTVx84zf6tcWbkLZHA6WVBRtJRpfeA9ZqhaAY,1379 +pip/_vendor/cachecontrol/adapter.py,sha256=ew9OYEQHEOjvGl06ZsuX8W3DAvHWsQKHwWAxISyGug8,5033 +pip/_vendor/cachecontrol/cache.py,sha256=eMS9Bn9JWQkHiIYA5GPRBqKVU95uS-yXkxrzpoafRig,917 +pip/_vendor/cachecontrol/caches/__init__.py,sha256=gGFOtIH8QDRvkP4YAfGIh-u9YYcGZVxwLM1-6e1mPNI,170 +pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc,, +pip/_vendor/cachecontrol/caches/file_cache.py,sha256=P2KHcNXiqxEW7fCq5KC-NYHGSk0nNR9NIKuN-vBTn-E,4251 +pip/_vendor/cachecontrol/caches/redis_cache.py,sha256=tu_YBV7EV8vdBRGazUErkoRqYYjSBmNcB8dZ7BNomqk,940 +pip/_vendor/cachecontrol/compat.py,sha256=LNx7vqBndYdHU8YuJt53ab_8rzMGTXVrvMb7CZJkxG0,778 +pip/_vendor/cachecontrol/controller.py,sha256=9DSEiV58Gx7Ce69fLCrRcpN-_sHzXTY4ol9bEviatR0,15625 +pip/_vendor/cachecontrol/filewrapper.py,sha256=X4BAQOO26GNOR7nH_fhTzAfeuct2rBQcx_15MyFBpcs,3946 +pip/_vendor/cachecontrol/heuristics.py,sha256=8kAyuZLSCyEIgQr6vbUwfhpqg9ows4mM0IV6DWazevI,4154 +pip/_vendor/cachecontrol/serialize.py,sha256=dlySaeA5U7Q5eHvjiObgo1M8j8_huVjfWjid7Aq-r8c,6783 +pip/_vendor/cachecontrol/wrapper.py,sha256=X3-KMZ20Ho3VtqyVaXclpeQpFzokR5NE8tZSfvKVaB8,774 +pip/_vendor/certifi/__init__.py,sha256=xWdRgntT3j1V95zkRipGOg_A1UfEju2FcpujhysZLRI,62 +pip/_vendor/certifi/__main__.py,sha256=1k3Cr95vCxxGRGDljrW3wMdpZdL3Nhf0u1n-k2qdsCY,255 +pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/certifi/__pycache__/core.cpython-310.pyc,, +pip/_vendor/certifi/cacert.pem,sha256=-og4Keu4zSpgL5shwfhd4kz0eUnVILzrGCi0zRy2kGw,265969 +pip/_vendor/certifi/core.py,sha256=CcwptmiI-3M50jIdO0HT6Fh6W_wqGsf8QcX9yfzvyuc,2791 +pip/_vendor/chardet/__init__.py,sha256=mWZaWmvZkhwfBEAT9O1Y6nRTfKzhT7FHhQTTAujbqUA,3271 +pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/big5prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/cp949prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/escsm.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/eucjpprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euckrprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/gb2312prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/hebrewprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langgreekmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langhungarianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langthaimodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/langturkishmodel.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/latin1prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcharsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcsgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/mbcssm.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sbcharsetprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sbcsgroupprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/sjisprober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/universaldetector.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/utf8prober.cpython-310.pyc,, +pip/_vendor/chardet/__pycache__/version.cpython-310.pyc,, +pip/_vendor/chardet/big5freq.py,sha256=D_zK5GyzoVsRes0HkLJziltFQX0bKCLOrFe9_xDvO_8,31254 +pip/_vendor/chardet/big5prober.py,sha256=kBxHbdetBpPe7xrlb-e990iot64g_eGSLd32lB7_h3M,1757 +pip/_vendor/chardet/chardistribution.py,sha256=3woWS62KrGooKyqz4zQSnjFbJpa6V7g02daAibTwcl8,9411 +pip/_vendor/chardet/charsetgroupprober.py,sha256=GZLReHP6FRRn43hvSOoGCxYamErKzyp6RgOQxVeC3kg,3839 +pip/_vendor/chardet/charsetprober.py,sha256=KSmwJErjypyj0bRZmC5F5eM7c8YQgLYIjZXintZNstg,5110 +pip/_vendor/chardet/cli/__init__.py,sha256=AbpHGcgLb-kRsJGnwFEktk7uzpZOCcBY74-YBdrKVGs,1 +pip/_vendor/chardet/cli/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/cli/__pycache__/chardetect.cpython-310.pyc,, +pip/_vendor/chardet/cli/chardetect.py,sha256=XK5zqjUG2a4-y6eLHZ8ThYcp6WWUrdlmELxNypcc2SE,2747 +pip/_vendor/chardet/codingstatemachine.py,sha256=VYp_6cyyki5sHgXDSZnXW4q1oelHc3cu9AyQTX7uug8,3590 +pip/_vendor/chardet/compat.py,sha256=40zr6wICZwknxyuLGGcIOPyve8DTebBCbbvttvnmp5Q,1200 +pip/_vendor/chardet/cp949prober.py,sha256=TZ434QX8zzBsnUvL_8wm4AQVTZ2ZkqEEQL_lNw9f9ow,1855 +pip/_vendor/chardet/enums.py,sha256=Aimwdb9as1dJKZaFNUH2OhWIVBVd6ZkJJ_WK5sNY8cU,1661 +pip/_vendor/chardet/escprober.py,sha256=kkyqVg1Yw3DIOAMJ2bdlyQgUFQhuHAW8dUGskToNWSc,3950 +pip/_vendor/chardet/escsm.py,sha256=RuXlgNvTIDarndvllNCk5WZBIpdCxQ0kcd9EAuxUh84,10510 +pip/_vendor/chardet/eucjpprober.py,sha256=iD8Jdp0ISRjgjiVN7f0e8xGeQJ5GM2oeZ1dA8nbSeUw,3749 +pip/_vendor/chardet/euckrfreq.py,sha256=-7GdmvgWez4-eO4SuXpa7tBiDi5vRXQ8WvdFAzVaSfo,13546 +pip/_vendor/chardet/euckrprober.py,sha256=MqFMTQXxW4HbzIpZ9lKDHB3GN8SP4yiHenTmf8g_PxY,1748 +pip/_vendor/chardet/euctwfreq.py,sha256=No1WyduFOgB5VITUA7PLyC5oJRNzRyMbBxaKI1l16MA,31621 +pip/_vendor/chardet/euctwprober.py,sha256=13p6EP4yRaxqnP4iHtxHOJ6R2zxHq1_m8hTRjzVZ95c,1747 +pip/_vendor/chardet/gb2312freq.py,sha256=JX8lsweKLmnCwmk8UHEQsLgkr_rP_kEbvivC4qPOrlc,20715 +pip/_vendor/chardet/gb2312prober.py,sha256=gGvIWi9WhDjE-xQXHvNIyrnLvEbMAYgyUSZ65HUfylw,1754 +pip/_vendor/chardet/hebrewprober.py,sha256=c3SZ-K7hvyzGY6JRAZxJgwJ_sUS9k0WYkvMY00YBYFo,13838 +pip/_vendor/chardet/jisfreq.py,sha256=vpmJv2Bu0J8gnMVRPHMFefTRvo_ha1mryLig8CBwgOg,25777 +pip/_vendor/chardet/jpcntx.py,sha256=PYlNqRUQT8LM3cT5FmHGP0iiscFlTWED92MALvBungo,19643 +pip/_vendor/chardet/langbulgarianmodel.py,sha256=rk9CJpuxO0bObboJcv6gNgWuosYZmd8qEEds5y7DS_Y,105697 +pip/_vendor/chardet/langgreekmodel.py,sha256=S-uNQ1ihC75yhBvSux24gLFZv3QyctMwC6OxLJdX-bw,99571 +pip/_vendor/chardet/langhebrewmodel.py,sha256=DzPP6TPGG_-PV7tqspu_d8duueqm7uN-5eQ0aHUw1Gg,98776 +pip/_vendor/chardet/langhungarianmodel.py,sha256=RtJH7DZdsmaHqyK46Kkmnk5wQHiJwJPPJSqqIlpeZRc,102498 +pip/_vendor/chardet/langrussianmodel.py,sha256=THqJOhSxiTQcHboDNSc5yofc2koXXQFHFyjtyuntUfM,131180 +pip/_vendor/chardet/langthaimodel.py,sha256=R1wXHnUMtejpw0JnH_JO8XdYasME6wjVqp1zP7TKLgg,103312 +pip/_vendor/chardet/langturkishmodel.py,sha256=rfwanTptTwSycE4-P-QasPmzd-XVYgevytzjlEzBBu8,95946 +pip/_vendor/chardet/latin1prober.py,sha256=S2IoORhFk39FEFOlSFWtgVybRiP6h7BlLldHVclNkU8,5370 +pip/_vendor/chardet/mbcharsetprober.py,sha256=AR95eFH9vuqSfvLQZN-L5ijea25NOBCoXqw8s5O9xLQ,3413 +pip/_vendor/chardet/mbcsgroupprober.py,sha256=h6TRnnYq2OxG1WdD5JOyxcdVpn7dG0q-vB8nWr5mbh4,2012 +pip/_vendor/chardet/mbcssm.py,sha256=SY32wVIF3HzcjY3BaEspy9metbNSKxIIB0RKPn7tjpI,25481 +pip/_vendor/chardet/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/chardet/metadata/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/chardet/metadata/__pycache__/languages.cpython-310.pyc,, +pip/_vendor/chardet/metadata/languages.py,sha256=41tLq3eLSrBEbEVVQpVGFq9K7o1ln9b1HpY1l0hCUQo,19474 +pip/_vendor/chardet/sbcharsetprober.py,sha256=nmyMyuxzG87DN6K3Rk2MUzJLMLR69MrWpdnHzOwVUwQ,6136 +pip/_vendor/chardet/sbcsgroupprober.py,sha256=hqefQuXmiFyDBArOjujH6hd6WFXlOD1kWCsxDhjx5Vc,4309 +pip/_vendor/chardet/sjisprober.py,sha256=IIt-lZj0WJqK4rmUZzKZP4GJlE8KUEtFYVuY96ek5MQ,3774 +pip/_vendor/chardet/universaldetector.py,sha256=DpZTXCX0nUHXxkQ9sr4GZxGB_hveZ6hWt3uM94cgWKs,12503 +pip/_vendor/chardet/utf8prober.py,sha256=IdD8v3zWOsB8OLiyPi-y_fqwipRFxV9Nc1eKBLSuIEw,2766 +pip/_vendor/chardet/version.py,sha256=A4CILFAd8MRVG1HoXPp45iK9RLlWyV73a1EtwE8Tvn8,242 +pip/_vendor/colorama/__init__.py,sha256=pCdErryzLSzDW5P-rRPBlPLqbBtIRNJB6cMgoeJns5k,239 +pip/_vendor/colorama/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/ansi.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/ansitowin32.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/initialise.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/win32.cpython-310.pyc,, +pip/_vendor/colorama/__pycache__/winterm.cpython-310.pyc,, +pip/_vendor/colorama/ansi.py,sha256=Top4EeEuaQdBWdteKMEcGOTeKeF19Q-Wo_6_Cj5kOzQ,2522 +pip/_vendor/colorama/ansitowin32.py,sha256=yV7CEmCb19MjnJKODZEEvMH_fnbJhwnpzo4sxZuGXmA,10517 +pip/_vendor/colorama/initialise.py,sha256=PprovDNxMTrvoNHFcL2NZjpH2XzDc8BLxLxiErfUl4k,1915 +pip/_vendor/colorama/win32.py,sha256=bJ8Il9jwaBN5BJ8bmN6FoYZ1QYuMKv2j8fGrXh7TJjw,5404 +pip/_vendor/colorama/winterm.py,sha256=2y_2b7Zsv34feAsP67mLOVc-Bgq51mdYGo571VprlrM,6438 +pip/_vendor/distlib/__init__.py,sha256=y-rKDBB99QJ3N1PJGAXQo89ou615aAeBjV2brBxKgM8,581 +pip/_vendor/distlib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/database.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/index.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/locators.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/manifest.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/markers.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/metadata.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/resources.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/scripts.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/util.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/version.cpython-310.pyc,, +pip/_vendor/distlib/__pycache__/wheel.cpython-310.pyc,, +pip/_vendor/distlib/compat.py,sha256=tfoMrj6tujk7G4UC2owL6ArgDuCKabgBxuJRGZSmpko,41259 +pip/_vendor/distlib/database.py,sha256=hBO2dgvDF7W3BqX8Ecns6p_RPerCaIbNKbdUOuJ1a14,51456 +pip/_vendor/distlib/index.py,sha256=UfcimNW19AB7IKWam4VaJbXuCBvArKfSxhV16EwavzE,20739 +pip/_vendor/distlib/locators.py,sha256=4D2hEcHePNuW4mXEZ3Cuw12eW-vbO-4WuAlbf4h5K7w,51963 +pip/_vendor/distlib/manifest.py,sha256=nQEhYmgoreaBZzyFzwYsXxJARu3fo4EkunU163U16iE,14811 +pip/_vendor/distlib/markers.py,sha256=TpHHHLgkzyT7YHbwj-2i6weRaq-Ivy2-MUnrDkjau-U,5058 +pip/_vendor/distlib/metadata.py,sha256=vatoxFdmBr6ie-sTVXVNPOPG3uwMDWJTnEECnm7xDCw,39109 +pip/_vendor/distlib/resources.py,sha256=LwbPksc0A1JMbi6XnuPdMBUn83X7BPuFNWqPGEKI698,10820 +pip/_vendor/distlib/scripts.py,sha256=tjSwENINeV91ROZxec5zTSMRg2jEeKc4enyCHDzNvEE,17720 +pip/_vendor/distlib/util.py,sha256=31dPXn3Rfat0xZLeVoFpuniyhe6vsbl9_QN-qd9Lhlk,66262 +pip/_vendor/distlib/version.py,sha256=WG__LyAa2GwmA6qSoEJtvJE8REA1LZpbSizy8WvhJLk,23513 +pip/_vendor/distlib/wheel.py,sha256=pj5VVCjqZMcHvgizORWwAFPS7hOk61CZ59dxP8laQ4E,42943 +pip/_vendor/distro.py,sha256=O1EeHMq1-xAO373JI2_6pYEtd09yEkxtmrYkdY-9S-w,48414 +pip/_vendor/html5lib/__init__.py,sha256=BYzcKCqeEii52xDrqBFruhnmtmkiuHXFyFh-cglQ8mk,1160 +pip/_vendor/html5lib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_ihatexml.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_inputstream.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_tokenizer.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/_utils.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/constants.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/html5parser.cpython-310.pyc,, +pip/_vendor/html5lib/__pycache__/serializer.cpython-310.pyc,, +pip/_vendor/html5lib/_ihatexml.py,sha256=ifOwF7pXqmyThIXc3boWc96s4MDezqRrRVp7FwDYUFs,16728 +pip/_vendor/html5lib/_inputstream.py,sha256=jErNASMlkgs7MpOM9Ve_VdLDJyFFweAjLuhVutZz33U,32353 +pip/_vendor/html5lib/_tokenizer.py,sha256=04mgA2sNTniutl2fxFv-ei5bns4iRaPxVXXHh_HrV_4,77040 +pip/_vendor/html5lib/_trie/__init__.py,sha256=nqfgO910329BEVJ5T4psVwQtjd2iJyEXQ2-X8c1YxwU,109 +pip/_vendor/html5lib/_trie/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/_base.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/__pycache__/py.cpython-310.pyc,, +pip/_vendor/html5lib/_trie/_base.py,sha256=CaybYyMro8uERQYjby2tTeSUatnWDfWroUN9N7ety5w,1013 +pip/_vendor/html5lib/_trie/py.py,sha256=wXmQLrZRf4MyWNyg0m3h81m9InhLR7GJ002mIIZh-8o,1775 +pip/_vendor/html5lib/_utils.py,sha256=Dx9AKntksRjFT1veBj7I362pf5OgIaT0zglwq43RnfU,4931 +pip/_vendor/html5lib/constants.py,sha256=Ll-yzLU_jcjyAI_h57zkqZ7aQWE5t5xA4y_jQgoUUhw,83464 +pip/_vendor/html5lib/filters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/html5lib/filters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/alphabeticalattributes.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/inject_meta_charset.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/lint.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/optionaltags.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/sanitizer.cpython-310.pyc,, +pip/_vendor/html5lib/filters/__pycache__/whitespace.cpython-310.pyc,, +pip/_vendor/html5lib/filters/alphabeticalattributes.py,sha256=lViZc2JMCclXi_5gduvmdzrRxtO5Xo9ONnbHBVCsykU,919 +pip/_vendor/html5lib/filters/base.py,sha256=z-IU9ZAYjpsVsqmVt7kuWC63jR11hDMr6CVrvuao8W0,286 +pip/_vendor/html5lib/filters/inject_meta_charset.py,sha256=egDXUEHXmAG9504xz0K6ALDgYkvUrC2q15YUVeNlVQg,2945 +pip/_vendor/html5lib/filters/lint.py,sha256=jk6q56xY0ojiYfvpdP-OZSm9eTqcAdRqhCoPItemPYA,3643 +pip/_vendor/html5lib/filters/optionaltags.py,sha256=8lWT75J0aBOHmPgfmqTHSfPpPMp01T84NKu0CRedxcE,10588 +pip/_vendor/html5lib/filters/sanitizer.py,sha256=m6oGmkBhkGAnn2nV6D4hE78SCZ6WEnK9rKdZB3uXBIc,26897 +pip/_vendor/html5lib/filters/whitespace.py,sha256=8eWqZxd4UC4zlFGW6iyY6f-2uuT8pOCSALc3IZt7_t4,1214 +pip/_vendor/html5lib/html5parser.py,sha256=anr-aXre_ImfrkQ35c_rftKXxC80vJCREKe06Tq15HA,117186 +pip/_vendor/html5lib/serializer.py,sha256=_PpvcZF07cwE7xr9uKkZqh5f4UEaI8ltCU2xPJzaTpk,15759 +pip/_vendor/html5lib/treeadapters/__init__.py,sha256=A0rY5gXIe4bJOiSGRO_j_tFhngRBO8QZPzPtPw5dFzo,679 +pip/_vendor/html5lib/treeadapters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/genshi.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/__pycache__/sax.cpython-310.pyc,, +pip/_vendor/html5lib/treeadapters/genshi.py,sha256=CH27pAsDKmu4ZGkAUrwty7u0KauGLCZRLPMzaO3M5vo,1715 +pip/_vendor/html5lib/treeadapters/sax.py,sha256=BKS8woQTnKiqeffHsxChUqL4q2ZR_wb5fc9MJ3zQC8s,1776 +pip/_vendor/html5lib/treebuilders/__init__.py,sha256=AysSJyvPfikCMMsTVvaxwkgDieELD5dfR8FJIAuq7hY,3592 +pip/_vendor/html5lib/treebuilders/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/dom.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/__pycache__/etree_lxml.cpython-310.pyc,, +pip/_vendor/html5lib/treebuilders/base.py,sha256=z-o51vt9r_l2IDG5IioTOKGzZne4Fy3_Fc-7ztrOh4I,14565 +pip/_vendor/html5lib/treebuilders/dom.py,sha256=22whb0C71zXIsai5mamg6qzBEiigcBIvaDy4Asw3at0,8925 +pip/_vendor/html5lib/treebuilders/etree.py,sha256=w5ZFpKk6bAxnrwD2_BrF5EVC7vzz0L3LMi9Sxrbc_8w,12836 +pip/_vendor/html5lib/treebuilders/etree_lxml.py,sha256=9gqDjs-IxsPhBYa5cpvv2FZ1KZlG83Giusy2lFmvIkE,14766 +pip/_vendor/html5lib/treewalkers/__init__.py,sha256=OBPtc1TU5mGyy18QDMxKEyYEz0wxFUUNj5v0-XgmYhY,5719 +pip/_vendor/html5lib/treewalkers/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/base.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/dom.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/etree_lxml.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/__pycache__/genshi.cpython-310.pyc,, +pip/_vendor/html5lib/treewalkers/base.py,sha256=ouiOsuSzvI0KgzdWP8PlxIaSNs9falhbiinAEc_UIJY,7476 +pip/_vendor/html5lib/treewalkers/dom.py,sha256=EHyFR8D8lYNnyDU9lx_IKigVJRyecUGua0mOi7HBukc,1413 +pip/_vendor/html5lib/treewalkers/etree.py,sha256=xo1L5m9VtkfpFJK0pFmkLVajhqYYVisVZn3k9kYpPkI,4551 +pip/_vendor/html5lib/treewalkers/etree_lxml.py,sha256=_b0LAVWLcVu9WaU_-w3D8f0IRSpCbjf667V-3NRdhTw,6357 +pip/_vendor/html5lib/treewalkers/genshi.py,sha256=4D2PECZ5n3ZN3qu3jMl9yY7B81jnQApBQSVlfaIuYbA,2309 +pip/_vendor/idna/__init__.py,sha256=KJQN1eQBr8iIK5SKrJ47lXvxG0BJ7Lm38W4zT0v_8lk,849 +pip/_vendor/idna/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/codec.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/core.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/idnadata.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/intranges.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/package_data.cpython-310.pyc,, +pip/_vendor/idna/__pycache__/uts46data.cpython-310.pyc,, +pip/_vendor/idna/codec.py,sha256=6ly5odKfqrytKT9_7UrlGklHnf1DSK2r9C6cSM4sa28,3374 +pip/_vendor/idna/compat.py,sha256=0_sOEUMT4CVw9doD3vyRhX80X19PwqFoUBs7gWsFME4,321 +pip/_vendor/idna/core.py,sha256=RFIkY-HhFZaDoBEFjGwyGd_vWI04uOAQjnzueMWqwOU,12795 +pip/_vendor/idna/idnadata.py,sha256=fzMzkCea2xieVxcrjngJ-2pLsKQNejPCZFlBajIuQdw,44025 +pip/_vendor/idna/intranges.py,sha256=YBr4fRYuWH7kTKS2tXlFjM24ZF1Pdvcir-aywniInqg,1881 +pip/_vendor/idna/package_data.py,sha256=szxQhV0ZD0nKJ84Kuobw3l8q4_KeCyXjFRdpwIpKZmw,21 +pip/_vendor/idna/uts46data.py,sha256=o-D7V-a0fOLZNd7tvxof6MYfUd0TBZzE2bLR5XO67xU,204400 +pip/_vendor/msgpack/__init__.py,sha256=2gJwcsTIaAtCM0GMi2rU-_Y6kILeeQuqRkrQ22jSANc,1118 +pip/_vendor/msgpack/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/_version.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/ext.cpython-310.pyc,, +pip/_vendor/msgpack/__pycache__/fallback.cpython-310.pyc,, +pip/_vendor/msgpack/_version.py,sha256=JpTcnRd3YUioA24NDtDZbLW0Nhl2yA-N1Rq2lLDBB-g,20 +pip/_vendor/msgpack/exceptions.py,sha256=dCTWei8dpkrMsQDcjQk74ATl9HsIBH0ybt8zOPNqMYc,1081 +pip/_vendor/msgpack/ext.py,sha256=4l356Y4sVEcvCla2dh_cL57vh4GMhZfa3kuWHFHYz6A,6088 +pip/_vendor/msgpack/fallback.py,sha256=L5jriXysURbf6rPbbHbvXgvoFrKZiryIBmujMTcrf3A,34475 +pip/_vendor/packaging/__about__.py,sha256=ugASIO2w1oUyH8_COqQ2X_s0rDhjbhQC3yJocD03h2c,661 +pip/_vendor/packaging/__init__.py,sha256=b9Kk5MF7KxhhLgcDmiUWukN-LatWFxPdNug0joPhHSk,497 +pip/_vendor/packaging/__pycache__/__about__.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_manylinux.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_musllinux.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/_structures.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/markers.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/requirements.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/specifiers.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/tags.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/utils.cpython-310.pyc,, +pip/_vendor/packaging/__pycache__/version.cpython-310.pyc,, +pip/_vendor/packaging/_manylinux.py,sha256=XcbiXB-qcjv3bcohp6N98TMpOP4_j3m-iOA8ptK2GWY,11488 +pip/_vendor/packaging/_musllinux.py,sha256=_KGgY_qc7vhMGpoqss25n2hiLCNKRtvz9mCrS7gkqyc,4378 +pip/_vendor/packaging/_structures.py,sha256=q3eVNmbWJGG_S0Dit_S3Ao8qQqz_5PYTXFAKBZe5yr4,1431 +pip/_vendor/packaging/markers.py,sha256=AJBOcY8Oq0kYc570KuuPTkvuqjAlhufaE2c9sCUbm64,8487 +pip/_vendor/packaging/requirements.py,sha256=NtDlPBtojpn1IUC85iMjPNsUmufjpSlwnNA-Xb4m5NA,4676 +pip/_vendor/packaging/specifiers.py,sha256=LRQ0kFsHrl5qfcFNEEJrIFYsnIHQUJXY9fIsakTrrqE,30110 +pip/_vendor/packaging/tags.py,sha256=lmsnGNiJ8C4D_Pf9PbM0qgbZvD9kmB9lpZBQUZa3R_Y,15699 +pip/_vendor/packaging/utils.py,sha256=dJjeat3BS-TYn1RrUFVwufUMasbtzLfYRoy_HXENeFQ,4200 +pip/_vendor/packaging/version.py,sha256=_fLRNrFrxYcHVfyo8vk9j8s6JM8N_xsSxVFr6RJyco8,14665 +pip/_vendor/pep517/__init__.py,sha256=Y1bATL2qbFNN6M_DQa4yyrwqjpIiL-j9T6kBmR0DS14,130 +pip/_vendor/pep517/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/build.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/check.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/colorlog.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/dirtools.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/envbuild.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/meta.cpython-310.pyc,, +pip/_vendor/pep517/__pycache__/wrappers.cpython-310.pyc,, +pip/_vendor/pep517/build.py,sha256=2bar6EdjwIz2Dlfy94qdxn3oA9mVnnny40mfoT5f-qI,3457 +pip/_vendor/pep517/check.py,sha256=bCORq1WrHjhpTONa-zpAqG0EB9rHNuhO1ORu6DsDuL8,6084 +pip/_vendor/pep517/colorlog.py,sha256=Tk9AuYm_cLF3BKTBoSTJt9bRryn0aFojIQOwbfVUTxQ,4098 +pip/_vendor/pep517/compat.py,sha256=NmLImE5oiDT3gbEhJ4w7xeoMFcpAPrGu_NltBytSJUY,1253 +pip/_vendor/pep517/dirtools.py,sha256=2mkAkAL0mRz_elYFjRKuekTJVipH1zTn4tbf1EDev84,1129 +pip/_vendor/pep517/envbuild.py,sha256=zFde--rmzjXMLXcm7SA_3hDtgk5VCTA8hjpk88RbF6E,6100 +pip/_vendor/pep517/in_process/__init__.py,sha256=MyWoAi8JHdcBv7yXuWpUSVADbx6LSB9rZh7kTIgdA8Y,563 +pip/_vendor/pep517/in_process/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pep517/in_process/__pycache__/_in_process.cpython-310.pyc,, +pip/_vendor/pep517/in_process/_in_process.py,sha256=D3waguyNSGcwosociD5USfcycYr2RCzCjYtxX5UHQmQ,11201 +pip/_vendor/pep517/meta.py,sha256=8mnM5lDnT4zXQpBTliJbRGfesH7iioHwozbDxALPS9Y,2463 +pip/_vendor/pep517/wrappers.py,sha256=impq7Cz_LL1iDF1iiOzYWB4MaEu6O6Gps7TJ5qsJz1Q,13429 +pip/_vendor/pkg_resources/__init__.py,sha256=NnpQ3g6BCHzpMgOR_OLBmYtniY4oOzdKpwqghfq_6ug,108287 +pip/_vendor/pkg_resources/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pkg_resources/__pycache__/py31compat.cpython-310.pyc,, +pip/_vendor/pkg_resources/py31compat.py,sha256=CRk8fkiPRDLsbi5pZcKsHI__Pbmh_94L8mr9Qy9Ab2U,562 +pip/_vendor/platformdirs/__init__.py,sha256=Aizpxewwd4nY63Gqw-Od1Rso9Ah4bSoc6rkx-GBRu2Y,12676 +pip/_vendor/platformdirs/__main__.py,sha256=ZmsnTxEOxtTvwa-Y_Vfab_JN3X4XCVeN8X0yyy9-qnc,1176 +pip/_vendor/platformdirs/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/android.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/api.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/macos.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/unix.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/version.cpython-310.pyc,, +pip/_vendor/platformdirs/__pycache__/windows.cpython-310.pyc,, +pip/_vendor/platformdirs/android.py,sha256=xhlD4NmrKCARe5lgnpBGYo4lOYxEOBOByNDNYy91gEE,4012 +pip/_vendor/platformdirs/api.py,sha256=MXKHXOL3eh_-trSok-JUTjAR_zjmmKF3rjREVABjP8s,4910 +pip/_vendor/platformdirs/macos.py,sha256=-3UXQewbT0yMhMdkzRXfXGAntmLIH7Qt4a9Hlf8I5_Y,2655 +pip/_vendor/platformdirs/unix.py,sha256=b4aVYTz0qZ50HntwOXo8r6tp82jAa3qTjxw-WlnC2yc,6910 +pip/_vendor/platformdirs/version.py,sha256=bXzLJCe23FNQRQrf7ZRWKejxWnct_wft7dxdkMGT33E,80 +pip/_vendor/platformdirs/windows.py,sha256=ISruopR5UGBePC0BxCxXevkZYfjJsIZc49YWU5iYfQ4,6439 +pip/_vendor/progress/__init__.py,sha256=1HejNZtv2ouUNQeStUDAtZrtwkz_3FmYKQ476hJ7zOs,5294 +pip/_vendor/progress/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/bar.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/colors.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/counter.cpython-310.pyc,, +pip/_vendor/progress/__pycache__/spinner.cpython-310.pyc,, +pip/_vendor/progress/bar.py,sha256=GbedY0oZ-Q1duXjmvVLO0tSf-uTSH7hJ3zzyI91Esws,2942 +pip/_vendor/progress/colors.py,sha256=cCYXQnYFYVmQKKmYEbQ_lj6SPSFzdw4FN98F2x2kR-U,2655 +pip/_vendor/progress/counter.py,sha256=zYt9DWH0_05s8Q9TrJwHVud-WwsyyaR3PwYtk5hxwwQ,1613 +pip/_vendor/progress/spinner.py,sha256=u5ElzW94XEiLGH-aAlr54VJtKfeK745xr6UfGvvflzU,1461 +pip/_vendor/pygments/__init__.py,sha256=CAmA9UthykwxvtutUcH0IxqtiyQcSg6CmYdM-jKlcRY,3002 +pip/_vendor/pygments/__main__.py,sha256=X7rGLMUC54EXgO14FZ9goKXZDmhPzKXTsUglmb_McIU,353 +pip/_vendor/pygments/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/cmdline.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/console.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/filter.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/formatter.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/lexer.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/modeline.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/plugin.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/regexopt.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/scanner.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/sphinxext.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/style.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/token.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/unistring.cpython-310.pyc,, +pip/_vendor/pygments/__pycache__/util.cpython-310.pyc,, +pip/_vendor/pygments/cmdline.py,sha256=XpsyWgErcSqHC7rXiYKLF3Y61Uy8SR2DNQDDhZGuezg,23408 +pip/_vendor/pygments/console.py,sha256=QZXBUAkyl4dPLQ1e6XHjQu3mmXBWvuGQwsQT2q1mtCY,1697 +pip/_vendor/pygments/filter.py,sha256=35iMZiB1rcuogxokm92kViB2DPXPp_wWoxWuMmwvvzY,1938 +pip/_vendor/pygments/filters/__init__.py,sha256=-veOimzCyYGEARru2Dfo6ofSYcZ8tGsIVuMprtaZQ24,40292 +pip/_vendor/pygments/filters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/formatter.py,sha256=zSBbX2U_OOriy7SJvSTK6OAxjuXtROWxQlNpJEJZjBA,2917 +pip/_vendor/pygments/formatters/__init__.py,sha256=fjkYDy5-F998XczKi0ymHFayr5ObIRLHF8cgp9k8kpA,5119 +pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/bbcode.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/groff.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/html.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/img.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/irc.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/latex.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/other.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/pangomarkup.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/rtf.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/svg.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal.cpython-310.pyc,, +pip/_vendor/pygments/formatters/__pycache__/terminal256.cpython-310.pyc,, +pip/_vendor/pygments/formatters/_mapping.py,sha256=3A1rYSjYN9MLduCFWy2_mYhllPVpwlw55anRYnPXX8w,6516 +pip/_vendor/pygments/formatters/bbcode.py,sha256=cSKMOioUnE4TzvCCsK4IbJ6G78W07ZwHtkz4V1Wte0U,3314 +pip/_vendor/pygments/formatters/groff.py,sha256=ULgMKvGeLswX0KZn3IBp0p0U3rruiSHBtpl6O5qbqLs,5005 +pip/_vendor/pygments/formatters/html.py,sha256=0jM7Jc4xA4tsjmPq35uklm_En_OVdcNb0__SEXp2pDQ,35330 +pip/_vendor/pygments/formatters/img.py,sha256=r4iag_jCfyv_LhIt-1fRDeVEEoAfVJzkD9nZChIwiS8,21819 +pip/_vendor/pygments/formatters/irc.py,sha256=gi_IeIZeNaTfTMtvseLigZdS6lNicN7r7O7rnI6myo0,5871 +pip/_vendor/pygments/formatters/latex.py,sha256=qZUerrHt2Nn2aB4gJcdqj99qBkIxl_1v1ukYsf230Gk,18930 +pip/_vendor/pygments/formatters/other.py,sha256=Q01LtkqPZ8m_EYdgMVzXPUGjHoL00lXI3By97wzytYU,5073 +pip/_vendor/pygments/formatters/pangomarkup.py,sha256=ZpjALTSuGFwviJd5kOYwr-1NgqxCX3XRJrjXC7x1UbQ,2212 +pip/_vendor/pygments/formatters/rtf.py,sha256=qh7-z_wbUsTY6z7fZUGrYECYBlWB0wEdBwIZVEVybL0,5014 +pip/_vendor/pygments/formatters/svg.py,sha256=T7Jj004I3JUPOr48aAhQ368K2qWCciUyMQ2tdU-LB-4,7335 +pip/_vendor/pygments/formatters/terminal.py,sha256=cRD5hitINOkYlGZo9ma252vpJYPSGNgLivrsm6zGyec,4674 +pip/_vendor/pygments/formatters/terminal256.py,sha256=Bvz9zZL3UWc94TDm1GhKMI4x0BTit0XplhyRL0zmtkw,11753 +pip/_vendor/pygments/lexer.py,sha256=ECXWlEsbRnKs_njozZns6BGQ4riTMzct_BzAr3zV6dY,31937 +pip/_vendor/pygments/lexers/__init__.py,sha256=6Ds0GVBP3jrIU02wmjRdpoL4eFGhwT2IVD1zf3cV5_Y,11307 +pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-310.pyc,, +pip/_vendor/pygments/lexers/__pycache__/python.cpython-310.pyc,, +pip/_vendor/pygments/lexers/_mapping.py,sha256=jAxmvh5wvNkD-p3Fh6E7hY_B0sGbcxWRfseT6iq7ex4,70032 +pip/_vendor/pygments/lexers/python.py,sha256=LXnk43Lcngqn9xj6eRqdk2f73oF4kHZWiwgHMM_RlVM,52776 +pip/_vendor/pygments/modeline.py,sha256=37fen3cf1moCz4vMVJqX41eAQCmj8pzUchikgPcHp-U,986 +pip/_vendor/pygments/plugin.py,sha256=zGSig3S7QX-3o6RDxd4_Uvice_t25l_BN9aQQ9k8vmU,1727 +pip/_vendor/pygments/regexopt.py,sha256=mj8Fgu3sT0d5PZwRwDLexEvVOQbuHeosubQnqVwgiqs,3072 +pip/_vendor/pygments/scanner.py,sha256=nGoHy-Npk2ylUd4bws_CJN1hK785Xqo8e0teRmNX2jo,3091 +pip/_vendor/pygments/sphinxext.py,sha256=FZ2puvLe2Bztqtj6UJvQd7D8TvtOZ1GsfRJObvH59tE,4630 +pip/_vendor/pygments/style.py,sha256=lGyan5bU42q1kGMfFqafwL3g1j5EurTvfkv8vdP7NzQ,6257 +pip/_vendor/pygments/styles/__init__.py,sha256=Qx2zq6ufbDNE2cTp51M-s9zW-sDE-KLIqFw31qr3Bhg,3252 +pip/_vendor/pygments/styles/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pygments/token.py,sha256=lNPgeaQTzu2DEUi6n_lxAIU7uy4DVj8LMI3nSVnTjks,6143 +pip/_vendor/pygments/unistring.py,sha256=Xs0FzOzE0l0iWRoTlcgi-Q_kAMdF5Gt5FL_goGKJc98,63188 +pip/_vendor/pygments/util.py,sha256=s9n8BQXIxG3lIwCPWv5-ci8yhaqq5JbEVK9v8Z-8_3I,9123 +pip/_vendor/pyparsing/__init__.py,sha256=jXheGTFT1b6r_4WxuOE0uVUqiouLJ3WHzOScpLieRgQ,9107 +pip/_vendor/pyparsing/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/actions.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/common.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/core.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/helpers.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/results.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/testing.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/unicode.cpython-310.pyc,, +pip/_vendor/pyparsing/__pycache__/util.cpython-310.pyc,, +pip/_vendor/pyparsing/actions.py,sha256=60v7mETOBzc01YPH_qQD5isavgcSJpAfIKpzgjM3vaU,6429 +pip/_vendor/pyparsing/common.py,sha256=lFL97ooIeR75CmW5hjURZqwDCTgruqltcTCZ-ulLO2Q,12936 +pip/_vendor/pyparsing/core.py,sha256=GtQsD06HlwKPc7M8K8hyOuOW-cRnd87AxAHq-ad5lEk,212248 +pip/_vendor/pyparsing/diagram/__init__.py,sha256=h0gsUwmo5N3shgvfXVQTtqvTpUAv-ZdQjSQ6IUJmsxY,22165 +pip/_vendor/pyparsing/diagram/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/pyparsing/exceptions.py,sha256=H4D9gqMavqmAFSsdrU_J6bO-jA-T-A7yvtXWZpooIUA,9030 +pip/_vendor/pyparsing/helpers.py,sha256=kqpIZFG-y0fQ3g_TmloYllo9we6YCYiewZMXIK0y5wc,38299 +pip/_vendor/pyparsing/results.py,sha256=4D-oURF1cLeL7k0d3zMqUuWH_gTjop_OrZwik9O0HXU,25339 +pip/_vendor/pyparsing/testing.py,sha256=szs8AKZREZMhL0y0vsMfaTVAnpqPHetg6VKJBNmc4QY,13388 +pip/_vendor/pyparsing/unicode.py,sha256=IR-ioeGY29cZ49tG8Ts7ITPWWNP5G2DcZs58oa8zn44,10381 +pip/_vendor/pyparsing/util.py,sha256=kq772O5YSeXOSdP-M31EWpbH_ayj7BMHImBYo9xPD5M,6805 +pip/_vendor/requests/__init__.py,sha256=6IUFQM6K9V2NIu4fe4LtUsN21-TFbw_w3EfPpdUN-qc,5130 +pip/_vendor/requests/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/__version__.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/_internal_utils.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/adapters.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/api.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/auth.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/certs.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/compat.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/cookies.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/help.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/hooks.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/models.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/packages.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/sessions.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/status_codes.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/structures.cpython-310.pyc,, +pip/_vendor/requests/__pycache__/utils.cpython-310.pyc,, +pip/_vendor/requests/__version__.py,sha256=q8miOQaomOv3S74lK4eQs1zZ5jwcnOusyEU-M2idhts,441 +pip/_vendor/requests/_internal_utils.py,sha256=Zx3PnEUccyfsB-ie11nZVAW8qClJy0gx1qNME7rgT18,1096 +pip/_vendor/requests/adapters.py,sha256=WazYJQ_b2LHhNDb_y0hscNlWVsSe5ca5I3pymPrer5w,21861 +pip/_vendor/requests/api.py,sha256=hjuoP79IAEmX6Dysrw8t032cLfwLHxbI_wM4gC5G9t0,6402 +pip/_vendor/requests/auth.py,sha256=OMoJIVKyRLy9THr91y8rxysZuclwPB-K1Xg1zBomUhQ,10207 +pip/_vendor/requests/certs.py,sha256=nXRVq9DtGmv_1AYbwjTu9UrgAcdJv05ZvkNeaoLOZxY,465 +pip/_vendor/requests/compat.py,sha256=N1281mkcTluMjKqCSLf88LR6HNOygEhS1TbR9LLsoVY,2114 +pip/_vendor/requests/cookies.py,sha256=Y-bKX6TvW3FnYlE6Au0SXtVVWcaNdFvuAwQxw-G0iTI,18430 +pip/_vendor/requests/exceptions.py,sha256=VcpBXOL-9JYhNbK8OZxCIImBgpQSXJlUelDPf1f-pmM,3446 +pip/_vendor/requests/help.py,sha256=dyhe3lcmHXnFCzDiZVjcGmVvvO_jtsfAm-AC542ndw8,3972 +pip/_vendor/requests/hooks.py,sha256=QReGyy0bRcr5rkwCuObNakbYsc7EkiKeBwG4qHekr2Q,757 +pip/_vendor/requests/models.py,sha256=7pzscX_47qxx7-zEaBWGxMoB33Vdf6HLoUKZh1ktEvM,35116 +pip/_vendor/requests/packages.py,sha256=njJmVifY4aSctuW3PP5EFRCxjEwMRDO6J_feG2dKWsI,695 +pip/_vendor/requests/sessions.py,sha256=Zu-Y9YPlwTIsyFx1hvIrc3ziyeFpuFPqcOuSuz8BNWs,29835 +pip/_vendor/requests/status_codes.py,sha256=gT79Pbs_cQjBgp-fvrUgg1dn2DQO32bDj4TInjnMPSc,4188 +pip/_vendor/requests/structures.py,sha256=msAtr9mq1JxHd-JRyiILfdFlpbJwvvFuP3rfUQT_QxE,3005 +pip/_vendor/requests/utils.py,sha256=siud-FQ6xgKFbL49DRvAb3PMQMMHoeCL_TCmuHh9AUU,33301 +pip/_vendor/resolvelib/__init__.py,sha256=UL-B2BDI0_TRIqkfGwLHKLxY-LjBlomz7941wDqzB1I,537 +pip/_vendor/resolvelib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/providers.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/reporters.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/resolvers.cpython-310.pyc,, +pip/_vendor/resolvelib/__pycache__/structs.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/resolvelib/compat/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/__pycache__/collections_abc.cpython-310.pyc,, +pip/_vendor/resolvelib/compat/collections_abc.py,sha256=uy8xUZ-NDEw916tugUXm8HgwCGiMO0f-RcdnpkfXfOs,156 +pip/_vendor/resolvelib/providers.py,sha256=roVmFBItQJ0TkhNua65h8LdNny7rmeqVEXZu90QiP4o,5872 +pip/_vendor/resolvelib/reporters.py,sha256=fW91NKf-lK8XN7i6Yd_rczL5QeOT3sc6AKhpaTEnP3E,1583 +pip/_vendor/resolvelib/resolvers.py,sha256=2wYzVGBGerbmcIpH8cFmgSKgLSETz8jmwBMGjCBMHG4,17592 +pip/_vendor/resolvelib/structs.py,sha256=IVIYof6sA_N4ZEiE1C1UhzTX495brCNnyCdgq6CYq28,4794 +pip/_vendor/rich/__init__.py,sha256=wF1th4JGBCVC02xfaw8j6P2MrFcJaQJL72scKtEmDYQ,5804 +pip/_vendor/rich/__main__.py,sha256=vd1PP-o7_1un-ThdgMU9LHV-D8z56yz_-fryczn38eE,8810 +pip/_vendor/rich/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/__main__.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_cell_widths.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_emoji_codes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_emoji_replace.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_extension.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_inspect.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_log_render.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_loop.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_lru_cache.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_palettes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_pick.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_ratio.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_spinners.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_stack.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_timer.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_windows.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/_wrap.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/abc.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/align.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/ansi.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/bar.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/box.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/cells.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/color.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/color_triplet.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/columns.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/console.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/constrain.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/containers.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/control.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/default_styles.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/diagnose.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/emoji.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/errors.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/file_proxy.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/filesize.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/highlighter.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/json.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/jupyter.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/layout.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/live.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/live_render.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/logging.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/markup.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/measure.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/padding.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/pager.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/palette.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/panel.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/pretty.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/progress.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/progress_bar.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/prompt.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/protocol.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/region.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/repr.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/rule.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/scope.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/screen.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/segment.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/spinner.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/status.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/style.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/styled.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/syntax.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/table.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/tabulate.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/terminal_theme.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/text.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/theme.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/themes.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/traceback.cpython-310.pyc,, +pip/_vendor/rich/__pycache__/tree.cpython-310.pyc,, +pip/_vendor/rich/_cell_widths.py,sha256=2n4EiJi3X9sqIq0O16kUZ_zy6UYMd3xFfChlKfnW1Hc,10096 +pip/_vendor/rich/_emoji_codes.py,sha256=hu1VL9nbVdppJrVoijVshRlcRRe_v3dju3Mmd2sKZdY,140235 +pip/_vendor/rich/_emoji_replace.py,sha256=n-kcetsEUx2ZUmhQrfeMNc-teeGhpuSQ5F8VPBsyvDo,1064 +pip/_vendor/rich/_extension.py,sha256=Xt47QacCKwYruzjDi-gOBq724JReDj9Cm9xUi5fr-34,265 +pip/_vendor/rich/_inspect.py,sha256=vq6BjewwEvddjcBTr_lCcjYQBsKi92aTNpcXyaA5ERA,7444 +pip/_vendor/rich/_log_render.py,sha256=1ByI0PA1ZpxZY3CGJOK54hjlq4X-Bz_boIjIqCd8Kns,3225 +pip/_vendor/rich/_loop.py,sha256=hV_6CLdoPm0va22Wpw4zKqM0RYsz3TZxXj0PoS-9eDQ,1236 +pip/_vendor/rich/_lru_cache.py,sha256=M7H1ZQF32o6SxrpOur9zTIhEHlNXT9XnrcdhruUmG5I,1246 +pip/_vendor/rich/_palettes.py,sha256=cdev1JQKZ0JvlguV9ipHgznTdnvlIzUFDBb0It2PzjI,7063 +pip/_vendor/rich/_pick.py,sha256=evDt8QN4lF5CiwrUIXlOJCntitBCOsI3ZLPEIAVRLJU,423 +pip/_vendor/rich/_ratio.py,sha256=2lLSliL025Y-YMfdfGbutkQDevhcyDqc-DtUYW9mU70,5472 +pip/_vendor/rich/_spinners.py,sha256=huT1biTlwyp9Lm8S7bLfVzg1psUaIH5xHDwTaWEHVh0,26521 +pip/_vendor/rich/_stack.py,sha256=-C8OK7rxn3sIUdVwxZBBpeHhIzX0eI-VM3MemYfaXm0,351 +pip/_vendor/rich/_timer.py,sha256=zelxbT6oPFZnNrwWPpc1ktUeAT-Vc4fuFcRZLQGLtMI,417 +pip/_vendor/rich/_windows.py,sha256=nBO71icHMIHlzT7hg6fkoIdh1mT-5MvDdPDwunkshyw,2065 +pip/_vendor/rich/_wrap.py,sha256=OtnSxnERkuNlSM1d_MYtNg8KIYTcTBk3peg16dCZH_U,1804 +pip/_vendor/rich/abc.py,sha256=ON-E-ZqSSheZ88VrKX2M3PXpFbGEUUZPMa_Af0l-4f0,890 +pip/_vendor/rich/align.py,sha256=2zRHV8SzR5eP-vQkSDgjmgsBLBluCBwykgejAW6oRD0,10425 +pip/_vendor/rich/ansi.py,sha256=QaVVkfvVL6C3OsuWI9iQ-iJFkMsMohjYlxgMLnVTEPo,6676 +pip/_vendor/rich/bar.py,sha256=a7UD303BccRCrEhGjfMElpv5RFYIinaAhAuqYqhUvmw,3264 +pip/_vendor/rich/box.py,sha256=o0ywz1iW0WjGLPrRVDAZPh1CVPEgAOaWsn8Bf3sf43g,9069 +pip/_vendor/rich/cells.py,sha256=NadN20gFxE8Aj-2S3Drn7qgn-ZpsRZcNnTNtweRL7rA,4285 +pip/_vendor/rich/color.py,sha256=SD3yTf3t8japb-jOv8GYCMCDqyzpipzXS_0rAXhSlU4,17285 +pip/_vendor/rich/color_triplet.py,sha256=3lhQkdJbvWPoLDO-AnYImAWmJvV5dlgYNCVZ97ORaN4,1054 +pip/_vendor/rich/columns.py,sha256=HUX0KcMm9dsKNi11fTbiM_h2iDtl8ySCaVcxlalEzq8,7131 +pip/_vendor/rich/console.py,sha256=bioCy8012eZ8PIOBxMyyqxYPltKk2pGEG9jmwylNCQk,81236 +pip/_vendor/rich/constrain.py,sha256=1VIPuC8AgtKWrcncQrjBdYqA3JVWysu6jZo1rrh7c7Q,1288 +pip/_vendor/rich/containers.py,sha256=aKgm5UDHn5Nmui6IJaKdsZhbHClh_X7D-_Wg8Ehrr7s,5497 +pip/_vendor/rich/control.py,sha256=qxg6Yjd78XuF0VxthlT8O4dpvpACYwKkBfm2S4-IvHA,5298 +pip/_vendor/rich/default_styles.py,sha256=At42PcWzmnYWcx5fUOKyOUpI8HK5m4ItZqxkgHToaMs,7614 +pip/_vendor/rich/diagnose.py,sha256=4L8SZfbqjIRotzJ39QzD9-d4I80FyV1mNKHryg1eArE,183 +pip/_vendor/rich/emoji.py,sha256=omTF9asaAnsM4yLY94eR_9dgRRSm1lHUszX20D1yYCQ,2501 +pip/_vendor/rich/errors.py,sha256=5pP3Kc5d4QJ_c0KFsxrfyhjiPVe7J1zOqSFbFAzcV-Y,642 +pip/_vendor/rich/file_proxy.py,sha256=fHeReSO3VJ7IbH_9ri-OrPYbFC3UYOzeTNjngiiWOcY,1613 +pip/_vendor/rich/filesize.py,sha256=oQJnM5_7ygkpzt3GtNq5l3F6gmB7YahBA5vpdQVKLwI,2511 +pip/_vendor/rich/highlighter.py,sha256=AdhjC0meTYswZ_xKgka0cRYdNjLABLUzHAbyF3QpPWo,4894 +pip/_vendor/rich/json.py,sha256=RCm4lXBXrjvXHpqrWPH8wdGP0jEo4IohLmkddlhRY18,5051 +pip/_vendor/rich/jupyter.py,sha256=4sxNAwJs4g3dYfWy_enPw9fp0Tdn-82tV4T9uh9vAOM,3025 +pip/_vendor/rich/layout.py,sha256=b64KMDP2EPiC103P-v-_VZKGY13oWiiGS418P_KRRlc,14048 +pip/_vendor/rich/live.py,sha256=OKxMaFU5sFfuR--cJftGYjSvg1VPQri1U_DNZUjCsvI,13711 +pip/_vendor/rich/live_render.py,sha256=zElm3PrfSIvjOce28zETHMIUf9pFYSUA5o0AflgUP64,3667 +pip/_vendor/rich/logging.py,sha256=YNcCSK6pCo2Wg6JKqScAe6VgFqebHBnS5nDnBO4gXAA,10868 +pip/_vendor/rich/markup.py,sha256=hsVW_k1TIvj5OPPQ12ihAii9HSVa8N1TStvA5B2GGpo,8058 +pip/_vendor/rich/measure.py,sha256=Z74XvzIgLZm0xH-QIo1uX5d4oahavHe8D8MKyxLNqPQ,5258 +pip/_vendor/rich/padding.py,sha256=kTFGsdGe0os7tXLnHKpwTI90CXEvrceeZGCshmJy5zw,4970 +pip/_vendor/rich/pager.py,sha256=VK_2EfH0JduZWdyV-KZma06bvi_V5PWmHG6W7BoiaTg,838 +pip/_vendor/rich/palette.py,sha256=lInvR1ODDT2f3UZMfL1grq7dY_pDdKHw4bdUgOGaM4Y,3396 +pip/_vendor/rich/panel.py,sha256=O6ORyIhDcOLSEasTjpcDvmhvIcppPGCeQoXpoycIUT8,8637 +pip/_vendor/rich/pretty.py,sha256=HAB68BpYysaL1EXeV4X5Tt-U2hDlcLpbFz06fkojWWE,32572 +pip/_vendor/rich/progress.py,sha256=jcgi7aMnQ_YjSpAmQkalwtNsgVn9i56SeZGprr7tuOk,35926 +pip/_vendor/rich/progress_bar.py,sha256=ELiBaxJOgsRYKpNIrot7BC0bFXvmf8cTd6nxI02BbK0,7762 +pip/_vendor/rich/prompt.py,sha256=gKVd13YWv6jedzwcRPZGUINBjC-xcJhJ_xz_NvMW80c,11307 +pip/_vendor/rich/protocol.py,sha256=Vx6n4fEoSDhzSup8t3KH0iK2RWyssIOks5E0S1qw1GA,1401 +pip/_vendor/rich/region.py,sha256=rNT9xZrVZTYIXZC0NYn41CJQwYNbR-KecPOxTgQvB8Y,166 +pip/_vendor/rich/repr.py,sha256=1A0U0_ibG_bZbw71pUBIctO9Az-CQUuyOTbiKcJOwyw,4309 +pip/_vendor/rich/rule.py,sha256=cPK6NYo4kzh-vM_8a-rXajXplsbaHa6ahErYvGSsrJ0,4197 +pip/_vendor/rich/scope.py,sha256=HX13XsJfqzQHpPfw4Jn9JmJjCsRj9uhHxXQEqjkwyLA,2842 +pip/_vendor/rich/screen.py,sha256=YoeReESUhx74grqb0mSSb9lghhysWmFHYhsbMVQjXO8,1591 +pip/_vendor/rich/segment.py,sha256=MBBAWaHyqCQFCfiNbrTW4BGaFR1uU31XktJ1S3Taqb4,23916 +pip/_vendor/rich/spinner.py,sha256=V6dW0jIk5IO0_2MyxyftQf5VjCHI0T2cRhJ4F31hPIQ,4312 +pip/_vendor/rich/status.py,sha256=gJsIXIZeSo3urOyxRUjs6VrhX5CZrA0NxIQ-dxhCnwo,4425 +pip/_vendor/rich/style.py,sha256=AD1I7atfclsFCtGeL8ronH1Jj-02WLp9ZQ2VYqmpBjM,26469 +pip/_vendor/rich/styled.py,sha256=eZNnzGrI4ki_54pgY3Oj0T-x3lxdXTYh4_ryDB24wBU,1258 +pip/_vendor/rich/syntax.py,sha256=pJAD08ywowg5xVwTGCqUOMpDYskjoMoDYEV-hryEX5s,26994 +pip/_vendor/rich/table.py,sha256=oQAEBaV4zMUPyg_tSA93_GrCirdIf-osolxf9wb3pEo,36757 +pip/_vendor/rich/tabulate.py,sha256=nl0oeNbiXectEgTHyj3K7eN4NZMISpaogpOdZyEOGbs,1700 +pip/_vendor/rich/terminal_theme.py,sha256=E0nI_ycFpvflamt-KVCY4J52LmUjRi1Y6ICB-Ef3gMo,1459 +pip/_vendor/rich/text.py,sha256=auX3LpY-I6PBiNyxB3o3LyMEx7lna2cx9IbNQJDwtw8,44424 +pip/_vendor/rich/theme.py,sha256=GKNtQhDBZKAzDaY0vQVQQFzbc0uWfFe6CJXA-syT7zQ,3627 +pip/_vendor/rich/themes.py,sha256=0xgTLozfabebYtcJtDdC5QkX5IVUEaviqDUJJh4YVFk,102 +pip/_vendor/rich/traceback.py,sha256=hAU3IR295eFuup_px2NU4aCEWu7KQs1qpZbnqoHCtR0,25935 +pip/_vendor/rich/tree.py,sha256=JxyWbc27ZuwoLQnd7I-rSsRsqI9lzaVKlfTLJXla9U0,9122 +pip/_vendor/six.py,sha256=TOOfQi7nFGfMrIvtdr6wX4wyHH8M7aknmuLfo2cBBrM,34549 +pip/_vendor/tenacity/__init__.py,sha256=GLLsTFD4Bd5VDgTR6mU_FxyOsrxc48qONorVaRebeD4,18257 +pip/_vendor/tenacity/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/_asyncio.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/_utils.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/after.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/before.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/before_sleep.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/nap.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/retry.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/stop.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/tornadoweb.cpython-310.pyc,, +pip/_vendor/tenacity/__pycache__/wait.cpython-310.pyc,, +pip/_vendor/tenacity/_asyncio.py,sha256=HEb0BVJEeBJE9P-m9XBxh1KcaF96BwoeqkJCL5sbVcQ,3314 +pip/_vendor/tenacity/_utils.py,sha256=-y68scDcyoqvTJuJJ0GTfjdSCljEYlbCYvgk7nM4NdM,1944 +pip/_vendor/tenacity/after.py,sha256=dlmyxxFy2uqpLXDr838DiEd7jgv2AGthsWHGYcGYsaI,1496 +pip/_vendor/tenacity/before.py,sha256=7XtvRmO0dRWUp8SVn24OvIiGFj8-4OP5muQRUiWgLh0,1376 +pip/_vendor/tenacity/before_sleep.py,sha256=ThyDvqKU5yle_IvYQz_b6Tp6UjUS0PhVp6zgqYl9U6Y,1908 +pip/_vendor/tenacity/nap.py,sha256=fRWvnz1aIzbIq9Ap3gAkAZgDH6oo5zxMrU6ZOVByq0I,1383 +pip/_vendor/tenacity/retry.py,sha256=62R71W59bQjuNyFKsDM7hE2aEkEPtwNBRA0tnsEvgSk,6645 +pip/_vendor/tenacity/stop.py,sha256=sKHmHaoSaW6sKu3dTxUVKr1-stVkY7lw4Y9yjZU30zQ,2790 +pip/_vendor/tenacity/tornadoweb.py,sha256=E8lWO2nwe6dJgoB-N2HhQprYLDLB_UdSgFnv-EN6wKE,2145 +pip/_vendor/tenacity/wait.py,sha256=e_Saa6I2tsNLpCL1t9897wN2fGb0XQMQlE4bU2t9V2w,6691 +pip/_vendor/tomli/__init__.py,sha256=z1Elt0nLAqU5Y0DOn9p__8QnLWavlEOpRyQikdYgKro,230 +pip/_vendor/tomli/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/tomli/__pycache__/_parser.cpython-310.pyc,, +pip/_vendor/tomli/__pycache__/_re.cpython-310.pyc,, +pip/_vendor/tomli/_parser.py,sha256=50BD4o9YbzFAGAYyZLqZC8F81DQ7iWWyJnrHNwBKa6A,22415 +pip/_vendor/tomli/_re.py,sha256=5GPfgXKteg7wRFCF-DzlkAPI2ilHbkMK2-JC49F-AJQ,2681 +pip/_vendor/typing_extensions.py,sha256=1uqi_RSlI7gos4eJB_NEV3d5wQwzTUQHd3_jrkbTo8Q,87149 +pip/_vendor/urllib3/__init__.py,sha256=j3yzHIbmW7CS-IKQJ9-PPQf_YKO8EOAey_rMW0UR7us,2763 +pip/_vendor/urllib3/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/_collections.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/_version.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/connection.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/connectionpool.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/exceptions.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/fields.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/filepost.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/poolmanager.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/request.cpython-310.pyc,, +pip/_vendor/urllib3/__pycache__/response.cpython-310.pyc,, +pip/_vendor/urllib3/_collections.py,sha256=pyASJJhW7wdOpqJj9QJA8FyGRfr8E8uUUhqUvhF0728,11372 +pip/_vendor/urllib3/_version.py,sha256=_NdMUQaeBvFHAX2z3zAIX2Wum58A6rVtY1f7ByHsQ4g,63 +pip/_vendor/urllib3/connection.py,sha256=6zokyboYYKm9VkyrQvVVLgxMyCZK7n9Vmg_2ZK6pbhc,20076 +pip/_vendor/urllib3/connectionpool.py,sha256=eQ1jWJ2dDdRADuCj9Yx7RCpzY2iM8P32jGHbjYBkAIk,39308 +pip/_vendor/urllib3/contrib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_appengine_environ.py,sha256=bDbyOEhW2CKLJcQqAKAyrEHN-aklsyHFKq6vF8ZFsmk,957 +pip/_vendor/urllib3/contrib/_securetransport/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-310.pyc,, +pip/_vendor/urllib3/contrib/_securetransport/bindings.py,sha256=4Xk64qIkPBt09A5q-RIFUuDhNc9mXilVapm7WnYnzRw,17632 +pip/_vendor/urllib3/contrib/_securetransport/low_level.py,sha256=B2JBB2_NRP02xK6DCa1Pa9IuxrPwxzDzZbixQkb7U9M,13922 +pip/_vendor/urllib3/contrib/appengine.py,sha256=lfzpHFmJiO82shClLEm3QB62SYgHWnjpZOH_2JhU5Tc,11034 +pip/_vendor/urllib3/contrib/ntlmpool.py,sha256=ej9gGvfAb2Gt00lafFp45SIoRz-QwrQ4WChm6gQmAlM,4538 +pip/_vendor/urllib3/contrib/pyopenssl.py,sha256=DD4pInv_3OEEGffEFynBoirc8ldR789sLmGSKukzA0E,16900 +pip/_vendor/urllib3/contrib/securetransport.py,sha256=4qUKo7PUV-vVIqXmr2BD-sH7qplB918jiD5eNsRI9vU,34449 +pip/_vendor/urllib3/contrib/socks.py,sha256=aRi9eWXo9ZEb95XUxef4Z21CFlnnjbEiAo9HOseoMt4,7097 +pip/_vendor/urllib3/exceptions.py,sha256=0Mnno3KHTNfXRfY7638NufOPkUb6mXOm-Lqj-4x2w8A,8217 +pip/_vendor/urllib3/fields.py,sha256=kvLDCg_JmH1lLjUUEY_FLS8UhY7hBvDPuVETbY8mdrM,8579 +pip/_vendor/urllib3/filepost.py,sha256=5b_qqgRHVlL7uLtdAYBzBh-GHmU5AfJVt_2N0XS3PeY,2440 +pip/_vendor/urllib3/packages/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/packages/__pycache__/six.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0 +pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-310.pyc,, +pip/_vendor/urllib3/packages/backports/makefile.py,sha256=nbzt3i0agPVP07jqqgjhaYjMmuAi_W5E0EywZivVO8E,1417 +pip/_vendor/urllib3/packages/six.py,sha256=1LVW7ljqRirFlfExjwl-v1B7vSAUNTmzGMs-qays2zg,34666 +pip/_vendor/urllib3/poolmanager.py,sha256=xfVcBtEBc8Xwa8jURSqdS7QmXvUuMHhjL1sjFOY-rUk,20001 +pip/_vendor/urllib3/request.py,sha256=ZFSIqX0C6WizixecChZ3_okyu7BEv0lZu1VT0s6h4SM,5985 +pip/_vendor/urllib3/response.py,sha256=hGhGBh7TkEkh_IQg5C1W_xuPNrgIKv5BUXPyE-q0LuE,28203 +pip/_vendor/urllib3/util/__init__.py,sha256=JEmSmmqqLyaw8P51gUImZh8Gwg9i1zSe-DoqAitn2nc,1155 +pip/_vendor/urllib3/util/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/connection.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/proxy.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/queue.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/request.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/response.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/retry.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/timeout.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/url.cpython-310.pyc,, +pip/_vendor/urllib3/util/__pycache__/wait.cpython-310.pyc,, +pip/_vendor/urllib3/util/connection.py,sha256=5Lx2B1PW29KxBn2T0xkN1CBgRBa3gGVJBKoQoRogEVk,4901 +pip/_vendor/urllib3/util/proxy.py,sha256=zUvPPCJrp6dOF0N4GAVbOcl6o-4uXKSrGiTkkr5vUS4,1605 +pip/_vendor/urllib3/util/queue.py,sha256=nRgX8_eX-_VkvxoX096QWoz8Ps0QHUAExILCY_7PncM,498 +pip/_vendor/urllib3/util/request.py,sha256=NnzaEKQ1Pauw5MFMV6HmgEMHITf0Aua9fQuzi2uZzGc,4123 +pip/_vendor/urllib3/util/response.py,sha256=GJpg3Egi9qaJXRwBh5wv-MNuRWan5BIu40oReoxWP28,3510 +pip/_vendor/urllib3/util/retry.py,sha256=eUKOZ16Ya_Tu3_sXF5KVhLJmHQF7YXOCX-MWRoZVzqs,22011 +pip/_vendor/urllib3/util/ssl_.py,sha256=X4-AqW91aYPhPx6-xbf66yHFQKbqqfC_5Zt4WkLX1Hc,17177 +pip/_vendor/urllib3/util/ssl_match_hostname.py,sha256=w01jCYuwvQ038p9mhc1P1gF8IiTN1qHakThpoukOlbw,5751 +pip/_vendor/urllib3/util/ssltransport.py,sha256=NA-u5rMTrDFDFC8QzRKUEKMG0561hOD4qBTr3Z4pv6E,6895 +pip/_vendor/urllib3/util/timeout.py,sha256=QSbBUNOB9yh6AnDn61SrLQ0hg5oz0I9-uXEG91AJuIg,10003 +pip/_vendor/urllib3/util/url.py,sha256=QVEzcbHipbXyCWwH6R4K4TR-N8T4LM55WEMwNUTBmLE,14047 +pip/_vendor/urllib3/util/wait.py,sha256=3MUKRSAUJDB2tgco7qRUskW0zXGAWYvRRE4Q1_6xlLs,5404 +pip/_vendor/vendor.txt,sha256=H-9fScoah7nx4K8O4Uft0l5iH2P_mVo4RqyuMVOTJEc,496 +pip/_vendor/webencodings/__init__.py,sha256=qOBJIuPy_4ByYH6W_bNgJF-qYQ2DoU-dKsDu5yRWCXg,10579 +pip/_vendor/webencodings/__pycache__/__init__.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/labels.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/mklabels.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/tests.cpython-310.pyc,, +pip/_vendor/webencodings/__pycache__/x_user_defined.cpython-310.pyc,, +pip/_vendor/webencodings/labels.py,sha256=4AO_KxTddqGtrL9ns7kAPjb0CcN6xsCIxbK37HY9r3E,8979 +pip/_vendor/webencodings/mklabels.py,sha256=GYIeywnpaLnP0GSic8LFWgd0UVvO_l1Nc6YoF-87R_4,1305 +pip/_vendor/webencodings/tests.py,sha256=OtGLyjhNY1fvkW1GvLJ_FV9ZoqC9Anyjr7q3kxTbzNs,6563 +pip/_vendor/webencodings/x_user_defined.py,sha256=yOqWSdmpytGfUgh_Z6JYgDNhoc-BAHyyeeT15Fr42tM,4307 +pip/py.typed,sha256=EBVvvPRTn_eIpz5e5QztSCdrMX7Qwd7VP93RSoIlZ2I,286 diff --git a/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/REQUESTED new file mode 100644 index 0000000..e69de29 diff --git a/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL new file mode 100644 index 0000000..becc9a6 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/WHEEL @@ -0,0 +1,5 @@ +Wheel-Version: 1.0 +Generator: bdist_wheel (0.37.1) +Root-Is-Purelib: true +Tag: py3-none-any + diff --git a/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt new file mode 100644 index 0000000..c4ad521 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/entry_points.txt @@ -0,0 +1,5 @@ +[console_scripts] +pip = pip._internal.cli.main:main +pip3 = pip._internal.cli.main:main +pip3.10 = pip._internal.cli.main:main + diff --git a/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt new file mode 100644 index 0000000..a1b589e --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip-22.0.2.dist-info/top_level.txt @@ -0,0 +1 @@ +pip diff --git a/python=3.6/lib/python3.10/site-packages/pip/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/__init__.py new file mode 100644 index 0000000..8a50472 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/__init__.py @@ -0,0 +1,13 @@ +from typing import List, Optional + +__version__ = "22.0.2" + + +def main(args: Optional[List[str]] = None) -> int: + """This is an internal API only meant for use by pip's own console scripts. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/python=3.6/lib/python3.10/site-packages/pip/__main__.py b/python=3.6/lib/python3.10/site-packages/pip/__main__.py new file mode 100644 index 0000000..fe34a7b --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/__main__.py @@ -0,0 +1,31 @@ +import os +import sys +import warnings + +# Remove '' and current working directory from the first entry +# of sys.path, if present to avoid using current directory +# in pip commands check, freeze, install, list and show, +# when invoked as python -m pip +if sys.path[0] in ("", os.getcwd()): + sys.path.pop(0) + +# If we are running from a wheel, add the wheel to sys.path +# This allows the usage python pip-*.whl/pip install pip-*.whl +if __package__ == "": + # __file__ is pip-*.whl/pip/__main__.py + # first dirname call strips of '/__main__.py', second strips off '/pip' + # Resulting path is the name of the wheel itself + # Add that to sys.path so we can import pip + path = os.path.dirname(os.path.dirname(__file__)) + sys.path.insert(0, path) + +if __name__ == "__main__": + # Work around the error reported in #9540, pending a proper fix. + # Note: It is essential the warning filter is set *before* importing + # pip, as the deprecation happens at import time, not runtime. + warnings.filterwarnings( + "ignore", category=DeprecationWarning, module=".*packaging\\.version" + ) + from pip._internal.cli.main import main as _main + + sys.exit(_main()) diff --git a/python=3.6/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..861bc985569ea175d28284a94dc23ae1cabdc46d GIT binary patch literal 639 zcmYk4OK;RL5P}_Jd>Gd9-kj}Z*NRczHi4vK2akWEelnuoiC$Vsq*(^vilP&$s`+!w>re3dgr3HMmC#r zI^~CadNvf&ufkAzh@CeJr1&oxdPz@F!)-K*sw@$FqLf_GEApA*gnaY$!&(Q1OB$w4 z1dsjMi}Tmanx_fYy&JTymm40@tC2!!c?i0{sYPs zM5&u_mjwW}j?slDLacOLcXPh5t#G}Q0(%M_LI*)SJbwI$ZyWivnF$@L`qE41z~eC- zU?#8sQSvTgYYry*-dX$`e3@!8U*Ko!e`7959+q| z;#xX`g|+9EY?eOCp_yMRA5^yTyIHpB3^;D2v@^1VUco{aJrrqEgKK)E&mc0zOaty; z(>rHSIY1#O>Fs8cKdf{WXWAgo$ReH>I__1u5pL+iVLQ*^gKoYMcNek2{YsOiEg_NG z74jl^)1JX9QO+88VNK&~QGiRTwpm(pdK^DZ3VpE+kK?1qNv#`rwB4mnP(bqcjB(X^ lak4qkGm7Kt2j~P5RM5j{Oa(s(r&KV`BO3i42m6fw`~!yAu@L|O literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/__init__.py new file mode 100644 index 0000000..6afb5c6 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/__init__.py @@ -0,0 +1,19 @@ +from typing import List, Optional + +import pip._internal.utils.inject_securetransport # noqa +from pip._internal.utils import _log + +# init_logging() must be called before any call to logging.getLogger() +# which happens at import of most modules. +_log.init_logging() + + +def main(args: (Optional[List[str]]) = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..af9f3cdbdd447a0d688f02c7f259e37036045373 GIT binary patch literal 760 zcmZuv&2H2%5Vn(Snr>SO2`)Y1>mo=%Mf`~(q#`a<1qn`jiM;XbuEB||vA1Zea)ReT zaOBAA_{xb_;KX>TP!AntCNuW@d^2Oaw>M@)KhIvx4>QJoCF3%U$aqfdk4Y$|xM4k? z@;;kpJlUDarv?3UGwRD}$r+U2w!SmEt5g9QaH#g#K2syuo)@ZATVF=gvC7`E$@Xu` z$R=4Vjd3Wts-_X{GVEb$Sszd=HALPE$san8>9 zIs441LVou3-BNo&pF{9~r=Y~#qOeAZ&JNxh5WYk0f)`;agXra2_@IpuGY|-KKo~kb zEXIOJhkCqGUQ!CFl>UcTCm#hXnYMrz_qh<>TxT@WSADS(SI=9CjF0U zmbQmRYBX}zyjj11(?+2k;K)+6H3pENgryx059$Yv(X$KlpuTsv@jAdAC%X@FK@bz# z{}`H#A<_@E*F*dgxZP zTa<%$7DLR*H(tLY08^>By8%J(VnHQh?gPf02C^x?nZPBH-gK;<_ExP7JWEsd>F64( KvRz&kBL53y>e3$o literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/build_env.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9dca4dfd07c41ea3b237d5e664c162d8ee063d5b GIT binary patch literal 9604 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4903450ce4a996fcb3e3a3dad5d7b16c04164e21 GIT binary patch literal 8387 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/exceptions.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed33cd2a72f6b744e55497722eeb1f427aa90b97 GIT binary patch literal 23130 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/__pycache__/pyproject.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..15e268a72e5a46b07ba7b7751bc86a180daa648c GIT binary patch literal 3544 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 uxQ;Wd+OW0HJ$H9 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 WaP? zqB7L|b2dY%NyE1Yh9y_FBOD)yme9>h(i8Eb8{1K*UPsKCMV*Y8faiG}1{eMHG zHjkrL>Yrkx?#Z17GKD>L${urs($5gHG1X4nJ0eGokmmZDGt@XoKU(`tQXa*eu(b^(e>(p zZLYib0c}bYEp&Vz301rl;kKvh4;M+M;sLH-Q#jM0Mds2){;BpD2b3zv@1sqANyV2q>`B#qb8Nj8$aT1x1pt+TDP4kVB93x&z({OqsDGlL1F|GK3H@mp(s6 zRX)3F%1YQMnfWoSgYN;1tddhds!s}o7=JGNu8BBW(Ke zwIOpGu?{C=J4YDgg$qatew2Qxu^djJI8GL?k}-q&CB?h%&E30y`{uidW?#otY5H>V z27j}AH~nPy39{n&_8p6)bc2l9eGzs1SpE*N)0aQ~-oPI$_(K6FJ5xh+iCQT=lA0us zY6K}*6}PEA+uLJkNUWHWNM(>+v($@lZJM9i=sWlm!|K{ noc3Gve+p#!8|_%X)x;dss-e|1i%<8zr;Pza4d&nKS$_II( None: + self.path = path + self.setup = False + self.bin_dir = get_paths( + "nt" if os.name == "nt" else "posix_prefix", + vars={"base": path, "platbase": path}, + )["scripts"] + self.lib_dirs = get_prefixed_libs(path) + + +@contextlib.contextmanager +def _create_standalone_pip() -> Iterator[str]: + """Create a "standalone pip" zip file. + + The zip file's content is identical to the currently-running pip. + It will be used to install requirements into the build environment. + """ + source = pathlib.Path(pip_location).resolve().parent + + # Return the current instance if `source` is not a directory. We can't build + # a zip from this, and it likely means the instance is already standalone. + if not source.is_dir(): + yield str(source) + return + + with TempDirectory(kind="standalone-pip") as tmp_dir: + pip_zip = os.path.join(tmp_dir.path, "__env_pip__.zip") + kwargs = {} + if sys.version_info >= (3, 8): + kwargs["strict_timestamps"] = False + with zipfile.ZipFile(pip_zip, "w", **kwargs) as zf: + for child in source.rglob("*"): + zf.write(child, child.relative_to(source.parent).as_posix()) + yield os.path.join(pip_zip, "pip") + + +class BuildEnvironment: + """Creates and manages an isolated environment to install build deps""" + + def __init__(self) -> None: + temp_dir = TempDirectory(kind=tempdir_kinds.BUILD_ENV, globally_managed=True) + + self._prefixes = OrderedDict( + (name, _Prefix(os.path.join(temp_dir.path, name))) + for name in ("normal", "overlay") + ) + + self._bin_dirs: List[str] = [] + self._lib_dirs: List[str] = [] + for prefix in reversed(list(self._prefixes.values())): + self._bin_dirs.append(prefix.bin_dir) + self._lib_dirs.extend(prefix.lib_dirs) + + # Customize site to: + # - ensure .pth files are honored + # - prevent access to system site packages + system_sites = { + os.path.normcase(site) for site in (get_purelib(), get_platlib()) + } + self._site_dir = os.path.join(temp_dir.path, "site") + if not os.path.exists(self._site_dir): + os.mkdir(self._site_dir) + with open( + os.path.join(self._site_dir, "sitecustomize.py"), "w", encoding="utf-8" + ) as fp: + fp.write( + textwrap.dedent( + """ + import os, site, sys + + # First, drop system-sites related paths. + original_sys_path = sys.path[:] + known_paths = set() + for path in {system_sites!r}: + site.addsitedir(path, known_paths=known_paths) + system_paths = set( + os.path.normcase(path) + for path in sys.path[len(original_sys_path):] + ) + original_sys_path = [ + path for path in original_sys_path + if os.path.normcase(path) not in system_paths + ] + sys.path = original_sys_path + + # Second, add lib directories. + # ensuring .pth file are processed. + for path in {lib_dirs!r}: + assert not path in sys.path + site.addsitedir(path) + """ + ).format(system_sites=system_sites, lib_dirs=self._lib_dirs) + ) + + def __enter__(self) -> None: + self._save_env = { + name: os.environ.get(name, None) + for name in ("PATH", "PYTHONNOUSERSITE", "PYTHONPATH") + } + + path = self._bin_dirs[:] + old_path = self._save_env["PATH"] + if old_path: + path.extend(old_path.split(os.pathsep)) + + pythonpath = [self._site_dir] + + os.environ.update( + { + "PATH": os.pathsep.join(path), + "PYTHONNOUSERSITE": "1", + "PYTHONPATH": os.pathsep.join(pythonpath), + } + ) + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + for varname, old_value in self._save_env.items(): + if old_value is None: + os.environ.pop(varname, None) + else: + os.environ[varname] = old_value + + def check_requirements( + self, reqs: Iterable[str] + ) -> Tuple[Set[Tuple[str, str]], Set[str]]: + """Return 2 sets: + - conflicting requirements: set of (installed, wanted) reqs tuples + - missing requirements: set of reqs + """ + missing = set() + conflicting = set() + if reqs: + env = get_environment(self._lib_dirs) + for req_str in reqs: + req = Requirement(req_str) + dist = env.get_distribution(req.name) + if not dist: + missing.add(req_str) + continue + if isinstance(dist.version, Version): + installed_req_str = f"{req.name}=={dist.version}" + else: + installed_req_str = f"{req.name}==={dist.version}" + if dist.version not in req.specifier: + conflicting.add((installed_req_str, req_str)) + # FIXME: Consider direct URL? + return conflicting, missing + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + prefix = self._prefixes[prefix_as_string] + assert not prefix.setup + prefix.setup = True + if not requirements: + return + with contextlib.ExitStack() as ctx: + pip_runnable = ctx.enter_context(_create_standalone_pip()) + self._install_requirements( + pip_runnable, + finder, + requirements, + prefix, + kind=kind, + ) + + @staticmethod + def _install_requirements( + pip_runnable: str, + finder: "PackageFinder", + requirements: Iterable[str], + prefix: _Prefix, + *, + kind: str, + ) -> None: + args: List[str] = [ + sys.executable, + pip_runnable, + "install", + "--ignore-installed", + "--no-user", + "--prefix", + prefix.path, + "--no-warn-script-location", + ] + if logger.getEffectiveLevel() <= logging.DEBUG: + args.append("-v") + for format_control in ("no_binary", "only_binary"): + formats = getattr(finder.format_control, format_control) + args.extend( + ( + "--" + format_control.replace("_", "-"), + ",".join(sorted(formats or {":none:"})), + ) + ) + + index_urls = finder.index_urls + if index_urls: + args.extend(["-i", index_urls[0]]) + for extra_index in index_urls[1:]: + args.extend(["--extra-index-url", extra_index]) + else: + args.append("--no-index") + for link in finder.find_links: + args.extend(["--find-links", link]) + + for host in finder.trusted_hosts: + args.extend(["--trusted-host", host]) + if finder.allow_all_prereleases: + args.append("--pre") + if finder.prefer_binary: + args.append("--prefer-binary") + args.append("--") + args.extend(requirements) + extra_environ = {"_PIP_STANDALONE_CERT": where()} + with open_spinner(f"Installing {kind}") as spinner: + call_subprocess( + args, + command_desc=f"pip subprocess to install {kind}", + spinner=spinner, + extra_environ=extra_environ, + ) + + +class NoOpBuildEnvironment(BuildEnvironment): + """A no-op drop-in replacement for BuildEnvironment""" + + def __init__(self) -> None: + pass + + def __enter__(self) -> None: + pass + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + pass + + def cleanup(self) -> None: + pass + + def install_requirements( + self, + finder: "PackageFinder", + requirements: Iterable[str], + prefix_as_string: str, + *, + kind: str, + ) -> None: + raise NotImplementedError() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cache.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cache.py new file mode 100644 index 0000000..1d6df22 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cache.py @@ -0,0 +1,264 @@ +"""Cache Management +""" + +import hashlib +import json +import logging +import os +from typing import Any, Dict, List, Optional, Set + +from pip._vendor.packaging.tags import Tag, interpreter_name, interpreter_version +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InvalidWheelFilename +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.urls import path_to_url + +logger = logging.getLogger(__name__) + + +def _hash_dict(d: Dict[str, str]) -> str: + """Return a stable sha224 of a dictionary.""" + s = json.dumps(d, sort_keys=True, separators=(",", ":"), ensure_ascii=True) + return hashlib.sha224(s.encode("ascii")).hexdigest() + + +class Cache: + """An abstract class - provides cache directories for data from links + + + :param cache_dir: The root of the cache. + :param format_control: An object of FormatControl class to limit + binaries being read from the cache. + :param allowed_formats: which formats of files the cache should store. + ('binary' and 'source' are the only allowed values) + """ + + def __init__( + self, cache_dir: str, format_control: FormatControl, allowed_formats: Set[str] + ) -> None: + super().__init__() + assert not cache_dir or os.path.isabs(cache_dir) + self.cache_dir = cache_dir or None + self.format_control = format_control + self.allowed_formats = allowed_formats + + _valid_formats = {"source", "binary"} + assert self.allowed_formats.union(_valid_formats) == _valid_formats + + def _get_cache_path_parts(self, link: Link) -> List[str]: + """Get parts of part that must be os.path.joined with cache_dir""" + + # We want to generate an url to use as our cache key, we don't want to + # just re-use the URL because it might have other items in the fragment + # and we don't care about those. + key_parts = {"url": link.url_without_fragment} + if link.hash_name is not None and link.hash is not None: + key_parts[link.hash_name] = link.hash + if link.subdirectory_fragment: + key_parts["subdirectory"] = link.subdirectory_fragment + + # Include interpreter name, major and minor version in cache key + # to cope with ill-behaved sdists that build a different wheel + # depending on the python version their setup.py is being run on, + # and don't encode the difference in compatibility tags. + # https://github.com/pypa/pip/issues/7296 + key_parts["interpreter_name"] = interpreter_name() + key_parts["interpreter_version"] = interpreter_version() + + # Encode our key url with sha224, we'll use this because it has similar + # security properties to sha256, but with a shorter total output (and + # thus less secure). However the differences don't make a lot of + # difference for our use case here. + hashed = _hash_dict(key_parts) + + # We want to nest the directories some to prevent having a ton of top + # level directories where we might run out of sub directories on some + # FS. + parts = [hashed[:2], hashed[2:4], hashed[4:6], hashed[6:]] + + return parts + + def _get_candidates(self, link: Link, canonical_package_name: str) -> List[Any]: + can_not_cache = not self.cache_dir or not canonical_package_name or not link + if can_not_cache: + return [] + + formats = self.format_control.get_allowed_formats(canonical_package_name) + if not self.allowed_formats.intersection(formats): + return [] + + candidates = [] + path = self.get_path_for_link(link) + if os.path.isdir(path): + for candidate in os.listdir(path): + candidates.append((candidate, path)) + return candidates + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached items in for link.""" + raise NotImplementedError() + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + """Returns a link to a cached item if it exists, otherwise returns the + passed link. + """ + raise NotImplementedError() + + +class SimpleWheelCache(Cache): + """A cache of wheels for future installs.""" + + def __init__(self, cache_dir: str, format_control: FormatControl) -> None: + super().__init__(cache_dir, format_control, {"binary"}) + + def get_path_for_link(self, link: Link) -> str: + """Return a directory to store cached wheels for link + + Because there are M wheels for any one sdist, we provide a directory + to cache them in, and then consult that directory when looking up + cache hits. + + We only insert things into the cache if they have plausible version + numbers, so that we don't contaminate the cache with things that were + not unique. E.g. ./package might have dozens of installs done for it + and build a version of 0.0...and if we built and cached a wheel, we'd + end up using the same wheel even if the source has been edited. + + :param link: The link of the sdist for which this will cache wheels. + """ + parts = self._get_cache_path_parts(link) + assert self.cache_dir + # Store wheels within the root cache_dir + return os.path.join(self.cache_dir, "wheels", *parts) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + candidates = [] + + if not package_name: + return link + + canonical_package_name = canonicalize_name(package_name) + for wheel_name, wheel_dir in self._get_candidates(link, canonical_package_name): + try: + wheel = Wheel(wheel_name) + except InvalidWheelFilename: + continue + if canonicalize_name(wheel.name) != canonical_package_name: + logger.debug( + "Ignoring cached wheel %s for %s as it " + "does not match the expected distribution name %s.", + wheel_name, + link, + package_name, + ) + continue + if not wheel.supported(supported_tags): + # Built for a different python/arch/etc + continue + candidates.append( + ( + wheel.support_index_min(supported_tags), + wheel_name, + wheel_dir, + ) + ) + + if not candidates: + return link + + _, wheel_name, wheel_dir = min(candidates) + return Link(path_to_url(os.path.join(wheel_dir, wheel_name))) + + +class EphemWheelCache(SimpleWheelCache): + """A SimpleWheelCache that creates it's own temporary cache directory""" + + def __init__(self, format_control: FormatControl) -> None: + self._temp_dir = TempDirectory( + kind=tempdir_kinds.EPHEM_WHEEL_CACHE, + globally_managed=True, + ) + + super().__init__(self._temp_dir.path, format_control) + + +class CacheEntry: + def __init__( + self, + link: Link, + persistent: bool, + ): + self.link = link + self.persistent = persistent + + +class WheelCache(Cache): + """Wraps EphemWheelCache and SimpleWheelCache into a single Cache + + This Cache allows for gracefully degradation, using the ephem wheel cache + when a certain link is not found in the simple wheel cache first. + """ + + def __init__(self, cache_dir: str, format_control: FormatControl) -> None: + super().__init__(cache_dir, format_control, {"binary"}) + self._wheel_cache = SimpleWheelCache(cache_dir, format_control) + self._ephem_cache = EphemWheelCache(format_control) + + def get_path_for_link(self, link: Link) -> str: + return self._wheel_cache.get_path_for_link(link) + + def get_ephem_path_for_link(self, link: Link) -> str: + return self._ephem_cache.get_path_for_link(link) + + def get( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Link: + cache_entry = self.get_cache_entry(link, package_name, supported_tags) + if cache_entry is None: + return link + return cache_entry.link + + def get_cache_entry( + self, + link: Link, + package_name: Optional[str], + supported_tags: List[Tag], + ) -> Optional[CacheEntry]: + """Returns a CacheEntry with a link to a cached item if it exists or + None. The cache entry indicates if the item was found in the persistent + or ephemeral cache. + """ + retval = self._wheel_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=True) + + retval = self._ephem_cache.get( + link=link, + package_name=package_name, + supported_tags=supported_tags, + ) + if retval is not link: + return CacheEntry(retval, persistent=False) + + return None diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__init__.py new file mode 100644 index 0000000..e589bb9 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__init__.py @@ -0,0 +1,4 @@ +"""Subpackage containing all of pip's command line interface related code +""" + +# This file intentionally does not import submodules diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..2fc72db33d55ef38820cc6f8241b00a9cce51578 GIT binary patch literal 280 zcmYk1u}T9$5Qg{CK?=;{PTrmkYuAK0J4yJbxzhUlp5su3U4o;!W6UE7r5a({|rRZQk_`r3t=h z=bhh4O(a7nql>G|`(e=DN^%~h^956<4a$V13tB!~T)eES<6J2lj8b1B%{b-MetYP{ zfS_F>-NNhmh#z26@c6)KDG*_TIF>&6+f8!~ovQ X))l3iI3DYpA=o|P-Slgo2x{>M-{n$d literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d6f79f78d27bf6f916ca112a5b312ba5f5550ab8 GIT binary patch literal 5313 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1eee819306b1b21807192a03c1e90b38f7410e1c GIT binary patch literal 1314 zcmZuxO^?(@5Up;1jK|Cj8(2sX2qn4sz&Z$tQ-Tm1h#<-+(yl=G(($@`z=^-;_AWak z4v<-iQeXx4<8cVs{#blJ``rJJ~=mw2V0_zaXU9qCH%H=Yc>1L@1b5y-)kCxHxh zAR7LK=Rm~m@b+Qe?zCz4i=AY3)vCj`Osn*f(vf2)+r8z7-eQBht zEf>4H5wpXrK1g+*R&7QHuQv*vnz@IdAYl>`F2k2FV-(`iC~=f4nersR05dK<=^wdE zmSD(gpn?mStO{nX4CL_0O@=SQg(SojPT8~Db&0{sRh0SR-OBn}wfnl7W~}qt1C5bZ zaPT#k5L#HmEA|?YJoXF(Z=EGz?@GXv`SecYS;?`*nIaq$rRhjJ ze$V!XS=XpyhW${8tVoR!;tl*$$B*k$#c8gKbT9sK{;fKQrLHSQ!Rxvxl#ZKu`?#*Y zxwdsZF7mzO>9wt^U&SVG)s+T|goQD2lQ%KOg0-m9BF>6D&UzwNfo(N&J;K-mO4mmS zna@USap?rYwpRIlL>TR+YMP%AULZX`gZA&iudJgC7GI);{eFt{cOQv-fW3>)(qT|d zu7bJvlrgk3c-VjCNHDJ1p_T8({pcw~&UE)q#Pt|`=?TGUg0t^n6GwKmPCqR*WaiI9 z?sLupd@lbNI{e==&f@cva$VnUH;&6F8eJdcQt6E9xoRu9Y@@-PN1*(TNBL9UulO_e znxR!r zavi{gac`4d4m5Fl1z4~S7V3WpUfq*iC_opf+NWP36@ zqnQ=b!jV4!LYmy*$lvi5F8dddK$P9lDhqDe^>kJBSLLeLYa>{{ufBZzYYU-2jBtB- zAbbW}{sad_38I)1juUJtNrMSig`fCEkObKHyF4sfNz3vcZx@}UV|kx< zi(b;Re8Bs~PO@Y9kPnL8WEUewwtH;<8Yg#XkG5FAeD=yAIz+V1hL2s^q22Gj6j@0@(Vq&IsoR?HG_M~BQ3L*3Qr97jli^p4F(<~Qc=)qZy|EU zG^wNxcwREeYVEQoxzc`hF8mJ6Pp$EVBB*;PzMRkGs>2Djpz ziMU>>i>mzO-uT0q=jS)#z3~U{#}a3GWX*i<#Hm*Ndb zbp%_!2S1ojfNPFV>A&|Gk#Ic7^)fHdSdYGY-{wJ|93M*r}p^?+c`b_k5BU^ zWrO^|%SM2i*;g%_hVQ>@o~xY8W@1`1rY21%!_>A5{_izYx+9g)4ghHpuzk99yklI# fkBf@VIs4QMwlud~6p|2|Z-Bd`i<_@aqPPA9_P~1% literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f7e05144fc7cd77f1485b787e4ccd21c892a0e7c GIT binary patch literal 2164 zcmZWqOK%%D5MFYhT1)aH?>0pi2AWg_BISXm7sqJfG-%Nv4UqJ*ZLnC2l)N_gQIc|E zVRfm~V-GzC0pweI>|g1T*PikhQlROOE4Qw*0!K4LF3FkszS*+V2`zYjpME{M1KOY3 zIQjTsdKqN=N;zde(W3FWkKGGTX`6V#`f4! z-j3UOC+-;AXWe``UN(BbR`S(&HD8O@z;2OnjN>z8iMB?Vv`OoQ6Q3m=>dgqhG4CSJ*=DunUKnTGN~BtAr%gDQdTm9jbL(Zt1L#@_#5MRWZqOC zd|Q!JA8?P3(g~B|OUkPICC^hSDTkLj!!pm|aFLK~DAn09m5IpmjHNs|o`RFwTg|dB zI4|{U%X(dvRmnc(0?t=~aqx1i)`py>k|sKUqzOQE%>VI*%Hvc{crnyr9X~cGy1H91 z1Op*WZ6!Lih%GTl=Vy0j)z;iTvXCX6L(mgfdUIcTyFqOo;TeM2R*jAj)XRn0ka%N6 zd=k8{%(aE7L~}oJx)7#p5cM??Z9VvE z`d;{91rbLZi$rZk-z}=~^uF@OtlUmn&sFY3q+_aMQwQY~X-<`+ zcYC6&A%gIaADtH$#$y;_9mE*oe%kpSqMhLy5$mNxP>px3m)0x$7yN_98&>$%r*BXM zh4aM(>dOy$w!-}z{0wZM+Kc-pSurYqv-tbqe6u&$DRVkVGtScO!J~tFbbmm2Sx`Wg z(p>hizN{163Ilm z&1iGFr~sXmBq<*Yt{aQ;7kK54wpR0Wk1ooQjCnb!RA)>J%2T#5S9H;udM!MT4uxx^ zDi?yzg>rVwtWZmYiXqPo`5@We0{Os;LT@0r4%DQ&5tp^u2C)jm6c*bUVdR+M{T28D z?%E;p?9ldb@ORsBfd4v@|G`6NPUpbT<_}P$b!Y(*&>X;hga9UZW&=Dhzas5jXYST$ z7l020G8RzBZ>)KsX;s_&dTkQ~Ee-Es{)ueW_93)Xt;3$7p`LxbRm1zdN2#A(Wkq zapN@?)#N;Zm=2gXUD>k(lqU}=_%3j)J-W%LRiJJEU)uJ8whc=zzT@vV;Qo(%>inrSi;v2QOr6?=J|EKN z%Vlz>PEAi_#za5QfKr;b4Y?tTlre}x(*}wsIoIhpK`N6h%`6pco-3{9}BSN;J83|UzK literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/parser.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d983ec66810c7735312b9140f7ccefd3ca1288f9 GIT binary patch literal 9951 zcmbVSOOPBzdalZPboFyaqmeWk2`IFH)P&RnW_MX@g$zi5S?~yp1(seEMX9s8r$*IX zt*mN|rs*MIr45AF;kCn$gIOFs1Q)`4u@CmehrRgblf&UdUL8K*laCIWMgIP*>Y47* z7(aTZva_5qw!(89Cizv)C;)OWks_+^sY#-D@_?JJ+03 zbvv5x9%vruE;JX^eIYv7U2HCP4>b?zTA+^)2S>K`=F&?VcX;u(#)|=4KYGh(E~BNy z%V;SF%eX&=`wFk(zKR~l(eeOVYJ3hYbHM|+e~`1+wfg*U>3Kg1+_;~HanJ4hA_;_> z1nHpvC04Ah)^+J5gMMEGNm93@@mz0Hnis=XDxH_pK=^4ar1@%?q|*A~pdSV3Uwvcs zmDNjct$Ht9zI^F&oyqEjxYrIl1N6oua$)B71tDUAPKzSoek=9-LAvI(McnlUB9g@< z6={4mj-wWlGyN&%H_5M12{depM%#g{V1daETqd{L_D5P<=Qc0gu3%G~z+NwKGjQ4_ zFY?lDvso-w_``X7HE?(h7d?0Q9G|~!HB0fBd(Ng0Npyk25)#eXz7p-$2X{Oek$3~ox2VWCGnr{Af5cOY-Mb}Tk-r={O zbHVyF4FjLksjjybNvr=h^PkIoz*WN z#0c_0*T3lzVO~E@LfY#uX-YXC_IS`sy|C93K^HYa&0jKlW^IH#U8|eYPSyr#7|8>j zAoZ~HZrJl9FA0Z%v>~)el6UWe7xKz*{WW__M$wT|T zaU72lny#b|>-*8U?^|~*_uPA1=kK!9t}JwK_@doS)k2b>-y$)Zd~8(cQVaQgR65$0 zInviPQ5~6MooZY^s%=AbP-kK(Z-wG!t*J3GZ^6c1GsPo#W^y(%wi)#vTicp=4sY4q z80g8$544}qc!mCVscr0RYg?8Yjg5;Vi|)6Kz&+_*h4i8-fTzsKEfkos7B(kSf=bCzD~=AF;FE(~V`bJ})KC2O(3 zK>hTz8^yg2)#|6+pwT(&o;rD^ee$$>^30ix+b8RL$IE$qb~0tI>TX8O-rg7*^kepX z6|vaqp;S#A#7?YAtzMR8Ptiqk1PkH!`$3P(l1CI~ZAKLIq#gF)2U1y1{cAzu-SDG9 zAWa^?%olPdNGpmrpp|yE1Zl3vVXtma$>U>~RGdU1O`1(SLHDylDo&t{q%~PWVU}z* zuiN^(UcsNkYN##hB{qC~KSAAJBV=JM@HuqjKK&x0S7Nz{$_Nhp8WT1-LDY>SWXH@^ zS-7MeVIoeU(_MD9qzIm<*>}*mX9cpBD@;D^Z=y>=8sO-r?&!l4`;k8TinIm^EX@qT z21Y30QUsIEavcT%COKte7~pMa$Tr*7x7dihxG@~=Z1@YkWFP`JT?i#pWNzZyh)dAN}CaEco* zqIW_%V6qC7&15C!umvcdiTd!dZ{Y0IAkq%{VHDr5W#rivYb&ULwJ`o*2pM0ts+KvU zP_LlVUXrUh$=L)yLJy@+CR6l1{0;PFZ%C6QjZ7FxS&KAj@*(-5i`o)0Jt{baF5Pyp z!w7x0^^4jqeaqkmd=>7LQJ9IF$coSqWKk6tI}n{K_LhDJt39Iq5xWkB++7j^Th@3& znxq3?=wcObWe=5$E}bK10|(SU|1OP3gD+~sZ|}FpX=Q4hi{h3aCFfC@3?MGzWlU!! z{U}VuQ*>u$8umM=tEpuXM!-}0m{IY&^n^%JlI5Y2>6nh_U|$`ZrUF*+5qkAe6!ilX zp7s20;CXN-UN`20i0T#3yFT!v{7J#{c--xJb7Yr$Dqc(5SooffW{4{bSplG7;mCL8M((ha+9DrrK}fmEZQ0(%GYW6KBL=yPN~ zz0Sp;?GK_fnGNyfg+Y?W-Tfl^0RsK7=Vtj*#+}zxhL#5)KU{->$NzvP2okc@u+iBh zu=7x)zzuHpVSF$=n1pq0X7U|JeYr5Pk+cq51KbDNhWIeEH0e~%Vtb4nO|~|N)10lg=;Xj8bU*Dpo_;+ znAvs8HCQsIf;`;8>7iVQF;;=2MLm-TCr{T+GRf-}ImEPZOB+L-QAZ{tE}^}seElVi z%hD1|{P#z!Lp|xfj9H#XkP1h7QM*z?uxgAeBQr&~dP|3aH?ChC8OnM|u3YKyn2Xi`C|5j4Gchl>3)^$H$Pk1Tcq zd9EXT-+>8~CRbT_~PByKgM1U&&W zPVB>sJuj`+D|?hd8UPP6hesMA%a_#Vy+k`H`qbj|MGSx=-4tXMGnE-oZC6otwRjy5 zZsSrJlcT|jP23p15zKwf%FDW-UM*ZRA2J~HN&W`KuIdnC#*JS9qy%PW1yGv+cp2(| z7~3V~)CgLvH4D5FIIyNw^r_MFz|3(n6F8X@l!HoOp$)sNRP6v?P*~W(pf+houbnzD zxJ7=5P%yMQ>+?{~!~6*D5AY?-K(m|tC|^d)f^w$^As@%YyC8m;9*E_*0tObD)-cyh9!{!0bo=4P|&*(0xTk=%8y(m{Gopp&t3!$jRcCz+d1}a%~q%$gTlc9or|u znBY~)hfCvHuqi^k*rLTuKD4+JE~V(Np)xE`96eH)&09#RO)PYsZJyMD0_ocDU}^wn zG(XWk#o~1>HOCh6Sk&Iq-iGzxGT%1|P|Ru@`UWzb)#0hoX-Xs`9;my+OV}ul;=4K+z;AWUkc<5pbF`|N2 zD~;f0Yf253;jCuk=g#*p(Jdit7q!j2IAby?*C%e0&L)3`;zJ}& zKW=qyklcj)#pukvFqore=mo6rQM0*t9~@J z&O%Sl&a8q2p5)_oS_Q@35M}L(MOkr2`{VmkBSHQ%6YO0}r&wG%$8p4<5~IJRvB)mk znyuUShA-_WtArWHf&=p4-i%aufO5OZRKBz`?(pfCJH7aRIdUQC?#V}!ldg~0Iz0)< zoy3O1?4a9EHycuKC_JrR$Vh(=v`I_NgM2;ibO4H3Jh(dO2;zev2Z+AMs9P-telJ2E zWYo%Pf@m8!c}AuzPi`mLCJT8>CX#!&~tZf;%w>c8&BM1mS*6$!MAHWA*uiXL4i@KgXN@fyw4mTjn7lw9P92u0a zzoqql30qUzd|rpN>KaBW1NW_rj5`|PWIF6i?~@Hpy=wvZ`&n8=Dxm+o0xPsL24^P3 z_m-h+J?BX+`SAwcqrbOtP4%x$=G@aindv__GSV87jSoi#x36j9_Y_TqX_|VM6+I5< z8AD&^fiM{#X&>nyv9_U(r<{?I;Ss%ORL?Sc{xfO^6gPgU(jPWnKudwvct;-}#26;N z7e{a;l)m8Eq5iLUWy?bCaR2W^ZOf(+?!XR%JFH`ltk3kzq^Wl1bb19)dgKlP8pgJP zBnr_h&2Ub;UdxiCkF|6OdkNm&0!DU6!;^pI*i8>T;i9X<&s6r1C!|?GJIQ|BjSwlL zQmG`%94XDrbavMT?|_T+Fn7ld_hL*A8j)d|0%K45K`VrRUPF2dNTZ|9z>p@T0Nqq7 z3hcAJGf);NB?kxf@6#%%)S-lNpB^Y+!+ajIs#T1N!-jL^p z09iGV&OGis?E>zn15`y#dlP->urfeopP7v)ycW2dI7aHlr(K$5MGfy_kSAB3KmePh zz^fb5YQ=;6U~KsL|844gj2#jJa2SWUK4|Zq=>;8N4>u@OP6L=Gn)n-Nq{oWD6{6M6 z0xB|n*9RdMgoudX0#M#icI`gvPkMilbe;kY1&tK}jj=IglK`@9V+tUv>*6+g0Y)M} zAoUwx7@3)Kahs*NyJ7ETwEYJzg^?|5!>9K%Q+smmDYH+zuH1=q0Gvfvak!`4di`h? zA=qz{kx!H%leXGA@Ne%ex<(CMi|+_|0G>{M5=P8Ki*0miw1$;dBK zfa(QUL>9voAp11QZbq0zG=D-wk-HT>ihsbBPC13`}?=2{A;uz*v?1Pf+Ao`(P38y!>sE3O&Dg-bS)T|G`^}pD*8KEN2 zzY}8q9d0NnN{T50Ak-8@i=Y#6Gr1B9Bzwzn1or0R2svRAhc!UQ{>{AfDUWI9VTG0w8q_W$eUCJT=m50P`7w2nP!jdN@yBUk$#*wo!5PmNW z)lVm;4H{X-+3W|HK@uWSIqmKRpH9_XPPUWY;UN-DcOw?pkSs6A!^k~b_+h~We#)_= z47{O0RLPW3L5>;4J{Pnb;wMy4Zk%B|BtX(^#r;hnUnJMiu^d=Pl){J>^;K#>>4$h9 zMSfU_7+Z*J78k9ukh==;Id$9<@+{Ecv#=Ljcn0R%Mujn>2Jt&iA^5#{1HcxEA%u~F z9AMgy?jwHpk0{P#=9zGYG?~Kl3%Jz50pvraHsp3uM?j;Ffb>ssESLW(0_PnU(H%dU zDXV0|QwLMxL$u+?4k?0FvCGEE2_wzCXU*alXgfiRq|mxTKQLI@XBo=w)ED=F4;d0? z(5M8$Nt3*jN*br&IkLinmM6%3D~l&+E@c;l5(3I{6e0gTg7+@E{5h^2teq9?uNY%r zGlTt_nd~cOvHxUt?e6jFa^b}C{Iko4RW4tDND(Ou6gxu;GQy6~gv2X#+$Bpejs$Gt zmm12fN*iD^byiDL#Hs}-0EJc|AH?rA8auz+XyA7n4dAuuAVGqFgDfSy^4OkE(+Q Ar~m)} literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7524556123327ef755a0202d96260d8ffb4d6d32 GIT binary patch literal 9240 zcmb7JU5s2uR=)pzyQimTJRbkd*l}(gJDyJL9{lDA zj_*&W?ro2|)5HF>A$hRXybLyN^@#JJl!QWqWf1%k}P?UeC&ep#oI+szByPBeWpfH80 zf#T-Bs;kPr=4$xW0zEWbBQ#wz)LmVrIeK7)1-B5|t{oQLVpwuZ;e?v#X?!F0IK-6z{tFca=~_lL9YYv^^Z&RC7+*53VPqH$~B%f?rtiq=58}0&M;8T3EuenuT;4iZ2 z*OluE+s9_^D{KbPm(bhKX3?9)EZseg{sDFn{eyf8{WItvVu#T`jM+8x=GZ)X^XM(2 zcZ3~9?;xbu0I2}-G9V|}3xK=;$QeK`0&m0kFW zIvC%I;bnI5zU98o)Mcf5>2s3ErK+A;%QvpySh|(%XT0gPgS75PX?@L$SinVQCH`vU z1ywWC--m`ZzbTFeIw<C7Z{JwD`rhqjG^bWMaf#7BXzKt?G-DBZX*~gv=-Q1qh=mt=S+ONJa0$*by9ws4 zc#S)mC3xBvQ3L8f`ZLh7QLdmQEmWz}Q`S`+rqb6pwVswt^l)$lWg64_x@;NLTGcl7 zo}OwFVyQ#m0U%8s-=7g*oIQImNJ`1 zjhKNKS&4_Ov{P^53^OG&T#g^Y%Byr{f;fqcGrvW+S%!woC4)3hQo?wn-65*|tB(7U)e&S$SypcF;po|Hj zUg6`pz_H=uB-*JHaPKa}#z`SI5PZ>b5(o&FxE2Ec4tLgk28D4NZIQ$xsRGd&RA}pR zlJO4KP5jUgJh_u}jXT4Wad6gz`c&fZdk{EUZ`of3OC%%YT5FOAr=1nhj;A)t>mh<3T&AE|EW`U$mQp2L@LbWE>IWNbU zpESU|9M700X-|P)noy?^hp>t%4?6j$7v!hJFrGL*jsxr+P4*+F6?hHq@Vj7^*TiW% zUgWf4p9TjHrst=5S`vbD-&pe-YdDD@0GhiTlli?CL>e<054;Y3d9w)smTSr_w-b^R z;jgZOIlw=})Q$u`pbvKohLb=oofHOhNY?0J&VUb~x&s~#F%4x#a@h+6_gH7d33eJx z7dS+ZIFoZFGd!`HWY(Px`W45ZGfNG1i$dvWlZ~80NnS;jDt*|;p6V+-?N8O;fpvog z)L}D?zSdLfCR!#_+lrV^E$Y*?C$B!O`^Jz=XPFpAQV@e1P^Q4iZ^O}n5TV2pk&{V! zwp1--X3~bPLHl7|{Ip&dM4BLbo=xTlkE;L((`OIx>agG*uT+-9kyor<^e>TB!hA^tgKja=*hA)P~e-V;nJ&mZTz08Zqvn`WgJQ zF~i7LgN4z$KOM2=CQop^Kb7H$^utF>gC27 z2j3xvTQz(jNCOGy$%vSUuGb*woW?=rMr?~hY&{xNoX0*hE2n9EEaD=-k5usreguin z78bvTE=Nh|5KDz=wL7;5b90OhV&m|S+Vss8l;kj~p7Ky3#^M)}i91&tG4?M>1STTLPjX~ThphI;OvXj*-yP^< zF6f#d-bmh6b;-NjBW#D6*@Sx7ih#6U z&r0=r7_)Xj?Q*^TQQHd!BZYdM#SN&4NtBUxZQSJ087nI;gS$}*Ctwe|Me0XI z$_R0V!P|PIF6Es2CICBlm|5)>gT?t6LkU?FL+wtFR;cBJ;!O;|pZXSkf0?ScsCtJg zx#4jocYPHDU6lM>;ME9%?Ak98dYPt?pElaB^jTbkY4A{V_$3B*ZD!@SgEqew#_K*d z{>9|U1sKEz*idCBPkx~~RlQBS{jWdy(ccUke?4sc6-?+3(jiyvX4AiymEf7d8RMgN z4j0b@*`8awj)Cu?3=dQ@R715@LGWE0964oc7#(krlT)VCu?`$ElUZ=V42}(R3qe_d z+4qgU>J~I^p?8yNDk#k!%l< zDvC@cR{o*#N7#V0J^E7DKqTgf=P-xJLeW-WC#5B5R*JX|Q+_<8($dP%m?yD! z{K2+xm86p_aD%XrbpAl;saKWnmMK*IrThv6lY3fUrNHweF#DlKS0hPhE(mae;HjpW z4&y0p`0$F+{4`VVZBcf@pBV`4#2?dgBvsn?ZPikz^|IQX-SMtC~5jYC4KFtxlVQ#)&iA z{zkUvMS#EF_DJhtLM{tg`8JdVq1gY^XfUjkD#HF0LL+RZeyY@^!C2R~dCiKbrG_}0 z8V^m(v_7MGd02`(!+rYNsv`(Rn2NA<(6{LrhXtDR&aT~(`0hvfSs4{@fCdtP(cz1e zfMZSzV9y;_ttX23ljXM# z{C`FZ(FJ2G$5la)U92Jlco{{84MU0L`nmx}K!qcqxdo;}LXGSYWkGi8Avr|f#^>F$ zCl?^TGNZ>?HF3t>-1bS(*w9pyrK-JSS5VRp!owtGNH^rXd=IF_yHt&x9odq+qznG< zQ4$-Ktypji;1m$_iQAN-I^1R+4`uUL^Q`C|ds}*>?;vtdLIN!L4=6v&d2OhIAWtMh z+`%YJ`M%+bBiC<9gc#a$jTi&}NP`ho)cace6GQwsrKez~Oyoa}FjMbqG0zP#?@9na zWu1?J`CmrsQ15HkIXYZtC0QtX;mZILSrE~xtc3jNZ62`K~lQ=+*t6Rpa;?q+~o=oIai3B#OEx>ZXCOjGjRb#?a{{M@V|URZ~aEwb6(Lb%4Op{LhgUW1Q}QTCq`wEUxFb)3P#nmlB%JlsoIyu<4S3_n>;x8 zZ82MEr_JzzSFBS-H)2leuTe`<{tmUq)Qm|=Fz|0EgRsX!mb#)T$OYuuC^fU<}UZ(Jh zM@cxi(|KQ=qnY{xm0(q43GaX)|0a>7iXYOChIgK~Zq{#o`2MwJ>0}`u_yJ9#(JdP# z8=lS9DIe14jFa=A)&x!|h12l2W;Jo2X4)j$`NI^Z)YDE2uM+eaGtwp6QhpWW`kwqV z0OYjNhLYmD*i2vjA*2l1Ts*S&)lD5S0`w`>7@|Q|c!2C;Ur7xVv#&JGO(UA=;pJs8 z%L2SG7+0B%?`+JnHjT8{GZ>;pA34fRvuCa&t)EUHY%9yKO=pu2v`wpL{_Z^Gjo?C8 zHVeIibfL}la?eU9dj-TOl?TWree~{aNVLqu!LN>+6SYj0g zfB*9>JbIZj_z@qVpUohE#{=D39UeAbSQ>G}KBt_nR82vuPamW)9sv0&75- z2Sc^KG;DG=WSiwfP#$ID0L#4GE__~VfA1k^wu?>6$_kyjKP zk$0YWWdpBll*%6@7H`V;Njwe6=MU1W!P`md-NCB`@D25i-h_^m6MsCvz0 zi$!gu5-=`;mJ<_Hm1*M9JtrplySA95DRWz=kSL81Zjomx=p@gAg34U@r5Z@Nm(osZ zkj+bEGX0JBidsAMgQP}}Oi-J{G~viz6M}dZ&k?IqLk4@>fg;3XR-T%f*g~#2LMV&Z z?lrhH1ev+gNqLeT-g)=mlv0Hki8Dk!$!<1PuX|Ah9j8a~1o_xS8oEl=b*d;zmVt+K z%cWZ^eOEzlrXU|skas4pG|{IP-HT+VQfc*b`Jv<9A~mBMGP7ULQ^;>ZMwH|?P?Z!L zLNco!#l2Bh&#L9gvRcMHKCPB@deS|pAJk`#RP^arr_G98ab};HDa;u8f60J&J+_Wn p&|>-jrB=kv|JXu-C-9Y4mMvZTxn^kpYni1lwUgH4@r=q>{|B6butWd= literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9e94229e456227e3aa3e9a9db8800daab1994be3 GIT binary patch literal 13541 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 MFrS$|I&=7c0aE(iT>t<8 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e5f226443ec3b9907b3e769a0e1b2a154fe94306 GIT binary patch literal 4954 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py new file mode 100644 index 0000000..226fe84 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py @@ -0,0 +1,171 @@ +"""Logic that powers autocompletion installed by ``pip completion``. +""" + +import optparse +import os +import sys +from itertools import chain +from typing import Any, Iterable, List, Optional + +from pip._internal.cli.main_parser import create_main_parser +from pip._internal.commands import commands_dict, create_command +from pip._internal.metadata import get_default_environment + + +def autocomplete() -> None: + """Entry Point for completion of main and subcommand options.""" + # Don't complete if user hasn't sourced bash_completion file. + if "PIP_AUTO_COMPLETE" not in os.environ: + return + cwords = os.environ["COMP_WORDS"].split()[1:] + cword = int(os.environ["COMP_CWORD"]) + try: + current = cwords[cword - 1] + except IndexError: + current = "" + + parser = create_main_parser() + subcommands = list(commands_dict) + options = [] + + # subcommand + subcommand_name: Optional[str] = None + for word in cwords: + if word in subcommands: + subcommand_name = word + break + # subcommand options + if subcommand_name is not None: + # special case: 'help' subcommand has no options + if subcommand_name == "help": + sys.exit(1) + # special case: list locally installed dists for show and uninstall + should_list_installed = not current.startswith("-") and subcommand_name in [ + "show", + "uninstall", + ] + if should_list_installed: + env = get_default_environment() + lc = current.lower() + installed = [ + dist.canonical_name + for dist in env.iter_installed_distributions(local_only=True) + if dist.canonical_name.startswith(lc) + and dist.canonical_name not in cwords[1:] + ] + # if there are no dists installed, fall back to option completion + if installed: + for dist in installed: + print(dist) + sys.exit(1) + + should_list_installables = ( + not current.startswith("-") and subcommand_name == "install" + ) + if should_list_installables: + for path in auto_complete_paths(current, "path"): + print(path) + sys.exit(1) + + subcommand = create_command(subcommand_name) + + for opt in subcommand.parser.option_list_all: + if opt.help != optparse.SUPPRESS_HELP: + for opt_str in opt._long_opts + opt._short_opts: + options.append((opt_str, opt.nargs)) + + # filter out previously specified options from available options + prev_opts = [x.split("=")[0] for x in cwords[1 : cword - 1]] + options = [(x, v) for (x, v) in options if x not in prev_opts] + # filter options by current input + options = [(k, v) for k, v in options if k.startswith(current)] + # get completion type given cwords and available subcommand options + completion_type = get_path_completion_type( + cwords, + cword, + subcommand.parser.option_list_all, + ) + # get completion files and directories if ``completion_type`` is + # ````, ``

`` or ```` + if completion_type: + paths = auto_complete_paths(current, completion_type) + options = [(path, 0) for path in paths] + for option in options: + opt_label = option[0] + # append '=' to options which require args + if option[1] and option[0][:2] == "--": + opt_label += "=" + print(opt_label) + else: + # show main parser options only when necessary + + opts = [i.option_list for i in parser.option_groups] + opts.append(parser.option_list) + flattened_opts = chain.from_iterable(opts) + if current.startswith("-"): + for opt in flattened_opts: + if opt.help != optparse.SUPPRESS_HELP: + subcommands += opt._long_opts + opt._short_opts + else: + # get completion type given cwords and all available options + completion_type = get_path_completion_type(cwords, cword, flattened_opts) + if completion_type: + subcommands = list(auto_complete_paths(current, completion_type)) + + print(" ".join([x for x in subcommands if x.startswith(current)])) + sys.exit(1) + + +def get_path_completion_type( + cwords: List[str], cword: int, opts: Iterable[Any] +) -> Optional[str]: + """Get the type of path completion (``file``, ``dir``, ``path`` or None) + + :param cwords: same as the environmental variable ``COMP_WORDS`` + :param cword: same as the environmental variable ``COMP_CWORD`` + :param opts: The available options to check + :return: path completion type (``file``, ``dir``, ``path`` or None) + """ + if cword < 2 or not cwords[cword - 2].startswith("-"): + return None + for opt in opts: + if opt.help == optparse.SUPPRESS_HELP: + continue + for o in str(opt).split("/"): + if cwords[cword - 2].split("=")[0] == o: + if not opt.metavar or any( + x in ("path", "file", "dir") for x in opt.metavar.split("/") + ): + return opt.metavar + return None + + +def auto_complete_paths(current: str, completion_type: str) -> Iterable[str]: + """If ``completion_type`` is ``file`` or ``path``, list all regular files + and directories starting with ``current``; otherwise only list directories + starting with ``current``. + + :param current: The word to be completed + :param completion_type: path completion type(``file``, ``path`` or ``dir``) + :return: A generator of regular files and/or directories + """ + directory, filename = os.path.split(current) + current_path = os.path.abspath(directory) + # Don't complete paths if they can't be accessed + if not os.access(current_path, os.R_OK): + return + filename = os.path.normcase(filename) + # list all files that start with ``filename`` + file_list = ( + x for x in os.listdir(current_path) if os.path.normcase(x).startswith(filename) + ) + for f in file_list: + opt = os.path.join(current_path, f) + comp_file = os.path.normcase(os.path.join(directory, f)) + # complete regular files when there is not ```` after option + # complete directories when there is ````, ```` or + # ````after option + if completion_type != "dir" and os.path.isfile(opt): + yield comp_file + elif os.path.isdir(opt): + yield os.path.join(comp_file, "") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/base_command.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/base_command.py new file mode 100644 index 0000000..f5dc0fe --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/base_command.py @@ -0,0 +1,220 @@ +"""Base Command class, and related routines""" + +import functools +import logging +import logging.config +import optparse +import os +import sys +import traceback +from optparse import Values +from typing import Any, Callable, List, Optional, Tuple + +from pip._internal.cli import cmdoptions +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.cli.status_codes import ( + ERROR, + PREVIOUS_BUILD_DIR_ERROR, + UNKNOWN_ERROR, + VIRTUALENV_NOT_FOUND, +) +from pip._internal.exceptions import ( + BadCommand, + CommandError, + DiagnosticPipError, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + UninstallationError, +) +from pip._internal.utils.filesystem import check_path_owner +from pip._internal.utils.logging import BrokenStdoutLoggingError, setup_logging +from pip._internal.utils.misc import get_prog, normalize_path +from pip._internal.utils.temp_dir import TempDirectoryTypeRegistry as TempDirRegistry +from pip._internal.utils.temp_dir import global_tempdir_manager, tempdir_registry +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = ["Command"] + +logger = logging.getLogger(__name__) + + +class Command(CommandContextMixIn): + usage: str = "" + ignore_require_venv: bool = False + + def __init__(self, name: str, summary: str, isolated: bool = False) -> None: + super().__init__() + + self.name = name + self.summary = summary + self.parser = ConfigOptionParser( + usage=self.usage, + prog=f"{get_prog()} {name}", + formatter=UpdatingDefaultsHelpFormatter(), + add_help_option=False, + name=name, + description=self.__doc__, + isolated=isolated, + ) + + self.tempdir_registry: Optional[TempDirRegistry] = None + + # Commands should add options to this option group + optgroup_name = f"{self.name.capitalize()} Options" + self.cmd_opts = optparse.OptionGroup(self.parser, optgroup_name) + + # Add the general options + gen_opts = cmdoptions.make_option_group( + cmdoptions.general_group, + self.parser, + ) + self.parser.add_option_group(gen_opts) + + self.add_options() + + def add_options(self) -> None: + pass + + def handle_pip_version_check(self, options: Values) -> None: + """ + This is a no-op so that commands by default do not do the pip version + check. + """ + # Make sure we do the pip version check if the index_group options + # are present. + assert not hasattr(options, "no_index") + + def run(self, options: Values, args: List[str]) -> int: + raise NotImplementedError + + def parse_args(self, args: List[str]) -> Tuple[Values, List[str]]: + # factored out for testability + return self.parser.parse_args(args) + + def main(self, args: List[str]) -> int: + try: + with self.main_context(): + return self._main(args) + finally: + logging.shutdown() + + def _main(self, args: List[str]) -> int: + # We must initialize this before the tempdir manager, otherwise the + # configuration would not be accessible by the time we clean up the + # tempdir manager. + self.tempdir_registry = self.enter_context(tempdir_registry()) + # Intentionally set as early as possible so globally-managed temporary + # directories are available to the rest of the code. + self.enter_context(global_tempdir_manager()) + + options, args = self.parse_args(args) + + # Set verbosity so that it can be used elsewhere. + self.verbosity = options.verbose - options.quiet + + level_number = setup_logging( + verbosity=self.verbosity, + no_color=options.no_color, + user_log_file=options.log, + ) + + # TODO: Try to get these passing down from the command? + # without resorting to os.environ to hold these. + # This also affects isolated builds and it should. + + if options.no_input: + os.environ["PIP_NO_INPUT"] = "1" + + if options.exists_action: + os.environ["PIP_EXISTS_ACTION"] = " ".join(options.exists_action) + + if options.require_venv and not self.ignore_require_venv: + # If a venv is required check if it can really be found + if not running_under_virtualenv(): + logger.critical("Could not find an activated virtualenv (required).") + sys.exit(VIRTUALENV_NOT_FOUND) + + if options.cache_dir: + options.cache_dir = normalize_path(options.cache_dir) + if not check_path_owner(options.cache_dir): + logger.warning( + "The directory '%s' or its parent directory is not owned " + "or is not writable by the current user. The cache " + "has been disabled. Check the permissions and owner of " + "that directory. If executing pip with sudo, you should " + "use sudo's -H flag.", + options.cache_dir, + ) + options.cache_dir = None + + if "2020-resolver" in options.features_enabled: + logger.warning( + "--use-feature=2020-resolver no longer has any effect, " + "since it is now the default dependency resolver in pip. " + "This will become an error in pip 21.0." + ) + + def intercepts_unhandled_exc( + run_func: Callable[..., int] + ) -> Callable[..., int]: + @functools.wraps(run_func) + def exc_logging_wrapper(*args: Any) -> int: + try: + status = run_func(*args) + assert isinstance(status, int) + return status + except DiagnosticPipError as exc: + logger.error("[present-diagnostic] %s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except PreviousBuildDirError as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return PREVIOUS_BUILD_DIR_ERROR + except ( + InstallationError, + UninstallationError, + BadCommand, + NetworkConnectionError, + ) as exc: + logger.critical(str(exc)) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except CommandError as exc: + logger.critical("%s", exc) + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BrokenStdoutLoggingError: + # Bypass our logger and write any remaining messages to + # stderr because stdout no longer works. + print("ERROR: Pipe to stdout was broken", file=sys.stderr) + if level_number <= logging.DEBUG: + traceback.print_exc(file=sys.stderr) + + return ERROR + except KeyboardInterrupt: + logger.critical("Operation cancelled by user") + logger.debug("Exception information:", exc_info=True) + + return ERROR + except BaseException: + logger.critical("Exception:", exc_info=True) + + return UNKNOWN_ERROR + + return exc_logging_wrapper + + try: + if not options.debug_mode: + run = intercepts_unhandled_exc(self.run) + else: + run = self.run + return run(options, args) + finally: + self.handle_pip_version_check(options) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py new file mode 100644 index 0000000..b7e54f7 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py @@ -0,0 +1,1018 @@ +""" +shared options and groups + +The principle here is to define options once, but *not* instantiate them +globally. One reason being that options with action='append' can carry state +between parses. pip parses general options twice internally, and shouldn't +pass on state. To be consistent, all options will follow this design. +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import os +import textwrap +from functools import partial +from optparse import SUPPRESS_HELP, Option, OptionGroup, OptionParser, Values +from textwrap import dedent +from typing import Any, Callable, Dict, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.parser import ConfigOptionParser +from pip._internal.cli.progress_bars import BAR_TYPES +from pip._internal.exceptions import CommandError +from pip._internal.locations import USER_CACHE_DIR, get_src_prefix +from pip._internal.models.format_control import FormatControl +from pip._internal.models.index import PyPI +from pip._internal.models.target_python import TargetPython +from pip._internal.utils.hashes import STRONG_HASHES +from pip._internal.utils.misc import strtobool + +logger = logging.getLogger(__name__) + + +def raise_option_error(parser: OptionParser, option: Option, msg: str) -> None: + """ + Raise an option parsing error using parser.error(). + + Args: + parser: an OptionParser instance. + option: an Option instance. + msg: the error text. + """ + msg = f"{option} error: {msg}" + msg = textwrap.fill(" ".join(msg.split())) + parser.error(msg) + + +def make_option_group(group: Dict[str, Any], parser: ConfigOptionParser) -> OptionGroup: + """ + Return an OptionGroup object + group -- assumed to be dict with 'name' and 'options' keys + parser -- an optparse Parser + """ + option_group = OptionGroup(parser, group["name"]) + for option in group["options"]: + option_group.add_option(option()) + return option_group + + +def check_install_build_global( + options: Values, check_options: Optional[Values] = None +) -> None: + """Disable wheels if per-setup.py call options are set. + + :param options: The OptionParser options to update. + :param check_options: The options to check, if not supplied defaults to + options. + """ + if check_options is None: + check_options = options + + def getname(n: str) -> Optional[Any]: + return getattr(check_options, n, None) + + names = ["build_options", "global_options", "install_options"] + if any(map(getname, names)): + control = options.format_control + control.disallow_binaries() + logger.warning( + "Disabling all use of wheels due to the use of --build-option " + "/ --global-option / --install-option.", + ) + + +def check_dist_restriction(options: Values, check_target: bool = False) -> None: + """Function for determining if custom platform options are allowed. + + :param options: The OptionParser options. + :param check_target: Whether or not to check if --target is being used. + """ + dist_restriction_set = any( + [ + options.python_version, + options.platforms, + options.abis, + options.implementation, + ] + ) + + binary_only = FormatControl(set(), {":all:"}) + sdist_dependencies_allowed = ( + options.format_control != binary_only and not options.ignore_dependencies + ) + + # Installations or downloads using dist restrictions must not combine + # source distributions and dist-specific wheels, as they are not + # guaranteed to be locally compatible. + if dist_restriction_set and sdist_dependencies_allowed: + raise CommandError( + "When restricting platform and interpreter constraints using " + "--python-version, --platform, --abi, or --implementation, " + "either --no-deps must be set, or --only-binary=:all: must be " + "set and --no-binary must not be set (or must be set to " + ":none:)." + ) + + if check_target: + if dist_restriction_set and not options.target_dir: + raise CommandError( + "Can not use any platform or abi specific options unless " + "installing via '--target'" + ) + + +def _path_option_check(option: Option, opt: str, value: str) -> str: + return os.path.expanduser(value) + + +def _package_name_option_check(option: Option, opt: str, value: str) -> str: + return canonicalize_name(value) + + +class PipOption(Option): + TYPES = Option.TYPES + ("path", "package_name") + TYPE_CHECKER = Option.TYPE_CHECKER.copy() + TYPE_CHECKER["package_name"] = _package_name_option_check + TYPE_CHECKER["path"] = _path_option_check + + +########### +# options # +########### + +help_: Callable[..., Option] = partial( + Option, + "-h", + "--help", + dest="help", + action="help", + help="Show help.", +) + +debug_mode: Callable[..., Option] = partial( + Option, + "--debug", + dest="debug_mode", + action="store_true", + default=False, + help=( + "Let unhandled exceptions propagate outside the main subroutine, " + "instead of logging them to stderr." + ), +) + +isolated_mode: Callable[..., Option] = partial( + Option, + "--isolated", + dest="isolated_mode", + action="store_true", + default=False, + help=( + "Run pip in an isolated mode, ignoring environment variables and user " + "configuration." + ), +) + +require_virtualenv: Callable[..., Option] = partial( + Option, + "--require-virtualenv", + "--require-venv", + dest="require_venv", + action="store_true", + default=False, + help=( + "Allow pip to only run in a virtual environment; " + "exit with an error otherwise." + ), +) + +verbose: Callable[..., Option] = partial( + Option, + "-v", + "--verbose", + dest="verbose", + action="count", + default=0, + help="Give more output. Option is additive, and can be used up to 3 times.", +) + +no_color: Callable[..., Option] = partial( + Option, + "--no-color", + dest="no_color", + action="store_true", + default=False, + help="Suppress colored output.", +) + +version: Callable[..., Option] = partial( + Option, + "-V", + "--version", + dest="version", + action="store_true", + help="Show version and exit.", +) + +quiet: Callable[..., Option] = partial( + Option, + "-q", + "--quiet", + dest="quiet", + action="count", + default=0, + help=( + "Give less output. Option is additive, and can be used up to 3" + " times (corresponding to WARNING, ERROR, and CRITICAL logging" + " levels)." + ), +) + +progress_bar: Callable[..., Option] = partial( + Option, + "--progress-bar", + dest="progress_bar", + type="choice", + choices=list(BAR_TYPES.keys()), + default="on", + help=( + "Specify type of progress to be displayed [" + + "|".join(BAR_TYPES.keys()) + + "] (default: %default)" + ), +) + +log: Callable[..., Option] = partial( + PipOption, + "--log", + "--log-file", + "--local-log", + dest="log", + metavar="path", + type="path", + help="Path to a verbose appending log.", +) + +no_input: Callable[..., Option] = partial( + Option, + # Don't ask for input + "--no-input", + dest="no_input", + action="store_true", + default=False, + help="Disable prompting for input.", +) + +proxy: Callable[..., Option] = partial( + Option, + "--proxy", + dest="proxy", + type="str", + default="", + help="Specify a proxy in the form [user:passwd@]proxy.server:port.", +) + +retries: Callable[..., Option] = partial( + Option, + "--retries", + dest="retries", + type="int", + default=5, + help="Maximum number of retries each connection should attempt " + "(default %default times).", +) + +timeout: Callable[..., Option] = partial( + Option, + "--timeout", + "--default-timeout", + metavar="sec", + dest="timeout", + type="float", + default=15, + help="Set the socket timeout (default %default seconds).", +) + + +def exists_action() -> Option: + return Option( + # Option when path already exist + "--exists-action", + dest="exists_action", + type="choice", + choices=["s", "i", "w", "b", "a"], + default=[], + action="append", + metavar="action", + help="Default action when a path already exists: " + "(s)witch, (i)gnore, (w)ipe, (b)ackup, (a)bort.", + ) + + +cert: Callable[..., Option] = partial( + PipOption, + "--cert", + dest="cert", + type="path", + metavar="path", + help=( + "Path to PEM-encoded CA certificate bundle. " + "If provided, overrides the default. " + "See 'SSL Certificate Verification' in pip documentation " + "for more information." + ), +) + +client_cert: Callable[..., Option] = partial( + PipOption, + "--client-cert", + dest="client_cert", + type="path", + default=None, + metavar="path", + help="Path to SSL client certificate, a single file containing the " + "private key and the certificate in PEM format.", +) + +index_url: Callable[..., Option] = partial( + Option, + "-i", + "--index-url", + "--pypi-url", + dest="index_url", + metavar="URL", + default=PyPI.simple_url, + help="Base URL of the Python Package Index (default %default). " + "This should point to a repository compliant with PEP 503 " + "(the simple repository API) or a local directory laid out " + "in the same format.", +) + + +def extra_index_url() -> Option: + return Option( + "--extra-index-url", + dest="extra_index_urls", + metavar="URL", + action="append", + default=[], + help="Extra URLs of package indexes to use in addition to " + "--index-url. Should follow the same rules as " + "--index-url.", + ) + + +no_index: Callable[..., Option] = partial( + Option, + "--no-index", + dest="no_index", + action="store_true", + default=False, + help="Ignore package index (only looking at --find-links URLs instead).", +) + + +def find_links() -> Option: + return Option( + "-f", + "--find-links", + dest="find_links", + action="append", + default=[], + metavar="url", + help="If a URL or path to an html file, then parse for links to " + "archives such as sdist (.tar.gz) or wheel (.whl) files. " + "If a local path or file:// URL that's a directory, " + "then look for archives in the directory listing. " + "Links to VCS project URLs are not supported.", + ) + + +def trusted_host() -> Option: + return Option( + "--trusted-host", + dest="trusted_hosts", + action="append", + metavar="HOSTNAME", + default=[], + help="Mark this host or host:port pair as trusted, even though it " + "does not have valid or any HTTPS.", + ) + + +def constraints() -> Option: + return Option( + "-c", + "--constraint", + dest="constraints", + action="append", + default=[], + metavar="file", + help="Constrain versions using the given constraints file. " + "This option can be used multiple times.", + ) + + +def requirements() -> Option: + return Option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help="Install from the given requirements file. " + "This option can be used multiple times.", + ) + + +def editable() -> Option: + return Option( + "-e", + "--editable", + dest="editables", + action="append", + default=[], + metavar="path/url", + help=( + "Install a project in editable mode (i.e. setuptools " + '"develop mode") from a local project path or a VCS url.' + ), + ) + + +def _handle_src(option: Option, opt_str: str, value: str, parser: OptionParser) -> None: + value = os.path.abspath(value) + setattr(parser.values, option.dest, value) + + +src: Callable[..., Option] = partial( + PipOption, + "--src", + "--source", + "--source-dir", + "--source-directory", + dest="src_dir", + type="path", + metavar="dir", + default=get_src_prefix(), + action="callback", + callback=_handle_src, + help="Directory to check out editable projects into. " + 'The default in a virtualenv is "/src". ' + 'The default for global installs is "/src".', +) + + +def _get_format_control(values: Values, option: Option) -> Any: + """Get a format_control object.""" + return getattr(values, option.dest) + + +def _handle_no_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.no_binary, + existing.only_binary, + ) + + +def _handle_only_binary( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + existing = _get_format_control(parser.values, option) + FormatControl.handle_mutual_excludes( + value, + existing.only_binary, + existing.no_binary, + ) + + +def no_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--no-binary", + dest="format_control", + action="callback", + callback=_handle_no_binary, + type="str", + default=format_control, + help="Do not use binary packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all binary packages, ":none:" to empty the set (notice ' + "the colons), or one or more package names with commas between " + "them (no colons). Note that some packages are tricky to compile " + "and may fail to install when this option is used on them.", + ) + + +def only_binary() -> Option: + format_control = FormatControl(set(), set()) + return Option( + "--only-binary", + dest="format_control", + action="callback", + callback=_handle_only_binary, + type="str", + default=format_control, + help="Do not use source packages. Can be supplied multiple times, and " + 'each time adds to the existing value. Accepts either ":all:" to ' + 'disable all source packages, ":none:" to empty the set, or one ' + "or more package names with commas between them. Packages " + "without binary distributions will fail to install when this " + "option is used on them.", + ) + + +platforms: Callable[..., Option] = partial( + Option, + "--platform", + dest="platforms", + metavar="platform", + action="append", + default=None, + help=( + "Only use wheels compatible with . Defaults to the " + "platform of the running system. Use this option multiple times to " + "specify multiple platforms supported by the target interpreter." + ), +) + + +# This was made a separate function for unit-testing purposes. +def _convert_python_version(value: str) -> Tuple[Tuple[int, ...], Optional[str]]: + """ + Convert a version string like "3", "37", or "3.7.3" into a tuple of ints. + + :return: A 2-tuple (version_info, error_msg), where `error_msg` is + non-None if and only if there was a parsing error. + """ + if not value: + # The empty string is the same as not providing a value. + return (None, None) + + parts = value.split(".") + if len(parts) > 3: + return ((), "at most three version parts are allowed") + + if len(parts) == 1: + # Then we are in the case of "3" or "37". + value = parts[0] + if len(value) > 1: + parts = [value[0], value[1:]] + + try: + version_info = tuple(int(part) for part in parts) + except ValueError: + return ((), "each version part must be an integer") + + return (version_info, None) + + +def _handle_python_version( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """ + Handle a provided --python-version value. + """ + version_info, error_msg = _convert_python_version(value) + if error_msg is not None: + msg = "invalid --python-version value: {!r}: {}".format( + value, + error_msg, + ) + raise_option_error(parser, option=option, msg=msg) + + parser.values.python_version = version_info + + +python_version: Callable[..., Option] = partial( + Option, + "--python-version", + dest="python_version", + metavar="python_version", + action="callback", + callback=_handle_python_version, + type="str", + default=None, + help=dedent( + """\ + The Python interpreter version to use for wheel and "Requires-Python" + compatibility checks. Defaults to a version derived from the running + interpreter. The version can be specified using up to three dot-separated + integers (e.g. "3" for 3.0.0, "3.7" for 3.7.0, or "3.7.3"). A major-minor + version can also be given as a string without dots (e.g. "37" for 3.7.0). + """ + ), +) + + +implementation: Callable[..., Option] = partial( + Option, + "--implementation", + dest="implementation", + metavar="implementation", + default=None, + help=( + "Only use wheels compatible with Python " + "implementation , e.g. 'pp', 'jy', 'cp', " + " or 'ip'. If not specified, then the current " + "interpreter implementation is used. Use 'py' to force " + "implementation-agnostic wheels." + ), +) + + +abis: Callable[..., Option] = partial( + Option, + "--abi", + dest="abis", + metavar="abi", + action="append", + default=None, + help=( + "Only use wheels compatible with Python abi , e.g. 'pypy_41'. " + "If not specified, then the current interpreter abi tag is used. " + "Use this option multiple times to specify multiple abis supported " + "by the target interpreter. Generally you will need to specify " + "--implementation, --platform, and --python-version when using this " + "option." + ), +) + + +def add_target_python_options(cmd_opts: OptionGroup) -> None: + cmd_opts.add_option(platforms()) + cmd_opts.add_option(python_version()) + cmd_opts.add_option(implementation()) + cmd_opts.add_option(abis()) + + +def make_target_python(options: Values) -> TargetPython: + target_python = TargetPython( + platforms=options.platforms, + py_version_info=options.python_version, + abis=options.abis, + implementation=options.implementation, + ) + + return target_python + + +def prefer_binary() -> Option: + return Option( + "--prefer-binary", + dest="prefer_binary", + action="store_true", + default=False, + help="Prefer older binary packages over newer source packages.", + ) + + +cache_dir: Callable[..., Option] = partial( + PipOption, + "--cache-dir", + dest="cache_dir", + default=USER_CACHE_DIR, + metavar="dir", + type="path", + help="Store the cache data in .", +) + + +def _handle_no_cache_dir( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-cache-dir option. + + This is an optparse.Option callback for the --no-cache-dir option. + """ + # The value argument will be None if --no-cache-dir is passed via the + # command-line, since the option doesn't accept arguments. However, + # the value can be non-None if the option is triggered e.g. by an + # environment variable, like PIP_NO_CACHE_DIR=true. + if value is not None: + # Then parse the string value to get argument error-checking. + try: + strtobool(value) + except ValueError as exc: + raise_option_error(parser, option=option, msg=str(exc)) + + # Originally, setting PIP_NO_CACHE_DIR to a value that strtobool() + # converted to 0 (like "false" or "no") caused cache_dir to be disabled + # rather than enabled (logic would say the latter). Thus, we disable + # the cache directory not just on values that parse to True, but (for + # backwards compatibility reasons) also on values that parse to False. + # In other words, always set it to False if the option is provided in + # some (valid) form. + parser.values.cache_dir = False + + +no_cache: Callable[..., Option] = partial( + Option, + "--no-cache-dir", + dest="cache_dir", + action="callback", + callback=_handle_no_cache_dir, + help="Disable the cache.", +) + +no_deps: Callable[..., Option] = partial( + Option, + "--no-deps", + "--no-dependencies", + dest="ignore_dependencies", + action="store_true", + default=False, + help="Don't install package dependencies.", +) + +ignore_requires_python: Callable[..., Option] = partial( + Option, + "--ignore-requires-python", + dest="ignore_requires_python", + action="store_true", + help="Ignore the Requires-Python information.", +) + +no_build_isolation: Callable[..., Option] = partial( + Option, + "--no-build-isolation", + dest="build_isolation", + action="store_false", + default=True, + help="Disable isolation when building a modern source distribution. " + "Build dependencies specified by PEP 518 must be already installed " + "if this option is used.", +) + + +def _handle_no_use_pep517( + option: Option, opt: str, value: str, parser: OptionParser +) -> None: + """ + Process a value provided for the --no-use-pep517 option. + + This is an optparse.Option callback for the no_use_pep517 option. + """ + # Since --no-use-pep517 doesn't accept arguments, the value argument + # will be None if --no-use-pep517 is passed via the command-line. + # However, the value can be non-None if the option is triggered e.g. + # by an environment variable, for example "PIP_NO_USE_PEP517=true". + if value is not None: + msg = """A value was passed for --no-use-pep517, + probably using either the PIP_NO_USE_PEP517 environment variable + or the "no-use-pep517" config file option. Use an appropriate value + of the PIP_USE_PEP517 environment variable or the "use-pep517" + config file option instead. + """ + raise_option_error(parser, option=option, msg=msg) + + # Otherwise, --no-use-pep517 was passed via the command-line. + parser.values.use_pep517 = False + + +use_pep517: Any = partial( + Option, + "--use-pep517", + dest="use_pep517", + action="store_true", + default=None, + help="Use PEP 517 for building source distributions " + "(use --no-use-pep517 to force legacy behaviour).", +) + +no_use_pep517: Any = partial( + Option, + "--no-use-pep517", + dest="use_pep517", + action="callback", + callback=_handle_no_use_pep517, + default=None, + help=SUPPRESS_HELP, +) + +install_options: Callable[..., Option] = partial( + Option, + "--install-option", + dest="install_options", + action="append", + metavar="options", + help="Extra arguments to be supplied to the setup.py install " + 'command (use like --install-option="--install-scripts=/usr/local/' + 'bin"). Use multiple --install-option options to pass multiple ' + "options to setup.py install. If you are using an option with a " + "directory path, be sure to use absolute path.", +) + +build_options: Callable[..., Option] = partial( + Option, + "--build-option", + dest="build_options", + metavar="options", + action="append", + help="Extra arguments to be supplied to 'setup.py bdist_wheel'.", +) + +global_options: Callable[..., Option] = partial( + Option, + "--global-option", + dest="global_options", + action="append", + metavar="options", + help="Extra global options to be supplied to the setup.py " + "call before the install or bdist_wheel command.", +) + +no_clean: Callable[..., Option] = partial( + Option, + "--no-clean", + action="store_true", + default=False, + help="Don't clean up build directories.", +) + +pre: Callable[..., Option] = partial( + Option, + "--pre", + action="store_true", + default=False, + help="Include pre-release and development versions. By default, " + "pip only finds stable versions.", +) + +disable_pip_version_check: Callable[..., Option] = partial( + Option, + "--disable-pip-version-check", + dest="disable_pip_version_check", + action="store_true", + default=True, + help="Don't periodically check PyPI to determine whether a new version " + "of pip is available for download. Implied with --no-index.", +) + + +def _handle_merge_hash( + option: Option, opt_str: str, value: str, parser: OptionParser +) -> None: + """Given a value spelled "algo:digest", append the digest to a list + pointed to in a dict by the algo name.""" + if not parser.values.hashes: + parser.values.hashes = {} + try: + algo, digest = value.split(":", 1) + except ValueError: + parser.error( + "Arguments to {} must be a hash name " # noqa + "followed by a value, like --hash=sha256:" + "abcde...".format(opt_str) + ) + if algo not in STRONG_HASHES: + parser.error( + "Allowed hash algorithms for {} are {}.".format( # noqa + opt_str, ", ".join(STRONG_HASHES) + ) + ) + parser.values.hashes.setdefault(algo, []).append(digest) + + +hash: Callable[..., Option] = partial( + Option, + "--hash", + # Hash values eventually end up in InstallRequirement.hashes due to + # __dict__ copying in process_line(). + dest="hashes", + action="callback", + callback=_handle_merge_hash, + type="string", + help="Verify that the package's archive matches this " + "hash before installing. Example: --hash=sha256:abcdef...", +) + + +require_hashes: Callable[..., Option] = partial( + Option, + "--require-hashes", + dest="require_hashes", + action="store_true", + default=False, + help="Require a hash to check each requirement against, for " + "repeatable installs. This option is implied when any package in a " + "requirements file has a --hash option.", +) + + +list_path: Callable[..., Option] = partial( + PipOption, + "--path", + dest="path", + type="path", + action="append", + help="Restrict to the specified installation path for listing " + "packages (can be used multiple times).", +) + + +def check_list_path_option(options: Values) -> None: + if options.path and (options.user or options.local): + raise CommandError("Cannot combine '--path' with '--user' or '--local'") + + +list_exclude: Callable[..., Option] = partial( + PipOption, + "--exclude", + dest="excludes", + action="append", + metavar="package", + type="package_name", + help="Exclude specified package from the output", +) + + +no_python_version_warning: Callable[..., Option] = partial( + Option, + "--no-python-version-warning", + dest="no_python_version_warning", + action="store_true", + default=False, + help="Silence deprecation warnings for upcoming unsupported Pythons.", +) + + +use_new_feature: Callable[..., Option] = partial( + Option, + "--use-feature", + dest="features_enabled", + metavar="feature", + action="append", + default=[], + choices=["2020-resolver", "fast-deps", "in-tree-build"], + help="Enable new functionality, that may be backward incompatible.", +) + +use_deprecated_feature: Callable[..., Option] = partial( + Option, + "--use-deprecated", + dest="deprecated_features_enabled", + metavar="feature", + action="append", + default=[], + choices=[ + "legacy-resolver", + "out-of-tree-build", + "backtrack-on-build-failures", + "html5lib", + ], + help=("Enable deprecated functionality, that will be removed in the future."), +) + + +########## +# groups # +########## + +general_group: Dict[str, Any] = { + "name": "General Options", + "options": [ + help_, + debug_mode, + isolated_mode, + require_virtualenv, + verbose, + version, + quiet, + log, + no_input, + proxy, + retries, + timeout, + exists_action, + trusted_host, + cert, + client_cert, + cache_dir, + no_cache, + disable_pip_version_check, + no_color, + no_python_version_warning, + use_new_feature, + use_deprecated_feature, + ], +} + +index_group: Dict[str, Any] = { + "name": "Package Index Options", + "options": [ + index_url, + extra_index_url, + no_index, + find_links, + ], +} diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/command_context.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/command_context.py new file mode 100644 index 0000000..ed68322 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/command_context.py @@ -0,0 +1,27 @@ +from contextlib import ExitStack, contextmanager +from typing import ContextManager, Iterator, TypeVar + +_T = TypeVar("_T", covariant=True) + + +class CommandContextMixIn: + def __init__(self) -> None: + super().__init__() + self._in_main_context = False + self._main_context = ExitStack() + + @contextmanager + def main_context(self) -> Iterator[None]: + assert not self._in_main_context + + self._in_main_context = True + try: + with self._main_context: + yield + finally: + self._in_main_context = False + + def enter_context(self, context_provider: ContextManager[_T]) -> _T: + assert self._in_main_context + + return self._main_context.enter_context(context_provider) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/main.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/main.py new file mode 100644 index 0000000..0e31221 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/main.py @@ -0,0 +1,70 @@ +"""Primary application entrypoint. +""" +import locale +import logging +import os +import sys +from typing import List, Optional + +from pip._internal.cli.autocompletion import autocomplete +from pip._internal.cli.main_parser import parse_command +from pip._internal.commands import create_command +from pip._internal.exceptions import PipError +from pip._internal.utils import deprecation + +logger = logging.getLogger(__name__) + + +# Do not import and use main() directly! Using it directly is actively +# discouraged by pip's maintainers. The name, location and behavior of +# this function is subject to change, so calling it directly is not +# portable across different pip versions. + +# In addition, running pip in-process is unsupported and unsafe. This is +# elaborated in detail at +# https://pip.pypa.io/en/stable/user_guide/#using-pip-from-your-program. +# That document also provides suggestions that should work for nearly +# all users that are considering importing and using main() directly. + +# However, we know that certain users will still want to invoke pip +# in-process. If you understand and accept the implications of using pip +# in an unsupported manner, the best approach is to use runpy to avoid +# depending on the exact location of this entry point. + +# The following example shows how to use runpy to invoke pip in that +# case: +# +# sys.argv = ["pip", your, args, here] +# runpy.run_module("pip", run_name="__main__") +# +# Note that this will exit the process after running, unlike a direct +# call to main. As it is not safe to do any processing after calling +# main, this should not be an issue in practice. + + +def main(args: Optional[List[str]] = None) -> int: + if args is None: + args = sys.argv[1:] + + # Configure our deprecation warnings to be sent through loggers + deprecation.install_warning_logger() + + autocomplete() + + try: + cmd_name, cmd_args = parse_command(args) + except PipError as exc: + sys.stderr.write(f"ERROR: {exc}") + sys.stderr.write(os.linesep) + sys.exit(1) + + # Needed for locale.getpreferredencoding(False) to work + # in pip._internal.utils.encoding.auto_decode + try: + locale.setlocale(locale.LC_ALL, "") + except locale.Error as e: + # setlocale can apparently crash if locale are uninitialized + logger.debug("Ignoring error %s when setting locale", e) + command = create_command(cmd_name, isolated=("--isolated" in cmd_args)) + + return command.main(cmd_args) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py new file mode 100644 index 0000000..3666ab0 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py @@ -0,0 +1,87 @@ +"""A single place for constructing and exposing the main parser +""" + +import os +import sys +from typing import List, Tuple + +from pip._internal.cli import cmdoptions +from pip._internal.cli.parser import ConfigOptionParser, UpdatingDefaultsHelpFormatter +from pip._internal.commands import commands_dict, get_similar_commands +from pip._internal.exceptions import CommandError +from pip._internal.utils.misc import get_pip_version, get_prog + +__all__ = ["create_main_parser", "parse_command"] + + +def create_main_parser() -> ConfigOptionParser: + """Creates and returns the main parser for pip's CLI""" + + parser = ConfigOptionParser( + usage="\n%prog [options]", + add_help_option=False, + formatter=UpdatingDefaultsHelpFormatter(), + name="global", + prog=get_prog(), + ) + parser.disable_interspersed_args() + + parser.version = get_pip_version() + + # add the general options + gen_opts = cmdoptions.make_option_group(cmdoptions.general_group, parser) + parser.add_option_group(gen_opts) + + # so the help formatter knows + parser.main = True # type: ignore + + # create command listing for description + description = [""] + [ + f"{name:27} {command_info.summary}" + for name, command_info in commands_dict.items() + ] + parser.description = "\n".join(description) + + return parser + + +def parse_command(args: List[str]) -> Tuple[str, List[str]]: + parser = create_main_parser() + + # Note: parser calls disable_interspersed_args(), so the result of this + # call is to split the initial args into the general options before the + # subcommand and everything else. + # For example: + # args: ['--timeout=5', 'install', '--user', 'INITools'] + # general_options: ['--timeout==5'] + # args_else: ['install', '--user', 'INITools'] + general_options, args_else = parser.parse_args(args) + + # --version + if general_options.version: + sys.stdout.write(parser.version) + sys.stdout.write(os.linesep) + sys.exit() + + # pip || pip help -> print_help() + if not args_else or (args_else[0] == "help" and len(args_else) == 1): + parser.print_help() + sys.exit() + + # the subcommand name + cmd_name = args_else[0] + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + # all the args without the subcommand + cmd_args = args[:] + cmd_args.remove(cmd_name) + + return cmd_name, cmd_args diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/parser.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/parser.py new file mode 100644 index 0000000..a1c99a8 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/parser.py @@ -0,0 +1,292 @@ +"""Base option parser setup""" + +import logging +import optparse +import shutil +import sys +import textwrap +from contextlib import suppress +from typing import Any, Dict, Iterator, List, Tuple + +from pip._internal.cli.status_codes import UNKNOWN_ERROR +from pip._internal.configuration import Configuration, ConfigurationError +from pip._internal.utils.misc import redact_auth_from_url, strtobool + +logger = logging.getLogger(__name__) + + +class PrettyHelpFormatter(optparse.IndentedHelpFormatter): + """A prettier/less verbose help formatter for optparse.""" + + def __init__(self, *args: Any, **kwargs: Any) -> None: + # help position must be aligned with __init__.parseopts.description + kwargs["max_help_position"] = 30 + kwargs["indent_increment"] = 1 + kwargs["width"] = shutil.get_terminal_size()[0] - 2 + super().__init__(*args, **kwargs) + + def format_option_strings(self, option: optparse.Option) -> str: + return self._format_option_strings(option) + + def _format_option_strings( + self, option: optparse.Option, mvarfmt: str = " <{}>", optsep: str = ", " + ) -> str: + """ + Return a comma-separated list of option strings and metavars. + + :param option: tuple of (short opt, long opt), e.g: ('-f', '--format') + :param mvarfmt: metavar format string + :param optsep: separator + """ + opts = [] + + if option._short_opts: + opts.append(option._short_opts[0]) + if option._long_opts: + opts.append(option._long_opts[0]) + if len(opts) > 1: + opts.insert(1, optsep) + + if option.takes_value(): + assert option.dest is not None + metavar = option.metavar or option.dest.lower() + opts.append(mvarfmt.format(metavar.lower())) + + return "".join(opts) + + def format_heading(self, heading: str) -> str: + if heading == "Options": + return "" + return heading + ":\n" + + def format_usage(self, usage: str) -> str: + """ + Ensure there is only one newline between usage and the first heading + if there is no description. + """ + msg = "\nUsage: {}\n".format(self.indent_lines(textwrap.dedent(usage), " ")) + return msg + + def format_description(self, description: str) -> str: + # leave full control over description to us + if description: + if hasattr(self.parser, "main"): + label = "Commands" + else: + label = "Description" + # some doc strings have initial newlines, some don't + description = description.lstrip("\n") + # some doc strings have final newlines and spaces, some don't + description = description.rstrip() + # dedent, then reindent + description = self.indent_lines(textwrap.dedent(description), " ") + description = f"{label}:\n{description}\n" + return description + else: + return "" + + def format_epilog(self, epilog: str) -> str: + # leave full control over epilog to us + if epilog: + return epilog + else: + return "" + + def indent_lines(self, text: str, indent: str) -> str: + new_lines = [indent + line for line in text.split("\n")] + return "\n".join(new_lines) + + +class UpdatingDefaultsHelpFormatter(PrettyHelpFormatter): + """Custom help formatter for use in ConfigOptionParser. + + This is updates the defaults before expanding them, allowing + them to show up correctly in the help listing. + + Also redact auth from url type options + """ + + def expand_default(self, option: optparse.Option) -> str: + default_values = None + if self.parser is not None: + assert isinstance(self.parser, ConfigOptionParser) + self.parser._update_defaults(self.parser.defaults) + assert option.dest is not None + default_values = self.parser.defaults.get(option.dest) + help_text = super().expand_default(option) + + if default_values and option.metavar == "URL": + if isinstance(default_values, str): + default_values = [default_values] + + # If its not a list, we should abort and just return the help text + if not isinstance(default_values, list): + default_values = [] + + for val in default_values: + help_text = help_text.replace(val, redact_auth_from_url(val)) + + return help_text + + +class CustomOptionParser(optparse.OptionParser): + def insert_option_group( + self, idx: int, *args: Any, **kwargs: Any + ) -> optparse.OptionGroup: + """Insert an OptionGroup at a given position.""" + group = self.add_option_group(*args, **kwargs) + + self.option_groups.pop() + self.option_groups.insert(idx, group) + + return group + + @property + def option_list_all(self) -> List[optparse.Option]: + """Get a list of all options, including those in option groups.""" + res = self.option_list[:] + for i in self.option_groups: + res.extend(i.option_list) + + return res + + +class ConfigOptionParser(CustomOptionParser): + """Custom option parser which updates its defaults by checking the + configuration files and environmental variables""" + + def __init__( + self, + *args: Any, + name: str, + isolated: bool = False, + **kwargs: Any, + ) -> None: + self.name = name + self.config = Configuration(isolated) + + assert self.name + super().__init__(*args, **kwargs) + + def check_default(self, option: optparse.Option, key: str, val: Any) -> Any: + try: + return option.check_value(key, val) + except optparse.OptionValueError as exc: + print(f"An error occurred during configuration: {exc}") + sys.exit(3) + + def _get_ordered_configuration_items(self) -> Iterator[Tuple[str, Any]]: + # Configuration gives keys in an unordered manner. Order them. + override_order = ["global", self.name, ":env:"] + + # Pool the options into different groups + section_items: Dict[str, List[Tuple[str, Any]]] = { + name: [] for name in override_order + } + for section_key, val in self.config.items(): + # ignore empty values + if not val: + logger.debug( + "Ignoring configuration key '%s' as it's value is empty.", + section_key, + ) + continue + + section, key = section_key.split(".", 1) + if section in override_order: + section_items[section].append((key, val)) + + # Yield each group in their override order + for section in override_order: + for key, val in section_items[section]: + yield key, val + + def _update_defaults(self, defaults: Dict[str, Any]) -> Dict[str, Any]: + """Updates the given defaults with values from the config files and + the environ. Does a little special handling for certain types of + options (lists).""" + + # Accumulate complex default state. + self.values = optparse.Values(self.defaults) + late_eval = set() + # Then set the options with those values + for key, val in self._get_ordered_configuration_items(): + # '--' because configuration supports only long names + option = self.get_option("--" + key) + + # Ignore options not present in this parser. E.g. non-globals put + # in [global] by users that want them to apply to all applicable + # commands. + if option is None: + continue + + assert option.dest is not None + + if option.action in ("store_true", "store_false"): + try: + val = strtobool(val) + except ValueError: + self.error( + "{} is not a valid value for {} option, " # noqa + "please specify a boolean value like yes/no, " + "true/false or 1/0 instead.".format(val, key) + ) + elif option.action == "count": + with suppress(ValueError): + val = strtobool(val) + with suppress(ValueError): + val = int(val) + if not isinstance(val, int) or val < 0: + self.error( + "{} is not a valid value for {} option, " # noqa + "please instead specify either a non-negative integer " + "or a boolean value like yes/no or false/true " + "which is equivalent to 1/0.".format(val, key) + ) + elif option.action == "append": + val = val.split() + val = [self.check_default(option, key, v) for v in val] + elif option.action == "callback": + assert option.callback is not None + late_eval.add(option.dest) + opt_str = option.get_opt_string() + val = option.convert_value(opt_str, val) + # From take_action + args = option.callback_args or () + kwargs = option.callback_kwargs or {} + option.callback(option, opt_str, val, self, *args, **kwargs) + else: + val = self.check_default(option, key, val) + + defaults[option.dest] = val + + for key in late_eval: + defaults[key] = getattr(self.values, key) + self.values = None + return defaults + + def get_default_values(self) -> optparse.Values: + """Overriding to make updating the defaults after instantiation of + the option parser possible, _update_defaults() does the dirty work.""" + if not self.process_default_values: + # Old, pre-Optik 1.5 behaviour. + return optparse.Values(self.defaults) + + # Load the configuration, or error out in case of an error + try: + self.config.load() + except ConfigurationError as err: + self.exit(UNKNOWN_ERROR, str(err)) + + defaults = self._update_defaults(self.defaults.copy()) # ours + for option in self._get_all_options(): + assert option.dest is not None + default = defaults.get(option.dest) + if isinstance(default, str): + opt_str = option.get_opt_string() + defaults[option.dest] = option.check_value(opt_str, default) + return optparse.Values(defaults) + + def error(self, msg: str) -> None: + self.print_usage(sys.stderr) + self.exit(UNKNOWN_ERROR, f"{msg}\n") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py new file mode 100644 index 0000000..ffa1964 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py @@ -0,0 +1,321 @@ +import functools +import itertools +import sys +from signal import SIGINT, default_int_handler, signal +from typing import Any, Callable, Iterator, Optional, Tuple + +from pip._vendor.progress.bar import Bar, FillingCirclesBar, IncrementalBar +from pip._vendor.progress.spinner import Spinner +from pip._vendor.rich.progress import ( + BarColumn, + DownloadColumn, + FileSizeColumn, + Progress, + ProgressColumn, + SpinnerColumn, + TextColumn, + TimeElapsedColumn, + TimeRemainingColumn, + TransferSpeedColumn, +) + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation +from pip._internal.utils.misc import format_size + +try: + from pip._vendor import colorama +# Lots of different errors can come from this, including SystemError and +# ImportError. +except Exception: + colorama = None + +DownloadProgressRenderer = Callable[[Iterator[bytes]], Iterator[bytes]] + + +def _select_progress_class(preferred: Bar, fallback: Bar) -> Bar: + encoding = getattr(preferred.file, "encoding", None) + + # If we don't know what encoding this file is in, then we'll just assume + # that it doesn't support unicode and use the ASCII bar. + if not encoding: + return fallback + + # Collect all of the possible characters we want to use with the preferred + # bar. + characters = [ + getattr(preferred, "empty_fill", ""), + getattr(preferred, "fill", ""), + ] + characters += list(getattr(preferred, "phases", [])) + + # Try to decode the characters we're using for the bar using the encoding + # of the given file, if this works then we'll assume that we can use the + # fancier bar and if not we'll fall back to the plaintext bar. + try: + "".join(characters).encode(encoding) + except UnicodeEncodeError: + return fallback + else: + return preferred + + +_BaseBar: Any = _select_progress_class(IncrementalBar, Bar) + + +class InterruptibleMixin: + """ + Helper to ensure that self.finish() gets called on keyboard interrupt. + + This allows downloads to be interrupted without leaving temporary state + (like hidden cursors) behind. + + This class is similar to the progress library's existing SigIntMixin + helper, but as of version 1.2, that helper has the following problems: + + 1. It calls sys.exit(). + 2. It discards the existing SIGINT handler completely. + 3. It leaves its own handler in place even after an uninterrupted finish, + which will have unexpected delayed effects if the user triggers an + unrelated keyboard interrupt some time after a progress-displaying + download has already completed, for example. + """ + + def __init__(self, *args: Any, **kwargs: Any) -> None: + """ + Save the original SIGINT handler for later. + """ + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + self.original_handler = signal(SIGINT, self.handle_sigint) + + # If signal() returns None, the previous handler was not installed from + # Python, and we cannot restore it. This probably should not happen, + # but if it does, we must restore something sensible instead, at least. + # The least bad option should be Python's default SIGINT handler, which + # just raises KeyboardInterrupt. + if self.original_handler is None: + self.original_handler = default_int_handler + + def finish(self) -> None: + """ + Restore the original SIGINT handler after finishing. + + This should happen regardless of whether the progress display finishes + normally, or gets interrupted. + """ + super().finish() # type: ignore + signal(SIGINT, self.original_handler) + + def handle_sigint(self, signum, frame): # type: ignore + """ + Call self.finish() before delegating to the original SIGINT handler. + + This handler should only be in place while the progress display is + active. + """ + self.finish() + self.original_handler(signum, frame) + + +class SilentBar(Bar): + def update(self) -> None: + pass + + +class BlueEmojiBar(IncrementalBar): + + suffix = "%(percent)d%%" + bar_prefix = " " + bar_suffix = " " + phases = ("\U0001F539", "\U0001F537", "\U0001F535") + + +class DownloadProgressMixin: + def __init__(self, *args: Any, **kwargs: Any) -> None: + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + self.message: str = (" " * (get_indentation() + 2)) + self.message + + @property + def downloaded(self) -> str: + return format_size(self.index) # type: ignore + + @property + def download_speed(self) -> str: + # Avoid zero division errors... + if self.avg == 0.0: # type: ignore + return "..." + return format_size(1 / self.avg) + "/s" # type: ignore + + @property + def pretty_eta(self) -> str: + if self.eta: # type: ignore + return f"eta {self.eta_td}" # type: ignore + return "" + + def iter(self, it): # type: ignore + for x in it: + yield x + # B305 is incorrectly raised here + # https://github.com/PyCQA/flake8-bugbear/issues/59 + self.next(len(x)) # noqa: B305 + self.finish() + + +class WindowsMixin: + def __init__(self, *args: Any, **kwargs: Any) -> None: + # The Windows terminal does not support the hide/show cursor ANSI codes + # even with colorama. So we'll ensure that hide_cursor is False on + # Windows. + # This call needs to go before the super() call, so that hide_cursor + # is set in time. The base progress bar class writes the "hide cursor" + # code to the terminal in its init, so if we don't set this soon + # enough, we get a "hide" with no corresponding "show"... + if WINDOWS and self.hide_cursor: # type: ignore + self.hide_cursor = False + + # https://github.com/python/mypy/issues/5887 + super().__init__(*args, **kwargs) # type: ignore + + # Check if we are running on Windows and we have the colorama module, + # if we do then wrap our file with it. + if WINDOWS and colorama: + self.file = colorama.AnsiToWin32(self.file) # type: ignore + # The progress code expects to be able to call self.file.isatty() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.isatty = lambda: self.file.wrapped.isatty() + # The progress code expects to be able to call self.file.flush() + # but the colorama.AnsiToWin32() object doesn't have that, so we'll + # add it. + self.file.flush = lambda: self.file.wrapped.flush() + + +class BaseDownloadProgressBar(WindowsMixin, InterruptibleMixin, DownloadProgressMixin): + + file = sys.stdout + message = "%(percent)d%%" + suffix = "%(downloaded)s %(download_speed)s %(pretty_eta)s" + + +class DefaultDownloadProgressBar(BaseDownloadProgressBar, _BaseBar): + pass + + +class DownloadSilentBar(BaseDownloadProgressBar, SilentBar): + pass + + +class DownloadBar(BaseDownloadProgressBar, Bar): + pass + + +class DownloadFillingCirclesBar(BaseDownloadProgressBar, FillingCirclesBar): + pass + + +class DownloadBlueEmojiProgressBar(BaseDownloadProgressBar, BlueEmojiBar): + pass + + +class DownloadProgressSpinner( + WindowsMixin, InterruptibleMixin, DownloadProgressMixin, Spinner +): + + file = sys.stdout + suffix = "%(downloaded)s %(download_speed)s" + + def next_phase(self) -> str: + if not hasattr(self, "_phaser"): + self._phaser = itertools.cycle(self.phases) + return next(self._phaser) + + def update(self) -> None: + message = self.message % self + phase = self.next_phase() + suffix = self.suffix % self + line = "".join( + [ + message, + " " if message else "", + phase, + " " if suffix else "", + suffix, + ] + ) + + self.writeln(line) + + +BAR_TYPES = { + "off": (DownloadSilentBar, DownloadSilentBar), + "on": (DefaultDownloadProgressBar, DownloadProgressSpinner), + "ascii": (DownloadBar, DownloadProgressSpinner), + "pretty": (DownloadFillingCirclesBar, DownloadProgressSpinner), + "emoji": (DownloadBlueEmojiProgressBar, DownloadProgressSpinner), +} + + +def _legacy_progress_bar( + progress_bar: str, max: Optional[int] +) -> DownloadProgressRenderer: + if max is None or max == 0: + return BAR_TYPES[progress_bar][1]().iter # type: ignore + else: + return BAR_TYPES[progress_bar][0](max=max).iter + + +# +# Modern replacement, for our legacy progress bars. +# +def _rich_progress_bar( + iterable: Iterator[bytes], + *, + bar_type: str, + size: int, +) -> Iterator[bytes]: + assert bar_type == "on", "This should only be used in the default mode." + + if not size: + total = float("inf") + columns: Tuple[ProgressColumn, ...] = ( + TextColumn("[progress.description]{task.description}"), + SpinnerColumn("line", speed=1.5), + FileSizeColumn(), + TransferSpeedColumn(), + TimeElapsedColumn(), + ) + else: + total = size + columns = ( + TextColumn("[progress.description]{task.description}"), + BarColumn(), + DownloadColumn(), + TransferSpeedColumn(), + TextColumn("eta"), + TimeRemainingColumn(), + ) + + progress = Progress(*columns, refresh_per_second=30) + task_id = progress.add_task(" " * (get_indentation() + 2), total=total) + with progress: + for chunk in iterable: + yield chunk + progress.update(task_id, advance=len(chunk)) + + +def get_download_progress_renderer( + *, bar_type: str, size: Optional[int] = None +) -> DownloadProgressRenderer: + """Get an object that can be used to render the download progress. + + Returns a callable, that takes an iterable to "wrap". + """ + if bar_type == "on": + return functools.partial(_rich_progress_bar, bar_type=bar_type, size=size) + elif bar_type == "off": + return iter # no-op, when passed an iterator + else: + return _legacy_progress_bar(bar_type, size) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/req_command.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/req_command.py new file mode 100644 index 0000000..5d4d1f0 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/req_command.py @@ -0,0 +1,506 @@ +"""Contains the Command base classes that depend on PipSession. + +The classes in this module are in a separate module so the commands not +needing download / PackageFinder capability don't unnecessarily import the +PackageFinder machinery and all its vendored dependencies, etc. +""" + +import logging +import os +import sys +from functools import partial +from optparse import Values +from typing import Any, List, Optional, Tuple + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.command_context import CommandContextMixIn +from pip._internal.exceptions import CommandError, PreviousBuildDirError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, + install_req_from_parsed_requirement, + install_req_from_req_string, +) +from pip._internal.req.req_file import parse_requirements +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import RequirementTracker +from pip._internal.resolution.base import BaseResolver +from pip._internal.self_outdated_check import pip_self_version_check +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.temp_dir import ( + TempDirectory, + TempDirectoryTypeRegistry, + tempdir_kinds, +) +from pip._internal.utils.virtualenv import running_under_virtualenv + +logger = logging.getLogger(__name__) + + +class SessionCommandMixin(CommandContextMixIn): + + """ + A class mixin for command classes needing _build_session(). + """ + + def __init__(self) -> None: + super().__init__() + self._session: Optional[PipSession] = None + + @classmethod + def _get_index_urls(cls, options: Values) -> Optional[List[str]]: + """Return a list of index urls from user-provided options.""" + index_urls = [] + if not getattr(options, "no_index", False): + url = getattr(options, "index_url", None) + if url: + index_urls.append(url) + urls = getattr(options, "extra_index_urls", None) + if urls: + index_urls.extend(urls) + # Return None rather than an empty list + return index_urls or None + + def get_default_session(self, options: Values) -> PipSession: + """Get a default-managed session.""" + if self._session is None: + self._session = self.enter_context(self._build_session(options)) + # there's no type annotation on requests.Session, so it's + # automatically ContextManager[Any] and self._session becomes Any, + # then https://github.com/python/mypy/issues/7696 kicks in + assert self._session is not None + return self._session + + def _build_session( + self, + options: Values, + retries: Optional[int] = None, + timeout: Optional[int] = None, + ) -> PipSession: + assert not options.cache_dir or os.path.isabs(options.cache_dir) + session = PipSession( + cache=( + os.path.join(options.cache_dir, "http") if options.cache_dir else None + ), + retries=retries if retries is not None else options.retries, + trusted_hosts=options.trusted_hosts, + index_urls=self._get_index_urls(options), + ) + + # Handle custom ca-bundles from the user + if options.cert: + session.verify = options.cert + + # Handle SSL client certificate + if options.client_cert: + session.cert = options.client_cert + + # Handle timeouts + if options.timeout or timeout: + session.timeout = timeout if timeout is not None else options.timeout + + # Handle configured proxies + if options.proxy: + session.proxies = { + "http": options.proxy, + "https": options.proxy, + } + + # Determine if we can prompt the user for authentication or not + session.auth.prompting = not options.no_input + + return session + + +class IndexGroupCommand(Command, SessionCommandMixin): + + """ + Abstract base class for commands with the index_group options. + + This also corresponds to the commands that permit the pip version check. + """ + + def handle_pip_version_check(self, options: Values) -> None: + """ + Do the pip version check if not disabled. + + This overrides the default behavior of not doing the check. + """ + # Make sure the index_group options are present. + assert hasattr(options, "no_index") + + if options.disable_pip_version_check or options.no_index: + return + + # Otherwise, check if we're using the latest version of pip available. + session = self._build_session( + options, retries=0, timeout=min(5, options.timeout) + ) + with session: + pip_self_version_check(session, options) + + +KEEPABLE_TEMPDIR_TYPES = [ + tempdir_kinds.BUILD_ENV, + tempdir_kinds.EPHEM_WHEEL_CACHE, + tempdir_kinds.REQ_BUILD, +] + + +def warn_if_run_as_root() -> None: + """Output a warning for sudo users on Unix. + + In a virtual environment, sudo pip still writes to virtualenv. + On Windows, users may run pip as Administrator without issues. + This warning only applies to Unix root users outside of virtualenv. + """ + if running_under_virtualenv(): + return + if not hasattr(os, "getuid"): + return + # On Windows, there are no "system managed" Python packages. Installing as + # Administrator via pip is the correct way of updating system environments. + # + # We choose sys.platform over utils.compat.WINDOWS here to enable Mypy platform + # checks: https://mypy.readthedocs.io/en/stable/common_issues.html + if sys.platform == "win32" or sys.platform == "cygwin": + return + + if os.getuid() != 0: + return + + logger.warning( + "Running pip as the 'root' user can result in broken permissions and " + "conflicting behaviour with the system package manager. " + "It is recommended to use a virtual environment instead: " + "https://pip.pypa.io/warnings/venv" + ) + + +def with_cleanup(func: Any) -> Any: + """Decorator for common logic related to managing temporary + directories. + """ + + def configure_tempdir_registry(registry: TempDirectoryTypeRegistry) -> None: + for t in KEEPABLE_TEMPDIR_TYPES: + registry.set_delete(t, False) + + def wrapper( + self: RequirementCommand, options: Values, args: List[Any] + ) -> Optional[int]: + assert self.tempdir_registry is not None + if options.no_clean: + configure_tempdir_registry(self.tempdir_registry) + + try: + return func(self, options, args) + except PreviousBuildDirError: + # This kind of conflict can occur when the user passes an explicit + # build directory with a pre-existing folder. In that case we do + # not want to accidentally remove it. + configure_tempdir_registry(self.tempdir_registry) + raise + + return wrapper + + +class RequirementCommand(IndexGroupCommand): + def __init__(self, *args: Any, **kw: Any) -> None: + super().__init__(*args, **kw) + + self.cmd_opts.add_option(cmdoptions.no_clean()) + + @staticmethod + def determine_resolver_variant(options: Values) -> str: + """Determines which resolver should be used, based on the given options.""" + if "legacy-resolver" in options.deprecated_features_enabled: + return "legacy" + + return "2020-resolver" + + @staticmethod + def determine_build_failure_suppression(options: Values) -> bool: + """Determines whether build failures should be suppressed and backtracked on.""" + if "backtrack-on-build-failures" not in options.deprecated_features_enabled: + return False + + if "legacy-resolver" in options.deprecated_features_enabled: + raise CommandError("Cannot backtrack with legacy resolver.") + + deprecated( + reason=( + "Backtracking on build failures can mask issues related to how " + "a package generates metadata or builds a wheel. This flag will " + "be removed in pip 22.2." + ), + gone_in=None, + replacement=( + "avoiding known-bad versions by explicitly telling pip to ignore them " + "(either directly as requirements, or via a constraints file)" + ), + feature_flag=None, + issue=10655, + ) + return True + + @classmethod + def make_requirement_preparer( + cls, + temp_build_dir: TempDirectory, + options: Values, + req_tracker: RequirementTracker, + session: PipSession, + finder: PackageFinder, + use_user_site: bool, + download_dir: Optional[str] = None, + verbosity: int = 0, + ) -> RequirementPreparer: + """ + Create a RequirementPreparer instance for the given parameters. + """ + temp_build_dir_path = temp_build_dir.path + assert temp_build_dir_path is not None + + resolver_variant = cls.determine_resolver_variant(options) + if resolver_variant == "2020-resolver": + lazy_wheel = "fast-deps" in options.features_enabled + if lazy_wheel: + logger.warning( + "pip is using lazily downloaded wheels using HTTP " + "range requests to obtain dependency information. " + "This experimental feature is enabled through " + "--use-feature=fast-deps and it is not ready for " + "production." + ) + else: + lazy_wheel = False + if "fast-deps" in options.features_enabled: + logger.warning( + "fast-deps has no effect when used with the legacy resolver." + ) + + in_tree_build = "out-of-tree-build" not in options.deprecated_features_enabled + if "in-tree-build" in options.features_enabled: + deprecated( + reason="In-tree builds are now the default.", + replacement="to remove the --use-feature=in-tree-build flag", + gone_in="22.1", + ) + if "out-of-tree-build" in options.deprecated_features_enabled: + deprecated( + reason="Out-of-tree builds are deprecated.", + replacement=None, + gone_in="22.1", + ) + + if options.progress_bar not in {"on", "off"}: + deprecated( + reason="Custom progress bar styles are deprecated", + replacement="to use the default progress bar style.", + gone_in="22.1", + ) + + return RequirementPreparer( + build_dir=temp_build_dir_path, + src_dir=options.src_dir, + download_dir=download_dir, + build_isolation=options.build_isolation, + req_tracker=req_tracker, + session=session, + progress_bar=options.progress_bar, + finder=finder, + require_hashes=options.require_hashes, + use_user_site=use_user_site, + lazy_wheel=lazy_wheel, + verbosity=verbosity, + in_tree_build=in_tree_build, + ) + + @classmethod + def make_resolver( + cls, + preparer: RequirementPreparer, + finder: PackageFinder, + options: Values, + wheel_cache: Optional[WheelCache] = None, + use_user_site: bool = False, + ignore_installed: bool = True, + ignore_requires_python: bool = False, + force_reinstall: bool = False, + upgrade_strategy: str = "to-satisfy-only", + use_pep517: Optional[bool] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> BaseResolver: + """ + Create a Resolver instance for the given parameters. + """ + make_install_req = partial( + install_req_from_req_string, + isolated=options.isolated_mode, + use_pep517=use_pep517, + ) + suppress_build_failures = cls.determine_build_failure_suppression(options) + resolver_variant = cls.determine_resolver_variant(options) + # The long import name and duplicated invocation is needed to convince + # Mypy into correctly typechecking. Otherwise it would complain the + # "Resolver" class being redefined. + if resolver_variant == "2020-resolver": + import pip._internal.resolution.resolvelib.resolver + + return pip._internal.resolution.resolvelib.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + suppress_build_failures=suppress_build_failures, + ) + import pip._internal.resolution.legacy.resolver + + return pip._internal.resolution.legacy.resolver.Resolver( + preparer=preparer, + finder=finder, + wheel_cache=wheel_cache, + make_install_req=make_install_req, + use_user_site=use_user_site, + ignore_dependencies=options.ignore_dependencies, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + force_reinstall=force_reinstall, + upgrade_strategy=upgrade_strategy, + py_version_info=py_version_info, + ) + + def get_requirements( + self, + args: List[str], + options: Values, + finder: PackageFinder, + session: PipSession, + ) -> List[InstallRequirement]: + """ + Parse command-line arguments into the corresponding requirements. + """ + requirements: List[InstallRequirement] = [] + for filename in options.constraints: + for parsed_req in parse_requirements( + filename, + constraint=True, + finder=finder, + options=options, + session=session, + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + user_supplied=False, + ) + requirements.append(req_to_add) + + for req in args: + req_to_add = install_req_from_line( + req, + None, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + ) + requirements.append(req_to_add) + + for req in options.editables: + req_to_add = install_req_from_editable( + req, + user_supplied=True, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + ) + requirements.append(req_to_add) + + # NOTE: options.require_hashes may be set if --require-hashes is True + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, finder=finder, options=options, session=session + ): + req_to_add = install_req_from_parsed_requirement( + parsed_req, + isolated=options.isolated_mode, + use_pep517=options.use_pep517, + user_supplied=True, + ) + requirements.append(req_to_add) + + # If any requirement has hash options, enable hash checking. + if any(req.has_hash_options for req in requirements): + options.require_hashes = True + + if not (args or options.editables or options.requirements): + opts = {"name": self.name} + if options.find_links: + raise CommandError( + "You must give at least one requirement to {name} " + '(maybe you meant "pip {name} {links}"?)'.format( + **dict(opts, links=" ".join(options.find_links)) + ) + ) + else: + raise CommandError( + "You must give at least one requirement to {name} " + '(see "pip help {name}")'.format(**opts) + ) + + return requirements + + @staticmethod + def trace_basic_info(finder: PackageFinder) -> None: + """ + Trace basic information about the provided objects. + """ + # Display where finder is looking for packages + search_scope = finder.search_scope + locations = search_scope.get_formatted_locations() + if locations: + logger.info(locations) + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to this requirement command. + + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + link_collector = LinkCollector.create(session, options=options) + selection_prefs = SelectionPreferences( + allow_yanked=True, + format_control=options.format_control, + allow_all_prereleases=options.pre, + prefer_binary=options.prefer_binary, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/spinners.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/spinners.py new file mode 100644 index 0000000..1e313e1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/spinners.py @@ -0,0 +1,157 @@ +import contextlib +import itertools +import logging +import sys +import time +from typing import IO, Iterator + +from pip._vendor.progress import HIDE_CURSOR, SHOW_CURSOR + +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import get_indentation + +logger = logging.getLogger(__name__) + + +class SpinnerInterface: + def spin(self) -> None: + raise NotImplementedError() + + def finish(self, final_status: str) -> None: + raise NotImplementedError() + + +class InteractiveSpinner(SpinnerInterface): + def __init__( + self, + message: str, + file: IO[str] = None, + spin_chars: str = "-\\|/", + # Empirically, 8 updates/second looks nice + min_update_interval_seconds: float = 0.125, + ): + self._message = message + if file is None: + file = sys.stdout + self._file = file + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._finished = False + + self._spin_cycle = itertools.cycle(spin_chars) + + self._file.write(" " * get_indentation() + self._message + " ... ") + self._width = 0 + + def _write(self, status: str) -> None: + assert not self._finished + # Erase what we wrote before by backspacing to the beginning, writing + # spaces to overwrite the old text, and then backspacing again + backup = "\b" * self._width + self._file.write(backup + " " * self._width + backup) + # Now we have a blank slate to add our status + self._file.write(status) + self._width = len(status) + self._file.flush() + self._rate_limiter.reset() + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._write(next(self._spin_cycle)) + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._write(final_status) + self._file.write("\n") + self._file.flush() + self._finished = True + + +# Used for dumb terminals, non-interactive installs (no tty), etc. +# We still print updates occasionally (once every 60 seconds by default) to +# act as a keep-alive for systems like Travis-CI that take lack-of-output as +# an indication that a task has frozen. +class NonInteractiveSpinner(SpinnerInterface): + def __init__(self, message: str, min_update_interval_seconds: float = 60.0) -> None: + self._message = message + self._finished = False + self._rate_limiter = RateLimiter(min_update_interval_seconds) + self._update("started") + + def _update(self, status: str) -> None: + assert not self._finished + self._rate_limiter.reset() + logger.info("%s: %s", self._message, status) + + def spin(self) -> None: + if self._finished: + return + if not self._rate_limiter.ready(): + return + self._update("still running...") + + def finish(self, final_status: str) -> None: + if self._finished: + return + self._update(f"finished with status '{final_status}'") + self._finished = True + + +class RateLimiter: + def __init__(self, min_update_interval_seconds: float) -> None: + self._min_update_interval_seconds = min_update_interval_seconds + self._last_update: float = 0 + + def ready(self) -> bool: + now = time.time() + delta = now - self._last_update + return delta >= self._min_update_interval_seconds + + def reset(self) -> None: + self._last_update = time.time() + + +@contextlib.contextmanager +def open_spinner(message: str) -> Iterator[SpinnerInterface]: + # Interactive spinner goes directly to sys.stdout rather than being routed + # through the logging system, but it acts like it has level INFO, + # i.e. it's only displayed if we're at level INFO or better. + # Non-interactive spinner goes through the logging system, so it is always + # in sync with logging configuration. + if sys.stdout.isatty() and logger.getEffectiveLevel() <= logging.INFO: + spinner: SpinnerInterface = InteractiveSpinner(message) + else: + spinner = NonInteractiveSpinner(message) + try: + with hidden_cursor(sys.stdout): + yield spinner + except KeyboardInterrupt: + spinner.finish("canceled") + raise + except Exception: + spinner.finish("error") + raise + else: + spinner.finish("done") + + +@contextlib.contextmanager +def hidden_cursor(file: IO[str]) -> Iterator[None]: + # The Windows terminal does not support the hide/show cursor ANSI codes, + # even via colorama. So don't even try. + if WINDOWS: + yield + # We don't want to clutter the output with control characters if we're + # writing to a file, or if the user is running with --quiet. + # See https://github.com/pypa/pip/issues/3418 + elif not file.isatty() or logger.getEffectiveLevel() > logging.INFO: + yield + else: + file.write(HIDE_CURSOR) + try: + yield + finally: + file.write(SHOW_CURSOR) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py new file mode 100644 index 0000000..5e29502 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py @@ -0,0 +1,6 @@ +SUCCESS = 0 +ERROR = 1 +UNKNOWN_ERROR = 2 +VIRTUALENV_NOT_FOUND = 3 +PREVIOUS_BUILD_DIR_ERROR = 4 +NO_MATCHES_FOUND = 23 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__init__.py new file mode 100644 index 0000000..c72f24f --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__init__.py @@ -0,0 +1,127 @@ +""" +Package containing all pip commands +""" + +import importlib +from collections import namedtuple +from typing import Any, Dict, Optional + +from pip._internal.cli.base_command import Command + +CommandInfo = namedtuple("CommandInfo", "module_path, class_name, summary") + +# This dictionary does a bunch of heavy lifting for help output: +# - Enables avoiding additional (costly) imports for presenting `--help`. +# - The ordering matters for help display. +# +# Even though the module path starts with the same "pip._internal.commands" +# prefix, the full path makes testing easier (specifically when modifying +# `commands_dict` in test setup / teardown). +commands_dict: Dict[str, CommandInfo] = { + "install": CommandInfo( + "pip._internal.commands.install", + "InstallCommand", + "Install packages.", + ), + "download": CommandInfo( + "pip._internal.commands.download", + "DownloadCommand", + "Download packages.", + ), + "uninstall": CommandInfo( + "pip._internal.commands.uninstall", + "UninstallCommand", + "Uninstall packages.", + ), + "freeze": CommandInfo( + "pip._internal.commands.freeze", + "FreezeCommand", + "Output installed packages in requirements format.", + ), + "list": CommandInfo( + "pip._internal.commands.list", + "ListCommand", + "List installed packages.", + ), + "show": CommandInfo( + "pip._internal.commands.show", + "ShowCommand", + "Show information about installed packages.", + ), + "check": CommandInfo( + "pip._internal.commands.check", + "CheckCommand", + "Verify installed packages have compatible dependencies.", + ), + "config": CommandInfo( + "pip._internal.commands.configuration", + "ConfigurationCommand", + "Manage local and global configuration.", + ), + "search": CommandInfo( + "pip._internal.commands.search", + "SearchCommand", + "Search PyPI for packages.", + ), + "cache": CommandInfo( + "pip._internal.commands.cache", + "CacheCommand", + "Inspect and manage pip's wheel cache.", + ), + "index": CommandInfo( + "pip._internal.commands.index", + "IndexCommand", + "Inspect information available from package indexes.", + ), + "wheel": CommandInfo( + "pip._internal.commands.wheel", + "WheelCommand", + "Build wheels from your requirements.", + ), + "hash": CommandInfo( + "pip._internal.commands.hash", + "HashCommand", + "Compute hashes of package archives.", + ), + "completion": CommandInfo( + "pip._internal.commands.completion", + "CompletionCommand", + "A helper command used for command completion.", + ), + "debug": CommandInfo( + "pip._internal.commands.debug", + "DebugCommand", + "Show information useful for debugging.", + ), + "help": CommandInfo( + "pip._internal.commands.help", + "HelpCommand", + "Show help for commands.", + ), +} + + +def create_command(name: str, **kwargs: Any) -> Command: + """ + Create an instance of the Command class with the given name. + """ + module_path, class_name, summary = commands_dict[name] + module = importlib.import_module(module_path) + command_class = getattr(module, class_name) + command = command_class(name=name, summary=summary, **kwargs) + + return command + + +def get_similar_commands(name: str) -> Optional[str]: + """Command name auto-correct.""" + from difflib import get_close_matches + + name = name.lower() + + close_commands = get_close_matches(name, commands_dict.keys()) + + if close_commands: + return close_commands[0] + else: + return None diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4fea41c4fef12e748f18d05a726b8140d67e7dda GIT binary patch literal 3143 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 HT(bTPM4k^U literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/check.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3c1c0007fbf9a87484a46f92391b5f3318b53706 GIT binary patch literal 1577 zcmZuxUys{F5a0FxIL>iBQ0Wz@%tM8Or~_029snVw6$q*W-Kl*rtt`j8NqlE}o!#|S ziJYhOEAU<(dF1QtD^Gld3aQLG=`}@cvg4WAnVs3+&MX@Yd<5gq)lbvk9EAST!v3&8 z_ztGH1VRwO1&a08C~#@S2G+b;n57k49d8wO>BLUQ+l5Rj|e_PL;r7xjZTJGIgiq!p#nJTK`tbG z-7zc6v?4=8+4oORe?C?2*~9Vp{@EF5u4QwYT_kmyU8FOb2rAWw8KaIF zGb`>95027P!C2?C%X;zUC`J|vBp*5`tt+JeoXm#BW zyK%ebY!?2?YMHZ2JW=kBQ&!4nLOGnuhF6)ncYp!#J(y#d;yDnBHt4ajHrJNKt+~O# z+iRz_@1ZB}uHDvb;VkFI+G}mifwsTyNt58#ZN0WfjAOKc%U|4B3|a?PZ@%H`fYy$rLy>Z@lk7wA6f^d#ebC683HS7gE5jepk|+}KE5qN_;b2w za!xh>N%(Z0XY()@Va4QY1S5{&OshLvhk1JCRMJXzev?LqOV(@=?#!aq2PZ6?aCSkf zS247?2&b&6NHlb~2b*#ih;lC}7l1a`AaYw1T@u5AvIH%rystF@5Y^wWyg{9UTQy7I z#wJ3!WiGU+`WdUHMV?751h9BcGnrIrN%?`^#J{@urSgF9mQ-JJyF`=;u>67eF_^zN zAI(`wM`_NBbTay7d5>O>2xk=?vr2LX70yTXQqEcR&E4pWQISt};@#-8Pe%gk{?4ls z9MyR}g2s@PS7|YVTGX8;MqO7$^%CMX)pZCez5?PK0rm_Z2iVyC9PIpKy!1RDA6@CT zYt9SfW#C(2Z{gM9en&*G<;l=jUecX2NtB-?B_mBife(^o(WHe22P8L12+M%68v*^z z4akD)N>`?kT$zwLe^2W)Fni>t7WK1t2vg{b^^k=vTQr)08exUPm~pTG)VhSJr zud70JmL;s}U` R0=UP(IK+oIuzcek^I!ijt-SyM literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/completion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..498087884cf39eb4f4e6cc94d84d9992ba205b32 GIT binary patch literal 3144 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/debug.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..288066a23b8aa4c4ffc007e676dbcb7a0cb7e79f GIT binary patch literal 6681 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 oi^b~v;>@MF^7*P;_0FC9KhOWr=>Px# literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/download.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b21d21e7252b90e5a4e715f92ae39fc9b22ad8a2 GIT binary patch literal 3991 zcmbVPTW{mW73NJ8MN#r~?e%UpB?2UkfLh9Sn-nOV?E>DmXtOXDb(#kSTY~0{Eoyn& z8PXdW5>V6&^vN&%1@=pUKKAd-YoGcLg7kuZLsGUZqj@L^lIP5vIWyWmtXHp$cA$v{)bNs%+CEBW?^EC2d4z+#EJb zx)E7%YuGAjGqU6MupK)?r{tSaC+-frC2d73@#=83q+8KiygpoyH-;PW=5VuYv!i?Q z)^JNzsB*bY?_a6IonI-WO`LZMacKKoA3h-Jq0;O818Y?dda5wL@}q)sP{xap=lI$| zOwue5(?qte$Np>Tn4#LW7v^jA4VCq)D5^q84rK zU`wcdY?2nS-x=rXuuTlO#}O;f)3-^K`lPnbf1xUh?c$nuxEW0FPbhbfSsMS$E<1PK zmy?&jc0Yzc+%z9i=7tHO-@w0a!NcUlU2uZSGa7`)A!WQ@5B_TZ(9KvnhJkLuqU-h- zY2ZiKJ#ba&fsifnKE=`)@ zez34WSQbWISpBw$ncQe zNA!9oN-AUhhjWLz?uXEP;(lER-79x*VG%c8dg^{%yL`8F>h86CzhCLRt7(_rQdU{? z|0vo!4fyp2U~8Vb|9jHC=+<`0Q2t)=dY9ym53YrU$!K1%Xladsp6zGc%mTf z?SnIImzBVv;#mikQ7?Ea29fg zi)NB~gl1fHPonh5kE8|(=%R&=BUr>HqMatuWX^OlMvp0*vpQ#i(9tHkwO()J^AW{7 zGFKVp+&jXW*QL55jEEQVG%Ech?1BToY4+*kpNbCp7uc=v1Q1W>M**)76rrVDm_fnd z8L=bHymj7OFMh2&iz-vR6P6a4XqQk>GiK&9PMO#U6MXV|T-Av~%iuIR7Irm4y7aFK z`vi{sE*^~1m=64qMgGy?<>Wa%9T315-A|L8rBOuLpgQ_Kf71VK5QRrI`=tN)lL5yW zwL3oy2Ef>XhaI6T@uNXdosE1j508EZ$KPxu|4=6KGrU&S@4HP+Q*UkqwE3;mHZ()U z{hw}QQ$2e)54ZZn>MzV9n)CfPaFFvr$At5%3*s75K1S3Lb*g&GiGp_tEJzrcPR3Ln zH_l~WBR4BrrqN|n_RsX(nyTmO%s`qU#isgH%G*S{FlG%%wR7hjX*o0V4%)j8&Rrz2 zaiPze=v|p=7}J>QSH{eOhSe#wPEBZO$e9QHVa-~g)~7AmF7@L<@?SJ&HneO` z8zltV<9kyJ+N}$1);>{Y&a^$=y4=1}o-40*W}Rtge4i+V!u|wm2b9XEzfu0EPFt4` zrkzrQbNNvAN%~DPb=aTt_hf}|`Dp4~spo);{C&Vh`{2u-!Jfc>qREjFNHEd46}jvq z*=fx;ALWioXhd@=jMoT5v07y((hwCCY6BjkPy`bZKUD6YGR*Ct>&=| zWX4t{(~(Jrhj}s@MeCHZqZH(%*AN!c7>NPV&mmf>tJbxWO*{z7bt7VrQ&d=6!H5R0 zy}CZ2#CtoUG~#Cu4vQdwiN{40O%~2__e1`j>h^vhR_n}0=H)&ThKLp=VeTKHfT+-_ zR!vZ3BL9I~VIU!iwdJCu5llv**pQ`Sjf7t9Ro0L__iCTispi%8moDz0(17s(#GHPU zvzAoXk%KG%P+5|~*SBj>E_O;dS-?&2+EYK5V>@*}kPU7U-3kKcE)%P=h^2r*9tNfV zL=$$EvO99Pd0JN1!r{P0jyjKcM-yQreoVzS_fM%8g~@BQF04S9ewNXMFh^=I#%Y)^ z3uLd$`uJ3v_Y+CU7+{~tSGlXQQ`5|nH~+nA8Vgt@r6BRG(Vk0# z`=@PnHACyFwkjV-)&5`r{S57FV;RFRe@|m8nEe1nx#fA%d!8q3&x=!1M3Qzq?@i%H zbx+gtNE)EIQE+4w`!U8c`Degn?ZhPV2_4ZVbbvH_CEMf~u<(+WGl`08c(~jMO99F{ zc2oPvRm+~;`%qN-bD`#87kVkuC!xeY@cA(*0$)S$ox{K9#i( Xe}I>zScnhYnu7?D)FvKV+tmLH*w3R2 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..85b84a514af75c2b4104eede66a3a1da640606d4 GIT binary patch literal 2657 zcmZuz&5z@@71y_9*`A%*uVj-p6esVb+h6bL0HJ{G^ z(Kn2L>(2J$pz{%$cm_cXVlpGvZ;P3^6 zSxp5r=d(;myu(>e%1UNsp{@QwndfOiw0iX9;Na2G5max^DQzgUzL11v$4Pa%5D#29 zeK~|W=2Vn5pHZRgDyx+Hw_U0tJj7DjkJ zuVq!sC@X|a8KWes(%EUcpaQ0d)2DUDX-*3%qIt>lR8GQn*=APCX~b|Bti*yenx%q{ z;f)p|li3-KM9KAF$qD6?c5QRFeMQmR6)zXjm#YweHL_mr(r5DibSlop1kt3N^BcIg z@;D;Ii^G|T-ulsc5A6U=dd?IK&Gkq?dO9Qs*^unK0FqWK zZjjy9x(BP-%FAoyb&TJ;wzWR| zjgR26N8ZqLuUc#)C2t-!)|fZLF+j2jv>I%6g!0m=q6JaTJY%$Z{zTA7E@>A|9dX@R zAkIHc7G_5PYm^~#GXS?uA+T3O3tCW~%B)yKWt;p-^w(u3qAm?cU=bbDs1`_CUNf0h z@FcUGipj`T4xvKgP%~W>$|rQ5Vvh22D$}!+D`!brg%~(z7n37DU$BZgKzqKT5OY`=l z&JwLH>wTg*FY|TsxUPdyr~;5xf*cAJrli%7A+AYQ^>l$IRVtUDtG0@jb5dr73LZZC zB6vMm1e!Q_uqFyyNH!Q^+po$4r$*WsIjAg4)INXm

%RA&U4OH}8kpWoueToc z{=4hlwwimd5ancRPvx)3N;xTCh?$M;*N>+B4IfqLNJE-mo6qeF^TZN^3;WWRPRl3e ziOcWkK1N(^k=~_$0X~5iz}7%FtNs>!sIaZQqy*$uPs6%XU5y2yf=rYw1v?|705kt34z0{^bW7RzB=G=U z{tIpM>WW|<|BdbhE0l;1Tz6+nIy+4^5Lf8fBQx*e@8EWUyFS$eh;A>mVv}H{yH(zMw{2gU!aIzLj( zt+)Qrj*RyBeb`k11a{@AohwhCSD^B4lRXsBWK%$s8OypHz4d?g$uYju$*RJ*hOYXV zNnlu63rqv+x9L#7deu`|wVx9FL7H?$+NNE-@#?HvW=u@58PeaON&~6A)z1Y&1s`?+ Wf1s&NXi5)^fr%fo+5H0Rw*5a#eDlcw literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/hash.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..97964a6819064748620366395efe694017084320 GIT binary patch literal 2156 zcmZuy-EY)J5cm4~e0NFsDA1HrqY~7U$Q=l^4+v0ENTDhURgzNG6|x-f-kpQLvbzq= z_3{*6QU8U@Q`N`*JNw$F{t2zB(iz_+92INrcy?!YJ@cCn7wxvE!T5djP5)P0)BeE4 z{D3{}OPFE;gld$eS}=W+fYfU}(BZA8MrH;kL79CP>25!w;X(RIjFKY(P zdTpnztR1wog!rNt0UOOj-aF(%L3csJE%$J2v3)nANB%_^_)i))%kWre7ZoL{UuavwP z_&*k$Qh#d^WjLp;dd-$QYNHw;$e}*Oei~w(J$pt){m-GDs#xvlA{kDSGjRU zL-1TEFQPREy4(dJcYr9nU+^q~L%T(iE4z%iU|gL82pN}n5Y)o~FRBtVRIs%Fo5nwa zlYb|@VUe+3l<+j#>3w_fknQ&<2V>WYT=F7K8Sj+`a#-Z|Zg;=vrOD20dAob-W=}w3 zuFeuc^va~{g-I?M&!e;#PxD{&F!J5=yQ)rT%y0R|2p3sU7X9s z?%YY`%rZck5g&-yfJ;t>1q^~xNBll8V_h^cjuRsFUE`P#O`2QUnCx1I##n!-J#QVF z(xzl=jt%J`J<^Y$tL!aF7ox6jjFwi!9dDYw_kdjyod!p{RkP&aYFG)V0cD5-2%(Ua zan8{S-bRAGPPIb>AT0VJCM?H#?N}TE;8&1*f&|r-Sw?bLhh<7G~Wix{@8 zsVC=>K@O=L&WbeLXZb$=7%t>G5=0xkm0TI%Jzv2+%%eGiR`Vv1MVJC@alvlWF^Q*N zS*Rua8tT*#p*+T`PsTej3}9D6MN)F4|8n_Imt>-kp;8YG3Gq835JBe^M-Y`Q4@#8Pak>Hp z**z`DZk#6Fok*~7R+-$y6Yo)izAGyMYS5yl*^Ei6mfyXuk_j|tbPBYv3)THdU3#BZ zmWa4UYg!VG0h3R_3#gXswbkenEHG>M4J7FB97uJF)#c#cohI^q?2L5>aWxmZ1_IX7 Nmk2(dzGN(4{|{t*G28$E literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/help.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98fb126f648e1d22fc1ccbc3a8f67acf8faf4251 GIT binary patch literal 1317 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 TssRDo)yZ0Sl3?{8SnU2cb(BQp literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/list.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a4fe1f5da26cca1981a9206cbcedbec5be26a225 GIT binary patch literal 10366 zcmbtaOKcoRdhXZs^bCi?;ZvesZcC!9k;S3Cwl~Q}cD#~huVRH3RSr&?~^RrPZ4bn9&Wtg251=UV6M=UYqlC0*k=@d5C!1Q%M*)SuC{ zH#9cQWe7D454t?6=H=v_cW+(yu6^hFwKs39z9F3(F&BOu3TfSJMzM6>>cq{k?FZ7i&F^-3 zyTN7dPPY?qX*K*Pex%FkhTjg`&4wQ|d)#aLEshO}jTQ^l)CjHV8*RoPydlDF=UUim z`E3SZ{`T9~u3f)<8`V+@y)Hy3(4M^6Y;Ru+gMc@H3IT5UjctE}zuv?`qH4&>RX^gd z0YlMT>k@`?YJs_@c8YxJL3^H{OPf z*G+Em95b$H+{XXr6^&WoNlwmswC?ws@#anJ8pSu->tXL7-)P?BZoJ7|HgrfgT-(Bd zT;FYglmU0cb(cSgh3~F6dBCDtvFN5hcQ$#%-TTcTaM!ro2|Mac%w=8CY;U;lzfa`C z(HQn*7pw2TUvuwlHX|4RSX0D1F337qtmSX>NMR#@Ani(+HA2SSR=2U~HUjRqxu^{$ z$TCqdioJUYndDU3UT+3G-s$jFh@RsqY4JQ+^t@Kcx&cSM%IGPxDOORv7OMbCw#KSYjX`JG9H5mk=sa5h zbovm=XV@`iQ;xGm^voXiupHJ-EX^D{1w0fcz~yv?lNxb`J%xGmEC&gHT27EDNmaa; zNEJccW;=>~u!Ol8%`XGi2)c|!l(QyOG2oe0rzRkBeZgH~0_HW_qzf=)+Lq3A zW-yakEXV9mb9x5NGe85kc*8i z8|TmO8xM8*f6rmnzP@j$y^H{q#3d@8MbXPG zFLwm*y?aCH2Q0ea%L48VvhTv5x{TlBLD(VB=cYzCs<~Hp(4mNV*@ZcCL&9VoPBe0X zHI(acY|mLYT zn}Rc0Ld(lqy;l^oGc%HKkn9BUi}4Oe*wAh?;l$v(p1?7jO3_tR$9-dzpmwmaZog29_&hHjWy$QUR#-uyQ(euySuHV{5k96Q|y(T4QJ? z0z#&%T96K6E)Rw+l0~1X8oZ<^5w{A8l^s9clqFS7&nBnIwbLXF^)@I#lM@tUJxCk2 z@?%2Il6@737=}h7Sh6A>tjl6DgSI|&#o|0|JaLFg^dbP!XDDpl82s8_*!i#3GVIUo z;_%2yez1;#RfhTu9b*gGSo`OPJD_f7aE$t*lCS7xV@^+uMe3qzLpaNPa^gtlqa`-uHI= z_BQloK53!!U^`ON5lLq=ZUrwP4uSzL2MD`8sA>{-%PDX-iJxi8dL)m*PI*u#!5hGY zd4svOs9;lRHx&M2jv6LyGflOVLsQmqz%HUlgz98}7}WmPFh(IQh>YS5D!xO-xj~_1 zY2I7wHUs9RwDHJ}aq$TTMYLhrHcUgebo;={5sw|+{<8Np*@cX+Pn<6;Uu;B2xH@qE zKgQDFmnMoRbx{OQ^Lc093;Yo4{28ZHEmaop`hVI zEiM37+|{=x@P7&4B)&4fslG`80gZl0(oqqw_O-p~KJ5U>0YnqO4#-RfY12x&xDD8B z219)=sRO5ZNLGHe_tIO*CCoi^$I4wC`cs5Y6jIYI0m8J_Y;#sS5)7F{WcrSy_$>rJ z@8uurF;2LvzoY5eU4vZzBYjoS#UG+))Si=idz^uVD;vDcA9Tbke?@CqD2xvlwBFfa zCW&slc18K-=#|=F!V!!}>u%F33n(@Q7%{@h_5vx5*3v^&X9)0I`q`og`T8!lj_@+fL}ikWR}o-Y(WYVyZ6e*j61;=r zD8VvmeiFgNU7APcaD35q!2X5cF^Z#9$QC_91+s)hjfnhQDswu?+9wDoKGN28+|rB> zoxXx83A9EfFe9asz>8R9lPqEd7dCxQ+t)e;roBcs+kiY8B#)n&cZ;cwB*MV?Pb(Q1 zj+Mm(dZeW?dZsd-A|!}O?tGM-vTy~4NQu+GV@O20PV!jPtuGDJIdC5LR>oyw*q{uN zIa}w5#U~<>NsB1)qRv;K^KEG#Yxi{G`)A7PC;Ftz@*pjlm%(WecezoMG0{wVoLIQ;Bet# zuAgICR~OZOPI+ecd$^Wc_}w*=3;Od~^wNDqE%f^?K6PogR~2g&isBhyGD3aAlO#-0 zpET-YGKh$D_w|RsaLb4)!$J#~wgv2wFfl*X9~ylliIi|66S%?3(Vl&CD~HI&+_Dih zU1rw9T-#td;BWOc&*|q-7Wx=hwMRvrm_x`YQKxW38Cxe2g)KcAHLURZEsT+q&1fj> z&0>K9WP~-9vmBLYWm*3R6QdFel4RU9zQm2;aqq2R9)GpnJe24mYkCMg3^^cXr8GC8 z1XbqlZ*m^s5>6JsT9mUC=Xw;k53r3y4`_)u>14;%4Q|lo@q0+^s|@}u<-xo)O2ZDi z6KX)N+uPCsP1Ih>p{sOh1;ERZ8#s?*{qyvB5cx)S$ zgYqdt-1xvaIQx^{g|CP95xYRB5f0H`qM%4S(J*zBBpa?XYugZK`not1L*)C$uJL`` zIH6J69`vkl?WYMjH8zK_SIK?6cLEw_Y+20S&WT@&b1dJ_A-$K|qW_&;Bo^;30Sf&~ zpky`fE-8JbJquXp7VbN^ebA1(up`u`Y)ElbPbn!upVCu04GaPr;w@Cg4hn?lhon{N zrzFI=68Nn(=D$+HY-NgVt@q+E6`vem4(nF305r>liC6h5@jQ0?DdE$bSc+bLc`0%) zE=ARzoiqg9-JxrCk~$VEXv&!+g+&=Kx)f9POP+c1=7W9;+txzF|74k@BmDbHsS~wx zD9%nEtA>_V$**zwLlV%BeQ9rUA9vg*5lU=ehdj}U$VOLRD9S~d=l|X{2_|Zb$7%gQ3p8! zC0v9U_SfdntQxDI>&r@A!G8V0SezpM0AukOn+TSp^{)K?f|c?12?AzI6A5E!C&@8E zuR%zNhRwF1G?$Wr%(4vVDkl(uc=T}D-oVu>!lP*>9er>JmIAhoyArnF|7ONAkC-;=p+gy&ZAZ5l;{ z7V}h4HYc&1IjWsSAx*rHi6%AaCLq?SU{qLCkfBtPD(E;vM;s`;xPT5yzD5+LJ9tMU zCr~tvx5=KW&nO<8m^01~w+%|~4SL5~<*X04!~^3()Y36HjMIt+8bA7 zy!?tS!tW{-D*mBEXFnuhbYLa@KSzaZ@rHrO2GJ))HKKwThk|r#12Roo!0<#w7e@-> zRZhneF2zJZMqn>0Sdm~G8mu)%?%#fB_w6m@nNa3;b?lwTuHWtF zp-%*Jc2$;%+Gr)~S>pR?yV$9-iIF{;Y0pGwW2`4mdrE424(ln5@BT6(GGm>xDy5#M z@|Ac|g|UlO&Ob|6lF>qb9VyBP&#*{S;vEl?ghZd3vX(uAj3);MI;Mun{H^2-R_5PH z-;eE^DsGV09XuY7m;z!HeGz?hXIJSdJBbGmlT*s?z~wYBA`SnqvZ!59YMq(vYoA-N2A3$TC{J#p`L}BztLcGi$Fbm~?Jt#=meQ&BF+(RVPIq8%Z0_ z_;{p{rr+MdLs*AiEX1D>LVrrdSt=-yJq*?4VwPJ%V5^?CyupTlhLN(6rF%rx5r0E- zuTnv_T~?4+X@fa~zW|Vvc<&lKWkkviKryheG(~uSoJxO$MV5(5-%#@ZE2L#xlua?| z_R91hC0S8ii=jm>pjPKNQ@Qmk>Slo~dk!^y%N8qY7PJO1TlG4q5ga5X z!Aoch8eM%M*)Si38ygS@Bq2L-^5R2$kv3v^fQ5-hV$YS`Cq9Wh6=WGzc2%Cl^J0yB z2Ma|lF$b7g!{6ovQIbfQRwJ^%r>Hf8W|G=GeFR>ED}qH(FB@VKTgWp<#~_s%cOwkL zYpKdD%HyMhkPqca@>}Im<=8&z&8jwd>_{Fk&W+0j*}# zP+>_Dk0wkSupq;_wuV<^^%pit0)Sj$O0FXeO|N+>T`3F5E#8FaAVQ_cLfRxpXpl=! zY?e}V615>=Jx5J4w$izh{MpYdkXkJw^Wjzhpz`w*rwyX*k6a5{(s8 T`+@cYgC6u$B(Okn!t(zDSX!8m literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/search.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..71fdc50256f4b80644526d4252ba0db73f91a28b GIT binary patch literal 5370 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f3ccda687c898d992cf55b0ad3897bcbd193827c GIT binary patch literal 3114 zcmZuzOK&5`5uO)khC@=1mGguZcs=DZO0t24E z&OROetz#H}$IklGfX;{Tia!IP1~pS7#IKc_nH5?lw(Zo;oY2v2Cv9YI=<0SO^)f&7 zb=yswSr7(UD{Se$m$tJ`*wJl2-N-h>P2Fy$TiJHFt=mC*BijjgvfXf3_gm@B>{fWo zG?;O5o87rI!`D7GXq$GvGiZnTEO_pOcd5B=bT|G1+8R%~rgFcG(~1dbIiDp$!gqTZ z=S7|j<20GED33D+gWg_|WpPfsmfG28LL^1L82MfDb&{){)0pQ`GKzSWN3n=_QJ^eu z|LNY|NBjFI_LE%5I89>-ydQC1a2UK%#$2$7v*Rk^EMvJ8u*1!yUW((I-eg%XXp-GL< zqGo7QD|Bd!HmLiZ6E>*FT-MSbwE$fJcZKOp^ny_AsaYkHhKT8}fWr)E$thtu=? z$q>A>e6ZbwcMo3i7|7f>GLB4YQj6Nu85j>qdadN60wB+n)6*7PxA}4I+%@iCAF_GkYc$}QDoUDt| zXY3R5#RNjDwiW?&gC9vHfHA95nUolDNd}SFZ77E_Awh#7hLrLs8^y3jdFbzxm@8+( z(h`m^oi%#BDHF;@5(rsv7D-;Q*)JX!`J0l&;u#qgoD7S6l<-Vrj})V|z@{u^I&k}4 zo9}>u`7V;%NYMCQNBP5yMxZzB5L4Ykty~Rzu67{27?-#Jfj#C$RRaDU!P3!R4E|$~ z@t=G!DKa*Q6Q0J0gU_dr*~x(NB4>L=E_sorj1OuE{N~;MF9&IIxahvy|M@!ukx16N z0_p%DI*5`Sf<2GZ!LUw*RwDj^K zW%SnsDQ^+!%8B_{3~i8k^!~4_0LTJi*wPwG_-Wo zt^?8$IGeQj%%K73+?+Q#pEobIE)CEwlH1SWD{la#T3E*XL=;e37@h5ZlAl27qU%6- zk38fg8RrnBl=L)MmR^Gh)s+o0X$e(B5UhAFaRV?cj($|0s7v4MXTL8hKo4YQ1Ra5_ z2MH2-5LoN`Vs@Nuk+%e61;WS00vV*obezD95)JS3V{-R8R%03a+-7OQSND6R1cU!Zjf^bCtgj4e=$Az;rBM!^$z;|GCZ<^Z``1 z`+eYArfUW-pl!M@TzkW`zOnx8_?8JgFyg$h8aUH-9O(PN?KmLm8`pBo+3wS;%6kPw zxY2s-InqreI<$_6+~$2DrL}aN6~Q=r+6mlc~L}*Av7A5fD+Gt0=(Qpg2+|2 zkX+f2NI2dz)((joixVUpKyJb-&`rJpdIo`W|F$0QzOFoUDY#PkkQnN0h~kwirzLt= zZ}U0?R6l}}KnvcllNikP^@X60jQe`URYvO%)1-eG!*y(d2#$AKb?=9Zz=z8jX3!kh6tc9wgqeb0$S=#FMqQg*azdQ{a=|H_M8^-&94zOc2gvui{1avfC-$0+X zpCw{ghjvi}dI C0F?Lu literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c9bc818f7a480f55b96b82ef9906daac698a0a9 GIT binary patch literal 4846 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 A4gdfE literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/cache.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/cache.py new file mode 100644 index 0000000..f1a489d --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/cache.py @@ -0,0 +1,223 @@ +import os +import textwrap +from optparse import Values +from typing import Any, List + +import pip._internal.utils.filesystem as filesystem +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, PipError +from pip._internal.utils.logging import getLogger + +logger = getLogger(__name__) + + +class CacheCommand(Command): + """ + Inspect and manage pip's wheel cache. + + Subcommands: + + - dir: Show the cache directory. + - info: Show information about the cache. + - list: List filenames of packages stored in the cache. + - remove: Remove one or more package from the cache. + - purge: Remove all items from the cache. + + ```` can be a glob expression or a package name. + """ + + ignore_require_venv = True + usage = """ + %prog dir + %prog info + %prog list [] [--format=[human, abspath]] + %prog remove + %prog purge + """ + + def add_options(self) -> None: + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="human", + choices=("human", "abspath"), + help="Select the output format among: human (default) or abspath", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "dir": self.get_cache_dir, + "info": self.get_cache_info, + "list": self.list_cache_items, + "remove": self.remove_cache_items, + "purge": self.purge_cache, + } + + if not options.cache_dir: + logger.error("pip cache commands can not function since cache is disabled.") + return ERROR + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def get_cache_dir(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + logger.info(options.cache_dir) + + def get_cache_info(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + num_http_files = len(self._find_http_files(options)) + num_packages = len(self._find_wheels(options, "*")) + + http_cache_location = self._cache_dir(options, "http") + wheels_cache_location = self._cache_dir(options, "wheels") + http_cache_size = filesystem.format_directory_size(http_cache_location) + wheels_cache_size = filesystem.format_directory_size(wheels_cache_location) + + message = ( + textwrap.dedent( + """ + Package index page cache location: {http_cache_location} + Package index page cache size: {http_cache_size} + Number of HTTP files: {num_http_files} + Wheels location: {wheels_cache_location} + Wheels size: {wheels_cache_size} + Number of wheels: {package_count} + """ + ) + .format( + http_cache_location=http_cache_location, + http_cache_size=http_cache_size, + num_http_files=num_http_files, + wheels_cache_location=wheels_cache_location, + package_count=num_packages, + wheels_cache_size=wheels_cache_size, + ) + .strip() + ) + + logger.info(message) + + def list_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if args: + pattern = args[0] + else: + pattern = "*" + + files = self._find_wheels(options, pattern) + if options.list_format == "human": + self.format_for_human(files) + else: + self.format_for_abspath(files) + + def format_for_human(self, files: List[str]) -> None: + if not files: + logger.info("Nothing cached.") + return + + results = [] + for filename in files: + wheel = os.path.basename(filename) + size = filesystem.format_file_size(filename) + results.append(f" - {wheel} ({size})") + logger.info("Cache contents:\n") + logger.info("\n".join(sorted(results))) + + def format_for_abspath(self, files: List[str]) -> None: + if not files: + return + + results = [] + for filename in files: + results.append(filename) + + logger.info("\n".join(sorted(results))) + + def remove_cache_items(self, options: Values, args: List[Any]) -> None: + if len(args) > 1: + raise CommandError("Too many arguments") + + if not args: + raise CommandError("Please provide a pattern") + + files = self._find_wheels(options, args[0]) + + no_matching_msg = "No matching packages" + if args[0] == "*": + # Only fetch http files if no specific pattern given + files += self._find_http_files(options) + else: + # Add the pattern to the log message + no_matching_msg += ' for pattern "{}"'.format(args[0]) + + if not files: + logger.warning(no_matching_msg) + + for filename in files: + os.unlink(filename) + logger.verbose("Removed %s", filename) + logger.info("Files removed: %s", len(files)) + + def purge_cache(self, options: Values, args: List[Any]) -> None: + if args: + raise CommandError("Too many arguments") + + return self.remove_cache_items(options, ["*"]) + + def _cache_dir(self, options: Values, subdir: str) -> str: + return os.path.join(options.cache_dir, subdir) + + def _find_http_files(self, options: Values) -> List[str]: + http_dir = self._cache_dir(options, "http") + return filesystem.find_files(http_dir, "*") + + def _find_wheels(self, options: Values, pattern: str) -> List[str]: + wheel_dir = self._cache_dir(options, "wheels") + + # The wheel filename format, as specified in PEP 427, is: + # {distribution}-{version}(-{build})?-{python}-{abi}-{platform}.whl + # + # Additionally, non-alphanumeric values in the distribution are + # normalized to underscores (_), meaning hyphens can never occur + # before `-{version}`. + # + # Given that information: + # - If the pattern we're given contains a hyphen (-), the user is + # providing at least the version. Thus, we can just append `*.whl` + # to match the rest of it. + # - If the pattern we're given doesn't contain a hyphen (-), the + # user is only providing the name. Thus, we append `-*.whl` to + # match the hyphen before the version, followed by anything else. + # + # PEP 427: https://www.python.org/dev/peps/pep-0427/ + pattern = pattern + ("*.whl" if "-" in pattern else "-*.whl") + + return filesystem.find_files(wheel_dir, pattern) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/check.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/check.py new file mode 100644 index 0000000..3864220 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/check.py @@ -0,0 +1,53 @@ +import logging +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.operations.check import ( + check_package_set, + create_package_set_from_installed, +) +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class CheckCommand(Command): + """Verify installed packages have compatible dependencies.""" + + usage = """ + %prog [options]""" + + def run(self, options: Values, args: List[str]) -> int: + + package_set, parsing_probs = create_package_set_from_installed() + missing, conflicting = check_package_set(package_set) + + for project_name in missing: + version = package_set[project_name].version + for dependency in missing[project_name]: + write_output( + "%s %s requires %s, which is not installed.", + project_name, + version, + dependency[0], + ) + + for project_name in conflicting: + version = package_set[project_name].version + for dep_name, dep_version, req in conflicting[project_name]: + write_output( + "%s %s has requirement %s, but you have %s %s.", + project_name, + version, + req, + dep_name, + dep_version, + ) + + if missing or conflicting or parsing_probs: + return ERROR + else: + write_output("No broken requirements found.") + return SUCCESS diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/completion.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/completion.py new file mode 100644 index 0000000..c0fb4ca --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/completion.py @@ -0,0 +1,96 @@ +import sys +import textwrap +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.utils.misc import get_prog + +BASE_COMPLETION = """ +# pip {shell} completion start{script}# pip {shell} completion end +""" + +COMPLETION_SCRIPTS = { + "bash": """ + _pip_completion() + {{ + COMPREPLY=( $( COMP_WORDS="${{COMP_WORDS[*]}}" \\ + COMP_CWORD=$COMP_CWORD \\ + PIP_AUTO_COMPLETE=1 $1 2>/dev/null ) ) + }} + complete -o default -F _pip_completion {prog} + """, + "zsh": """ + function _pip_completion {{ + local words cword + read -Ac words + read -cn cword + reply=( $( COMP_WORDS="$words[*]" \\ + COMP_CWORD=$(( cword-1 )) \\ + PIP_AUTO_COMPLETE=1 $words[1] 2>/dev/null )) + }} + compctl -K _pip_completion {prog} + """, + "fish": """ + function __fish_complete_pip + set -lx COMP_WORDS (commandline -o) "" + set -lx COMP_CWORD ( \\ + math (contains -i -- (commandline -t) $COMP_WORDS)-1 \\ + ) + set -lx PIP_AUTO_COMPLETE 1 + string split \\ -- (eval $COMP_WORDS[1]) + end + complete -fa "(__fish_complete_pip)" -c {prog} + """, +} + + +class CompletionCommand(Command): + """A helper command to be used for command completion.""" + + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--bash", + "-b", + action="store_const", + const="bash", + dest="shell", + help="Emit completion code for bash", + ) + self.cmd_opts.add_option( + "--zsh", + "-z", + action="store_const", + const="zsh", + dest="shell", + help="Emit completion code for zsh", + ) + self.cmd_opts.add_option( + "--fish", + "-f", + action="store_const", + const="fish", + dest="shell", + help="Emit completion code for fish", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + """Prints the completion code of the given shell""" + shells = COMPLETION_SCRIPTS.keys() + shell_options = ["--" + shell for shell in sorted(shells)] + if options.shell in shells: + script = textwrap.dedent( + COMPLETION_SCRIPTS.get(options.shell, "").format(prog=get_prog()) + ) + print(BASE_COMPLETION.format(script=script, shell=options.shell)) + return SUCCESS + else: + sys.stderr.write( + "ERROR: You must pass {}\n".format(" or ".join(shell_options)) + ) + return SUCCESS diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/configuration.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/configuration.py new file mode 100644 index 0000000..c6c74ed --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/configuration.py @@ -0,0 +1,266 @@ +import logging +import os +import subprocess +from optparse import Values +from typing import Any, List, Optional + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.configuration import ( + Configuration, + Kind, + get_configuration_files, + kinds, +) +from pip._internal.exceptions import PipError +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_prog, write_output + +logger = logging.getLogger(__name__) + + +class ConfigurationCommand(Command): + """ + Manage local and global configuration. + + Subcommands: + + - list: List the active configuration (or from the file specified) + - edit: Edit the configuration file in an editor + - get: Get the value associated with name + - set: Set the name=value + - unset: Unset the value associated with name + - debug: List the configuration files and values defined under them + + If none of --user, --global and --site are passed, a virtual + environment configuration file is used if one is active and the file + exists. Otherwise, all modifications happen to the user file by + default. + """ + + ignore_require_venv = True + usage = """ + %prog [] list + %prog [] [--editor ] edit + + %prog [] get name + %prog [] set name value + %prog [] unset name + %prog [] debug + """ + + def add_options(self) -> None: + self.cmd_opts.add_option( + "--editor", + dest="editor", + action="store", + default=None, + help=( + "Editor to use to edit the file. Uses VISUAL or EDITOR " + "environment variables if not provided." + ), + ) + + self.cmd_opts.add_option( + "--global", + dest="global_file", + action="store_true", + default=False, + help="Use the system-wide configuration file only", + ) + + self.cmd_opts.add_option( + "--user", + dest="user_file", + action="store_true", + default=False, + help="Use the user configuration file only", + ) + + self.cmd_opts.add_option( + "--site", + dest="site_file", + action="store_true", + default=False, + help="Use the current environment configuration file only", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "list": self.list_values, + "edit": self.open_in_editor, + "get": self.get_name, + "set": self.set_name_value, + "unset": self.unset_name, + "debug": self.list_config_values, + } + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Determine which configuration files are to be loaded + # Depends on whether the command is modifying. + try: + load_only = self._determine_file( + options, need_value=(action in ["get", "set", "unset", "edit"]) + ) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + # Load a new configuration + self.configuration = Configuration( + isolated=options.isolated_mode, load_only=load_only + ) + self.configuration.load() + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _determine_file(self, options: Values, need_value: bool) -> Optional[Kind]: + file_options = [ + key + for key, value in ( + (kinds.USER, options.user_file), + (kinds.GLOBAL, options.global_file), + (kinds.SITE, options.site_file), + ) + if value + ] + + if not file_options: + if not need_value: + return None + # Default to user, unless there's a site file. + elif any( + os.path.exists(site_config_file) + for site_config_file in get_configuration_files()[kinds.SITE] + ): + return kinds.SITE + else: + return kinds.USER + elif len(file_options) == 1: + return file_options[0] + + raise PipError( + "Need exactly one file to operate upon " + "(--user, --site, --global) to perform." + ) + + def list_values(self, options: Values, args: List[str]) -> None: + self._get_n_args(args, "list", n=0) + + for key, value in sorted(self.configuration.items()): + write_output("%s=%r", key, value) + + def get_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "get [name]", n=1) + value = self.configuration.get_value(key) + + write_output("%s", value) + + def set_name_value(self, options: Values, args: List[str]) -> None: + key, value = self._get_n_args(args, "set [name] [value]", n=2) + self.configuration.set_value(key, value) + + self._save_configuration() + + def unset_name(self, options: Values, args: List[str]) -> None: + key = self._get_n_args(args, "unset [name]", n=1) + self.configuration.unset_value(key) + + self._save_configuration() + + def list_config_values(self, options: Values, args: List[str]) -> None: + """List config key-value pairs across different config files""" + self._get_n_args(args, "debug", n=0) + + self.print_env_var_values() + # Iterate over config files and print if they exist, and the + # key-value pairs present in them if they do + for variant, files in sorted(self.configuration.iter_config_files()): + write_output("%s:", variant) + for fname in files: + with indent_log(): + file_exists = os.path.exists(fname) + write_output("%s, exists: %r", fname, file_exists) + if file_exists: + self.print_config_file_values(variant) + + def print_config_file_values(self, variant: Kind) -> None: + """Get key-value pairs from the file of a variant""" + for name, value in self.configuration.get_values_in_config(variant).items(): + with indent_log(): + write_output("%s: %s", name, value) + + def print_env_var_values(self) -> None: + """Get key-values pairs present as environment variables""" + write_output("%s:", "env_var") + with indent_log(): + for key, value in sorted(self.configuration.get_environ_vars()): + env_var = f"PIP_{key.upper()}" + write_output("%s=%r", env_var, value) + + def open_in_editor(self, options: Values, args: List[str]) -> None: + editor = self._determine_editor(options) + + fname = self.configuration.get_file_to_edit() + if fname is None: + raise PipError("Could not determine appropriate file.") + + try: + subprocess.check_call([editor, fname]) + except subprocess.CalledProcessError as e: + raise PipError( + "Editor Subprocess exited with exit code {}".format(e.returncode) + ) + + def _get_n_args(self, args: List[str], example: str, n: int) -> Any: + """Helper to make sure the command got the right number of arguments""" + if len(args) != n: + msg = ( + "Got unexpected number of arguments, expected {}. " + '(example: "{} config {}")' + ).format(n, get_prog(), example) + raise PipError(msg) + + if n == 1: + return args[0] + else: + return args + + def _save_configuration(self) -> None: + # We successfully ran a modifying command. Need to save the + # configuration. + try: + self.configuration.save() + except Exception: + logger.exception( + "Unable to save configuration. Please report this as a bug." + ) + raise PipError("Internal Error.") + + def _determine_editor(self, options: Values) -> str: + if options.editor is not None: + return options.editor + elif "VISUAL" in os.environ: + return os.environ["VISUAL"] + elif "EDITOR" in os.environ: + return os.environ["EDITOR"] + else: + raise PipError("Could not determine editor to use.") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/debug.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/debug.py new file mode 100644 index 0000000..d3f1f28 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/debug.py @@ -0,0 +1,202 @@ +import locale +import logging +import os +import sys +from optparse import Values +from types import ModuleType +from typing import Any, Dict, List, Optional + +import pip._vendor +from pip._vendor.certifi import where +from pip._vendor.packaging.version import parse as parse_version + +from pip import __file__ as pip_location +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.configuration import Configuration +from pip._internal.metadata import get_environment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import get_pip_version + +logger = logging.getLogger(__name__) + + +def show_value(name: str, value: Any) -> None: + logger.info("%s: %s", name, value) + + +def show_sys_implementation() -> None: + logger.info("sys.implementation:") + implementation_name = sys.implementation.name + with indent_log(): + show_value("name", implementation_name) + + +def create_vendor_txt_map() -> Dict[str, str]: + vendor_txt_path = os.path.join( + os.path.dirname(pip_location), "_vendor", "vendor.txt" + ) + + with open(vendor_txt_path) as f: + # Purge non version specifying lines. + # Also, remove any space prefix or suffixes (including comments). + lines = [ + line.strip().split(" ", 1)[0] for line in f.readlines() if "==" in line + ] + + # Transform into "module" -> version dict. + return dict(line.split("==", 1) for line in lines) # type: ignore + + +def get_module_from_module_name(module_name: str) -> ModuleType: + # Module name can be uppercase in vendor.txt for some reason... + module_name = module_name.lower() + # PATCH: setuptools is actually only pkg_resources. + if module_name == "setuptools": + module_name = "pkg_resources" + + __import__(f"pip._vendor.{module_name}", globals(), locals(), level=0) + return getattr(pip._vendor, module_name) + + +def get_vendor_version_from_module(module_name: str) -> Optional[str]: + module = get_module_from_module_name(module_name) + version = getattr(module, "__version__", None) + + if not version: + # Try to find version in debundled module info. + env = get_environment([os.path.dirname(module.__file__)]) + dist = env.get_distribution(module_name) + if dist: + version = str(dist.version) + + return version + + +def show_actual_vendor_versions(vendor_txt_versions: Dict[str, str]) -> None: + """Log the actual version and print extra info if there is + a conflict or if the actual version could not be imported. + """ + for module_name, expected_version in vendor_txt_versions.items(): + extra_message = "" + actual_version = get_vendor_version_from_module(module_name) + if not actual_version: + extra_message = ( + " (Unable to locate actual module version, using" + " vendor.txt specified version)" + ) + actual_version = expected_version + elif parse_version(actual_version) != parse_version(expected_version): + extra_message = ( + " (CONFLICT: vendor.txt suggests version should" + " be {})".format(expected_version) + ) + logger.info("%s==%s%s", module_name, actual_version, extra_message) + + +def show_vendor_versions() -> None: + logger.info("vendored library versions:") + + vendor_txt_versions = create_vendor_txt_map() + with indent_log(): + show_actual_vendor_versions(vendor_txt_versions) + + +def show_tags(options: Values) -> None: + tag_limit = 10 + + target_python = make_target_python(options) + tags = target_python.get_tags() + + # Display the target options that were explicitly provided. + formatted_target = target_python.format_given() + suffix = "" + if formatted_target: + suffix = f" (target: {formatted_target})" + + msg = "Compatible tags: {}{}".format(len(tags), suffix) + logger.info(msg) + + if options.verbose < 1 and len(tags) > tag_limit: + tags_limited = True + tags = tags[:tag_limit] + else: + tags_limited = False + + with indent_log(): + for tag in tags: + logger.info(str(tag)) + + if tags_limited: + msg = ( + "...\n[First {tag_limit} tags shown. Pass --verbose to show all.]" + ).format(tag_limit=tag_limit) + logger.info(msg) + + +def ca_bundle_info(config: Configuration) -> str: + levels = set() + for key, _ in config.items(): + levels.add(key.split(".")[0]) + + if not levels: + return "Not specified" + + levels_that_override_global = ["install", "wheel", "download"] + global_overriding_level = [ + level for level in levels if level in levels_that_override_global + ] + if not global_overriding_level: + return "global" + + if "global" in levels: + levels.remove("global") + return ", ".join(levels) + + +class DebugCommand(Command): + """ + Display debug information. + """ + + usage = """ + %prog """ + ignore_require_venv = True + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + self.parser.insert_option_group(0, self.cmd_opts) + self.parser.config.load() + + def run(self, options: Values, args: List[str]) -> int: + logger.warning( + "This command is only meant for debugging. " + "Do not use this with automation for parsing and getting these " + "details, since the output and options of this command may " + "change without notice." + ) + show_value("pip version", get_pip_version()) + show_value("sys.version", sys.version) + show_value("sys.executable", sys.executable) + show_value("sys.getdefaultencoding", sys.getdefaultencoding()) + show_value("sys.getfilesystemencoding", sys.getfilesystemencoding()) + show_value( + "locale.getpreferredencoding", + locale.getpreferredencoding(), + ) + show_value("sys.platform", sys.platform) + show_sys_implementation() + + show_value("'cert' config value", ca_bundle_info(self.parser.config)) + show_value("REQUESTS_CA_BUNDLE", os.environ.get("REQUESTS_CA_BUNDLE")) + show_value("CURL_CA_BUNDLE", os.environ.get("CURL_CA_BUNDLE")) + show_value("pip._vendor.certifi.where()", where()) + show_value("pip._vendor.DEBUNDLED", pip._vendor.DEBUNDLED) + + show_vendor_versions() + + show_tags(options) + + return SUCCESS diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/download.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/download.py new file mode 100644 index 0000000..233b7e9 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/download.py @@ -0,0 +1,140 @@ +import logging +import os +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.misc import ensure_dir, normalize_path, write_output +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +class DownloadCommand(RequirementCommand): + """ + Download packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports downloading from "requirements files", which provide + an easy way to specify a whole environment to be downloaded. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] ... + %prog [options] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.global_options()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + + self.cmd_opts.add_option( + "-d", + "--dest", + "--destination-dir", + "--destination-directory", + dest="download_dir", + metavar="dir", + default=os.curdir, + help="Download packages into

.", + ) + + cmdoptions.add_target_python_options(self.cmd_opts) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + + options.ignore_installed = True + # editable doesn't really make sense for `pip download`, but the bowels + # of the RequirementSet code require that property. + options.editables = [] + + cmdoptions.check_dist_restriction(options) + + options.download_dir = normalize_path(options.download_dir) + ensure_dir(options.download_dir) + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="download", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + download_dir=options.download_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + ignore_requires_python=options.ignore_requires_python, + py_version_info=options.python_version, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + downloaded: List[str] = [] + for req in requirement_set.requirements.values(): + if req.satisfied_by is None: + assert req.name is not None + preparer.save_linked_requirement(req) + downloaded.append(req.name) + if downloaded: + write_output("Successfully downloaded %s", " ".join(downloaded)) + + return SUCCESS diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/freeze.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/freeze.py new file mode 100644 index 0000000..6e9cc76 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/freeze.py @@ -0,0 +1,97 @@ +import sys +from optparse import Values +from typing import List + +from pip._internal.cli import cmdoptions +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.operations.freeze import freeze +from pip._internal.utils.compat import stdlib_pkgs + +DEV_PKGS = {"pip", "setuptools", "distribute", "wheel", "pkg-resources"} + + +class FreezeCommand(Command): + """ + Output installed packages in requirements format. + + packages are listed in a case-insensitive sorted order. + """ + + usage = """ + %prog [options]""" + log_streams = ("ext://sys.stderr", "ext://sys.stderr") + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Use the order in the given requirements file and its " + "comments when generating output. This option can be " + "used multiple times." + ), + ) + self.cmd_opts.add_option( + "-l", + "--local", + dest="local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not output " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--all", + dest="freeze_all", + action="store_true", + help=( + "Do not skip these packages in the output:" + " {}".format(", ".join(DEV_PKGS)) + ), + ) + self.cmd_opts.add_option( + "--exclude-editable", + dest="exclude_editable", + action="store_true", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + skip = set(stdlib_pkgs) + if not options.freeze_all: + skip.update(DEV_PKGS) + + if options.excludes: + skip.update(options.excludes) + + cmdoptions.check_list_path_option(options) + + for line in freeze( + requirement=options.requirements, + local_only=options.local, + user_only=options.user, + paths=options.path, + isolated=options.isolated_mode, + skip=skip, + exclude_editable=options.exclude_editable, + ): + sys.stdout.write(line + "\n") + return SUCCESS diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/hash.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/hash.py new file mode 100644 index 0000000..042dac8 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/hash.py @@ -0,0 +1,59 @@ +import hashlib +import logging +import sys +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.utils.hashes import FAVORITE_HASH, STRONG_HASHES +from pip._internal.utils.misc import read_chunks, write_output + +logger = logging.getLogger(__name__) + + +class HashCommand(Command): + """ + Compute a hash of a local package archive. + + These can be used with --hash in a requirements file to do repeatable + installs. + """ + + usage = "%prog [options] ..." + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-a", + "--algorithm", + dest="algorithm", + choices=STRONG_HASHES, + action="store", + default=FAVORITE_HASH, + help="The hash algorithm to use: one of {}".format( + ", ".join(STRONG_HASHES) + ), + ) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + self.parser.print_usage(sys.stderr) + return ERROR + + algorithm = options.algorithm + for path in args: + write_output( + "%s:\n--hash=%s:%s", path, algorithm, _hash_of_file(path, algorithm) + ) + return SUCCESS + + +def _hash_of_file(path: str, algorithm: str) -> str: + """Return the hash digest of a file.""" + with open(path, "rb") as archive: + hash = hashlib.new(algorithm) + for chunk in read_chunks(archive): + hash.update(chunk) + return hash.hexdigest() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/help.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/help.py new file mode 100644 index 0000000..6206631 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/help.py @@ -0,0 +1,41 @@ +from optparse import Values +from typing import List + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError + + +class HelpCommand(Command): + """Show help for commands""" + + usage = """ + %prog """ + ignore_require_venv = True + + def run(self, options: Values, args: List[str]) -> int: + from pip._internal.commands import ( + commands_dict, + create_command, + get_similar_commands, + ) + + try: + # 'pip help' with no args is handled by pip.__init__.parseopt() + cmd_name = args[0] # the command we need help for + except IndexError: + return SUCCESS + + if cmd_name not in commands_dict: + guess = get_similar_commands(cmd_name) + + msg = [f'unknown command "{cmd_name}"'] + if guess: + msg.append(f'maybe you meant "{guess}"') + + raise CommandError(" - ".join(msg)) + + command = create_command(cmd_name) + command.parser.print_help() + + return SUCCESS diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/index.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/index.py new file mode 100644 index 0000000..9d8aae3 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/index.py @@ -0,0 +1,139 @@ +import logging +from optparse import Values +from typing import Any, Iterable, List, Optional, Union + +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.commands.search import print_dist_installation_info +from pip._internal.exceptions import CommandError, DistributionNotFound, PipError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.network.session import PipSession +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class IndexCommand(IndexGroupCommand): + """ + Inspect information available from package indexes. + """ + + usage = """ + %prog versions + """ + + def add_options(self) -> None: + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.pre()) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + handlers = { + "versions": self.get_available_package_versions, + } + + logger.warning( + "pip index is currently an experimental command. " + "It may be removed/changed in a future release " + "without prior warning." + ) + + # Determine action + if not args or args[0] not in handlers: + logger.error( + "Need an action (%s) to perform.", + ", ".join(sorted(handlers)), + ) + return ERROR + + action = args[0] + + # Error handling happens here, not in the action-handlers. + try: + handlers[action](options, args[1:]) + except PipError as e: + logger.error(e.args[0]) + return ERROR + + return SUCCESS + + def _build_package_finder( + self, + options: Values, + session: PipSession, + target_python: Optional[TargetPython] = None, + ignore_requires_python: Optional[bool] = None, + ) -> PackageFinder: + """ + Create a package finder appropriate to the index command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ignore_requires_python=ignore_requires_python, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + target_python=target_python, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) + + def get_available_package_versions(self, options: Values, args: List[Any]) -> None: + if len(args) != 1: + raise CommandError("You need to specify exactly one argument") + + target_python = cmdoptions.make_target_python(options) + query = args[0] + + with self._build_session(options) as session: + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + + versions: Iterable[Union[LegacyVersion, Version]] = ( + candidate.version for candidate in finder.find_all_candidates(query) + ) + + if not options.pre: + # Remove prereleases + versions = ( + version for version in versions if not version.is_prerelease + ) + versions = set(versions) + + if not versions: + raise DistributionNotFound( + "No matching distribution found for {}".format(query) + ) + + formatted_versions = [str(ver) for ver in sorted(versions, reverse=True)] + latest = formatted_versions[0] + + write_output("{} ({})".format(query, latest)) + write_output("Available versions: {}".format(", ".join(formatted_versions))) + print_dist_installation_info(query, latest) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/install.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/install.py new file mode 100644 index 0000000..34e4c2f --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/install.py @@ -0,0 +1,771 @@ +import errno +import operator +import os +import shutil +import site +from optparse import SUPPRESS_HELP, Values +from typing import Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.cmdoptions import make_target_python +from pip._internal.cli.req_command import ( + RequirementCommand, + warn_if_run_as_root, + with_cleanup, +) +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.exceptions import CommandError, InstallationError +from pip._internal.locations import get_scheme +from pip._internal.metadata import get_environment +from pip._internal.models.format_control import FormatControl +from pip._internal.operations.check import ConflictDetails, check_install_conflicts +from pip._internal.req import install_given_reqs +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.distutils_args import parse_distutils_args +from pip._internal.utils.filesystem import test_writable_dir +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ensure_dir, + get_pip_version, + protect_pip_from_modification_on_windows, + write_output, +) +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) +from pip._internal.wheel_builder import ( + BinaryAllowedPredicate, + build, + should_build_for_install_command, +) + +logger = getLogger(__name__) + + +def get_check_binary_allowed(format_control: FormatControl) -> BinaryAllowedPredicate: + def check_binary_allowed(req: InstallRequirement) -> bool: + canonical_name = canonicalize_name(req.name or "") + allowed_formats = format_control.get_allowed_formats(canonical_name) + return "binary" in allowed_formats + + return check_binary_allowed + + +class InstallCommand(RequirementCommand): + """ + Install packages from: + + - PyPI (and other indexes) using requirement specifiers. + - VCS project urls. + - Local project directories. + - Local or remote source archives. + + pip also supports installing from "requirements files", which provide + an easy way to specify a whole environment to be installed. + """ + + usage = """ + %prog [options] [package-index-options] ... + %prog [options] -r [package-index-options] ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.pre()) + + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option( + "-t", + "--target", + dest="target_dir", + metavar="dir", + default=None, + help=( + "Install packages into . " + "By default this will not replace existing files/folders in " + ". Use --upgrade to replace existing packages in " + "with new versions." + ), + ) + cmdoptions.add_target_python_options(self.cmd_opts) + + self.cmd_opts.add_option( + "--user", + dest="use_user_site", + action="store_true", + help=( + "Install to the Python user install directory for your " + "platform. Typically ~/.local/, or %APPDATA%\\Python on " + "Windows. (See the Python documentation for site.USER_BASE " + "for full details.)" + ), + ) + self.cmd_opts.add_option( + "--no-user", + dest="use_user_site", + action="store_false", + help=SUPPRESS_HELP, + ) + self.cmd_opts.add_option( + "--root", + dest="root_path", + metavar="dir", + default=None, + help="Install everything relative to this alternate root directory.", + ) + self.cmd_opts.add_option( + "--prefix", + dest="prefix_path", + metavar="dir", + default=None, + help=( + "Installation prefix where lib, bin and other top-level " + "folders are placed" + ), + ) + + self.cmd_opts.add_option(cmdoptions.src()) + + self.cmd_opts.add_option( + "-U", + "--upgrade", + dest="upgrade", + action="store_true", + help=( + "Upgrade all specified packages to the newest available " + "version. The handling of dependencies depends on the " + "upgrade-strategy used." + ), + ) + + self.cmd_opts.add_option( + "--upgrade-strategy", + dest="upgrade_strategy", + default="only-if-needed", + choices=["only-if-needed", "eager"], + help=( + "Determines how dependency upgrading should be handled " + "[default: %default]. " + '"eager" - dependencies are upgraded regardless of ' + "whether the currently installed version satisfies the " + "requirements of the upgraded package(s). " + '"only-if-needed" - are upgraded only when they do not ' + "satisfy the requirements of the upgraded package(s)." + ), + ) + + self.cmd_opts.add_option( + "--force-reinstall", + dest="force_reinstall", + action="store_true", + help="Reinstall all packages even if they are already up-to-date.", + ) + + self.cmd_opts.add_option( + "-I", + "--ignore-installed", + dest="ignore_installed", + action="store_true", + help=( + "Ignore the installed packages, overwriting them. " + "This can break your system if the existing package " + "is of a different version or was installed " + "with a different package manager!" + ), + ) + + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + + self.cmd_opts.add_option(cmdoptions.install_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--compile", + action="store_true", + dest="compile", + default=True, + help="Compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-compile", + action="store_false", + dest="compile", + help="Do not compile Python source files to bytecode", + ) + + self.cmd_opts.add_option( + "--no-warn-script-location", + action="store_false", + dest="warn_script_location", + default=True, + help="Do not warn when installing scripts outside PATH", + ) + self.cmd_opts.add_option( + "--no-warn-conflicts", + action="store_false", + dest="warn_about_conflicts", + default=True, + help="Do not warn about broken dependencies", + ) + + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.require_hashes()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + if options.use_user_site and options.target_dir is not None: + raise CommandError("Can not combine '--user' and '--target'") + + cmdoptions.check_install_build_global(options) + upgrade_strategy = "to-satisfy-only" + if options.upgrade: + upgrade_strategy = options.upgrade_strategy + + cmdoptions.check_dist_restriction(options, check_target=True) + + install_options = options.install_options or [] + + logger.verbose("Using %s", get_pip_version()) + options.use_user_site = decide_user_install( + options.use_user_site, + prefix_path=options.prefix_path, + target_dir=options.target_dir, + root_path=options.root_path, + isolated_mode=options.isolated_mode, + ) + + target_temp_dir: Optional[TempDirectory] = None + target_temp_dir_path: Optional[str] = None + if options.target_dir: + options.ignore_installed = True + options.target_dir = os.path.abspath(options.target_dir) + if ( + # fmt: off + os.path.exists(options.target_dir) and + not os.path.isdir(options.target_dir) + # fmt: on + ): + raise CommandError( + "Target path exists but is not a directory, will not continue." + ) + + # Create a target directory for using with the target option + target_temp_dir = TempDirectory(kind="target") + target_temp_dir_path = target_temp_dir.path + self.enter_context(target_temp_dir) + + global_options = options.global_options or [] + + session = self.get_default_session(options) + + target_python = make_target_python(options) + finder = self._build_package_finder( + options=options, + session=session, + target_python=target_python, + ignore_requires_python=options.ignore_requires_python, + ) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="install", + globally_managed=True, + ) + + try: + reqs = self.get_requirements(args, options, finder, session) + + # Only when installing is it permitted to use PEP 660. + # In other circumstances (pip wheel, pip download) we generate + # regular (i.e. non editable) metadata and wheels. + for req in reqs: + req.permit_editable_wheels = True + + reject_location_related_install_options(reqs, options.install_options) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + use_user_site=options.use_user_site, + verbosity=self.verbosity, + ) + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + use_user_site=options.use_user_site, + ignore_installed=options.ignore_installed, + ignore_requires_python=options.ignore_requires_python, + force_reinstall=options.force_reinstall, + upgrade_strategy=upgrade_strategy, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve( + reqs, check_supported_wheels=not options.target_dir + ) + + try: + pip_req = requirement_set.get_requirement("pip") + except KeyError: + modifying_pip = False + else: + # If we're not replacing an already installed pip, + # we're not modifying it. + modifying_pip = pip_req.satisfied_by is None + protect_pip_from_modification_on_windows(modifying_pip=modifying_pip) + + check_binary_allowed = get_check_binary_allowed(finder.format_control) + + reqs_to_build = [ + r + for r in requirement_set.requirements.values() + if should_build_for_install_command(r, check_binary_allowed) + ] + + _, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=True, + build_options=[], + global_options=[], + ) + + # If we're using PEP 517, we cannot do a legacy setup.py install + # so we fail here. + pep517_build_failure_names: List[str] = [ + r.name for r in build_failures if r.use_pep517 # type: ignore + ] + if pep517_build_failure_names: + raise InstallationError( + "Could not build wheels for {}, which is required to " + "install pyproject.toml-based projects".format( + ", ".join(pep517_build_failure_names) + ) + ) + + # For now, we just warn about failures building legacy + # requirements, as we'll fall through to a setup.py install for + # those. + for r in build_failures: + if not r.use_pep517: + r.legacy_install_reason = 8368 + + to_install = resolver.get_installation_order(requirement_set) + + # Check for conflicts in the package set we're installing. + conflicts: Optional[ConflictDetails] = None + should_warn_about_conflicts = ( + not options.ignore_dependencies and options.warn_about_conflicts + ) + if should_warn_about_conflicts: + conflicts = self._determine_conflicts(to_install) + + # Don't warn about script install locations if + # --target or --prefix has been specified + warn_script_location = options.warn_script_location + if options.target_dir or options.prefix_path: + warn_script_location = False + + installed = install_given_reqs( + to_install, + install_options, + global_options, + root=options.root_path, + home=target_temp_dir_path, + prefix=options.prefix_path, + warn_script_location=warn_script_location, + use_user_site=options.use_user_site, + pycompile=options.compile, + ) + + lib_locations = get_lib_location_guesses( + user=options.use_user_site, + home=target_temp_dir_path, + root=options.root_path, + prefix=options.prefix_path, + isolated=options.isolated_mode, + ) + env = get_environment(lib_locations) + + installed.sort(key=operator.attrgetter("name")) + items = [] + for result in installed: + item = result.name + try: + installed_dist = env.get_distribution(item) + if installed_dist is not None: + item = f"{item}-{installed_dist.version}" + except Exception: + pass + items.append(item) + + if conflicts is not None: + self._warn_about_conflicts( + conflicts, + resolver_variant=self.determine_resolver_variant(options), + ) + + installed_desc = " ".join(items) + if installed_desc: + write_output( + "Successfully installed %s", + installed_desc, + ) + except OSError as error: + show_traceback = self.verbosity >= 1 + + message = create_os_error_message( + error, + show_traceback, + options.use_user_site, + ) + logger.error(message, exc_info=show_traceback) # noqa + + return ERROR + + if options.target_dir: + assert target_temp_dir + self._handle_target_dir( + options.target_dir, target_temp_dir, options.upgrade + ) + + warn_if_run_as_root() + return SUCCESS + + def _handle_target_dir( + self, target_dir: str, target_temp_dir: TempDirectory, upgrade: bool + ) -> None: + ensure_dir(target_dir) + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + lib_dir_list = [] + + # Checking both purelib and platlib directories for installed + # packages to be moved to target directory + scheme = get_scheme("", home=target_temp_dir.path) + purelib_dir = scheme.purelib + platlib_dir = scheme.platlib + data_dir = scheme.data + + if os.path.exists(purelib_dir): + lib_dir_list.append(purelib_dir) + if os.path.exists(platlib_dir) and platlib_dir != purelib_dir: + lib_dir_list.append(platlib_dir) + if os.path.exists(data_dir): + lib_dir_list.append(data_dir) + + for lib_dir in lib_dir_list: + for item in os.listdir(lib_dir): + if lib_dir == data_dir: + ddir = os.path.join(data_dir, item) + if any(s.startswith(ddir) for s in lib_dir_list[:-1]): + continue + target_item_dir = os.path.join(target_dir, item) + if os.path.exists(target_item_dir): + if not upgrade: + logger.warning( + "Target directory %s already exists. Specify " + "--upgrade to force replacement.", + target_item_dir, + ) + continue + if os.path.islink(target_item_dir): + logger.warning( + "Target directory %s already exists and is " + "a link. pip will not automatically replace " + "links, please remove if replacement is " + "desired.", + target_item_dir, + ) + continue + if os.path.isdir(target_item_dir): + shutil.rmtree(target_item_dir) + else: + os.remove(target_item_dir) + + shutil.move(os.path.join(lib_dir, item), target_item_dir) + + def _determine_conflicts( + self, to_install: List[InstallRequirement] + ) -> Optional[ConflictDetails]: + try: + return check_install_conflicts(to_install) + except Exception: + logger.exception( + "Error while checking for conflicts. Please file an issue on " + "pip's issue tracker: https://github.com/pypa/pip/issues/new" + ) + return None + + def _warn_about_conflicts( + self, conflict_details: ConflictDetails, resolver_variant: str + ) -> None: + package_set, (missing, conflicting) = conflict_details + if not missing and not conflicting: + return + + parts: List[str] = [] + if resolver_variant == "legacy": + parts.append( + "pip's legacy dependency resolver does not consider dependency " + "conflicts when selecting packages. This behaviour is the " + "source of the following dependency conflicts." + ) + else: + assert resolver_variant == "2020-resolver" + parts.append( + "pip's dependency resolver does not currently take into account " + "all the packages that are installed. This behaviour is the " + "source of the following dependency conflicts." + ) + + # NOTE: There is some duplication here, with commands/check.py + for project_name in missing: + version = package_set[project_name][0] + for dependency in missing[project_name]: + message = ( + "{name} {version} requires {requirement}, " + "which is not installed." + ).format( + name=project_name, + version=version, + requirement=dependency[1], + ) + parts.append(message) + + for project_name in conflicting: + version = package_set[project_name][0] + for dep_name, dep_version, req in conflicting[project_name]: + message = ( + "{name} {version} requires {requirement}, but {you} have " + "{dep_name} {dep_version} which is incompatible." + ).format( + name=project_name, + version=version, + requirement=req, + dep_name=dep_name, + dep_version=dep_version, + you=("you" if resolver_variant == "2020-resolver" else "you'll"), + ) + parts.append(message) + + logger.critical("\n".join(parts)) + + +def get_lib_location_guesses( + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> List[str]: + scheme = get_scheme( + "", + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + return [scheme.purelib, scheme.platlib] + + +def site_packages_writable(root: Optional[str], isolated: bool) -> bool: + return all( + test_writable_dir(d) + for d in set(get_lib_location_guesses(root=root, isolated=isolated)) + ) + + +def decide_user_install( + use_user_site: Optional[bool], + prefix_path: Optional[str] = None, + target_dir: Optional[str] = None, + root_path: Optional[str] = None, + isolated_mode: bool = False, +) -> bool: + """Determine whether to do a user install based on the input options. + + If use_user_site is False, no additional checks are done. + If use_user_site is True, it is checked for compatibility with other + options. + If use_user_site is None, the default behaviour depends on the environment, + which is provided by the other arguments. + """ + # In some cases (config from tox), use_user_site can be set to an integer + # rather than a bool, which 'use_user_site is False' wouldn't catch. + if (use_user_site is not None) and (not use_user_site): + logger.debug("Non-user install by explicit request") + return False + + if use_user_site: + if prefix_path: + raise CommandError( + "Can not combine '--user' and '--prefix' as they imply " + "different installation locations" + ) + if virtualenv_no_global(): + raise InstallationError( + "Can not perform a '--user' install. User site-packages " + "are not visible in this virtualenv." + ) + logger.debug("User install by explicit request") + return True + + # If we are here, user installs have not been explicitly requested/avoided + assert use_user_site is None + + # user install incompatible with --prefix/--target + if prefix_path or target_dir: + logger.debug("Non-user install due to --prefix or --target option") + return False + + # If user installs are not enabled, choose a non-user install + if not site.ENABLE_USER_SITE: + logger.debug("Non-user install because user site-packages disabled") + return False + + # If we have permission for a non-user install, do that, + # otherwise do a user install. + if site_packages_writable(root=root_path, isolated=isolated_mode): + logger.debug("Non-user install because site-packages writeable") + return False + + logger.info( + "Defaulting to user installation because normal site-packages " + "is not writeable" + ) + return True + + +def reject_location_related_install_options( + requirements: List[InstallRequirement], options: Optional[List[str]] +) -> None: + """If any location-changing --install-option arguments were passed for + requirements or on the command-line, then show a deprecation warning. + """ + + def format_options(option_names: Iterable[str]) -> List[str]: + return ["--{}".format(name.replace("_", "-")) for name in option_names] + + offenders = [] + + for requirement in requirements: + install_options = requirement.install_options + location_options = parse_distutils_args(install_options) + if location_options: + offenders.append( + "{!r} from {}".format( + format_options(location_options.keys()), requirement + ) + ) + + if options: + location_options = parse_distutils_args(options) + if location_options: + offenders.append( + "{!r} from command line".format(format_options(location_options.keys())) + ) + + if not offenders: + return + + raise CommandError( + "Location-changing options found in --install-option: {}." + " This is unsupported, use pip-level options like --user," + " --prefix, --root, and --target instead.".format("; ".join(offenders)) + ) + + +def create_os_error_message( + error: OSError, show_traceback: bool, using_user_site: bool +) -> str: + """Format an error message for an OSError + + It may occur anytime during the execution of the install command. + """ + parts = [] + + # Mention the error if we are not going to show a traceback + parts.append("Could not install packages due to an OSError") + if not show_traceback: + parts.append(": ") + parts.append(str(error)) + else: + parts.append(".") + + # Spilt the error indication from a helper message (if any) + parts[-1] += "\n" + + # Suggest useful actions to the user: + # (1) using user site-packages or (2) verifying the permissions + if error.errno == errno.EACCES: + user_option_part = "Consider using the `--user` option" + permissions_part = "Check the permissions" + + if not running_under_virtualenv() and not using_user_site: + parts.extend( + [ + user_option_part, + " or ", + permissions_part.lower(), + ] + ) + else: + parts.append(permissions_part) + parts.append(".\n") + + # Suggest the user to enable Long Paths if path length is + # more than 260 + if ( + WINDOWS + and error.errno == errno.ENOENT + and error.filename + and len(error.filename) > 260 + ): + parts.append( + "HINT: This error might have occurred since " + "this system does not have Windows Long Path " + "support enabled. You can find information on " + "how to enable this at " + "https://pip.pypa.io/warnings/enable-long-paths\n" + ) + + return "".join(parts).strip() + "\n" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/list.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/list.py new file mode 100644 index 0000000..3a545e9 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/list.py @@ -0,0 +1,363 @@ +import json +import logging +from optparse import Values +from typing import TYPE_CHECKING, Iterator, List, Optional, Sequence, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import IndexGroupCommand +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.compat import stdlib_pkgs +from pip._internal.utils.misc import tabulate, write_output + +if TYPE_CHECKING: + from pip._internal.metadata.base import DistributionVersion + + class _DistWithLatestInfo(BaseDistribution): + """Give the distribution object a couple of extra fields. + + These will be populated during ``get_outdated()``. This is dirty but + makes the rest of the code much cleaner. + """ + + latest_version: DistributionVersion + latest_filetype: str + + _ProcessedDists = Sequence[_DistWithLatestInfo] + + +from pip._vendor.packaging.version import parse + +logger = logging.getLogger(__name__) + + +class ListCommand(IndexGroupCommand): + """ + List installed packages, including editables. + + Packages are listed in a case-insensitive sorted order. + """ + + ignore_require_venv = True + usage = """ + %prog [options]""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-o", + "--outdated", + action="store_true", + default=False, + help="List outdated packages", + ) + self.cmd_opts.add_option( + "-u", + "--uptodate", + action="store_true", + default=False, + help="List uptodate packages", + ) + self.cmd_opts.add_option( + "-e", + "--editable", + action="store_true", + default=False, + help="List editable projects.", + ) + self.cmd_opts.add_option( + "-l", + "--local", + action="store_true", + default=False, + help=( + "If in a virtualenv that has global access, do not list " + "globally-installed packages." + ), + ) + self.cmd_opts.add_option( + "--user", + dest="user", + action="store_true", + default=False, + help="Only output packages installed in user-site.", + ) + self.cmd_opts.add_option(cmdoptions.list_path()) + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option( + "--format", + action="store", + dest="list_format", + default="columns", + choices=("columns", "freeze", "json"), + help="Select the output format among: columns (default), freeze, or json", + ) + + self.cmd_opts.add_option( + "--not-required", + action="store_true", + dest="not_required", + help="List packages that are not dependencies of installed packages.", + ) + + self.cmd_opts.add_option( + "--exclude-editable", + action="store_false", + dest="include_editable", + help="Exclude editable package from output.", + ) + self.cmd_opts.add_option( + "--include-editable", + action="store_true", + dest="include_editable", + help="Include editable package from output.", + default=True, + ) + self.cmd_opts.add_option(cmdoptions.list_exclude()) + index_opts = cmdoptions.make_option_group(cmdoptions.index_group, self.parser) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + def _build_package_finder( + self, options: Values, session: PipSession + ) -> PackageFinder: + """ + Create a package finder appropriate to this list command. + """ + link_collector = LinkCollector.create(session, options=options) + + # Pass allow_yanked=False to ignore yanked versions. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=options.pre, + ) + + return PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + use_deprecated_html5lib="html5lib" in options.deprecated_features_enabled, + ) + + def run(self, options: Values, args: List[str]) -> int: + if options.outdated and options.uptodate: + raise CommandError("Options --outdated and --uptodate cannot be combined.") + + cmdoptions.check_list_path_option(options) + + skip = set(stdlib_pkgs) + if options.excludes: + skip.update(canonicalize_name(n) for n in options.excludes) + + packages: "_ProcessedDists" = [ + cast("_DistWithLatestInfo", d) + for d in get_environment(options.path).iter_installed_distributions( + local_only=options.local, + user_only=options.user, + editables_only=options.editable, + include_editables=options.include_editable, + skip=skip, + ) + ] + + # get_not_required must be called firstly in order to find and + # filter out all dependencies correctly. Otherwise a package + # can't be identified as requirement because some parent packages + # could be filtered out before. + if options.not_required: + packages = self.get_not_required(packages, options) + + if options.outdated: + packages = self.get_outdated(packages, options) + elif options.uptodate: + packages = self.get_uptodate(packages, options) + + self.output_package_listing(packages, options) + return SUCCESS + + def get_outdated( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if parse(str(dist.latest_version)) > parse(str(dist.version)) + ] + + def get_uptodate( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + return [ + dist + for dist in self.iter_packages_latest_infos(packages, options) + if parse(str(dist.latest_version)) == parse(str(dist.version)) + ] + + def get_not_required( + self, packages: "_ProcessedDists", options: Values + ) -> "_ProcessedDists": + dep_keys = { + canonicalize_name(dep.name) + for dist in packages + for dep in (dist.iter_dependencies() or ()) + } + + # Create a set to remove duplicate packages, and cast it to a list + # to keep the return type consistent with get_outdated and + # get_uptodate + return list({pkg for pkg in packages if pkg.canonical_name not in dep_keys}) + + def iter_packages_latest_infos( + self, packages: "_ProcessedDists", options: Values + ) -> Iterator["_DistWithLatestInfo"]: + with self._build_session(options) as session: + finder = self._build_package_finder(options, session) + + def latest_info( + dist: "_DistWithLatestInfo", + ) -> Optional["_DistWithLatestInfo"]: + all_candidates = finder.find_all_candidates(dist.canonical_name) + if not options.pre: + # Remove prereleases + all_candidates = [ + candidate + for candidate in all_candidates + if not candidate.version.is_prerelease + ] + + evaluator = finder.make_candidate_evaluator( + project_name=dist.canonical_name, + ) + best_candidate = evaluator.sort_best_candidate(all_candidates) + if best_candidate is None: + return None + + remote_version = best_candidate.version + if best_candidate.link.is_wheel: + typ = "wheel" + else: + typ = "sdist" + dist.latest_version = remote_version + dist.latest_filetype = typ + return dist + + for dist in map(latest_info, packages): + if dist is not None: + yield dist + + def output_package_listing( + self, packages: "_ProcessedDists", options: Values + ) -> None: + packages = sorted( + packages, + key=lambda dist: dist.canonical_name, + ) + if options.list_format == "columns" and packages: + data, header = format_for_columns(packages, options) + self.output_package_listing_columns(data, header) + elif options.list_format == "freeze": + for dist in packages: + if options.verbose >= 1: + write_output( + "%s==%s (%s)", dist.raw_name, dist.version, dist.location + ) + else: + write_output("%s==%s", dist.raw_name, dist.version) + elif options.list_format == "json": + write_output(format_for_json(packages, options)) + + def output_package_listing_columns( + self, data: List[List[str]], header: List[str] + ) -> None: + # insert the header first: we need to know the size of column names + if len(data) > 0: + data.insert(0, header) + + pkg_strings, sizes = tabulate(data) + + # Create and add a separator. + if len(data) > 0: + pkg_strings.insert(1, " ".join(map(lambda x: "-" * x, sizes))) + + for val in pkg_strings: + write_output(val) + + +def format_for_columns( + pkgs: "_ProcessedDists", options: Values +) -> Tuple[List[List[str]], List[str]]: + """ + Convert the package data into something usable + by output_package_listing_columns. + """ + header = ["Package", "Version"] + + running_outdated = options.outdated + if running_outdated: + header.extend(["Latest", "Type"]) + + has_editables = any(x.editable for x in pkgs) + if has_editables: + header.append("Editable project location") + + if options.verbose >= 1: + header.append("Location") + if options.verbose >= 1: + header.append("Installer") + + data = [] + for proj in pkgs: + # if we're working on the 'outdated' list, separate out the + # latest_version and type + row = [proj.raw_name, str(proj.version)] + + if running_outdated: + row.append(str(proj.latest_version)) + row.append(proj.latest_filetype) + + if has_editables: + row.append(proj.editable_project_location or "") + + if options.verbose >= 1: + row.append(proj.location or "") + if options.verbose >= 1: + row.append(proj.installer) + + data.append(row) + + return data, header + + +def format_for_json(packages: "_ProcessedDists", options: Values) -> str: + data = [] + for dist in packages: + info = { + "name": dist.raw_name, + "version": str(dist.version), + } + if options.verbose >= 1: + info["location"] = dist.location or "" + info["installer"] = dist.installer + if options.outdated: + info["latest_version"] = str(dist.latest_version) + info["latest_filetype"] = dist.latest_filetype + editable_project_location = dist.editable_project_location + if editable_project_location: + info["editable_project_location"] = editable_project_location + data.append(info) + return json.dumps(data) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/search.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/search.py new file mode 100644 index 0000000..03ed925 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/search.py @@ -0,0 +1,174 @@ +import logging +import shutil +import sys +import textwrap +import xmlrpc.client +from collections import OrderedDict +from optparse import Values +from typing import TYPE_CHECKING, Dict, List, Optional + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin +from pip._internal.cli.status_codes import NO_MATCHES_FOUND, SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.metadata import get_default_environment +from pip._internal.models.index import PyPI +from pip._internal.network.xmlrpc import PipXmlrpcTransport +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import write_output + +if TYPE_CHECKING: + from typing import TypedDict + + class TransformedHit(TypedDict): + name: str + summary: str + versions: List[str] + + +logger = logging.getLogger(__name__) + + +class SearchCommand(Command, SessionCommandMixin): + """Search for PyPI packages whose name or summary contains .""" + + usage = """ + %prog [options] """ + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-i", + "--index", + dest="index", + metavar="URL", + default=PyPI.pypi_url, + help="Base URL of Python Package Index (default %default)", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + raise CommandError("Missing required argument (search query).") + query = args + pypi_hits = self.search(query, options) + hits = transform_hits(pypi_hits) + + terminal_width = None + if sys.stdout.isatty(): + terminal_width = shutil.get_terminal_size()[0] + + print_results(hits, terminal_width=terminal_width) + if pypi_hits: + return SUCCESS + return NO_MATCHES_FOUND + + def search(self, query: List[str], options: Values) -> List[Dict[str, str]]: + index_url = options.index + + session = self.get_default_session(options) + + transport = PipXmlrpcTransport(index_url, session) + pypi = xmlrpc.client.ServerProxy(index_url, transport) + try: + hits = pypi.search({"name": query, "summary": query}, "or") + except xmlrpc.client.Fault as fault: + message = "XMLRPC request failed [code: {code}]\n{string}".format( + code=fault.faultCode, + string=fault.faultString, + ) + raise CommandError(message) + assert isinstance(hits, list) + return hits + + +def transform_hits(hits: List[Dict[str, str]]) -> List["TransformedHit"]: + """ + The list from pypi is really a list of versions. We want a list of + packages with the list of versions stored inline. This converts the + list from pypi into one we can use. + """ + packages: Dict[str, "TransformedHit"] = OrderedDict() + for hit in hits: + name = hit["name"] + summary = hit["summary"] + version = hit["version"] + + if name not in packages.keys(): + packages[name] = { + "name": name, + "summary": summary, + "versions": [version], + } + else: + packages[name]["versions"].append(version) + + # if this is the highest version, replace summary and score + if version == highest_version(packages[name]["versions"]): + packages[name]["summary"] = summary + + return list(packages.values()) + + +def print_dist_installation_info(name: str, latest: str) -> None: + env = get_default_environment() + dist = env.get_distribution(name) + if dist is not None: + with indent_log(): + if dist.version == latest: + write_output("INSTALLED: %s (latest)", dist.version) + else: + write_output("INSTALLED: %s", dist.version) + if parse_version(latest).pre: + write_output( + "LATEST: %s (pre-release; install" + " with `pip install --pre`)", + latest, + ) + else: + write_output("LATEST: %s", latest) + + +def print_results( + hits: List["TransformedHit"], + name_column_width: Optional[int] = None, + terminal_width: Optional[int] = None, +) -> None: + if not hits: + return + if name_column_width is None: + name_column_width = ( + max( + [ + len(hit["name"]) + len(highest_version(hit.get("versions", ["-"]))) + for hit in hits + ] + ) + + 4 + ) + + for hit in hits: + name = hit["name"] + summary = hit["summary"] or "" + latest = highest_version(hit.get("versions", ["-"])) + if terminal_width is not None: + target_width = terminal_width - name_column_width - 5 + if target_width > 10: + # wrap and indent summary to fit terminal + summary_lines = textwrap.wrap(summary, target_width) + summary = ("\n" + " " * (name_column_width + 3)).join(summary_lines) + + name_latest = f"{name} ({latest})" + line = f"{name_latest:{name_column_width}} - {summary}" + try: + write_output(line) + print_dist_installation_info(name, latest) + except UnicodeEncodeError: + pass + + +def highest_version(versions: List[str]) -> str: + return max(versions, key=parse_version) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/show.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/show.py new file mode 100644 index 0000000..d5540d6 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/show.py @@ -0,0 +1,178 @@ +import logging +from optparse import Values +from typing import Iterator, List, NamedTuple, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.status_codes import ERROR, SUCCESS +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.utils.misc import write_output + +logger = logging.getLogger(__name__) + + +class ShowCommand(Command): + """ + Show information about one or more installed packages. + + The output is in RFC-compliant mail header format. + """ + + usage = """ + %prog [options] ...""" + ignore_require_venv = True + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-f", + "--files", + dest="files", + action="store_true", + default=False, + help="Show the full list of installed files for each package.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + if not args: + logger.warning("ERROR: Please provide a package name or names.") + return ERROR + query = args + + results = search_packages_info(query) + if not print_results( + results, list_files=options.files, verbose=options.verbose + ): + return ERROR + return SUCCESS + + +class _PackageInfo(NamedTuple): + name: str + version: str + location: str + requires: List[str] + required_by: List[str] + installer: str + metadata_version: str + classifiers: List[str] + summary: str + homepage: str + author: str + author_email: str + license: str + entry_points: List[str] + files: Optional[List[str]] + + +def search_packages_info(query: List[str]) -> Iterator[_PackageInfo]: + """ + Gather details from installed distributions. Print distribution name, + version, location, and installed files. Installed files requires a + pip generated 'installed-files.txt' in the distributions '.egg-info' + directory. + """ + env = get_default_environment() + + installed = {dist.canonical_name: dist for dist in env.iter_distributions()} + query_names = [canonicalize_name(name) for name in query] + missing = sorted( + [name for name, pkg in zip(query, query_names) if pkg not in installed] + ) + if missing: + logger.warning("Package(s) not found: %s", ", ".join(missing)) + + def _get_requiring_packages(current_dist: BaseDistribution) -> Iterator[str]: + return ( + dist.metadata["Name"] or "UNKNOWN" + for dist in installed.values() + if current_dist.canonical_name + in {canonicalize_name(d.name) for d in dist.iter_dependencies()} + ) + + for query_name in query_names: + try: + dist = installed[query_name] + except KeyError: + continue + + requires = sorted((req.name for req in dist.iter_dependencies()), key=str.lower) + required_by = sorted(_get_requiring_packages(dist), key=str.lower) + + try: + entry_points_text = dist.read_text("entry_points.txt") + entry_points = entry_points_text.splitlines(keepends=False) + except FileNotFoundError: + entry_points = [] + + files_iter = dist.iter_declared_entries() + if files_iter is None: + files: Optional[List[str]] = None + else: + files = sorted(files_iter) + + metadata = dist.metadata + + yield _PackageInfo( + name=dist.raw_name, + version=str(dist.version), + location=dist.location or "", + requires=requires, + required_by=required_by, + installer=dist.installer, + metadata_version=dist.metadata_version or "", + classifiers=metadata.get_all("Classifier", []), + summary=metadata.get("Summary", ""), + homepage=metadata.get("Home-page", ""), + author=metadata.get("Author", ""), + author_email=metadata.get("Author-email", ""), + license=metadata.get("License", ""), + entry_points=entry_points, + files=files, + ) + + +def print_results( + distributions: Iterator[_PackageInfo], + list_files: bool, + verbose: bool, +) -> bool: + """ + Print the information from installed distributions found. + """ + results_printed = False + for i, dist in enumerate(distributions): + results_printed = True + if i > 0: + write_output("---") + + write_output("Name: %s", dist.name) + write_output("Version: %s", dist.version) + write_output("Summary: %s", dist.summary) + write_output("Home-page: %s", dist.homepage) + write_output("Author: %s", dist.author) + write_output("Author-email: %s", dist.author_email) + write_output("License: %s", dist.license) + write_output("Location: %s", dist.location) + write_output("Requires: %s", ", ".join(dist.requires)) + write_output("Required-by: %s", ", ".join(dist.required_by)) + + if verbose: + write_output("Metadata-Version: %s", dist.metadata_version) + write_output("Installer: %s", dist.installer) + write_output("Classifiers:") + for classifier in dist.classifiers: + write_output(" %s", classifier) + write_output("Entry-points:") + for entry in dist.entry_points: + write_output(" %s", entry.strip()) + if list_files: + write_output("Files:") + if dist.files is None: + write_output("Cannot locate RECORD or installed-files.txt") + else: + for line in dist.files: + write_output(" %s", line.strip()) + return results_printed diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py new file mode 100644 index 0000000..bb9e8e6 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py @@ -0,0 +1,105 @@ +import logging +from optparse import Values +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.cli.base_command import Command +from pip._internal.cli.req_command import SessionCommandMixin, warn_if_run_as_root +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import InstallationError +from pip._internal.req import parse_requirements +from pip._internal.req.constructors import ( + install_req_from_line, + install_req_from_parsed_requirement, +) +from pip._internal.utils.misc import protect_pip_from_modification_on_windows + +logger = logging.getLogger(__name__) + + +class UninstallCommand(Command, SessionCommandMixin): + """ + Uninstall packages. + + pip is able to uninstall most installed packages. Known exceptions are: + + - Pure distutils packages installed with ``python setup.py install``, which + leave behind no metadata to determine what files were installed. + - Script wrappers installed by ``python setup.py develop``. + """ + + usage = """ + %prog [options] ... + %prog [options] -r ...""" + + def add_options(self) -> None: + self.cmd_opts.add_option( + "-r", + "--requirement", + dest="requirements", + action="append", + default=[], + metavar="file", + help=( + "Uninstall all the packages listed in the given requirements " + "file. This option can be used multiple times." + ), + ) + self.cmd_opts.add_option( + "-y", + "--yes", + dest="yes", + action="store_true", + help="Don't ask for confirmation of uninstall deletions.", + ) + + self.parser.insert_option_group(0, self.cmd_opts) + + def run(self, options: Values, args: List[str]) -> int: + session = self.get_default_session(options) + + reqs_to_uninstall = {} + for name in args: + req = install_req_from_line( + name, + isolated=options.isolated_mode, + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + else: + logger.warning( + "Invalid requirement: %r ignored -" + " the uninstall command expects named" + " requirements.", + name, + ) + for filename in options.requirements: + for parsed_req in parse_requirements( + filename, options=options, session=session + ): + req = install_req_from_parsed_requirement( + parsed_req, isolated=options.isolated_mode + ) + if req.name: + reqs_to_uninstall[canonicalize_name(req.name)] = req + if not reqs_to_uninstall: + raise InstallationError( + f"You must give at least one requirement to {self.name} (see " + f'"pip help {self.name}")' + ) + + protect_pip_from_modification_on_windows( + modifying_pip="pip" in reqs_to_uninstall + ) + + for req in reqs_to_uninstall.values(): + uninstall_pathset = req.uninstall( + auto_confirm=options.yes, + verbose=self.verbosity > 0, + ) + if uninstall_pathset: + uninstall_pathset.commit() + + warn_if_run_as_root() + return SUCCESS diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/wheel.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/wheel.py new file mode 100644 index 0000000..d5b20dc --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/commands/wheel.py @@ -0,0 +1,178 @@ +import logging +import os +import shutil +from optparse import Values +from typing import List + +from pip._internal.cache import WheelCache +from pip._internal.cli import cmdoptions +from pip._internal.cli.req_command import RequirementCommand, with_cleanup +from pip._internal.cli.status_codes import SUCCESS +from pip._internal.exceptions import CommandError +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import get_requirement_tracker +from pip._internal.utils.misc import ensure_dir, normalize_path +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.wheel_builder import build, should_build_for_wheel_command + +logger = logging.getLogger(__name__) + + +class WheelCommand(RequirementCommand): + """ + Build Wheel archives for your requirements and dependencies. + + Wheel is a built-package format, and offers the advantage of not + recompiling your software during every install. For more details, see the + wheel docs: https://wheel.readthedocs.io/en/latest/ + + Requirements: setuptools>=0.8, and wheel. + + 'pip wheel' uses the bdist_wheel setuptools extension from the wheel + package to build individual wheels. + + """ + + usage = """ + %prog [options] ... + %prog [options] -r ... + %prog [options] [-e] ... + %prog [options] [-e] ... + %prog [options] ...""" + + def add_options(self) -> None: + + self.cmd_opts.add_option( + "-w", + "--wheel-dir", + dest="wheel_dir", + metavar="dir", + default=os.curdir, + help=( + "Build wheels into , where the default is the " + "current working directory." + ), + ) + self.cmd_opts.add_option(cmdoptions.no_binary()) + self.cmd_opts.add_option(cmdoptions.only_binary()) + self.cmd_opts.add_option(cmdoptions.prefer_binary()) + self.cmd_opts.add_option(cmdoptions.no_build_isolation()) + self.cmd_opts.add_option(cmdoptions.use_pep517()) + self.cmd_opts.add_option(cmdoptions.no_use_pep517()) + self.cmd_opts.add_option(cmdoptions.constraints()) + self.cmd_opts.add_option(cmdoptions.editable()) + self.cmd_opts.add_option(cmdoptions.requirements()) + self.cmd_opts.add_option(cmdoptions.src()) + self.cmd_opts.add_option(cmdoptions.ignore_requires_python()) + self.cmd_opts.add_option(cmdoptions.no_deps()) + self.cmd_opts.add_option(cmdoptions.progress_bar()) + + self.cmd_opts.add_option( + "--no-verify", + dest="no_verify", + action="store_true", + default=False, + help="Don't verify if built wheel is valid.", + ) + + self.cmd_opts.add_option(cmdoptions.build_options()) + self.cmd_opts.add_option(cmdoptions.global_options()) + + self.cmd_opts.add_option( + "--pre", + action="store_true", + default=False, + help=( + "Include pre-release and development versions. By default, " + "pip only finds stable versions." + ), + ) + + self.cmd_opts.add_option(cmdoptions.require_hashes()) + + index_opts = cmdoptions.make_option_group( + cmdoptions.index_group, + self.parser, + ) + + self.parser.insert_option_group(0, index_opts) + self.parser.insert_option_group(0, self.cmd_opts) + + @with_cleanup + def run(self, options: Values, args: List[str]) -> int: + cmdoptions.check_install_build_global(options) + + session = self.get_default_session(options) + + finder = self._build_package_finder(options, session) + wheel_cache = WheelCache(options.cache_dir, options.format_control) + + options.wheel_dir = normalize_path(options.wheel_dir) + ensure_dir(options.wheel_dir) + + req_tracker = self.enter_context(get_requirement_tracker()) + + directory = TempDirectory( + delete=not options.no_clean, + kind="wheel", + globally_managed=True, + ) + + reqs = self.get_requirements(args, options, finder, session) + + preparer = self.make_requirement_preparer( + temp_build_dir=directory, + options=options, + req_tracker=req_tracker, + session=session, + finder=finder, + download_dir=options.wheel_dir, + use_user_site=False, + verbosity=self.verbosity, + ) + + resolver = self.make_resolver( + preparer=preparer, + finder=finder, + options=options, + wheel_cache=wheel_cache, + ignore_requires_python=options.ignore_requires_python, + use_pep517=options.use_pep517, + ) + + self.trace_basic_info(finder) + + requirement_set = resolver.resolve(reqs, check_supported_wheels=True) + + reqs_to_build: List[InstallRequirement] = [] + for req in requirement_set.requirements.values(): + if req.is_wheel: + preparer.save_linked_requirement(req) + elif should_build_for_wheel_command(req): + reqs_to_build.append(req) + + # build wheels + build_successes, build_failures = build( + reqs_to_build, + wheel_cache=wheel_cache, + verify=(not options.no_verify), + build_options=options.build_options or [], + global_options=options.global_options or [], + ) + for req in build_successes: + assert req.link and req.link.is_wheel + assert req.local_file_path + # copy from cache to target directory + try: + shutil.copy(req.local_file_path, options.wheel_dir) + except OSError as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + build_failures.append(req) + if len(build_failures) != 0: + raise CommandError("Failed to build one or more wheels") + + return SUCCESS diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/configuration.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/configuration.py new file mode 100644 index 0000000..a8092d1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/configuration.py @@ -0,0 +1,366 @@ +"""Configuration management setup + +Some terminology: +- name + As written in config files. +- value + Value associated with a name +- key + Name combined with it's section (section.name) +- variant + A single word describing where the configuration key-value pair came from +""" + +import configparser +import locale +import os +import sys +from typing import Any, Dict, Iterable, List, NewType, Optional, Tuple + +from pip._internal.exceptions import ( + ConfigurationError, + ConfigurationFileCouldNotBeLoaded, +) +from pip._internal.utils import appdirs +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ensure_dir, enum + +RawConfigParser = configparser.RawConfigParser # Shorthand +Kind = NewType("Kind", str) + +CONFIG_BASENAME = "pip.ini" if WINDOWS else "pip.conf" +ENV_NAMES_IGNORED = "version", "help" + +# The kinds of configurations there are. +kinds = enum( + USER="user", # User Specific + GLOBAL="global", # System Wide + SITE="site", # [Virtual] Environment Specific + ENV="env", # from PIP_CONFIG_FILE + ENV_VAR="env-var", # from Environment Variables +) +OVERRIDE_ORDER = kinds.GLOBAL, kinds.USER, kinds.SITE, kinds.ENV, kinds.ENV_VAR +VALID_LOAD_ONLY = kinds.USER, kinds.GLOBAL, kinds.SITE + +logger = getLogger(__name__) + + +# NOTE: Maybe use the optionx attribute to normalize keynames. +def _normalize_name(name: str) -> str: + """Make a name consistent regardless of source (environment or file)""" + name = name.lower().replace("_", "-") + if name.startswith("--"): + name = name[2:] # only prefer long opts + return name + + +def _disassemble_key(name: str) -> List[str]: + if "." not in name: + error_message = ( + "Key does not contain dot separated section and key. " + "Perhaps you wanted to use 'global.{}' instead?" + ).format(name) + raise ConfigurationError(error_message) + return name.split(".", 1) + + +def get_configuration_files() -> Dict[Kind, List[str]]: + global_config_files = [ + os.path.join(path, CONFIG_BASENAME) for path in appdirs.site_config_dirs("pip") + ] + + site_config_file = os.path.join(sys.prefix, CONFIG_BASENAME) + legacy_config_file = os.path.join( + os.path.expanduser("~"), + "pip" if WINDOWS else ".pip", + CONFIG_BASENAME, + ) + new_config_file = os.path.join(appdirs.user_config_dir("pip"), CONFIG_BASENAME) + return { + kinds.GLOBAL: global_config_files, + kinds.SITE: [site_config_file], + kinds.USER: [legacy_config_file, new_config_file], + } + + +class Configuration: + """Handles management of configuration. + + Provides an interface to accessing and managing configuration files. + + This class converts provides an API that takes "section.key-name" style + keys and stores the value associated with it as "key-name" under the + section "section". + + This allows for a clean interface wherein the both the section and the + key-name are preserved in an easy to manage form in the configuration files + and the data stored is also nice. + """ + + def __init__(self, isolated: bool, load_only: Optional[Kind] = None) -> None: + super().__init__() + + if load_only is not None and load_only not in VALID_LOAD_ONLY: + raise ConfigurationError( + "Got invalid value for load_only - should be one of {}".format( + ", ".join(map(repr, VALID_LOAD_ONLY)) + ) + ) + self.isolated = isolated + self.load_only = load_only + + # Because we keep track of where we got the data from + self._parsers: Dict[Kind, List[Tuple[str, RawConfigParser]]] = { + variant: [] for variant in OVERRIDE_ORDER + } + self._config: Dict[Kind, Dict[str, Any]] = { + variant: {} for variant in OVERRIDE_ORDER + } + self._modified_parsers: List[Tuple[str, RawConfigParser]] = [] + + def load(self) -> None: + """Loads configuration from configuration files and environment""" + self._load_config_files() + if not self.isolated: + self._load_environment_vars() + + def get_file_to_edit(self) -> Optional[str]: + """Returns the file with highest priority in configuration""" + assert self.load_only is not None, "Need to be specified a file to be editing" + + try: + return self._get_parser_to_modify()[0] + except IndexError: + return None + + def items(self) -> Iterable[Tuple[str, Any]]: + """Returns key-value pairs like dict.items() representing the loaded + configuration + """ + return self._dictionary.items() + + def get_value(self, key: str) -> Any: + """Get a value from the configuration.""" + try: + return self._dictionary[key] + except KeyError: + raise ConfigurationError(f"No such key - {key}") + + def set_value(self, key: str, value: Any) -> None: + """Modify a value in the configuration.""" + self._ensure_have_load_only() + + assert self.load_only + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + + # Modify the parser and the configuration + if not parser.has_section(section): + parser.add_section(section) + parser.set(section, name, value) + + self._config[self.load_only][key] = value + self._mark_as_modified(fname, parser) + + def unset_value(self, key: str) -> None: + """Unset a value in the configuration.""" + self._ensure_have_load_only() + + assert self.load_only + if key not in self._config[self.load_only]: + raise ConfigurationError(f"No such key - {key}") + + fname, parser = self._get_parser_to_modify() + + if parser is not None: + section, name = _disassemble_key(key) + if not ( + parser.has_section(section) and parser.remove_option(section, name) + ): + # The option was not removed. + raise ConfigurationError( + "Fatal Internal error [id=1]. Please report as a bug." + ) + + # The section may be empty after the option was removed. + if not parser.items(section): + parser.remove_section(section) + self._mark_as_modified(fname, parser) + + del self._config[self.load_only][key] + + def save(self) -> None: + """Save the current in-memory state.""" + self._ensure_have_load_only() + + for fname, parser in self._modified_parsers: + logger.info("Writing to %s", fname) + + # Ensure directory exists. + ensure_dir(os.path.dirname(fname)) + + with open(fname, "w") as f: + parser.write(f) + + # + # Private routines + # + + def _ensure_have_load_only(self) -> None: + if self.load_only is None: + raise ConfigurationError("Needed a specific file to be modifying.") + logger.debug("Will be working with %s variant only", self.load_only) + + @property + def _dictionary(self) -> Dict[str, Any]: + """A dictionary representing the loaded configuration.""" + # NOTE: Dictionaries are not populated if not loaded. So, conditionals + # are not needed here. + retval = {} + + for variant in OVERRIDE_ORDER: + retval.update(self._config[variant]) + + return retval + + def _load_config_files(self) -> None: + """Loads configuration from configuration files""" + config_files = dict(self.iter_config_files()) + if config_files[kinds.ENV][0:1] == [os.devnull]: + logger.debug( + "Skipping loading configuration files due to " + "environment's PIP_CONFIG_FILE being os.devnull" + ) + return + + for variant, files in config_files.items(): + for fname in files: + # If there's specific variant set in `load_only`, load only + # that variant, not the others. + if self.load_only is not None and variant != self.load_only: + logger.debug("Skipping file '%s' (variant: %s)", fname, variant) + continue + + parser = self._load_file(variant, fname) + + # Keeping track of the parsers used + self._parsers[variant].append((fname, parser)) + + def _load_file(self, variant: Kind, fname: str) -> RawConfigParser: + logger.verbose("For variant '%s', will try loading '%s'", variant, fname) + parser = self._construct_parser(fname) + + for section in parser.sections(): + items = parser.items(section) + self._config[variant].update(self._normalized_keys(section, items)) + + return parser + + def _construct_parser(self, fname: str) -> RawConfigParser: + parser = configparser.RawConfigParser() + # If there is no such file, don't bother reading it but create the + # parser anyway, to hold the data. + # Doing this is useful when modifying and saving files, where we don't + # need to construct a parser. + if os.path.exists(fname): + locale_encoding = locale.getpreferredencoding(False) + try: + parser.read(fname, encoding=locale_encoding) + except UnicodeDecodeError: + # See https://github.com/pypa/pip/issues/4963 + raise ConfigurationFileCouldNotBeLoaded( + reason=f"contains invalid {locale_encoding} characters", + fname=fname, + ) + except configparser.Error as error: + # See https://github.com/pypa/pip/issues/4893 + raise ConfigurationFileCouldNotBeLoaded(error=error) + return parser + + def _load_environment_vars(self) -> None: + """Loads configuration from environment variables""" + self._config[kinds.ENV_VAR].update( + self._normalized_keys(":env:", self.get_environ_vars()) + ) + + def _normalized_keys( + self, section: str, items: Iterable[Tuple[str, Any]] + ) -> Dict[str, Any]: + """Normalizes items to construct a dictionary with normalized keys. + + This routine is where the names become keys and are made the same + regardless of source - configuration files or environment. + """ + normalized = {} + for name, val in items: + key = section + "." + _normalize_name(name) + normalized[key] = val + return normalized + + def get_environ_vars(self) -> Iterable[Tuple[str, str]]: + """Returns a generator with all environmental vars with prefix PIP_""" + for key, val in os.environ.items(): + if key.startswith("PIP_"): + name = key[4:].lower() + if name not in ENV_NAMES_IGNORED: + yield name, val + + # XXX: This is patched in the tests. + def iter_config_files(self) -> Iterable[Tuple[Kind, List[str]]]: + """Yields variant and configuration files associated with it. + + This should be treated like items of a dictionary. + """ + # SMELL: Move the conditions out of this function + + # environment variables have the lowest priority + config_file = os.environ.get("PIP_CONFIG_FILE", None) + if config_file is not None: + yield kinds.ENV, [config_file] + else: + yield kinds.ENV, [] + + config_files = get_configuration_files() + + # at the base we have any global configuration + yield kinds.GLOBAL, config_files[kinds.GLOBAL] + + # per-user configuration next + should_load_user_config = not self.isolated and not ( + config_file and os.path.exists(config_file) + ) + if should_load_user_config: + # The legacy config file is overridden by the new config file + yield kinds.USER, config_files[kinds.USER] + + # finally virtualenv configuration first trumping others + yield kinds.SITE, config_files[kinds.SITE] + + def get_values_in_config(self, variant: Kind) -> Dict[str, Any]: + """Get values present in a config file""" + return self._config[variant] + + def _get_parser_to_modify(self) -> Tuple[str, RawConfigParser]: + # Determine which parser to modify + assert self.load_only + parsers = self._parsers[self.load_only] + if not parsers: + # This should not happen if everything works correctly. + raise ConfigurationError( + "Fatal Internal error [id=2]. Please report as a bug." + ) + + # Use the highest priority parser. + return parsers[-1] + + # XXX: This is patched in the tests. + def _mark_as_modified(self, fname: str, parser: RawConfigParser) -> None: + file_parser_tuple = (fname, parser) + if file_parser_tuple not in self._modified_parsers: + self._modified_parsers.append(file_parser_tuple) + + def __repr__(self) -> str: + return f"{self.__class__.__name__}({self._dictionary!r})" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py new file mode 100644 index 0000000..9a89a83 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py @@ -0,0 +1,21 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.distributions.sdist import SourceDistribution +from pip._internal.distributions.wheel import WheelDistribution +from pip._internal.req.req_install import InstallRequirement + + +def make_distribution_for_install_requirement( + install_req: InstallRequirement, +) -> AbstractDistribution: + """Returns a Distribution for the given InstallRequirement""" + # Editable requirements will always be source distributions. They use the + # legacy logic until we create a modern standard for them. + if install_req.editable: + return SourceDistribution(install_req) + + # If it's a wheel, it's a WheelDistribution + if install_req.is_wheel: + return WheelDistribution(install_req) + + # Otherwise, a SourceDistribution + return SourceDistribution(install_req) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cd05b73817e9489f77e1b206a7d75fcbe0e5b786 GIT binary patch literal 807 zcmaJwLuXI?5x8M-WvZ@Oe;0Rs1=~<7#Wl((Uimi>17~`?53^ z<;)%_+Eux-s%nOF4+f$k>!`{6Q4Td;hy!c&?cMmi>JqZFO$e*NF$lInAim*C+ZxU zJl24{TY`H+nKDC2GGgg z-M_8O^l$Yl-CFlozV6%o}_ax@hIB9^yfhmI6IIV^Ip=UG}&}x zn_|d^V#|5-_!b|zxzS4!kYo(d$IaeB2IyFBS5dODN60~#0r)VN%$RVhbU0%rmqmFJ z7A*mmNf9z_iz&F9XgCa^d_NPRe#NZyWaXKi{nrz`ab8MwYCdV*!~O77g!9_iFoS74 z!K#o8EA+f5p|ieyShBfr=fcsq0V6o)tbE^wxzbwXR-U!6ThCIJ`*n4q8OLQtOctQw zR3uon*)!p3VP~NcwyxH=e6YmEq){Ef?)cYn7JALuZK`V9MGwQlI4@8YOm>?rA>2kl z$kqTu*oYZbVz_i&?%M)}xTplEtjr5xCT|K}4$c;08LnnHRM{g4Pbi*N${-Xts>8rC z^#pPtEaS|w$PG6>B(>>jh>0$bbCAcfppDgsYWAS9K-hgcuio0oVv~hZ8p=?X)aAK$X{hVQ*#lsLQ9s#56+InlbCB& zibGXe4bl-hu0UL>{OoS@aV(2$(Y+hp`7kzx75iOCKNn{)^!DKtcOtlL~0m`AE_RI3B;})D|>%lNq6N1|59rO zZ-m~0S-rh%cED=hJ`pzUGLWu9eHW$;hP&sTN0&nTU)QELb?;KMlhuXfXnT|OJ1WqGsB77rbSb*8vRp86U#7|kZgl#=>7 zn&X84b0H<{^NQmLS7UxOenc><<{f7Q^!iQ^?9#yZDE$6$)!X~qt%E0j6I1C#J=xSZ z!KHZ*#278b7-3$XMhm5;ZJJtKH`f<-nut)ajze>0eFfZ8N4@DE+&lah&UGMGSU5gT YWrI)K7=DiVHYoi88F?c*qBs110Y1zPod5s; literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..321bd773fedfd2b0ae25bb78a2293e710032cc7c GIT binary patch literal 1241 zcmaJ=&u`N(6t)6kNyp^;tdVyHLTBnG$I6m={Hfz5{qs~v*jYhZ{K243)bYk}f zd_`JXp(Nx72XykD9`ffxGOi(U^%*sMy=dZ2ShqGzc43(N;5bS!Ly5<5;xms2Q;+#9 zI1Q2(-~bG~!#viRwpo{LK(@;|fT~wre<_WnS;pD=uNGh4@IrILr8Oayp;#4#MT0Wx z^+K?BGhsrexCy1Qq2!!F^*n^F1=Z9s3#ke1jE9;ZmqNq3kW;1eW^D$GG}D~2d3{{U zxeO;NFG|ZHM6{$g6w+R`m_wF;l@AN$1e|!0>GP4QY2VewlctavoEmGn&Q+^L_pyW?D(U zr=-;iTBqY;Zf8n9-iaQ>nMjw@o#@`(*a*w-ESqNHLKHC((sC_n7PGY*VB)hLN5#Cl zamX#nxuuL+O4bVpj>}$_&AE zQGhqwUf^NxPd&WN-*v@!)Tu%cGddG9TGz-#DZE|nNLIHmmbvbKjFuOIG-5Qswl5a0 c#BcCBSeN0gx{n(EPn=w)3$Bm)xQ~baUx=Ss2><{9 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..dba6826b9838f753ca8504cd3c90c5be8944a433 GIT binary patch literal 4453 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 h*WoJ-`xgGKH None: + super().__init__() + self.req = req + + @abc.abstractmethod + def get_metadata_distribution(self) -> BaseDistribution: + raise NotImplementedError() + + @abc.abstractmethod + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + raise NotImplementedError() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/installed.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/installed.py new file mode 100644 index 0000000..be5962f --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/installed.py @@ -0,0 +1,20 @@ +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution + + +class InstalledDistribution(AbstractDistribution): + """Represents an installed package. + + This does not need any preparation as the required information has already + been computed. + """ + + def get_metadata_distribution(self) -> BaseDistribution: + assert self.req.satisfied_by is not None, "not actually installed" + return self.req.satisfied_by + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + pass diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py new file mode 100644 index 0000000..bdaf403 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py @@ -0,0 +1,127 @@ +import logging +from typing import Iterable, Set, Tuple + +from pip._internal.build_env import BuildEnvironment +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.exceptions import InstallationError +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +class SourceDistribution(AbstractDistribution): + """Represents a source distribution. + + The preparation step for these needs metadata for the packages to be + generated, either using PEP 517 or using the legacy `setup.py egg_info`. + """ + + def get_metadata_distribution(self) -> BaseDistribution: + return self.req.get_dist() + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + # Load pyproject.toml, to determine whether PEP 517 is to be used + self.req.load_pyproject_toml() + + # Set up the build isolation, if this requirement should be isolated + should_isolate = self.req.use_pep517 and build_isolation + if should_isolate: + # Setup an isolated environment and install the build backend static + # requirements in it. + self._prepare_build_backend(finder) + # Check that if the requirement is editable, it either supports PEP 660 or + # has a setup.py or a setup.cfg. This cannot be done earlier because we need + # to setup the build backend to verify it supports build_editable, nor can + # it be done later, because we want to avoid installing build requirements + # needlessly. Doing it here also works around setuptools generating + # UNKNOWN.egg-info when running get_requires_for_build_wheel on a directory + # without setup.py nor setup.cfg. + self.req.isolated_editable_sanity_check() + # Install the dynamic build requirements. + self._install_build_reqs(finder) + + self.req.prepare_metadata() + + def _prepare_build_backend(self, finder: PackageFinder) -> None: + # Isolate in a BuildEnvironment and install the build-time + # requirements. + pyproject_requires = self.req.pyproject_requires + assert pyproject_requires is not None + + self.req.build_env = BuildEnvironment() + self.req.build_env.install_requirements( + finder, pyproject_requires, "overlay", kind="build dependencies" + ) + conflicting, missing = self.req.build_env.check_requirements( + self.req.requirements_to_check + ) + if conflicting: + self._raise_conflicts("PEP 517/518 supported requirements", conflicting) + if missing: + logger.warning( + "Missing build requirements in pyproject.toml for %s.", + self.req, + ) + logger.warning( + "The project does not specify a build backend, and " + "pip cannot fall back to setuptools without %s.", + " and ".join(map(repr, sorted(missing))), + ) + + def _get_build_requires_wheel(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message("Getting requirements to build wheel") + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_wheel() + + def _get_build_requires_editable(self) -> Iterable[str]: + with self.req.build_env: + runner = runner_with_spinner_message( + "Getting requirements to build editable" + ) + backend = self.req.pep517_backend + assert backend is not None + with backend.subprocess_runner(runner): + return backend.get_requires_for_build_editable() + + def _install_build_reqs(self, finder: PackageFinder) -> None: + # Install any extra build dependencies that the backend requests. + # This must be done in a second pass, as the pyproject.toml + # dependencies must be installed before we can call the backend. + if ( + self.req.editable + and self.req.permit_editable_wheels + and self.req.supports_pyproject_editable() + ): + build_reqs = self._get_build_requires_editable() + else: + build_reqs = self._get_build_requires_wheel() + conflicting, missing = self.req.build_env.check_requirements(build_reqs) + if conflicting: + self._raise_conflicts("the backend dependencies", conflicting) + self.req.build_env.install_requirements( + finder, missing, "normal", kind="backend dependencies" + ) + + def _raise_conflicts( + self, conflicting_with: str, conflicting_reqs: Set[Tuple[str, str]] + ) -> None: + format_string = ( + "Some build dependencies for {requirement} " + "conflict with {conflicting_with}: {description}." + ) + error_message = format_string.format( + requirement=self.req, + conflicting_with=conflicting_with, + description=", ".join( + f"{installed} is incompatible with {wanted}" + for installed, wanted in sorted(conflicting_reqs) + ), + ) + raise InstallationError(error_message) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py new file mode 100644 index 0000000..340b0f3 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py @@ -0,0 +1,31 @@ +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions.base import AbstractDistribution +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) + + +class WheelDistribution(AbstractDistribution): + """Represents a wheel distribution. + + This does not need any preparation as wheels can be directly unpacked. + """ + + def get_metadata_distribution(self) -> BaseDistribution: + """Loads the metadata from the wheel file into memory and returns a + Distribution that uses it, not relying on the wheel file or + requirement. + """ + assert self.req.local_file_path, "Set as part of preparation during download" + assert self.req.name, "Wheels are never unnamed" + wheel = FilesystemWheel(self.req.local_file_path) + return get_wheel_distribution(wheel, canonicalize_name(self.req.name)) + + def prepare_distribution_metadata( + self, finder: PackageFinder, build_isolation: bool + ) -> None: + pass diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/exceptions.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/exceptions.py new file mode 100644 index 0000000..97b9612 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/exceptions.py @@ -0,0 +1,658 @@ +"""Exceptions used throughout package. + +This module MUST NOT try to import from anything within `pip._internal` to +operate. This is expected to be importable from any/all files within the +subpackage and, thus, should not depend on them. +""" + +import configparser +import re +from itertools import chain, groupby, repeat +from typing import TYPE_CHECKING, Dict, List, Optional, Union + +from pip._vendor.requests.models import Request, Response +from pip._vendor.rich.console import Console, ConsoleOptions, RenderResult +from pip._vendor.rich.markup import escape +from pip._vendor.rich.text import Text + +if TYPE_CHECKING: + from hashlib import _Hash + from typing import Literal + + from pip._internal.metadata import BaseDistribution + from pip._internal.req.req_install import InstallRequirement + + +# +# Scaffolding +# +def _is_kebab_case(s: str) -> bool: + return re.match(r"^[a-z]+(-[a-z]+)*$", s) is not None + + +def _prefix_with_indent( + s: Union[Text, str], + console: Console, + *, + prefix: str, + indent: str, +) -> Text: + if isinstance(s, Text): + text = s + else: + text = console.render_str(s) + + return console.render_str(prefix, overflow="ignore") + console.render_str( + f"\n{indent}", overflow="ignore" + ).join(text.split(allow_blank=True)) + + +class PipError(Exception): + """The base pip error.""" + + +class DiagnosticPipError(PipError): + """An error, that presents diagnostic information to the user. + + This contains a bunch of logic, to enable pretty presentation of our error + messages. Each error gets a unique reference. Each error can also include + additional context, a hint and/or a note -- which are presented with the + main error message in a consistent style. + + This is adapted from the error output styling in `sphinx-theme-builder`. + """ + + reference: str + + def __init__( + self, + *, + kind: 'Literal["error", "warning"]' = "error", + reference: Optional[str] = None, + message: Union[str, Text], + context: Optional[Union[str, Text]], + hint_stmt: Optional[Union[str, Text]], + note_stmt: Optional[Union[str, Text]] = None, + link: Optional[str] = None, + ) -> None: + # Ensure a proper reference is provided. + if reference is None: + assert hasattr(self, "reference"), "error reference not provided!" + reference = self.reference + assert _is_kebab_case(reference), "error reference must be kebab-case!" + + self.kind = kind + self.reference = reference + + self.message = message + self.context = context + + self.note_stmt = note_stmt + self.hint_stmt = hint_stmt + + self.link = link + + super().__init__(f"<{self.__class__.__name__}: {self.reference}>") + + def __repr__(self) -> str: + return ( + f"<{self.__class__.__name__}(" + f"reference={self.reference!r}, " + f"message={self.message!r}, " + f"context={self.context!r}, " + f"note_stmt={self.note_stmt!r}, " + f"hint_stmt={self.hint_stmt!r}" + ")>" + ) + + def __rich_console__( + self, + console: Console, + options: ConsoleOptions, + ) -> RenderResult: + colour = "red" if self.kind == "error" else "yellow" + + yield f"[{colour} bold]{self.kind}[/]: [bold]{self.reference}[/]" + yield "" + + if not options.ascii_only: + # Present the main message, with relevant context indented. + if self.context is not None: + yield _prefix_with_indent( + self.message, + console, + prefix=f"[{colour}]×[/] ", + indent=f"[{colour}]│[/] ", + ) + yield _prefix_with_indent( + self.context, + console, + prefix=f"[{colour}]╰─>[/] ", + indent=f"[{colour}] [/] ", + ) + else: + yield _prefix_with_indent( + self.message, + console, + prefix="[red]×[/] ", + indent=" ", + ) + else: + yield self.message + if self.context is not None: + yield "" + yield self.context + + if self.note_stmt is not None or self.hint_stmt is not None: + yield "" + + if self.note_stmt is not None: + yield _prefix_with_indent( + self.note_stmt, + console, + prefix="[magenta bold]note[/]: ", + indent=" ", + ) + if self.hint_stmt is not None: + yield _prefix_with_indent( + self.hint_stmt, + console, + prefix="[cyan bold]hint[/]: ", + indent=" ", + ) + + if self.link is not None: + yield "" + yield f"Link: {self.link}" + + +# +# Actual Errors +# +class ConfigurationError(PipError): + """General exception in configuration""" + + +class InstallationError(PipError): + """General exception during installation""" + + +class UninstallationError(PipError): + """General exception during uninstallation""" + + +class MissingPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml has `build-system`, but no `build-system.requires`.""" + + reference = "missing-pyproject-build-system-requires" + + def __init__(self, *, package: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid pyproject.toml file.\n" + "The [build-system] table is missing the mandatory `requires` key." + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class InvalidPyProjectBuildRequires(DiagnosticPipError): + """Raised when pyproject.toml an invalid `build-system.requires`.""" + + reference = "invalid-pyproject-build-system-requires" + + def __init__(self, *, package: str, reason: str) -> None: + super().__init__( + message=f"Can not process {escape(package)}", + context=Text( + "This package has an invalid `build-system.requires` key in " + f"pyproject.toml.\n{reason}" + ), + note_stmt="This is an issue with the package mentioned above, not pip.", + hint_stmt=Text("See PEP 518 for the detailed specification."), + ) + + +class NoneMetadataError(PipError): + """Raised when accessing a Distribution's "METADATA" or "PKG-INFO". + + This signifies an inconsistency, when the Distribution claims to have + the metadata file (if not, raise ``FileNotFoundError`` instead), but is + not actually able to produce its content. This may be due to permission + errors. + """ + + def __init__( + self, + dist: "BaseDistribution", + metadata_name: str, + ) -> None: + """ + :param dist: A Distribution object. + :param metadata_name: The name of the metadata being accessed + (can be "METADATA" or "PKG-INFO"). + """ + self.dist = dist + self.metadata_name = metadata_name + + def __str__(self) -> str: + # Use `dist` in the error message because its stringification + # includes more information, like the version and location. + return "None {} metadata found for distribution: {}".format( + self.metadata_name, + self.dist, + ) + + +class UserInstallationInvalid(InstallationError): + """A --user install is requested on an environment without user site.""" + + def __str__(self) -> str: + return "User base directory is not specified" + + +class InvalidSchemeCombination(InstallationError): + def __str__(self) -> str: + before = ", ".join(str(a) for a in self.args[:-1]) + return f"Cannot set {before} and {self.args[-1]} together" + + +class DistributionNotFound(InstallationError): + """Raised when a distribution cannot be found to satisfy a requirement""" + + +class RequirementsFileParseError(InstallationError): + """Raised when a general error occurs parsing a requirements file line.""" + + +class BestVersionAlreadyInstalled(PipError): + """Raised when the most up-to-date version of a package is already + installed.""" + + +class BadCommand(PipError): + """Raised when virtualenv or a command is not found""" + + +class CommandError(PipError): + """Raised when there is an error in command-line arguments""" + + +class PreviousBuildDirError(PipError): + """Raised when there's a previous conflicting build directory""" + + +class NetworkConnectionError(PipError): + """HTTP connection error""" + + def __init__( + self, error_msg: str, response: Response = None, request: Request = None + ) -> None: + """ + Initialize NetworkConnectionError with `request` and `response` + objects. + """ + self.response = response + self.request = request + self.error_msg = error_msg + if ( + self.response is not None + and not self.request + and hasattr(response, "request") + ): + self.request = self.response.request + super().__init__(error_msg, response, request) + + def __str__(self) -> str: + return str(self.error_msg) + + +class InvalidWheelFilename(InstallationError): + """Invalid wheel filename.""" + + +class UnsupportedWheel(InstallationError): + """Unsupported wheel.""" + + +class InvalidWheel(InstallationError): + """Invalid (e.g. corrupt) wheel.""" + + def __init__(self, location: str, name: str): + self.location = location + self.name = name + + def __str__(self) -> str: + return f"Wheel '{self.name}' located at {self.location} is invalid." + + +class MetadataInconsistent(InstallationError): + """Built metadata contains inconsistent information. + + This is raised when the metadata contains values (e.g. name and version) + that do not match the information previously obtained from sdist filename + or user-supplied ``#egg=`` value. + """ + + def __init__( + self, ireq: "InstallRequirement", field: str, f_val: str, m_val: str + ) -> None: + self.ireq = ireq + self.field = field + self.f_val = f_val + self.m_val = m_val + + def __str__(self) -> str: + template = ( + "Requested {} has inconsistent {}: " + "filename has {!r}, but metadata has {!r}" + ) + return template.format(self.ireq, self.field, self.f_val, self.m_val) + + +class LegacyInstallFailure(DiagnosticPipError): + """Error occurred while executing `setup.py install`""" + + reference = "legacy-install-failure" + + def __init__(self, package_details: str) -> None: + super().__init__( + message="Encountered error while trying to install package.", + context=package_details, + hint_stmt="See above for output from the failure.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + +class InstallationSubprocessError(DiagnosticPipError, InstallationError): + """A subprocess call failed.""" + + reference = "subprocess-exited-with-error" + + def __init__( + self, + *, + command_description: str, + exit_code: int, + output_lines: Optional[List[str]], + ) -> None: + if output_lines is None: + output_prompt = Text("See above for output.") + else: + output_prompt = ( + Text.from_markup(f"[red][{len(output_lines)} lines of output][/]\n") + + Text("".join(output_lines)) + + Text.from_markup(R"[red]\[end of output][/]") + ) + + super().__init__( + message=( + f"[green]{escape(command_description)}[/] did not run successfully.\n" + f"exit code: {exit_code}" + ), + context=output_prompt, + hint_stmt=None, + note_stmt=( + "This error originates from a subprocess, and is likely not a " + "problem with pip." + ), + ) + + self.command_description = command_description + self.exit_code = exit_code + + def __str__(self) -> str: + return f"{self.command_description} exited with {self.exit_code}" + + +class MetadataGenerationFailed(InstallationSubprocessError, InstallationError): + reference = "metadata-generation-failed" + + def __init__( + self, + *, + package_details: str, + ) -> None: + super(InstallationSubprocessError, self).__init__( + message="Encountered error while generating package metadata.", + context=escape(package_details), + hint_stmt="See above for details.", + note_stmt="This is an issue with the package mentioned above, not pip.", + ) + + def __str__(self) -> str: + return "metadata generation failed" + + +class HashErrors(InstallationError): + """Multiple HashError instances rolled into one for reporting""" + + def __init__(self) -> None: + self.errors: List["HashError"] = [] + + def append(self, error: "HashError") -> None: + self.errors.append(error) + + def __str__(self) -> str: + lines = [] + self.errors.sort(key=lambda e: e.order) + for cls, errors_of_cls in groupby(self.errors, lambda e: e.__class__): + lines.append(cls.head) + lines.extend(e.body() for e in errors_of_cls) + if lines: + return "\n".join(lines) + return "" + + def __bool__(self) -> bool: + return bool(self.errors) + + +class HashError(InstallationError): + """ + A failure to verify a package against known-good hashes + + :cvar order: An int sorting hash exception classes by difficulty of + recovery (lower being harder), so the user doesn't bother fretting + about unpinned packages when he has deeper issues, like VCS + dependencies, to deal with. Also keeps error reports in a + deterministic order. + :cvar head: A section heading for display above potentially many + exceptions of this kind + :ivar req: The InstallRequirement that triggered this error. This is + pasted on after the exception is instantiated, because it's not + typically available earlier. + + """ + + req: Optional["InstallRequirement"] = None + head = "" + order: int = -1 + + def body(self) -> str: + """Return a summary of me for display under the heading. + + This default implementation simply prints a description of the + triggering requirement. + + :param req: The InstallRequirement that provoked this error, with + its link already populated by the resolver's _populate_link(). + + """ + return f" {self._requirement_name()}" + + def __str__(self) -> str: + return f"{self.head}\n{self.body()}" + + def _requirement_name(self) -> str: + """Return a description of the requirement that triggered me. + + This default implementation returns long description of the req, with + line numbers + + """ + return str(self.req) if self.req else "unknown package" + + +class VcsHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 0 + head = ( + "Can't verify hashes for these requirements because we don't " + "have a way to hash version control repositories:" + ) + + +class DirectoryUrlHashUnsupported(HashError): + """A hash was provided for a version-control-system-based requirement, but + we don't have a method for hashing those.""" + + order = 1 + head = ( + "Can't verify hashes for these file:// requirements because they " + "point to directories:" + ) + + +class HashMissing(HashError): + """A hash was needed for a requirement but is absent.""" + + order = 2 + head = ( + "Hashes are required in --require-hashes mode, but they are " + "missing from some requirements. Here is a list of those " + "requirements along with the hashes their downloaded archives " + "actually had. Add lines like these to your requirements files to " + "prevent tampering. (If you did not enable --require-hashes " + "manually, note that it turns on automatically when any package " + "has a hash.)" + ) + + def __init__(self, gotten_hash: str) -> None: + """ + :param gotten_hash: The hash of the (possibly malicious) archive we + just downloaded + """ + self.gotten_hash = gotten_hash + + def body(self) -> str: + # Dodge circular import. + from pip._internal.utils.hashes import FAVORITE_HASH + + package = None + if self.req: + # In the case of URL-based requirements, display the original URL + # seen in the requirements file rather than the package name, + # so the output can be directly copied into the requirements file. + package = ( + self.req.original_link + if self.req.original_link + # In case someone feeds something downright stupid + # to InstallRequirement's constructor. + else getattr(self.req, "req", None) + ) + return " {} --hash={}:{}".format( + package or "unknown package", FAVORITE_HASH, self.gotten_hash + ) + + +class HashUnpinned(HashError): + """A requirement had a hash specified but was not pinned to a specific + version.""" + + order = 3 + head = ( + "In --require-hashes mode, all requirements must have their " + "versions pinned with ==. These do not:" + ) + + +class HashMismatch(HashError): + """ + Distribution file hash values don't match. + + :ivar package_name: The name of the package that triggered the hash + mismatch. Feel free to write to this after the exception is raise to + improve its error message. + + """ + + order = 4 + head = ( + "THESE PACKAGES DO NOT MATCH THE HASHES FROM THE REQUIREMENTS " + "FILE. If you have updated the package versions, please update " + "the hashes. Otherwise, examine the package contents carefully; " + "someone may have tampered with them." + ) + + def __init__(self, allowed: Dict[str, List[str]], gots: Dict[str, "_Hash"]) -> None: + """ + :param allowed: A dict of algorithm names pointing to lists of allowed + hex digests + :param gots: A dict of algorithm names pointing to hashes we + actually got from the files under suspicion + """ + self.allowed = allowed + self.gots = gots + + def body(self) -> str: + return " {}:\n{}".format(self._requirement_name(), self._hash_comparison()) + + def _hash_comparison(self) -> str: + """ + Return a comparison of actual and expected hash values. + + Example:: + + Expected sha256 abcdeabcdeabcdeabcdeabcdeabcdeabcdeabcdeabcde + or 123451234512345123451234512345123451234512345 + Got bcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdefbcdef + + """ + + def hash_then_or(hash_name: str) -> "chain[str]": + # For now, all the decent hashes have 6-char names, so we can get + # away with hard-coding space literals. + return chain([hash_name], repeat(" or")) + + lines: List[str] = [] + for hash_name, expecteds in self.allowed.items(): + prefix = hash_then_or(hash_name) + lines.extend( + (" Expected {} {}".format(next(prefix), e)) for e in expecteds + ) + lines.append( + " Got {}\n".format(self.gots[hash_name].hexdigest()) + ) + return "\n".join(lines) + + +class UnsupportedPythonVersion(InstallationError): + """Unsupported python version according to Requires-Python package + metadata.""" + + +class ConfigurationFileCouldNotBeLoaded(ConfigurationError): + """When there are errors while loading a configuration file""" + + def __init__( + self, + reason: str = "could not be loaded", + fname: Optional[str] = None, + error: Optional[configparser.Error] = None, + ) -> None: + super().__init__(error) + self.reason = reason + self.fname = fname + self.error = error + + def __str__(self) -> str: + if self.fname is not None: + message_part = f" in {self.fname}." + else: + assert self.error is not None + message_part = f".\n{self.error}\n" + return f"Configuration file {self.reason}{message_part}" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__init__.py new file mode 100644 index 0000000..7a17b7b --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__init__.py @@ -0,0 +1,2 @@ +"""Index interaction code +""" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a9b8402635eb347d1a7381964203f7ac05c9b607 GIT binary patch literal 234 zcmYk0u?hk)5JYn}9)h)<*jjk299XFc+K3>6olS_BRiiN*a#1}0$kN}j^)IZ3@ z%Uf7xs9vwJpvP^#ZHE0S;a^dJahN;~CfSP+Wat0dR@qs q$Bq@*QS2}Wt1R$uv=JIq*#vkvD9?Ffi)TDIkvwZ0mF@GgL(D!AeL+3| literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/collector.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3818e1f1dcf0522819ccfb3a20b7a61802b198ad GIT binary patch literal 19313 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/__pycache__/sources.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..09d1f8fd06069a88411e7afb19b74bc3e386bd0a GIT binary patch literal 7127 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/index/collector.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/collector.py new file mode 100644 index 0000000..4ecbb33 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/collector.py @@ -0,0 +1,648 @@ +""" +The main purpose of this module is to expose LinkCollector.collect_sources(). +""" + +import cgi +import collections +import functools +import itertools +import logging +import os +import re +import urllib.parse +import urllib.request +import xml.etree.ElementTree +from html.parser import HTMLParser +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + List, + MutableMapping, + NamedTuple, + Optional, + Sequence, + Tuple, + Union, +) + +from pip._vendor import html5lib, requests +from pip._vendor.requests import Response +from pip._vendor.requests.exceptions import RetryError, SSLError + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import pairwise, redact_auth_from_url +from pip._internal.vcs import vcs + +from .sources import CandidatesFromPage, LinkSource, build_source + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +logger = logging.getLogger(__name__) + +HTMLElement = xml.etree.ElementTree.Element +ResponseHeaders = MutableMapping[str, str] + + +def _match_vcs_scheme(url: str) -> Optional[str]: + """Look for VCS schemes in the URL. + + Returns the matched VCS scheme, or None if there's no match. + """ + for scheme in vcs.schemes: + if url.lower().startswith(scheme) and url[len(scheme)] in "+:": + return scheme + return None + + +class _NotHTML(Exception): + def __init__(self, content_type: str, request_desc: str) -> None: + super().__init__(content_type, request_desc) + self.content_type = content_type + self.request_desc = request_desc + + +def _ensure_html_header(response: Response) -> None: + """Check the Content-Type header to ensure the response contains HTML. + + Raises `_NotHTML` if the content type is not text/html. + """ + content_type = response.headers.get("Content-Type", "") + if not content_type.lower().startswith("text/html"): + raise _NotHTML(content_type, response.request.method) + + +class _NotHTTP(Exception): + pass + + +def _ensure_html_response(url: str, session: PipSession) -> None: + """Send a HEAD request to the URL, and ensure the response contains HTML. + + Raises `_NotHTTP` if the URL is not available for a HEAD request, or + `_NotHTML` if the content type is not text/html. + """ + scheme, netloc, path, query, fragment = urllib.parse.urlsplit(url) + if scheme not in {"http", "https"}: + raise _NotHTTP() + + resp = session.head(url, allow_redirects=True) + raise_for_status(resp) + + _ensure_html_header(resp) + + +def _get_html_response(url: str, session: PipSession) -> Response: + """Access an HTML page with GET, and return the response. + + This consists of three parts: + + 1. If the URL looks suspiciously like an archive, send a HEAD first to + check the Content-Type is HTML, to avoid downloading a large file. + Raise `_NotHTTP` if the content type cannot be determined, or + `_NotHTML` if it is not HTML. + 2. Actually perform the request. Raise HTTP exceptions on network failures. + 3. Check the Content-Type header to make sure we got HTML, and raise + `_NotHTML` otherwise. + """ + if is_archive_file(Link(url).filename): + _ensure_html_response(url, session=session) + + logger.debug("Getting page %s", redact_auth_from_url(url)) + + resp = session.get( + url, + headers={ + "Accept": "text/html", + # We don't want to blindly returned cached data for + # /simple/, because authors generally expecting that + # twine upload && pip install will function, but if + # they've done a pip install in the last ~10 minutes + # it won't. Thus by setting this to zero we will not + # blindly use any cached data, however the benefit of + # using max-age=0 instead of no-cache, is that we will + # still support conditional requests, so we will still + # minimize traffic sent in cases where the page hasn't + # changed at all, we will just always incur the round + # trip for the conditional GET now instead of only + # once per 10 minutes. + # For more information, please see pypa/pip#5670. + "Cache-Control": "max-age=0", + }, + ) + raise_for_status(resp) + + # The check for archives above only works if the url ends with + # something that looks like an archive. However that is not a + # requirement of an url. Unless we issue a HEAD request on every + # url we cannot know ahead of time for sure if something is HTML + # or not. However we can check after we've downloaded it. + _ensure_html_header(resp) + + return resp + + +def _get_encoding_from_headers(headers: ResponseHeaders) -> Optional[str]: + """Determine if we have any encoding information in our headers.""" + if headers and "Content-Type" in headers: + content_type, params = cgi.parse_header(headers["Content-Type"]) + if "charset" in params: + return params["charset"] + return None + + +def _determine_base_url(document: HTMLElement, page_url: str) -> str: + """Determine the HTML document's base URL. + + This looks for a ```` tag in the HTML document. If present, its href + attribute denotes the base URL of anchor tags in the document. If there is + no such tag (or if it does not have a valid href attribute), the HTML + file's URL is used as the base URL. + + :param document: An HTML document representation. The current + implementation expects the result of ``html5lib.parse()``. + :param page_url: The URL of the HTML document. + + TODO: Remove when `html5lib` is dropped. + """ + for base in document.findall(".//base"): + href = base.get("href") + if href is not None: + return href + return page_url + + +def _clean_url_path_part(part: str) -> str: + """ + Clean a "part" of a URL path (i.e. after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + return urllib.parse.quote(urllib.parse.unquote(part)) + + +def _clean_file_url_path(part: str) -> str: + """ + Clean the first part of a URL path that corresponds to a local + filesystem path (i.e. the first part after splitting on "@" characters). + """ + # We unquote prior to quoting to make sure nothing is double quoted. + # Also, on Windows the path part might contain a drive letter which + # should not be quoted. On Linux where drive letters do not + # exist, the colon should be quoted. We rely on urllib.request + # to do the right thing here. + return urllib.request.pathname2url(urllib.request.url2pathname(part)) + + +# percent-encoded: / +_reserved_chars_re = re.compile("(@|%2F)", re.IGNORECASE) + + +def _clean_url_path(path: str, is_local_path: bool) -> str: + """ + Clean the path portion of a URL. + """ + if is_local_path: + clean_func = _clean_file_url_path + else: + clean_func = _clean_url_path_part + + # Split on the reserved characters prior to cleaning so that + # revision strings in VCS URLs are properly preserved. + parts = _reserved_chars_re.split(path) + + cleaned_parts = [] + for to_clean, reserved in pairwise(itertools.chain(parts, [""])): + cleaned_parts.append(clean_func(to_clean)) + # Normalize %xx escapes (e.g. %2f -> %2F) + cleaned_parts.append(reserved.upper()) + + return "".join(cleaned_parts) + + +def _clean_link(url: str) -> str: + """ + Make sure a link is fully quoted. + For example, if ' ' occurs in the URL, it will be replaced with "%20", + and without double-quoting other characters. + """ + # Split the URL into parts according to the general structure + # `scheme://netloc/path;parameters?query#fragment`. + result = urllib.parse.urlparse(url) + # If the netloc is empty, then the URL refers to a local filesystem path. + is_local_path = not result.netloc + path = _clean_url_path(result.path, is_local_path=is_local_path) + return urllib.parse.urlunparse(result._replace(path=path)) + + +def _create_link_from_element( + element_attribs: Dict[str, Optional[str]], + page_url: str, + base_url: str, +) -> Optional[Link]: + """ + Convert an anchor element's attributes in a simple repository page to a Link. + """ + href = element_attribs.get("href") + if not href: + return None + + url = _clean_link(urllib.parse.urljoin(base_url, href)) + pyrequire = element_attribs.get("data-requires-python") + yanked_reason = element_attribs.get("data-yanked") + + link = Link( + url, + comes_from=page_url, + requires_python=pyrequire, + yanked_reason=yanked_reason, + ) + + return link + + +class CacheablePageContent: + def __init__(self, page: "HTMLPage") -> None: + assert page.cache_link_parsing + self.page = page + + def __eq__(self, other: object) -> bool: + return isinstance(other, type(self)) and self.page.url == other.page.url + + def __hash__(self) -> int: + return hash(self.page.url) + + +class ParseLinks(Protocol): + def __call__( + self, page: "HTMLPage", use_deprecated_html5lib: bool + ) -> Iterable[Link]: + ... + + +def with_cached_html_pages(fn: ParseLinks) -> ParseLinks: + """ + Given a function that parses an Iterable[Link] from an HTMLPage, cache the + function's result (keyed by CacheablePageContent), unless the HTMLPage + `page` has `page.cache_link_parsing == False`. + """ + + @functools.lru_cache(maxsize=None) + def wrapper( + cacheable_page: CacheablePageContent, use_deprecated_html5lib: bool + ) -> List[Link]: + return list(fn(cacheable_page.page, use_deprecated_html5lib)) + + @functools.wraps(fn) + def wrapper_wrapper(page: "HTMLPage", use_deprecated_html5lib: bool) -> List[Link]: + if page.cache_link_parsing: + return wrapper(CacheablePageContent(page), use_deprecated_html5lib) + return list(fn(page, use_deprecated_html5lib)) + + return wrapper_wrapper + + +def _parse_links_html5lib(page: "HTMLPage") -> Iterable[Link]: + """ + Parse an HTML document, and yield its anchor elements as Link objects. + + TODO: Remove when `html5lib` is dropped. + """ + document = html5lib.parse( + page.content, + transport_encoding=page.encoding, + namespaceHTMLElements=False, + ) + + url = page.url + base_url = _determine_base_url(document, url) + for anchor in document.findall(".//a"): + link = _create_link_from_element( + anchor.attrib, + page_url=url, + base_url=base_url, + ) + if link is None: + continue + yield link + + +@with_cached_html_pages +def parse_links(page: "HTMLPage", use_deprecated_html5lib: bool) -> Iterable[Link]: + """ + Parse an HTML document, and yield its anchor elements as Link objects. + """ + encoding = page.encoding or "utf-8" + + # Check if the page starts with a valid doctype, to decide whether to use + # http.parser or (deprecated) html5lib for parsing -- unless explicitly + # requested to use html5lib. + if not use_deprecated_html5lib: + expected_doctype = "".encode(encoding) + actual_start = page.content[: len(expected_doctype)] + if actual_start.decode(encoding).lower() != "": + deprecated( + reason=( + f"The HTML index page being used ({page.url}) is not a proper " + "HTML 5 document. This is in violation of PEP 503 which requires " + "these pages to be well-formed HTML 5 documents. Please reach out " + "to the owners of this index page, and ask them to update this " + "index page to a valid HTML 5 document." + ), + replacement=None, + gone_in="22.2", + issue=10825, + ) + use_deprecated_html5lib = True + + if use_deprecated_html5lib: + yield from _parse_links_html5lib(page) + return + + parser = HTMLLinkParser() + parser.feed(page.content.decode(encoding)) + + url = page.url + base_url = parser.base_url or url + for anchor in parser.anchors: + link = _create_link_from_element( + anchor, + page_url=url, + base_url=base_url, + ) + if link is None: + continue + yield link + + +class HTMLPage: + """Represents one page, along with its URL""" + + def __init__( + self, + content: bytes, + encoding: Optional[str], + url: str, + cache_link_parsing: bool = True, + ) -> None: + """ + :param encoding: the encoding to decode the given content. + :param url: the URL from which the HTML was downloaded. + :param cache_link_parsing: whether links parsed from this page's url + should be cached. PyPI index urls should + have this set to False, for example. + """ + self.content = content + self.encoding = encoding + self.url = url + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + return redact_auth_from_url(self.url) + + +class HTMLLinkParser(HTMLParser): + """ + HTMLParser that keeps the first base HREF and a list of all anchor + elements' attributes. + """ + + def __init__(self, *args: Any, **kwargs: Any) -> None: + super().__init__(*args, **kwargs) + self._seen_decl = False + self.base_url: Optional[str] = None + self.anchors: List[Dict[str, Optional[str]]] = [] + + def handle_decl(self, decl: str) -> None: + if decl.lower() != "doctype html": + self._raise_error() + self._seen_decl = True + + def handle_starttag(self, tag: str, attrs: List[Tuple[str, Optional[str]]]) -> None: + if not self._seen_decl: + self._raise_error() + + if tag == "base" and self.base_url is None: + href = self.get_href(attrs) + if href is not None: + self.base_url = href + elif tag == "a": + self.anchors.append(dict(attrs)) + + def get_href(self, attrs: List[Tuple[str, Optional[str]]]) -> Optional[str]: + for name, value in attrs: + if name == "href": + return value + return None + + def _raise_error(self) -> None: + raise ValueError( + "HTML doctype missing or incorrect. Expected .\n\n" + "If you believe this error to be incorrect, try passing the " + "command line option --use-deprecated=html5lib and please leave " + "a comment on the pip issue at https://github.com/pypa/pip/issues/10825." + ) + + +def _handle_get_page_fail( + link: Link, + reason: Union[str, Exception], + meth: Optional[Callable[..., None]] = None, +) -> None: + if meth is None: + meth = logger.debug + meth("Could not fetch URL %s: %s - skipping", link, reason) + + +def _make_html_page(response: Response, cache_link_parsing: bool = True) -> HTMLPage: + encoding = _get_encoding_from_headers(response.headers) + return HTMLPage( + response.content, + encoding=encoding, + url=response.url, + cache_link_parsing=cache_link_parsing, + ) + + +def _get_html_page( + link: Link, session: Optional[PipSession] = None +) -> Optional["HTMLPage"]: + if session is None: + raise TypeError( + "_get_html_page() missing 1 required keyword argument: 'session'" + ) + + url = link.url.split("#", 1)[0] + + # Check for VCS schemes that do not support lookup as web pages. + vcs_scheme = _match_vcs_scheme(url) + if vcs_scheme: + logger.warning( + "Cannot look at %s URL %s because it does not support lookup as web pages.", + vcs_scheme, + link, + ) + return None + + # Tack index.html onto file:// URLs that point to directories + scheme, _, path, _, _, _ = urllib.parse.urlparse(url) + if scheme == "file" and os.path.isdir(urllib.request.url2pathname(path)): + # add trailing slash if not present so urljoin doesn't trim + # final segment + if not url.endswith("/"): + url += "/" + url = urllib.parse.urljoin(url, "index.html") + logger.debug(" file: URL is directory, getting %s", url) + + try: + resp = _get_html_response(url, session=session) + except _NotHTTP: + logger.warning( + "Skipping page %s because it looks like an archive, and cannot " + "be checked by a HTTP HEAD request.", + link, + ) + except _NotHTML as exc: + logger.warning( + "Skipping page %s because the %s request got Content-Type: %s." + "The only supported Content-Type is text/html", + link, + exc.request_desc, + exc.content_type, + ) + except NetworkConnectionError as exc: + _handle_get_page_fail(link, exc) + except RetryError as exc: + _handle_get_page_fail(link, exc) + except SSLError as exc: + reason = "There was a problem confirming the ssl certificate: " + reason += str(exc) + _handle_get_page_fail(link, reason, meth=logger.info) + except requests.ConnectionError as exc: + _handle_get_page_fail(link, f"connection error: {exc}") + except requests.Timeout: + _handle_get_page_fail(link, "timed out") + else: + return _make_html_page(resp, cache_link_parsing=link.cache_link_parsing) + return None + + +class CollectedSources(NamedTuple): + find_links: Sequence[Optional[LinkSource]] + index_urls: Sequence[Optional[LinkSource]] + + +class LinkCollector: + + """ + Responsible for collecting Link objects from all configured locations, + making network requests as needed. + + The class's main method is its collect_sources() method. + """ + + def __init__( + self, + session: PipSession, + search_scope: SearchScope, + ) -> None: + self.search_scope = search_scope + self.session = session + + @classmethod + def create( + cls, + session: PipSession, + options: Values, + suppress_no_index: bool = False, + ) -> "LinkCollector": + """ + :param session: The Session to use to make requests. + :param suppress_no_index: Whether to ignore the --no-index option + when constructing the SearchScope object. + """ + index_urls = [options.index_url] + options.extra_index_urls + if options.no_index and not suppress_no_index: + logger.debug( + "Ignoring indexes: %s", + ",".join(redact_auth_from_url(url) for url in index_urls), + ) + index_urls = [] + + # Make sure find_links is a list before passing to create(). + find_links = options.find_links or [] + + search_scope = SearchScope.create( + find_links=find_links, + index_urls=index_urls, + ) + link_collector = LinkCollector( + session=session, + search_scope=search_scope, + ) + return link_collector + + @property + def find_links(self) -> List[str]: + return self.search_scope.find_links + + def fetch_page(self, location: Link) -> Optional[HTMLPage]: + """ + Fetch an HTML page containing package links. + """ + return _get_html_page(location, session=self.session) + + def collect_sources( + self, + project_name: str, + candidates_from_page: CandidatesFromPage, + ) -> CollectedSources: + # The OrderedDict calls deduplicate sources by URL. + index_url_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=False, + cache_link_parsing=False, + ) + for loc in self.search_scope.get_index_urls_locations(project_name) + ).values() + find_links_sources = collections.OrderedDict( + build_source( + loc, + candidates_from_page=candidates_from_page, + page_validator=self.session.is_secure_origin, + expand_dir=True, + cache_link_parsing=True, + ) + for loc in self.find_links + ).values() + + if logger.isEnabledFor(logging.DEBUG): + lines = [ + f"* {s.link}" + for s in itertools.chain(find_links_sources, index_url_sources) + if s is not None and s.link is not None + ] + lines = [ + f"{len(lines)} location(s) to search " + f"for versions of {project_name}:" + ] + lines + logger.debug("\n".join(lines)) + + return CollectedSources( + find_links=list(find_links_sources), + index_urls=list(index_url_sources), + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/index/package_finder.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/package_finder.py new file mode 100644 index 0000000..223d06d --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/package_finder.py @@ -0,0 +1,1004 @@ +"""Routines related to PyPI, indexes""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import functools +import itertools +import logging +import re +from typing import FrozenSet, Iterable, List, Optional, Set, Tuple, Union + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.tags import Tag +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import _BaseVersion +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + InvalidWheelFilename, + UnsupportedWheel, +) +from pip._internal.index.collector import LinkCollector, parse_links +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.format_control import FormatControl +from pip._internal.models.link import Link +from pip._internal.models.search_scope import SearchScope +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.models.target_python import TargetPython +from pip._internal.models.wheel import Wheel +from pip._internal.req import InstallRequirement +from pip._internal.utils._log import getLogger +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import build_netloc +from pip._internal.utils.packaging import check_requires_python +from pip._internal.utils.unpacking import SUPPORTED_EXTENSIONS + +__all__ = ["FormatControl", "BestCandidateResult", "PackageFinder"] + + +logger = getLogger(__name__) + +BuildTag = Union[Tuple[()], Tuple[int, str]] +CandidateSortingKey = Tuple[int, int, int, _BaseVersion, Optional[int], BuildTag] + + +def _check_link_requires_python( + link: Link, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> bool: + """ + Return whether the given Python version is compatible with a link's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + """ + try: + is_compatible = check_requires_python( + link.requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier: + logger.debug( + "Ignoring invalid Requires-Python (%r) for link: %s", + link.requires_python, + link, + ) + else: + if not is_compatible: + version = ".".join(map(str, version_info)) + if not ignore_requires_python: + logger.verbose( + "Link requires a different Python (%s not in: %r): %s", + version, + link.requires_python, + link, + ) + return False + + logger.debug( + "Ignoring failed Requires-Python check (%s not in: %r) for link: %s", + version, + link.requires_python, + link, + ) + + return True + + +class LinkEvaluator: + + """ + Responsible for evaluating links for a particular project. + """ + + _py_version_re = re.compile(r"-py([123]\.?[0-9]?)$") + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + project_name: str, + canonical_name: str, + formats: FrozenSet[str], + target_python: TargetPython, + allow_yanked: bool, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + :param project_name: The user supplied package name. + :param canonical_name: The canonical package name. + :param formats: The formats allowed for this package. Should be a set + with 'binary' or 'source' or both in it. + :param target_python: The target Python interpreter to use when + evaluating link compatibility. This is used, for example, to + check wheel compatibility, as well as when checking the Python + version, e.g. the Python version embedded in a link filename + (or egg fragment) and against an HTML link's optional PEP 503 + "data-requires-python" attribute. + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param ignore_requires_python: Whether to ignore incompatible + PEP 503 "data-requires-python" values in HTML links. Defaults + to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self._allow_yanked = allow_yanked + self._canonical_name = canonical_name + self._ignore_requires_python = ignore_requires_python + self._formats = formats + self._target_python = target_python + + self.project_name = project_name + + def evaluate_link(self, link: Link) -> Tuple[bool, Optional[str]]: + """ + Determine whether a link is a candidate for installation. + + :return: A tuple (is_candidate, result), where `result` is (1) a + version string if `is_candidate` is True, and (2) if + `is_candidate` is False, an optional string to log the reason + the link fails to qualify. + """ + version = None + if link.is_yanked and not self._allow_yanked: + reason = link.yanked_reason or "" + return (False, f"yanked for reason: {reason}") + + if link.egg_fragment: + egg_info = link.egg_fragment + ext = link.ext + else: + egg_info, ext = link.splitext() + if not ext: + return (False, "not a file") + if ext not in SUPPORTED_EXTENSIONS: + return (False, f"unsupported archive format: {ext}") + if "binary" not in self._formats and ext == WHEEL_EXTENSION: + reason = "No binaries permitted for {}".format(self.project_name) + return (False, reason) + if "macosx10" in link.path and ext == ".zip": + return (False, "macosx10 one") + if ext == WHEEL_EXTENSION: + try: + wheel = Wheel(link.filename) + except InvalidWheelFilename: + return (False, "invalid wheel filename") + if canonicalize_name(wheel.name) != self._canonical_name: + reason = "wrong project name (not {})".format(self.project_name) + return (False, reason) + + supported_tags = self._target_python.get_tags() + if not wheel.supported(supported_tags): + # Include the wheel's tags in the reason string to + # simplify troubleshooting compatibility issues. + file_tags = wheel.get_formatted_file_tags() + reason = ( + "none of the wheel's tags ({}) are compatible " + "(run pip debug --verbose to show compatible tags)".format( + ", ".join(file_tags) + ) + ) + return (False, reason) + + version = wheel.version + + # This should be up by the self.ok_binary check, but see issue 2700. + if "source" not in self._formats and ext != WHEEL_EXTENSION: + reason = f"No sources permitted for {self.project_name}" + return (False, reason) + + if not version: + version = _extract_version_from_fragment( + egg_info, + self._canonical_name, + ) + if not version: + reason = f"Missing project version for {self.project_name}" + return (False, reason) + + match = self._py_version_re.search(version) + if match: + version = version[: match.start()] + py_version = match.group(1) + if py_version != self._target_python.py_version: + return (False, "Python version is incorrect") + + supports_python = _check_link_requires_python( + link, + version_info=self._target_python.py_version_info, + ignore_requires_python=self._ignore_requires_python, + ) + if not supports_python: + # Return None for the reason text to suppress calling + # _log_skipped_link(). + return (False, None) + + logger.debug("Found link %s, version: %s", link, version) + + return (True, version) + + +def filter_unallowed_hashes( + candidates: List[InstallationCandidate], + hashes: Hashes, + project_name: str, +) -> List[InstallationCandidate]: + """ + Filter out candidates whose hashes aren't allowed, and return a new + list of candidates. + + If at least one candidate has an allowed hash, then all candidates with + either an allowed hash or no hash specified are returned. Otherwise, + the given candidates are returned. + + Including the candidates with no hash specified when there is a match + allows a warning to be logged if there is a more preferred candidate + with no hash specified. Returning all candidates in the case of no + matches lets pip report the hash of the candidate that would otherwise + have been installed (e.g. permitting the user to more easily update + their requirements file with the desired hash). + """ + if not hashes: + logger.debug( + "Given no hashes to check %s links for project %r: " + "discarding no candidates", + len(candidates), + project_name, + ) + # Make sure we're not returning back the given value. + return list(candidates) + + matches_or_no_digest = [] + # Collect the non-matches for logging purposes. + non_matches = [] + match_count = 0 + for candidate in candidates: + link = candidate.link + if not link.has_hash: + pass + elif link.is_hash_allowed(hashes=hashes): + match_count += 1 + else: + non_matches.append(candidate) + continue + + matches_or_no_digest.append(candidate) + + if match_count: + filtered = matches_or_no_digest + else: + # Make sure we're not returning back the given value. + filtered = list(candidates) + + if len(filtered) == len(candidates): + discard_message = "discarding no candidates" + else: + discard_message = "discarding {} non-matches:\n {}".format( + len(non_matches), + "\n ".join(str(candidate.link) for candidate in non_matches), + ) + + logger.debug( + "Checked %s links for project %r against %s hashes " + "(%s matches, %s no digest): %s", + len(candidates), + project_name, + hashes.digest_count, + match_count, + len(matches_or_no_digest) - match_count, + discard_message, + ) + + return filtered + + +class CandidatePreferences: + + """ + Encapsulates some of the preferences for filtering and sorting + InstallationCandidate objects. + """ + + def __init__( + self, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + ) -> None: + """ + :param allow_all_prereleases: Whether to allow all pre-releases. + """ + self.allow_all_prereleases = allow_all_prereleases + self.prefer_binary = prefer_binary + + +class BestCandidateResult: + """A collection of candidates, returned by `PackageFinder.find_best_candidate`. + + This class is only intended to be instantiated by CandidateEvaluator's + `compute_best_candidate()` method. + """ + + def __init__( + self, + candidates: List[InstallationCandidate], + applicable_candidates: List[InstallationCandidate], + best_candidate: Optional[InstallationCandidate], + ) -> None: + """ + :param candidates: A sequence of all available candidates found. + :param applicable_candidates: The applicable candidates. + :param best_candidate: The most preferred candidate found, or None + if no applicable candidates were found. + """ + assert set(applicable_candidates) <= set(candidates) + + if best_candidate is None: + assert not applicable_candidates + else: + assert best_candidate in applicable_candidates + + self._applicable_candidates = applicable_candidates + self._candidates = candidates + + self.best_candidate = best_candidate + + def iter_all(self) -> Iterable[InstallationCandidate]: + """Iterate through all candidates.""" + return iter(self._candidates) + + def iter_applicable(self) -> Iterable[InstallationCandidate]: + """Iterate through the applicable candidates.""" + return iter(self._applicable_candidates) + + +class CandidateEvaluator: + + """ + Responsible for filtering and sorting candidates for installation based + on what tags are valid. + """ + + @classmethod + def create( + cls, + project_name: str, + target_python: Optional[TargetPython] = None, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> "CandidateEvaluator": + """Create a CandidateEvaluator object. + + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + :param hashes: An optional collection of allowed hashes. + """ + if target_python is None: + target_python = TargetPython() + if specifier is None: + specifier = specifiers.SpecifierSet() + + supported_tags = target_python.get_tags() + + return cls( + project_name=project_name, + supported_tags=supported_tags, + specifier=specifier, + prefer_binary=prefer_binary, + allow_all_prereleases=allow_all_prereleases, + hashes=hashes, + ) + + def __init__( + self, + project_name: str, + supported_tags: List[Tag], + specifier: specifiers.BaseSpecifier, + prefer_binary: bool = False, + allow_all_prereleases: bool = False, + hashes: Optional[Hashes] = None, + ) -> None: + """ + :param supported_tags: The PEP 425 tags supported by the target + Python in order of preference (most preferred first). + """ + self._allow_all_prereleases = allow_all_prereleases + self._hashes = hashes + self._prefer_binary = prefer_binary + self._project_name = project_name + self._specifier = specifier + self._supported_tags = supported_tags + # Since the index of the tag in the _supported_tags list is used + # as a priority, precompute a map from tag to index/priority to be + # used in wheel.find_most_preferred_tag. + self._wheel_tag_preferences = { + tag: idx for idx, tag in enumerate(supported_tags) + } + + def get_applicable_candidates( + self, + candidates: List[InstallationCandidate], + ) -> List[InstallationCandidate]: + """ + Return the applicable candidates from a list of candidates. + """ + # Using None infers from the specifier instead. + allow_prereleases = self._allow_all_prereleases or None + specifier = self._specifier + versions = { + str(v) + for v in specifier.filter( + # We turn the version object into a str here because otherwise + # when we're debundled but setuptools isn't, Python will see + # packaging.version.Version and + # pkg_resources._vendor.packaging.version.Version as different + # types. This way we'll use a str as a common data interchange + # format. If we stop using the pkg_resources provided specifier + # and start using our own, we can drop the cast to str(). + (str(c.version) for c in candidates), + prereleases=allow_prereleases, + ) + } + + # Again, converting version to str to deal with debundling. + applicable_candidates = [c for c in candidates if str(c.version) in versions] + + filtered_applicable_candidates = filter_unallowed_hashes( + candidates=applicable_candidates, + hashes=self._hashes, + project_name=self._project_name, + ) + + return sorted(filtered_applicable_candidates, key=self._sort_key) + + def _sort_key(self, candidate: InstallationCandidate) -> CandidateSortingKey: + """ + Function to pass as the `key` argument to a call to sorted() to sort + InstallationCandidates by preference. + + Returns a tuple such that tuples sorting as greater using Python's + default comparison operator are more preferred. + + The preference is as follows: + + First and foremost, candidates with allowed (matching) hashes are + always preferred over candidates without matching hashes. This is + because e.g. if the only candidate with an allowed hash is yanked, + we still want to use that candidate. + + Second, excepting hash considerations, candidates that have been + yanked (in the sense of PEP 592) are always less preferred than + candidates that haven't been yanked. Then: + + If not finding wheels, they are sorted by version only. + If finding wheels, then the sort order is by version, then: + 1. existing installs + 2. wheels ordered via Wheel.support_index_min(self._supported_tags) + 3. source archives + If prefer_binary was set, then all wheels are sorted above sources. + + Note: it was considered to embed this logic into the Link + comparison operators, but then different sdist links + with the same version, would have to be considered equal + """ + valid_tags = self._supported_tags + support_num = len(valid_tags) + build_tag: BuildTag = () + binary_preference = 0 + link = candidate.link + if link.is_wheel: + # can raise InvalidWheelFilename + wheel = Wheel(link.filename) + try: + pri = -( + wheel.find_most_preferred_tag( + valid_tags, self._wheel_tag_preferences + ) + ) + except ValueError: + raise UnsupportedWheel( + "{} is not a supported wheel for this platform. It " + "can't be sorted.".format(wheel.filename) + ) + if self._prefer_binary: + binary_preference = 1 + if wheel.build_tag is not None: + match = re.match(r"^(\d+)(.*)$", wheel.build_tag) + build_tag_groups = match.groups() + build_tag = (int(build_tag_groups[0]), build_tag_groups[1]) + else: # sdist + pri = -(support_num) + has_allowed_hash = int(link.is_hash_allowed(self._hashes)) + yank_value = -1 * int(link.is_yanked) # -1 for yanked. + return ( + has_allowed_hash, + yank_value, + binary_preference, + candidate.version, + pri, + build_tag, + ) + + def sort_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> Optional[InstallationCandidate]: + """ + Return the best candidate per the instance's sort order, or None if + no candidate is acceptable. + """ + if not candidates: + return None + best_candidate = max(candidates, key=self._sort_key) + return best_candidate + + def compute_best_candidate( + self, + candidates: List[InstallationCandidate], + ) -> BestCandidateResult: + """ + Compute and return a `BestCandidateResult` instance. + """ + applicable_candidates = self.get_applicable_candidates(candidates) + + best_candidate = self.sort_best_candidate(applicable_candidates) + + return BestCandidateResult( + candidates, + applicable_candidates=applicable_candidates, + best_candidate=best_candidate, + ) + + +class PackageFinder: + """This finds packages. + + This is meant to match easy_install's technique for looking for + packages, by reading pages and looking for appropriate links. + """ + + def __init__( + self, + link_collector: LinkCollector, + target_python: TargetPython, + allow_yanked: bool, + use_deprecated_html5lib: bool, + format_control: Optional[FormatControl] = None, + candidate_prefs: Optional[CandidatePreferences] = None, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """ + This constructor is primarily meant to be used by the create() class + method and from tests. + + :param format_control: A FormatControl object, used to control + the selection of source packages / binary packages when consulting + the index and links. + :param candidate_prefs: Options to use when creating a + CandidateEvaluator object. + """ + if candidate_prefs is None: + candidate_prefs = CandidatePreferences() + + format_control = format_control or FormatControl(set(), set()) + + self._allow_yanked = allow_yanked + self._candidate_prefs = candidate_prefs + self._ignore_requires_python = ignore_requires_python + self._link_collector = link_collector + self._target_python = target_python + self._use_deprecated_html5lib = use_deprecated_html5lib + + self.format_control = format_control + + # These are boring links that have already been logged somehow. + self._logged_links: Set[Link] = set() + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + @classmethod + def create( + cls, + link_collector: LinkCollector, + selection_prefs: SelectionPreferences, + target_python: Optional[TargetPython] = None, + *, + use_deprecated_html5lib: bool, + ) -> "PackageFinder": + """Create a PackageFinder. + + :param selection_prefs: The candidate selection preferences, as a + SelectionPreferences object. + :param target_python: The target Python interpreter to use when + checking compatibility. If None (the default), a TargetPython + object will be constructed from the running Python. + """ + if target_python is None: + target_python = TargetPython() + + candidate_prefs = CandidatePreferences( + prefer_binary=selection_prefs.prefer_binary, + allow_all_prereleases=selection_prefs.allow_all_prereleases, + ) + + return cls( + candidate_prefs=candidate_prefs, + link_collector=link_collector, + target_python=target_python, + allow_yanked=selection_prefs.allow_yanked, + format_control=selection_prefs.format_control, + ignore_requires_python=selection_prefs.ignore_requires_python, + use_deprecated_html5lib=use_deprecated_html5lib, + ) + + @property + def target_python(self) -> TargetPython: + return self._target_python + + @property + def search_scope(self) -> SearchScope: + return self._link_collector.search_scope + + @search_scope.setter + def search_scope(self, search_scope: SearchScope) -> None: + self._link_collector.search_scope = search_scope + + @property + def find_links(self) -> List[str]: + return self._link_collector.find_links + + @property + def index_urls(self) -> List[str]: + return self.search_scope.index_urls + + @property + def trusted_hosts(self) -> Iterable[str]: + for host_port in self._link_collector.session.pip_trusted_origins: + yield build_netloc(*host_port) + + @property + def allow_all_prereleases(self) -> bool: + return self._candidate_prefs.allow_all_prereleases + + def set_allow_all_prereleases(self) -> None: + self._candidate_prefs.allow_all_prereleases = True + + @property + def prefer_binary(self) -> bool: + return self._candidate_prefs.prefer_binary + + def set_prefer_binary(self) -> None: + self._candidate_prefs.prefer_binary = True + + def make_link_evaluator(self, project_name: str) -> LinkEvaluator: + canonical_name = canonicalize_name(project_name) + formats = self.format_control.get_allowed_formats(canonical_name) + + return LinkEvaluator( + project_name=project_name, + canonical_name=canonical_name, + formats=formats, + target_python=self._target_python, + allow_yanked=self._allow_yanked, + ignore_requires_python=self._ignore_requires_python, + ) + + def _sort_links(self, links: Iterable[Link]) -> List[Link]: + """ + Returns elements of links in order, non-egg links first, egg links + second, while eliminating duplicates + """ + eggs, no_eggs = [], [] + seen: Set[Link] = set() + for link in links: + if link not in seen: + seen.add(link) + if link.egg_fragment: + eggs.append(link) + else: + no_eggs.append(link) + return no_eggs + eggs + + def _log_skipped_link(self, link: Link, reason: str) -> None: + if link not in self._logged_links: + # Put the link at the end so the reason is more visible and because + # the link string is usually very long. + logger.debug("Skipping link: %s: %s", reason, link) + self._logged_links.add(link) + + def get_install_candidate( + self, link_evaluator: LinkEvaluator, link: Link + ) -> Optional[InstallationCandidate]: + """ + If the link is a candidate for install, convert it to an + InstallationCandidate and return it. Otherwise, return None. + """ + is_candidate, result = link_evaluator.evaluate_link(link) + if not is_candidate: + if result: + self._log_skipped_link(link, reason=result) + return None + + return InstallationCandidate( + name=link_evaluator.project_name, + link=link, + version=result, + ) + + def evaluate_links( + self, link_evaluator: LinkEvaluator, links: Iterable[Link] + ) -> List[InstallationCandidate]: + """ + Convert links that are candidates to InstallationCandidate objects. + """ + candidates = [] + for link in self._sort_links(links): + candidate = self.get_install_candidate(link_evaluator, link) + if candidate is not None: + candidates.append(candidate) + + return candidates + + def process_project_url( + self, project_url: Link, link_evaluator: LinkEvaluator + ) -> List[InstallationCandidate]: + logger.debug( + "Fetching project page and analyzing links: %s", + project_url, + ) + html_page = self._link_collector.fetch_page(project_url) + if html_page is None: + return [] + + page_links = list(parse_links(html_page, self._use_deprecated_html5lib)) + + with indent_log(): + package_links = self.evaluate_links( + link_evaluator, + links=page_links, + ) + + return package_links + + @functools.lru_cache(maxsize=None) + def find_all_candidates(self, project_name: str) -> List[InstallationCandidate]: + """Find all available InstallationCandidate for project_name + + This checks index_urls and find_links. + All versions found are returned as an InstallationCandidate list. + + See LinkEvaluator.evaluate_link() for details on which files + are accepted. + """ + link_evaluator = self.make_link_evaluator(project_name) + + collected_sources = self._link_collector.collect_sources( + project_name=project_name, + candidates_from_page=functools.partial( + self.process_project_url, + link_evaluator=link_evaluator, + ), + ) + + page_candidates_it = itertools.chain.from_iterable( + source.page_candidates() + for sources in collected_sources + for source in sources + if source is not None + ) + page_candidates = list(page_candidates_it) + + file_links_it = itertools.chain.from_iterable( + source.file_links() + for sources in collected_sources + for source in sources + if source is not None + ) + file_candidates = self.evaluate_links( + link_evaluator, + sorted(file_links_it, reverse=True), + ) + + if logger.isEnabledFor(logging.DEBUG) and file_candidates: + paths = [] + for candidate in file_candidates: + assert candidate.link.url # we need to have a URL + try: + paths.append(candidate.link.file_path) + except Exception: + paths.append(candidate.link.url) # it's not a local file + + logger.debug("Local files found: %s", ", ".join(paths)) + + # This is an intentional priority ordering + return file_candidates + page_candidates + + def make_candidate_evaluator( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> CandidateEvaluator: + """Create a CandidateEvaluator object to use.""" + candidate_prefs = self._candidate_prefs + return CandidateEvaluator.create( + project_name=project_name, + target_python=self._target_python, + prefer_binary=candidate_prefs.prefer_binary, + allow_all_prereleases=candidate_prefs.allow_all_prereleases, + specifier=specifier, + hashes=hashes, + ) + + @functools.lru_cache(maxsize=None) + def find_best_candidate( + self, + project_name: str, + specifier: Optional[specifiers.BaseSpecifier] = None, + hashes: Optional[Hashes] = None, + ) -> BestCandidateResult: + """Find matches for the given project and specifier. + + :param specifier: An optional object implementing `filter` + (e.g. `packaging.specifiers.SpecifierSet`) to filter applicable + versions. + + :return: A `BestCandidateResult` instance. + """ + candidates = self.find_all_candidates(project_name) + candidate_evaluator = self.make_candidate_evaluator( + project_name=project_name, + specifier=specifier, + hashes=hashes, + ) + return candidate_evaluator.compute_best_candidate(candidates) + + def find_requirement( + self, req: InstallRequirement, upgrade: bool + ) -> Optional[InstallationCandidate]: + """Try to find a Link matching req + + Expects req, an InstallRequirement and upgrade, a boolean + Returns a InstallationCandidate if found, + Raises DistributionNotFound or BestVersionAlreadyInstalled otherwise + """ + hashes = req.hashes(trust_internet=False) + best_candidate_result = self.find_best_candidate( + req.name, + specifier=req.specifier, + hashes=hashes, + ) + best_candidate = best_candidate_result.best_candidate + + installed_version: Optional[_BaseVersion] = None + if req.satisfied_by is not None: + installed_version = req.satisfied_by.version + + def _format_versions(cand_iter: Iterable[InstallationCandidate]) -> str: + # This repeated parse_version and str() conversion is needed to + # handle different vendoring sources from pip and pkg_resources. + # If we stop using the pkg_resources provided specifier and start + # using our own, we can drop the cast to str(). + return ( + ", ".join( + sorted( + {str(c.version) for c in cand_iter}, + key=parse_version, + ) + ) + or "none" + ) + + if installed_version is None and best_candidate is None: + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req, + _format_versions(best_candidate_result.iter_all()), + ) + + raise DistributionNotFound( + "No matching distribution found for {}".format(req) + ) + + best_installed = False + if installed_version and ( + best_candidate is None or best_candidate.version <= installed_version + ): + best_installed = True + + if not upgrade and installed_version is not None: + if best_installed: + logger.debug( + "Existing installed version (%s) is most up-to-date and " + "satisfies requirement", + installed_version, + ) + else: + logger.debug( + "Existing installed version (%s) satisfies requirement " + "(most up-to-date version is %s)", + installed_version, + best_candidate.version, + ) + return None + + if best_installed: + # We have an existing version, and its the best version + logger.debug( + "Installed version (%s) is most up-to-date (past versions: %s)", + installed_version, + _format_versions(best_candidate_result.iter_applicable()), + ) + raise BestVersionAlreadyInstalled + + logger.debug( + "Using version %s (newest of versions: %s)", + best_candidate.version, + _format_versions(best_candidate_result.iter_applicable()), + ) + return best_candidate + + +def _find_name_version_sep(fragment: str, canonical_name: str) -> int: + """Find the separator's index based on the package's canonical name. + + :param fragment: A + filename "fragment" (stem) or + egg fragment. + :param canonical_name: The package's canonical name. + + This function is needed since the canonicalized name does not necessarily + have the same length as the egg info's name part. An example:: + + >>> fragment = 'foo__bar-1.0' + >>> canonical_name = 'foo-bar' + >>> _find_name_version_sep(fragment, canonical_name) + 8 + """ + # Project name and version must be separated by one single dash. Find all + # occurrences of dashes; if the string in front of it matches the canonical + # name, this is the one separating the name and version parts. + for i, c in enumerate(fragment): + if c != "-": + continue + if canonicalize_name(fragment[:i]) == canonical_name: + return i + raise ValueError(f"{fragment} does not match {canonical_name}") + + +def _extract_version_from_fragment(fragment: str, canonical_name: str) -> Optional[str]: + """Parse the version string from a + filename + "fragment" (stem) or egg fragment. + + :param fragment: The string to parse. E.g. foo-2.1 + :param canonical_name: The canonicalized name of the package this + belongs to. + """ + try: + version_start = _find_name_version_sep(fragment, canonical_name) + 1 + except ValueError: + return None + version = fragment[version_start:] + if not version: + return None + return version diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/index/sources.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/sources.py new file mode 100644 index 0000000..eec3f12 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/index/sources.py @@ -0,0 +1,224 @@ +import logging +import mimetypes +import os +import pathlib +from typing import Callable, Iterable, Optional, Tuple + +from pip._internal.models.candidate import InstallationCandidate +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url, url_to_path +from pip._internal.vcs import is_url + +logger = logging.getLogger(__name__) + +FoundCandidates = Iterable[InstallationCandidate] +FoundLinks = Iterable[Link] +CandidatesFromPage = Callable[[Link], Iterable[InstallationCandidate]] +PageValidator = Callable[[Link], bool] + + +class LinkSource: + @property + def link(self) -> Optional[Link]: + """Returns the underlying link, if there's one.""" + raise NotImplementedError() + + def page_candidates(self) -> FoundCandidates: + """Candidates found by parsing an archive listing HTML file.""" + raise NotImplementedError() + + def file_links(self) -> FoundLinks: + """Links found by specifying archives directly.""" + raise NotImplementedError() + + +def _is_html_file(file_url: str) -> bool: + return mimetypes.guess_type(file_url, strict=False)[0] == "text/html" + + +class _FlatDirectorySource(LinkSource): + """Link source specified by ``--find-links=``. + + This looks the content of the directory, and returns: + + * ``page_candidates``: Links listed on each HTML file in the directory. + * ``file_candidates``: Archives in the directory. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + path: str, + ) -> None: + self._candidates_from_page = candidates_from_page + self._path = pathlib.Path(os.path.realpath(path)) + + @property + def link(self) -> Optional[Link]: + return None + + def page_candidates(self) -> FoundCandidates: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if not _is_html_file(url): + continue + yield from self._candidates_from_page(Link(url)) + + def file_links(self) -> FoundLinks: + for path in self._path.iterdir(): + url = path_to_url(str(path)) + if _is_html_file(url): + continue + yield Link(url) + + +class _LocalFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + If a URL is supplied, it must be a ``file:`` URL. If a path is supplied to + the option, it is converted to a URL first. This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not _is_html_file(self._link.url): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + if _is_html_file(self._link.url): + return + yield self._link + + +class _RemoteFileSource(LinkSource): + """``--find-links=`` or ``--[extra-]index-url=``. + + This returns: + + * ``page_candidates``: Links listed on an HTML file. + * ``file_candidates``: The non-HTML file. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._page_validator = page_validator + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + if not self._page_validator(self._link): + return + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + yield self._link + + +class _IndexDirectorySource(LinkSource): + """``--[extra-]index-url=``. + + This is treated like a remote URL; ``candidates_from_page`` contains logic + for this by appending ``index.html`` to the link. + """ + + def __init__( + self, + candidates_from_page: CandidatesFromPage, + link: Link, + ) -> None: + self._candidates_from_page = candidates_from_page + self._link = link + + @property + def link(self) -> Optional[Link]: + return self._link + + def page_candidates(self) -> FoundCandidates: + yield from self._candidates_from_page(self._link) + + def file_links(self) -> FoundLinks: + return () + + +def build_source( + location: str, + *, + candidates_from_page: CandidatesFromPage, + page_validator: PageValidator, + expand_dir: bool, + cache_link_parsing: bool, +) -> Tuple[Optional[str], Optional[LinkSource]]: + + path: Optional[str] = None + url: Optional[str] = None + if os.path.exists(location): # Is a local path. + url = path_to_url(location) + path = location + elif location.startswith("file:"): # A file: URL. + url = location + path = url_to_path(location) + elif is_url(location): + url = location + + if url is None: + msg = ( + "Location '%s' is ignored: " + "it is either a non-existing path or lacks a specific scheme." + ) + logger.warning(msg, location) + return (None, None) + + if path is None: + source: LinkSource = _RemoteFileSource( + candidates_from_page=candidates_from_page, + page_validator=page_validator, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + + if os.path.isdir(path): + if expand_dir: + source = _FlatDirectorySource( + candidates_from_page=candidates_from_page, + path=path, + ) + else: + source = _IndexDirectorySource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + elif os.path.isfile(path): + source = _LocalFileSource( + candidates_from_page=candidates_from_page, + link=Link(url, cache_link_parsing=cache_link_parsing), + ) + return (url, source) + logger.warning( + "Location '%s' is ignored: it is neither a file nor a directory.", + location, + ) + return (url, None) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__init__.py new file mode 100644 index 0000000..ac0c166 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__init__.py @@ -0,0 +1,520 @@ +import functools +import logging +import os +import pathlib +import sys +import sysconfig +from typing import Any, Dict, Iterator, List, Optional, Tuple + +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.virtualenv import running_under_virtualenv + +from . import _distutils, _sysconfig +from .base import ( + USER_CACHE_DIR, + get_major_minor_version, + get_src_prefix, + is_osx_framework, + site_packages, + user_site, +) + +__all__ = [ + "USER_CACHE_DIR", + "get_bin_prefix", + "get_bin_user", + "get_major_minor_version", + "get_platlib", + "get_prefixed_libs", + "get_purelib", + "get_scheme", + "get_src_prefix", + "site_packages", + "user_site", +] + + +logger = logging.getLogger(__name__) + + +_PLATLIBDIR: str = getattr(sys, "platlibdir", "lib") + +_USE_SYSCONFIG_DEFAULT = sys.version_info >= (3, 10) + + +def _should_use_sysconfig() -> bool: + """This function determines the value of _USE_SYSCONFIG. + + By default, pip uses sysconfig on Python 3.10+. + But Python distributors can override this decision by setting: + sysconfig._PIP_USE_SYSCONFIG = True / False + Rationale in https://github.com/pypa/pip/issues/10647 + + This is a function for testability, but should be constant during any one + run. + """ + return bool(getattr(sysconfig, "_PIP_USE_SYSCONFIG", _USE_SYSCONFIG_DEFAULT)) + + +_USE_SYSCONFIG = _should_use_sysconfig() + +# Be noisy about incompatibilities if this platforms "should" be using +# sysconfig, but is explicitly opting out and using distutils instead. +if _USE_SYSCONFIG_DEFAULT and not _USE_SYSCONFIG: + _MISMATCH_LEVEL = logging.WARNING +else: + _MISMATCH_LEVEL = logging.DEBUG + + +def _looks_like_bpo_44860() -> bool: + """The resolution to bpo-44860 will change this incorrect platlib. + + See . + """ + from distutils.command.install import INSTALL_SCHEMES # type: ignore + + try: + unix_user_platlib = INSTALL_SCHEMES["unix_user"]["platlib"] + except KeyError: + return False + return unix_user_platlib == "$usersite" + + +def _looks_like_red_hat_patched_platlib_purelib(scheme: Dict[str, str]) -> bool: + platlib = scheme["platlib"] + if "/$platlibdir/" in platlib: + platlib = platlib.replace("/$platlibdir/", f"/{_PLATLIBDIR}/") + if "/lib64/" not in platlib: + return False + unpatched = platlib.replace("/lib64/", "/lib/") + return unpatched.replace("$platbase/", "$base/") == scheme["purelib"] + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_lib() -> bool: + """Red Hat patches platlib in unix_prefix and unix_home, but not purelib. + + This is the only way I can see to tell a Red Hat-patched Python. + """ + from distutils.command.install import INSTALL_SCHEMES # type: ignore + + return all( + k in INSTALL_SCHEMES + and _looks_like_red_hat_patched_platlib_purelib(INSTALL_SCHEMES[k]) + for k in ("unix_prefix", "unix_home") + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_debian_scheme() -> bool: + """Debian adds two additional schemes.""" + from distutils.command.install import INSTALL_SCHEMES # type: ignore + + return "deb_system" in INSTALL_SCHEMES and "unix_local" in INSTALL_SCHEMES + + +@functools.lru_cache(maxsize=None) +def _looks_like_red_hat_scheme() -> bool: + """Red Hat patches ``sys.prefix`` and ``sys.exec_prefix``. + + Red Hat's ``00251-change-user-install-location.patch`` changes the install + command's ``prefix`` and ``exec_prefix`` to append ``"/local"``. This is + (fortunately?) done quite unconditionally, so we create a default command + object without any configuration to detect this. + """ + from distutils.command.install import install + from distutils.dist import Distribution + + cmd: Any = install(Distribution()) + cmd.finalize_options() + return ( + cmd.exec_prefix == f"{os.path.normpath(sys.exec_prefix)}/local" + and cmd.prefix == f"{os.path.normpath(sys.prefix)}/local" + ) + + +@functools.lru_cache(maxsize=None) +def _looks_like_slackware_scheme() -> bool: + """Slackware patches sysconfig but fails to patch distutils and site. + + Slackware changes sysconfig's user scheme to use ``"lib64"`` for the lib + path, but does not do the same to the site module. + """ + if user_site is None: # User-site not available. + return False + try: + paths = sysconfig.get_paths(scheme="posix_user", expand=False) + except KeyError: # User-site not available. + return False + return "/lib64/" in paths["purelib"] and "/lib64/" not in user_site + + +@functools.lru_cache(maxsize=None) +def _looks_like_msys2_mingw_scheme() -> bool: + """MSYS2 patches distutils and sysconfig to use a UNIX-like scheme. + + However, MSYS2 incorrectly patches sysconfig ``nt`` scheme. The fix is + likely going to be included in their 3.10 release, so we ignore the warning. + See msys2/MINGW-packages#9319. + + MSYS2 MINGW's patch uses lowercase ``"lib"`` instead of the usual uppercase, + and is missing the final ``"site-packages"``. + """ + paths = sysconfig.get_paths("nt", expand=False) + return all( + "Lib" not in p and "lib" in p and not p.endswith("site-packages") + for p in (paths[key] for key in ("platlib", "purelib")) + ) + + +def _fix_abiflags(parts: Tuple[str]) -> Iterator[str]: + ldversion = sysconfig.get_config_var("LDVERSION") + abiflags: str = getattr(sys, "abiflags", None) + + # LDVERSION does not end with sys.abiflags. Just return the path unchanged. + if not ldversion or not abiflags or not ldversion.endswith(abiflags): + yield from parts + return + + # Strip sys.abiflags from LDVERSION-based path components. + for part in parts: + if part.endswith(ldversion): + part = part[: (0 - len(abiflags))] + yield part + + +@functools.lru_cache(maxsize=None) +def _warn_mismatched(old: pathlib.Path, new: pathlib.Path, *, key: str) -> None: + issue_url = "https://github.com/pypa/pip/issues/10151" + message = ( + "Value for %s does not match. Please report this to <%s>" + "\ndistutils: %s" + "\nsysconfig: %s" + ) + logger.log(_MISMATCH_LEVEL, message, key, issue_url, old, new) + + +def _warn_if_mismatch(old: pathlib.Path, new: pathlib.Path, *, key: str) -> bool: + if old == new: + return False + _warn_mismatched(old, new, key=key) + return True + + +@functools.lru_cache(maxsize=None) +def _log_context( + *, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + prefix: Optional[str] = None, +) -> None: + parts = [ + "Additional context:", + "user = %r", + "home = %r", + "root = %r", + "prefix = %r", + ] + + logger.log(_MISMATCH_LEVEL, "\n".join(parts), user, home, root, prefix) + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + new = _sysconfig.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + if _USE_SYSCONFIG: + return new + + old = _distutils.get_scheme( + dist_name, + user=user, + home=home, + root=root, + isolated=isolated, + prefix=prefix, + ) + + warning_contexts = [] + for k in SCHEME_KEYS: + old_v = pathlib.Path(getattr(old, k)) + new_v = pathlib.Path(getattr(new, k)) + + if old_v == new_v: + continue + + # distutils incorrectly put PyPy packages under ``site-packages/python`` + # in the ``posix_home`` scheme, but PyPy devs said they expect the + # directory name to be ``pypy`` instead. So we treat this as a bug fix + # and not warn about it. See bpo-43307 and python/cpython#24628. + skip_pypy_special_case = ( + sys.implementation.name == "pypy" + and home is not None + and k in ("platlib", "purelib") + and old_v.parent == new_v.parent + and old_v.name.startswith("python") + and new_v.name.startswith("pypy") + ) + if skip_pypy_special_case: + continue + + # sysconfig's ``osx_framework_user`` does not include ``pythonX.Y`` in + # the ``include`` value, but distutils's ``headers`` does. We'll let + # CPython decide whether this is a bug or feature. See bpo-43948. + skip_osx_framework_user_special_case = ( + user + and is_osx_framework() + and k == "headers" + and old_v.parent.parent == new_v.parent + and old_v.parent.name.startswith("python") + ) + if skip_osx_framework_user_special_case: + continue + + # On Red Hat and derived Linux distributions, distutils is patched to + # use "lib64" instead of "lib" for platlib. + if k == "platlib" and _looks_like_red_hat_lib(): + continue + + # On Python 3.9+, sysconfig's posix_user scheme sets platlib against + # sys.platlibdir, but distutils's unix_user incorrectly coninutes + # using the same $usersite for both platlib and purelib. This creates a + # mismatch when sys.platlibdir is not "lib". + skip_bpo_44860 = ( + user + and k == "platlib" + and not WINDOWS + and sys.version_info >= (3, 9) + and _PLATLIBDIR != "lib" + and _looks_like_bpo_44860() + ) + if skip_bpo_44860: + continue + + # Slackware incorrectly patches posix_user to use lib64 instead of lib, + # but not usersite to match the location. + skip_slackware_user_scheme = ( + user + and k in ("platlib", "purelib") + and not WINDOWS + and _looks_like_slackware_scheme() + ) + if skip_slackware_user_scheme: + continue + + # Both Debian and Red Hat patch Python to place the system site under + # /usr/local instead of /usr. Debian also places lib in dist-packages + # instead of site-packages, but the /usr/local check should cover it. + skip_linux_system_special_case = ( + not (user or home or prefix or running_under_virtualenv()) + and old_v.parts[1:3] == ("usr", "local") + and len(new_v.parts) > 1 + and new_v.parts[1] == "usr" + and (len(new_v.parts) < 3 or new_v.parts[2] != "local") + and (_looks_like_red_hat_scheme() or _looks_like_debian_scheme()) + ) + if skip_linux_system_special_case: + continue + + # On Python 3.7 and earlier, sysconfig does not include sys.abiflags in + # the "pythonX.Y" part of the path, but distutils does. + skip_sysconfig_abiflag_bug = ( + sys.version_info < (3, 8) + and not WINDOWS + and k in ("headers", "platlib", "purelib") + and tuple(_fix_abiflags(old_v.parts)) == new_v.parts + ) + if skip_sysconfig_abiflag_bug: + continue + + # MSYS2 MINGW's sysconfig patch does not include the "site-packages" + # part of the path. This is incorrect and will be fixed in MSYS. + skip_msys2_mingw_bug = ( + WINDOWS and k in ("platlib", "purelib") and _looks_like_msys2_mingw_scheme() + ) + if skip_msys2_mingw_bug: + continue + + # CPython's POSIX install script invokes pip (via ensurepip) against the + # interpreter located in the source tree, not the install site. This + # triggers special logic in sysconfig that's not present in distutils. + # https://github.com/python/cpython/blob/8c21941ddaf/Lib/sysconfig.py#L178-L194 + skip_cpython_build = ( + sysconfig.is_python_build(check_home=True) + and not WINDOWS + and k in ("headers", "include", "platinclude") + ) + if skip_cpython_build: + continue + + warning_contexts.append((old_v, new_v, f"scheme.{k}")) + + if not warning_contexts: + return old + + # Check if this path mismatch is caused by distutils config files. Those + # files will no longer work once we switch to sysconfig, so this raises a + # deprecation message for them. + default_old = _distutils.distutils_scheme( + dist_name, + user, + home, + root, + isolated, + prefix, + ignore_config_files=True, + ) + if any(default_old[k] != getattr(old, k) for k in SCHEME_KEYS): + deprecated( + reason=( + "Configuring installation scheme with distutils config files " + "is deprecated and will no longer work in the near future. If you " + "are using a Homebrew or Linuxbrew Python, please see discussion " + "at https://github.com/Homebrew/homebrew-core/issues/76621" + ), + replacement=None, + gone_in=None, + ) + return old + + # Post warnings about this mismatch so user can report them back. + for old_v, new_v, key in warning_contexts: + _warn_mismatched(old_v, new_v, key=key) + _log_context(user=user, home=home, root=root, prefix=prefix) + + return old + + +def get_bin_prefix() -> str: + new = _sysconfig.get_bin_prefix() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_bin_prefix() + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="bin_prefix"): + _log_context() + return old + + +def get_bin_user() -> str: + return _sysconfig.get_scheme("", user=True).scripts + + +def _looks_like_deb_system_dist_packages(value: str) -> bool: + """Check if the value is Debian's APT-controlled dist-packages. + + Debian's ``distutils.sysconfig.get_python_lib()`` implementation returns the + default package path controlled by APT, but does not patch ``sysconfig`` to + do the same. This is similar to the bug worked around in ``get_scheme()``, + but here the default is ``deb_system`` instead of ``unix_local``. Ultimately + we can't do anything about this Debian bug, and this detection allows us to + skip the warning when needed. + """ + if not _looks_like_debian_scheme(): + return False + if value == "/usr/lib/python3/dist-packages": + return True + return False + + +def get_purelib() -> str: + """Return the default pure-Python lib location.""" + new = _sysconfig.get_purelib() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_purelib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="purelib"): + _log_context() + return old + + +def get_platlib() -> str: + """Return the default platform-shared lib location.""" + new = _sysconfig.get_platlib() + if _USE_SYSCONFIG: + return new + + old = _distutils.get_platlib() + if _looks_like_deb_system_dist_packages(old): + return old + if _warn_if_mismatch(pathlib.Path(old), pathlib.Path(new), key="platlib"): + _log_context() + return old + + +def _deduplicated(v1: str, v2: str) -> List[str]: + """Deduplicate values from a list.""" + if v1 == v2: + return [v1] + return [v1, v2] + + +def _looks_like_apple_library(path: str) -> bool: + """Apple patches sysconfig to *always* look under */Library/Python*.""" + if sys.platform[:6] != "darwin": + return False + return path == f"/Library/Python/{get_major_minor_version()}/site-packages" + + +def get_prefixed_libs(prefix: str) -> List[str]: + """Return the lib locations under ``prefix``.""" + new_pure, new_plat = _sysconfig.get_prefixed_libs(prefix) + if _USE_SYSCONFIG: + return _deduplicated(new_pure, new_plat) + + old_pure, old_plat = _distutils.get_prefixed_libs(prefix) + old_lib_paths = _deduplicated(old_pure, old_plat) + + # Apple's Python (shipped with Xcode and Command Line Tools) hard-code + # platlib and purelib to '/Library/Python/X.Y/site-packages'. This will + # cause serious build isolation bugs when Apple starts shipping 3.10 because + # pip will install build backends to the wrong location. This tells users + # who is at fault so Apple may notice it and fix the issue in time. + if all(_looks_like_apple_library(p) for p in old_lib_paths): + deprecated( + reason=( + "Python distributed by Apple's Command Line Tools incorrectly " + "patches sysconfig to always point to '/Library/Python'. This " + "will cause build isolation to operate incorrectly on Python " + "3.10 or later. Please help report this to Apple so they can " + "fix this. https://developer.apple.com/bug-reporting/" + ), + replacement=None, + gone_in=None, + ) + return old_lib_paths + + warned = [ + _warn_if_mismatch( + pathlib.Path(old_pure), + pathlib.Path(new_pure), + key="prefixed-purelib", + ), + _warn_if_mismatch( + pathlib.Path(old_plat), + pathlib.Path(new_plat), + key="prefixed-platlib", + ), + ] + if any(warned): + _log_context(prefix=prefix) + + return old_lib_paths diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70a60c34187e1052ebcb46ad728a38a8a95cdc99 GIT binary patch literal 12394 zcmbVSTW}lKdEOfqizNtNMBOM^-pI0S$RePdI{{Mof)}qJAFy&j^u|l>b=uG=A}=4=`=H)ac8mK;~T^A-2-UA6R-d&D)wfXHs?rKjDa?lWTW zoZ=d*&x+hys+1Q)?y)6J42zLlM(H{Cxhy6WmgsZiJPES3sM&rz`p zJx_=+*TQT^m$dx~w-{o#*n^gnuCjVcsABJJH5su_?7wAfsio78w2X@b+;ZlTmV@F6 zZh8KZmP6u6ZaMo%izB|mEiZ_}Zq_}@>&nn`$q-M8BUsyuJ!77B_0^ZeQBI$6kBT9o zE?MGPk>@#H7LT-pPL?<(p2Iv}?V0B|_DcT~e_)7$drTDF0e<(1LJ zqupS&hImDsN6pug_E*K%P`Z$mE{NAqdQD8C_Y{w?nO3Hl7Bgs>6t8#ZxhO87W(sSe znd5$j_%-ncYNv%dr{v$fPjWPyHzWN*eIqias*7P{T?$=U34IwEm#YEFZ#BZIU$1yk z>RPkmxp^%bn47#f{pNJ}jp=X9MdsY%id%E@YLtHG((Ke*@5~`<3%4QN#Y*T3l=jJH zy44W0tt>3t>;{BM=E(^S>8CJaj`Cubh^y^F2Wh^XreQx?{dGZ2Y zSf09cHQKxEhUHpi)tBX3wT|?LD+4Sq%27ig7t46>QuSsuTn);8aI?H5D>ZlBmut~r zPz~L3qq4YGS$2ac(+sc{s>=_^VXPybVxd~^Op&E2sZ2fP2z42ts)knyz3M_V!UcYv zE6S(|lJ=%_somx!F?Hl9M$0iucGEm|GKZ+jNT#O1kf%uT*EJ9Fvvf^9qadu;>#mnuy!Jnl5A4F@C$obJImnC{9( zxPr&&!pRfQ72+|?uv1INDXR-juuYCi_6t;rMXa8^lQb& zMx#>19*Wfl zOtjTQM>Hi??NsU;AV$0paCuCKX!OyQ=Z(l%@O>{zgDWawD5FewqtTxJU6!Y&XD(d7 zeC?hhpTX&J@}OQ^@oR3eQk7n1p?GCu%Dqt(67Qb$>!I{L&z0CJoyjYw3ulX9s-#FK zR3tv1=N`qX73P{Yrx;48Z5&Y1Lsh<^h}4|2 zuH@6L;2L;Tx`FROEr3%(-&tt*6KBr6c=m*|UiCa@aivmUP8h0MU-TsuPUs|pm9X)g z>pJH;Jh9MR4zM#KQNfqXF+cEx=i_seq>k>X(a@#Yxoa0LUoOXbZVtMlUcJd`AWA1M zm}zB>kX~Q~qDT9?3XFKJR;i0Zl{m%oI)a$@W>xXKBdp zvgiA20Tj!cTgKkYywumx6y%U(Q<|1jEj|0tRJAYVNg84XtZf!)ADurP852J~lq<;K z7*sj}p|#Z;iX3gLcL0He9;!dY0ezz1)zD_3O_lrTIJn&qChE1ehQ0tdcQwqC*{{$6 z=IvQIfq7el#UtBlt@uDKK1dTAo;_2XX{DGUTQ>Jts041YWgg)tC>rZa*nzZkF~g!O z4`IH%E>GdXbJGblDj{|!c9QA2UNT82;*|zI#;XQ`GthM%Ek@sz}? zWWZ{bn?beZ_Axb@z@v&nbPNt7=`i(&VAxRmp0cD0T^P44k(yGrR93%c>vyiY!ns%h zKk`a~4quXv;**cf6!eFP%Ou>fvZ?zR6_X_4;*Odkwe8ov4QIWw;ap<98i2te8lek; zs5r?>A?Qr1L>u=ow>*Xo^sxuYEN$;Je!&qW-vNWXJGiN~)en>#ia!`CAAkk+V{30? z!|wq{&p}3J^D))#X^~bq5vglDb9^?;y_s{%Zr#1vkmr|a<}4EJeM8Z7>!GdM4_n6` zcWmI6!Z}h$UU0t9odAq6&_lCC8i`*~vRJ-n2?zvNYAS{Ui8teMrY zurK6mDD)jZ2@+9g62IUelFs3iMiY9QDFk7`6M~RxJvHSnRAKHaLcq$d`;@81=E;d= zGbpf@;pGubS|HsTy0ysWE%N4}Bf8t_p)2o=ceKBEN0!vA3{+*Voka$*(9>rsSf(Wpq3f09Uzx^Y6gcM<+iOA zBemD5a(JlX>V9U?A(|Y$mJPnx&3w`&8|r{B_j#@h{0ENi6g4MPx#7a8r?{fFWvSLUk2} z493j3t!*mrD0Lg?Lf_cmMHlF`4vYcgW$q{0eM+Q49>=y_ByQxKhF zyC8f(a54@8`W`(3I5w>NDNj6C^F`CcA_zp!&cMg;g9Noep^zz!Oekbn9C-!>`8<-m z!TyMRnp!jL&)|K5B$x*vl%lr>JxZ0e&%xe<3_6=l6wvoEl6?{@ZK#?$3Ij{{WK5Iq zpr!9HQC7%}(eVq2IYVWYoN^rDZS6zYR$++LErl(tiJT?UWMR8j)~b96es~kE%c<^( z?KqTFW~&sgg5D&g`PU?!rYm?!?n|@g$5bpLU=3Ge2Jsaa1wyl16YH zxSUQkVA9j%7`E(_e}EH)*MRA~rT`*<^~cdwCA&?4x1I|q)KL!AWe64lS{DXhlEWOI zC4tx)Sm;#o%}cYdzte^BPrY>dT6?ybA&*@QiA3ns^_)N9YHdrq7umrN|>9tsc$*7R=!!7fDb%e;tSs zpdvVqgdxTVP$rDb4b>kJ02>g-kr;{IRkKP0HFOB35$Tt!3-Sq!Yq1O8-9Io$WI;g( zq%rSl@*KKEYGVhx%JZoH5q<&r(~Lp1@h|N!TPJ(jnCVL)h2`~xkskv@9@!OfE(521 z$ndVxn}AIOm$t!@d>M_rD2O4iQD1X6Bw^8bsU%dq${!>1b287``+F2@h){JbraDWg zyharlDA~q2JP*s|p4r|s!Igc8WaTx}ETcahA%Rtf^tRndiMDq?r z^RBvyI73JpR@u^l4OF?it>LHMG1}T)H8|K-rV%l{NazTNsI5#X?~ZNiZ5{0xEsJfP z;;CV(t!=6Ml8RA>+yy{QUFW7@bd*6ok z8r5yM2^Laz7`~7zG>`6kBGT*bx_lSKMPhOKBeo}%X5lx9U*I4S>Lw_*X%G!Vtqn@G zfgC{(Gp15rpKU$caZ-O};Ns--CtGuGbKr*T#M6kRbc{lcAb-KR!Wspdr2%9D>4peH z1)Y03IB$1VHDF43oSCFq)7<@7p^1b;y;p|J`OmF3dHx-Pt^_w2%z9n03HwBo8ikX4pt)g^|WkdXf;WemK0|P5`U7qM5+z;U&DK) zM@bDyWURs-;T#{cc9xW#WXeLBESHl7`~zlSufnnpS#pEs%Md%2>%bt9RYjDBLcNQm zG&+A{$Yk)NBMp860U_(&*)oJ6CDhyIrWtB-sBPkK^+#JjRF{>_bZ9_{JlwRx)EzTS zf1tLlEvTB!Ok8f8N!e~^+BR6_`S%Wm)@o+e7UY~<1G^|q6;Dg(urb%#nbm=|y*j{c z=yfM6a1^MwIZrbWv}T2uU=@mhX{l?{W2KMVJVveDR(6iq&(%vN??!W+FuGX73xe(um;I1ULzZ8~(f?R9@JtKIHIN)RKduJvN?9(h02x7aP zYl;`no;`K)9t<-=1_3U(29nrl&8>&HL_nwk!Fu@~QImjm{)nWDaCrbpl5y}QiB%m#K(PXbtLV!BTCin`g z0VW}v&9P{9_aue=V)Nosj{JEJN=2!V?h+YGF$|4?-4HJAV)-dAG^;>ZW*mZvhP&V; zLFbW<@Q56s`N-PHV0{IFCMJaG;`9_oiq{CxRuvTqg zDUFSC(7OFzI#Q!7U=Jl<6hm6eKgMHZBLm{MQ0y}xXmL*N+N;%b0uRt zj%){|fdFJem}Ql(ULW^&yBRE<_xs(7|i<6 zLW_wpMrTZlW}_BEN3E%;W9Bew5SD#NvyAu5Z>Ku*k0yPGQy8n`9f&v>^yV+jl&0>} zObun^djHK|jAu~RG}N2_W7s);6gx6BmYXh!164Te+l8X!wh?^4t85}JA+0uaUZ`_f z4Glsfu$U6|l)p{M$CMD* zf-A_#n}O}N=f|f=qkoSyDGeq73tvSWN6ZBP8iFkRB>@FnRwz&#U&7*+c!QR;BW4#z zWH`zln^=Z!)%kZU$l2q9IZkIyK`TFuXI+e}(`9JrzT z>J>MMBX!manqm9h%Ldxyb_{5Ke*5ZyBHY)#unLzAK`dS$g{>>~XE^Q%r3;^u?!6Z% zM9uzXOki5#aki~o8ON#F_IU_FQP{JyUs6xJsYDSw>nm;@X4gf4ERH12vol`NQPLu6QRL|v zUqtfDl>i`-N|&in47ew`lV*iL&uxWpIJCAELhJZdW-KN}=bY%?Zz9GL6afZ4iLd4h z90rQjMkba@5}zKmK}%=9b%*Yde?$#Clm?CcYwZ8$qsUmKCZRNl28rUJ_FqZ|Ndc0) z-a7HP^#gJO1=J>j6#xgZV-E~n39;mpJy6)}|GNho`?uJG{4<(_N|AQsBz~v55e3w- zx}j5~6Xd8)5>ddpEVJ5atIMSL)Yg+zt^g>hg5t^7G5B~!`ZcG5Z3JO~i3lYB=a@J9OSP#{N0svtVn^>irm20BlHo(vBK~id?VOXIjHMdK6o^{x3&h5@u~i+OoGH0i3It`*4HYvbdFFdbTVGKj&b{Dct~rbyq`lX`>(xE^5vf$N9c z`m%MiuoXJduE zpU&$eN>~*TUW;S-?8WSWeLtX9!hZR59AdD@F`@V2`jv8cMP!lB64!B#>INx?m(wRO zE4Z8`Bm2llGm_TwFC>I#kjX&^Z8fLa>L`#purctr`QOF>K8b+h0&f38OLcO_11pPo zxW+T&Q!}%(Gqd@bD8pYF5@$qd3M7MC@(tPo16fiTv4dxZ8x3kBj+eypl9Zn$oGnS- zB?*3X0AK4By5FZ2aIfilK_PbZ*^QMHNQuV#yYc6vbZXdn?3zCLxDK62062{O$LP@G zdToEB8vC$6rp57*5hTW^eDDVOt5H^f@#mfF7>`lM-P9*tF5`=oa+&W{FUQe!tIQ$O zaybsqa=3(C=17O&A?#kR)N#Yh>>r@h@6%*QDS3*LJSD_I_|*2o)mdBy#2ueA6Xt>~OD8j$Mof<(U77;n)*m*MVU?V=->Pty!y~gd`b9xpKE6Jfi@Pmf^Q!n k_hoM%czvInruINf+rLnLD|b3KFlyvRa=G!`XnH*TfA+h|9RL6T literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3b48787bb969e4878a915e9e8ca6ca25ddd66b5d GIT binary patch literal 4662 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 Bu<-x@ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4f639d0bbf0dad85e1485782aaa04a7191af2624 GIT binary patch literal 1544 zcmZux&2HQ_5GEz9_QzVSYrBbU^hYqz0!Euv+W_swDQY+_5(Kr4wSy!A3PCGTYi+co zKvA}LQ=gn``wY9s9{W1H_S9GCq3w{eYX=Agk~2fjaQMwfv2M46p#3p>mVRL)^ruqp zwiYNqKrbZ>&ryOBoTH$gae%dM1csi?z|^x9SbA;*4VaDGo-~6dRz7ClnzVy9Mx;6K zB-R24OT?NxNdu%VX^dUc+dyPFv3F3?B)!x~T1oq@6?|~5b&@5}R%Tsd%vTpESi9rn z?4TEjIu;@yPJhNoeZ&~w3)WsCiq8>2UvNKk zu#IIiDvBiIC5Y?1qBNtUu%Zd!;aSE-73GAUNwdfb*(@qf@@y!(WhO{iMDgorL`rFM zA}UT}74dE}K-q&{Ixr-7j07GVzaco?n30YLZJ-@JaZ0>NG-mw4B%_RbXM~p-qaI83 zQe1IPsPK-a;uNe==|x^CI3)U|NBX0_4z=~L|J{}c&LDjK)mCksHQrqI-&}5+(oPwl zL_(V7w3N>E0bxc{_B-NBke?p@9{Zc{KEorjN;)pKwOW9;1S@JSW^QbQ+Hy z_P_N3jB8aL>MK|t+`!@kWImiA2&Yl*=PZr{T&nbkQAzs6RNfyE5$bD)`r6@jRx1iJ zg`LyjU6|g%6@x)>RO9**1c9y)cNDU7Q&{6hf)~amqMNg&Ya5>13qW64fiJFwM05IC z%@<+KTZys27}cE79_?SyLNUZV0I+yGdvpTTNm&kz@TRQtB2GMVLE=h40X(>*mvT1o z;)r^bc{!sa*f>-!z@q+khntY4G*~IEA`++48ncY@wldlUCuw#eZ9pPEPh|7(c%O5| zrA00>0n8kh$_1F&flR`B_ieSf;+1q2jJM01U@Mnlu<;5u%zN0uu3`M+*nC~>ZdWBR zTNO%Ce-d4k*^In{FziAWbd9hJf&kvm4L}fIDO`*L**ki5^5pQ~$HDGT`!5a$&wyXn zkg;60fn719X*R0Us^#!3;&-yvY}2VPXJyFBi!kNUgq$<}`WrY-m)vPtn_c+c3mG=;}S>lDGA|k zAl>K3`-5$7##kZNVX0OMdm06jtDM$VHi=$M9uIp)V!?$Uj;`M zTcv&TH28*!;qD4}#KTIEy6A0vU5I}?^vIr(0_i}G_A eI;e$jKF4ry$6PmE(`^~cn Dict[str, str]: + """ + Return a distutils install scheme + """ + from distutils.dist import Distribution + + dist_args: Dict[str, Union[str, List[str]]] = {"name": dist_name} + if isolated: + dist_args["script_args"] = ["--no-user-cfg"] + + d = Distribution(dist_args) + if not ignore_config_files: + try: + d.parse_config_files() + except UnicodeDecodeError: + # Typeshed does not include find_config_files() for some reason. + paths = d.find_config_files() # type: ignore + logger.warning( + "Ignore distutils configs in %s due to encoding errors.", + ", ".join(os.path.basename(p) for p in paths), + ) + obj: Optional[DistutilsCommand] = None + obj = d.get_command_obj("install", create=True) + assert obj is not None + i = cast(distutils_install_command, obj) + # NOTE: setting user or home has the side-effect of creating the home dir + # or user base for installations during finalize_options() + # ideally, we'd prefer a scheme class that has no side-effects. + assert not (user and prefix), f"user={user} prefix={prefix}" + assert not (home and prefix), f"home={home} prefix={prefix}" + i.user = user or i.user + if user or home: + i.prefix = "" + i.prefix = prefix or i.prefix + i.home = home or i.home + i.root = root or i.root + i.finalize_options() + + scheme = {} + for key in SCHEME_KEYS: + scheme[key] = getattr(i, "install_" + key) + + # install_lib specified in setup.cfg should install *everything* + # into there (i.e. it takes precedence over both purelib and + # platlib). Note, i.install_lib is *always* set after + # finalize_options(); we only want to override here if the user + # has explicitly requested it hence going back to the config + if "install_lib" in d.get_option_dict("install"): + scheme.update(dict(purelib=i.install_lib, platlib=i.install_lib)) + + if running_under_virtualenv(): + if home: + prefix = home + elif user: + prefix = i.install_userbase # type: ignore + else: + prefix = i.prefix + scheme["headers"] = os.path.join( + prefix, + "include", + "site", + f"python{get_major_minor_version()}", + dist_name, + ) + + if root is not None: + path_no_drive = os.path.splitdrive(os.path.abspath(scheme["headers"]))[1] + scheme["headers"] = os.path.join(root, path_no_drive[1:]) + + return scheme + + +def get_scheme( + dist_name: str, + user: bool = False, + home: Optional[str] = None, + root: Optional[str] = None, + isolated: bool = False, + prefix: Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. The distutils + documentation provides the context for the available schemes: + https://docs.python.org/3/install/index.html#alternate-installation + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme and provides the base + directory for the same + :param root: root under which other directories are re-based + :param isolated: equivalent to --no-user-cfg, i.e. do not consider + ~/.pydistutils.cfg (posix) or ~/pydistutils.cfg (non-posix) for + scheme paths + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + scheme = distutils_scheme(dist_name, user, home, root, isolated, prefix) + return Scheme( + platlib=scheme["platlib"], + purelib=scheme["purelib"], + headers=scheme["headers"], + scripts=scheme["scripts"], + data=scheme["data"], + ) + + +def get_bin_prefix() -> str: + # XXX: In old virtualenv versions, sys.prefix can contain '..' components, + # so we need to call normpath to eliminate them. + prefix = os.path.normpath(sys.prefix) + if WINDOWS: + bin_py = os.path.join(prefix, "Scripts") + # buildout uses 'bin' on Windows too? + if not os.path.exists(bin_py): + bin_py = os.path.join(prefix, "bin") + return bin_py + # Forcing to use /usr/local/bin for standard macOS framework installs + # Also log to ~/Library/Logs/ for use with the Console.app log viewer + if sys.platform[:6] == "darwin" and prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return os.path.join(prefix, "bin") + + +def get_purelib() -> str: + return get_python_lib(plat_specific=False) + + +def get_platlib() -> str: + return get_python_lib(plat_specific=True) + + +def get_prefixed_libs(prefix: str) -> Tuple[str, str]: + return ( + get_python_lib(plat_specific=False, prefix=prefix), + get_python_lib(plat_specific=True, prefix=prefix), + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py new file mode 100644 index 0000000..5e141aa --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py @@ -0,0 +1,219 @@ +import distutils.util # FIXME: For change_root. +import logging +import os +import sys +import sysconfig +import typing + +from pip._internal.exceptions import InvalidSchemeCombination, UserInstallationInvalid +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import get_major_minor_version, is_osx_framework + +logger = logging.getLogger(__name__) + + +# Notes on _infer_* functions. +# Unfortunately ``get_default_scheme()`` didn't exist before 3.10, so there's no +# way to ask things like "what is the '_prefix' scheme on this platform". These +# functions try to answer that with some heuristics while accounting for ad-hoc +# platforms not covered by CPython's default sysconfig implementation. If the +# ad-hoc implementation does not fully implement sysconfig, we'll fall back to +# a POSIX scheme. + +_AVAILABLE_SCHEMES = set(sysconfig.get_scheme_names()) + +_PREFERRED_SCHEME_API = getattr(sysconfig, "get_preferred_scheme", None) + + +def _should_use_osx_framework_prefix() -> bool: + """Check for Apple's ``osx_framework_library`` scheme. + + Python distributed by Apple's Command Line Tools has this special scheme + that's used when: + + * This is a framework build. + * We are installing into the system prefix. + + This does not account for ``pip install --prefix`` (also means we're not + installing to the system prefix), which should use ``posix_prefix``, but + logic here means ``_infer_prefix()`` outputs ``osx_framework_library``. But + since ``prefix`` is not available for ``sysconfig.get_default_scheme()``, + which is the stdlib replacement for ``_infer_prefix()``, presumably Apple + wouldn't be able to magically switch between ``osx_framework_library`` and + ``posix_prefix``. ``_infer_prefix()`` returning ``osx_framework_library`` + means its behavior is consistent whether we use the stdlib implementation + or our own, and we deal with this special case in ``get_scheme()`` instead. + """ + return ( + "osx_framework_library" in _AVAILABLE_SCHEMES + and not running_under_virtualenv() + and is_osx_framework() + ) + + +def _infer_prefix() -> str: + """Try to find a prefix scheme for the current platform. + + This tries: + + * A special ``osx_framework_library`` for Python distributed by Apple's + Command Line Tools, when not running in a virtual environment. + * Implementation + OS, used by PyPy on Windows (``pypy_nt``). + * Implementation without OS, used by PyPy on POSIX (``pypy``). + * OS + "prefix", used by CPython on POSIX (``posix_prefix``). + * Just the OS name, used by CPython on Windows (``nt``). + + If none of the above works, fall back to ``posix_prefix``. + """ + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("prefix") + if _should_use_osx_framework_prefix(): + return "osx_framework_library" + implementation_suffixed = f"{sys.implementation.name}_{os.name}" + if implementation_suffixed in _AVAILABLE_SCHEMES: + return implementation_suffixed + if sys.implementation.name in _AVAILABLE_SCHEMES: + return sys.implementation.name + suffixed = f"{os.name}_prefix" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if os.name in _AVAILABLE_SCHEMES: # On Windows, prefx is just called "nt". + return os.name + return "posix_prefix" + + +def _infer_user() -> str: + """Try to find a user scheme for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("user") + if is_osx_framework() and not running_under_virtualenv(): + suffixed = "osx_framework_user" + else: + suffixed = f"{os.name}_user" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + if "posix_user" not in _AVAILABLE_SCHEMES: # User scheme unavailable. + raise UserInstallationInvalid() + return "posix_user" + + +def _infer_home() -> str: + """Try to find a home for the current platform.""" + if _PREFERRED_SCHEME_API: + return _PREFERRED_SCHEME_API("home") + suffixed = f"{os.name}_home" + if suffixed in _AVAILABLE_SCHEMES: + return suffixed + return "posix_home" + + +# Update these keys if the user sets a custom home. +_HOME_KEYS = [ + "installed_base", + "base", + "installed_platbase", + "platbase", + "prefix", + "exec_prefix", +] +if sysconfig.get_config_var("userbase") is not None: + _HOME_KEYS.append("userbase") + + +def get_scheme( + dist_name: str, + user: bool = False, + home: typing.Optional[str] = None, + root: typing.Optional[str] = None, + isolated: bool = False, + prefix: typing.Optional[str] = None, +) -> Scheme: + """ + Get the "scheme" corresponding to the input parameters. + + :param dist_name: the name of the package to retrieve the scheme for, used + in the headers scheme path + :param user: indicates to use the "user" scheme + :param home: indicates to use the "home" scheme + :param root: root under which other directories are re-based + :param isolated: ignored, but kept for distutils compatibility (where + this controls whether the user-site pydistutils.cfg is honored) + :param prefix: indicates to use the "prefix" scheme and provides the + base directory for the same + """ + if user and prefix: + raise InvalidSchemeCombination("--user", "--prefix") + if home and prefix: + raise InvalidSchemeCombination("--home", "--prefix") + + if home is not None: + scheme_name = _infer_home() + elif user: + scheme_name = _infer_user() + else: + scheme_name = _infer_prefix() + + # Special case: When installing into a custom prefix, use posix_prefix + # instead of osx_framework_library. See _should_use_osx_framework_prefix() + # docstring for details. + if prefix is not None and scheme_name == "osx_framework_library": + scheme_name = "posix_prefix" + + if home is not None: + variables = {k: home for k in _HOME_KEYS} + elif prefix is not None: + variables = {k: prefix for k in _HOME_KEYS} + else: + variables = {} + + paths = sysconfig.get_paths(scheme=scheme_name, vars=variables) + + # Logic here is very arbitrary, we're doing it for compatibility, don't ask. + # 1. Pip historically uses a special header path in virtual environments. + # 2. If the distribution name is not known, distutils uses 'UNKNOWN'. We + # only do the same when not running in a virtual environment because + # pip's historical header path logic (see point 1) did not do this. + if running_under_virtualenv(): + if user: + base = variables.get("userbase", sys.prefix) + else: + base = variables.get("base", sys.prefix) + python_xy = f"python{get_major_minor_version()}" + paths["include"] = os.path.join(base, "include", "site", python_xy) + elif not dist_name: + dist_name = "UNKNOWN" + + scheme = Scheme( + platlib=paths["platlib"], + purelib=paths["purelib"], + headers=os.path.join(paths["include"], dist_name), + scripts=paths["scripts"], + data=paths["data"], + ) + if root is not None: + for key in SCHEME_KEYS: + value = distutils.util.change_root(root, getattr(scheme, key)) + setattr(scheme, key, value) + return scheme + + +def get_bin_prefix() -> str: + # Forcing to use /usr/local/bin for standard macOS framework installs. + if sys.platform[:6] == "darwin" and sys.prefix[:16] == "/System/Library/": + return "/usr/local/bin" + return sysconfig.get_paths()["scripts"] + + +def get_purelib() -> str: + return sysconfig.get_paths()["purelib"] + + +def get_platlib() -> str: + return sysconfig.get_paths()["platlib"] + + +def get_prefixed_libs(prefix: str) -> typing.Tuple[str, str]: + paths = sysconfig.get_paths(vars={"base": prefix, "platbase": prefix}) + return (paths["purelib"], paths["platlib"]) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/base.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/base.py new file mode 100644 index 0000000..86dad4a --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/locations/base.py @@ -0,0 +1,52 @@ +import functools +import os +import site +import sys +import sysconfig +import typing + +from pip._internal.utils import appdirs +from pip._internal.utils.virtualenv import running_under_virtualenv + +# Application Directories +USER_CACHE_DIR = appdirs.user_cache_dir("pip") + +# FIXME doesn't account for venv linked to global site-packages +site_packages: typing.Optional[str] = sysconfig.get_path("purelib") + + +def get_major_minor_version() -> str: + """ + Return the major-minor version of the current Python as a string, e.g. + "3.7" or "3.10". + """ + return "{}.{}".format(*sys.version_info) + + +def get_src_prefix() -> str: + if running_under_virtualenv(): + src_prefix = os.path.join(sys.prefix, "src") + else: + # FIXME: keep src in cwd for now (it is not a temporary folder) + try: + src_prefix = os.path.join(os.getcwd(), "src") + except OSError: + # In case the current working directory has been renamed or deleted + sys.exit("The folder you are executing pip from can no longer be found.") + + # under macOS + virtualenv sys.prefix is not properly resolved + # it is something like /path/to/python/bin/.. + return os.path.abspath(src_prefix) + + +try: + # Use getusersitepackages if this is present, as it ensures that the + # value is initialised properly. + user_site: typing.Optional[str] = site.getusersitepackages() +except AttributeError: + user_site = site.USER_SITE + + +@functools.lru_cache(maxsize=None) +def is_osx_framework() -> bool: + return bool(sysconfig.get_config_var("PYTHONFRAMEWORK")) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/main.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/main.py new file mode 100644 index 0000000..33c6d24 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/main.py @@ -0,0 +1,12 @@ +from typing import List, Optional + + +def main(args: Optional[List[str]] = None) -> int: + """This is preserved for old console scripts that may still be referencing + it. + + For additional details, see https://github.com/pypa/pip/issues/7498. + """ + from pip._internal.utils.entrypoints import _wrapper + + return _wrapper(args) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py new file mode 100644 index 0000000..cc037c1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py @@ -0,0 +1,62 @@ +from typing import List, Optional + +from .base import BaseDistribution, BaseEnvironment, FilesystemWheel, MemoryWheel, Wheel + +__all__ = [ + "BaseDistribution", + "BaseEnvironment", + "FilesystemWheel", + "MemoryWheel", + "Wheel", + "get_default_environment", + "get_environment", + "get_wheel_distribution", +] + + +def get_default_environment() -> BaseEnvironment: + """Get the default representation for the current environment. + + This returns an Environment instance from the chosen backend. The default + Environment instance should be built from ``sys.path`` and may use caching + to share instance state accorss calls. + """ + from .pkg_resources import Environment + + return Environment.default() + + +def get_environment(paths: Optional[List[str]]) -> BaseEnvironment: + """Get a representation of the environment specified by ``paths``. + + This returns an Environment instance from the chosen backend based on the + given import paths. The backend must build a fresh instance representing + the state of installed distributions when this function is called. + """ + from .pkg_resources import Environment + + return Environment.from_paths(paths) + + +def get_directory_distribution(directory: str) -> BaseDistribution: + """Get the distribution metadata representation in the specified directory. + + This returns a Distribution instance from the chosen backend based on + the given on-disk ``.dist-info`` directory. + """ + from .pkg_resources import Distribution + + return Distribution.from_directory(directory) + + +def get_wheel_distribution(wheel: Wheel, canonical_name: str) -> BaseDistribution: + """Get the representation of the specified wheel's distribution metadata. + + This returns a Distribution instance from the chosen backend based on + the given wheel's ``.dist-info`` directory. + + :param canonical_name: Normalized project name of the given wheel. + """ + from .pkg_resources import Distribution + + return Distribution.from_wheel(wheel, canonical_name) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..712b5b4fc7d6f5388c95c20312d9320a517d4d1b GIT binary patch literal 2300 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 He=+-iNj+Y} literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/base.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/base.py new file mode 100644 index 0000000..1a5a781 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/base.py @@ -0,0 +1,546 @@ +import csv +import email.message +import json +import logging +import pathlib +import re +import zipfile +from typing import ( + IO, + TYPE_CHECKING, + Collection, + Container, + Iterable, + Iterator, + List, + Optional, + Tuple, + Union, +) + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import InvalidSpecifier, SpecifierSet +from pip._vendor.packaging.utils import NormalizedName +from pip._vendor.packaging.version import LegacyVersion, Version + +from pip._internal.exceptions import NoneMetadataError +from pip._internal.locations import site_packages, user_site +from pip._internal.models.direct_url import ( + DIRECT_URL_METADATA_NAME, + DirectUrl, + DirectUrlValidationError, +) +from pip._internal.utils.compat import stdlib_pkgs # TODO: Move definition here. +from pip._internal.utils.egg_link import ( + egg_link_path_from_location, + egg_link_path_from_sys_path, +) +from pip._internal.utils.misc import is_local, normalize_path +from pip._internal.utils.urls import url_to_path + +if TYPE_CHECKING: + from typing import Protocol +else: + Protocol = object + +DistributionVersion = Union[LegacyVersion, Version] + +InfoPath = Union[str, pathlib.PurePosixPath] + +logger = logging.getLogger(__name__) + + +class BaseEntryPoint(Protocol): + @property + def name(self) -> str: + raise NotImplementedError() + + @property + def value(self) -> str: + raise NotImplementedError() + + @property + def group(self) -> str: + raise NotImplementedError() + + +def _convert_installed_files_path( + entry: Tuple[str, ...], + info: Tuple[str, ...], +) -> str: + """Convert a legacy installed-files.txt path into modern RECORD path. + + The legacy format stores paths relative to the info directory, while the + modern format stores paths relative to the package root, e.g. the + site-packages directory. + + :param entry: Path parts of the installed-files.txt entry. + :param info: Path parts of the egg-info directory relative to package root. + :returns: The converted entry. + + For best compatibility with symlinks, this does not use ``abspath()`` or + ``Path.resolve()``, but tries to work with path parts: + + 1. While ``entry`` starts with ``..``, remove the equal amounts of parts + from ``info``; if ``info`` is empty, start appending ``..`` instead. + 2. Join the two directly. + """ + while entry and entry[0] == "..": + if not info or info[-1] == "..": + info += ("..",) + else: + info = info[:-1] + entry = entry[1:] + return str(pathlib.Path(*info, *entry)) + + +class BaseDistribution(Protocol): + def __repr__(self) -> str: + return f"{self.raw_name} {self.version} ({self.location})" + + def __str__(self) -> str: + return f"{self.raw_name} {self.version}" + + @property + def location(self) -> Optional[str]: + """Where the distribution is loaded from. + + A string value is not necessarily a filesystem path, since distributions + can be loaded from other sources, e.g. arbitrary zip archives. ``None`` + means the distribution is created in-memory. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and files in the distribution. + """ + raise NotImplementedError() + + @property + def editable_project_location(self) -> Optional[str]: + """The project location for editable distributions. + + This is the directory where pyproject.toml or setup.py is located. + None if the distribution is not installed in editable mode. + """ + # TODO: this property is relatively costly to compute, memoize it ? + direct_url = self.direct_url + if direct_url: + if direct_url.is_local_editable(): + return url_to_path(direct_url.url) + else: + # Search for an .egg-link file by walking sys.path, as it was + # done before by dist_is_editable(). + egg_link_path = egg_link_path_from_sys_path(self.raw_name) + if egg_link_path: + # TODO: get project location from second line of egg_link file + # (https://github.com/pypa/pip/issues/10243) + return self.location + return None + + @property + def installed_location(self) -> Optional[str]: + """The distribution's "installed" location. + + This should generally be a ``site-packages`` directory. This is + usually ``dist.location``, except for legacy develop-installed packages, + where ``dist.location`` is the source code location, and this is where + the ``.egg-link`` file is. + + The returned location is normalized (in particular, with symlinks removed). + """ + egg_link = egg_link_path_from_location(self.raw_name) + if egg_link: + location = egg_link + elif self.location: + location = self.location + else: + return None + return normalize_path(location) + + @property + def info_location(self) -> Optional[str]: + """Location of the .[egg|dist]-info directory or file. + + Similarly to ``location``, a string value is not necessarily a + filesystem path. ``None`` means the distribution is created in-memory. + + For a modern .dist-info installation on disk, this should be something + like ``{location}/{raw_name}-{version}.dist-info``. + + Do not canonicalize this value with e.g. ``pathlib.Path.resolve()``. If + this is a symbolic link, we want to preserve the relative path between + it and other files in the distribution. + """ + raise NotImplementedError() + + @property + def installed_by_distutils(self) -> bool: + """Whether this distribution is installed with legacy distutils format. + + A distribution installed with "raw" distutils not patched by setuptools + uses one single file at ``info_location`` to store metadata. We need to + treat this specially on uninstallation. + """ + info_location = self.info_location + if not info_location: + return False + return pathlib.Path(info_location).is_file() + + @property + def installed_as_egg(self) -> bool: + """Whether this distribution is installed as an egg. + + This usually indicates the distribution was installed by (older versions + of) easy_install. + """ + location = self.location + if not location: + return False + return location.endswith(".egg") + + @property + def installed_with_setuptools_egg_info(self) -> bool: + """Whether this distribution is installed with the ``.egg-info`` format. + + This usually indicates the distribution was installed with setuptools + with an old pip version or with ``single-version-externally-managed``. + + Note that this ensure the metadata store is a directory. distutils can + also installs an ``.egg-info``, but as a file, not a directory. This + property is *False* for that case. Also see ``installed_by_distutils``. + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".egg-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def installed_with_dist_info(self) -> bool: + """Whether this distribution is installed with the "modern format". + + This indicates a "modern" installation, e.g. storing metadata in the + ``.dist-info`` directory. This applies to installations made by + setuptools (but through pip, not directly), or anything using the + standardized build backend interface (PEP 517). + """ + info_location = self.info_location + if not info_location: + return False + if not info_location.endswith(".dist-info"): + return False + return pathlib.Path(info_location).is_dir() + + @property + def canonical_name(self) -> NormalizedName: + raise NotImplementedError() + + @property + def version(self) -> DistributionVersion: + raise NotImplementedError() + + @property + def setuptools_filename(self) -> str: + """Convert a project name to its setuptools-compatible filename. + + This is a copy of ``pkg_resources.to_filename()`` for compatibility. + """ + return self.raw_name.replace("-", "_") + + @property + def direct_url(self) -> Optional[DirectUrl]: + """Obtain a DirectUrl from this distribution. + + Returns None if the distribution has no `direct_url.json` metadata, + or if `direct_url.json` is invalid. + """ + try: + content = self.read_text(DIRECT_URL_METADATA_NAME) + except FileNotFoundError: + return None + try: + return DirectUrl.from_json(content) + except ( + UnicodeDecodeError, + json.JSONDecodeError, + DirectUrlValidationError, + ) as e: + logger.warning( + "Error parsing %s for %s: %s", + DIRECT_URL_METADATA_NAME, + self.canonical_name, + e, + ) + return None + + @property + def installer(self) -> str: + try: + installer_text = self.read_text("INSTALLER") + except (OSError, ValueError, NoneMetadataError): + return "" # Fail silently if the installer file cannot be read. + for line in installer_text.splitlines(): + cleaned_line = line.strip() + if cleaned_line: + return cleaned_line + return "" + + @property + def editable(self) -> bool: + return bool(self.editable_project_location) + + @property + def local(self) -> bool: + """If distribution is installed in the current virtual environment. + + Always True if we're not in a virtualenv. + """ + if self.installed_location is None: + return False + return is_local(self.installed_location) + + @property + def in_usersite(self) -> bool: + if self.installed_location is None or user_site is None: + return False + return self.installed_location.startswith(normalize_path(user_site)) + + @property + def in_site_packages(self) -> bool: + if self.installed_location is None or site_packages is None: + return False + return self.installed_location.startswith(normalize_path(site_packages)) + + def is_file(self, path: InfoPath) -> bool: + """Check whether an entry in the info directory is a file.""" + raise NotImplementedError() + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + """Iterate through a directory in the info directory. + + Each item yielded would be a path relative to the info directory. + + :raise FileNotFoundError: If ``name`` does not exist in the directory. + :raise NotADirectoryError: If ``name`` does not point to a directory. + """ + raise NotImplementedError() + + def read_text(self, path: InfoPath) -> str: + """Read a file in the info directory. + + :raise FileNotFoundError: If ``name`` does not exist in the directory. + :raise NoneMetadataError: If ``name`` exists in the info directory, but + cannot be read. + """ + raise NotImplementedError() + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + raise NotImplementedError() + + @property + def metadata(self) -> email.message.Message: + """Metadata of distribution parsed from e.g. METADATA or PKG-INFO. + + This should return an empty message if the metadata file is unavailable. + + :raises NoneMetadataError: If the metadata file is available, but does + not contain valid metadata. + """ + raise NotImplementedError() + + @property + def metadata_version(self) -> Optional[str]: + """Value of "Metadata-Version:" in distribution metadata, if available.""" + return self.metadata.get("Metadata-Version") + + @property + def raw_name(self) -> str: + """Value of "Name:" in distribution metadata.""" + # The metadata should NEVER be missing the Name: key, but if it somehow + # does, fall back to the known canonical name. + return self.metadata.get("Name", self.canonical_name) + + @property + def requires_python(self) -> SpecifierSet: + """Value of "Requires-Python:" in distribution metadata. + + If the key does not exist or contains an invalid value, an empty + SpecifierSet should be returned. + """ + value = self.metadata.get("Requires-Python") + if value is None: + return SpecifierSet() + try: + # Convert to str to satisfy the type checker; this can be a Header object. + spec = SpecifierSet(str(value)) + except InvalidSpecifier as e: + message = "Package %r has an invalid Requires-Python: %s" + logger.warning(message, self.raw_name, e) + return SpecifierSet() + return spec + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + """Dependencies of this distribution. + + For modern .dist-info distributions, this is the collection of + "Requires-Dist:" entries in distribution metadata. + """ + raise NotImplementedError() + + def iter_provided_extras(self) -> Iterable[str]: + """Extras provided by this distribution. + + For modern .dist-info distributions, this is the collection of + "Provides-Extra:" entries in distribution metadata. + """ + raise NotImplementedError() + + def _iter_declared_entries_from_record(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("RECORD") + except FileNotFoundError: + return None + # This extra Path-str cast normalizes entries. + return (str(pathlib.Path(row[0])) for row in csv.reader(text.splitlines())) + + def _iter_declared_entries_from_legacy(self) -> Optional[Iterator[str]]: + try: + text = self.read_text("installed-files.txt") + except FileNotFoundError: + return None + paths = (p for p in text.splitlines(keepends=False) if p) + root = self.location + info = self.info_location + if root is None or info is None: + return paths + try: + info_rel = pathlib.Path(info).relative_to(root) + except ValueError: # info is not relative to root. + return paths + if not info_rel.parts: # info *is* root. + return paths + return ( + _convert_installed_files_path(pathlib.Path(p).parts, info_rel.parts) + for p in paths + ) + + def iter_declared_entries(self) -> Optional[Iterator[str]]: + """Iterate through file entires declared in this distribution. + + For modern .dist-info distributions, this is the files listed in the + ``RECORD`` metadata file. For legacy setuptools distributions, this + comes from ``installed-files.txt``, with entries normalized to be + compatible with the format used by ``RECORD``. + + :return: An iterator for listed entries, or None if the distribution + contains neither ``RECORD`` nor ``installed-files.txt``. + """ + return ( + self._iter_declared_entries_from_record() + or self._iter_declared_entries_from_legacy() + ) + + +class BaseEnvironment: + """An environment containing distributions to introspect.""" + + @classmethod + def default(cls) -> "BaseEnvironment": + raise NotImplementedError() + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> "BaseEnvironment": + raise NotImplementedError() + + def get_distribution(self, name: str) -> Optional["BaseDistribution"]: + """Given a requirement name, return the installed distributions. + + The name may not be normalized. The implementation must canonicalize + it for lookup. + """ + raise NotImplementedError() + + def _iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions. + + This function should be implemented by subclass, but never called + directly. Use the public ``iter_distribution()`` instead, which + implements additional logic to make sure the distributions are valid. + """ + raise NotImplementedError() + + def iter_distributions(self) -> Iterator["BaseDistribution"]: + """Iterate through installed distributions.""" + for dist in self._iter_distributions(): + # Make sure the distribution actually comes from a valid Python + # packaging distribution. Pip's AdjacentTempDirectory leaves folders + # e.g. ``~atplotlib.dist-info`` if cleanup was interrupted. The + # valid project name pattern is taken from PEP 508. + project_name_valid = re.match( + r"^([A-Z0-9]|[A-Z0-9][A-Z0-9._-]*[A-Z0-9])$", + dist.canonical_name, + flags=re.IGNORECASE, + ) + if not project_name_valid: + logger.warning( + "Ignoring invalid distribution %s (%s)", + dist.canonical_name, + dist.location, + ) + continue + yield dist + + def iter_installed_distributions( + self, + local_only: bool = True, + skip: Container[str] = stdlib_pkgs, + include_editables: bool = True, + editables_only: bool = False, + user_only: bool = False, + ) -> Iterator[BaseDistribution]: + """Return a list of installed distributions. + + :param local_only: If True (default), only return installations + local to the current virtualenv, if in a virtualenv. + :param skip: An iterable of canonicalized project names to ignore; + defaults to ``stdlib_pkgs``. + :param include_editables: If False, don't report editables. + :param editables_only: If True, only report editables. + :param user_only: If True, only report installations in the user + site directory. + """ + it = self.iter_distributions() + if local_only: + it = (d for d in it if d.local) + if not include_editables: + it = (d for d in it if not d.editable) + if editables_only: + it = (d for d in it if d.editable) + if user_only: + it = (d for d in it if d.in_usersite) + return (d for d in it if d.canonical_name not in skip) + + +class Wheel(Protocol): + location: str + + def as_zipfile(self) -> zipfile.ZipFile: + raise NotImplementedError() + + +class FilesystemWheel(Wheel): + def __init__(self, location: str) -> None: + self.location = location + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.location, allowZip64=True) + + +class MemoryWheel(Wheel): + def __init__(self, location: str, stream: IO[bytes]) -> None: + self.location = location + self.stream = stream + + def as_zipfile(self) -> zipfile.ZipFile: + return zipfile.ZipFile(self.stream, allowZip64=True) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py new file mode 100644 index 0000000..d39f0ba --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py @@ -0,0 +1,256 @@ +import email.message +import email.parser +import logging +import os +import pathlib +import zipfile +from typing import Collection, Iterable, Iterator, List, Mapping, NamedTuple, Optional + +from pip._vendor import pkg_resources +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.exceptions import InvalidWheel, NoneMetadataError, UnsupportedWheel +from pip._internal.utils.misc import display_path +from pip._internal.utils.wheel import parse_wheel, read_wheel_metadata_file + +from .base import ( + BaseDistribution, + BaseEntryPoint, + BaseEnvironment, + DistributionVersion, + InfoPath, + Wheel, +) + +logger = logging.getLogger(__name__) + + +class EntryPoint(NamedTuple): + name: str + value: str + group: str + + +class WheelMetadata: + """IMetadataProvider that reads metadata files from a dictionary. + + This also maps metadata decoding exceptions to our internal exception type. + """ + + def __init__(self, metadata: Mapping[str, bytes], wheel_name: str) -> None: + self._metadata = metadata + self._wheel_name = wheel_name + + def has_metadata(self, name: str) -> bool: + return name in self._metadata + + def get_metadata(self, name: str) -> str: + try: + return self._metadata[name].decode() + except UnicodeDecodeError as e: + # Augment the default error with the origin of the file. + raise UnsupportedWheel( + f"Error decoding metadata for {self._wheel_name}: {e} in {name} file" + ) + + def get_metadata_lines(self, name: str) -> Iterable[str]: + return pkg_resources.yield_lines(self.get_metadata(name)) + + def metadata_isdir(self, name: str) -> bool: + return False + + def metadata_listdir(self, name: str) -> List[str]: + return [] + + def run_script(self, script_name: str, namespace: str) -> None: + pass + + +class Distribution(BaseDistribution): + def __init__(self, dist: pkg_resources.Distribution) -> None: + self._dist = dist + + @classmethod + def from_directory(cls, directory: str) -> "Distribution": + dist_dir = directory.rstrip(os.sep) + + # Build a PathMetadata object, from path to metadata. :wink: + base_dir, dist_dir_name = os.path.split(dist_dir) + metadata = pkg_resources.PathMetadata(base_dir, dist_dir) + + # Determine the correct Distribution object type. + if dist_dir.endswith(".egg-info"): + dist_cls = pkg_resources.Distribution + dist_name = os.path.splitext(dist_dir_name)[0] + else: + assert dist_dir.endswith(".dist-info") + dist_cls = pkg_resources.DistInfoDistribution + dist_name = os.path.splitext(dist_dir_name)[0].split("-")[0] + + dist = dist_cls(base_dir, project_name=dist_name, metadata=metadata) + return cls(dist) + + @classmethod + def from_wheel(cls, wheel: Wheel, name: str) -> "Distribution": + """Load the distribution from a given wheel. + + :raises InvalidWheel: Whenever loading of the wheel causes a + :py:exc:`zipfile.BadZipFile` exception to be thrown. + :raises UnsupportedWheel: If the wheel is a valid zip, but malformed + internally. + """ + try: + with wheel.as_zipfile() as zf: + info_dir, _ = parse_wheel(zf, name) + metadata_text = { + path.split("/", 1)[-1]: read_wheel_metadata_file(zf, path) + for path in zf.namelist() + if path.startswith(f"{info_dir}/") + } + except zipfile.BadZipFile as e: + raise InvalidWheel(wheel.location, name) from e + except UnsupportedWheel as e: + raise UnsupportedWheel(f"{name} has an invalid wheel, {e}") + dist = pkg_resources.DistInfoDistribution( + location=wheel.location, + metadata=WheelMetadata(metadata_text, wheel.location), + project_name=name, + ) + return cls(dist) + + @property + def location(self) -> Optional[str]: + return self._dist.location + + @property + def info_location(self) -> Optional[str]: + return self._dist.egg_info + + @property + def installed_by_distutils(self) -> bool: + # A distutils-installed distribution is provided by FileMetadata. This + # provider has a "path" attribute not present anywhere else. Not the + # best introspection logic, but pip has been doing this for a long time. + try: + return bool(self._dist._provider.path) + except AttributeError: + return False + + @property + def canonical_name(self) -> NormalizedName: + return canonicalize_name(self._dist.project_name) + + @property + def version(self) -> DistributionVersion: + return parse_version(self._dist.version) + + def is_file(self, path: InfoPath) -> bool: + return self._dist.has_metadata(str(path)) + + def iterdir(self, path: InfoPath) -> Iterator[pathlib.PurePosixPath]: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + if not self._dist.isdir(name): + raise NotADirectoryError(name) + for child in self._dist.metadata_listdir(name): + yield pathlib.PurePosixPath(path, child) + + def read_text(self, path: InfoPath) -> str: + name = str(path) + if not self._dist.has_metadata(name): + raise FileNotFoundError(name) + content = self._dist.get_metadata(name) + if content is None: + raise NoneMetadataError(self, name) + return content + + def iter_entry_points(self) -> Iterable[BaseEntryPoint]: + for group, entries in self._dist.get_entry_map().items(): + for name, entry_point in entries.items(): + name, _, value = str(entry_point).partition("=") + yield EntryPoint(name=name.strip(), value=value.strip(), group=group) + + @property + def metadata(self) -> email.message.Message: + """ + :raises NoneMetadataError: if the distribution reports `has_metadata()` + True but `get_metadata()` returns None. + """ + if isinstance(self._dist, pkg_resources.DistInfoDistribution): + metadata_name = "METADATA" + else: + metadata_name = "PKG-INFO" + try: + metadata = self.read_text(metadata_name) + except FileNotFoundError: + if self.location: + displaying_path = display_path(self.location) + else: + displaying_path = repr(self.location) + logger.warning("No metadata found in %s", displaying_path) + metadata = "" + feed_parser = email.parser.FeedParser() + feed_parser.feed(metadata) + return feed_parser.close() + + def iter_dependencies(self, extras: Collection[str] = ()) -> Iterable[Requirement]: + if extras: # pkg_resources raises on invalid extras, so we sanitize. + extras = frozenset(extras).intersection(self._dist.extras) + return self._dist.requires(extras) + + def iter_provided_extras(self) -> Iterable[str]: + return self._dist.extras + + +class Environment(BaseEnvironment): + def __init__(self, ws: pkg_resources.WorkingSet) -> None: + self._ws = ws + + @classmethod + def default(cls) -> BaseEnvironment: + return cls(pkg_resources.working_set) + + @classmethod + def from_paths(cls, paths: Optional[List[str]]) -> BaseEnvironment: + return cls(pkg_resources.WorkingSet(paths)) + + def _search_distribution(self, name: str) -> Optional[BaseDistribution]: + """Find a distribution matching the ``name`` in the environment. + + This searches from *all* distributions available in the environment, to + match the behavior of ``pkg_resources.get_distribution()``. + """ + canonical_name = canonicalize_name(name) + for dist in self.iter_distributions(): + if dist.canonical_name == canonical_name: + return dist + return None + + def get_distribution(self, name: str) -> Optional[BaseDistribution]: + # Search the distribution by looking through the working set. + dist = self._search_distribution(name) + if dist: + return dist + + # If distribution could not be found, call working_set.require to + # update the working set, and try to find the distribution again. + # This might happen for e.g. when you install a package twice, once + # using setup.py develop and again using setup.py install. Now when + # running pip uninstall twice, the package gets removed from the + # working set in the first uninstall, so we have to populate the + # working set again so that pip knows about it and the packages gets + # picked up and is successfully uninstalled the second time too. + try: + # We didn't pass in any version specifiers, so this can never + # raise pkg_resources.VersionConflict. + self._ws.require(name) + except pkg_resources.DistributionNotFound: + return None + return self._search_distribution(name) + + def _iter_distributions(self) -> Iterator[BaseDistribution]: + for dist in self._ws: + yield Distribution(dist) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__init__.py new file mode 100644 index 0000000..7855226 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__init__.py @@ -0,0 +1,2 @@ +"""A package that contains models that represent entities. +""" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d38721188a09e5a7a6ae8577b5704235ea92b601 GIT binary patch literal 268 zcmYjMyJ`b55Y)NxVemhwb&=ZyLvUf|LDB_6AYB?EpVq#`vLvKU;QU7^^E+-2QsJXMO+ZfnV zD0&|q`f>_0ri=vxYauaVX(rFJ>NqyW#nzZll}A$hCqFyr;vT_L_I3>~{Ud&W%Q4`C zROjeDW=K7EF|6jzHF#Q|?Yz0VghGrL=S2k)B`_2ibFdyxlfXzqY)q5-W4)B{-Q&&h JUl~T!>KB=tP8R?G literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/candidate.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8fd4953b36b28df19fc87ae5b0176e3225c3f81b GIT binary patch literal 1420 zcmZ`(&yN!~6t?GAvLQ(kU7#Q>8aOdhnW3UuaR7waN>xR>LLl`p7t6%XGORN*wVf3S z;j}Ap;(q{cd+fjCLoYq`%&k(ZzBidHfi8~x@?QLGfA4#rQw;_^0^|4j!|@+JA%9}9 zJ^~2t!!)jb$h(U&9PxQo@qag3LQC|!o+IUR@lJ@}P(4GIOG?pvH zZBdmwycC7tR?feFENd-|EUk%oTvrynf~)x2Xq9p;9#=Xp)^?|f?}Cy~r0X0=ZQwi? zD5zLRP=M~B!J1s8rJd?>cZ58z2KqRmAH-~fS~gR1}ikvT58v240c(@ zbOvb)}TlSv|AQ zs`BowbURbU(>A=7es?o7g_SpIKHBGd(qwf}X8^%UU2>I8Dj}80PH0c-nH~bLKJtW4 zM0+%%kvF6s?fpBya%w-*RZ$}fTUG;oEOH0thfOeozC~Vv?Yw8_2Wz(t^o3Ag`aOn(J8=yNCLYw(b54N7C|0z@D1Sq8NI{PX2nmRr79i^f_& z3G=H6Ek5BczTS2{e)%fq7Hp!=L#n=r<}+j+#*77ETex-!%zW!q5`fw!FFAw7p!^wg zJ;tDMQ-yw?vEQa#wJUI}s7CNJ=*Ota8gP9$K%?-R&gyT_y9~w+T8)jQQb5#4gl91Y z32a1)Ps^Yny1-u7yW$Od7dp+#ZqjvIAgC1dUW!VmOO?T+NLLTQ!&7jxyVNAEl$S1* umo_gL!MV$yu1{^DOq-?g={7g6fo$L|yL@NK#ywP=!9RgM>3e;;>Hi1peQ4qU literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ed8273ea948691c4b70228d711674a39f3d636b6 GIT binary patch literal 7293 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 PYBjs|d~LoqKWF|Qzy|Z# literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/format_control.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d90a06e2008555db372b9f3e6280373e92b5ac75 GIT binary patch literal 2745 zcmaJ@TW{RP6`mPhmP@bJmf|ROS~N`RqS?aQbznFx1jh~P)NK)9TR=b`76=H6Gm8Td9bDhSWFrt^cOrYoGEHD#S^@L+TnE#?07`biyhk)EyF{1bPZf6At>B1kks)Z+|9w+v3Sy)}>v)}w)sysN6)shbSp}tNs{g)n<|2{qIDHzg|SJVE7`BwMH#PWMWXkrYh{t| zoifA9*UC4U$af$@<_=dta!h1F6eGof@AjJ(%p-t+M#+ ze*e=!o~@s<_xqpR8<@gI%pH)wvN`)|VV~n0 ze2y>Bx9Ghi{>(Vrt$nYr;UE&DwW(}kt?r3R^zT)C=atZl*wSQj?Rb41v#R}YQx)p@ zL_hivtRY*(Up`{9pa0MYYB!Gi5AzcFXCC#>Z}q$?%uEflB2`s8j?+9bCXTD_u(W>| zPjWR@2#BODlb4pZ96+)s8dYkg2nhOJBDGR}9Mk9CCyl5Ib-2qr!sYLa+0D1T_Flvrf-qR$Xs>-*CMv$(g9qE0p`#-?U*%9D~`lCLJ2zN(tD5nU3|u* zk6T<1C{Y^;W@!!(esz1_ox9TC5&H8pNxKiMKS$ZZjyP(~8=3qF=SceQ1Cr5e4Nv&W z?3XJmMY+<{muL{JtWb$LX z?FChc%B8J&mf0;$UadSc$unDdX|56t3`tpeSs~SPO)jfiGBatSWzW+DW&IHmLRaM! z>RIJdI2+(!#BO;Dy(3rgcxtCf9;@eRK9$ORj9caxAfXUkAeNyMpgaUTq;%58bYH6?sH5eLcS&T>-xIQ5b7m_0c+%Z>&yX% zH3S`i7TAmGJwWARPZHSaUjNN|^&Z{()tmQFi7NlJRrscy>Qw2UL7$#mmvT-0piYab zjoyQPjY{8hn&h~LJ?bcCn%f_G`yIeNMyShYO2$pHnP20)p+qO=hCFD6C!k*VEvOTI z2g+w3UUltTr2PK^&?FIjQTyt+{%=wjfW|6E56%o~?E8S&8YCA;Sp>Rj)tk1NDf1<1 zPSwdJh~O8zo_%mt(>Ly*=nPT#=+>~eq z{G$mPn(8w;tJV4j&HQqGTcx&g*UK{3Kc*8At#^<+HcQ6}ZBsVpQ8&>Kh_^B#nsryZn#;N|)X1QsS_Evr3tYi0)fU2$)rcU`<{@YZof`^UI9#PRSr1VYJ J5goDQ{12vunF{~_ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/index.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69bf91c8bdb3a6d24b541875d2ddc69c44612e15 GIT binary patch literal 1237 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/scheme.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..93763d904c246392d8327b8a1a1591f1800d9a00 GIT binary patch literal 1036 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb940adc574907020b54786aa16675328a4e0362 GIT binary patch literal 1698 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..47544d43a80b7b638b134694da1b3e711dc18d37 GIT binary patch literal 4365 zcmc&%-EZ8+5$BS;51mg^tSItFzu2N^eU5df)NYyzitN;O3b%!8IEGtXY_rtuo{kQW zq<1OVI!HiT8EBr0qOU;#>&<@bAJKne(YHM1xo<&H_czPq9nT*{Q4}bJ-6LmrXJ%*S zH#17+=NlHDzl?s~|LeSEeL)}P$HB)X4D~Zi-0E7KaXVsNhF>SLhfdcSx?Oiz=~fu6 zxlwgk>(sl}_j_SoXJL%ZAH_D5E$KKji~kxHRNoGCBx9u90xP|qP|C{^FB=GNH;`enqr5bbIFi+6)4nK7PZb}R zFw`G02@3|Wx;AHBN4QTa+!pTr>XF^8aYxj-%PW1?T-oi;aaS}%{glG2lY)}fjO6S#i&1O zeo!*y=;^&P7jJCPeRhT1EZ#RizIR8h-hKOGYn4c}lvB=LY_%HR_&IaNtZwau5#PMS zKfbqmm)0*DYPvT)RqzS6!WTHFQIJhZ6V7+q4+qiyoi>LXR>QcTw7#qB8NDfVI`nE>u?~sX zJfDYW7Dm6GTzp*yp+ZoQB@=d|Z_$o8$*^J~xa4{= zWm~((qRjt_t!f7z(-q@RT`~UCtgRh*O}pf%9)nqnhiqNPcoRddVH#Nb*4^a;-0Qw| z#k#w20Bhc7c&i^cWcz)4-#K*t7Jh3P$KIk!*ufu-ERR? z)v7Z0IgKW3JRg1ApsDSHN0|A3dm~DEL8La@latq53wqvg^vPeo6uL5m6$g?sg(TzY z%C<~)QeBe*Cg=%CsaDtE2Nfo{VyNfI@;G zcbWK*Mw!X~j}Z*y{6lug5aQ10!cBu&6TL>Q?;~YHVK1QEt`eCE?nQt*y)~|SHy6iSwyx&-%kL3)V`L*|D(u8-*qtNM zbg^Z7^o@TjSi2;CCgah$BIEs?43b$U%b@%|uFsl3_#6CG@<5b46fkudbMYuIi~!NN zTIMMN?kR%G0}i&rILIjKCaERp4MNlm%0I@b+u<&f)5L>2X`1`gSgkQR_93#AcoYoN zNSyORQ=TOXI>vjRnmJ^ud`T@*$Arv;7gAe4l;$2r1rmOa-eNDW5Z+pQDtR3(K`=BN z*3I@CS8sS1e(=LQ4ADOH2BPZ1Nj=)O&mcR%XmS1`k&*(+fm4SCIk(f z%3RBr^M*m1V&^%+DxgDfmWV@h^^kgE5Qm9GxhrC`6qUCI)HNswL&zewP319ZH^<-9 zjkKyzalKwZO-X?R>a~O2B;*tQf*7DqMXZnnkON{7NKf@ZMKTY(D3IGk&XfBK3E{tm zXt15bc#P}!aOwqI-vCKb*I<9@S}SOBibB{2sC_~Mpf%2O)R4Ra z;qn5G7Y&Gk_EgS~NuudIPP~TUMN)toqvmm!)t?vT@HM+%DuiT_%fy0OH59*b>)%8_ z&|;%MjFAqwAdAXUl81w-%|mg+|9yEPD#WAI|**ZK!+~dcV}8 zOw#==x*8Syh017gCI<@MTBdf6`gq^h4Ij?pJ7_n3-SqtjJ3%yFsrf!ndLY|qL~C?u z6jWWief8!~e)-W=`Aw34mL}?WC8bN*p^3V3?U0H;qEAvnuG2&&*X~x5L~?_^O}jIl zOv$KWp^0J2P~CEwYun6q+${-ksn~v)ohP4 zT`ra+8qM@+wC`;n9S2WjJMZbSt4*HD6+US;6#ac$JnD(mG%$JdO>$nPu&!_9=G&yk SR*~wiRd<$I({9>J&c6UN>!qgv literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/candidate.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/candidate.py new file mode 100644 index 0000000..a4963ae --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/candidate.py @@ -0,0 +1,34 @@ +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.models.link import Link +from pip._internal.utils.models import KeyBasedCompareMixin + + +class InstallationCandidate(KeyBasedCompareMixin): + """Represents a potential "candidate" for installation.""" + + __slots__ = ["name", "version", "link"] + + def __init__(self, name: str, version: str, link: Link) -> None: + self.name = name + self.version = parse_version(version) + self.link = link + + super().__init__( + key=(self.name, self.version, self.link), + defining_class=InstallationCandidate, + ) + + def __repr__(self) -> str: + return "".format( + self.name, + self.version, + self.link, + ) + + def __str__(self) -> str: + return "{!r} candidate (version {} at {})".format( + self.name, + self.version, + self.link, + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/direct_url.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/direct_url.py new file mode 100644 index 0000000..92060d4 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/direct_url.py @@ -0,0 +1,220 @@ +""" PEP 610 """ +import json +import re +import urllib.parse +from typing import Any, Dict, Iterable, Optional, Type, TypeVar, Union + +__all__ = [ + "DirectUrl", + "DirectUrlValidationError", + "DirInfo", + "ArchiveInfo", + "VcsInfo", +] + +T = TypeVar("T") + +DIRECT_URL_METADATA_NAME = "direct_url.json" +ENV_VAR_RE = re.compile(r"^\$\{[A-Za-z0-9-_]+\}(:\$\{[A-Za-z0-9-_]+\})?$") + + +class DirectUrlValidationError(Exception): + pass + + +def _get( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> Optional[T]: + """Get value from dictionary and verify expected type.""" + if key not in d: + return default + value = d[key] + if not isinstance(value, expected_type): + raise DirectUrlValidationError( + "{!r} has unexpected type for {} (expected {})".format( + value, key, expected_type + ) + ) + return value + + +def _get_required( + d: Dict[str, Any], expected_type: Type[T], key: str, default: Optional[T] = None +) -> T: + value = _get(d, expected_type, key, default) + if value is None: + raise DirectUrlValidationError(f"{key} must have a value") + return value + + +def _exactly_one_of(infos: Iterable[Optional["InfoType"]]) -> "InfoType": + infos = [info for info in infos if info is not None] + if not infos: + raise DirectUrlValidationError( + "missing one of archive_info, dir_info, vcs_info" + ) + if len(infos) > 1: + raise DirectUrlValidationError( + "more than one of archive_info, dir_info, vcs_info" + ) + assert infos[0] is not None + return infos[0] + + +def _filter_none(**kwargs: Any) -> Dict[str, Any]: + """Make dict excluding None values.""" + return {k: v for k, v in kwargs.items() if v is not None} + + +class VcsInfo: + name = "vcs_info" + + def __init__( + self, + vcs: str, + commit_id: str, + requested_revision: Optional[str] = None, + resolved_revision: Optional[str] = None, + resolved_revision_type: Optional[str] = None, + ) -> None: + self.vcs = vcs + self.requested_revision = requested_revision + self.commit_id = commit_id + self.resolved_revision = resolved_revision + self.resolved_revision_type = resolved_revision_type + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["VcsInfo"]: + if d is None: + return None + return cls( + vcs=_get_required(d, str, "vcs"), + commit_id=_get_required(d, str, "commit_id"), + requested_revision=_get(d, str, "requested_revision"), + resolved_revision=_get(d, str, "resolved_revision"), + resolved_revision_type=_get(d, str, "resolved_revision_type"), + ) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none( + vcs=self.vcs, + requested_revision=self.requested_revision, + commit_id=self.commit_id, + resolved_revision=self.resolved_revision, + resolved_revision_type=self.resolved_revision_type, + ) + + +class ArchiveInfo: + name = "archive_info" + + def __init__( + self, + hash: Optional[str] = None, + ) -> None: + self.hash = hash + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["ArchiveInfo"]: + if d is None: + return None + return cls(hash=_get(d, str, "hash")) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(hash=self.hash) + + +class DirInfo: + name = "dir_info" + + def __init__( + self, + editable: bool = False, + ) -> None: + self.editable = editable + + @classmethod + def _from_dict(cls, d: Optional[Dict[str, Any]]) -> Optional["DirInfo"]: + if d is None: + return None + return cls(editable=_get_required(d, bool, "editable", default=False)) + + def _to_dict(self) -> Dict[str, Any]: + return _filter_none(editable=self.editable or None) + + +InfoType = Union[ArchiveInfo, DirInfo, VcsInfo] + + +class DirectUrl: + def __init__( + self, + url: str, + info: InfoType, + subdirectory: Optional[str] = None, + ) -> None: + self.url = url + self.info = info + self.subdirectory = subdirectory + + def _remove_auth_from_netloc(self, netloc: str) -> str: + if "@" not in netloc: + return netloc + user_pass, netloc_no_user_pass = netloc.split("@", 1) + if ( + isinstance(self.info, VcsInfo) + and self.info.vcs == "git" + and user_pass == "git" + ): + return netloc + if ENV_VAR_RE.match(user_pass): + return netloc + return netloc_no_user_pass + + @property + def redacted_url(self) -> str: + """url with user:password part removed unless it is formed with + environment variables as specified in PEP 610, or it is ``git`` + in the case of a git URL. + """ + purl = urllib.parse.urlsplit(self.url) + netloc = self._remove_auth_from_netloc(purl.netloc) + surl = urllib.parse.urlunsplit( + (purl.scheme, netloc, purl.path, purl.query, purl.fragment) + ) + return surl + + def validate(self) -> None: + self.from_dict(self.to_dict()) + + @classmethod + def from_dict(cls, d: Dict[str, Any]) -> "DirectUrl": + return DirectUrl( + url=_get_required(d, str, "url"), + subdirectory=_get(d, str, "subdirectory"), + info=_exactly_one_of( + [ + ArchiveInfo._from_dict(_get(d, dict, "archive_info")), + DirInfo._from_dict(_get(d, dict, "dir_info")), + VcsInfo._from_dict(_get(d, dict, "vcs_info")), + ] + ), + ) + + def to_dict(self) -> Dict[str, Any]: + res = _filter_none( + url=self.redacted_url, + subdirectory=self.subdirectory, + ) + res[self.info.name] = self.info._to_dict() + return res + + @classmethod + def from_json(cls, s: str) -> "DirectUrl": + return cls.from_dict(json.loads(s)) + + def to_json(self) -> str: + return json.dumps(self.to_dict(), sort_keys=True) + + def is_local_editable(self) -> bool: + return isinstance(self.info, DirInfo) and self.info.editable diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/format_control.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/format_control.py new file mode 100644 index 0000000..db3995e --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/format_control.py @@ -0,0 +1,80 @@ +from typing import FrozenSet, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import CommandError + + +class FormatControl: + """Helper for managing formats from which a package can be installed.""" + + __slots__ = ["no_binary", "only_binary"] + + def __init__( + self, + no_binary: Optional[Set[str]] = None, + only_binary: Optional[Set[str]] = None, + ) -> None: + if no_binary is None: + no_binary = set() + if only_binary is None: + only_binary = set() + + self.no_binary = no_binary + self.only_binary = only_binary + + def __eq__(self, other: object) -> bool: + if not isinstance(other, self.__class__): + return NotImplemented + + if self.__slots__ != other.__slots__: + return False + + return all(getattr(self, k) == getattr(other, k) for k in self.__slots__) + + def __repr__(self) -> str: + return "{}({}, {})".format( + self.__class__.__name__, self.no_binary, self.only_binary + ) + + @staticmethod + def handle_mutual_excludes(value: str, target: Set[str], other: Set[str]) -> None: + if value.startswith("-"): + raise CommandError( + "--no-binary / --only-binary option requires 1 argument." + ) + new = value.split(",") + while ":all:" in new: + other.clear() + target.clear() + target.add(":all:") + del new[: new.index(":all:") + 1] + # Without a none, we want to discard everything as :all: covers it + if ":none:" not in new: + return + for name in new: + if name == ":none:": + target.clear() + continue + name = canonicalize_name(name) + other.discard(name) + target.add(name) + + def get_allowed_formats(self, canonical_name: str) -> FrozenSet[str]: + result = {"binary", "source"} + if canonical_name in self.only_binary: + result.discard("source") + elif canonical_name in self.no_binary: + result.discard("binary") + elif ":all:" in self.only_binary: + result.discard("source") + elif ":all:" in self.no_binary: + result.discard("binary") + return frozenset(result) + + def disallow_binaries(self) -> None: + self.handle_mutual_excludes( + ":all:", + self.no_binary, + self.only_binary, + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/index.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/index.py new file mode 100644 index 0000000..b94c325 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/index.py @@ -0,0 +1,28 @@ +import urllib.parse + + +class PackageIndex: + """Represents a Package Index and provides easier access to endpoints""" + + __slots__ = ["url", "netloc", "simple_url", "pypi_url", "file_storage_domain"] + + def __init__(self, url: str, file_storage_domain: str) -> None: + super().__init__() + self.url = url + self.netloc = urllib.parse.urlsplit(url).netloc + self.simple_url = self._url_for_path("simple") + self.pypi_url = self._url_for_path("pypi") + + # This is part of a temporary hack used to block installs of PyPI + # packages which depend on external urls only necessary until PyPI can + # block such packages themselves + self.file_storage_domain = file_storage_domain + + def _url_for_path(self, path: str) -> str: + return urllib.parse.urljoin(self.url, path) + + +PyPI = PackageIndex("https://pypi.org/", file_storage_domain="files.pythonhosted.org") +TestPyPI = PackageIndex( + "https://test.pypi.org/", file_storage_domain="test-files.pythonhosted.org" +) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/link.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/link.py new file mode 100644 index 0000000..6069b27 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/link.py @@ -0,0 +1,288 @@ +import functools +import logging +import os +import posixpath +import re +import urllib.parse +from typing import TYPE_CHECKING, Dict, List, NamedTuple, Optional, Tuple, Union + +from pip._internal.utils.filetypes import WHEEL_EXTENSION +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + redact_auth_from_url, + split_auth_from_netloc, + splitext, +) +from pip._internal.utils.models import KeyBasedCompareMixin +from pip._internal.utils.urls import path_to_url, url_to_path + +if TYPE_CHECKING: + from pip._internal.index.collector import HTMLPage + +logger = logging.getLogger(__name__) + + +_SUPPORTED_HASHES = ("sha1", "sha224", "sha384", "sha256", "sha512", "md5") + + +class Link(KeyBasedCompareMixin): + """Represents a parsed link from a Package Index's simple URL""" + + __slots__ = [ + "_parsed_url", + "_url", + "comes_from", + "requires_python", + "yanked_reason", + "cache_link_parsing", + ] + + def __init__( + self, + url: str, + comes_from: Optional[Union[str, "HTMLPage"]] = None, + requires_python: Optional[str] = None, + yanked_reason: Optional[str] = None, + cache_link_parsing: bool = True, + ) -> None: + """ + :param url: url of the resource pointed to (href of the link) + :param comes_from: instance of HTMLPage where the link was found, + or string. + :param requires_python: String containing the `Requires-Python` + metadata field, specified in PEP 345. This may be specified by + a data-requires-python attribute in the HTML link tag, as + described in PEP 503. + :param yanked_reason: the reason the file has been yanked, if the + file has been yanked, or None if the file hasn't been yanked. + This is the value of the "data-yanked" attribute, if present, in + a simple repository HTML link. If the file has been yanked but + no reason was provided, this should be the empty string. See + PEP 592 for more information and the specification. + :param cache_link_parsing: A flag that is used elsewhere to determine + whether resources retrieved from this link + should be cached. PyPI index urls should + generally have this set to False, for + example. + """ + + # url can be a UNC windows share + if url.startswith("\\\\"): + url = path_to_url(url) + + self._parsed_url = urllib.parse.urlsplit(url) + # Store the url as a private attribute to prevent accidentally + # trying to set a new value. + self._url = url + + self.comes_from = comes_from + self.requires_python = requires_python if requires_python else None + self.yanked_reason = yanked_reason + + super().__init__(key=url, defining_class=Link) + + self.cache_link_parsing = cache_link_parsing + + def __str__(self) -> str: + if self.requires_python: + rp = f" (requires-python:{self.requires_python})" + else: + rp = "" + if self.comes_from: + return "{} (from {}){}".format( + redact_auth_from_url(self._url), self.comes_from, rp + ) + else: + return redact_auth_from_url(str(self._url)) + + def __repr__(self) -> str: + return f"" + + @property + def url(self) -> str: + return self._url + + @property + def filename(self) -> str: + path = self.path.rstrip("/") + name = posixpath.basename(path) + if not name: + # Make sure we don't leak auth information if the netloc + # includes a username and password. + netloc, user_pass = split_auth_from_netloc(self.netloc) + return netloc + + name = urllib.parse.unquote(name) + assert name, f"URL {self._url!r} produced no filename" + return name + + @property + def file_path(self) -> str: + return url_to_path(self.url) + + @property + def scheme(self) -> str: + return self._parsed_url.scheme + + @property + def netloc(self) -> str: + """ + This can contain auth information. + """ + return self._parsed_url.netloc + + @property + def path(self) -> str: + return urllib.parse.unquote(self._parsed_url.path) + + def splitext(self) -> Tuple[str, str]: + return splitext(posixpath.basename(self.path.rstrip("/"))) + + @property + def ext(self) -> str: + return self.splitext()[1] + + @property + def url_without_fragment(self) -> str: + scheme, netloc, path, query, fragment = self._parsed_url + return urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + + _egg_fragment_re = re.compile(r"[#&]egg=([^&]*)") + + @property + def egg_fragment(self) -> Optional[str]: + match = self._egg_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + _subdirectory_fragment_re = re.compile(r"[#&]subdirectory=([^&]*)") + + @property + def subdirectory_fragment(self) -> Optional[str]: + match = self._subdirectory_fragment_re.search(self._url) + if not match: + return None + return match.group(1) + + _hash_re = re.compile( + r"({choices})=([a-f0-9]+)".format(choices="|".join(_SUPPORTED_HASHES)) + ) + + @property + def hash(self) -> Optional[str]: + match = self._hash_re.search(self._url) + if match: + return match.group(2) + return None + + @property + def hash_name(self) -> Optional[str]: + match = self._hash_re.search(self._url) + if match: + return match.group(1) + return None + + @property + def show_url(self) -> str: + return posixpath.basename(self._url.split("#", 1)[0].split("?", 1)[0]) + + @property + def is_file(self) -> bool: + return self.scheme == "file" + + def is_existing_dir(self) -> bool: + return self.is_file and os.path.isdir(self.file_path) + + @property + def is_wheel(self) -> bool: + return self.ext == WHEEL_EXTENSION + + @property + def is_vcs(self) -> bool: + from pip._internal.vcs import vcs + + return self.scheme in vcs.all_schemes + + @property + def is_yanked(self) -> bool: + return self.yanked_reason is not None + + @property + def has_hash(self) -> bool: + return self.hash_name is not None + + def is_hash_allowed(self, hashes: Optional[Hashes]) -> bool: + """ + Return True if the link has a hash and it is allowed. + """ + if hashes is None or not self.has_hash: + return False + # Assert non-None so mypy knows self.hash_name and self.hash are str. + assert self.hash_name is not None + assert self.hash is not None + + return hashes.is_hash_allowed(self.hash_name, hex_digest=self.hash) + + +class _CleanResult(NamedTuple): + """Convert link for equivalency check. + + This is used in the resolver to check whether two URL-specified requirements + likely point to the same distribution and can be considered equivalent. This + equivalency logic avoids comparing URLs literally, which can be too strict + (e.g. "a=1&b=2" vs "b=2&a=1") and produce conflicts unexpecting to users. + + Currently this does three things: + + 1. Drop the basic auth part. This is technically wrong since a server can + serve different content based on auth, but if it does that, it is even + impossible to guarantee two URLs without auth are equivalent, since + the user can input different auth information when prompted. So the + practical solution is to assume the auth doesn't affect the response. + 2. Parse the query to avoid the ordering issue. Note that ordering under the + same key in the query are NOT cleaned; i.e. "a=1&a=2" and "a=2&a=1" are + still considered different. + 3. Explicitly drop most of the fragment part, except ``subdirectory=`` and + hash values, since it should have no impact the downloaded content. Note + that this drops the "egg=" part historically used to denote the requested + project (and extras), which is wrong in the strictest sense, but too many + people are supplying it inconsistently to cause superfluous resolution + conflicts, so we choose to also ignore them. + """ + + parsed: urllib.parse.SplitResult + query: Dict[str, List[str]] + subdirectory: str + hashes: Dict[str, str] + + +def _clean_link(link: Link) -> _CleanResult: + parsed = link._parsed_url + netloc = parsed.netloc.rsplit("@", 1)[-1] + # According to RFC 8089, an empty host in file: means localhost. + if parsed.scheme == "file" and not netloc: + netloc = "localhost" + fragment = urllib.parse.parse_qs(parsed.fragment) + if "egg" in fragment: + logger.debug("Ignoring egg= fragment in %s", link) + try: + # If there are multiple subdirectory values, use the first one. + # This matches the behavior of Link.subdirectory_fragment. + subdirectory = fragment["subdirectory"][0] + except (IndexError, KeyError): + subdirectory = "" + # If there are multiple hash values under the same algorithm, use the + # first one. This matches the behavior of Link.hash_value. + hashes = {k: fragment[k][0] for k in _SUPPORTED_HASHES if k in fragment} + return _CleanResult( + parsed=parsed._replace(netloc=netloc, query="", fragment=""), + query=urllib.parse.parse_qs(parsed.query), + subdirectory=subdirectory, + hashes=hashes, + ) + + +@functools.lru_cache(maxsize=None) +def links_equivalent(link1: Link, link2: Link) -> bool: + return _clean_link(link1) == _clean_link(link2) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/scheme.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/scheme.py new file mode 100644 index 0000000..f51190a --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/scheme.py @@ -0,0 +1,31 @@ +""" +For types associated with installation schemes. + +For a general overview of available schemes and their context, see +https://docs.python.org/3/install/index.html#alternate-installation. +""" + + +SCHEME_KEYS = ["platlib", "purelib", "headers", "scripts", "data"] + + +class Scheme: + """A Scheme holds paths which are used as the base directories for + artifacts associated with a Python package. + """ + + __slots__ = SCHEME_KEYS + + def __init__( + self, + platlib: str, + purelib: str, + headers: str, + scripts: str, + data: str, + ) -> None: + self.platlib = platlib + self.purelib = purelib + self.headers = headers + self.scripts = scripts + self.data = data diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/search_scope.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/search_scope.py new file mode 100644 index 0000000..e4e54c2 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/search_scope.py @@ -0,0 +1,129 @@ +import itertools +import logging +import os +import posixpath +import urllib.parse +from typing import List + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.models.index import PyPI +from pip._internal.utils.compat import has_tls +from pip._internal.utils.misc import normalize_path, redact_auth_from_url + +logger = logging.getLogger(__name__) + + +class SearchScope: + + """ + Encapsulates the locations that pip is configured to search. + """ + + __slots__ = ["find_links", "index_urls"] + + @classmethod + def create( + cls, + find_links: List[str], + index_urls: List[str], + ) -> "SearchScope": + """ + Create a SearchScope object after normalizing the `find_links`. + """ + # Build find_links. If an argument starts with ~, it may be + # a local file relative to a home directory. So try normalizing + # it and if it exists, use the normalized version. + # This is deliberately conservative - it might be fine just to + # blindly normalize anything starting with a ~... + built_find_links: List[str] = [] + for link in find_links: + if link.startswith("~"): + new_link = normalize_path(link) + if os.path.exists(new_link): + link = new_link + built_find_links.append(link) + + # If we don't have TLS enabled, then WARN if anyplace we're looking + # relies on TLS. + if not has_tls(): + for link in itertools.chain(index_urls, built_find_links): + parsed = urllib.parse.urlparse(link) + if parsed.scheme == "https": + logger.warning( + "pip is configured with locations that require " + "TLS/SSL, however the ssl module in Python is not " + "available." + ) + break + + return cls( + find_links=built_find_links, + index_urls=index_urls, + ) + + def __init__( + self, + find_links: List[str], + index_urls: List[str], + ) -> None: + self.find_links = find_links + self.index_urls = index_urls + + def get_formatted_locations(self) -> str: + lines = [] + redacted_index_urls = [] + if self.index_urls and self.index_urls != [PyPI.simple_url]: + for url in self.index_urls: + + redacted_index_url = redact_auth_from_url(url) + + # Parse the URL + purl = urllib.parse.urlsplit(redacted_index_url) + + # URL is generally invalid if scheme and netloc is missing + # there are issues with Python and URL parsing, so this test + # is a bit crude. See bpo-20271, bpo-23505. Python doesn't + # always parse invalid URLs correctly - it should raise + # exceptions for malformed URLs + if not purl.scheme and not purl.netloc: + logger.warning( + 'The index url "%s" seems invalid, please provide a scheme.', + redacted_index_url, + ) + + redacted_index_urls.append(redacted_index_url) + + lines.append( + "Looking in indexes: {}".format(", ".join(redacted_index_urls)) + ) + + if self.find_links: + lines.append( + "Looking in links: {}".format( + ", ".join(redact_auth_from_url(url) for url in self.find_links) + ) + ) + return "\n".join(lines) + + def get_index_urls_locations(self, project_name: str) -> List[str]: + """Returns the locations found via self.index_urls + + Checks the url_name on the main (first in the list) index and + use this url_name to produce all locations + """ + + def mkurl_pypi_url(url: str) -> str: + loc = posixpath.join( + url, urllib.parse.quote(canonicalize_name(project_name)) + ) + # For maximum compatibility with easy_install, ensure the path + # ends in a trailing slash. Although this isn't in the spec + # (and PyPI can handle it without the slash) some other index + # implementations might break if they relied on easy_install's + # behavior. + if not loc.endswith("/"): + loc = loc + "/" + return loc + + return [mkurl_pypi_url(url) for url in self.index_urls] diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py new file mode 100644 index 0000000..977bc4c --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py @@ -0,0 +1,51 @@ +from typing import Optional + +from pip._internal.models.format_control import FormatControl + + +class SelectionPreferences: + """ + Encapsulates the candidate selection preferences for downloading + and installing files. + """ + + __slots__ = [ + "allow_yanked", + "allow_all_prereleases", + "format_control", + "prefer_binary", + "ignore_requires_python", + ] + + # Don't include an allow_yanked default value to make sure each call + # site considers whether yanked releases are allowed. This also causes + # that decision to be made explicit in the calling code, which helps + # people when reading the code. + def __init__( + self, + allow_yanked: bool, + allow_all_prereleases: bool = False, + format_control: Optional[FormatControl] = None, + prefer_binary: bool = False, + ignore_requires_python: Optional[bool] = None, + ) -> None: + """Create a SelectionPreferences object. + + :param allow_yanked: Whether files marked as yanked (in the sense + of PEP 592) are permitted to be candidates for install. + :param format_control: A FormatControl object or None. Used to control + the selection of source packages / binary packages when consulting + the index and links. + :param prefer_binary: Whether to prefer an old, but valid, binary + dist over a new source dist. + :param ignore_requires_python: Whether to ignore incompatible + "Requires-Python" values in links. Defaults to False. + """ + if ignore_requires_python is None: + ignore_requires_python = False + + self.allow_yanked = allow_yanked + self.allow_all_prereleases = allow_all_prereleases + self.format_control = format_control + self.prefer_binary = prefer_binary + self.ignore_requires_python = ignore_requires_python diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/target_python.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/target_python.py new file mode 100644 index 0000000..744bd7e --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/target_python.py @@ -0,0 +1,110 @@ +import sys +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import Tag + +from pip._internal.utils.compatibility_tags import get_supported, version_info_to_nodot +from pip._internal.utils.misc import normalize_version_info + + +class TargetPython: + + """ + Encapsulates the properties of a Python interpreter one is targeting + for a package install, download, etc. + """ + + __slots__ = [ + "_given_py_version_info", + "abis", + "implementation", + "platforms", + "py_version", + "py_version_info", + "_valid_tags", + ] + + def __init__( + self, + platforms: Optional[List[str]] = None, + py_version_info: Optional[Tuple[int, ...]] = None, + abis: Optional[List[str]] = None, + implementation: Optional[str] = None, + ) -> None: + """ + :param platforms: A list of strings or None. If None, searches for + packages that are supported by the current system. Otherwise, will + find packages that can be built on the platforms passed in. These + packages will only be downloaded for distribution: they will + not be built locally. + :param py_version_info: An optional tuple of ints representing the + Python version information to use (e.g. `sys.version_info[:3]`). + This can have length 1, 2, or 3 when provided. + :param abis: A list of strings or None. This is passed to + compatibility_tags.py's get_supported() function as is. + :param implementation: A string or None. This is passed to + compatibility_tags.py's get_supported() function as is. + """ + # Store the given py_version_info for when we call get_supported(). + self._given_py_version_info = py_version_info + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + py_version = ".".join(map(str, py_version_info[:2])) + + self.abis = abis + self.implementation = implementation + self.platforms = platforms + self.py_version = py_version + self.py_version_info = py_version_info + + # This is used to cache the return value of get_tags(). + self._valid_tags: Optional[List[Tag]] = None + + def format_given(self) -> str: + """ + Format the given, non-None attributes for display. + """ + display_version = None + if self._given_py_version_info is not None: + display_version = ".".join( + str(part) for part in self._given_py_version_info + ) + + key_values = [ + ("platforms", self.platforms), + ("version_info", display_version), + ("abis", self.abis), + ("implementation", self.implementation), + ] + return " ".join( + f"{key}={value!r}" for key, value in key_values if value is not None + ) + + def get_tags(self) -> List[Tag]: + """ + Return the supported PEP 425 tags to check wheel candidates against. + + The tags are returned in order of preference (most preferred first). + """ + if self._valid_tags is None: + # Pass versions=None if no py_version_info was given since + # versions=None uses special default logic. + py_version_info = self._given_py_version_info + if py_version_info is None: + version = None + else: + version = version_info_to_nodot(py_version_info) + + tags = get_supported( + version=version, + platforms=self.platforms, + abis=self.abis, + impl=self.implementation, + ) + self._valid_tags = tags + + return self._valid_tags diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/models/wheel.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/wheel.py new file mode 100644 index 0000000..aaf218d --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/models/wheel.py @@ -0,0 +1,89 @@ +"""Represents a wheel file and provides access to the various parts of the +name that have meaning. +""" +import re +from typing import Dict, Iterable, List + +from pip._vendor.packaging.tags import Tag + +from pip._internal.exceptions import InvalidWheelFilename + + +class Wheel: + """A wheel file""" + + wheel_file_re = re.compile( + r"""^(?P(?P[^\s-]+?)-(?P[^\s-]*?)) + ((-(?P\d[^-]*?))?-(?P[^\s-]+?)-(?P[^\s-]+?)-(?P[^\s-]+?) + \.whl|\.dist-info)$""", + re.VERBOSE, + ) + + def __init__(self, filename: str) -> None: + """ + :raises InvalidWheelFilename: when the filename is invalid for a wheel + """ + wheel_info = self.wheel_file_re.match(filename) + if not wheel_info: + raise InvalidWheelFilename(f"{filename} is not a valid wheel filename.") + self.filename = filename + self.name = wheel_info.group("name").replace("_", "-") + # we'll assume "_" means "-" due to wheel naming scheme + # (https://github.com/pypa/pip/issues/1150) + self.version = wheel_info.group("ver").replace("_", "-") + self.build_tag = wheel_info.group("build") + self.pyversions = wheel_info.group("pyver").split(".") + self.abis = wheel_info.group("abi").split(".") + self.plats = wheel_info.group("plat").split(".") + + # All the tag combinations from this file + self.file_tags = { + Tag(x, y, z) for x in self.pyversions for y in self.abis for z in self.plats + } + + def get_formatted_file_tags(self) -> List[str]: + """Return the wheel's tags as a sorted list of strings.""" + return sorted(str(tag) for tag in self.file_tags) + + def support_index_min(self, tags: List[Tag]) -> int: + """Return the lowest index that one of the wheel's file_tag combinations + achieves in the given list of supported tags. + + For example, if there are 8 supported tags and one of the file tags + is first in the list, then return 0. + + :param tags: the PEP 425 tags to check the wheel against, in order + with most preferred first. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min(tags.index(tag) for tag in self.file_tags if tag in tags) + + def find_most_preferred_tag( + self, tags: List[Tag], tag_to_priority: Dict[Tag, int] + ) -> int: + """Return the priority of the most preferred tag that one of the wheel's file + tag combinations achieves in the given list of supported tags using the given + tag_to_priority mapping, where lower priorities are more-preferred. + + This is used in place of support_index_min in some cases in order to avoid + an expensive linear scan of a large list of tags. + + :param tags: the PEP 425 tags to check the wheel against. + :param tag_to_priority: a mapping from tag to priority of that tag, where + lower is more preferred. + + :raises ValueError: If none of the wheel's file tags match one of + the supported tags. + """ + return min( + tag_to_priority[tag] for tag in self.file_tags if tag in tag_to_priority + ) + + def supported(self, tags: Iterable[Tag]) -> bool: + """Return whether the wheel is compatible with one of the given tags. + + :param tags: the PEP 425 tags to check the wheel against. + """ + return not self.file_tags.isdisjoint(tags) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__init__.py new file mode 100644 index 0000000..b51bde9 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__init__.py @@ -0,0 +1,2 @@ +"""Contains purely network-related utilities. +""" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e2d5aaf2ceb3c9d95047eaa0ae0355dcdf6b130 GIT binary patch literal 256 zcmYk1u}T9$5Qg{C!i(FSh*)D z{9*p#o8spmnNBCB==<>Wc3t*qfd8rr+?UC9F>hXtuU2L@I$S(RP)8v*u}jE(6Hq@T z?dAoXqHj7SCMC@6wts3iT_55rdW2#ylFHN5nX_yImiz#%*dGbV_= zZY3-i?F}%k&$wu>E+LcRJi5)!y<>(*5iAA86dc334cKxbwYH7@vA*4l?-=ifpYqV6 FHoqM~N=X0! literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/auth.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ff63bb1bba7207ffcb89ffce93be6f8cfee56871 GIT binary patch literal 7524 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/download.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1d8a89df2795125cd7cc0b5eef241f3f38732b90 GIT binary patch literal 5503 zcmbVQTXWmS6$Ta{08$inwQTvyIB{yaHkH(!q}SN4FR^1sb|WQDIL)9Cu@oVJ0KHgQ z5d&t@D6g5kwljT@9{tjp{)bL~1g39&%1qz-RJV!yodro&&Q<)9HC@wut)cn4&qBSSt1D|Tbu}7>x|$6WS0gNR ztcKOG8+ONOI66IJhQ&^)QR<8}##Fx$mOJB(an-iMN@t=mq1tvh*_mogskReNcV-$h zs$C3cJ4YHvRJ#<;b&fWUs`glTtTW%3?;LL&@0@6yP`Yw>vU93&s&l$=x^t#+M%Oso zsq&Y0^~PC$oR9exZu6JtwU+5m_>*6njaQU*iqH7d{2cCD{8ij_{26~1cfaQ!QQC7D zKj$BX=DdFln)!j&@{ju`pskH&sqk|x%RlL#g7$)cnjiIP?g}4+_KaVJ_WN&Z{!9MZ zFE#({Hfvl&?`8iL^j<;llFyd3+PPlsM!Xq?vFBG?LCBNpW+2Qt_4ti0O{`VC%sh zy50+-bzH}T#BGVV<2Jo!nj_4W;daN9ZW8o(HY>RAHKprq$aemU4H0He(hUR2KarV9&u5n4azjK- z#O&xpZHo2l_$3!1dXCgmZ4Hq;uWjoOwI$8eB$I|TTgDb5jlLft=9jcht;QC6m1Z1C z9?44~k5*;7R>+JXl9}D+9xRk(r4PJtgDaC{&RxEhw~EVK-CSAI#SC8iL=(qxc^WRX z;|^c&0ug#E3lFw#@W%_jh$9a3N)d-47Yp4j*^Z;1U#`Eg5C$uQ?&bRHuPr3l?xn8R zT=!Oavd|5>3oaJJ1zf%my zb->P9?Af38tLH!M*LoB0CqcAYRUzzG&n3Oe5Rs%lm)u$ouKr#_Xk-qI<4X8BGs&j4 z>D+`C91+G%L8i)P2*rro@|r16SW!u`UiOJ;qA{SgIBr(!f=Ogy^YZcgD9Kg4P3IB;Rt{4#o46K zTi!;9Fc|Kd9vObfjiX%?jY(}sr#=6Q^%>A->>wrY>U}dc#k4dO;?V9MNy#d#x2-nx zz!S;;Ym$pqFY?taIm;@`4%V!46?v)}w3HrXgRNA9q{=&8xs{t!nXP7KMsqa)#n4*Z z+}xRgU{;w1VW`(hUTpPznim-KK4wr9S1FVbWR8KbdJDSdVY6CL zs$lv84N#WWM=()HDTBhaViE>5QU)4f(!>?D(7Z;bPR`51jx`u<_~tGfxZpfU#(a}z zGLtKq)5aKk-4Iu#vsTh0y_ z2h|~~U#zyg5Zt|5T|suJ%2;`d1{0z0%>n;Jv800HF=qF3$Ml8)d1+rjenXkFR~}gQ zlHxh7R?59FhkN3uB*>&<8X_xpf)1x)Naw2?$oeiaGmj|w3yN5AnZyqv;ABdPITa}^ zkiyJhxo#a)>0q2{zGsI!8z5y3gAg~n0fp7YSuZ%v51j<~xmKt!BwfIzjSzN(`f^4;1V}k6GS&0tL6(?W~}xl-ye5G`Ip$GsR766B}nG=?TiyVBp*^R4MFZ*6BQh(~u#x3XDh`h-vIq z?eiUUn)n^~(1@$}B_z0p`dy>iof|&mrjKo*HZAxTYSV&mbIW%~i#pllW(zTnyG6f* zyN+*S!(&-#mjp~EE&=jw#Zc`w!HgO~w%WHk4N7T)P$~{8J%(Xa(RMr;{=qWSq@+d28;#sah zrQlN=6YtS;s)Tu;T0|q6&J`);^#bK;u|Vn}b*Y4!6;%1MrzD~}Og0EAEHrdo$^^-I z2!?W{f-kX)`HUIP=j@*)8yZ#y>dGjaPd=+4vm6S%e3n`f0q#;-blt4vx}DhHKr!fM zW!HVQ;f47fK{ZTffHTArT7tq+P(TY#VlVDhiz+Q~7h(&)gm~9M4bK?+jv4G*W|sbS z)=~GLqXG)`tMm{V_&-wtx97D19a!7}C4d?RqyS>rM-9aRHB9`%lg;)p>i!3Q5cjYk z@h*u)62By|w{5j!vdr&DzYNhkcIZ_jsAmPrc8Q?aIDm7qF&TiYlKchYH((@St=%_9 zhzADy<_Pf@fcSz!d|`n2llu@49T0Df5MTJLFhD#d2*UUf@fL7t1M$!g5bpr-_5krf zx~A^yVyh&T5ko|wc=$6Bn#J^&{?0yio2zc%#42>r=H_|snr2k~UgY`#*h->B?^`9&CP6+I0SSdGN=N?xSNs@#Q6q7U#AS%g0@Hv(g?hh1Y65q5 z0*Cjyi#pDaMP2YmD41kY2SxBO$q#K*mu6?wu;CfM-VB5K@I>Y!Q6}nWmmNDeiht7N z>W`o#r{v=YZ|5(mSNq$P5f8hYalCs!fv7=QC{%NQ;>2IF=Y08OwGX|mAJT~EnA@F=?ioATxIS^#hyO%Z!^SV)Bpeg literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3f62b4e2504f1fcbcb4b3ced400ae8b96fff8df9 GIT binary patch literal 8411 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 GC;kM?1u{4Q literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/session.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..48439dd6baa2f3e690ca0dee4f4cc78b3275db29 GIT binary patch literal 10732 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/__pycache__/utils.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..91d7613f04f34f9eb93644acc1980f939a5afc68 GIT binary patch literal 1452 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 WHIZw$K#ML8NB|TuNf-O%jPVa^z&kYn literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/auth.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/auth.py new file mode 100644 index 0000000..ca42798 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/auth.py @@ -0,0 +1,323 @@ +"""Network Authentication Helpers + +Contains interface (MultiDomainBasicAuth) and associated glue code for +providing credentials in the context of network requests. +""" + +import urllib.parse +from typing import Any, Dict, List, Optional, Tuple + +from pip._vendor.requests.auth import AuthBase, HTTPBasicAuth +from pip._vendor.requests.models import Request, Response +from pip._vendor.requests.utils import get_netrc_auth + +from pip._internal.utils.logging import getLogger +from pip._internal.utils.misc import ( + ask, + ask_input, + ask_password, + remove_auth_from_url, + split_auth_netloc_from_url, +) +from pip._internal.vcs.versioncontrol import AuthInfo + +logger = getLogger(__name__) + +Credentials = Tuple[str, str, str] + +try: + import keyring +except ImportError: + keyring = None # type: ignore[assignment] +except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + keyring = None # type: ignore[assignment] + + +def get_keyring_auth(url: Optional[str], username: Optional[str]) -> Optional[AuthInfo]: + """Return the tuple auth for a given url from keyring.""" + global keyring + if not url or not keyring: + return None + + try: + try: + get_credential = keyring.get_credential + except AttributeError: + pass + else: + logger.debug("Getting credentials from keyring for %s", url) + cred = get_credential(url, username) + if cred is not None: + return cred.username, cred.password + return None + + if username: + logger.debug("Getting password from keyring for %s", url) + password = keyring.get_password(url, username) + if password: + return username, password + + except Exception as exc: + logger.warning( + "Keyring is skipped due to an exception: %s", + str(exc), + ) + keyring = None # type: ignore[assignment] + return None + + +class MultiDomainBasicAuth(AuthBase): + def __init__( + self, prompting: bool = True, index_urls: Optional[List[str]] = None + ) -> None: + self.prompting = prompting + self.index_urls = index_urls + self.passwords: Dict[str, AuthInfo] = {} + # When the user is prompted to enter credentials and keyring is + # available, we will offer to save them. If the user accepts, + # this value is set to the credentials they entered. After the + # request authenticates, the caller should call + # ``save_credentials`` to save these. + self._credentials_to_save: Optional[Credentials] = None + + def _get_index_url(self, url: str) -> Optional[str]: + """Return the original index URL matching the requested URL. + + Cached or dynamically generated credentials may work against + the original index URL rather than just the netloc. + + The provided url should have had its username and password + removed already. If the original index url had credentials then + they will be included in the return value. + + Returns None if no matching index was found, or if --no-index + was specified by the user. + """ + if not url or not self.index_urls: + return None + + for u in self.index_urls: + prefix = remove_auth_from_url(u).rstrip("/") + "/" + if url.startswith(prefix): + return u + return None + + def _get_new_credentials( + self, + original_url: str, + allow_netrc: bool = True, + allow_keyring: bool = False, + ) -> AuthInfo: + """Find and return credentials for the specified URL.""" + # Split the credentials and netloc from the url. + url, netloc, url_user_password = split_auth_netloc_from_url( + original_url, + ) + + # Start with the credentials embedded in the url + username, password = url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in url for %s", netloc) + return url_user_password + + # Find a matching index url for this request + index_url = self._get_index_url(url) + if index_url: + # Split the credentials from the url. + index_info = split_auth_netloc_from_url(index_url) + if index_info: + index_url, _, index_url_user_password = index_info + logger.debug("Found index url %s", index_url) + + # If an index URL was found, try its embedded credentials + if index_url and index_url_user_password[0] is not None: + username, password = index_url_user_password + if username is not None and password is not None: + logger.debug("Found credentials in index url for %s", netloc) + return index_url_user_password + + # Get creds from netrc if we still don't have them + if allow_netrc: + netrc_auth = get_netrc_auth(original_url) + if netrc_auth: + logger.debug("Found credentials in netrc for %s", netloc) + return netrc_auth + + # If we don't have a password and keyring is available, use it. + if allow_keyring: + # The index url is more specific than the netloc, so try it first + # fmt: off + kr_auth = ( + get_keyring_auth(index_url, username) or + get_keyring_auth(netloc, username) + ) + # fmt: on + if kr_auth: + logger.debug("Found credentials in keyring for %s", netloc) + return kr_auth + + return username, password + + def _get_url_and_credentials( + self, original_url: str + ) -> Tuple[str, Optional[str], Optional[str]]: + """Return the credentials to use for the provided URL. + + If allowed, netrc and keyring may be used to obtain the + correct credentials. + + Returns (url_without_credentials, username, password). Note + that even if the original URL contains credentials, this + function may return a different username and password. + """ + url, netloc, _ = split_auth_netloc_from_url(original_url) + + # Try to get credentials from original url + username, password = self._get_new_credentials(original_url) + + # If credentials not found, use any stored credentials for this netloc. + # Do this if either the username or the password is missing. + # This accounts for the situation in which the user has specified + # the username in the index url, but the password comes from keyring. + if (username is None or password is None) and netloc in self.passwords: + un, pw = self.passwords[netloc] + # It is possible that the cached credentials are for a different username, + # in which case the cache should be ignored. + if username is None or username == un: + username, password = un, pw + + if username is not None or password is not None: + # Convert the username and password if they're None, so that + # this netloc will show up as "cached" in the conditional above. + # Further, HTTPBasicAuth doesn't accept None, so it makes sense to + # cache the value that is going to be used. + username = username or "" + password = password or "" + + # Store any acquired credentials. + self.passwords[netloc] = (username, password) + + assert ( + # Credentials were found + (username is not None and password is not None) + # Credentials were not found + or (username is None and password is None) + ), f"Could not load credentials from url: {original_url}" + + return url, username, password + + def __call__(self, req: Request) -> Request: + # Get credentials for this request + url, username, password = self._get_url_and_credentials(req.url) + + # Set the url of the request to the url without any credentials + req.url = url + + if username is not None and password is not None: + # Send the basic auth with this request + req = HTTPBasicAuth(username, password)(req) + + # Attach a hook to handle 401 responses + req.register_hook("response", self.handle_401) + + return req + + # Factored out to allow for easy patching in tests + def _prompt_for_password( + self, netloc: str + ) -> Tuple[Optional[str], Optional[str], bool]: + username = ask_input(f"User for {netloc}: ") + if not username: + return None, None, False + auth = get_keyring_auth(netloc, username) + if auth and auth[0] is not None and auth[1] is not None: + return auth[0], auth[1], False + password = ask_password("Password: ") + return username, password, True + + # Factored out to allow for easy patching in tests + def _should_save_password_to_keyring(self) -> bool: + if not keyring: + return False + return ask("Save credentials to keyring [y/N]: ", ["y", "n"]) == "y" + + def handle_401(self, resp: Response, **kwargs: Any) -> Response: + # We only care about 401 responses, anything else we want to just + # pass through the actual response + if resp.status_code != 401: + return resp + + # We are not able to prompt the user so simply return the response + if not self.prompting: + return resp + + parsed = urllib.parse.urlparse(resp.url) + + # Query the keyring for credentials: + username, password = self._get_new_credentials( + resp.url, + allow_netrc=False, + allow_keyring=True, + ) + + # Prompt the user for a new username and password + save = False + if not username and not password: + username, password, save = self._prompt_for_password(parsed.netloc) + + # Store the new username and password to use for future requests + self._credentials_to_save = None + if username is not None and password is not None: + self.passwords[parsed.netloc] = (username, password) + + # Prompt to save the password to keyring + if save and self._should_save_password_to_keyring(): + self._credentials_to_save = (parsed.netloc, username, password) + + # Consume content and release the original connection to allow our new + # request to reuse the same one. + resp.content + resp.raw.release_conn() + + # Add our new username and password to the request + req = HTTPBasicAuth(username or "", password or "")(resp.request) + req.register_hook("response", self.warn_on_401) + + # On successful request, save the credentials that were used to + # keyring. (Note that if the user responded "no" above, this member + # is not set and nothing will be saved.) + if self._credentials_to_save: + req.register_hook("response", self.save_credentials) + + # Send our new request + new_resp = resp.connection.send(req, **kwargs) + new_resp.history.append(resp) + + return new_resp + + def warn_on_401(self, resp: Response, **kwargs: Any) -> None: + """Response callback to warn about incorrect credentials.""" + if resp.status_code == 401: + logger.warning( + "401 Error, Credentials not correct for %s", + resp.request.url, + ) + + def save_credentials(self, resp: Response, **kwargs: Any) -> None: + """Response callback to save credentials on success.""" + assert keyring is not None, "should never reach here without keyring" + if not keyring: + return + + creds = self._credentials_to_save + self._credentials_to_save = None + if creds and resp.status_code < 400: + try: + logger.info("Saving credentials to keyring") + keyring.set_password(*creds) + except Exception: + logger.exception("Failed to save credentials") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/cache.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/cache.py new file mode 100644 index 0000000..9dba7ed --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/cache.py @@ -0,0 +1,69 @@ +"""HTTP cache implementation. +""" + +import os +from contextlib import contextmanager +from typing import Iterator, Optional + +from pip._vendor.cachecontrol.cache import BaseCache +from pip._vendor.cachecontrol.caches import FileCache +from pip._vendor.requests.models import Response + +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import ensure_dir + + +def is_from_cache(response: Response) -> bool: + return getattr(response, "from_cache", False) + + +@contextmanager +def suppressed_cache_errors() -> Iterator[None]: + """If we can't access the cache then we can just skip caching and process + requests as if caching wasn't enabled. + """ + try: + yield + except OSError: + pass + + +class SafeFileCache(BaseCache): + """ + A file based cache which is safe to use even when the target directory may + not be accessible or writable. + """ + + def __init__(self, directory: str) -> None: + assert directory is not None, "Cache directory must not be None." + super().__init__() + self.directory = directory + + def _get_cache_path(self, name: str) -> str: + # From cachecontrol.caches.file_cache.FileCache._fn, brought into our + # class for backwards-compatibility and to avoid using a non-public + # method. + hashed = FileCache.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key: str) -> Optional[bytes]: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + with open(path, "rb") as f: + return f.read() + + def set(self, key: str, value: bytes, expires: Optional[int] = None) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + ensure_dir(os.path.dirname(path)) + + with adjacent_tmp_file(path) as f: + f.write(value) + + replace(f.name, path) + + def delete(self, key: str) -> None: + path = self._get_cache_path(key) + with suppressed_cache_errors(): + os.remove(path) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/download.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/download.py new file mode 100644 index 0000000..35bc970 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/download.py @@ -0,0 +1,185 @@ +"""Download files with progress indicators. +""" +import cgi +import logging +import mimetypes +import os +from typing import Iterable, Optional, Tuple + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.cli.progress_bars import get_download_progress_renderer +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.models.index import PyPI +from pip._internal.models.link import Link +from pip._internal.network.cache import is_from_cache +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks +from pip._internal.utils.misc import format_size, redact_auth_from_url, splitext + +logger = logging.getLogger(__name__) + + +def _get_http_response_size(resp: Response) -> Optional[int]: + try: + return int(resp.headers["content-length"]) + except (ValueError, KeyError, TypeError): + return None + + +def _prepare_download( + resp: Response, + link: Link, + progress_bar: str, +) -> Iterable[bytes]: + total_length = _get_http_response_size(resp) + + if link.netloc == PyPI.file_storage_domain: + url = link.show_url + else: + url = link.url_without_fragment + + logged_url = redact_auth_from_url(url) + + if total_length: + logged_url = "{} ({})".format(logged_url, format_size(total_length)) + + if is_from_cache(resp): + logger.info("Using cached %s", logged_url) + else: + logger.info("Downloading %s", logged_url) + + if logger.getEffectiveLevel() > logging.INFO: + show_progress = False + elif is_from_cache(resp): + show_progress = False + elif not total_length: + show_progress = True + elif total_length > (40 * 1000): + show_progress = True + else: + show_progress = False + + chunks = response_chunks(resp, CONTENT_CHUNK_SIZE) + + if not show_progress: + return chunks + + renderer = get_download_progress_renderer(bar_type=progress_bar, size=total_length) + return renderer(chunks) + + +def sanitize_content_filename(filename: str) -> str: + """ + Sanitize the "filename" value from a Content-Disposition header. + """ + return os.path.basename(filename) + + +def parse_content_disposition(content_disposition: str, default_filename: str) -> str: + """ + Parse the "filename" value from a Content-Disposition header, and + return the default filename if the result is empty. + """ + _type, params = cgi.parse_header(content_disposition) + filename = params.get("filename") + if filename: + # We need to sanitize the filename to prevent directory traversal + # in case the filename contains ".." path parts. + filename = sanitize_content_filename(filename) + return filename or default_filename + + +def _get_http_response_filename(resp: Response, link: Link) -> str: + """Get an ideal filename from the given HTTP response, falling back to + the link filename if not provided. + """ + filename = link.filename # fallback + # Have a look at the Content-Disposition header for a better guess + content_disposition = resp.headers.get("content-disposition") + if content_disposition: + filename = parse_content_disposition(content_disposition, filename) + ext: Optional[str] = splitext(filename)[1] + if not ext: + ext = mimetypes.guess_extension(resp.headers.get("content-type", "")) + if ext: + filename += ext + if not ext and link.url != resp.url: + ext = os.path.splitext(resp.url)[1] + if ext: + filename += ext + return filename + + +def _http_get_download(session: PipSession, link: Link) -> Response: + target_url = link.url.split("#", 1)[0] + resp = session.get(target_url, headers=HEADERS, stream=True) + raise_for_status(resp) + return resp + + +class Downloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__(self, link: Link, location: str) -> Tuple[str, str]: + """Download the file given by link into location.""" + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", e.response.status_code, link + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + return filepath, content_type + + +class BatchDownloader: + def __init__( + self, + session: PipSession, + progress_bar: str, + ) -> None: + self._session = session + self._progress_bar = progress_bar + + def __call__( + self, links: Iterable[Link], location: str + ) -> Iterable[Tuple[Link, Tuple[str, str]]]: + """Download the files given by links into location.""" + for link in links: + try: + resp = _http_get_download(self._session, link) + except NetworkConnectionError as e: + assert e.response is not None + logger.critical( + "HTTP error %s while getting %s", + e.response.status_code, + link, + ) + raise + + filename = _get_http_response_filename(resp, link) + filepath = os.path.join(location, filename) + + chunks = _prepare_download(resp, link, self._progress_bar) + with open(filepath, "wb") as content_file: + for chunk in chunks: + content_file.write(chunk) + content_type = resp.headers.get("Content-Type", "") + yield link, (filepath, content_type) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py new file mode 100644 index 0000000..c9e44d5 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py @@ -0,0 +1,210 @@ +"""Lazy ZIP over HTTP""" + +__all__ = ["HTTPRangeRequestUnsupported", "dist_from_wheel_url"] + +from bisect import bisect_left, bisect_right +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, Dict, Iterator, List, Optional, Tuple +from zipfile import BadZipfile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.metadata import BaseDistribution, MemoryWheel, get_wheel_distribution +from pip._internal.network.session import PipSession +from pip._internal.network.utils import HEADERS, raise_for_status, response_chunks + + +class HTTPRangeRequestUnsupported(Exception): + pass + + +def dist_from_wheel_url(name: str, url: str, session: PipSession) -> BaseDistribution: + """Return a distribution object from the given wheel URL. + + This uses HTTP range requests to only fetch the potion of the wheel + containing metadata, just enough for the object to be constructed. + If such requests are not supported, HTTPRangeRequestUnsupported + is raised. + """ + with LazyZipOverHTTP(url, session) as zf: + # For read-only ZIP files, ZipFile only needs methods read, + # seek, seekable and tell, not the whole IO protocol. + wheel = MemoryWheel(zf.name, zf) # type: ignore + # After context manager exit, wheel.name + # is an invalid file by intention. + return get_wheel_distribution(wheel, canonicalize_name(name)) + + +class LazyZipOverHTTP: + """File-like object mapped to a ZIP file over HTTP. + + This uses HTTP range requests to lazily fetch the file's content, + which is supposed to be fed to ZipFile. If such requests are not + supported by the server, raise HTTPRangeRequestUnsupported + during initialization. + """ + + def __init__( + self, url: str, session: PipSession, chunk_size: int = CONTENT_CHUNK_SIZE + ) -> None: + head = session.head(url, headers=HEADERS) + raise_for_status(head) + assert head.status_code == 200 + self._session, self._url, self._chunk_size = session, url, chunk_size + self._length = int(head.headers["Content-Length"]) + self._file = NamedTemporaryFile() + self.truncate(self._length) + self._left: List[int] = [] + self._right: List[int] = [] + if "bytes" not in head.headers.get("Accept-Ranges", "none"): + raise HTTPRangeRequestUnsupported("range request is not supported") + self._check_zip() + + @property + def mode(self) -> str: + """Opening mode, which is always rb.""" + return "rb" + + @property + def name(self) -> str: + """Path to the underlying file.""" + return self._file.name + + def seekable(self) -> bool: + """Return whether random access is supported, which is True.""" + return True + + def close(self) -> None: + """Close the file.""" + self._file.close() + + @property + def closed(self) -> bool: + """Whether the file is closed.""" + return self._file.closed + + def read(self, size: int = -1) -> bytes: + """Read up to size bytes from the object and return them. + + As a convenience, if size is unspecified or -1, + all bytes until EOF are returned. Fewer than + size bytes may be returned if EOF is reached. + """ + download_size = max(size, self._chunk_size) + start, length = self.tell(), self._length + stop = length if size < 0 else min(start + download_size, length) + start = max(0, stop - download_size) + self._download(start, stop - 1) + return self._file.read(size) + + def readable(self) -> bool: + """Return whether the file is readable, which is True.""" + return True + + def seek(self, offset: int, whence: int = 0) -> int: + """Change stream position and return the new absolute position. + + Seek to offset relative position indicated by whence: + * 0: Start of stream (the default). pos should be >= 0; + * 1: Current position - pos may be negative; + * 2: End of stream - pos usually negative. + """ + return self._file.seek(offset, whence) + + def tell(self) -> int: + """Return the current position.""" + return self._file.tell() + + def truncate(self, size: Optional[int] = None) -> int: + """Resize the stream to the given size in bytes. + + If size is unspecified resize to the current position. + The current stream position isn't changed. + + Return the new file size. + """ + return self._file.truncate(size) + + def writable(self) -> bool: + """Return False.""" + return False + + def __enter__(self) -> "LazyZipOverHTTP": + self._file.__enter__() + return self + + def __exit__(self, *exc: Any) -> Optional[bool]: + return self._file.__exit__(*exc) + + @contextmanager + def _stay(self) -> Iterator[None]: + """Return a context manager keeping the position. + + At the end of the block, seek back to original position. + """ + pos = self.tell() + try: + yield + finally: + self.seek(pos) + + def _check_zip(self) -> None: + """Check and download until the file is a valid ZIP.""" + end = self._length - 1 + for start in reversed(range(0, end, self._chunk_size)): + self._download(start, end) + with self._stay(): + try: + # For read-only ZIP files, ZipFile only needs + # methods read, seek, seekable and tell. + ZipFile(self) # type: ignore + except BadZipfile: + pass + else: + break + + def _stream_response( + self, start: int, end: int, base_headers: Dict[str, str] = HEADERS + ) -> Response: + """Return HTTP response to a range request from start to end.""" + headers = base_headers.copy() + headers["Range"] = f"bytes={start}-{end}" + # TODO: Get range requests to be correctly cached + headers["Cache-Control"] = "no-cache" + return self._session.get(self._url, headers=headers, stream=True) + + def _merge( + self, start: int, end: int, left: int, right: int + ) -> Iterator[Tuple[int, int]]: + """Return an iterator of intervals to be fetched. + + Args: + start (int): Start of needed interval + end (int): End of needed interval + left (int): Index of first overlapping downloaded data + right (int): Index after last overlapping downloaded data + """ + lslice, rslice = self._left[left:right], self._right[left:right] + i = start = min([start] + lslice[:1]) + end = max([end] + rslice[-1:]) + for j, k in zip(lslice, rslice): + if j > i: + yield i, j - 1 + i = k + 1 + if i <= end: + yield i, end + self._left[left:right], self._right[left:right] = [start], [end] + + def _download(self, start: int, end: int) -> None: + """Download bytes from start to end inclusively.""" + with self._stay(): + left = bisect_left(self._right, start) + right = bisect_right(self._left, end) + for start, end in self._merge(start, end, left, right): + response = self._stream_response(start, end) + response.raise_for_status() + self.seek(start) + for chunk in response_chunks(response, self._chunk_size): + self._file.write(chunk) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/session.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/session.py new file mode 100644 index 0000000..cbe743b --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/session.py @@ -0,0 +1,454 @@ +"""PipSession and supporting code, containing all pip-specific +network request configuration and behavior. +""" + +import email.utils +import io +import ipaddress +import json +import logging +import mimetypes +import os +import platform +import shutil +import subprocess +import sys +import urllib.parse +import warnings +from typing import Any, Dict, Iterator, List, Mapping, Optional, Sequence, Tuple, Union + +from pip._vendor import requests, urllib3 +from pip._vendor.cachecontrol import CacheControlAdapter +from pip._vendor.requests.adapters import BaseAdapter, HTTPAdapter +from pip._vendor.requests.models import PreparedRequest, Response +from pip._vendor.requests.structures import CaseInsensitiveDict +from pip._vendor.urllib3.connectionpool import ConnectionPool +from pip._vendor.urllib3.exceptions import InsecureRequestWarning + +from pip import __version__ +from pip._internal.metadata import get_default_environment +from pip._internal.models.link import Link +from pip._internal.network.auth import MultiDomainBasicAuth +from pip._internal.network.cache import SafeFileCache + +# Import ssl from compat so the initial import occurs in only one place. +from pip._internal.utils.compat import has_tls +from pip._internal.utils.glibc import libc_ver +from pip._internal.utils.misc import build_url_from_netloc, parse_netloc +from pip._internal.utils.urls import url_to_path + +logger = logging.getLogger(__name__) + +SecureOrigin = Tuple[str, str, Optional[Union[int, str]]] + + +# Ignore warning raised when using --trusted-host. +warnings.filterwarnings("ignore", category=InsecureRequestWarning) + + +SECURE_ORIGINS: List[SecureOrigin] = [ + # protocol, hostname, port + # Taken from Chrome's list of secure origins (See: http://bit.ly/1qrySKC) + ("https", "*", "*"), + ("*", "localhost", "*"), + ("*", "127.0.0.0/8", "*"), + ("*", "::1/128", "*"), + ("file", "*", None), + # ssh is always secure. + ("ssh", "*", "*"), +] + + +# These are environment variables present when running under various +# CI systems. For each variable, some CI systems that use the variable +# are indicated. The collection was chosen so that for each of a number +# of popular systems, at least one of the environment variables is used. +# This list is used to provide some indication of and lower bound for +# CI traffic to PyPI. Thus, it is okay if the list is not comprehensive. +# For more background, see: https://github.com/pypa/pip/issues/5499 +CI_ENVIRONMENT_VARIABLES = ( + # Azure Pipelines + "BUILD_BUILDID", + # Jenkins + "BUILD_ID", + # AppVeyor, CircleCI, Codeship, Gitlab CI, Shippable, Travis CI + "CI", + # Explicit environment variable. + "PIP_IS_CI", +) + + +def looks_like_ci() -> bool: + """ + Return whether it looks like pip is running under CI. + """ + # We don't use the method of checking for a tty (e.g. using isatty()) + # because some CI systems mimic a tty (e.g. Travis CI). Thus that + # method doesn't provide definitive information in either direction. + return any(name in os.environ for name in CI_ENVIRONMENT_VARIABLES) + + +def user_agent() -> str: + """ + Return a string representing the user agent. + """ + data: Dict[str, Any] = { + "installer": {"name": "pip", "version": __version__}, + "python": platform.python_version(), + "implementation": { + "name": platform.python_implementation(), + }, + } + + if data["implementation"]["name"] == "CPython": + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "PyPy": + pypy_version_info = sys.pypy_version_info # type: ignore + if pypy_version_info.releaselevel == "final": + pypy_version_info = pypy_version_info[:3] + data["implementation"]["version"] = ".".join( + [str(x) for x in pypy_version_info] + ) + elif data["implementation"]["name"] == "Jython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + elif data["implementation"]["name"] == "IronPython": + # Complete Guess + data["implementation"]["version"] = platform.python_version() + + if sys.platform.startswith("linux"): + from pip._vendor import distro + + linux_distribution = distro.name(), distro.version(), distro.codename() + distro_infos: Dict[str, Any] = dict( + filter( + lambda x: x[1], + zip(["name", "version", "id"], linux_distribution), + ) + ) + libc = dict( + filter( + lambda x: x[1], + zip(["lib", "version"], libc_ver()), + ) + ) + if libc: + distro_infos["libc"] = libc + if distro_infos: + data["distro"] = distro_infos + + if sys.platform.startswith("darwin") and platform.mac_ver()[0]: + data["distro"] = {"name": "macOS", "version": platform.mac_ver()[0]} + + if platform.system(): + data.setdefault("system", {})["name"] = platform.system() + + if platform.release(): + data.setdefault("system", {})["release"] = platform.release() + + if platform.machine(): + data["cpu"] = platform.machine() + + if has_tls(): + import _ssl as ssl + + data["openssl_version"] = ssl.OPENSSL_VERSION + + setuptools_dist = get_default_environment().get_distribution("setuptools") + if setuptools_dist is not None: + data["setuptools_version"] = str(setuptools_dist.version) + + if shutil.which("rustc") is not None: + # If for any reason `rustc --version` fails, silently ignore it + try: + rustc_output = subprocess.check_output( + ["rustc", "--version"], stderr=subprocess.STDOUT, timeout=0.5 + ) + except Exception: + pass + else: + if rustc_output.startswith(b"rustc "): + # The format of `rustc --version` is: + # `b'rustc 1.52.1 (9bc8c42bb 2021-05-09)\n'` + # We extract just the middle (1.52.1) part + data["rustc_version"] = rustc_output.split(b" ")[1].decode() + + # Use None rather than False so as not to give the impression that + # pip knows it is not being run under CI. Rather, it is a null or + # inconclusive result. Also, we include some value rather than no + # value to make it easier to know that the check has been run. + data["ci"] = True if looks_like_ci() else None + + user_data = os.environ.get("PIP_USER_AGENT_USER_DATA") + if user_data is not None: + data["user_data"] = user_data + + return "{data[installer][name]}/{data[installer][version]} {json}".format( + data=data, + json=json.dumps(data, separators=(",", ":"), sort_keys=True), + ) + + +class LocalFSAdapter(BaseAdapter): + def send( + self, + request: PreparedRequest, + stream: bool = False, + timeout: Optional[Union[float, Tuple[float, float]]] = None, + verify: Union[bool, str] = True, + cert: Optional[Union[str, Tuple[str, str]]] = None, + proxies: Optional[Mapping[str, str]] = None, + ) -> Response: + pathname = url_to_path(request.url) + + resp = Response() + resp.status_code = 200 + resp.url = request.url + + try: + stats = os.stat(pathname) + except OSError as exc: + # format the exception raised as a io.BytesIO object, + # to return a better error message: + resp.status_code = 404 + resp.reason = type(exc).__name__ + resp.raw = io.BytesIO(f"{resp.reason}: {exc}".encode("utf8")) + else: + modified = email.utils.formatdate(stats.st_mtime, usegmt=True) + content_type = mimetypes.guess_type(pathname)[0] or "text/plain" + resp.headers = CaseInsensitiveDict( + { + "Content-Type": content_type, + "Content-Length": stats.st_size, + "Last-Modified": modified, + } + ) + + resp.raw = open(pathname, "rb") + resp.close = resp.raw.close + + return resp + + def close(self) -> None: + pass + + +class InsecureHTTPAdapter(HTTPAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class InsecureCacheControlAdapter(CacheControlAdapter): + def cert_verify( + self, + conn: ConnectionPool, + url: str, + verify: Union[bool, str], + cert: Optional[Union[str, Tuple[str, str]]], + ) -> None: + super().cert_verify(conn=conn, url=url, verify=False, cert=cert) + + +class PipSession(requests.Session): + + timeout: Optional[int] = None + + def __init__( + self, + *args: Any, + retries: int = 0, + cache: Optional[str] = None, + trusted_hosts: Sequence[str] = (), + index_urls: Optional[List[str]] = None, + **kwargs: Any, + ) -> None: + """ + :param trusted_hosts: Domains not to emit warnings for when not using + HTTPS. + """ + super().__init__(*args, **kwargs) + + # Namespace the attribute with "pip_" just in case to prevent + # possible conflicts with the base class. + self.pip_trusted_origins: List[Tuple[str, Optional[int]]] = [] + + # Attach our User Agent to the request + self.headers["User-Agent"] = user_agent() + + # Attach our Authentication handler to the session + self.auth = MultiDomainBasicAuth(index_urls=index_urls) + + # Create our urllib3.Retry instance which will allow us to customize + # how we handle retries. + retries = urllib3.Retry( + # Set the total number of retries that a particular request can + # have. + total=retries, + # A 503 error from PyPI typically means that the Fastly -> Origin + # connection got interrupted in some way. A 503 error in general + # is typically considered a transient error so we'll go ahead and + # retry it. + # A 500 may indicate transient error in Amazon S3 + # A 520 or 527 - may indicate transient error in CloudFlare + status_forcelist=[500, 503, 520, 527], + # Add a small amount of back off between failed requests in + # order to prevent hammering the service. + backoff_factor=0.25, + ) # type: ignore + + # Our Insecure HTTPAdapter disables HTTPS validation. It does not + # support caching so we'll use it for all http:// URLs. + # If caching is disabled, we will also use it for + # https:// hosts that we've marked as ignoring + # TLS errors for (trusted-hosts). + insecure_adapter = InsecureHTTPAdapter(max_retries=retries) + + # We want to _only_ cache responses on securely fetched origins or when + # the host is specified as trusted. We do this because + # we can't validate the response of an insecurely/untrusted fetched + # origin, and we don't want someone to be able to poison the cache and + # require manual eviction from the cache to fix it. + if cache: + secure_adapter = CacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + self._trusted_host_adapter = InsecureCacheControlAdapter( + cache=SafeFileCache(cache), + max_retries=retries, + ) + else: + secure_adapter = HTTPAdapter(max_retries=retries) + self._trusted_host_adapter = insecure_adapter + + self.mount("https://", secure_adapter) + self.mount("http://", insecure_adapter) + + # Enable file:// urls + self.mount("file://", LocalFSAdapter()) + + for host in trusted_hosts: + self.add_trusted_host(host, suppress_logging=True) + + def update_index_urls(self, new_index_urls: List[str]) -> None: + """ + :param new_index_urls: New index urls to update the authentication + handler with. + """ + self.auth.index_urls = new_index_urls + + def add_trusted_host( + self, host: str, source: Optional[str] = None, suppress_logging: bool = False + ) -> None: + """ + :param host: It is okay to provide a host that has previously been + added. + :param source: An optional source string, for logging where the host + string came from. + """ + if not suppress_logging: + msg = f"adding trusted host: {host!r}" + if source is not None: + msg += f" (from {source})" + logger.info(msg) + + host_port = parse_netloc(host) + if host_port not in self.pip_trusted_origins: + self.pip_trusted_origins.append(host_port) + + self.mount( + build_url_from_netloc(host, scheme="http") + "/", self._trusted_host_adapter + ) + self.mount(build_url_from_netloc(host) + "/", self._trusted_host_adapter) + if not host_port[1]: + self.mount( + build_url_from_netloc(host, scheme="http") + ":", + self._trusted_host_adapter, + ) + # Mount wildcard ports for the same host. + self.mount(build_url_from_netloc(host) + ":", self._trusted_host_adapter) + + def iter_secure_origins(self) -> Iterator[SecureOrigin]: + yield from SECURE_ORIGINS + for host, port in self.pip_trusted_origins: + yield ("*", host, "*" if port is None else port) + + def is_secure_origin(self, location: Link) -> bool: + # Determine if this url used a secure transport mechanism + parsed = urllib.parse.urlparse(str(location)) + origin_protocol, origin_host, origin_port = ( + parsed.scheme, + parsed.hostname, + parsed.port, + ) + + # The protocol to use to see if the protocol matches. + # Don't count the repository type as part of the protocol: in + # cases such as "git+ssh", only use "ssh". (I.e., Only verify against + # the last scheme.) + origin_protocol = origin_protocol.rsplit("+", 1)[-1] + + # Determine if our origin is a secure origin by looking through our + # hardcoded list of secure origins, as well as any additional ones + # configured on this PackageFinder instance. + for secure_origin in self.iter_secure_origins(): + secure_protocol, secure_host, secure_port = secure_origin + if origin_protocol != secure_protocol and secure_protocol != "*": + continue + + try: + addr = ipaddress.ip_address(origin_host) + network = ipaddress.ip_network(secure_host) + except ValueError: + # We don't have both a valid address or a valid network, so + # we'll check this origin against hostnames. + if ( + origin_host + and origin_host.lower() != secure_host.lower() + and secure_host != "*" + ): + continue + else: + # We have a valid address and network, so see if the address + # is contained within the network. + if addr not in network: + continue + + # Check to see if the port matches. + if ( + origin_port != secure_port + and secure_port != "*" + and secure_port is not None + ): + continue + + # If we've gotten here, then this origin matches the current + # secure origin and we should return True + return True + + # If we've gotten to this point, then the origin isn't secure and we + # will not accept it as a valid location to search. We will however + # log a warning that we are ignoring it. + logger.warning( + "The repository located at %s is not a trusted or secure host and " + "is being ignored. If this repository is available via HTTPS we " + "recommend you use HTTPS instead, otherwise you may silence " + "this warning and allow it anyway with '--trusted-host %s'.", + origin_host, + origin_host, + ) + + return False + + def request(self, method: str, url: str, *args: Any, **kwargs: Any) -> Response: + # Allow setting a default timeout on a session + kwargs.setdefault("timeout", self.timeout) + + # Dispatch the actual request + return super().request(method, url, *args, **kwargs) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/utils.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/utils.py new file mode 100644 index 0000000..094cf1b --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/utils.py @@ -0,0 +1,96 @@ +from typing import Dict, Iterator + +from pip._vendor.requests.models import CONTENT_CHUNK_SIZE, Response + +from pip._internal.exceptions import NetworkConnectionError + +# The following comments and HTTP headers were originally added by +# Donald Stufft in git commit 22c562429a61bb77172039e480873fb239dd8c03. +# +# We use Accept-Encoding: identity here because requests defaults to +# accepting compressed responses. This breaks in a variety of ways +# depending on how the server is configured. +# - Some servers will notice that the file isn't a compressible file +# and will leave the file alone and with an empty Content-Encoding +# - Some servers will notice that the file is already compressed and +# will leave the file alone, adding a Content-Encoding: gzip header +# - Some servers won't notice anything at all and will take a file +# that's already been compressed and compress it again, and set +# the Content-Encoding: gzip header +# By setting this to request only the identity encoding we're hoping +# to eliminate the third case. Hopefully there does not exist a server +# which when given a file will notice it is already compressed and that +# you're not asking for a compressed file and will then decompress it +# before sending because if that's the case I don't think it'll ever be +# possible to make this work. +HEADERS: Dict[str, str] = {"Accept-Encoding": "identity"} + + +def raise_for_status(resp: Response) -> None: + http_error_msg = "" + if isinstance(resp.reason, bytes): + # We attempt to decode utf-8 first because some servers + # choose to localize their reason strings. If the string + # isn't utf-8, we fall back to iso-8859-1 for all other + # encodings. + try: + reason = resp.reason.decode("utf-8") + except UnicodeDecodeError: + reason = resp.reason.decode("iso-8859-1") + else: + reason = resp.reason + + if 400 <= resp.status_code < 500: + http_error_msg = ( + f"{resp.status_code} Client Error: {reason} for url: {resp.url}" + ) + + elif 500 <= resp.status_code < 600: + http_error_msg = ( + f"{resp.status_code} Server Error: {reason} for url: {resp.url}" + ) + + if http_error_msg: + raise NetworkConnectionError(http_error_msg, response=resp) + + +def response_chunks( + response: Response, chunk_size: int = CONTENT_CHUNK_SIZE +) -> Iterator[bytes]: + """Given a requests Response, provide the data chunks.""" + try: + # Special case for urllib3. + for chunk in response.raw.stream( + chunk_size, + # We use decode_content=False here because we don't + # want urllib3 to mess with the raw bytes we get + # from the server. If we decompress inside of + # urllib3 then we cannot verify the checksum + # because the checksum will be of the compressed + # file. This breakage will only occur if the + # server adds a Content-Encoding header, which + # depends on how the server was configured: + # - Some servers will notice that the file isn't a + # compressible file and will leave the file alone + # and with an empty Content-Encoding + # - Some servers will notice that the file is + # already compressed and will leave the file + # alone and will add a Content-Encoding: gzip + # header + # - Some servers won't notice anything at all and + # will take a file that's already been compressed + # and compress it again and set the + # Content-Encoding: gzip header + # + # By setting this not to decode automatically we + # hope to eliminate problems with the second case. + decode_content=False, + ): + yield chunk + except AttributeError: + # Standard file-like object. + while True: + chunk = response.raw.read(chunk_size) + if not chunk: + break + yield chunk diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py new file mode 100644 index 0000000..4a7d55d --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py @@ -0,0 +1,60 @@ +"""xmlrpclib.Transport implementation +""" + +import logging +import urllib.parse +import xmlrpc.client +from typing import TYPE_CHECKING, Tuple + +from pip._internal.exceptions import NetworkConnectionError +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status + +if TYPE_CHECKING: + from xmlrpc.client import _HostType, _Marshallable + +logger = logging.getLogger(__name__) + + +class PipXmlrpcTransport(xmlrpc.client.Transport): + """Provide a `xmlrpclib.Transport` implementation via a `PipSession` + object. + """ + + def __init__( + self, index_url: str, session: PipSession, use_datetime: bool = False + ) -> None: + super().__init__(use_datetime) + index_parts = urllib.parse.urlparse(index_url) + self._scheme = index_parts.scheme + self._session = session + + def request( + self, + host: "_HostType", + handler: str, + request_body: bytes, + verbose: bool = False, + ) -> Tuple["_Marshallable", ...]: + assert isinstance(host, str) + parts = (self._scheme, host, handler, None, None, None) + url = urllib.parse.urlunparse(parts) + try: + headers = {"Content-Type": "text/xml"} + response = self._session.post( + url, + data=request_body, + headers=headers, + stream=True, + ) + raise_for_status(response) + self.verbose = verbose + return self.parse_response(response.raw) + except NetworkConnectionError as exc: + assert exc.response + logger.critical( + "HTTP error %s while getting %s", + exc.response.status_code, + url, + ) + raise diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..75133b7e6bae3a3c0a52a349581ff523cc3d8983 GIT binary patch literal 204 zcmYk0K?=e!6hu?$LWCZ~h51Usm5QJ{K?DyFQv0>RG(RL!s5f%yb=-OjS0*6nz`S8* zHB=M>7WKGojwxRW|H@)nM*BRXW_vcwws+>z{KK1|p%y_Zr)34ZZjD!{9T{Aa368Wz z2eu0hnR&^lpjGv)C7+DJtAHab4`+Eo4^~+a$^>*qY9NbF21Uk$h^q=haN9lmvzF?M M#zi{fdl5PN03^INF8}}l literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/__pycache__/check.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4c9350e7598b13fff1d3908918d46e790a27895f GIT binary patch literal 4017 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fae70ef45c38517a81c2be397bc4a08a65fe5774 GIT binary patch literal 210 zcmYk0K?=e!5JgkzLIe-u!j4jKr6TA~5Wxe4)QmQmW^q_T2`rARQT8lL?Nr zMhCVFHJL?O%s{K^TgzfP0j~m%tvFu989i8Kfh!Zx8KHqJIuR5Z4^^wQ1RifHa9-H% R*`GHgTaC-~j_*a}>;s9ZICKC2 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f101dbda80c4502cb0217e87940427fa4c654200 GIT binary patch literal 1437 zcmZuxO^+Kj7`A67Gn4EjyW0zeU7-19W6}gNiu{UwnV~=cS zL!ty#lxx+$&^^M9zcW`(`~{F&UQa%{6?kNiU;DNF_<7#fvfXYWD1R)zJ6|>s`qLWM zO9;l7Q1t{Fg8GPH;&9x@@OQaWxP2GfF^_viqu;3e4el2~KPbX}Sld2t7Oj4(?gxCY zi24!qL)sus>XH_1lRer#4@pGYzk2-+aUP;>XYtYZ)Z`>Lc|4+ms@yOsVlGE)7@tcO zYdKXz8WX0CVuPuj)k*6wK#3l7adpt6<;N#?zm@XhH0PWuJNDI-adIXunUbQQ!gQVL z=)TYf9O~^KP6wruL#p+eQc_hnw-CPBA^19HoD$gVNKFO6%4W=rGhMRUC}3$mqA=Zl zM2qqsQ*>ygnpe$%JvyV}vI++I@PZ0b1q3e0xUPIf%~Xk@Yr$`dV zZAG@UCbjoszmS9~ack@F2z2!>7*KpL;&K4$&a)yHAPiZ&-&3^A)f&qtzCI}DAo~QQ zN{lRc7v$S7K_pm^Z8Un&ZK?oNsJt>aW98fKq27f{who3WF6-TCwuO>GsAg;JXJbma z@?fQcL_?J$b>&SY6Wvf*wN=wLHXEz`-EvcuaN8={4Oq+HoEF*OXX0FDcCIVd z+pxvo({wBgn&wRLe316$_vmFxAnfU>6h=v#5otL$V<|qro!m(|8*I$m$;pSQW`^F{ zP@vP2m1)L=0giK?%5sy8I;}63Zm}ihygJT3oL0gaBKi2~p8ozRQ0gFEm=IDF!~ za$X(3be19W6?+-YuAQtCk3F)z zS$4HsRg`Phuh1Of1Yc*aocIWEXn3CNE~&sHzwz^Xwts%V_pG|z4ubak?AxQ?S_u8& zl&dWQmEfkrrn?Y{stuvQEy}R!FS9Sw6H~T%p}u=yT9+?tb)*Qm6Zc5KOzdFUMTa19`@^k|mS2 zN9yhS(pYe4wtqMtR9X$0F$Y>JUEf?m_)oQ~N{4$#R z^WfZZ7tX{oU@R$DB#sT2$Dj^Jh2*9*31wyo%rTm9nH(M*CVP8#(oQFV_I(o%lh_ek zkq>U`t>`MOY2!WHEEQ#1-d;I80$%-74k6w;7HR^CejidTkv79kpK-cBBJ0yl&QclV4^<{Z7>!!}1lT z9C9{aCc*Mt?ZaXXMTcslOzod2E_;!7%QJTP{Jz~zz3 z-E51w{QU*#H(`svpJXFdvaH}*6oc$=dXJrD6iR^YD`~ZI)saS*&5p_xM?-5Z!HU$<*V6sSgr#;^Dc-u z3`jtTPq2RxdjxO57vtzDxgZxiugKG#zc#vh8ytI^b(rT=4f9;z0KMJ@NNIis6{U1q zHC3NZbWs5`qlxo)qw!dQPS>TVUBT5iU$?R!hpcK|lPmnZ^|}wdHo~O;vVNHcJOAfo z;Tdq0TqcbNk5zMvhL|hjmO~PK3W+=x>~jp7NkI50@?sK`EgbtXCJ+~h$EuT!SN{Nh CDz)SQ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/metadata_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6a420e96396e384e1645b83807353dc34441bdc8 GIT binary patch literal 2382 zcmaJ?&5zqe6rUM8j^lN*pQTH`u&Nd{5}UMCLIO&K+HDbnR#mqWA`)^P&m`-vznF2l zBzO_(_PVOLa6w4B7bK4SD;(#_sb@Hqw#yqQFHn&ol4i_kJ&_*DVCsZ==t8 zKbi>rp+06W8$LdUNBjbUq7I^%k`Q-r@g^MtZ!Od!y`y8briYct=orPg5>_L#V@9=3 zEwVaRF=vExk=?P2aW$+*jZUK&o8f%4&{@EU;r&Inbbvd{w8mDb#a4Pcoul?sy>o)r znNAxpI}gtSdxI`cG;F#=mqFtsB^#)@GWzfi%RK63p3`SB<6agdu@ff!z;}8HcS6?p z{GlU~0r#0h1CjBdJ5WlZWjzN+(cLDN3pWNqNN>fD1D?bYi!+$Bla$4-NP`%*ZEAAy z(^zC)7#1ho;ymH<^z78epqui zyFuJbT#xq!D9rnCk}JwBVXFRsMd^CLnV%(mC~LGF8XPv_v5%EIlZ(K+0?$o&#C;Gd ziBD06_Hm95@H*PXJ2=N;IU`id(NE}SvWuVKOv~{uq;^Z^4y;u6b){XbphuN`BS$%= z#+&Fs1;09K-40^vc(Kz02iBAW4%l2;<^-|xu>5-1I@ZDsW#K6heUziGYRam8fZqY; zB*#CHuhmI-R4Y$_P?#*HVmrt-n?#bMYoo>o6y^kj2t~ z0*Sm#>ZzA)O8rq1#7)8#Nyu6ckQ#dt6GdFdVnMAmjyiJ!=7d^UAv$Sbn-FYb{cuU= zDy6bk#L8vyV_7fY?xsVxIL;cEqzfiVGY|>X6{E6BA*w+re1+ZVRfB;drvl5r!$6^! z0#0)MK*I=d3K*vP9(kngR5BgrE4fB1d)f}*_1SIEs8C}UKfAb79a))?8#$rXyh_bI zAhIt|yriS7I(#3a9TTIGk(s$pYkN31pAc&8nBSS(cpLPnr6V2f!in+H6(rWTF-GeC z5}w)Btd>`H@y4-p@ZZDP|E9Xlxlugf3Fb_Zv=!{pydM$ z0ucd`Sq@zH3lJOm$^esTPT{Sa}5Ic_MSu-mNh(`tN1iL*+aQ{pWp&V!J;;%ff38djL<2mdXV z#YsnE?$pN%pe$~H(B}wNxBjYO5U3e-8?Ow*Dn{dPf~}Vg!^Y*Oyb z7ydNs{2kb)xhku!OB3I9p}@gQ2q<4x7M+AlwMzDCm1W2kC&^PsSN$+(O+qM&c*xbG z3hW!7rA5;$=;Pl=$qPpnp|ggfHPhINgNs1RbH}QdEw0FcJae2<2AxmAs7Rfx^;!1$ zIHRWPDw1+teo48dL3bbXj^2f~T7+mODXK&8g2c>gQ9=hHyRHaQTn3>dQ!|0SY`lW) gij8e-ktL1HLn;m-L9dBMUID|sBo*>EF&Z!a0a1IVp8x;= literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..90f2c6daf2ed9512a0ef7b6c6dcdfd4b4776bfcb GIT binary patch literal 1227 zcmY*Z&5ztP6t|s^$z-x++p0xXD`X)m7->nmswffygt{%_OWRd@s5+M@Gxp46>%_r! zI-Su}LX>O8g&RWJJ#ysV@s$(*0w24)cuLti@{6DI{62o~=g6(C7{T~$_4V{!AEDnn znYk1*&&kjfi*xZCrDUj?JUt$h(zy-^P%j*cSUKgOe&1$@9l z9RXRc&2!l`l#&&vjEerQ%u_Gj9F5sJQKoi^*eNGkc-preK9Ba#kunF;XpUV0hIq z8!B#ERZpP&S0jW~1al9j{t3jIFx+Ateucirs~v-mFe7X4m|$cG^VaBR#Qa~p=lGew z#z)@TKgK`4fzcWt`fCr)1~167;32^0BOg5nxaw#Z>750}sCyp4e2D68ADLizd$R{I zLKd!37vm9}e1I0n^bVt=K6ng{2|(3by|~?$f>Bv>`em&RAakF8+d_pEuMKT=Sc?f7MF`Gy;I;402tNZY^r zbiy5{Y`~S0$`Yxq-xY5CLs{0tPzB&fb?tX)sE!1{5Jxl{J2!d9tY4A31fTv?*<4mU zD@rAbadxo0!=GeK0U~>{HcEC(&6=f|%lea>>8(tZWUN}=z-ne^_KrZ?n5J^mMf(ePSf0}qcCh$Zj*G~QK zk|4n$CMV}S^(Gh&w`{M25TI4tpxe+a;R?+Z>6ELGOPW7{npp)7F$ir~l)>X-I#@%{QAqMY+Q*&sF!sv7R={<>6pFBQAGeqmL`eTERcXpy{_k eL@0u~5|WUZ5D%(4C4`*7>L22hzr*0%U;hGX{9IQ6 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b6e82c9fe4c5af78c8ef613acb728f8efaa43ab3 GIT binary patch literal 1451 zcmZWpOK&7K5VqZq>FG>H$%pp_^+v2P7se{lT zT6n&#f$#}*Ifa2ChEp_XW<0k&S+m-x(D+UNMEU5pm(B|f&77Myk-lT+si z%V5c6?h-BCb71ud-3QK3-S6Eam~CXEM`l&C)U40&478r@<=zgG{TaqcfA^t-j}7qA znva_`B(sXW4s({`B zYhsp2{w{6km-G<42gcIjV(S){D#>Gg8R*lDeMqb_7`a7p!{X?)V`gZdP1 z-{Q^B;w0s)vGzY0+p@P-yJ<0*a8Wyq537lQLPPbYtcEMTqUPS#UE?yk0wgT0=Wrnk zQMV7i9dT0&H7R6mYf@|bxJdF|OSqsY^c6MniMBrHu8jJI_Q>3R%zs7VRoMOeyKq`$ zJd6{O#>22bzr{~NCV=q$B3Gi&1r?TaH7)Xwc7wezO@=FRH`uum%0%(^N~k0#EE$$b z8AeI2xPUqhi;@eICK;M=!p8qqP(eAbUuxofaiasUz_j9gAQa6Zrhg zu5JDZtX%l+wZFWF#3dK6U)m2l-41p!x$IhE3k>wSbxRWtxe%Km*RGnwV=xg!3)cZ| z5S_pqP>7&3k4P{RaS5=cVO;3Cuir3gS5XC(N>Uj-OIee{_Jph3O=`W!P#i@0R$;R@gP=D^hxmj*(Bugrimgv&s^c9fUq4*Z+z4{2WLN|J(vahF7 zRsPMHN_i1yJzRD8j1`fbrA5I6%)>ms$0Etpe5N?hWHh26675YH%c59JBvXABY5>o=J z7^qH(zehjlnUU_f%X8Pv<-_KJVOrGMfQ3RBg&Chr(qhtI?p&_b3&9NYoE1u53M(8e zcMsNU)h>lMc)^zEUS9ojE?Ict!hI%297c+Va?1C81!7>f%28BPiCSzHeu@O zc+3)&-e=d@eU?>TbE(R?a`ltHe_HvhpmHx&)1EDSkQFVx!J!8zlSySO_O<#Ei5(z4 zUJRx@XM;EuSv(qiwz$IX52%29U*?4pJj<9E%ob|Oix1!JzcxVvQQ3MSae#KvTo~xNL6L$%gCf9^ zJVEgqu(Xd?PU$F8TBZF^W5H3@+Af`a3{gw~Q;xCtM!9#rwO`^A zQRf73Ld?0#k3KgD57m@~vsg{F$Mx9Q15jorS`RK_u?UT^LQo0(%*CR=ym;N1tRe7m zBd8(y;7zd#6TxD|Xjt%YoMue+gBy=9sJk5gpMp6T0K;iqgy46xM?bg*I~fy)=aVVt z5`YgBAyw~E_+S+XeL$~OxsnSwyK-w^8s7-*!phr=MFCQk1shd_%gWZuSN2_=7J%$m zfJwZnJMHWvV6}2NG1#oTUA@^UKz>vsCo=YF@{lnnFvye8`7Ij<0FeOOxI+l>33=AF z1H4VdX}!sYNoLV(5t)kwlFvoL40yVejE~|h;wB%;YNI~nVCrb^&_o03plKa-Y#DI< z3kCo#NGm0PhvIMTl}iCCkg6<5Ri477_Yi+~W#ucfhQtH_BN#0MWtT1_B2xO)1)0`u zRGhK_bc>HL(ogBHUFvBtf}BTv4L*$SpxcPHY-FQ{7QnQ13+*B0uUi_nt3U;1Py%dA zw}jI2t+Q&E?c0bPk+_8}B6(*IcGb@vc=aB=_VOQ}=r}bXm=`*#0aQ(JhjW7f4cpVT zA5J%TY*K$e2tsHz)a4=08;p-bIZt$j7|*k;hPdj7H(@)mmrC}hur319WX!(Vsb`6^ zU{>)qbk!y#E|nH0ooI(Gcg$5aDC-k+Ff7~QdE;V8F1_W6E6+uqN7JS7tX!U|6Iyt{ z93ClcaO^RCqLu8?%4^DD65bQo7-kC?@FR)2(S9IZ1d0h6*1&pq)TELYjLjMa0OVdw6P3a%j zlzx(>{l+KK7_&O_BEwvznd~3^YtfK4#;;!gP1eJo7vqb%;I<&$T(4`cA4NJ1Mp5lH zODa((Ih|6BDo1RmE2=OF%l{zfbe=H?WH8$o(D}&6TacGJ& str: + """Generate metadata using mechanisms described in PEP 517. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that Pep517HookCaller implements a fallback for + # prepare_metadata_for_build_wheel, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message("Preparing metadata (pyproject.toml)") + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_wheel(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py new file mode 100644 index 0000000..4c3f48b --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py @@ -0,0 +1,41 @@ +"""Metadata generation logic for source distributions. +""" + +import os + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import ( + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + + +def generate_editable_metadata( + build_env: BuildEnvironment, backend: Pep517HookCaller, details: str +) -> str: + """Generate metadata using mechanisms described in PEP 660. + + Returns the generated metadata directory. + """ + metadata_tmpdir = TempDirectory(kind="modern-metadata", globally_managed=True) + + metadata_dir = metadata_tmpdir.path + + with build_env: + # Note that Pep517HookCaller implements a fallback for + # prepare_metadata_for_build_wheel/editable, so we don't have to + # consider the possibility that this hook doesn't exist. + runner = runner_with_spinner_message( + "Preparing editable metadata (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + distinfo_dir = backend.prepare_metadata_for_build_editable(metadata_dir) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + return os.path.join(metadata_dir, distinfo_dir) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py new file mode 100644 index 0000000..e60988d --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_legacy.py @@ -0,0 +1,74 @@ +"""Metadata generation logic for legacy source distributions. +""" + +import logging +import os + +from pip._internal.build_env import BuildEnvironment +from pip._internal.cli.spinners import open_spinner +from pip._internal.exceptions import ( + InstallationError, + InstallationSubprocessError, + MetadataGenerationFailed, +) +from pip._internal.utils.setuptools_build import make_setuptools_egg_info_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def _find_egg_info(directory: str) -> str: + """Find an .egg-info subdirectory in `directory`.""" + filenames = [f for f in os.listdir(directory) if f.endswith(".egg-info")] + + if not filenames: + raise InstallationError(f"No .egg-info directory found in {directory}") + + if len(filenames) > 1: + raise InstallationError( + "More than one .egg-info directory found in {}".format(directory) + ) + + return os.path.join(directory, filenames[0]) + + +def generate_metadata( + build_env: BuildEnvironment, + setup_py_path: str, + source_dir: str, + isolated: bool, + details: str, +) -> str: + """Generate metadata using setup.py-based defacto mechanisms. + + Returns the generated metadata directory. + """ + logger.debug( + "Running setup.py (path:%s) egg_info for package %s", + setup_py_path, + details, + ) + + egg_info_dir = TempDirectory(kind="pip-egg-info", globally_managed=True).path + + args = make_setuptools_egg_info_args( + setup_py_path, + egg_info_dir=egg_info_dir, + no_user_config=isolated, + ) + + with build_env: + with open_spinner("Preparing metadata (setup.py)") as spinner: + try: + call_subprocess( + args, + cwd=source_dir, + command_desc="python setup.py egg_info", + spinner=spinner, + ) + except InstallationSubprocessError as error: + raise MetadataGenerationFailed(package_details=details) from error + + # Return the .egg-info directory. + return _find_egg_info(egg_info_dir) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py new file mode 100644 index 0000000..b0d2fc9 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py @@ -0,0 +1,37 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_pep517( + name: str, + backend: Pep517HookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 517 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building wheel for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + wheel_name = backend.build_wheel( + tempd, + metadata_directory=metadata_directory, + ) + except Exception: + logger.error("Failed building wheel for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py new file mode 100644 index 0000000..cf7b01a --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py @@ -0,0 +1,46 @@ +import logging +import os +from typing import Optional + +from pip._vendor.pep517.wrappers import HookMissing, Pep517HookCaller + +from pip._internal.utils.subprocess import runner_with_spinner_message + +logger = logging.getLogger(__name__) + + +def build_wheel_editable( + name: str, + backend: Pep517HookCaller, + metadata_directory: str, + tempd: str, +) -> Optional[str]: + """Build one InstallRequirement using the PEP 660 build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + assert metadata_directory is not None + try: + logger.debug("Destination directory: %s", tempd) + + runner = runner_with_spinner_message( + f"Building editable for {name} (pyproject.toml)" + ) + with backend.subprocess_runner(runner): + try: + wheel_name = backend.build_editable( + tempd, + metadata_directory=metadata_directory, + ) + except HookMissing as e: + logger.error( + "Cannot build editable %s because the build " + "backend does not have the %s hook", + name, + e, + ) + return None + except Exception: + logger.error("Failed building editable for %s", name) + return None + return os.path.join(tempd, wheel_name) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py new file mode 100644 index 0000000..c5f0492 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_legacy.py @@ -0,0 +1,102 @@ +import logging +import os.path +from typing import List, Optional + +from pip._internal.cli.spinners import open_spinner +from pip._internal.utils.setuptools_build import make_setuptools_bdist_wheel_args +from pip._internal.utils.subprocess import call_subprocess, format_command_args + +logger = logging.getLogger(__name__) + + +def format_command_result( + command_args: List[str], + command_output: str, +) -> str: + """Format command information for logging.""" + command_desc = format_command_args(command_args) + text = f"Command arguments: {command_desc}\n" + + if not command_output: + text += "Command output: None" + elif logger.getEffectiveLevel() > logging.DEBUG: + text += "Command output: [use --verbose to show]" + else: + if not command_output.endswith("\n"): + command_output += "\n" + text += f"Command output:\n{command_output}" + + return text + + +def get_legacy_build_wheel_path( + names: List[str], + temp_dir: str, + name: str, + command_args: List[str], + command_output: str, +) -> Optional[str]: + """Return the path to the wheel in the temporary build directory.""" + # Sort for determinism. + names = sorted(names) + if not names: + msg = ("Legacy build of wheel for {!r} created no files.\n").format(name) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + return None + + if len(names) > 1: + msg = ( + "Legacy build of wheel for {!r} created more than one file.\n" + "Filenames (choosing first): {}\n" + ).format(name, names) + msg += format_command_result(command_args, command_output) + logger.warning(msg) + + return os.path.join(temp_dir, names[0]) + + +def build_wheel_legacy( + name: str, + setup_py_path: str, + source_dir: str, + global_options: List[str], + build_options: List[str], + tempd: str, +) -> Optional[str]: + """Build one unpacked package using the "legacy" build process. + + Returns path to wheel if successfully built. Otherwise, returns None. + """ + wheel_args = make_setuptools_bdist_wheel_args( + setup_py_path, + global_options=global_options, + build_options=build_options, + destination_dir=tempd, + ) + + spin_message = f"Building wheel for {name} (setup.py)" + with open_spinner(spin_message) as spinner: + logger.debug("Destination directory: %s", tempd) + + try: + output = call_subprocess( + wheel_args, + command_desc="python setup.py bdist_wheel", + cwd=source_dir, + spinner=spinner, + ) + except Exception: + spinner.finish("error") + logger.error("Failed building wheel for %s", name) + return None + + names = os.listdir(tempd) + wheel_path = get_legacy_build_wheel_path( + names=names, + temp_dir=tempd, + name=name, + command_args=wheel_args, + command_output=output, + ) + return wheel_path diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/check.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/check.py new file mode 100644 index 0000000..fb3ac8b --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/check.py @@ -0,0 +1,149 @@ +"""Validation of dependencies of packages +""" + +import logging +from typing import Callable, Dict, List, NamedTuple, Optional, Set, Tuple + +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.metadata import get_default_environment +from pip._internal.metadata.base import DistributionVersion +from pip._internal.req.req_install import InstallRequirement + +logger = logging.getLogger(__name__) + + +class PackageDetails(NamedTuple): + version: DistributionVersion + dependencies: List[Requirement] + + +# Shorthands +PackageSet = Dict[NormalizedName, PackageDetails] +Missing = Tuple[NormalizedName, Requirement] +Conflicting = Tuple[NormalizedName, DistributionVersion, Requirement] + +MissingDict = Dict[NormalizedName, List[Missing]] +ConflictingDict = Dict[NormalizedName, List[Conflicting]] +CheckResult = Tuple[MissingDict, ConflictingDict] +ConflictDetails = Tuple[PackageSet, CheckResult] + + +def create_package_set_from_installed() -> Tuple[PackageSet, bool]: + """Converts a list of distributions into a PackageSet.""" + package_set = {} + problems = False + env = get_default_environment() + for dist in env.iter_installed_distributions(local_only=False, skip=()): + name = dist.canonical_name + try: + dependencies = list(dist.iter_dependencies()) + package_set[name] = PackageDetails(dist.version, dependencies) + except (OSError, ValueError) as e: + # Don't crash on unreadable or broken metadata. + logger.warning("Error parsing requirements for %s: %s", name, e) + problems = True + return package_set, problems + + +def check_package_set( + package_set: PackageSet, should_ignore: Optional[Callable[[str], bool]] = None +) -> CheckResult: + """Check if a package set is consistent + + If should_ignore is passed, it should be a callable that takes a + package name and returns a boolean. + """ + + missing = {} + conflicting = {} + + for package_name, package_detail in package_set.items(): + # Info about dependencies of package_name + missing_deps: Set[Missing] = set() + conflicting_deps: Set[Conflicting] = set() + + if should_ignore and should_ignore(package_name): + continue + + for req in package_detail.dependencies: + name = canonicalize_name(req.name) + + # Check if it's missing + if name not in package_set: + missed = True + if req.marker is not None: + missed = req.marker.evaluate() + if missed: + missing_deps.add((name, req)) + continue + + # Check if there's a conflict + version = package_set[name].version + if not req.specifier.contains(version, prereleases=True): + conflicting_deps.add((name, version, req)) + + if missing_deps: + missing[package_name] = sorted(missing_deps, key=str) + if conflicting_deps: + conflicting[package_name] = sorted(conflicting_deps, key=str) + + return missing, conflicting + + +def check_install_conflicts(to_install: List[InstallRequirement]) -> ConflictDetails: + """For checking if the dependency graph would be consistent after \ + installing given requirements + """ + # Start from the current state + package_set, _ = create_package_set_from_installed() + # Install packages + would_be_installed = _simulate_installation_of(to_install, package_set) + + # Only warn about directly-dependent packages; create a whitelist of them + whitelist = _create_whitelist(would_be_installed, package_set) + + return ( + package_set, + check_package_set( + package_set, should_ignore=lambda name: name not in whitelist + ), + ) + + +def _simulate_installation_of( + to_install: List[InstallRequirement], package_set: PackageSet +) -> Set[NormalizedName]: + """Computes the version of packages after installing to_install.""" + # Keep track of packages that were installed + installed = set() + + # Modify it as installing requirement_set would (assuming no errors) + for inst_req in to_install: + abstract_dist = make_distribution_for_install_requirement(inst_req) + dist = abstract_dist.get_metadata_distribution() + name = dist.canonical_name + package_set[name] = PackageDetails(dist.version, list(dist.iter_dependencies())) + + installed.add(name) + + return installed + + +def _create_whitelist( + would_be_installed: Set[NormalizedName], package_set: PackageSet +) -> Set[NormalizedName]: + packages_affected = set(would_be_installed) + + for package_name in package_set: + if package_name in packages_affected: + continue + + for req in package_set[package_name].dependencies: + if canonicalize_name(req.name) in packages_affected: + packages_affected.add(package_name) + break + + return packages_affected diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/freeze.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/freeze.py new file mode 100644 index 0000000..4565540 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/freeze.py @@ -0,0 +1,254 @@ +import collections +import logging +import os +from typing import Container, Dict, Iterable, Iterator, List, NamedTuple, Optional, Set + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.metadata import BaseDistribution, get_environment +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_file import COMMENT_RE +from pip._internal.utils.direct_url_helpers import direct_url_as_pep440_direct_reference + +logger = logging.getLogger(__name__) + + +class _EditableInfo(NamedTuple): + requirement: str + comments: List[str] + + +def freeze( + requirement: Optional[List[str]] = None, + local_only: bool = False, + user_only: bool = False, + paths: Optional[List[str]] = None, + isolated: bool = False, + exclude_editable: bool = False, + skip: Container[str] = (), +) -> Iterator[str]: + installations: Dict[str, FrozenRequirement] = {} + + dists = get_environment(paths).iter_installed_distributions( + local_only=local_only, + skip=(), + user_only=user_only, + ) + for dist in dists: + req = FrozenRequirement.from_dist(dist) + if exclude_editable and req.editable: + continue + installations[req.canonical_name] = req + + if requirement: + # the options that don't get turned into an InstallRequirement + # should only be emitted once, even if the same option is in multiple + # requirements files, so we need to keep track of what has been emitted + # so that we don't emit it again if it's seen again + emitted_options: Set[str] = set() + # keep track of which files a requirement is in so that we can + # give an accurate warning if a requirement appears multiple times. + req_files: Dict[str, List[str]] = collections.defaultdict(list) + for req_file_path in requirement: + with open(req_file_path) as req_file: + for line in req_file: + if ( + not line.strip() + or line.strip().startswith("#") + or line.startswith( + ( + "-r", + "--requirement", + "-f", + "--find-links", + "-i", + "--index-url", + "--pre", + "--trusted-host", + "--process-dependency-links", + "--extra-index-url", + "--use-feature", + ) + ) + ): + line = line.rstrip() + if line not in emitted_options: + emitted_options.add(line) + yield line + continue + + if line.startswith("-e") or line.startswith("--editable"): + if line.startswith("-e"): + line = line[2:].strip() + else: + line = line[len("--editable") :].strip().lstrip("=") + line_req = install_req_from_editable( + line, + isolated=isolated, + ) + else: + line_req = install_req_from_line( + COMMENT_RE.sub("", line).strip(), + isolated=isolated, + ) + + if not line_req.name: + logger.info( + "Skipping line in requirement file [%s] because " + "it's not clear what it would install: %s", + req_file_path, + line.strip(), + ) + logger.info( + " (add #egg=PackageName to the URL to avoid" + " this warning)" + ) + else: + line_req_canonical_name = canonicalize_name(line_req.name) + if line_req_canonical_name not in installations: + # either it's not installed, or it is installed + # but has been processed already + if not req_files[line_req.name]: + logger.warning( + "Requirement file [%s] contains %s, but " + "package %r is not installed", + req_file_path, + COMMENT_RE.sub("", line).strip(), + line_req.name, + ) + else: + req_files[line_req.name].append(req_file_path) + else: + yield str(installations[line_req_canonical_name]).rstrip() + del installations[line_req_canonical_name] + req_files[line_req.name].append(req_file_path) + + # Warn about requirements that were included multiple times (in a + # single requirements file or in different requirements files). + for name, files in req_files.items(): + if len(files) > 1: + logger.warning( + "Requirement %s included multiple times [%s]", + name, + ", ".join(sorted(set(files))), + ) + + yield ("## The following requirements were added by pip freeze:") + for installation in sorted(installations.values(), key=lambda x: x.name.lower()): + if installation.canonical_name not in skip: + yield str(installation).rstrip() + + +def _format_as_name_version(dist: BaseDistribution) -> str: + if isinstance(dist.version, Version): + return f"{dist.raw_name}=={dist.version}" + return f"{dist.raw_name}==={dist.version}" + + +def _get_editable_info(dist: BaseDistribution) -> _EditableInfo: + """ + Compute and return values (req, comments) for use in + FrozenRequirement.from_dist(). + """ + editable_project_location = dist.editable_project_location + assert editable_project_location + location = os.path.normcase(os.path.abspath(editable_project_location)) + + from pip._internal.vcs import RemoteNotFoundError, RemoteNotValidError, vcs + + vcs_backend = vcs.get_backend_for_dir(location) + + if vcs_backend is None: + display = _format_as_name_version(dist) + logger.debug( + 'No VCS found for editable requirement "%s" in: %r', + display, + location, + ) + return _EditableInfo( + requirement=location, + comments=[f"# Editable install with no version control ({display})"], + ) + + vcs_name = type(vcs_backend).__name__ + + try: + req = vcs_backend.get_src_requirement(location, dist.raw_name) + except RemoteNotFoundError: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[f"# Editable {vcs_name} install with no remote ({display})"], + ) + except RemoteNotValidError as ex: + display = _format_as_name_version(dist) + return _EditableInfo( + requirement=location, + comments=[ + f"# Editable {vcs_name} install ({display}) with either a deleted " + f"local remote or invalid URI:", + f"# '{ex.url}'", + ], + ) + except BadCommand: + logger.warning( + "cannot determine version of editable source in %s " + "(%s command not found in path)", + location, + vcs_backend.name, + ) + return _EditableInfo(requirement=location, comments=[]) + except InstallationError as exc: + logger.warning("Error when trying to get requirement for VCS system %s", exc) + else: + return _EditableInfo(requirement=req, comments=[]) + + logger.warning("Could not determine repository location of %s", location) + + return _EditableInfo( + requirement=location, + comments=["## !! Could not determine repository location"], + ) + + +class FrozenRequirement: + def __init__( + self, + name: str, + req: str, + editable: bool, + comments: Iterable[str] = (), + ) -> None: + self.name = name + self.canonical_name = canonicalize_name(name) + self.req = req + self.editable = editable + self.comments = comments + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "FrozenRequirement": + editable = dist.editable + if editable: + req, comments = _get_editable_info(dist) + else: + comments = [] + direct_url = dist.direct_url + if direct_url: + # if PEP 610 metadata is present, use it + req = direct_url_as_pep440_direct_reference(direct_url, dist.raw_name) + else: + # name==version requirement + req = _format_as_name_version(dist) + + return cls(dist.raw_name, req, editable, comments=comments) + + def __str__(self) -> str: + req = self.req + if self.editable: + req = f"-e {req}" + return "\n".join(list(self.comments) + [str(req)]) + "\n" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py new file mode 100644 index 0000000..24d6a5d --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py @@ -0,0 +1,2 @@ +"""For modules related to installing packages. +""" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d493163c451d697daa333a87916e069e426867a0 GIT binary patch literal 268 zcmYk1!Ab)`42EZWaVhj2=33B=vfxQYP`n5tc=Iw$JFy*1CqpJG+c)y)>-6edcyd-N z_(T5i6G*=BY&JDjAKTlfzV^>C{8v-MWv$Xy3+B;;=E2M-+rt|cyW#LcSgas<#bA|f zOhr9WOe>rH^4YJjbkn>Adewf#PBx`|jizN>n`hy8=08a4{)L@&uewyhct1_DJCBG^%r59(L{7FZ;## JUm1Z~^9_I4PI>?U literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/editable_legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b0549fd4fc79d0364b1358be301c132d7578ef84 GIT binary patch literal 1555 zcmZuxOOxC*5SC?+$K!eKX317aD!3>(Op1(2rHT`TN8kV~fnpC7=Ad{i&8#c3Wh8mS zYz(x+~zN8RfFdPKh;A{aj(eLVZ9h0rfn z*&OFVc?YKY5rCouQHNsgBo3@D$Az1?g_n3mD``3Q%;SF1PTGy!;z7|#I*sh}u;?b; zMsD+7(NFpgV$Q<>8$NQ95e=Bjwk{yrVXbBjnb)k{_1a_Gw9mHa0OkX(LEBnKgn_!=PU9&P{W5| z_QJfRAQ3L+pj|4`JB&2H`zxO2E4rHJz!Am$35CT&T+`&F(Nt zl&EFK2+bwSw2%wqOGt+-vxXEl4KTVeJ1}p;R6hV{^bpFwY(2sb(s=1Foh4efmw4$e zJ&NzQzYVo}4?Vczpk?r22sYj_r0%jqz5A|%zCg6)ArIXHxg1?XYJAsmko~@dxp_)k z`~TCy{@qP`YcuwbzWQ)g;wX*m)6%&u`WXQVL7~>42&E%Per?O8Kw@C5)Kz^TMLj zRXHHUwlN`c*T&*14V9n5zen@Pre+&((b@!W0=sL@ZaAQ+8vq^(@Q%~NJ;#0_#xA7o m*vI%E-^EXT5C4r@_%H0^C%BCt;{gAOJNOSA;@@$1@Y}ynBDXLA literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/legacy.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03b27f4a9a115c666b987fadf036ac98587c691e GIT binary patch literal 3339 zcmb7GTW=f372X*xm%Gd5MR&=Pl|@h&AR3c#ojPsfrbc3?DC#;vx>i!@ zRua2w>#=g|ByQK$Z7Z%OUe`-%-J0%K;(F5PHgwyLo5@0VLARZFF9!j$CoA0* z-LA%~$y#>}85B*{>Bb4_ULqc~=;nq&YP6#3I^842#xf?Crze_Cycb6Ckg4U? zPH&GUs^!v@!&pEf2EDB$d_V(zMv-MP4`!+aAscX*-(}h zAOs16U}5yl-x_^zHDW&X#-+lzZTxy^YznlGC#AwXLE~~!o|vS3f|y^Fit-T}TgXV= zhc#kN$^{0Fim-~x5qg3K#@N;pw#Q~+PAVtH*wK>g!h!X-3f}nLHSFwV z3GIXti^JW{2Zy)mqYeRgqwi*^U|Aef*2xdWUY7podizEvj&^6=>+Nf=cX%Y|)jaGy z0N3E1Jjy%ZOoB4-o6r~7yl^-x$}0&bY_u*^_Z& z^mBptOB1tb?3YLh;HD|cg%%ZL!uy6p3%;V~KL0F_*xW6-gj{z1Ji|VsF zGK$4wq40=xj4y&wY6BF#bsmcJUX`K=kn#&*PaLA!desFGvv&a0(nZq{?%^IX#*n*5 zmZ$;@I>)G3dV&dzeY|vl4h-QH%_H=zK3*=CC$$q}QU?fLIWJA0;^XtD_^;XH^RocA zE1-Ez!>J2kSG}k5i%LR}oy-Ri;-ke`uw9*D1jJg)W#0uevui+9g3?Lr%z3AQ@P?Xl z_h?AK5y0Wub+zDoYP6naQ~&5?X+IjU8!$M!{2?St1psq&m~HDru=9gR`1C!yFpe71gaOqVlJ-=wo<4 zaB0QaU_hBH6S_MbNaxPu9@U=DRElNaR=g$y&7{loI1)Nr>riQ}YLiTjqwzp%t!$xH z*Q&BNRrmXf{6LW(D)N>hHxn!CeeQk7MC=0)+N5-HP@B@sNYG`xT7 zqJZi2x#yiellB?8{ZiK9?(F?K^{K6wG0pE)`J;3ORNS3QN3j+2Nm|>fWXb3iU z;c=-gJxv4uanbfo&~zBnx7GWG?*lOnyQC0(8F{#=kzJuXAV0<>3*l1>1NxWnH`sKa z<11$)aPQw(CVp;}@z>bGU*QV=C${lFu!H}OUHms(#b06%{}tEpUvM4&88_;G`WG~d Br;7jp literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f6fb7b9cd78915cfd2eaf82a5d6127632726f50e GIT binary patch literal 21097 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py new file mode 100644 index 0000000..8435d62 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py @@ -0,0 +1,18 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +"""CacheControl import Interface. + +Make it easy to import from cachecontrol without long namespaces. +""" +__author__ = "Eric Larson" +__email__ = "eric@ionrock.org" +__version__ = "0.12.10" + +from .wrapper import CacheControl +from .adapter import CacheControlAdapter +from .controller import CacheController + +import logging +logging.getLogger(__name__).addHandler(logging.NullHandler()) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..157d0b659bc1e063c2266ce404d0eaed6cda1a45 GIT binary patch literal 650 zcmYjOJ#X7E5G7?f`mo#-?b1=Jhl)u9bZUzfNr4tkg97cOg`h=RCQOmSNlsw>nt06E zpVC!pr~HLZJ*5ty14z6_@*UsZx%oUM7{9u&tKXE6KLZ(ukK`Oz^Ak5oaw2I?rI&kh zl24>Br^c_Q`IHjGN9L#s^578%Caj`7LLAD-#CfdZyO~P%^lpym*`Dkv-bFviBJP$K zqFAd7XIpS4)m81FO~2Sy!AcY=i{o!%qf*_bN;JE)bx%)L;HtD3w8cSttJ}5PwyANp zOs%L?Q)7lEi@Vt;&_#MBpmDZ)u8^E-XTcSl%t6@&C)w$n?DXUTdq5VnPsWyzzZ~*^u;JlAH7h5z1h$GHbCA2{}MoO2gzZ%%TsBD@$$5J}Omvg;+r!ay}G0d?%#*EUd)m{p@;c%z@k!c!BE2 z?XP2NS1Bem7_nsEcbDphNpSXQ1Sn?p4o%zlXW3h3^zuN@utTiTt$K}Z-H1{(tkyNd rQmk~q#-m`IYpYw%vwGKu?Ks^>+hLE$X{q&Z59|m zKySA&aKdRp=J;j>E!mt=#8zRI_S`nuE}YVxy9PUjSNe0`V7C~Q!8`!$asMTm5BY!x z@DBNqhwvWpLq6i;mvlZB2mIia$$MgaL0~;SF+IBWH$*^Y5!JpFf2>8TTEHJ1rP)#( z)s>QU@qnj|5)#~l<2+Ml3JkZX7YpMaKah)cDJu0Sm93B&p15xm0A_mxz5NOXMRruN zm32ueQEX>lk{9T6wgf$#oRHUa7P%5=Bie6;dMM6Bp*{RsUM;k9{L_z5e%7NCB}H2P zl2*JBQU@vLJ%-S{W#@iP*A=aZW6|ZHSAxl}uQk-NZpEl=u1Tn9hq>uLy z^LAkfsZYmLqWu;@3>-Lb2)YkI5k)VcI3NKK#48)MBCJyG&}0+N`Rh(RFsQWQ;ONhDr}pq(V`C9H!6MT|CH1lL&d-9&s$1ec(q zO?h1?u21Cz>aEn9ie{jSj98KCEq z%5PM_=|z7}0JA-gtl7ppLOJp;H=|jtx>Wh(?#*auqB68<3j&v)K^R7e@*_Zc+|^Nv zwyCRDXs`bfXiKKg`&pjsolYb3N`b^|%wK+jC)l|6U5@NB&8wR*ZK~{2mxh*WUAM+q zX(l7w=qCxTN)qXT86C<2dWUewru`l3WH`CvnVN8W)lGZ78QtnH-n-1~F}l`YzkgA8 zlR?}4-v=`6>W@0<7(;P(eC`vd(o#SI_@lWp7`^-V%9^hWaUT`Y;#S`d89X5MkolJH N`eESuHv($E`4`E*k;4E0 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..69fce1fb7324db0655f943fc07004cb670cc94c7 GIT binary patch literal 3164 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 Ohrt4K-sXGk=I(!-cVbfj literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..576e87a26e20c384789c437e3edf6d7eb8593176 GIT binary patch literal 764 zcmZ{h&u-K(5XSBN*-g`guDHN~7g!K6uo5SzDitIUQni9gRl{MGCQ~-liH+@T$-WUs zUdQ6biC5qPlVlr3NI1%5#^29h#eO*4Ors;I#dpxi% z4|;9Hdwj17({RLp9C(lK_u7v4Axh&j?BxT&F77l{Pr^YOpLer2WbXgM9g;b<(~aVv zMOmL<9=$m|UA_k`MXjN&OTD_3tDFlB#e8NXWO;d!$V_Qa4jS0~x0MviyjDsm8=&54 zcA78C{ECB}$o`wiQYNcws0*PI1z$FxjYgyVD*FUF>5Uht^gma4JH$R1FZvg;569~N zEjOm*%4_ZJj~Cq9wK5(;UFMJ7ivnT8Qdji@VY^ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..189ef01127f1b6c166c87bcbe017d7542c3b8217 GIT binary patch literal 8218 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d03a89757da063f57bb8c5b95c9560895d0d0ddd GIT binary patch literal 4259 zcmaJ^&2JmW72la%?k<-UMSaAPoF-wDAT0x%vMs^LK{njTO=GlG+{krnw(fStSxJ=m z<=LeivLxC<>8WX4O;W6r(j} z&8|CT2W?BFYHmGUPS?G%SI?9)7_)`*iBZl9SENzTgt;T5Jo`OEcp~$OAu{Nj<-A~9 zMlt&gcN?2Urkr}T+X^ZNXfA97QFyNrg^j2hR}aIx)k^$~VO`Nw*$*B(xc^ZYwVIe$ zcB@)BsD&yWhabm&+-ZdsS~vQrokH0_iSi(^F}Qma-|Yf_He5{Vm8g6Pc}cyz_36 z>%GcOP9`BEEn-4wr<$F-I*R2Y2KB``CKu4IpiF&q@g0~^62*<+*c^cc?1 z_Z(py^S;}2!5NcftZ>08`gGp1(ZiWfHbi&!HnoNt!xhJN%)+j3@B-E#rj2A*F-W zC#K@1YlGj>P5q{i~x3AF!E(rgPWh^r9wEO0nol2rzZ$+i`TC)<=qT8kM zuA-x??WX7`XD$U_W}FX0Yl9R{-V1-tT`y!%Q- z(p4(A)*e77*>)8A+tr4S1jR*3(#zNNCY&S`uQrwQ9y!px50&Zfw3H=qu1div>ya$b z@^2C$+2tEV-Xx;$O+~F*6>Eu?mNIw4SXukcYD1DAs+1P9m{wL4)^?O5!zb+!OE1y> z*Jwq4WFUVeuO)&wP&vp`4aIoWPNr2hsr|#C)(+1pU*5op-$04hKs@I1td(WlwMD=GSf}o+%W~*vHKq0v@8-{&s6yHreWX>g=mtvk8Ay*u7Ga|cUl`!65d4?} zMP{G>#AswJBW9gt1_UAcn| z78)eCo}J>8Bv04#Yt2AJ{^76sMO&6Iq`Zfu;qOY>lyZ&+9N0F9W2x+&rmP3C%6$jD z>UKL$RuwI|igl87FK^Ng6No)$B9+n?eSqnx0Ag{AacdDqa2Y?%r^q~)Ol~f*EVoVm zzbS+0ty2ae=Eny47dir}feLvQp#;Il6Xq6-G#VK&3Sy7*+C&z@4rX8u^O*N6nBomG z)0XjMzQ=`ykY$P#LRKoalD@EEG6#VYK@2D28Hbs?11|5NZ<48)(X&Tu*Nv_drv`S9 z&Ts&SIT*|7{30<{GBa>R<`~aU-$|emr$r875Yhf~o}BX+_6K^LX1l+9h#0@qDKy)% zK(1aGx=R6;sO%MjhA1HB!L{0zxDXWJ*tJ4i*6_}*dWGRPnIsgN+xuZ9E{!J@dq=(n z4Q`$}rw$T`d1TD)Tr7h|v=hp!`t`3ib`>yD*=sirLLn)Qcpp!v_UYM{49QmhFbZo7 z6g^21QC=mYqmS8Ywvu2}q_KBERQdt3l>~Gd8l*g>=$-*f**YN*@?Bb;(osOU6fk`m zJk{rF9?ruq50+Yi4E<5K*}?vZVp-m`*pfBRY~U|v&htF;fIZH0z~rLC|GSj#zA_OM z&Yv>{M{+NUzZ)pe$@9n~Ml-PKVC3(FI_cu z1JW{}M>!o{#=Z&Yd4L}8%uUA$WPBzf3BW((5e{r)uY8ZlEh0YvIXUmv@*Yi5(w7jO z5sf*&{zptiSrCqhn$>E}nitA&{VOtzbCrK$e|Lsth&i}~90M!KPPIHU6!&7jZ}0HV z3&7lM`%T2HQHs6tlhP{8($9?spi1EZ!TUqWyu3n0M~?++5jN$Ih)gR?jiGqsPneA; zAK>gVOFVqZ!b8vVUsCPy?3dZph0we)1HwaQsP$tImBByB((s>Tl90YWF;W_4 zqfse&HroK7evk0T0E$7ZU!NogM7isU bc5c%X5nTdtfkOIaIo=xXnyzJAi{}3UsY$j7 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..bcc9630be312f8207451dea6c7537317c1d14687 GIT binary patch literal 695 zcmY*Xy^a$x5VrS!FPr1|sd$4eh(U)a5THZ33Zw{$tI|Zy+T5=2?pn5UD3MbgE$;v& zC9mU_iZ?)4G2SFn7;8R#^J9Bv?0!5xK_I_2?>{9WLchInEZ{>Ip!zugLktVl;yK2i z2O?<0d5BRS<`L+Av6RIu`HJTe3qPVV`-5R?iQU5~t!h5)JEMB>mQiWA0(XAdRAvax zuBr@D50V4%_7qgV1F)E(6;i1|x2VGwZ?R2eVemGwiN!Xsp^a>8Q-;4K+svZx0Sj#Q zBfx0j;ekU@(X5Q!sPY9ZxS`kDooKEaDw+*fF0c7YHQF?lJF9l}3a%EFpjx~8!!EiM ze9>}K_e^in+8FtgkWJ=^23Cg3Pfi5@E^hl(XUg0~n!^F{aDa+@Job=yNPXs*?#8ma zO8M?xy7&D=>J;p|j?{h232l_1OY&iT$!`c#eRr5FR7&I;3hQ2lGQQ+ILI7C@Lja6S;Q9^yu0Ao9M>?4@Mad{#(gikrg-! z)ER`!baplKQpRcw_Am%F@@$xk&l%b|f_va|*{il^E5YCRPop0J6j6bL`1r2VzyAQI C-Kc;7 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py new file mode 100644 index 0000000..4266b5e --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py @@ -0,0 +1,61 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import logging + +from pip._vendor import requests + +from pip._vendor.cachecontrol.adapter import CacheControlAdapter +from pip._vendor.cachecontrol.cache import DictCache +from pip._vendor.cachecontrol.controller import logger + +from argparse import ArgumentParser + + +def setup_logging(): + logger.setLevel(logging.DEBUG) + handler = logging.StreamHandler() + logger.addHandler(handler) + + +def get_session(): + adapter = CacheControlAdapter( + DictCache(), cache_etags=True, serializer=None, heuristic=None + ) + sess = requests.Session() + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + sess.cache_controller = adapter.controller + return sess + + +def get_args(): + parser = ArgumentParser() + parser.add_argument("url", help="The URL to try and cache") + return parser.parse_args() + + +def main(args=None): + args = get_args() + sess = get_session() + + # Make a request to get a response + resp = sess.get(args.url) + + # Turn on logging + setup_logging() + + # try setting the cache + sess.cache_controller.cache_response(resp.request, resp.raw) + + # Now try to get it + if sess.cache_controller.cached_request(resp.request): + print("Cached!") + else: + print("Not cached :(") + + +if __name__ == "__main__": + main() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py new file mode 100644 index 0000000..94c75e1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py @@ -0,0 +1,137 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import types +import functools +import zlib + +from pip._vendor.requests.adapters import HTTPAdapter + +from .controller import CacheController, PERMANENT_REDIRECT_STATUSES +from .cache import DictCache +from .filewrapper import CallbackFileWrapper + + +class CacheControlAdapter(HTTPAdapter): + invalidating_methods = {"PUT", "PATCH", "DELETE"} + + def __init__( + self, + cache=None, + cache_etags=True, + controller_class=None, + serializer=None, + heuristic=None, + cacheable_methods=None, + *args, + **kw + ): + super(CacheControlAdapter, self).__init__(*args, **kw) + self.cache = DictCache() if cache is None else cache + self.heuristic = heuristic + self.cacheable_methods = cacheable_methods or ("GET",) + + controller_factory = controller_class or CacheController + self.controller = controller_factory( + self.cache, cache_etags=cache_etags, serializer=serializer + ) + + def send(self, request, cacheable_methods=None, **kw): + """ + Send a request. Use the request information to see if it + exists in the cache and cache the response if we need to and can. + """ + cacheable = cacheable_methods or self.cacheable_methods + if request.method in cacheable: + try: + cached_response = self.controller.cached_request(request) + except zlib.error: + cached_response = None + if cached_response: + return self.build_response(request, cached_response, from_cache=True) + + # check for etags and add headers if appropriate + request.headers.update(self.controller.conditional_headers(request)) + + resp = super(CacheControlAdapter, self).send(request, **kw) + + return resp + + def build_response( + self, request, response, from_cache=False, cacheable_methods=None + ): + """ + Build a response by making a request or using the cache. + + This will end up calling send and returning a potentially + cached response + """ + cacheable = cacheable_methods or self.cacheable_methods + if not from_cache and request.method in cacheable: + # Check for any heuristics that might update headers + # before trying to cache. + if self.heuristic: + response = self.heuristic.apply(response) + + # apply any expiration heuristics + if response.status == 304: + # We must have sent an ETag request. This could mean + # that we've been expired already or that we simply + # have an etag. In either case, we want to try and + # update the cache if that is the case. + cached_response = self.controller.update_cached_response( + request, response + ) + + if cached_response is not response: + from_cache = True + + # We are done with the server response, read a + # possible response body (compliant servers will + # not return one, but we cannot be 100% sure) and + # release the connection back to the pool. + response.read(decode_content=False) + response.release_conn() + + response = cached_response + + # We always cache the 301 responses + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + self.controller.cache_response(request, response) + else: + # Wrap the response file with a wrapper that will cache the + # response when the stream has been consumed. + response._fp = CallbackFileWrapper( + response._fp, + functools.partial( + self.controller.cache_response, request, response + ), + ) + if response.chunked: + super_update_chunk_length = response._update_chunk_length + + def _update_chunk_length(self): + super_update_chunk_length() + if self.chunk_left == 0: + self._fp._close() + + response._update_chunk_length = types.MethodType( + _update_chunk_length, response + ) + + resp = super(CacheControlAdapter, self).build_response(request, response) + + # See if we should invalidate the cache. + if request.method in self.invalidating_methods and resp.ok: + cache_url = self.controller.cache_url(request.url) + self.cache.delete(cache_url) + + # Give the request a from_cache attr to let people use it + resp.from_cache = from_cache + + return resp + + def close(self): + self.cache.close() + super(CacheControlAdapter, self).close() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py new file mode 100644 index 0000000..44e4309 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py @@ -0,0 +1,43 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The cache object API for implementing caches. The default is a thread +safe in-memory dictionary. +""" +from threading import Lock + + +class BaseCache(object): + + def get(self, key): + raise NotImplementedError() + + def set(self, key, value, expires=None): + raise NotImplementedError() + + def delete(self, key): + raise NotImplementedError() + + def close(self): + pass + + +class DictCache(BaseCache): + + def __init__(self, init_dict=None): + self.lock = Lock() + self.data = init_dict or {} + + def get(self, key): + return self.data.get(key, None) + + def set(self, key, value, expires=None): + with self.lock: + self.data.update({key: value}) + + def delete(self, key): + with self.lock: + if key in self.data: + self.data.pop(key) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py new file mode 100644 index 0000000..44becd6 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py @@ -0,0 +1,6 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from .file_cache import FileCache # noqa +from .redis_cache import RedisCache # noqa diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..285539b88381aa0837870a1bf8b302e5308b4e38 GIT binary patch literal 301 zcmYk1!Ait15Qdw!h*lST0AHX7JIaD56=B7TAfmUuglscwgJ}|yTBvX2-u88R_2esf za?;&{1M|;(^M@g0XR{)q*nU2)H&nkP{Ew92jxwB)$V4)ov~0;(>{Fe#*)pR(drivx zhtZRgjYkhk<3iL85)>~eRha0h%*SF)9_K{KaA8g7t=8zl4P9f+&Ahq-tyX)SSCz)Gf)WTkZ*yH2)2+k|K=#z~U`Zjw4y?bN7B29jGmMNz1ewRzc*Q} z77%#;Ir&BRZ>xm-3kR1U4+i(3 z#UMKpy7H*?K*~&l(019ev!O_}+vVo#bdoF=bz6Jgej?I%AhgpRWE?+9yq{~<1a4k@uCj zJ&Zet@xI6#!~U=l9f_1@ve7|5c1rh^gS>&KiOj09yyzmB)h7J!p9oh#(l*ZRS&-`Ic|{ zHowLl?mnSyOW3@^y(i?9wjJ*C0HV|7OS}r-3SZ+jz6@L*U*W4T<8vG0_7&|v1O-f7 zKD_unCFJ63Ak7Z?X7*qbVyc zr)7$*Km)|eNcj9z574}tl)Q>}mw!2qkL!6p(&33xNQm^XZ*KsluW!iW%Cixm@ zsjtt5>jPA9Hj=O7;?kqRFq6s%N(3YA1CQvaOpbM>n@MpbWSMa$)he)RIsxueTD2Z% zI~Pe;eh=j3_mTVn$(y)c^|CwUTR4xWD*x_+&-xuEyWJ314w`aXP*|<-{}_l zGo}D*UN|6Kcg_E`o%C}hv6g6i7^|MP53+u0{8P7O-OL*Rbx}*fwKI&R%3sh$TTwUd z19OgG9az`tbvmgn^nulvl$oPM8$=e$Ol}!o50tqJ|B=^#Xj_Vy>uY$vW~Lryqm-Mlo@s0y zin07La>drGc-59-BP~lk=ke6%6J|+mo82 zXW+*J>&!0fa|p8o=bX)pv8yUjjBm{p!u!Z`rII|z)?02I%b3RV{L zh1t?oFxpREG}_FlXe>11QwSL;e)yuw0kKq`s94HHN7i zHw8afH?T^A531HG1q`HZWJfwihLU+bQKB=VCn$MT*eI= zl&8Okdwz=K=SUW2H$Akyyb0t(XvX#)VGbfKzQKRkn*sGKuM+sxWyAN9#nI{pRKEe8 z5>yez3djJoG+-2+{B}#IkxWA@n_Vo29lTD3h*04k+>&{im5aaH+FTDziF@4Z=ONET z9%6YHX%1Jbg}gWcoXfv!IKdYPf!a5lMkARR#p{-~ps#)Wp;(Qdxvt z5gzC-Xb4R7zzL}Q3_A4{xelKaRy`$7)Uk|*WzlrXosnM$&+mtDy*DQ^k)r)3xUVd; ti}W#>gJw5BxOAquQ?&PC>FtlPa+RL3JwT@_WCLSmk3IFA)q3^u{{i-&1Ka=r literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6f48de662b72fcf3f90e6b4f4c806dfb9dcd3c03 GIT binary patch literal 1581 zcmZ`(&yU+g6rLZpWkXey76}Dq^oBV?1S%0E04=+Dl0s>KLAyS;0YL#OsF6eCa7SSWWog(0lWh-6p`p% zQivCe1K5c~UmU`_ClWD$cPv7{ai{J7B1LVxNNg_*+BlD4T9jl>*Q5ZJC*+!r0bx+- zrpZ_vSgFoT4^CVYa{#Y@mibiAWM0-rm8bd7%V+W;7e+VoSU1jSrKHK{OE=Zc6+GydbM!#%B*paVVUN^2CIPFSRSP3~4HVZrf$9gZaB1 z`yT9l1k;OqL|5&eKw<)J!7k!nL9<`ZyRtc4*T(%|3K(H=E_;4Nmz5~pW|6u0QV^|#W6l{Urhlodir z=UOY^@gQw<+DIu&uCW;*vmJijX>eb=dkJZ57;e`;OtuE0K2d$ zXR;{Teo@S{SSYlUqIj_=Rp&8>_;qX-gC*7Jb04h_@o^K|TfVnKaNsSAbsCeH#k|ks zUd)ropl_T-81HQ176#%O%zxJcpTb{cwEc^Ws=dERw=gK7|HQlEw(+Bm!V{F-*L@Ns JETJFp{{W?FS^59~ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py new file mode 100644 index 0000000..6cd1106 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py @@ -0,0 +1,150 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import hashlib +import os +from textwrap import dedent + +from ..cache import BaseCache +from ..controller import CacheController + +try: + FileNotFoundError +except NameError: + # py2.X + FileNotFoundError = (IOError, OSError) + + +def _secure_open_write(filename, fmode): + # We only want to write to this file, so open it in write only mode + flags = os.O_WRONLY + + # os.O_CREAT | os.O_EXCL will fail if the file already exists, so we only + # will open *new* files. + # We specify this because we want to ensure that the mode we pass is the + # mode of the file. + flags |= os.O_CREAT | os.O_EXCL + + # Do not follow symlinks to prevent someone from making a symlink that + # we follow and insecurely open a cache file. + if hasattr(os, "O_NOFOLLOW"): + flags |= os.O_NOFOLLOW + + # On Windows we'll mark this file as binary + if hasattr(os, "O_BINARY"): + flags |= os.O_BINARY + + # Before we open our file, we want to delete any existing file that is + # there + try: + os.remove(filename) + except (IOError, OSError): + # The file must not exist already, so we can just skip ahead to opening + pass + + # Open our file, the use of os.O_CREAT | os.O_EXCL will ensure that if a + # race condition happens between the os.remove and this line, that an + # error will be raised. Because we utilize a lockfile this should only + # happen if someone is attempting to attack us. + fd = os.open(filename, flags, fmode) + try: + return os.fdopen(fd, "wb") + + except: + # An error occurred wrapping our FD in a file object + os.close(fd) + raise + + +class FileCache(BaseCache): + + def __init__( + self, + directory, + forever=False, + filemode=0o0600, + dirmode=0o0700, + use_dir_lock=None, + lock_class=None, + ): + + if use_dir_lock is not None and lock_class is not None: + raise ValueError("Cannot use use_dir_lock and lock_class together") + + try: + from lockfile import LockFile + from lockfile.mkdirlockfile import MkdirLockFile + except ImportError: + notice = dedent( + """ + NOTE: In order to use the FileCache you must have + lockfile installed. You can install it via pip: + pip install lockfile + """ + ) + raise ImportError(notice) + + else: + if use_dir_lock: + lock_class = MkdirLockFile + + elif lock_class is None: + lock_class = LockFile + + self.directory = directory + self.forever = forever + self.filemode = filemode + self.dirmode = dirmode + self.lock_class = lock_class + + @staticmethod + def encode(x): + return hashlib.sha224(x.encode()).hexdigest() + + def _fn(self, name): + # NOTE: This method should not change as some may depend on it. + # See: https://github.com/ionrock/cachecontrol/issues/63 + hashed = self.encode(name) + parts = list(hashed[:5]) + [hashed] + return os.path.join(self.directory, *parts) + + def get(self, key): + name = self._fn(key) + try: + with open(name, "rb") as fh: + return fh.read() + + except FileNotFoundError: + return None + + def set(self, key, value, expires=None): + name = self._fn(key) + + # Make sure the directory exists + try: + os.makedirs(os.path.dirname(name), self.dirmode) + except (IOError, OSError): + pass + + with self.lock_class(name) as lock: + # Write our actual file + with _secure_open_write(lock.path, self.filemode) as fh: + fh.write(value) + + def delete(self, key): + name = self._fn(key) + if not self.forever: + try: + os.remove(name) + except FileNotFoundError: + pass + + +def url_to_file_path(url, filecache): + """Return the file cache path based on the URL. + + This does not ensure the file exists! + """ + key = CacheController.cache_url(url) + return filecache._fn(key) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py new file mode 100644 index 0000000..720b507 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py @@ -0,0 +1,37 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from __future__ import division + +from datetime import datetime +from pip._vendor.cachecontrol.cache import BaseCache + + +class RedisCache(BaseCache): + + def __init__(self, conn): + self.conn = conn + + def get(self, key): + return self.conn.get(key) + + def set(self, key, value, expires=None): + if not expires: + self.conn.set(key, value) + else: + expires = expires - datetime.utcnow() + self.conn.setex(key, int(expires.total_seconds()), value) + + def delete(self, key): + self.conn.delete(key) + + def clear(self): + """Helper for clearing all the keys in a database. Use with + caution!""" + for key in self.conn.keys(): + self.conn.delete(key) + + def close(self): + """Redis uses connection pooling, no need to close the connection.""" + pass diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py new file mode 100644 index 0000000..ccec937 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/compat.py @@ -0,0 +1,32 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +try: + from urllib.parse import urljoin +except ImportError: + from urlparse import urljoin + + +try: + import cPickle as pickle +except ImportError: + import pickle + +# Handle the case where the requests module has been patched to not have +# urllib3 bundled as part of its source. +try: + from pip._vendor.requests.packages.urllib3.response import HTTPResponse +except ImportError: + from pip._vendor.urllib3.response import HTTPResponse + +try: + from pip._vendor.requests.packages.urllib3.util import is_fp_closed +except ImportError: + from pip._vendor.urllib3.util import is_fp_closed + +# Replicate some six behaviour +try: + text_type = unicode +except NameError: + text_type = str diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py new file mode 100644 index 0000000..d7e7380 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py @@ -0,0 +1,415 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +""" +The httplib2 algorithms ported for use with requests. +""" +import logging +import re +import calendar +import time +from email.utils import parsedate_tz + +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .cache import DictCache +from .serialize import Serializer + + +logger = logging.getLogger(__name__) + +URI = re.compile(r"^(([^:/?#]+):)?(//([^/?#]*))?([^?#]*)(\?([^#]*))?(#(.*))?") + +PERMANENT_REDIRECT_STATUSES = (301, 308) + + +def parse_uri(uri): + """Parses a URI using the regex given in Appendix B of RFC 3986. + + (scheme, authority, path, query, fragment) = parse_uri(uri) + """ + groups = URI.match(uri).groups() + return (groups[1], groups[3], groups[4], groups[6], groups[8]) + + +class CacheController(object): + """An interface to see if request should cached or not. + """ + + def __init__( + self, cache=None, cache_etags=True, serializer=None, status_codes=None + ): + self.cache = DictCache() if cache is None else cache + self.cache_etags = cache_etags + self.serializer = serializer or Serializer() + self.cacheable_status_codes = status_codes or (200, 203, 300, 301, 308) + + @classmethod + def _urlnorm(cls, uri): + """Normalize the URL to create a safe key for the cache""" + (scheme, authority, path, query, fragment) = parse_uri(uri) + if not scheme or not authority: + raise Exception("Only absolute URIs are allowed. uri = %s" % uri) + + scheme = scheme.lower() + authority = authority.lower() + + if not path: + path = "/" + + # Could do syntax based normalization of the URI before + # computing the digest. See Section 6.2.2 of Std 66. + request_uri = query and "?".join([path, query]) or path + defrag_uri = scheme + "://" + authority + request_uri + + return defrag_uri + + @classmethod + def cache_url(cls, uri): + return cls._urlnorm(uri) + + def parse_cache_control(self, headers): + known_directives = { + # https://tools.ietf.org/html/rfc7234#section-5.2 + "max-age": (int, True), + "max-stale": (int, False), + "min-fresh": (int, True), + "no-cache": (None, False), + "no-store": (None, False), + "no-transform": (None, False), + "only-if-cached": (None, False), + "must-revalidate": (None, False), + "public": (None, False), + "private": (None, False), + "proxy-revalidate": (None, False), + "s-maxage": (int, True), + } + + cc_headers = headers.get("cache-control", headers.get("Cache-Control", "")) + + retval = {} + + for cc_directive in cc_headers.split(","): + if not cc_directive.strip(): + continue + + parts = cc_directive.split("=", 1) + directive = parts[0].strip() + + try: + typ, required = known_directives[directive] + except KeyError: + logger.debug("Ignoring unknown cache-control directive: %s", directive) + continue + + if not typ or not required: + retval[directive] = None + if typ: + try: + retval[directive] = typ(parts[1].strip()) + except IndexError: + if required: + logger.debug( + "Missing value for cache-control " "directive: %s", + directive, + ) + except ValueError: + logger.debug( + "Invalid value for cache-control directive " "%s, must be %s", + directive, + typ.__name__, + ) + + return retval + + def cached_request(self, request): + """ + Return a cached response if it exists in the cache, otherwise + return False. + """ + cache_url = self.cache_url(request.url) + logger.debug('Looking up "%s" in the cache', cache_url) + cc = self.parse_cache_control(request.headers) + + # Bail out if the request insists on fresh data + if "no-cache" in cc: + logger.debug('Request header has "no-cache", cache bypassed') + return False + + if "max-age" in cc and cc["max-age"] == 0: + logger.debug('Request header has "max_age" as 0, cache bypassed') + return False + + # Request allows serving from the cache, let's see if we find something + cache_data = self.cache.get(cache_url) + if cache_data is None: + logger.debug("No cache entry available") + return False + + # Check whether it can be deserialized + resp = self.serializer.loads(request, cache_data) + if not resp: + logger.warning("Cache entry deserialization failed, entry ignored") + return False + + # If we have a cached permanent redirect, return it immediately. We + # don't need to test our response for other headers b/c it is + # intrinsically "cacheable" as it is Permanent. + # + # See: + # https://tools.ietf.org/html/rfc7231#section-6.4.2 + # + # Client can try to refresh the value by repeating the request + # with cache busting headers as usual (ie no-cache). + if int(resp.status) in PERMANENT_REDIRECT_STATUSES: + msg = ( + "Returning cached permanent redirect response " + "(ignoring date and etag information)" + ) + logger.debug(msg) + return resp + + headers = CaseInsensitiveDict(resp.headers) + if not headers or "date" not in headers: + if "etag" not in headers: + # Without date or etag, the cached response can never be used + # and should be deleted. + logger.debug("Purging cached response: no date or etag") + self.cache.delete(cache_url) + logger.debug("Ignoring cached response: no date") + return False + + now = time.time() + date = calendar.timegm(parsedate_tz(headers["date"])) + current_age = max(0, now - date) + logger.debug("Current age based on date: %i", current_age) + + # TODO: There is an assumption that the result will be a + # urllib3 response object. This may not be best since we + # could probably avoid instantiating or constructing the + # response until we know we need it. + resp_cc = self.parse_cache_control(headers) + + # determine freshness + freshness_lifetime = 0 + + # Check the max-age pragma in the cache control header + if "max-age" in resp_cc: + freshness_lifetime = resp_cc["max-age"] + logger.debug("Freshness lifetime from max-age: %i", freshness_lifetime) + + # If there isn't a max-age, check for an expires header + elif "expires" in headers: + expires = parsedate_tz(headers["expires"]) + if expires is not None: + expire_time = calendar.timegm(expires) - date + freshness_lifetime = max(0, expire_time) + logger.debug("Freshness lifetime from expires: %i", freshness_lifetime) + + # Determine if we are setting freshness limit in the + # request. Note, this overrides what was in the response. + if "max-age" in cc: + freshness_lifetime = cc["max-age"] + logger.debug( + "Freshness lifetime from request max-age: %i", freshness_lifetime + ) + + if "min-fresh" in cc: + min_fresh = cc["min-fresh"] + # adjust our current age by our min fresh + current_age += min_fresh + logger.debug("Adjusted current age from min-fresh: %i", current_age) + + # Return entry if it is fresh enough + if freshness_lifetime > current_age: + logger.debug('The response is "fresh", returning cached response') + logger.debug("%i > %i", freshness_lifetime, current_age) + return resp + + # we're not fresh. If we don't have an Etag, clear it out + if "etag" not in headers: + logger.debug('The cached response is "stale" with no etag, purging') + self.cache.delete(cache_url) + + # return the original handler + return False + + def conditional_headers(self, request): + cache_url = self.cache_url(request.url) + resp = self.serializer.loads(request, self.cache.get(cache_url)) + new_headers = {} + + if resp: + headers = CaseInsensitiveDict(resp.headers) + + if "etag" in headers: + new_headers["If-None-Match"] = headers["ETag"] + + if "last-modified" in headers: + new_headers["If-Modified-Since"] = headers["Last-Modified"] + + return new_headers + + def cache_response(self, request, response, body=None, status_codes=None): + """ + Algorithm for caching requests. + + This assumes a requests Response object. + """ + # From httplib2: Don't cache 206's since we aren't going to + # handle byte range requests + cacheable_status_codes = status_codes or self.cacheable_status_codes + if response.status not in cacheable_status_codes: + logger.debug( + "Status code %s not in %s", response.status, cacheable_status_codes + ) + return + + response_headers = CaseInsensitiveDict(response.headers) + + if "date" in response_headers: + date = calendar.timegm(parsedate_tz(response_headers["date"])) + else: + date = 0 + + # If we've been given a body, our response has a Content-Length, that + # Content-Length is valid then we can check to see if the body we've + # been given matches the expected size, and if it doesn't we'll just + # skip trying to cache it. + if ( + body is not None + and "content-length" in response_headers + and response_headers["content-length"].isdigit() + and int(response_headers["content-length"]) != len(body) + ): + return + + cc_req = self.parse_cache_control(request.headers) + cc = self.parse_cache_control(response_headers) + + cache_url = self.cache_url(request.url) + logger.debug('Updating cache with response from "%s"', cache_url) + + # Delete it from the cache if we happen to have it stored there + no_store = False + if "no-store" in cc: + no_store = True + logger.debug('Response header has "no-store"') + if "no-store" in cc_req: + no_store = True + logger.debug('Request header has "no-store"') + if no_store and self.cache.get(cache_url): + logger.debug('Purging existing cache entry to honor "no-store"') + self.cache.delete(cache_url) + if no_store: + return + + # https://tools.ietf.org/html/rfc7234#section-4.1: + # A Vary header field-value of "*" always fails to match. + # Storing such a response leads to a deserialization warning + # during cache lookup and is not allowed to ever be served, + # so storing it can be avoided. + if "*" in response_headers.get("vary", ""): + logger.debug('Response header has "Vary: *"') + return + + # If we've been given an etag, then keep the response + if self.cache_etags and "etag" in response_headers: + expires_time = 0 + if response_headers.get("expires"): + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires) - date + + expires_time = max(expires_time, 14 * 86400) + + logger.debug("etag object cached for {0} seconds".format(expires_time)) + logger.debug("Caching due to etag") + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + # Add to the cache any permanent redirects. We do this before looking + # that the Date headers. + elif int(response.status) in PERMANENT_REDIRECT_STATUSES: + logger.debug("Caching permanent redirect") + self.cache.set(cache_url, self.serializer.dumps(request, response, b"")) + + # Add to the cache if the response headers demand it. If there + # is no date header then we can't do anything about expiring + # the cache. + elif "date" in response_headers: + date = calendar.timegm(parsedate_tz(response_headers["date"])) + # cache when there is a max-age > 0 + if "max-age" in cc and cc["max-age"] > 0: + logger.debug("Caching b/c date exists and max-age > 0") + expires_time = cc["max-age"] + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body), + expires=expires_time, + ) + + # If the request can expire, it means we should cache it + # in the meantime. + elif "expires" in response_headers: + if response_headers["expires"]: + expires = parsedate_tz(response_headers["expires"]) + if expires is not None: + expires_time = calendar.timegm(expires) - date + else: + expires_time = None + + logger.debug( + "Caching b/c of expires header. expires in {0} seconds".format( + expires_time + ) + ) + self.cache.set( + cache_url, + self.serializer.dumps(request, response, body=body), + expires=expires_time, + ) + + def update_cached_response(self, request, response): + """On a 304 we will get a new set of headers that we want to + update our cached value with, assuming we have one. + + This should only ever be called when we've sent an ETag and + gotten a 304 as the response. + """ + cache_url = self.cache_url(request.url) + + cached_response = self.serializer.loads(request, self.cache.get(cache_url)) + + if not cached_response: + # we didn't have a cached response + return response + + # Lets update our headers with the headers from the new request: + # http://tools.ietf.org/html/draft-ietf-httpbis-p4-conditional-26#section-4.1 + # + # The server isn't supposed to send headers that would make + # the cached body invalid. But... just in case, we'll be sure + # to strip out ones we know that might be problmatic due to + # typical assumptions. + excluded_headers = ["content-length"] + + cached_response.headers.update( + dict( + (k, v) + for k, v in response.headers.items() + if k.lower() not in excluded_headers + ) + ) + + # we want a 200 b/c we have content via the cache + cached_response.status = 200 + + # update our cache + self.cache.set(cache_url, self.serializer.dumps(request, cached_response)) + + return cached_response diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py new file mode 100644 index 0000000..f5ed5f6 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py @@ -0,0 +1,111 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from tempfile import NamedTemporaryFile +import mmap + + +class CallbackFileWrapper(object): + """ + Small wrapper around a fp object which will tee everything read into a + buffer, and when that file is closed it will execute a callback with the + contents of that buffer. + + All attributes are proxied to the underlying file object. + + This class uses members with a double underscore (__) leading prefix so as + not to accidentally shadow an attribute. + + The data is stored in a temporary file until it is all available. As long + as the temporary files directory is disk-based (sometimes it's a + memory-backed-``tmpfs`` on Linux), data will be unloaded to disk if memory + pressure is high. For small files the disk usually won't be used at all, + it'll all be in the filesystem memory cache, so there should be no + performance impact. + """ + + def __init__(self, fp, callback): + self.__buf = NamedTemporaryFile("rb+", delete=True) + self.__fp = fp + self.__callback = callback + + def __getattr__(self, name): + # The vaguaries of garbage collection means that self.__fp is + # not always set. By using __getattribute__ and the private + # name[0] allows looking up the attribute value and raising an + # AttributeError when it doesn't exist. This stop thigns from + # infinitely recursing calls to getattr in the case where + # self.__fp hasn't been set. + # + # [0] https://docs.python.org/2/reference/expressions.html#atom-identifiers + fp = self.__getattribute__("_CallbackFileWrapper__fp") + return getattr(fp, name) + + def __is_fp_closed(self): + try: + return self.__fp.fp is None + + except AttributeError: + pass + + try: + return self.__fp.closed + + except AttributeError: + pass + + # We just don't cache it then. + # TODO: Add some logging here... + return False + + def _close(self): + if self.__callback: + if self.__buf.tell() == 0: + # Empty file: + result = b"" + else: + # Return the data without actually loading it into memory, + # relying on Python's buffer API and mmap(). mmap() just gives + # a view directly into the filesystem's memory cache, so it + # doesn't result in duplicate memory use. + self.__buf.seek(0, 0) + result = memoryview( + mmap.mmap(self.__buf.fileno(), 0, access=mmap.ACCESS_READ) + ) + self.__callback(result) + + # We assign this to None here, because otherwise we can get into + # really tricky problems where the CPython interpreter dead locks + # because the callback is holding a reference to something which + # has a __del__ method. Setting this to None breaks the cycle + # and allows the garbage collector to do it's thing normally. + self.__callback = None + + # Closing the temporary file releases memory and frees disk space. + # Important when caching big files. + self.__buf.close() + + def read(self, amt=None): + data = self.__fp.read(amt) + if data: + # We may be dealing with b'', a sign that things are over: + # it's passed e.g. after we've already closed self.__buf. + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data + + def _safe_read(self, amt): + data = self.__fp._safe_read(amt) + if amt == 2 and data == b"\r\n": + # urllib executes this read to toss the CRLF at the end + # of the chunk. + return data + + self.__buf.write(data) + if self.__is_fp_closed(): + self._close() + + return data diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py new file mode 100644 index 0000000..ebe4a96 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py @@ -0,0 +1,139 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import calendar +import time + +from email.utils import formatdate, parsedate, parsedate_tz + +from datetime import datetime, timedelta + +TIME_FMT = "%a, %d %b %Y %H:%M:%S GMT" + + +def expire_after(delta, date=None): + date = date or datetime.utcnow() + return date + delta + + +def datetime_to_header(dt): + return formatdate(calendar.timegm(dt.timetuple())) + + +class BaseHeuristic(object): + + def warning(self, response): + """ + Return a valid 1xx warning header value describing the cache + adjustments. + + The response is provided too allow warnings like 113 + http://tools.ietf.org/html/rfc7234#section-5.5.4 where we need + to explicitly say response is over 24 hours old. + """ + return '110 - "Response is Stale"' + + def update_headers(self, response): + """Update the response headers with any new headers. + + NOTE: This SHOULD always include some Warning header to + signify that the response was cached by the client, not + by way of the provided headers. + """ + return {} + + def apply(self, response): + updated_headers = self.update_headers(response) + + if updated_headers: + response.headers.update(updated_headers) + warning_header_value = self.warning(response) + if warning_header_value is not None: + response.headers.update({"Warning": warning_header_value}) + + return response + + +class OneDayCache(BaseHeuristic): + """ + Cache the response by providing an expires 1 day in the + future. + """ + + def update_headers(self, response): + headers = {} + + if "expires" not in response.headers: + date = parsedate(response.headers["date"]) + expires = expire_after(timedelta(days=1), date=datetime(*date[:6])) + headers["expires"] = datetime_to_header(expires) + headers["cache-control"] = "public" + return headers + + +class ExpiresAfter(BaseHeuristic): + """ + Cache **all** requests for a defined time period. + """ + + def __init__(self, **kw): + self.delta = timedelta(**kw) + + def update_headers(self, response): + expires = expire_after(self.delta) + return {"expires": datetime_to_header(expires), "cache-control": "public"} + + def warning(self, response): + tmpl = "110 - Automatically cached for %s. Response might be stale" + return tmpl % self.delta + + +class LastModified(BaseHeuristic): + """ + If there is no Expires header already, fall back on Last-Modified + using the heuristic from + http://tools.ietf.org/html/rfc7234#section-4.2.2 + to calculate a reasonable value. + + Firefox also does something like this per + https://developer.mozilla.org/en-US/docs/Web/HTTP/Caching_FAQ + http://lxr.mozilla.org/mozilla-release/source/netwerk/protocol/http/nsHttpResponseHead.cpp#397 + Unlike mozilla we limit this to 24-hr. + """ + cacheable_by_default_statuses = { + 200, 203, 204, 206, 300, 301, 404, 405, 410, 414, 501 + } + + def update_headers(self, resp): + headers = resp.headers + + if "expires" in headers: + return {} + + if "cache-control" in headers and headers["cache-control"] != "public": + return {} + + if resp.status not in self.cacheable_by_default_statuses: + return {} + + if "date" not in headers or "last-modified" not in headers: + return {} + + date = calendar.timegm(parsedate_tz(headers["date"])) + last_modified = parsedate(headers["last-modified"]) + if date is None or last_modified is None: + return {} + + now = time.time() + current_age = max(0, now - date) + delta = date - calendar.timegm(last_modified) + freshness_lifetime = max(0, min(delta / 10, 24 * 3600)) + if freshness_lifetime <= current_age: + return {} + + expires = date + freshness_lifetime + return {"expires": time.strftime(TIME_FMT, time.gmtime(expires))} + + def warning(self, resp): + return None diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py new file mode 100644 index 0000000..b075df1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py @@ -0,0 +1,186 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +import base64 +import io +import json +import zlib + +from pip._vendor import msgpack +from pip._vendor.requests.structures import CaseInsensitiveDict + +from .compat import HTTPResponse, pickle, text_type + + +def _b64_decode_bytes(b): + return base64.b64decode(b.encode("ascii")) + + +def _b64_decode_str(s): + return _b64_decode_bytes(s).decode("utf8") + + +_default_body_read = object() + + +class Serializer(object): + def dumps(self, request, response, body=None): + response_headers = CaseInsensitiveDict(response.headers) + + if body is None: + # When a body isn't passed in, we'll read the response. We + # also update the response with a new file handler to be + # sure it acts as though it was never read. + body = response.read(decode_content=False) + response._fp = io.BytesIO(body) + + # NOTE: This is all a bit weird, but it's really important that on + # Python 2.x these objects are unicode and not str, even when + # they contain only ascii. The problem here is that msgpack + # understands the difference between unicode and bytes and we + # have it set to differentiate between them, however Python 2 + # doesn't know the difference. Forcing these to unicode will be + # enough to have msgpack know the difference. + data = { + u"response": { + u"body": body, + u"headers": dict( + (text_type(k), text_type(v)) for k, v in response.headers.items() + ), + u"status": response.status, + u"version": response.version, + u"reason": text_type(response.reason), + u"strict": response.strict, + u"decode_content": response.decode_content, + } + } + + # Construct our vary headers + data[u"vary"] = {} + if u"vary" in response_headers: + varied_headers = response_headers[u"vary"].split(",") + for header in varied_headers: + header = text_type(header).strip() + header_value = request.headers.get(header, None) + if header_value is not None: + header_value = text_type(header_value) + data[u"vary"][header] = header_value + + return b",".join([b"cc=4", msgpack.dumps(data, use_bin_type=True)]) + + def loads(self, request, data): + # Short circuit if we've been given an empty set of data + if not data: + return + + # Determine what version of the serializer the data was serialized + # with + try: + ver, data = data.split(b",", 1) + except ValueError: + ver = b"cc=0" + + # Make sure that our "ver" is actually a version and isn't a false + # positive from a , being in the data stream. + if ver[:3] != b"cc=": + data = ver + data + ver = b"cc=0" + + # Get the version number out of the cc=N + ver = ver.split(b"=", 1)[-1].decode("ascii") + + # Dispatch to the actual load method for the given version + try: + return getattr(self, "_loads_v{}".format(ver))(request, data) + + except AttributeError: + # This is a version we don't have a loads function for, so we'll + # just treat it as a miss and return None + return + + def prepare_response(self, request, cached): + """Verify our vary headers match and construct a real urllib3 + HTTPResponse object. + """ + # Special case the '*' Vary value as it means we cannot actually + # determine if the cached response is suitable for this request. + # This case is also handled in the controller code when creating + # a cache entry, but is left here for backwards compatibility. + if "*" in cached.get("vary", {}): + return + + # Ensure that the Vary headers for the cached response match our + # request + for header, value in cached.get("vary", {}).items(): + if request.headers.get(header, None) != value: + return + + body_raw = cached["response"].pop("body") + + headers = CaseInsensitiveDict(data=cached["response"]["headers"]) + if headers.get("transfer-encoding", "") == "chunked": + headers.pop("transfer-encoding") + + cached["response"]["headers"] = headers + + try: + body = io.BytesIO(body_raw) + except TypeError: + # This can happen if cachecontrol serialized to v1 format (pickle) + # using Python 2. A Python 2 str(byte string) will be unpickled as + # a Python 3 str (unicode string), which will cause the above to + # fail with: + # + # TypeError: 'str' does not support the buffer interface + body = io.BytesIO(body_raw.encode("utf8")) + + return HTTPResponse(body=body, preload_content=False, **cached["response"]) + + def _loads_v0(self, request, data): + # The original legacy cache data. This doesn't contain enough + # information to construct everything we need, so we'll treat this as + # a miss. + return + + def _loads_v1(self, request, data): + try: + cached = pickle.loads(data) + except ValueError: + return + + return self.prepare_response(request, cached) + + def _loads_v2(self, request, data): + try: + cached = json.loads(zlib.decompress(data).decode("utf8")) + except (ValueError, zlib.error): + return + + # We need to decode the items that we've base64 encoded + cached["response"]["body"] = _b64_decode_bytes(cached["response"]["body"]) + cached["response"]["headers"] = dict( + (_b64_decode_str(k), _b64_decode_str(v)) + for k, v in cached["response"]["headers"].items() + ) + cached["response"]["reason"] = _b64_decode_str(cached["response"]["reason"]) + cached["vary"] = dict( + (_b64_decode_str(k), _b64_decode_str(v) if v is not None else v) + for k, v in cached["vary"].items() + ) + + return self.prepare_response(request, cached) + + def _loads_v3(self, request, data): + # Due to Python 2 encoding issues, it's impossible to know for sure + # exactly how to load v3 entries, thus we'll treat these as a miss so + # that they get rewritten out as v4 entries. + return + + def _loads_v4(self, request, data): + try: + cached = msgpack.loads(data, raw=False) + except ValueError: + return + + return self.prepare_response(request, cached) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py new file mode 100644 index 0000000..b6ee7f2 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py @@ -0,0 +1,33 @@ +# SPDX-FileCopyrightText: 2015 Eric Larson +# +# SPDX-License-Identifier: Apache-2.0 + +from .adapter import CacheControlAdapter +from .cache import DictCache + + +def CacheControl( + sess, + cache=None, + cache_etags=True, + serializer=None, + heuristic=None, + controller_class=None, + adapter_class=None, + cacheable_methods=None, +): + + cache = DictCache() if cache is None else cache + adapter_class = adapter_class or CacheControlAdapter + adapter = adapter_class( + cache, + cache_etags=cache_etags, + serializer=serializer, + heuristic=heuristic, + controller_class=controller_class, + cacheable_methods=cacheable_methods, + ) + sess.mount("http://", adapter) + sess.mount("https://", adapter) + + return sess diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py new file mode 100644 index 0000000..8db1a0e --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py @@ -0,0 +1,3 @@ +from .core import contents, where + +__version__ = "2021.10.08" diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py new file mode 100644 index 0000000..0037634 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py @@ -0,0 +1,12 @@ +import argparse + +from pip._vendor.certifi import contents, where + +parser = argparse.ArgumentParser() +parser.add_argument("-c", "--contents", action="store_true") +args = parser.parse_args() + +if args.contents: + print(contents()) +else: + print(where()) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..42fd4463437fc39651db14941d1dfcadf5538fc2 GIT binary patch literal 283 zcmYk1u}Z{15QaCKDB}SDp$*5Sr+Bx!y+5A#uL(Xlv2icqSPKK81Iz&5Oh2R6MkNx z^&LWO$ktnU9PV%rn!LkXE+B6$67)lCy}Mo)7huiy&#t))f{A$E*UfAFi~)Mn1J^k1 h2^yqmb_SF(&P1h(ei-ws&g(aeo9T&=F-}D;e*yFmOJe{4 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..487cb1793daed7bde9f472f7ead97ceb98406985 GIT binary patch literal 462 zcmYjMu};G<5Vf5qgosv^_y?p8jX{-|0D)jbLP%^`A`>62OA<#H7u2rI`~!@P{Ek;9 zet`upRRx^ncY4p~ch9!pPZ-tv>hkWJ`bS6pS4iZPPMZ;Erg_P-u8WdaA`?}R1)KqU z>AkWngm50|K=*X0qvuW!U$#h(A)X7|gKZE`?1^)7xnabDKQ`L>B!6}_5Aa%L-#%3!H( z<@NFc9;8NF!#RBdZCL`!X6a_OKAxn9vNX3FI!O=qWosOa8&%w^DYTM8%S~vx2`%%y jQl`%Hv|0N2sIq!d!U?C%?T{d5LlKK1k9i~pd?0=R{WOJd literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..8c529ddf2f62f0cd15af6510882a4da62bc5c839 GIT binary patch literal 1521 zcma)6L2nyH6rPzK+iPc?IBB4$aBvX^e5jYI5(iXJjAI}a8H-pd>}9pxnZyh0-DPH+ z)KTC-az*@wR^pN)e`l^75a)^u7kF>iDMsy~W6kr-n|bej@0<5FZ?{_n#&2g2j{bnv z@3>hXE^PK->R&+!5)eTJOKCtqCBhN>k_ax@g%dcU7Vxv%l73rzQWy27G-$|%>WYSN zFG=7^=Ysr1!M2$;=dEC4?gbttf<Fu1!RxFiCj*@<{Z2kCrv|7_yqPz24EK=E3(kxV_ zyJjZ4Nv2JdrjbeVtefU>waAaUafF`wg`9VD)lH1<#(8FBW^}*xClEr$G0OEpVY3HQ zdmtnUD3Hbk1z^m+9!`>C5}9}=#jt`1vE;btST_u_XfDIhw!*N22x~74zh6XYb#g^i z9ekGJ?<0Sf&!rzFDvcibljXiV@rBAWIRtEazBI9~by^x|KaTFK zEHNS7kCm~z;pAWv9!>}2{lOPsjz{5e^wspGd=0_(GYnwJA-SUC9#vR(|D{{48lbba z)0tHA4YWXP0B8gLfLvZgW@ej8Mj|xwv3Vg9UdKqf1HwQtFCc=UQ5jWX8-N!t91aj? zI2lYov%CAFj}Hc8(3Rj1OYO^Gl^|}Tb9^G#2?K;2eise}R_+pg^ORn<1+)(6dd}EVbw#Z!vp5$?c6{Yn zo)e59Tw>Vu#l0JO7lr7r4YKM=n(p zMadmi$m^QNvRF&E_(GrHAy(4=e4!tFYV@Vo`4CJvB_HIRyfPnrtaiYW+D35$#cLp- znr`8`#Pb}Kb+23bb3A+##aq>FH1BN#ZK23x=t7oj+Z;WPWq}`vvH{9mZ9`@!2{fH` zj-{ze7E`r1l6jFU15MXgQs)a5ORd^?;=;x15s+%Tab0c0>DOwj)EtziBc*ax;#q^e shW&o^iTDWl)9-@d%&m7E&KdJKr!K9t4&#hdk9jvywrXCT{pD@_3$V3D&j0`b literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem new file mode 100644 index 0000000..6d0ccc0 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem @@ -0,0 +1,4362 @@ + +# Issuer: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Subject: CN=GlobalSign Root CA O=GlobalSign nv-sa OU=Root CA +# Label: "GlobalSign Root CA" +# Serial: 4835703278459707669005204 +# MD5 Fingerprint: 3e:45:52:15:09:51:92:e1:b7:5d:37:9f:b1:87:29:8a +# SHA1 Fingerprint: b1:bc:96:8b:d4:f4:9d:62:2a:a8:9a:81:f2:15:01:52:a4:1d:82:9c +# SHA256 Fingerprint: eb:d4:10:40:e4:bb:3e:c7:42:c9:e3:81:d3:1e:f2:a4:1a:48:b6:68:5c:96:e7:ce:f3:c1:df:6c:d4:33:1c:99 +-----BEGIN CERTIFICATE----- +MIIDdTCCAl2gAwIBAgILBAAAAAABFUtaw5QwDQYJKoZIhvcNAQEFBQAwVzELMAkG +A1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2ExEDAOBgNVBAsTB1Jv +b3QgQ0ExGzAZBgNVBAMTEkdsb2JhbFNpZ24gUm9vdCBDQTAeFw05ODA5MDExMjAw +MDBaFw0yODAxMjgxMjAwMDBaMFcxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9i +YWxTaWduIG52LXNhMRAwDgYDVQQLEwdSb290IENBMRswGQYDVQQDExJHbG9iYWxT +aWduIFJvb3QgQ0EwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDaDuaZ +jc6j40+Kfvvxi4Mla+pIH/EqsLmVEQS98GPR4mdmzxzdzxtIK+6NiY6arymAZavp +xy0Sy6scTHAHoT0KMM0VjU/43dSMUBUc71DuxC73/OlS8pF94G3VNTCOXkNz8kHp +1Wrjsok6Vjk4bwY8iGlbKk3Fp1S4bInMm/k8yuX9ifUSPJJ4ltbcdG6TRGHRjcdG +snUOhugZitVtbNV4FpWi6cgKOOvyJBNPc1STE4U6G7weNLWLBYy5d4ux2x8gkasJ +U26Qzns3dLlwR5EiUWMWea6xrkEmCMgZK9FGqkjWZCrXgzT/LCrBbBlDSgeF59N8 +9iFo7+ryUp9/k5DPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBRge2YaRQ2XyolQL30EzTSo//z9SzANBgkqhkiG9w0B +AQUFAAOCAQEA1nPnfE920I2/7LqivjTFKDK1fPxsnCwrvQmeU79rXqoRSLblCKOz +yj1hTdNGCbM+w6DjY1Ub8rrvrTnhQ7k4o+YviiY776BQVvnGCv04zcQLcFGUl5gE +38NflNUVyRRBnMRddWQVDf9VMOyGj/8N7yy5Y0b2qvzfvGn9LhJIZJrglfCm7ymP +AbEVtQwdpf5pLGkkeB6zpxxxYu7KyJesF12KwvhHhm4qxFYxldBniYUr+WymXUad +DKqC5JlR3XC321Y9YeRq4VzW9v493kHMB65jUr9TU/Qr6cf9tveCX4XSQRjbgbME +HMUfpIBvFSDJ3gyICh3WZlXi/EjJKSZp4A== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R2 +# Label: "GlobalSign Root CA - R2" +# Serial: 4835703278459682885658125 +# MD5 Fingerprint: 94:14:77:7e:3e:5e:fd:8f:30:bd:41:b0:cf:e7:d0:30 +# SHA1 Fingerprint: 75:e0:ab:b6:13:85:12:27:1c:04:f8:5f:dd:de:38:e4:b7:24:2e:fe +# SHA256 Fingerprint: ca:42:dd:41:74:5f:d0:b8:1e:b9:02:36:2c:f9:d8:bf:71:9d:a1:bd:1b:1e:fc:94:6f:5b:4c:99:f4:2c:1b:9e +-----BEGIN CERTIFICATE----- +MIIDujCCAqKgAwIBAgILBAAAAAABD4Ym5g0wDQYJKoZIhvcNAQEFBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjIxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDYxMjE1MDgwMDAwWhcNMjExMjE1 +MDgwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMjETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAKbPJA6+Lm8omUVCxKs+IVSbC9N/hHD6ErPL +v4dfxn+G07IwXNb9rfF73OX4YJYJkhD10FPe+3t+c4isUoh7SqbKSaZeqKeMWhG8 +eoLrvozps6yWJQeXSpkqBy+0Hne/ig+1AnwblrjFuTosvNYSuetZfeLQBoZfXklq +tTleiDTsvHgMCJiEbKjNS7SgfQx5TfC4LcshytVsW33hoCmEofnTlEnLJGKRILzd +C9XZzPnqJworc5HGnRusyMvo4KD0L5CLTfuwNhv2GXqF4G3yYROIXJ/gkwpRl4pa +zq+r1feqCapgvdzZX99yqWATXgAByUr6P6TqBwMhAo6CygPCm48CAwEAAaOBnDCB +mTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUm+IH +V2ccHsBqBt5ZtJot39wZhi4wNgYDVR0fBC8wLTAroCmgJ4YlaHR0cDovL2NybC5n +bG9iYWxzaWduLm5ldC9yb290LXIyLmNybDAfBgNVHSMEGDAWgBSb4gdXZxwewGoG +3lm0mi3f3BmGLjANBgkqhkiG9w0BAQUFAAOCAQEAmYFThxxol4aR7OBKuEQLq4Gs +J0/WwbgcQ3izDJr86iw8bmEbTUsp9Z8FHSbBuOmDAGJFtqkIk7mpM0sYmsL4h4hO +291xNBrBVNpGP+DTKqttVCL1OmLNIG+6KYnX3ZHu01yiPqFbQfXf5WRDLenVOavS +ot+3i9DAgBkcRcAtjOj4LaR0VknFBbVPFd5uRHg5h6h+u/N5GJG79G+dwfCMNYxd +AfvDbbnvRG15RjF+Cv6pgsH/76tuIMRQyV+dTZsXjAzlAcmgQWpzU/qlULRuJQ/7 +TBj0/VLZjmmx6BEP3ojY+x1J96relc8geMJgEtslQIxq/H5COEBkEveegeGTLg== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Subject: CN=Entrust.net Certification Authority (2048) O=Entrust.net OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.)/(c) 1999 Entrust.net Limited +# Label: "Entrust.net Premium 2048 Secure Server CA" +# Serial: 946069240 +# MD5 Fingerprint: ee:29:31:bc:32:7e:9a:e6:e8:b5:f7:51:b4:34:71:90 +# SHA1 Fingerprint: 50:30:06:09:1d:97:d4:f5:ae:39:f7:cb:e7:92:7d:7d:65:2d:34:31 +# SHA256 Fingerprint: 6d:c4:71:72:e0:1c:bc:b0:bf:62:58:0d:89:5f:e2:b8:ac:9a:d4:f8:73:80:1e:0c:10:b9:c8:37:d2:1e:b1:77 +-----BEGIN CERTIFICATE----- +MIIEKjCCAxKgAwIBAgIEOGPe+DANBgkqhkiG9w0BAQUFADCBtDEUMBIGA1UEChML +RW50cnVzdC5uZXQxQDA+BgNVBAsUN3d3dy5lbnRydXN0Lm5ldC9DUFNfMjA0OCBp +bmNvcnAuIGJ5IHJlZi4gKGxpbWl0cyBsaWFiLikxJTAjBgNVBAsTHChjKSAxOTk5 +IEVudHJ1c3QubmV0IExpbWl0ZWQxMzAxBgNVBAMTKkVudHJ1c3QubmV0IENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5ICgyMDQ4KTAeFw05OTEyMjQxNzUwNTFaFw0yOTA3 +MjQxNDE1MTJaMIG0MRQwEgYDVQQKEwtFbnRydXN0Lm5ldDFAMD4GA1UECxQ3d3d3 +LmVudHJ1c3QubmV0L0NQU18yMDQ4IGluY29ycC4gYnkgcmVmLiAobGltaXRzIGxp +YWIuKTElMCMGA1UECxMcKGMpIDE5OTkgRW50cnVzdC5uZXQgTGltaXRlZDEzMDEG +A1UEAxMqRW50cnVzdC5uZXQgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgKDIwNDgp +MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEArU1LqRKGsuqjIAcVFmQq +K0vRvwtKTY7tgHalZ7d4QMBzQshowNtTK91euHaYNZOLGp18EzoOH1u3Hs/lJBQe +sYGpjX24zGtLA/ECDNyrpUAkAH90lKGdCCmziAv1h3edVc3kw37XamSrhRSGlVuX +MlBvPci6Zgzj/L24ScF2iUkZ/cCovYmjZy/Gn7xxGWC4LeksyZB2ZnuU4q941mVT +XTzWnLLPKQP5L6RQstRIzgUyVYr9smRMDuSYB3Xbf9+5CFVghTAp+XtIpGmG4zU/ +HoZdenoVve8AjhUiVBcAkCaTvA5JaJG/+EfTnZVCwQ5N328mz8MYIWJmQ3DW1cAH +4QIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUVeSB0RGAvtiJuQijMfmhJAkWuXAwDQYJKoZIhvcNAQEFBQADggEBADub +j1abMOdTmXx6eadNl9cZlZD7Bh/KM3xGY4+WZiT6QBshJ8rmcnPyT/4xmf3IDExo +U8aAghOY+rat2l098c5u9hURlIIM7j+VrxGrD9cv3h8Dj1csHsm7mhpElesYT6Yf +zX1XEC+bBAlahLVu2B064dae0Wx5XnkcFMXj0EyTO2U87d89vqbllRrDtRnDvV5b +u/8j72gZyxKTJ1wDLW8w0B62GqzeWvfRqqgnpv55gcR5mTNXuhKwqeBCbJPKVt7+ +bYQLCIt+jerXmCHG8+c8eS9enNFMFY3h7CI3zJpDC5fcgJCNs2ebb0gIFVbPv/Er +fF6adulZkMV8gzURZVE= +-----END CERTIFICATE----- + +# Issuer: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Subject: CN=Baltimore CyberTrust Root O=Baltimore OU=CyberTrust +# Label: "Baltimore CyberTrust Root" +# Serial: 33554617 +# MD5 Fingerprint: ac:b6:94:a5:9c:17:e0:d7:91:52:9b:b1:97:06:a6:e4 +# SHA1 Fingerprint: d4:de:20:d0:5e:66:fc:53:fe:1a:50:88:2c:78:db:28:52:ca:e4:74 +# SHA256 Fingerprint: 16:af:57:a9:f6:76:b0:ab:12:60:95:aa:5e:ba:de:f2:2a:b3:11:19:d6:44:ac:95:cd:4b:93:db:f3:f2:6a:eb +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIEAgAAuTANBgkqhkiG9w0BAQUFADBaMQswCQYDVQQGEwJJ +RTESMBAGA1UEChMJQmFsdGltb3JlMRMwEQYDVQQLEwpDeWJlclRydXN0MSIwIAYD +VQQDExlCYWx0aW1vcmUgQ3liZXJUcnVzdCBSb290MB4XDTAwMDUxMjE4NDYwMFoX +DTI1MDUxMjIzNTkwMFowWjELMAkGA1UEBhMCSUUxEjAQBgNVBAoTCUJhbHRpbW9y +ZTETMBEGA1UECxMKQ3liZXJUcnVzdDEiMCAGA1UEAxMZQmFsdGltb3JlIEN5YmVy +VHJ1c3QgUm9vdDCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAKMEuyKr +mD1X6CZymrV51Cni4eiVgLGw41uOKymaZN+hXe2wCQVt2yguzmKiYv60iNoS6zjr +IZ3AQSsBUnuId9Mcj8e6uYi1agnnc+gRQKfRzMpijS3ljwumUNKoUMMo6vWrJYeK +mpYcqWe4PwzV9/lSEy/CG9VwcPCPwBLKBsua4dnKM3p31vjsufFoREJIE9LAwqSu +XmD+tqYF/LTdB1kC1FkYmGP1pWPgkAx9XbIGevOF6uvUA65ehD5f/xXtabz5OTZy +dc93Uk3zyZAsuT3lySNTPx8kmCFcB5kpvcY67Oduhjprl3RjM71oGDHweI12v/ye +jl0qhqdNkNwnGjkCAwEAAaNFMEMwHQYDVR0OBBYEFOWdWTCCR1jMrPoIVDaGezq1 +BE3wMBIGA1UdEwEB/wQIMAYBAf8CAQMwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3 +DQEBBQUAA4IBAQCFDF2O5G9RaEIFoN27TyclhAO992T9Ldcw46QQF+vaKSm2eT92 +9hkTI7gQCvlYpNRhcL0EYWoSihfVCr3FvDB81ukMJY2GQE/szKN+OMY3EU/t3Wgx +jkzSswF07r51XgdIGn9w/xZchMB5hbgF/X++ZRGjD8ACtPhSNzkE1akxehi/oCr0 +Epn3o0WC4zxe9Z2etciefC7IpJ5OCBRLbf1wbWsaY71k5h+3zvDyny67G7fyUIhz +ksLi4xaNmjICq44Y3ekQEe5+NauQrz4wlHrQMz2nZQ/1/I6eYs9HRCwBXbsdtTLS +R9I4LtD+gdwyah617jzV/OeBHRnDJELqYzmp +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Subject: CN=Entrust Root Certification Authority O=Entrust, Inc. OU=www.entrust.net/CPS is incorporated by reference/(c) 2006 Entrust, Inc. +# Label: "Entrust Root Certification Authority" +# Serial: 1164660820 +# MD5 Fingerprint: d6:a5:c3:ed:5d:dd:3e:00:c1:3d:87:92:1f:1d:3f:e4 +# SHA1 Fingerprint: b3:1e:b1:b7:40:e3:6c:84:02:da:dc:37:d4:4d:f5:d4:67:49:52:f9 +# SHA256 Fingerprint: 73:c1:76:43:4f:1b:c6:d5:ad:f4:5b:0e:76:e7:27:28:7c:8d:e5:76:16:c1:e6:e6:14:1a:2b:2c:bc:7d:8e:4c +-----BEGIN CERTIFICATE----- +MIIEkTCCA3mgAwIBAgIERWtQVDANBgkqhkiG9w0BAQUFADCBsDELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xOTA3BgNVBAsTMHd3dy5lbnRydXN0 +Lm5ldC9DUFMgaXMgaW5jb3Jwb3JhdGVkIGJ5IHJlZmVyZW5jZTEfMB0GA1UECxMW +KGMpIDIwMDYgRW50cnVzdCwgSW5jLjEtMCsGA1UEAxMkRW50cnVzdCBSb290IENl +cnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA2MTEyNzIwMjM0MloXDTI2MTEyNzIw +NTM0MlowgbAxCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMTkw +NwYDVQQLEzB3d3cuZW50cnVzdC5uZXQvQ1BTIGlzIGluY29ycG9yYXRlZCBieSBy +ZWZlcmVuY2UxHzAdBgNVBAsTFihjKSAyMDA2IEVudHJ1c3QsIEluYy4xLTArBgNV +BAMTJEVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASIwDQYJ +KoZIhvcNAQEBBQADggEPADCCAQoCggEBALaVtkNC+sZtKm9I35RMOVcF7sN5EUFo +Nu3s/poBj6E4KPz3EEZmLk0eGrEaTsbRwJWIsMn/MYszA9u3g3s+IIRe7bJWKKf4 +4LlAcTfFy0cOlypowCKVYhXbR9n10Cv/gkvJrT7eTNuQgFA/CYqEAOwwCj0Yzfv9 +KlmaI5UXLEWeH25DeW0MXJj+SKfFI0dcXv1u5x609mhF0YaDW6KKjbHjKYD+JXGI +rb68j6xSlkuqUY3kEzEZ6E5Nn9uss2rVvDlUccp6en+Q3X0dgNmBu1kmwhH+5pPi +94DkZfs0Nw4pgHBNrziGLp5/V6+eF67rHMsoIV+2HNjnogQi+dPa2MsCAwEAAaOB +sDCBrTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zArBgNVHRAEJDAi +gA8yMDA2MTEyNzIwMjM0MlqBDzIwMjYxMTI3MjA1MzQyWjAfBgNVHSMEGDAWgBRo +kORnpKZTgMeGZqTx90tD+4S9bTAdBgNVHQ4EFgQUaJDkZ6SmU4DHhmak8fdLQ/uE +vW0wHQYJKoZIhvZ9B0EABBAwDhsIVjcuMTo0LjADAgSQMA0GCSqGSIb3DQEBBQUA +A4IBAQCT1DCw1wMgKtD5Y+iRDAUgqV8ZyntyTtSx29CW+1RaGSwMCPeyvIWonX9t +O1KzKtvn1ISMY/YPyyYBkVBs9F8U4pN0wBOeMDpQ47RgxRzwIkSNcUesyBrJ6Zua +AGAT/3B+XxFNSRuzFVJ7yVTav52Vr2ua2J7p8eRDjeIRRDq/r72DQnNSi6q7pynP +9WQcCk3RvKqsnyrQ/39/2n3qse0wJcGE2jTSW3iDVuycNsMm4hH2Z0kdkquM++v/ +eu6FSqdQgPCnXEqULl8FmTxSQeDNtGPPAUO6nIPcj2A781q0tHuu2guQOHXvgR1m +0vdXcDazv/wor3ElhVsT/h5/WrQ8 +-----END CERTIFICATE----- + +# Issuer: CN=AAA Certificate Services O=Comodo CA Limited +# Subject: CN=AAA Certificate Services O=Comodo CA Limited +# Label: "Comodo AAA Services root" +# Serial: 1 +# MD5 Fingerprint: 49:79:04:b0:eb:87:19:ac:47:b0:bc:11:51:9b:74:d0 +# SHA1 Fingerprint: d1:eb:23:a4:6d:17:d6:8f:d9:25:64:c2:f1:f1:60:17:64:d8:e3:49 +# SHA256 Fingerprint: d7:a7:a0:fb:5d:7e:27:31:d7:71:e9:48:4e:bc:de:f7:1d:5f:0c:3e:0a:29:48:78:2b:c8:3e:e0:ea:69:9e:f4 +-----BEGIN CERTIFICATE----- +MIIEMjCCAxqgAwIBAgIBATANBgkqhkiG9w0BAQUFADB7MQswCQYDVQQGEwJHQjEb +MBkGA1UECAwSR3JlYXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHDAdTYWxmb3JkMRow +GAYDVQQKDBFDb21vZG8gQ0EgTGltaXRlZDEhMB8GA1UEAwwYQUFBIENlcnRpZmlj +YXRlIFNlcnZpY2VzMB4XDTA0MDEwMTAwMDAwMFoXDTI4MTIzMTIzNTk1OVowezEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgMEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BwwHU2FsZm9yZDEaMBgGA1UECgwRQ29tb2RvIENBIExpbWl0ZWQxITAfBgNVBAMM +GEFBQSBDZXJ0aWZpY2F0ZSBTZXJ2aWNlczCCASIwDQYJKoZIhvcNAQEBBQADggEP +ADCCAQoCggEBAL5AnfRu4ep2hxxNRUSOvkbIgwadwSr+GB+O5AL686tdUIoWMQua +BtDFcCLNSS1UY8y2bmhGC1Pqy0wkwLxyTurxFa70VJoSCsN6sjNg4tqJVfMiWPPe +3M/vg4aijJRPn2jymJBGhCfHdr/jzDUsi14HZGWCwEiwqJH5YZ92IFCokcdmtet4 +YgNW8IoaE+oxox6gmf049vYnMlhvB/VruPsUK6+3qszWY19zjNoFmag4qMsXeDZR +rOme9Hg6jc8P2ULimAyrL58OAd7vn5lJ8S3frHRNG5i1R8XlKdH5kBjHYpy+g8cm +ez6KJcfA3Z3mNWgQIJ2P2N7Sw4ScDV7oL8kCAwEAAaOBwDCBvTAdBgNVHQ4EFgQU +oBEKIz6W8Qfs4q8p74Klf9AwpLQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQF +MAMBAf8wewYDVR0fBHQwcjA4oDagNIYyaHR0cDovL2NybC5jb21vZG9jYS5jb20v +QUFBQ2VydGlmaWNhdGVTZXJ2aWNlcy5jcmwwNqA0oDKGMGh0dHA6Ly9jcmwuY29t +b2RvLm5ldC9BQUFDZXJ0aWZpY2F0ZVNlcnZpY2VzLmNybDANBgkqhkiG9w0BAQUF +AAOCAQEACFb8AvCb6P+k+tZ7xkSAzk/ExfYAWMymtrwUSWgEdujm7l3sAg9g1o1Q +GE8mTgHj5rCl7r+8dFRBv/38ErjHT1r0iWAFf2C3BUrz9vHCv8S5dIa2LX1rzNLz +Rt0vxuBqw8M0Ayx9lt1awg6nCpnBBYurDC/zXDrPbDdVCYfeU0BsWO/8tqtlbgT2 +G9w84FoVxp7Z8VlIMCFlA2zs6SFz7JsDoeA3raAVGI/6ugLOpyypEBMs1OUIJqsi +l2D4kF501KKaU73yqWjgom7C12yxow+ev+to51byrvLjKzg6CYG1a4XXvi3tPxq3 +smPi9WIsgtRqAEFQ8TmDn5XpNpaYbg== +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2" +# Serial: 1289 +# MD5 Fingerprint: 5e:39:7b:dd:f8:ba:ec:82:e9:ac:62:ba:0c:54:00:2b +# SHA1 Fingerprint: ca:3a:fb:cf:12:40:36:4b:44:b2:16:20:88:80:48:39:19:93:7c:f7 +# SHA256 Fingerprint: 85:a0:dd:7d:d7:20:ad:b7:ff:05:f8:3d:54:2b:20:9d:c7:ff:45:28:f7:d6:77:b1:83:89:fe:a5:e5:c4:9e:86 +-----BEGIN CERTIFICATE----- +MIIFtzCCA5+gAwIBAgICBQkwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMjAeFw0wNjExMjQxODI3MDBaFw0zMTExMjQxODIzMzNaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCa +GMpLlA0ALa8DKYrwD4HIrkwZhR0In6spRIXzL4GtMh6QRr+jhiYaHv5+HBg6XJxg +Fyo6dIMzMH1hVBHL7avg5tKifvVrbxi3Cgst/ek+7wrGsxDp3MJGF/hd/aTa/55J +WpzmM+Yklvc/ulsrHHo1wtZn/qtmUIttKGAr79dgw8eTvI02kfN/+NsRE8Scd3bB +rrcCaoF6qUWD4gXmuVbBlDePSHFjIuwXZQeVikvfj8ZaCuWw419eaxGrDPmF60Tp ++ARz8un+XJiM9XOva7R+zdRcAitMOeGylZUtQofX1bOQQ7dsE/He3fbE+Ik/0XX1 +ksOR1YqI0JDs3G3eicJlcZaLDQP9nL9bFqyS2+r+eXyt66/3FsvbzSUr5R/7mp/i +Ucw6UwxI5g69ybR2BlLmEROFcmMDBOAENisgGQLodKcftslWZvB1JdxnwQ5hYIiz +PtGo/KPaHbDRsSNU30R2be1B2MGyIrZTHN81Hdyhdyox5C315eXbyOD/5YDXC2Og +/zOhD7osFRXql7PSorW+8oyWHhqPHWykYTe5hnMz15eWniN9gqRMgeKh0bpnX5UH +oycR7hYQe7xFSkyyBNKr79X9DFHOUGoIMfmR2gyPZFwDwzqLID9ujWc9Otb+fVuI +yV77zGHcizN300QyNQliBJIWENieJ0f7OyHj+OsdWwIDAQABo4GwMIGtMA8GA1Ud +EwEB/wQFMAMBAf8wCwYDVR0PBAQDAgEGMB0GA1UdDgQWBBQahGK8SEwzJQTU7tD2 +A8QZRtGUazBuBgNVHSMEZzBlgBQahGK8SEwzJQTU7tD2A8QZRtGUa6FJpEcwRTEL +MAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMT +ElF1b1ZhZGlzIFJvb3QgQ0EgMoICBQkwDQYJKoZIhvcNAQEFBQADggIBAD4KFk2f +BluornFdLwUvZ+YTRYPENvbzwCYMDbVHZF34tHLJRqUDGCdViXh9duqWNIAXINzn +g/iN/Ae42l9NLmeyhP3ZRPx3UIHmfLTJDQtyU/h2BwdBR5YM++CCJpNVjP4iH2Bl +fF/nJrP3MpCYUNQ3cVX2kiF495V5+vgtJodmVjB3pjd4M1IQWK4/YY7yarHvGH5K +WWPKjaJW1acvvFYfzznB4vsKqBUsfU16Y8Zsl0Q80m/DShcK+JDSV6IZUaUtl0Ha +B0+pUNqQjZRG4T7wlP0QADj1O+hA4bRuVhogzG9Yje0uRY/W6ZM/57Es3zrWIozc +hLsib9D45MY56QSIPMO661V6bYCZJPVsAfv4l7CUW+v90m/xd2gNNWQjrLhVoQPR +TUIZ3Ph1WVaj+ahJefivDrkRoHy3au000LYmYjgahwz46P0u05B/B5EqHdZ+XIWD +mbA4CD/pXvk1B+TJYm5Xf6dQlfe6yJvmjqIBxdZmv3lh8zwc4bmCXF2gw+nYSL0Z +ohEUGW6yhhtoPkg3Goi3XZZenMfvJ2II4pEZXNLxId26F0KCl3GBUzGpn/Z9Yr9y +4aOTHcyKJloJONDO1w2AFrR4pTqHTI2KpdVGl/IsELm8VCLAAVBpQ570su9t+Oza +8eOx79+Rj1QqCyXBJhnEUhAFZdWCEOrCMc0u +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3" +# Serial: 1478 +# MD5 Fingerprint: 31:85:3c:62:94:97:63:b9:aa:fd:89:4e:af:6f:e0:cf +# SHA1 Fingerprint: 1f:49:14:f7:d8:74:95:1d:dd:ae:02:c0:be:fd:3a:2d:82:75:51:85 +# SHA256 Fingerprint: 18:f1:fc:7f:20:5d:f8:ad:dd:eb:7f:e0:07:dd:57:e3:af:37:5a:9c:4d:8d:73:54:6b:f4:f1:fe:d1:e1:8d:35 +-----BEGIN CERTIFICATE----- +MIIGnTCCBIWgAwIBAgICBcYwDQYJKoZIhvcNAQEFBQAwRTELMAkGA1UEBhMCQk0x +GTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxGzAZBgNVBAMTElF1b1ZhZGlzIFJv +b3QgQ0EgMzAeFw0wNjExMjQxOTExMjNaFw0zMTExMjQxOTA2NDRaMEUxCzAJBgNV +BAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBMaW1pdGVkMRswGQYDVQQDExJRdW9W +YWRpcyBSb290IENBIDMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDM +V0IWVJzmmNPTTe7+7cefQzlKZbPoFog02w1ZkXTPkrgEQK0CSzGrvI2RaNggDhoB +4hp7Thdd4oq3P5kazethq8Jlph+3t723j/z9cI8LoGe+AaJZz3HmDyl2/7FWeUUr +H556VOijKTVopAFPD6QuN+8bv+OPEKhyq1hX51SGyMnzW9os2l2ObjyjPtr7guXd +8lyyBTNvijbO0BNO/79KDDRMpsMhvVAEVeuxu537RR5kFd5VAYwCdrXLoT9Cabwv +vWhDFlaJKjdhkf2mrk7AyxRllDdLkgbvBNDInIjbC3uBr7E9KsRlOni27tyAsdLT +mZw67mtaa7ONt9XOnMK+pUsvFrGeaDsGb659n/je7Mwpp5ijJUMv7/FfJuGITfhe +btfZFG4ZM2mnO4SJk8RTVROhUXhA+LjJou57ulJCg54U7QVSWllWp5f8nT8KKdjc +T5EOE7zelaTfi5m+rJsziO+1ga8bxiJTyPbH7pcUsMV8eFLI8M5ud2CEpukqdiDt +WAEXMJPpGovgc2PZapKUSU60rUqFxKMiMPwJ7Wgic6aIDFUhWMXhOp8q3crhkODZ +c6tsgLjoC2SToJyMGf+z0gzskSaHirOi4XCPLArlzW1oUevaPwV/izLmE1xr/l9A +4iLItLRkT9a6fUg+qGkM17uGcclzuD87nSVL2v9A6wIDAQABo4IBlTCCAZEwDwYD +VR0TAQH/BAUwAwEB/zCB4QYDVR0gBIHZMIHWMIHTBgkrBgEEAb5YAAMwgcUwgZMG +CCsGAQUFBwICMIGGGoGDQW55IHVzZSBvZiB0aGlzIENlcnRpZmljYXRlIGNvbnN0 +aXR1dGVzIGFjY2VwdGFuY2Ugb2YgdGhlIFF1b1ZhZGlzIFJvb3QgQ0EgMyBDZXJ0 +aWZpY2F0ZSBQb2xpY3kgLyBDZXJ0aWZpY2F0aW9uIFByYWN0aWNlIFN0YXRlbWVu +dC4wLQYIKwYBBQUHAgEWIWh0dHA6Ly93d3cucXVvdmFkaXNnbG9iYWwuY29tL2Nw +czALBgNVHQ8EBAMCAQYwHQYDVR0OBBYEFPLAE+CCQz777i9nMpY1XNu4ywLQMG4G +A1UdIwRnMGWAFPLAE+CCQz777i9nMpY1XNu4ywLQoUmkRzBFMQswCQYDVQQGEwJC +TTEZMBcGA1UEChMQUXVvVmFkaXMgTGltaXRlZDEbMBkGA1UEAxMSUXVvVmFkaXMg +Um9vdCBDQSAzggIFxjANBgkqhkiG9w0BAQUFAAOCAgEAT62gLEz6wPJv92ZVqyM0 +7ucp2sNbtrCD2dDQ4iH782CnO11gUyeim/YIIirnv6By5ZwkajGxkHon24QRiSem +d1o417+shvzuXYO8BsbRd2sPbSQvS3pspweWyuOEn62Iix2rFo1bZhfZFvSLgNLd ++LJ2w/w4E6oM3kJpK27zPOuAJ9v1pkQNn1pVWQvVDVJIxa6f8i+AxeoyUDUSly7B +4f/xI4hROJ/yZlZ25w9Rl6VSDE1JUZU2Pb+iSwwQHYaZTKrzchGT5Or2m9qoXadN +t54CrnMAyNojA+j56hl0YgCUyyIgvpSnWbWCar6ZeXqp8kokUvd0/bpO5qgdAm6x +DYBEwa7TIzdfu4V8K5Iu6H6li92Z4b8nby1dqnuH/grdS/yO9SbkbnBCbjPsMZ57 +k8HkyWkaPcBrTiJt7qtYTcbQQcEr6k8Sh17rRdhs9ZgC06DYVYoGmRmioHfRMJ6s +zHXug/WwYjnPbFfiTNKRCw51KBuav/0aQ/HKd/s7j2G4aSgWQgRecCocIdiP4b0j +Wy10QJLZYxkNc91pvGJHvOB0K7Lrfb5BG7XARsWhIstfTsEokt4YutUqKLsRixeT +mJlglFwjz1onl14LBQaTNx47aTbrqZ5hHY8y2o4M1nQ+ewkk2gF3R8Q7zTSMmfXK +4SVhM7JZG+Ju1zdXtg2pEto= +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust.net OU=Security Communication RootCA1 +# Subject: O=SECOM Trust.net OU=Security Communication RootCA1 +# Label: "Security Communication Root CA" +# Serial: 0 +# MD5 Fingerprint: f1:bc:63:6a:54:e0:b5:27:f5:cd:e7:1a:e3:4d:6e:4a +# SHA1 Fingerprint: 36:b1:2b:49:f9:81:9e:d7:4c:9e:bc:38:0f:c6:56:8f:5d:ac:b2:f7 +# SHA256 Fingerprint: e7:5e:72:ed:9f:56:0e:ec:6e:b4:80:00:73:a4:3f:c3:ad:19:19:5a:39:22:82:01:78:95:97:4a:99:02:6b:6c +-----BEGIN CERTIFICATE----- +MIIDWjCCAkKgAwIBAgIBADANBgkqhkiG9w0BAQUFADBQMQswCQYDVQQGEwJKUDEY +MBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYDVQQLEx5TZWN1cml0eSBDb21t +dW5pY2F0aW9uIFJvb3RDQTEwHhcNMDMwOTMwMDQyMDQ5WhcNMjMwOTMwMDQyMDQ5 +WjBQMQswCQYDVQQGEwJKUDEYMBYGA1UEChMPU0VDT00gVHJ1c3QubmV0MScwJQYD +VQQLEx5TZWN1cml0eSBDb21tdW5pY2F0aW9uIFJvb3RDQTEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQCzs/5/022x7xZ8V6UMbXaKL0u/ZPtM7orw8yl8 +9f/uKuDp6bpbZCKamm8sOiZpUQWZJtzVHGpxxpp9Hp3dfGzGjGdnSj74cbAZJ6kJ +DKaVv0uMDPpVmDvY6CKhS3E4eayXkmmziX7qIWgGmBSWh9JhNrxtJ1aeV+7AwFb9 +Ms+k2Y7CI9eNqPPYJayX5HA49LY6tJ07lyZDo6G8SVlyTCMwhwFY9k6+HGhWZq/N +QV3Is00qVUarH9oe4kA92819uZKAnDfdDJZkndwi92SL32HeFZRSFaB9UslLqCHJ +xrHty8OVYNEP8Ktw+N/LTX7s1vqr2b1/VPKl6Xn62dZ2JChzAgMBAAGjPzA9MB0G +A1UdDgQWBBSgc0mZaNyFW2XjmygvV5+9M7wHSDALBgNVHQ8EBAMCAQYwDwYDVR0T +AQH/BAUwAwEB/zANBgkqhkiG9w0BAQUFAAOCAQEAaECpqLvkT115swW1F7NgE+vG +kl3g0dNq/vu+m22/xwVtWSDEHPC32oRYAmP6SBbvT6UL90qY8j+eG61Ha2POCEfr +Uj94nK9NrvjVT8+amCoQQTlSxN3Zmw7vkwGusi7KaEIkQmywszo+zenaSMQVy+n5 +Bw+SUEmK3TGXX8npN6o7WWWXlDLJs58+OmJYxUmtYg5xpTKqL8aJdkNAExNnPaJU +JRDL8Try2frbSVa7pv6nQTXD4IhhyYjH3zYQIphZ6rBK+1YWc26sTfcioU+tHXot +RSflMMFe8toTyyVCUZVHA4xsIcx0Qu1T/zOLjw9XARYvz6buyXAiFL39vmwLAw== +-----END CERTIFICATE----- + +# Issuer: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Subject: CN=XRamp Global Certification Authority O=XRamp Security Services Inc OU=www.xrampsecurity.com +# Label: "XRamp Global CA Root" +# Serial: 107108908803651509692980124233745014957 +# MD5 Fingerprint: a1:0b:44:b3:ca:10:d8:00:6e:9d:0f:d8:0f:92:0a:d1 +# SHA1 Fingerprint: b8:01:86:d1:eb:9c:86:a5:41:04:cf:30:54:f3:4c:52:b7:e5:58:c6 +# SHA256 Fingerprint: ce:cd:dc:90:50:99:d8:da:df:c5:b1:d2:09:b7:37:cb:e2:c1:8c:fb:2c:10:c0:ff:0b:cf:0d:32:86:fc:1a:a2 +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIQUJRs7Bjq1ZxN1ZfvdY+grTANBgkqhkiG9w0BAQUFADCB +gjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3dy54cmFtcHNlY3VyaXR5LmNvbTEk +MCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2VydmljZXMgSW5jMS0wKwYDVQQDEyRY +UmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQxMTAxMTcx +NDA0WhcNMzUwMTAxMDUzNzE5WjCBgjELMAkGA1UEBhMCVVMxHjAcBgNVBAsTFXd3 +dy54cmFtcHNlY3VyaXR5LmNvbTEkMCIGA1UEChMbWFJhbXAgU2VjdXJpdHkgU2Vy +dmljZXMgSW5jMS0wKwYDVQQDEyRYUmFtcCBHbG9iYWwgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCYJB69FbS6 +38eMpSe2OAtp87ZOqCwuIR1cRN8hXX4jdP5efrRKt6atH67gBhbim1vZZ3RrXYCP +KZ2GG9mcDZhtdhAoWORlsH9KmHmf4MMxfoArtYzAQDsRhtDLooY2YKTVMIJt2W7Q +DxIEM5dfT2Fa8OT5kavnHTu86M/0ay00fOJIYRyO82FEzG+gSqmUsE3a56k0enI4 +qEHMPJQRfevIpoy3hsvKMzvZPTeL+3o+hiznc9cKV6xkmxnr9A8ECIqsAxcZZPRa +JSKNNCyy9mgdEm3Tih4U2sSPpuIjhdV6Db1q4Ons7Be7QhtnqiXtRYMh/MHJfNVi +PvryxS3T/dRlAgMBAAGjgZ8wgZwwEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0P +BAQDAgGGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMZPoj0GY4QJnM5i5ASs +jVy16bYbMDYGA1UdHwQvMC0wK6ApoCeGJWh0dHA6Ly9jcmwueHJhbXBzZWN1cml0 +eS5jb20vWEdDQS5jcmwwEAYJKwYBBAGCNxUBBAMCAQEwDQYJKoZIhvcNAQEFBQAD +ggEBAJEVOQMBG2f7Shz5CmBbodpNl2L5JFMn14JkTpAuw0kbK5rc/Kh4ZzXxHfAR +vbdI4xD2Dd8/0sm2qlWkSLoC295ZLhVbO50WfUfXN+pfTXYSNrsf16GBBEYgoyxt +qZ4Bfj8pzgCT3/3JknOJiWSe5yvkHJEs0rnOfc5vMZnT5r7SHpDwCRR5XCOrTdLa +IR9NmXmd4c8nnxCbHIgNsIpkQTG4DmyQJKSbXHGPurt+HBvbaoAPIbzp26a3QPSy +i6mx5O+aGtA9aZnuqCij4Tyz8LIRnM98QObd50N9otg6tamN8jSZxNQQ4Qb9CYQQ +O+7ETPTsJ3xCwnR8gooJybQDJbw= +-----END CERTIFICATE----- + +# Issuer: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Subject: O=The Go Daddy Group, Inc. OU=Go Daddy Class 2 Certification Authority +# Label: "Go Daddy Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 91:de:06:25:ab:da:fd:32:17:0c:bb:25:17:2a:84:67 +# SHA1 Fingerprint: 27:96:ba:e6:3f:18:01:e2:77:26:1b:a0:d7:77:70:02:8f:20:ee:e4 +# SHA256 Fingerprint: c3:84:6b:f2:4b:9e:93:ca:64:27:4c:0e:c6:7c:1e:cc:5e:02:4f:fc:ac:d2:d7:40:19:35:0e:81:fe:54:6a:e4 +-----BEGIN CERTIFICATE----- +MIIEADCCAuigAwIBAgIBADANBgkqhkiG9w0BAQUFADBjMQswCQYDVQQGEwJVUzEh +MB8GA1UEChMYVGhlIEdvIERhZGR5IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBE +YWRkeSBDbGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTA0MDYyOTE3 +MDYyMFoXDTM0MDYyOTE3MDYyMFowYzELMAkGA1UEBhMCVVMxITAfBgNVBAoTGFRo +ZSBHbyBEYWRkeSBHcm91cCwgSW5jLjExMC8GA1UECxMoR28gRGFkZHkgQ2xhc3Mg +MiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTCCASAwDQYJKoZIhvcNAQEBBQADggEN +ADCCAQgCggEBAN6d1+pXGEmhW+vXX0iG6r7d/+TvZxz0ZWizV3GgXne77ZtJ6XCA +PVYYYwhv2vLM0D9/AlQiVBDYsoHUwHU9S3/Hd8M+eKsaA7Ugay9qK7HFiH7Eux6w +wdhFJ2+qN1j3hybX2C32qRe3H3I2TqYXP2WYktsqbl2i/ojgC95/5Y0V4evLOtXi +EqITLdiOr18SPaAIBQi2XKVlOARFmR6jYGB0xUGlcmIbYsUfb18aQr4CUWWoriMY +avx4A6lNf4DD+qta/KFApMoZFv6yyO9ecw3ud72a9nmYvLEHZ6IVDd2gWMZEewo+ +YihfukEHU1jPEX44dMX4/7VpkI+EdOqXG68CAQOjgcAwgb0wHQYDVR0OBBYEFNLE +sNKR1EwRcbNhyz2h/t2oatTjMIGNBgNVHSMEgYUwgYKAFNLEsNKR1EwRcbNhyz2h +/t2oatTjoWekZTBjMQswCQYDVQQGEwJVUzEhMB8GA1UEChMYVGhlIEdvIERhZGR5 +IEdyb3VwLCBJbmMuMTEwLwYDVQQLEyhHbyBEYWRkeSBDbGFzcyAyIENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEFBQAD +ggEBADJL87LKPpH8EsahB4yOd6AzBhRckB4Y9wimPQoZ+YeAEW5p5JYXMP80kWNy +OO7MHAGjHZQopDH2esRU1/blMVgDoszOYtuURXO1v0XJJLXVggKtI3lpjbi2Tc7P +TMozI+gciKqdi0FuFskg5YmezTvacPd+mSYgFFQlq25zheabIZ0KbIIOqPjCDPoQ +HmyW74cNxA9hi63ugyuV+I6ShHI56yDqg+2DzZduCLzrTia2cyvk0/ZM/iZx4mER +dEr/VxqHD3VILs9RaRegAhJhldXRQLIQTO7ErBBDpqWeCtWVYpoNz4iCxTIM5Cuf +ReYNnyicsbkqWletNw+vHX/bvZ8= +-----END CERTIFICATE----- + +# Issuer: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Subject: O=Starfield Technologies, Inc. OU=Starfield Class 2 Certification Authority +# Label: "Starfield Class 2 CA" +# Serial: 0 +# MD5 Fingerprint: 32:4a:4b:bb:c8:63:69:9b:be:74:9a:c6:dd:1d:46:24 +# SHA1 Fingerprint: ad:7e:1c:28:b0:64:ef:8f:60:03:40:20:14:c3:d0:e3:37:0e:b5:8a +# SHA256 Fingerprint: 14:65:fa:20:53:97:b8:76:fa:a6:f0:a9:95:8e:55:90:e4:0f:cc:7f:aa:4f:b7:c2:c8:67:75:21:fb:5f:b6:58 +-----BEGIN CERTIFICATE----- +MIIEDzCCAvegAwIBAgIBADANBgkqhkiG9w0BAQUFADBoMQswCQYDVQQGEwJVUzEl +MCMGA1UEChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMp +U3RhcmZpZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDQw +NjI5MTczOTE2WhcNMzQwNjI5MTczOTE2WjBoMQswCQYDVQQGEwJVUzElMCMGA1UE +ChMcU3RhcmZpZWxkIFRlY2hub2xvZ2llcywgSW5jLjEyMDAGA1UECxMpU3RhcmZp +ZWxkIENsYXNzIDIgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwggEgMA0GCSqGSIb3 +DQEBAQUAA4IBDQAwggEIAoIBAQC3Msj+6XGmBIWtDBFk385N78gDGIc/oav7PKaf +8MOh2tTYbitTkPskpD6E8J7oX+zlJ0T1KKY/e97gKvDIr1MvnsoFAZMej2YcOadN ++lq2cwQlZut3f+dZxkqZJRRU6ybH838Z1TBwj6+wRir/resp7defqgSHo9T5iaU0 +X9tDkYI22WY8sbi5gv2cOj4QyDvvBmVmepsZGD3/cVE8MC5fvj13c7JdBmzDI1aa +K4UmkhynArPkPw2vCHmCuDY96pzTNbO8acr1zJ3o/WSNF4Azbl5KXZnJHoe0nRrA +1W4TNSNe35tfPe/W93bC6j67eA0cQmdrBNj41tpvi/JEoAGrAgEDo4HFMIHCMB0G +A1UdDgQWBBS/X7fRzt0fhvRbVazc1xDCDqmI5zCBkgYDVR0jBIGKMIGHgBS/X7fR +zt0fhvRbVazc1xDCDqmI56FspGowaDELMAkGA1UEBhMCVVMxJTAjBgNVBAoTHFN0 +YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAsTKVN0YXJmaWVsZCBD +bGFzcyAyIENlcnRpZmljYXRpb24gQXV0aG9yaXR5ggEAMAwGA1UdEwQFMAMBAf8w +DQYJKoZIhvcNAQEFBQADggEBAAWdP4id0ckaVaGsafPzWdqbAYcaT1epoXkJKtv3 +L7IezMdeatiDh6GX70k1PncGQVhiv45YuApnP+yz3SFmH8lU+nLMPUxA2IGvd56D +eruix/U0F47ZEUD0/CwqTRV/p2JdLiXTAAsgGh1o+Re49L2L7ShZ3U0WixeDyLJl +xy16paq8U4Zt3VekyvggQQto8PT7dL5WXXp59fkdheMtlb71cZBDzI0fmgAKhynp +VSJYACPq4xJDKVtHCN2MQWplBqjlIapBtJUhlbl90TSrE9atvNziPTnNvT51cKEY +WQPJIrSPnNVeKtelttQKbfi3QBFGmh95DmK/D5fs4C8fF5Q= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root CA" +# Serial: 17154717934120587862167794914071425081 +# MD5 Fingerprint: 87:ce:0b:7b:2a:0e:49:00:e1:58:71:9b:37:a8:93:72 +# SHA1 Fingerprint: 05:63:b8:63:0d:62:d7:5a:bb:c8:ab:1e:4b:df:b5:a8:99:b2:4d:43 +# SHA256 Fingerprint: 3e:90:99:b5:01:5e:8f:48:6c:00:bc:ea:9d:11:1e:e7:21:fa:ba:35:5a:89:bc:f1:df:69:56:1e:3d:c6:32:5c +-----BEGIN CERTIFICATE----- +MIIDtzCCAp+gAwIBAgIQDOfg5RfYRv6P5WD8G/AwOTANBgkqhkiG9w0BAQUFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgQ0EwHhcNMDYxMTEwMDAwMDAwWhcNMzExMTEwMDAwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgQ0EwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCtDhXO5EOAXLGH87dg+XESpa7c +JpSIqvTO9SA5KFhgDPiA2qkVlTJhPLWxKISKityfCgyDF3qPkKyK53lTXDGEKvYP +mDI2dsze3Tyoou9q+yHyUmHfnyDXH+Kx2f4YZNISW1/5WBg1vEfNoTb5a3/UsDg+ +wRvDjDPZ2C8Y/igPs6eD1sNuRMBhNZYW/lmci3Zt1/GiSw0r/wty2p5g0I6QNcZ4 +VYcgoc/lbQrISXwxmDNsIumH0DJaoroTghHtORedmTpyoeb6pNnVFzF1roV9Iq4/ +AUaG9ih5yLHa5FcXxH4cDrC0kqZWs72yl+2qp/C3xag/lRbQ/6GW6whfGHdPAgMB +AAGjYzBhMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQW +BBRF66Kv9JLLgjEtUYunpyGd823IDzAfBgNVHSMEGDAWgBRF66Kv9JLLgjEtUYun +pyGd823IDzANBgkqhkiG9w0BAQUFAAOCAQEAog683+Lt8ONyc3pklL/3cmbYMuRC +dWKuh+vy1dneVrOfzM4UKLkNl2BcEkxY5NM9g0lFWJc1aRqoR+pWxnmrEthngYTf +fwk8lOa4JiwgvT2zKIn3X/8i4peEH+ll74fg38FnSbNd67IJKusm7Xi+fT8r87cm +NW1fiQG2SVufAQWbqz0lwcy2f8Lxb4bG+mRo64EtlOtCt/qMHt1i8b5QZ7dsvfPx +H2sMNgcWfzd8qVttevESRmCD1ycEvkvOl77DZypoEd+A5wwzZr8TDRRu838fYxAe ++o0bJW1sj6W3YQGx0qMmoRBxna3iw/nDmVG3KwcIzi7mULKn+gpFL6Lw8g== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root CA" +# Serial: 10944719598952040374951832963794454346 +# MD5 Fingerprint: 79:e4:a9:84:0d:7d:3a:96:d7:c0:4f:e2:43:4c:89:2e +# SHA1 Fingerprint: a8:98:5d:3a:65:e5:e5:c4:b2:d7:d6:6d:40:c6:dd:2f:b1:9c:54:36 +# SHA256 Fingerprint: 43:48:a0:e9:44:4c:78:cb:26:5e:05:8d:5e:89:44:b4:d8:4f:96:62:bd:26:db:25:7f:89:34:a4:43:c7:01:61 +-----BEGIN CERTIFICATE----- +MIIDrzCCApegAwIBAgIQCDvgVpBCRrGhdWrJWZHHSjANBgkqhkiG9w0BAQUFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBD +QTAeFw0wNjExMTAwMDAwMDBaFw0zMTExMTAwMDAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IENBMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEA4jvhEXLeqKTTo1eqUKKPC3eQyaKl7hLOllsB +CSDMAZOnTjC3U/dDxGkAV53ijSLdhwZAAIEJzs4bg7/fzTtxRuLWZscFs3YnFo97 +nh6Vfe63SKMI2tavegw5BmV/Sl0fvBf4q77uKNd0f3p4mVmFaG5cIzJLv07A6Fpt +43C/dxC//AH2hdmoRBBYMql1GNXRor5H4idq9Joz+EkIYIvUX7Q6hL+hqkpMfT7P +T19sdl6gSzeRntwi5m3OFBqOasv+zbMUZBfHWymeMr/y7vrTC0LUq7dBMtoM1O/4 +gdW7jVg/tRvoSSiicNoxBN33shbyTApOB6jtSj1etX+jkMOvJwIDAQABo2MwYTAO +BgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUA95QNVbR +TLtm8KPiGxvDl7I90VUwHwYDVR0jBBgwFoAUA95QNVbRTLtm8KPiGxvDl7I90VUw +DQYJKoZIhvcNAQEFBQADggEBAMucN6pIExIK+t1EnE9SsPTfrgT1eXkIoyQY/Esr +hMAtudXH/vTBH1jLuG2cenTnmCmrEbXjcKChzUyImZOMkXDiqw8cvpOp/2PV5Adg +06O/nVsJ8dWO41P0jmP6P6fbtGbfYmbW0W5BjfIttep3Sp+dWOIrWcBAI+0tKIJF +PnlUkiaY4IBIqDfv8NZ5YBberOgOzW6sRBc4L0na4UU+Krk2U886UAb3LujEV0ls +YSEY1QSteDwsOoBrp+uvFRTp2InBuThs4pFsiv9kuXclVzDAGySj4dzp30d8tbQk +CAUw7C29C79Fv1C5qfPrmAESrciIxpg0X40KPMbp1ZWVbd4= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert High Assurance EV Root CA O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert High Assurance EV Root CA" +# Serial: 3553400076410547919724730734378100087 +# MD5 Fingerprint: d4:74:de:57:5c:39:b2:d3:9c:85:83:c5:c0:65:49:8a +# SHA1 Fingerprint: 5f:b7:ee:06:33:e2:59:db:ad:0c:4c:9a:e6:d3:8f:1a:61:c7:dc:25 +# SHA256 Fingerprint: 74:31:e5:f4:c3:c1:ce:46:90:77:4f:0b:61:e0:54:40:88:3b:a9:a0:1e:d0:0b:a6:ab:d7:80:6e:d3:b1:18:cf +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIQAqxcJmoLQJuPC3nyrkYldzANBgkqhkiG9w0BAQUFADBs +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSswKQYDVQQDEyJEaWdpQ2VydCBIaWdoIEFzc3VyYW5j +ZSBFViBSb290IENBMB4XDTA2MTExMDAwMDAwMFoXDTMxMTExMDAwMDAwMFowbDEL +MAkGA1UEBhMCVVMxFTATBgNVBAoTDERpZ2lDZXJ0IEluYzEZMBcGA1UECxMQd3d3 +LmRpZ2ljZXJ0LmNvbTErMCkGA1UEAxMiRGlnaUNlcnQgSGlnaCBBc3N1cmFuY2Ug +RVYgUm9vdCBDQTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAMbM5XPm ++9S75S0tMqbf5YE/yc0lSbZxKsPVlDRnogocsF9ppkCxxLeyj9CYpKlBWTrT3JTW +PNt0OKRKzE0lgvdKpVMSOO7zSW1xkX5jtqumX8OkhPhPYlG++MXs2ziS4wblCJEM +xChBVfvLWokVfnHoNb9Ncgk9vjo4UFt3MRuNs8ckRZqnrG0AFFoEt7oT61EKmEFB +Ik5lYYeBQVCmeVyJ3hlKV9Uu5l0cUyx+mM0aBhakaHPQNAQTXKFx01p8VdteZOE3 +hzBWBOURtCmAEvF5OYiiAhF8J2a3iLd48soKqDirCmTCv2ZdlYTBoSUeh10aUAsg +EsxBu24LUTi4S8sCAwEAAaNjMGEwDgYDVR0PAQH/BAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFLE+w2kD+L9HAdSYJhoIAu9jZCvDMB8GA1UdIwQYMBaA +FLE+w2kD+L9HAdSYJhoIAu9jZCvDMA0GCSqGSIb3DQEBBQUAA4IBAQAcGgaX3Nec +nzyIZgYIVyHbIUf4KmeqvxgydkAQV8GK83rZEWWONfqe/EW1ntlMMUu4kehDLI6z +eM7b41N5cdblIZQB2lWHmiRk9opmzN6cN82oNLFpmyPInngiK3BD41VHMWEZ71jF +hS9OMPagMRYjyOfiZRYzy78aG6A9+MpeizGLYAiJLQwGXFK3xPkKmNEVX58Svnw2 +Yzi9RKR/5CYrCsSXaQ3pjOLAEFe4yHYSkVXySGnYvCoCWw9E1CAx2/S6cCZdkGCe +vEsXCS+0yx5DaMkHJ8HSXPfqIbloEpw8nL+e/IBcm2PN7EeqJSdnoDfzAIJ9VNep ++OkuE6N36B9K +-----END CERTIFICATE----- + +# Issuer: CN=DST Root CA X3 O=Digital Signature Trust Co. +# Subject: CN=DST Root CA X3 O=Digital Signature Trust Co. +# Label: "DST Root CA X3" +# Serial: 91299735575339953335919266965803778155 +# MD5 Fingerprint: 41:03:52:dc:0f:f7:50:1b:16:f0:02:8e:ba:6f:45:c5 +# SHA1 Fingerprint: da:c9:02:4f:54:d8:f6:df:94:93:5f:b1:73:26:38:ca:6a:d7:7c:13 +# SHA256 Fingerprint: 06:87:26:03:31:a7:24:03:d9:09:f1:05:e6:9b:cf:0d:32:e1:bd:24:93:ff:c6:d9:20:6d:11:bc:d6:77:07:39 +-----BEGIN CERTIFICATE----- +MIIDSjCCAjKgAwIBAgIQRK+wgNajJ7qJMDmGLvhAazANBgkqhkiG9w0BAQUFADA/ +MSQwIgYDVQQKExtEaWdpdGFsIFNpZ25hdHVyZSBUcnVzdCBDby4xFzAVBgNVBAMT +DkRTVCBSb290IENBIFgzMB4XDTAwMDkzMDIxMTIxOVoXDTIxMDkzMDE0MDExNVow +PzEkMCIGA1UEChMbRGlnaXRhbCBTaWduYXR1cmUgVHJ1c3QgQ28uMRcwFQYDVQQD +Ew5EU1QgUm9vdCBDQSBYMzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEB +AN+v6ZdQCINXtMxiZfaQguzH0yxrMMpb7NnDfcdAwRgUi+DoM3ZJKuM/IUmTrE4O +rz5Iy2Xu/NMhD2XSKtkyj4zl93ewEnu1lcCJo6m67XMuegwGMoOifooUMM0RoOEq +OLl5CjH9UL2AZd+3UWODyOKIYepLYYHsUmu5ouJLGiifSKOeDNoJjj4XLh7dIN9b +xiqKqy69cK3FCxolkHRyxXtqqzTWMIn/5WgTe1QLyNau7Fqckh49ZLOMxt+/yUFw +7BZy1SbsOFU5Q9D8/RhcQPGX69Wam40dutolucbY38EVAjqr2m7xPi71XAicPNaD +aeQQmxkqtilX4+U9m5/wAl0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNV +HQ8BAf8EBAMCAQYwHQYDVR0OBBYEFMSnsaR7LHH62+FLkHX/xBVghYkQMA0GCSqG +SIb3DQEBBQUAA4IBAQCjGiybFwBcqR7uKGY3Or+Dxz9LwwmglSBd49lZRNI+DT69 +ikugdB/OEIKcdBodfpga3csTS7MgROSR6cz8faXbauX+5v3gTt23ADq1cEmv8uXr +AvHRAosZy5Q6XkjEGB5YGV8eAlrwDPGxrancWYaLbumR9YbK+rlmM6pZW87ipxZz +R8srzJmwN0jP41ZL9c8PDHIyh8bwRLtTcm1D9SZImlJnt1ir/md2cXjbDaJWFBM5 +JDGFoqgCWjBH4d1QB7wCCZAA62RjYJsWvIjJEubSfZGL+T0yjWW06XyxV3bqxbYo +Ob8VZRzI9neWagqNdwvYkQsEjgfbKbYK7p2CNTUQ +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Gold CA - G2 O=SwissSign AG +# Label: "SwissSign Gold CA - G2" +# Serial: 13492815561806991280 +# MD5 Fingerprint: 24:77:d9:a8:91:d1:3b:fa:88:2d:c2:ff:f8:cd:33:93 +# SHA1 Fingerprint: d8:c5:38:8a:b7:30:1b:1b:6e:d4:7a:e6:45:25:3a:6f:9f:1a:27:61 +# SHA256 Fingerprint: 62:dd:0b:e9:b9:f5:0a:16:3e:a0:f8:e7:5c:05:3b:1e:ca:57:ea:55:c8:68:8f:64:7c:68:81:f2:c8:35:7b:95 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Subject: CN=SwissSign Silver CA - G2 O=SwissSign AG +# Label: "SwissSign Silver CA - G2" +# Serial: 5700383053117599563 +# MD5 Fingerprint: e0:06:a1:c9:7d:cf:c9:fc:0d:c0:56:75:96:d8:62:13 +# SHA1 Fingerprint: 9b:aa:e5:9f:56:ee:21:cb:43:5a:be:25:93:df:a7:f0:40:d1:1d:cb +# SHA256 Fingerprint: be:6c:4d:a2:bb:b9:ba:59:b6:f3:93:97:68:37:42:46:c3:c0:05:99:3f:a9:8f:02:0d:1d:ed:be:d4:8a:81:d5 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=SecureTrust CA O=SecureTrust Corporation +# Subject: CN=SecureTrust CA O=SecureTrust Corporation +# Label: "SecureTrust CA" +# Serial: 17199774589125277788362757014266862032 +# MD5 Fingerprint: dc:32:c3:a7:6d:25:57:c7:68:09:9d:ea:2d:a9:a2:d1 +# SHA1 Fingerprint: 87:82:c6:c3:04:35:3b:cf:d2:96:92:d2:59:3e:7d:44:d9:34:ff:11 +# SHA256 Fingerprint: f1:c1:b5:0a:e5:a2:0d:d8:03:0e:c9:f6:bc:24:82:3d:d3:67:b5:25:57:59:b4:e7:1b:61:fc:e9:f7:37:5d:73 +-----BEGIN CERTIFICATE----- +MIIDuDCCAqCgAwIBAgIQDPCOXAgWpa1Cf/DrJxhZ0DANBgkqhkiG9w0BAQUFADBI +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +FzAVBgNVBAMTDlNlY3VyZVRydXN0IENBMB4XDTA2MTEwNzE5MzExOFoXDTI5MTIz +MTE5NDA1NVowSDELMAkGA1UEBhMCVVMxIDAeBgNVBAoTF1NlY3VyZVRydXN0IENv +cnBvcmF0aW9uMRcwFQYDVQQDEw5TZWN1cmVUcnVzdCBDQTCCASIwDQYJKoZIhvcN +AQEBBQADggEPADCCAQoCggEBAKukgeWVzfX2FI7CT8rU4niVWJxB4Q2ZQCQXOZEz +Zum+4YOvYlyJ0fwkW2Gz4BERQRwdbvC4u/jep4G6pkjGnx29vo6pQT64lO0pGtSO +0gMdA+9tDWccV9cGrcrI9f4Or2YlSASWC12juhbDCE/RRvgUXPLIXgGZbf2IzIao +wW8xQmxSPmjL8xk037uHGFaAJsTQ3MBv396gwpEWoGQRS0S8Hvbn+mPeZqx2pHGj +7DaUaHp3pLHnDi+BeuK1cobvomuL8A/b01k/unK8RCSc43Oz969XL0Imnal0ugBS +8kvNU3xHCzaFDmapCJcWNFfBZveA4+1wVMeT4C4oFVmHursCAwEAAaOBnTCBmjAT +BgkrBgEEAYI3FAIEBh4EAEMAQTALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQUQjK2FvoE/f5dS3rD/fdMQB1aQ68wNAYDVR0fBC0wKzApoCeg +JYYjaHR0cDovL2NybC5zZWN1cmV0cnVzdC5jb20vU1RDQS5jcmwwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEFBQADggEBADDtT0rhWDpSclu1pqNlGKa7UTt3 +6Z3q059c4EVlew3KW+JwULKUBRSuSceNQQcSc5R+DCMh/bwQf2AQWnL1mA6s7Ll/ +3XpvXdMc9P+IBWlCqQVxyLesJugutIxq/3HcuLHfmbx8IVQr5Fiiu1cprp6poxkm +D5kuCLDv/WnPmRoJjeOnnyvJNjR7JLN4TJUXpAYmHrZkUjZfYGfZnMUFdAvnZyPS +CPyI6a6Lf+Ew9Dd+/cYy2i2eRDAwbO4H3tI0/NL/QPZL9GZGBlSm8jIKYyYwa5vR +3ItHuuG51WLQoqD0ZwV4KWMabwTW+MZMo5qxN7SN5ShLHZ4swrhovO0C7jE= +-----END CERTIFICATE----- + +# Issuer: CN=Secure Global CA O=SecureTrust Corporation +# Subject: CN=Secure Global CA O=SecureTrust Corporation +# Label: "Secure Global CA" +# Serial: 9751836167731051554232119481456978597 +# MD5 Fingerprint: cf:f4:27:0d:d4:ed:dc:65:16:49:6d:3d:da:bf:6e:de +# SHA1 Fingerprint: 3a:44:73:5a:e5:81:90:1f:24:86:61:46:1e:3b:9c:c4:5f:f5:3a:1b +# SHA256 Fingerprint: 42:00:f5:04:3a:c8:59:0e:bb:52:7d:20:9e:d1:50:30:29:fb:cb:d4:1c:a1:b5:06:ec:27:f1:5a:de:7d:ac:69 +-----BEGIN CERTIFICATE----- +MIIDvDCCAqSgAwIBAgIQB1YipOjUiolN9BPI8PjqpTANBgkqhkiG9w0BAQUFADBK +MQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3QgQ29ycG9yYXRpb24x +GTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwHhcNMDYxMTA3MTk0MjI4WhcNMjkx +MjMxMTk1MjA2WjBKMQswCQYDVQQGEwJVUzEgMB4GA1UEChMXU2VjdXJlVHJ1c3Qg +Q29ycG9yYXRpb24xGTAXBgNVBAMTEFNlY3VyZSBHbG9iYWwgQ0EwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCvNS7YrGxVaQZx5RNoJLNP2MwhR/jxYDiJ +iQPpvepeRlMJ3Fz1Wuj3RSoC6zFh1ykzTM7HfAo3fg+6MpjhHZevj8fcyTiW89sa +/FHtaMbQbqR8JNGuQsiWUGMu4P51/pinX0kuleM5M2SOHqRfkNJnPLLZ/kG5VacJ +jnIFHovdRIWCQtBJwB1g8NEXLJXr9qXBkqPFwqcIYA1gBBCWeZ4WNOaptvolRTnI +HmX5k/Wq8VLcmZg9pYYaDDUz+kulBAYVHDGA76oYa8J719rO+TMg1fW9ajMtgQT7 +sFzUnKPiXB3jqUJ1XnvUd+85VLrJChgbEplJL4hL/VBi0XPnj3pDAgMBAAGjgZ0w +gZowEwYJKwYBBAGCNxQCBAYeBABDAEEwCwYDVR0PBAQDAgGGMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFK9EBMJBfkiD2045AuzshHrmzsmkMDQGA1UdHwQtMCsw +KaAnoCWGI2h0dHA6Ly9jcmwuc2VjdXJldHJ1c3QuY29tL1NHQ0EuY3JsMBAGCSsG +AQQBgjcVAQQDAgEAMA0GCSqGSIb3DQEBBQUAA4IBAQBjGghAfaReUw132HquHw0L +URYD7xh8yOOvaliTFGCRsoTciE6+OYo68+aCiV0BN7OrJKQVDpI1WkpEXk5X+nXO +H0jOZvQ8QCaSmGwb7iRGDBezUqXbpZGRzzfTb+cnCDpOGR86p1hcF895P4vkp9Mm +I50mD1hp/Ed+stCNi5O/KU9DaXR2Z0vPB4zmAve14bRDtUstFJ/53CYNv6ZHdAbY +iNE6KTCEztI5gGIbqMdXSbxqVVFnFUq+NQfk1XWYN3kwFNspnWzFacxHVaIw98xc +f8LDmBxrThaA63p4ZUWiABqvDA1VZDRIuJK58bRQKfJPIx/abKwfROHdI3hRW8cW +-----END CERTIFICATE----- + +# Issuer: CN=COMODO Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO Certification Authority O=COMODO CA Limited +# Label: "COMODO Certification Authority" +# Serial: 104350513648249232941998508985834464573 +# MD5 Fingerprint: 5c:48:dc:f7:42:72:ec:56:94:6d:1c:cc:71:35:80:75 +# SHA1 Fingerprint: 66:31:bf:9e:f7:4f:9e:b6:c9:d5:a6:0c:ba:6a:be:d1:f7:bd:ef:7b +# SHA256 Fingerprint: 0c:2c:d6:3d:f7:80:6f:a3:99:ed:e8:09:11:6b:57:5b:f8:79:89:f0:65:18:f9:80:8c:86:05:03:17:8b:af:66 +-----BEGIN CERTIFICATE----- +MIIEHTCCAwWgAwIBAgIQToEtioJl4AsC7j41AkblPTANBgkqhkiG9w0BAQUFADCB +gTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxJzAlBgNV +BAMTHkNPTU9ETyBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0wNjEyMDEwMDAw +MDBaFw0yOTEyMzEyMzU5NTlaMIGBMQswCQYDVQQGEwJHQjEbMBkGA1UECBMSR3Jl +YXRlciBNYW5jaGVzdGVyMRAwDgYDVQQHEwdTYWxmb3JkMRowGAYDVQQKExFDT01P +RE8gQ0EgTGltaXRlZDEnMCUGA1UEAxMeQ09NT0RPIENlcnRpZmljYXRpb24gQXV0 +aG9yaXR5MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA0ECLi3LjkRv3 +UcEbVASY06m/weaKXTuH+7uIzg3jLz8GlvCiKVCZrts7oVewdFFxze1CkU1B/qnI +2GqGd0S7WWaXUF601CxwRM/aN5VCaTwwxHGzUvAhTaHYujl8HJ6jJJ3ygxaYqhZ8 +Q5sVW7euNJH+1GImGEaaP+vB+fGQV+useg2L23IwambV4EajcNxo2f8ESIl33rXp ++2dtQem8Ob0y2WIC8bGoPW43nOIv4tOiJovGuFVDiOEjPqXSJDlqR6sA1KGzqSX+ +DT+nHbrTUcELpNqsOO9VUCQFZUaTNE8tja3G1CEZ0o7KBWFxB3NH5YoZEr0ETc5O +nKVIrLsm9wIDAQABo4GOMIGLMB0GA1UdDgQWBBQLWOWLxkwVN6RAqTCpIb5HNlpW +/zAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zBJBgNVHR8EQjBAMD6g +PKA6hjhodHRwOi8vY3JsLmNvbW9kb2NhLmNvbS9DT01PRE9DZXJ0aWZpY2F0aW9u +QXV0aG9yaXR5LmNybDANBgkqhkiG9w0BAQUFAAOCAQEAPpiem/Yb6dc5t3iuHXIY +SdOH5EOC6z/JqvWote9VfCFSZfnVDeFs9D6Mk3ORLgLETgdxb8CPOGEIqB6BCsAv +IC9Bi5HcSEW88cbeunZrM8gALTFGTO3nnc+IlP8zwFboJIYmuNg4ON8qa90SzMc/ +RxdMosIGlgnW2/4/PEZB31jiVg88O8EckzXZOFKs7sjsLjBOlDW0JB9LeGna8gI4 +zJVSk/BwJVmcIGfE7vmLV2H0knZ9P4SNVbfo5azV8fUZVqZa+5Acr5Pr5RzUZ5dd +BA6+C4OmF4O5MBKgxTMVBbkN+8cFduPYSo38NBejxiEovjBFMR7HeL5YYTisO+IB +ZQ== +-----END CERTIFICATE----- + +# Issuer: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C. +# Subject: CN=Network Solutions Certificate Authority O=Network Solutions L.L.C. +# Label: "Network Solutions Certificate Authority" +# Serial: 116697915152937497490437556386812487904 +# MD5 Fingerprint: d3:f3:a6:16:c0:fa:6b:1d:59:b1:2d:96:4d:0e:11:2e +# SHA1 Fingerprint: 74:f8:a3:c3:ef:e7:b3:90:06:4b:83:90:3c:21:64:60:20:e5:df:ce +# SHA256 Fingerprint: 15:f0:ba:00:a3:ac:7a:f3:ac:88:4c:07:2b:10:11:a0:77:bd:77:c0:97:f4:01:64:b2:f8:59:8a:bd:83:86:0c +-----BEGIN CERTIFICATE----- +MIID5jCCAs6gAwIBAgIQV8szb8JcFuZHFhfjkDFo4DANBgkqhkiG9w0BAQUFADBi +MQswCQYDVQQGEwJVUzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMu +MTAwLgYDVQQDEydOZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3Jp +dHkwHhcNMDYxMjAxMDAwMDAwWhcNMjkxMjMxMjM1OTU5WjBiMQswCQYDVQQGEwJV +UzEhMB8GA1UEChMYTmV0d29yayBTb2x1dGlvbnMgTC5MLkMuMTAwLgYDVQQDEydO +ZXR3b3JrIFNvbHV0aW9ucyBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkwggEiMA0GCSqG +SIb3DQEBAQUAA4IBDwAwggEKAoIBAQDkvH6SMG3G2I4rC7xGzuAnlt7e+foS0zwz +c7MEL7xxjOWftiJgPl9dzgn/ggwbmlFQGiaJ3dVhXRncEg8tCqJDXRfQNJIg6nPP +OCwGJgl6cvf6UDL4wpPTaaIjzkGxzOTVHzbRijr4jGPiFFlp7Q3Tf2vouAPlT2rl +mGNpSAW+Lv8ztumXWWn4Zxmuk2GWRBXTcrA/vGp97Eh/jcOrqnErU2lBUzS1sLnF +BgrEsEX1QV1uiUV7PTsmjHTC5dLRfbIR1PtYMiKagMnc/Qzpf14Dl847ABSHJ3A4 +qY5usyd2mFHgBeMhqxrVhSI8KbWaFsWAqPS7azCPL0YCorEMIuDTAgMBAAGjgZcw +gZQwHQYDVR0OBBYEFCEwyfsA106Y2oeqKtCnLrFAMadMMA4GA1UdDwEB/wQEAwIB +BjAPBgNVHRMBAf8EBTADAQH/MFIGA1UdHwRLMEkwR6BFoEOGQWh0dHA6Ly9jcmwu +bmV0c29sc3NsLmNvbS9OZXR3b3JrU29sdXRpb25zQ2VydGlmaWNhdGVBdXRob3Jp +dHkuY3JsMA0GCSqGSIb3DQEBBQUAA4IBAQC7rkvnt1frf6ott3NHhWrB5KUd5Oc8 +6fRZZXe1eltajSU24HqXLjjAV2CDmAaDn7l2em5Q4LqILPxFzBiwmZVRDuwduIj/ +h1AcgsLj4DKAv6ALR8jDMe+ZZzKATxcheQxpXN5eNK4CtSbqUN9/GGUsyfJj4akH +/nxxH2szJGoeBfcFaMBqEssuXmHLrijTfsK0ZpEmXzwuJF/LWA/rKOyvEZbz3Htv +wKeI8lN3s2Berq4o2jUsbzRF0ybh3uxbTydrFny9RAQYgrOJeRcQcT16ohZO9QHN +pGxlaKFJdlxDydi8NmdspZS11My5vWo1ViHe2MPr+8ukYEywVaCge1ey +-----END CERTIFICATE----- + +# Issuer: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO ECC Certification Authority O=COMODO CA Limited +# Label: "COMODO ECC Certification Authority" +# Serial: 41578283867086692638256921589707938090 +# MD5 Fingerprint: 7c:62:ff:74:9d:31:53:5e:68:4a:d5:78:aa:1e:bf:23 +# SHA1 Fingerprint: 9f:74:4e:9f:2b:4d:ba:ec:0f:31:2c:50:b6:56:3b:8e:2d:93:c3:11 +# SHA256 Fingerprint: 17:93:92:7a:06:14:54:97:89:ad:ce:2f:8f:34:f7:f0:b6:6d:0f:3a:e3:a3:b8:4d:21:ec:15:db:ba:4f:ad:c7 +-----BEGIN CERTIFICATE----- +MIICiTCCAg+gAwIBAgIQH0evqmIAcFBUTAGem2OZKjAKBggqhkjOPQQDAzCBhTEL +MAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UE +BxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMT +IkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwMzA2MDAw +MDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdy +ZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09N +T0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBFQ0MgQ2VydGlmaWNhdGlv +biBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQDR3svdcmCFYX7deSR +FtSrYpn1PlILBs5BAH+X4QokPB0BBO490o0JlwzgdeT6+3eKKvUDYEs2ixYjFq0J +cfRK9ChQtP6IHG4/bC8vCVlbpVsLM5niwz2J+Wos77LTBumjQjBAMB0GA1UdDgQW +BBR1cacZSBm8nZ3qQUfflMRId5nTeTAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjEA7wNbeqy3eApyt4jf/7VGFAkK+qDm +fQjGGoe9GKhzvSbKYAydzpmfz1wPMOG+FDHqAjAU9JM8SaczepBGR7NjfRObTrdv +GDeAU/7dIOA1mjbRxwG55tzd8/8dLDoWV9mSOdY= +-----END CERTIFICATE----- + +# Issuer: CN=Certigna O=Dhimyotis +# Subject: CN=Certigna O=Dhimyotis +# Label: "Certigna" +# Serial: 18364802974209362175 +# MD5 Fingerprint: ab:57:a6:5b:7d:42:82:19:b5:d8:58:26:28:5e:fd:ff +# SHA1 Fingerprint: b1:2e:13:63:45:86:a4:6f:1a:b2:60:68:37:58:2d:c4:ac:fd:94:97 +# SHA256 Fingerprint: e3:b6:a2:db:2e:d7:ce:48:84:2f:7a:c5:32:41:c7:b7:1d:54:14:4b:fb:40:c1:1f:3f:1d:0b:42:f5:ee:a1:2d +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAP7c4wEPyUj/MA0GCSqGSIb3DQEBBQUAMDQxCzAJBgNV +BAYTAkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hMB4X +DTA3MDYyOTE1MTMwNVoXDTI3MDYyOTE1MTMwNVowNDELMAkGA1UEBhMCRlIxEjAQ +BgNVBAoMCURoaW15b3RpczERMA8GA1UEAwwIQ2VydGlnbmEwggEiMA0GCSqGSIb3 +DQEBAQUAA4IBDwAwggEKAoIBAQDIaPHJ1tazNHUmgh7stL7qXOEm7RFHYeGifBZ4 +QCHkYJ5ayGPhxLGWkv8YbWkj4Sti993iNi+RB7lIzw7sebYs5zRLcAglozyHGxny +gQcPOJAZ0xH+hrTy0V4eHpbNgGzOOzGTtvKg0KmVEn2lmsxryIRWijOp5yIVUxbw +zBfsV1/pogqYCd7jX5xv3EjjhQsVWqa6n6xI4wmy9/Qy3l40vhx4XUJbzg4ij02Q +130yGLMLLGq/jj8UEYkgDncUtT2UCIf3JR7VsmAA7G8qKCVuKj4YYxclPz5EIBb2 +JsglrgVKtOdjLPOMFlN+XPsRGgjBRmKfIrjxwo1p3Po6WAbfAgMBAAGjgbwwgbkw +DwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUGu3+QTmQtCRZvgHyUtVF9lo53BEw +ZAYDVR0jBF0wW4AUGu3+QTmQtCRZvgHyUtVF9lo53BGhOKQ2MDQxCzAJBgNVBAYT +AkZSMRIwEAYDVQQKDAlEaGlteW90aXMxETAPBgNVBAMMCENlcnRpZ25hggkA/tzj +AQ/JSP8wDgYDVR0PAQH/BAQDAgEGMBEGCWCGSAGG+EIBAQQEAwIABzANBgkqhkiG +9w0BAQUFAAOCAQEAhQMeknH2Qq/ho2Ge6/PAD/Kl1NqV5ta+aDY9fm4fTIrv0Q8h +bV6lUmPOEvjvKtpv6zf+EwLHyzs+ImvaYS5/1HI93TDhHkxAGYwP15zRgzB7mFnc +fca5DClMoTOi62c6ZYTTluLtdkVwj7Ur3vkj1kluPBS1xp81HlDQwY9qcEQCYsuu +HWhBp6pX6FOqB9IG9tUUBguRA3UsbHK1YZWaDYu5Def131TN3ubY1gkIl2PlwS6w +t0QmwCbAr1UwnjvVNioZBPRcHv/PLLf/0P2HQBHVESO7SMAhqaQoLf0V+LBOK/Qw +WyH8EZE0vkHve52Xdf+XlcCWWC/qu0bXu+TZLg== +-----END CERTIFICATE----- + +# Issuer: CN=Cybertrust Global Root O=Cybertrust, Inc +# Subject: CN=Cybertrust Global Root O=Cybertrust, Inc +# Label: "Cybertrust Global Root" +# Serial: 4835703278459682877484360 +# MD5 Fingerprint: 72:e4:4a:87:e3:69:40:80:77:ea:bc:e3:f4:ff:f0:e1 +# SHA1 Fingerprint: 5f:43:e5:b1:bf:f8:78:8c:ac:1c:c7:ca:4a:9a:c6:22:2b:cc:34:c6 +# SHA256 Fingerprint: 96:0a:df:00:63:e9:63:56:75:0c:29:65:dd:0a:08:67:da:0b:9c:bd:6e:77:71:4a:ea:fb:23:49:ab:39:3d:a3 +-----BEGIN CERTIFICATE----- +MIIDoTCCAomgAwIBAgILBAAAAAABD4WqLUgwDQYJKoZIhvcNAQEFBQAwOzEYMBYG +A1UEChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2Jh +bCBSb290MB4XDTA2MTIxNTA4MDAwMFoXDTIxMTIxNTA4MDAwMFowOzEYMBYGA1UE +ChMPQ3liZXJ0cnVzdCwgSW5jMR8wHQYDVQQDExZDeWJlcnRydXN0IEdsb2JhbCBS +b290MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA+Mi8vRRQZhP/8NN5 +7CPytxrHjoXxEnOmGaoQ25yiZXRadz5RfVb23CO21O1fWLE3TdVJDm71aofW0ozS +J8bi/zafmGWgE07GKmSb1ZASzxQG9Dvj1Ci+6A74q05IlG2OlTEQXO2iLb3VOm2y +HLtgwEZLAfVJrn5GitB0jaEMAs7u/OePuGtm839EAL9mJRQr3RAwHQeWP032a7iP +t3sMpTjr3kfb1V05/Iin89cqdPHoWqI7n1C6poxFNcJQZZXcY4Lv3b93TZxiyWNz +FtApD0mpSPCzqrdsxacwOUBdrsTiXSZT8M4cIwhhqJQZugRiQOwfOHB3EgZxpzAY +XSUnpQIDAQABo4GlMIGiMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/ +MB0GA1UdDgQWBBS2CHsNesysIEyGVjJez6tuhS1wVzA/BgNVHR8EODA2MDSgMqAw +hi5odHRwOi8vd3d3Mi5wdWJsaWMtdHJ1c3QuY29tL2NybC9jdC9jdHJvb3QuY3Js +MB8GA1UdIwQYMBaAFLYIew16zKwgTIZWMl7Pq26FLXBXMA0GCSqGSIb3DQEBBQUA +A4IBAQBW7wojoFROlZfJ+InaRcHUowAl9B8Tq7ejhVhpwjCt2BWKLePJzYFa+HMj +Wqd8BfP9IjsO0QbE2zZMcwSO5bAi5MXzLqXZI+O4Tkogp24CJJ8iYGd7ix1yCcUx +XOl5n4BHPa2hCwcUPUf/A2kaDAtE52Mlp3+yybh2hO0j9n0Hq0V+09+zv+mKts2o +omcrUtW3ZfA5TGOgkXmTUg9U3YO7n9GPp1Nzw8v/MOx8BLjYRB+TX3EJIrduPuoc +A06dGiBh+4E37F78CkWr1+cXVdCg6mCbpvbjjFspwgZgFJ0tl0ypkxWdYcQBX0jW +WL1WMRJOEcgh4LMRkWXbtKaIOM5V +-----END CERTIFICATE----- + +# Issuer: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Subject: O=Chunghwa Telecom Co., Ltd. OU=ePKI Root Certification Authority +# Label: "ePKI Root Certification Authority" +# Serial: 28956088682735189655030529057352760477 +# MD5 Fingerprint: 1b:2e:00:ca:26:06:90:3d:ad:fe:6f:15:68:d3:6b:b3 +# SHA1 Fingerprint: 67:65:0d:f1:7e:8e:7e:5b:82:40:a4:f4:56:4b:cf:e2:3d:69:c6:f0 +# SHA256 Fingerprint: c0:a6:f4:dc:63:a2:4b:fd:cf:54:ef:2a:6a:08:2a:0a:72:de:35:80:3e:2f:f5:ff:52:7a:e5:d8:72:06:df:d5 +-----BEGIN CERTIFICATE----- +MIIFsDCCA5igAwIBAgIQFci9ZUdcr7iXAF7kBtK8nTANBgkqhkiG9w0BAQUFADBe +MQswCQYDVQQGEwJUVzEjMCEGA1UECgwaQ2h1bmdod2EgVGVsZWNvbSBDby4sIEx0 +ZC4xKjAoBgNVBAsMIWVQS0kgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAe +Fw0wNDEyMjAwMjMxMjdaFw0zNDEyMjAwMjMxMjdaMF4xCzAJBgNVBAYTAlRXMSMw +IQYDVQQKDBpDaHVuZ2h3YSBUZWxlY29tIENvLiwgTHRkLjEqMCgGA1UECwwhZVBL +SSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5MIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA4SUP7o3biDN1Z82tH306Tm2d0y8U82N0ywEhajfqhFAH +SyZbCUNsIZ5qyNUD9WBpj8zwIuQf5/dqIjG3LBXy4P4AakP/h2XGtRrBp0xtInAh +ijHyl3SJCRImHJ7K2RKilTza6We/CKBk49ZCt0Xvl/T29de1ShUCWH2YWEtgvM3X +DZoTM1PRYfl61dd4s5oz9wCGzh1NlDivqOx4UXCKXBCDUSH3ET00hl7lSM2XgYI1 +TBnsZfZrxQWh7kcT1rMhJ5QQCtkkO7q+RBNGMD+XPNjX12ruOzjjK9SXDrkb5wdJ +fzcq+Xd4z1TtW0ado4AOkUPB1ltfFLqfpo0kR0BZv3I4sjZsN/+Z0V0OWQqraffA +sgRFelQArr5T9rXn4fg8ozHSqf4hUmTFpmfwdQcGlBSBVcYn5AGPF8Fqcde+S/uU +WH1+ETOxQvdibBjWzwloPn9s9h6PYq2lY9sJpx8iQkEeb5mKPtf5P0B6ebClAZLS +nT0IFaUQAS2zMnaolQ2zepr7BxB4EW/hj8e6DyUadCrlHJhBmd8hh+iVBmoKs2pH +dmX2Os+PYhcZewoozRrSgx4hxyy/vv9haLdnG7t4TY3OZ+XkwY63I2binZB1NJip +NiuKmpS5nezMirH4JYlcWrYvjB9teSSnUmjDhDXiZo1jDiVN1Rmy5nk3pyKdVDEC +AwEAAaNqMGgwHQYDVR0OBBYEFB4M97Zn8uGSJglFwFU5Lnc/QkqiMAwGA1UdEwQF +MAMBAf8wOQYEZyoHAAQxMC8wLQIBADAJBgUrDgMCGgUAMAcGBWcqAwAABBRFsMLH +ClZ87lt4DJX5GFPBphzYEDANBgkqhkiG9w0BAQUFAAOCAgEACbODU1kBPpVJufGB +uvl2ICO1J2B01GqZNF5sAFPZn/KmsSQHRGoqxqWOeBLoR9lYGxMqXnmbnwoqZ6Yl +PwZpVnPDimZI+ymBV3QGypzqKOg4ZyYr8dW1P2WT+DZdjo2NQCCHGervJ8A9tDkP +JXtoUHRVnAxZfVo9QZQlUgjgRywVMRnVvwdVxrsStZf0X4OFunHB2WyBEXYKCrC/ +gpf36j36+uwtqSiUO1bd0lEursC9CBWMd1I0ltabrNMdjmEPNXubrjlpC2JgQCA2 +j6/7Nu4tCEoduL+bXPjqpRugc6bY+G7gMwRfaKonh+3ZwZCc7b3jajWvY9+rGNm6 +5ulK6lCKD2GTHuItGeIwlDWSXQ62B68ZgI9HkFFLLk3dheLSClIKF5r8GrBQAuUB +o2M3IUxExJtRmREOc5wGj1QupyheRDmHVi03vYVElOEMSyycw5KFNGHLD7ibSkNS +/jQ6fbjpKdx2qcgw+BRxgMYeNkh0IkFch4LoGHGLQYlE535YW6i4jRPpp2zDR+2z +Gp1iro2C6pSe3VkQw63d4k3jMdXH7OjysP6SHhYKGvzZ8/gntsm+HbRsZJB/9OTE +W9c3rkIO3aQab3yIVMUWbuF6aC74Or8NpDyJO3inTmODBCEIZ43ygknQW/2xzQ+D +hNQ+IIX3Sj0rnP0qCglN6oH4EZw= +-----END CERTIFICATE----- + +# Issuer: O=certSIGN OU=certSIGN ROOT CA +# Subject: O=certSIGN OU=certSIGN ROOT CA +# Label: "certSIGN ROOT CA" +# Serial: 35210227249154 +# MD5 Fingerprint: 18:98:c0:d6:e9:3a:fc:f9:b0:f5:0c:f7:4b:01:44:17 +# SHA1 Fingerprint: fa:b7:ee:36:97:26:62:fb:2d:b0:2a:f6:bf:03:fd:e8:7c:4b:2f:9b +# SHA256 Fingerprint: ea:a9:62:c4:fa:4a:6b:af:eb:e4:15:19:6d:35:1c:cd:88:8d:4f:53:f3:fa:8a:e6:d7:c4:66:a9:4e:60:42:bb +-----BEGIN CERTIFICATE----- +MIIDODCCAiCgAwIBAgIGIAYFFnACMA0GCSqGSIb3DQEBBQUAMDsxCzAJBgNVBAYT +AlJPMREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBD +QTAeFw0wNjA3MDQxNzIwMDRaFw0zMTA3MDQxNzIwMDRaMDsxCzAJBgNVBAYTAlJP +MREwDwYDVQQKEwhjZXJ0U0lHTjEZMBcGA1UECxMQY2VydFNJR04gUk9PVCBDQTCC +ASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALczuX7IJUqOtdu0KBuqV5Do +0SLTZLrTk+jUrIZhQGpgV2hUhE28alQCBf/fm5oqrl0Hj0rDKH/v+yv6efHHrfAQ +UySQi2bJqIirr1qjAOm+ukbuW3N7LBeCgV5iLKECZbO9xSsAfsT8AzNXDe3i+s5d +RdY4zTW2ssHQnIFKquSyAVwdj1+ZxLGt24gh65AIgoDzMKND5pCCrlUoSe1b16kQ +OA7+j0xbm0bqQfWwCHTD0IgztnzXdN/chNFDDnU5oSVAKOp4yw4sLjmdjItuFhwv +JoIQ4uNllAoEwF73XVv4EOLQunpL+943AAAaWyjj0pxzPjKHmKHJUS/X3qwzs08C +AwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAcYwHQYDVR0O +BBYEFOCMm9slSbPxfIbWskKHC9BroNnkMA0GCSqGSIb3DQEBBQUAA4IBAQA+0hyJ +LjX8+HXd5n9liPRyTMks1zJO890ZeUe9jjtbkw9QSSQTaxQGcu8J06Gh40CEyecY +MnQ8SG4Pn0vU9x7Tk4ZkVJdjclDVVc/6IJMCopvDI5NOFlV2oHB5bc0hH88vLbwZ +44gx+FkagQnIl6Z0x2DEW8xXjrJ1/RsCCdtZb3KTafcxQdaIOL+Hsr0Wefmq5L6I +Jd1hJyMctTEHBDa0GpC9oHRxUIltvBTjD4au8as+x6AJzKNI0eDbZOeStc+vckNw +i/nDhDwTqn6Sm1dTk/pwwpEOMfmbZ13pljheX7NzTogVZ96edhBiIL5VaZVDADlN +9u6wWk5JRFRYX0KD +-----END CERTIFICATE----- + +# Issuer: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Subject: CN=NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny O=NetLock Kft. OU=Tan\xfas\xedtv\xe1nykiad\xf3k (Certification Services) +# Label: "NetLock Arany (Class Gold) F\u0151tan\xfas\xedtv\xe1ny" +# Serial: 80544274841616 +# MD5 Fingerprint: c5:a1:b7:ff:73:dd:d6:d7:34:32:18:df:fc:3c:ad:88 +# SHA1 Fingerprint: 06:08:3f:59:3f:15:a1:04:a0:69:a4:6b:a9:03:d0:06:b7:97:09:91 +# SHA256 Fingerprint: 6c:61:da:c3:a2:de:f0:31:50:6b:e0:36:d2:a6:fe:40:19:94:fb:d1:3d:f9:c8:d4:66:59:92:74:c4:46:ec:98 +-----BEGIN CERTIFICATE----- +MIIEFTCCAv2gAwIBAgIGSUEs5AAQMA0GCSqGSIb3DQEBCwUAMIGnMQswCQYDVQQG +EwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFTATBgNVBAoMDE5ldExvY2sgS2Z0LjE3 +MDUGA1UECwwuVGFuw7pzw610dsOhbnlraWFkw7NrIChDZXJ0aWZpY2F0aW9uIFNl +cnZpY2VzKTE1MDMGA1UEAwwsTmV0TG9jayBBcmFueSAoQ2xhc3MgR29sZCkgRsWR +dGFuw7pzw610dsOhbnkwHhcNMDgxMjExMTUwODIxWhcNMjgxMjA2MTUwODIxWjCB +pzELMAkGA1UEBhMCSFUxETAPBgNVBAcMCEJ1ZGFwZXN0MRUwEwYDVQQKDAxOZXRM +b2NrIEtmdC4xNzA1BgNVBAsMLlRhbsO6c8OtdHbDoW55a2lhZMOzayAoQ2VydGlm +aWNhdGlvbiBTZXJ2aWNlcykxNTAzBgNVBAMMLE5ldExvY2sgQXJhbnkgKENsYXNz +IEdvbGQpIEbFkXRhbsO6c8OtdHbDoW55MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8A +MIIBCgKCAQEAxCRec75LbRTDofTjl5Bu0jBFHjzuZ9lk4BqKf8owyoPjIMHj9DrT +lF8afFttvzBPhCf2nx9JvMaZCpDyD/V/Q4Q3Y1GLeqVw/HpYzY6b7cNGbIRwXdrz +AZAj/E4wqX7hJ2Pn7WQ8oLjJM2P+FpD/sLj916jAwJRDC7bVWaaeVtAkH3B5r9s5 +VA1lddkVQZQBr17s9o3x/61k/iCa11zr/qYfCGSji3ZVrR47KGAuhyXoqq8fxmRG +ILdwfzzeSNuWU7c5d+Qa4scWhHaXWy+7GRWF+GmF9ZmnqfI0p6m2pgP8b4Y9VHx2 +BJtr+UBdADTHLpl1neWIA6pN+APSQnbAGwIDAKiLo0UwQzASBgNVHRMBAf8ECDAG +AQH/AgEEMA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUzPpnk/C2uNClwB7zU/2M +U9+D15YwDQYJKoZIhvcNAQELBQADggEBAKt/7hwWqZw8UQCgwBEIBaeZ5m8BiFRh +bvG5GK1Krf6BQCOUL/t1fC8oS2IkgYIL9WHxHG64YTjrgfpioTtaYtOUZcTh5m2C ++C8lcLIhJsFyUR+MLMOEkMNaj7rP9KdlpeuY0fsFskZ1FSNqb4VjMIDw1Z4fKRzC +bLBQWV2QWzuoDTDPv31/zvGdg73JRm4gpvlhUbohL3u+pRVjodSVh/GeufOJ8z2F +uLjbvrW5KfnaNwUASZQDhETnv0Mxz3WLJdH0pmT1kvarBes96aULNmLazAZfNou2 +XjG4Kvte9nHfRCaexOYNkbQudZWAUWpLMKawYqGT8ZvYzsRjdT9ZR7E= +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 1 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 1 O=Hongkong Post +# Label: "Hongkong Post Root CA 1" +# Serial: 1000 +# MD5 Fingerprint: a8:0d:6f:39:78:b9:43:6d:77:42:6d:98:5a:cc:23:ca +# SHA1 Fingerprint: d6:da:a8:20:8d:09:d2:15:4d:24:b5:2f:cb:34:6e:b2:58:b2:8a:58 +# SHA256 Fingerprint: f9:e6:7d:33:6c:51:00:2a:c0:54:c6:32:02:2d:66:dd:a2:e7:e3:ff:f1:0a:d0:61:ed:31:d8:bb:b4:10:cf:b2 +-----BEGIN CERTIFICATE----- +MIIDMDCCAhigAwIBAgICA+gwDQYJKoZIhvcNAQEFBQAwRzELMAkGA1UEBhMCSEsx +FjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdrb25nIFBvc3Qg +Um9vdCBDQSAxMB4XDTAzMDUxNTA1MTMxNFoXDTIzMDUxNTA0NTIyOVowRzELMAkG +A1UEBhMCSEsxFjAUBgNVBAoTDUhvbmdrb25nIFBvc3QxIDAeBgNVBAMTF0hvbmdr +b25nIFBvc3QgUm9vdCBDQSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEArP84tulmAknjorThkPlAj3n54r15/gK97iSSHSL22oVyaf7XPwnU3ZG1ApzQ +jVrhVcNQhrkpJsLj2aDxaQMoIIBFIi1WpztUlVYiWR8o3x8gPW2iNr4joLFutbEn +PzlTCeqrauh0ssJlXI6/fMN4hM2eFvz1Lk8gKgifd/PFHsSaUmYeSF7jEAaPIpjh +ZY4bXSNmO7ilMlHIhqqhqZ5/dpTCpmy3QfDVyAY45tQM4vM7TG1QjMSDJ8EThFk9 +nnV0ttgCXjqQesBCNnLsak3c78QA3xMYV18meMjWCnl3v/evt3a5pQuEF10Q6m/h +q5URX208o1xNg1vysxmKgIsLhwIDAQABoyYwJDASBgNVHRMBAf8ECDAGAQH/AgED +MA4GA1UdDwEB/wQEAwIBxjANBgkqhkiG9w0BAQUFAAOCAQEADkbVPK7ih9legYsC +mEEIjEy82tvuJxuC52pF7BaLT4Wg87JwvVqWuspube5Gi27nKi6Wsxkz67SfqLI3 +7piol7Yutmcn1KZJ/RyTZXaeQi/cImyaT/JaFTmxcdcrUehtHJjA2Sr0oYJ71clB +oiMBdDhViw+5LmeiIAQ32pwL0xch4I+XeTRvhEgCIDMb5jREn5Fw9IBehEPCKdJs +EhTkYY2sEJCehFC78JZvRZ+K88psT/oROhUVRsPNH4NbLUES7VBnQRM9IauUiqpO +fMGx+6fWtScvl6tu4B3i0RwsH0Ti/L6RoZz71ilTc4afU9hDDl3WY4JxHYB0yvbi +AmvZWg== +-----END CERTIFICATE----- + +# Issuer: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Subject: CN=SecureSign RootCA11 O=Japan Certification Services, Inc. +# Label: "SecureSign RootCA11" +# Serial: 1 +# MD5 Fingerprint: b7:52:74:e2:92:b4:80:93:f2:75:e4:cc:d7:f2:ea:26 +# SHA1 Fingerprint: 3b:c4:9f:48:f8:f3:73:a0:9c:1e:bd:f8:5b:b1:c3:65:c7:d8:11:b3 +# SHA256 Fingerprint: bf:0f:ee:fb:9e:3a:58:1a:d5:f9:e9:db:75:89:98:57:43:d2:61:08:5c:4d:31:4f:6f:5d:72:59:aa:42:16:12 +-----BEGIN CERTIFICATE----- +MIIDbTCCAlWgAwIBAgIBATANBgkqhkiG9w0BAQUFADBYMQswCQYDVQQGEwJKUDEr +MCkGA1UEChMiSmFwYW4gQ2VydGlmaWNhdGlvbiBTZXJ2aWNlcywgSW5jLjEcMBoG +A1UEAxMTU2VjdXJlU2lnbiBSb290Q0ExMTAeFw0wOTA0MDgwNDU2NDdaFw0yOTA0 +MDgwNDU2NDdaMFgxCzAJBgNVBAYTAkpQMSswKQYDVQQKEyJKYXBhbiBDZXJ0aWZp +Y2F0aW9uIFNlcnZpY2VzLCBJbmMuMRwwGgYDVQQDExNTZWN1cmVTaWduIFJvb3RD +QTExMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA/XeqpRyQBTvLTJsz +i1oURaTnkBbR31fSIRCkF/3frNYfp+TbfPfs37gD2pRY/V1yfIw/XwFndBWW4wI8 +h9uuywGOwvNmxoVF9ALGOrVisq/6nL+k5tSAMJjzDbaTj6nU2DbysPyKyiyhFTOV +MdrAG/LuYpmGYz+/3ZMqg6h2uRMft85OQoWPIucuGvKVCbIFtUROd6EgvanyTgp9 +UK31BQ1FT0Zx/Sg+U/sE2C3XZR1KG/rPO7AxmjVuyIsG0wCR8pQIZUyxNAYAeoni +8McDWc/V1uinMrPmmECGxc0nEovMe863ETxiYAcjPitAbpSACW22s293bzUIUPsC +h8U+iQIDAQABo0IwQDAdBgNVHQ4EFgQUW/hNT7KlhtQ60vFjmqC+CfZXt94wDgYD +VR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEFBQADggEB +AKChOBZmLqdWHyGcBvod7bkixTgm2E5P7KN/ed5GIaGHd48HCJqypMWvDzKYC3xm +KbabfSVSSUOrTC4rbnpwrxYO4wJs+0LmGJ1F2FXI6Dvd5+H0LgscNFxsWEr7jIhQ +X5Ucv+2rIrVls4W6ng+4reV6G4pQOh29Dbx7VFALuUKvVaAYga1lme++5Jy/xIWr +QbJUb9wlze144o4MjQlJ3WN7WmmWAiGovVJZ6X01y8hSyn+B/tlr0/cR7SXf+Of5 +pPpyl4RTDaXQMhhRdlkUbA/r7F+AjHVDg8OFmP9Mni0N5HeDk061lgeLKBObjBmN +QSdJQO7e5iNEOdyhIta6A/I= +-----END CERTIFICATE----- + +# Issuer: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Subject: CN=Microsec e-Szigno Root CA 2009 O=Microsec Ltd. +# Label: "Microsec e-Szigno Root CA 2009" +# Serial: 14014712776195784473 +# MD5 Fingerprint: f8:49:f4:03:bc:44:2d:83:be:48:69:7d:29:64:fc:b1 +# SHA1 Fingerprint: 89:df:74:fe:5c:f4:0f:4a:80:f9:e3:37:7d:54:da:91:e1:01:31:8e +# SHA256 Fingerprint: 3c:5f:81:fe:a5:fa:b8:2c:64:bf:a2:ea:ec:af:cd:e8:e0:77:fc:86:20:a7:ca:e5:37:16:3d:f3:6e:db:f3:78 +-----BEGIN CERTIFICATE----- +MIIECjCCAvKgAwIBAgIJAMJ+QwRORz8ZMA0GCSqGSIb3DQEBCwUAMIGCMQswCQYD +VQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3QxFjAUBgNVBAoMDU1pY3Jvc2VjIEx0 +ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3ppZ25vIFJvb3QgQ0EgMjAwOTEfMB0G +CSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5odTAeFw0wOTA2MTYxMTMwMThaFw0y +OTEyMzAxMTMwMThaMIGCMQswCQYDVQQGEwJIVTERMA8GA1UEBwwIQnVkYXBlc3Qx +FjAUBgNVBAoMDU1pY3Jvc2VjIEx0ZC4xJzAlBgNVBAMMHk1pY3Jvc2VjIGUtU3pp +Z25vIFJvb3QgQ0EgMjAwOTEfMB0GCSqGSIb3DQEJARYQaW5mb0BlLXN6aWduby5o +dTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAOn4j/NjrdqG2KfgQvvP +kd6mJviZpWNwrZuuyjNAfW2WbqEORO7hE52UQlKavXWFdCyoDh2Tthi3jCyoz/tc +cbna7P7ofo/kLx2yqHWH2Leh5TvPmUpG0IMZfcChEhyVbUr02MelTTMuhTlAdX4U +fIASmFDHQWe4oIBhVKZsTh/gnQ4H6cm6M+f+wFUoLAKApxn1ntxVUwOXewdI/5n7 +N4okxFnMUBBjjqqpGrCEGob5X7uxUG6k0QrM1XF+H6cbfPVTbiJfyyvm1HxdrtbC +xkzlBQHZ7Vf8wSN5/PrIJIOV87VqUQHQd9bpEqH5GoP7ghu5sJf0dgYzQ0mg/wu1 ++rUCAwEAAaOBgDB+MA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBTLD8bfQkPMPcu1SCOhGnqmKrs0aDAfBgNVHSMEGDAWgBTLD8bfQkPM +Pcu1SCOhGnqmKrs0aDAbBgNVHREEFDASgRBpbmZvQGUtc3ppZ25vLmh1MA0GCSqG +SIb3DQEBCwUAA4IBAQDJ0Q5eLtXMs3w+y/w9/w0olZMEyL/azXm4Q5DwpL7v8u8h +mLzU1F0G9u5C7DBsoKqpyvGvivo/C3NqPuouQH4frlRheesuCDfXI/OMn74dseGk +ddug4lQUsbocKaQY9hK6ohQU4zE1yED/t+AFdlfBHFny+L/k7SViXITwfn4fs775 +tyERzAMBVnCnEJIeGzSBHq2cGsMEPO0CYdYeBvNfOofyK/FFh+U9rNHHV4S9a67c +2Pm2G2JwCz02yULyMtd6YebS2z3PyKnJm9zbWETXbzivf3jTo60adbocwTZ8jx5t +HMN1Rq41Bab2XD0h7lbwyYIiLXpUq3DDfSJlgnCW +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R3 +# Label: "GlobalSign Root CA - R3" +# Serial: 4835703278459759426209954 +# MD5 Fingerprint: c5:df:b8:49:ca:05:13:55:ee:2d:ba:1a:c3:3e:b0:28 +# SHA1 Fingerprint: d6:9b:56:11:48:f0:1c:77:c5:45:78:c1:09:26:df:5b:85:69:76:ad +# SHA256 Fingerprint: cb:b5:22:d7:b7:f1:27:ad:6a:01:13:86:5b:df:1c:d4:10:2e:7d:07:59:af:63:5a:7c:f4:72:0d:c9:63:c5:3b +-----BEGIN CERTIFICATE----- +MIIDXzCCAkegAwIBAgILBAAAAAABIVhTCKIwDQYJKoZIhvcNAQELBQAwTDEgMB4G +A1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjMxEzARBgNVBAoTCkdsb2JhbFNp +Z24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMDkwMzE4MTAwMDAwWhcNMjkwMzE4 +MTAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSMzETMBEG +A1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAMwldpB5BngiFvXAg7aEyiie/QV2EcWtiHL8 +RgJDx7KKnQRfJMsuS+FggkbhUqsMgUdwbN1k0ev1LKMPgj0MK66X17YUhhB5uzsT +gHeMCOFJ0mpiLx9e+pZo34knlTifBtc+ycsmWQ1z3rDI6SYOgxXG71uL0gRgykmm +KPZpO/bLyCiR5Z2KYVc3rHQU3HTgOu5yLy6c+9C7v/U9AOEGM+iCK65TpjoWc4zd +QQ4gOsC0p6Hpsk+QLjJg6VfLuQSSaGjlOCZgdbKfd/+RFO+uIEn8rUAVSNECMWEZ +XriX7613t2Saer9fwRPvm2L7DWzgVGkWqQPabumDk3F2xmmFghcCAwEAAaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI/wS3+o +LkUkrk1Q+mOai97i3Ru8MA0GCSqGSIb3DQEBCwUAA4IBAQBLQNvAUKr+yAzv95ZU +RUm7lgAJQayzE4aGKAczymvmdLm6AC2upArT9fHxD4q/c2dKg8dEe3jgr25sbwMp +jjM5RcOO5LlXbKr8EpbsU8Yt5CRsuZRj+9xTaGdWPoO4zzUhw8lo/s7awlOqzJCK +6fBdRoyV3XpYKBovHd7NADdBj+1EbddTKJd+82cEHhXXipa0095MJ6RMG3NzdvQX +mcIfeg7jLQitChws/zyrVQ4PkX4268NXSb7hLi18YIvDQVETI53O9zJrlAGomecs +Mx86OyXShkDOOyyGeMlhLxS67ttVb9+E7gUJTb0o2HLO02JQZR7rkpeDMdmztcpH +WD9f +-----END CERTIFICATE----- + +# Issuer: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Subject: CN=Autoridad de Certificacion Firmaprofesional CIF A62634068 +# Label: "Autoridad de Certificacion Firmaprofesional CIF A62634068" +# Serial: 6047274297262753887 +# MD5 Fingerprint: 73:3a:74:7a:ec:bb:a3:96:a6:c2:e4:e2:c8:9b:c0:c3 +# SHA1 Fingerprint: ae:c5:fb:3f:c8:e1:bf:c4:e5:4f:03:07:5a:9a:e8:00:b7:f7:b6:fa +# SHA256 Fingerprint: 04:04:80:28:bf:1f:28:64:d4:8f:9a:d4:d8:32:94:36:6a:82:88:56:55:3f:3b:14:30:3f:90:14:7f:5d:40:ef +-----BEGIN CERTIFICATE----- +MIIGFDCCA/ygAwIBAgIIU+w77vuySF8wDQYJKoZIhvcNAQEFBQAwUTELMAkGA1UE +BhMCRVMxQjBABgNVBAMMOUF1dG9yaWRhZCBkZSBDZXJ0aWZpY2FjaW9uIEZpcm1h +cHJvZmVzaW9uYWwgQ0lGIEE2MjYzNDA2ODAeFw0wOTA1MjAwODM4MTVaFw0zMDEy +MzEwODM4MTVaMFExCzAJBgNVBAYTAkVTMUIwQAYDVQQDDDlBdXRvcmlkYWQgZGUg +Q2VydGlmaWNhY2lvbiBGaXJtYXByb2Zlc2lvbmFsIENJRiBBNjI2MzQwNjgwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKlmuO6vj78aI14H9M2uDDUtd9 +thDIAl6zQyrET2qyyhxdKJp4ERppWVevtSBC5IsP5t9bpgOSL/UR5GLXMnE42QQM +cas9UX4PB99jBVzpv5RvwSmCwLTaUbDBPLutN0pcyvFLNg4kq7/DhHf9qFD0sefG +L9ItWY16Ck6WaVICqjaY7Pz6FIMMNx/Jkjd/14Et5cS54D40/mf0PmbR0/RAz15i +NA9wBj4gGFrO93IbJWyTdBSTo3OxDqqHECNZXyAFGUftaI6SEspd/NYrspI8IM/h +X68gvqB2f3bl7BqGYTM+53u0P6APjqK5am+5hyZvQWyIplD9amML9ZMWGxmPsu2b +m8mQ9QEM3xk9Dz44I8kvjwzRAv4bVdZO0I08r0+k8/6vKtMFnXkIoctXMbScyJCy +Z/QYFpM6/EfY0XiWMR+6KwxfXZmtY4laJCB22N/9q06mIqqdXuYnin1oKaPnirja +EbsXLZmdEyRG98Xi2J+Of8ePdG1asuhy9azuJBCtLxTa/y2aRnFHvkLfuwHb9H/T +KI8xWVvTyQKmtFLKbpf7Q8UIJm+K9Lv9nyiqDdVF8xM6HdjAeI9BZzwelGSuewvF +6NkBiDkal4ZkQdU7hwxu+g/GvUgUvzlN1J5Bto+WHWOWk9mVBngxaJ43BjuAiUVh +OSPHG0SjFeUc+JIwuwIDAQABo4HvMIHsMBIGA1UdEwEB/wQIMAYBAf8CAQEwDgYD +VR0PAQH/BAQDAgEGMB0GA1UdDgQWBBRlzeurNR4APn7VdMActHNHDhpkLzCBpgYD +VR0gBIGeMIGbMIGYBgRVHSAAMIGPMC8GCCsGAQUFBwIBFiNodHRwOi8vd3d3LmZp +cm1hcHJvZmVzaW9uYWwuY29tL2NwczBcBggrBgEFBQcCAjBQHk4AUABhAHMAZQBv +ACAAZABlACAAbABhACAAQgBvAG4AYQBuAG8AdgBhACAANAA3ACAAQgBhAHIAYwBl +AGwAbwBuAGEAIAAwADgAMAAxADcwDQYJKoZIhvcNAQEFBQADggIBABd9oPm03cXF +661LJLWhAqvdpYhKsg9VSytXjDvlMd3+xDLx51tkljYyGOylMnfX40S2wBEqgLk9 +am58m9Ot/MPWo+ZkKXzR4Tgegiv/J2Wv+xYVxC5xhOW1//qkR71kMrv2JYSiJ0L1 +ILDCExARzRAVukKQKtJE4ZYm6zFIEv0q2skGz3QeqUvVhyj5eTSSPi5E6PaPT481 +PyWzOdxjKpBrIF/EUhJOlywqrJ2X3kjyo2bbwtKDlaZmp54lD+kLM5FlClrD2VQS +3a/DTg4fJl4N3LON7NWBcN7STyQF82xO9UxJZo3R/9ILJUFI/lGExkKvgATP0H5k +SeTy36LssUzAKh3ntLFlosS88Zj0qnAHY7S42jtM+kAiMFsRpvAFDsYCA0irhpuF +3dvd6qJ2gHN99ZwExEWN57kci57q13XRcrHedUTnQn3iV2t93Jm8PYMo6oCTjcVM +ZcFwgbg4/EMxsvYDNEeyrPsiBsse3RdHHF9mudMaotoRsaS8I8nkvof/uZS2+F0g +StRf571oe2XyFR7SOqkt6dhrJKyXWERHrVkY8SFlcN7ONGCoQPHzPKTDKCOM/icz +Q0CgFzzr6juwcqajuUpLXhZI9LK8yIySxZ2frHI2vDSANGupi5LAuBft7HZT9SQB +jLMi6Et8Vcad+qMUu2WFbm5PEn4KPJ2V +-----END CERTIFICATE----- + +# Issuer: CN=Izenpe.com O=IZENPE S.A. +# Subject: CN=Izenpe.com O=IZENPE S.A. +# Label: "Izenpe.com" +# Serial: 917563065490389241595536686991402621 +# MD5 Fingerprint: a6:b0:cd:85:80:da:5c:50:34:a3:39:90:2f:55:67:73 +# SHA1 Fingerprint: 2f:78:3d:25:52:18:a7:4a:65:39:71:b5:2c:a2:9c:45:15:6f:e9:19 +# SHA256 Fingerprint: 25:30:cc:8e:98:32:15:02:ba:d9:6f:9b:1f:ba:1b:09:9e:2d:29:9e:0f:45:48:bb:91:4f:36:3b:c0:d4:53:1f +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Subject: CN=Go Daddy Root Certificate Authority - G2 O=GoDaddy.com, Inc. +# Label: "Go Daddy Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 80:3a:bc:22:c1:e6:fb:8d:9b:3b:27:4a:32:1b:9a:01 +# SHA1 Fingerprint: 47:be:ab:c9:22:ea:e8:0e:78:78:34:62:a7:9f:45:c2:54:fd:e6:8b +# SHA256 Fingerprint: 45:14:0b:32:47:eb:9c:c8:c5:b4:f0:d7:b5:30:91:f7:32:92:08:9e:6e:5a:63:e2:74:9d:d3:ac:a9:19:8e:da +-----BEGIN CERTIFICATE----- +MIIDxTCCAq2gAwIBAgIBADANBgkqhkiG9w0BAQsFADCBgzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxGjAYBgNVBAoT +EUdvRGFkZHkuY29tLCBJbmMuMTEwLwYDVQQDEyhHbyBEYWRkeSBSb290IENlcnRp +ZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAwMFoXDTM3MTIzMTIz +NTk1OVowgYMxCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6b25hMRMwEQYDVQQH +EwpTY290dHNkYWxlMRowGAYDVQQKExFHb0RhZGR5LmNvbSwgSW5jLjExMC8GA1UE +AxMoR28gRGFkZHkgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIw +DQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBAL9xYgjx+lk09xvJGKP3gElY6SKD +E6bFIEMBO4Tx5oVJnyfq9oQbTqC023CYxzIBsQU+B07u9PpPL1kwIuerGVZr4oAH +/PMWdYA5UXvl+TW2dE6pjYIT5LY/qQOD+qK+ihVqf94Lw7YZFAXK6sOoBJQ7Rnwy +DfMAZiLIjWltNowRGLfTshxgtDj6AozO091GB94KPutdfMh8+7ArU6SSYmlRJQVh +GkSBjCypQ5Yj36w6gZoOKcUcqeldHraenjAKOc7xiID7S13MMuyFYkMlNAJWJwGR +tDtwKj9useiciAF9n9T521NtYJ2/LOdYq7hfRvzOxBsDPAnrSTFcaUaz4EcCAwEA +AaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FDqahQcQZyi27/a9BUFuIMGU2g/eMA0GCSqGSIb3DQEBCwUAA4IBAQCZ21151fmX +WWcDYfF+OwYxdS2hII5PZYe096acvNjpL9DbWu7PdIxztDhC2gV7+AJ1uP2lsdeu +9tfeE8tTEH6KRtGX+rcuKxGrkLAngPnon1rpN5+r5N9ss4UXnT3ZJE95kTXWXwTr +gIOrmgIttRD02JDHBHNA7XIloKmf7J6raBKZV8aPEjoJpL1E/QYVN8Gb5DKj7Tjo +2GTzLH4U/ALqn83/B2gX2yKQOC16jdFU8WnjXzPKej17CuPKf1855eJ1usV2GDPO +LPAvTK33sefOT6jEm0pUBsV/fdUID+Ic/n4XuKxe9tQWskMJDE32p2u0mYRlynqI +4uJEvlz36hz1 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: d6:39:81:c6:52:7e:96:69:fc:fc:ca:66:ed:05:f2:96 +# SHA1 Fingerprint: b5:1c:06:7c:ee:2b:0c:3d:f8:55:ab:2d:92:f4:fe:39:d4:e7:0f:0e +# SHA256 Fingerprint: 2c:e1:cb:0b:f9:d2:f9:e1:02:99:3f:be:21:51:52:c3:b2:dd:0c:ab:de:1c:68:e5:31:9b:83:91:54:db:b7:f5 +-----BEGIN CERTIFICATE----- +MIID3TCCAsWgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBjzELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xMjAwBgNVBAMTKVN0YXJmaWVs +ZCBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5MDkwMTAwMDAw +MFoXDTM3MTIzMTIzNTk1OVowgY8xCzAJBgNVBAYTAlVTMRAwDgYDVQQIEwdBcml6 +b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFyZmllbGQgVGVj +aG5vbG9naWVzLCBJbmMuMTIwMAYDVQQDEylTdGFyZmllbGQgUm9vdCBDZXJ0aWZp +Y2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoC +ggEBAL3twQP89o/8ArFvW59I2Z154qK3A2FWGMNHttfKPTUuiUP3oWmb3ooa/RMg +nLRJdzIpVv257IzdIvpy3Cdhl+72WoTsbhm5iSzchFvVdPtrX8WJpRBSiUZV9Lh1 +HOZ/5FSuS/hVclcCGfgXcVnrHigHdMWdSL5stPSksPNkN3mSwOxGXn/hbVNMYq/N +Hwtjuzqd+/x5AJhhdM8mgkBj87JyahkNmcrUDnXMN/uLicFZ8WJ/X7NfZTD4p7dN +dloedl40wOiWVpmKs/B/pM293DIxfJHP4F8R+GuqSVzRmZTRouNjWwl2tVZi4Ut0 +HZbUJtQIBFnQmA4O5t78w+wfkPECAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAO +BgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFHwMMh+n2TB/xH1oo2Kooc6rB1snMA0G +CSqGSIb3DQEBCwUAA4IBAQARWfolTwNvlJk7mh+ChTnUdgWUXuEok21iXQnCoKjU +sHU48TRqneSfioYmUeYs0cYtbpUgSpIB7LiKZ3sx4mcujJUDJi5DnUox9g61DLu3 +4jd/IroAow57UvtruzvE03lRTs2Q9GcHGcg8RnoNAX3FWOdt5oUwF5okxBDgBPfg +8n/Uqgr/Qh037ZTlZFkSIHc40zI+OIF1lnP6aI+xy84fxez6nH7PfrHxBy22/L/K +pL/QlwVKvOoYKAKQvVR4CSFx09F9HdkWsKlhPdAKACL8x3vLCWRFCztAgfd9fDL1 +mMpYjn0q7pBZc2T5NnReJaH1ZgUufzkVqSr7UIuOhWn0 +-----END CERTIFICATE----- + +# Issuer: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Subject: CN=Starfield Services Root Certificate Authority - G2 O=Starfield Technologies, Inc. +# Label: "Starfield Services Root Certificate Authority - G2" +# Serial: 0 +# MD5 Fingerprint: 17:35:74:af:7b:61:1c:eb:f4:f9:3c:e2:ee:40:f9:a2 +# SHA1 Fingerprint: 92:5a:8f:8d:2c:6d:04:e0:66:5f:59:6a:ff:22:d8:63:e8:25:6f:3f +# SHA256 Fingerprint: 56:8d:69:05:a2:c8:87:08:a4:b3:02:51:90:ed:cf:ed:b1:97:4a:60:6a:13:c6:e5:29:0f:cb:2a:e6:3e:da:b5 +-----BEGIN CERTIFICATE----- +MIID7zCCAtegAwIBAgIBADANBgkqhkiG9w0BAQsFADCBmDELMAkGA1UEBhMCVVMx +EDAOBgNVBAgTB0FyaXpvbmExEzARBgNVBAcTClNjb3R0c2RhbGUxJTAjBgNVBAoT +HFN0YXJmaWVsZCBUZWNobm9sb2dpZXMsIEluYy4xOzA5BgNVBAMTMlN0YXJmaWVs +ZCBTZXJ2aWNlcyBSb290IENlcnRpZmljYXRlIEF1dGhvcml0eSAtIEcyMB4XDTA5 +MDkwMTAwMDAwMFoXDTM3MTIzMTIzNTk1OVowgZgxCzAJBgNVBAYTAlVTMRAwDgYD +VQQIEwdBcml6b25hMRMwEQYDVQQHEwpTY290dHNkYWxlMSUwIwYDVQQKExxTdGFy +ZmllbGQgVGVjaG5vbG9naWVzLCBJbmMuMTswOQYDVQQDEzJTdGFyZmllbGQgU2Vy +dmljZXMgUm9vdCBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkgLSBHMjCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBANUMOsQq+U7i9b4Zl1+OiFOxHz/Lz58gE20p +OsgPfTz3a3Y4Y9k2YKibXlwAgLIvWX/2h/klQ4bnaRtSmpDhcePYLQ1Ob/bISdm2 +8xpWriu2dBTrz/sm4xq6HZYuajtYlIlHVv8loJNwU4PahHQUw2eeBGg6345AWh1K +Ts9DkTvnVtYAcMtS7nt9rjrnvDH5RfbCYM8TWQIrgMw0R9+53pBlbQLPLJGmpufe +hRhJfGZOozptqbXuNC66DQO4M99H67FrjSXZm86B0UVGMpZwh94CDklDhbZsc7tk +6mFBrMnUVN+HL8cisibMn1lUaJ/8viovxFUcdUBgF4UCVTmLfwUCAwEAAaNCMEAw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFJxfAN+q +AdcwKziIorhtSpzyEZGDMA0GCSqGSIb3DQEBCwUAA4IBAQBLNqaEd2ndOxmfZyMI +bw5hyf2E3F/YNoHN2BtBLZ9g3ccaaNnRbobhiCPPE95Dz+I0swSdHynVv/heyNXB +ve6SbzJ08pGCL72CQnqtKrcgfU28elUSwhXqvfdqlS5sdJ/PHLTyxQGjhdByPq1z +qwubdQxtRbeOlKyWN7Wg0I8VRw7j6IPdj/3vQQF3zCepYoUz8jcI73HPdwbeyBkd +iEDPfUYd/x7H4c7/I9vG+o1VTqkC50cRRj70/b17KSa7qWFiNyi2LSr2EIZkyXCn +0q23KXB56jzaYyWf/Wi3MOxw+3WKt21gZ7IeyLnp2KhvAotnDU0mV3HaIPzBSlCN +sSi6 +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Commercial O=AffirmTrust +# Subject: CN=AffirmTrust Commercial O=AffirmTrust +# Label: "AffirmTrust Commercial" +# Serial: 8608355977964138876 +# MD5 Fingerprint: 82:92:ba:5b:ef:cd:8a:6f:a6:3d:55:f9:84:f6:d6:b7 +# SHA1 Fingerprint: f9:b5:b6:32:45:5f:9c:be:ec:57:5f:80:dc:e9:6e:2c:c7:b2:78:b7 +# SHA256 Fingerprint: 03:76:ab:1d:54:c5:f9:80:3c:e4:b2:e2:01:a0:ee:7e:ef:7b:57:b6:36:e8:a9:3c:9b:8d:48:60:c9:6f:5f:a7 +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIId3cGJyapsXwwDQYJKoZIhvcNAQELBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBDb21tZXJjaWFsMB4XDTEwMDEyOTE0MDYwNloXDTMwMTIzMTE0MDYwNlowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBDb21tZXJjaWFsMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEA9htPZwcroRX1BiLLHwGy43NFBkRJLLtJJRTWzsO3qyxPxkEylFf6EqdbDuKP +Hx6GGaeqtS25Xw2Kwq+FNXkyLbscYjfysVtKPcrNcV/pQr6U6Mje+SJIZMblq8Yr +ba0F8PrVC8+a5fBQpIs7R6UjW3p6+DM/uO+Zl+MgwdYoic+U+7lF7eNAFxHUdPAL +MeIrJmqbTFeurCA+ukV6BfO9m2kVrn1OIGPENXY6BwLJN/3HR+7o8XYdcxXyl6S1 +yHp52UKqK39c/s4mT6NmgTWvRLpUHhwwMmWd5jyTXlBOeuM61G7MGvv50jeuJCqr +VwMiKA1JdX+3KNp1v47j3A55MQIDAQABo0IwQDAdBgNVHQ4EFgQUnZPGU4teyq8/ +nx4P5ZmVvCT2lI8wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQELBQADggEBAFis9AQOzcAN/wr91LoWXym9e2iZWEnStB03TX8nfUYG +XUPGhi4+c7ImfU+TqbbEKpqrIZcUsd6M06uJFdhrJNTxFq7YpFzUf1GO7RgBsZNj +vbz4YYCanrHOQnDiqX0GJX0nof5v7LMeJNrjS1UaADs1tDvZ110w/YETifLCBivt +Z8SOyUOyXGsViQK8YvxO8rUzqrJv0wqiUOP2O+guRMLbZjipM1ZI8W0bM40NjD9g +N53Tym1+NH4Nn3J2ixufcv1SNUFFApYvHLKac0khsUlHRUe072o0EclNmsxZt9YC +nlpOZbWUrhvfKbAW8b8Angc6F2S1BLUjIZkKlTuXfO8= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Networking O=AffirmTrust +# Subject: CN=AffirmTrust Networking O=AffirmTrust +# Label: "AffirmTrust Networking" +# Serial: 8957382827206547757 +# MD5 Fingerprint: 42:65:ca:be:01:9a:9a:4c:a9:8c:41:49:cd:c0:d5:7f +# SHA1 Fingerprint: 29:36:21:02:8b:20:ed:02:f5:66:c5:32:d1:d6:ed:90:9f:45:00:2f +# SHA256 Fingerprint: 0a:81:ec:5a:92:97:77:f1:45:90:4a:f3:8d:5d:50:9f:66:b5:e2:c5:8f:cd:b5:31:05:8b:0e:17:f3:f0:b4:1b +-----BEGIN CERTIFICATE----- +MIIDTDCCAjSgAwIBAgIIfE8EORzUmS0wDQYJKoZIhvcNAQEFBQAwRDELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZpcm1UcnVz +dCBOZXR3b3JraW5nMB4XDTEwMDEyOTE0MDgyNFoXDTMwMTIzMTE0MDgyNFowRDEL +MAkGA1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MR8wHQYDVQQDDBZBZmZp +cm1UcnVzdCBOZXR3b3JraW5nMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC +AQEAtITMMxcua5Rsa2FSoOujz3mUTOWUgJnLVWREZY9nZOIG41w3SfYvm4SEHi3y +YJ0wTsyEheIszx6e/jarM3c1RNg1lho9Nuh6DtjVR6FqaYvZ/Ls6rnla1fTWcbua +kCNrmreIdIcMHl+5ni36q1Mr3Lt2PpNMCAiMHqIjHNRqrSK6mQEubWXLviRmVSRL +QESxG9fhwoXA3hA/Pe24/PHxI1Pcv2WXb9n5QHGNfb2V1M6+oF4nI979ptAmDgAp +6zxG8D1gvz9Q0twmQVGeFDdCBKNwV6gbh+0t+nvujArjqWaJGctB+d1ENmHP4ndG +yH329JKBNv3bNPFyfvMMFr20FQIDAQABo0IwQDAdBgNVHQ4EFgQUBx/S55zawm6i +QLSwelAQUHTEyL0wDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwDQYJ +KoZIhvcNAQEFBQADggEBAIlXshZ6qML91tmbmzTCnLQyFE2npN/svqe++EPbkTfO +tDIuUFUaNU52Q3Eg75N3ThVwLofDwR1t3Mu1J9QsVtFSUzpE0nPIxBsFZVpikpzu +QY0x2+c06lkh1QF612S4ZDnNye2v7UsDSKegmQGA3GWjNq5lWUhPgkvIZfFXHeVZ +Lgo/bNjR9eUJtGxUAArgFU2HdW23WJZa3W3SAKD0m0i+wzekujbgfIeFlxoVot4u +olu9rxj5kFDNcFn4J2dHy8egBzp90SxdbBk6ZrV9/ZFvgrG+CJPbFEfxojfHRZ48 +x3evZKiT3/Zpg4Jg8klCNO1aAFSFHBY2kgxc+qatv9s= +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium O=AffirmTrust +# Subject: CN=AffirmTrust Premium O=AffirmTrust +# Label: "AffirmTrust Premium" +# Serial: 7893706540734352110 +# MD5 Fingerprint: c4:5d:0e:48:b6:ac:28:30:4e:0a:bc:f9:38:16:87:57 +# SHA1 Fingerprint: d8:a6:33:2c:e0:03:6f:b1:85:f6:63:4f:7d:6a:06:65:26:32:28:27 +# SHA256 Fingerprint: 70:a7:3f:7f:37:6b:60:07:42:48:90:45:34:b1:14:82:d5:bf:0e:69:8e:cc:49:8d:f5:25:77:eb:f2:e9:3b:9a +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIIbYwURrGmCu4wDQYJKoZIhvcNAQEMBQAwQTELMAkGA1UE +BhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1UcnVz +dCBQcmVtaXVtMB4XDTEwMDEyOTE0MTAzNloXDTQwMTIzMTE0MTAzNlowQTELMAkG +A1UEBhMCVVMxFDASBgNVBAoMC0FmZmlybVRydXN0MRwwGgYDVQQDDBNBZmZpcm1U +cnVzdCBQcmVtaXVtMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxBLf +qV/+Qd3d9Z+K4/as4Tx4mrzY8H96oDMq3I0gW64tb+eT2TZwamjPjlGjhVtnBKAQ +JG9dKILBl1fYSCkTtuG+kU3fhQxTGJoeJKJPj/CihQvL9Cl/0qRY7iZNyaqoe5rZ ++jjeRFcV5fiMyNlI4g0WJx0eyIOFJbe6qlVBzAMiSy2RjYvmia9mx+n/K+k8rNrS +s8PhaJyJ+HoAVt70VZVs+7pk3WKL3wt3MutizCaam7uqYoNMtAZ6MMgpv+0GTZe5 +HMQxK9VfvFMSF5yZVylmd2EhMQcuJUmdGPLu8ytxjLW6OQdJd/zvLpKQBY0tL3d7 +70O/Nbua2Plzpyzy0FfuKE4mX4+QaAkvuPjcBukumj5Rp9EixAqnOEhss/n/fauG +V+O61oV4d7pD6kh/9ti+I20ev9E2bFhc8e6kGVQa9QPSdubhjL08s9NIS+LI+H+S +qHZGnEJlPqQewQcDWkYtuJfzt9WyVSHvutxMAJf7FJUnM7/oQ0dG0giZFmA7mn7S +5u046uwBHjxIVkkJx0w3AJ6IDsBz4W9m6XJHMD4Q5QsDyZpCAGzFlH5hxIrff4Ia +C1nEWTJ3s7xgaVY5/bQGeyzWZDbZvUjthB9+pSKPKrhC9IK31FOQeE4tGv2Bb0TX +OwF0lkLgAOIua+rF7nKsu7/+6qqo+Nz2snmKtmcCAwEAAaNCMEAwHQYDVR0OBBYE +FJ3AZ6YMItkm9UWrpmVSESfYRaxjMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgEGMA0GCSqGSIb3DQEBDAUAA4ICAQCzV00QYk465KzquByvMiPIs0laUZx2 +KI15qldGF9X1Uva3ROgIRL8YhNILgM3FEv0AVQVhh0HctSSePMTYyPtwni94loMg +Nt58D2kTiKV1NpgIpsbfrM7jWNa3Pt668+s0QNiigfV4Py/VpfzZotReBA4Xrf5B +8OWycvpEgjNC6C1Y91aMYj+6QrCcDFx+LmUmXFNPALJ4fqENmS2NuB2OosSw/WDQ +MKSOyARiqcTtNd56l+0OOF6SL5Nwpamcb6d9Ex1+xghIsV5n61EIJenmJWtSKZGc +0jlzCFfemQa0W50QBuHCAKi4HEoCChTQwUHK+4w1IX2COPKpVJEZNZOUbWo6xbLQ +u4mGk+ibyQ86p3q4ofB4Rvr8Ny/lioTz3/4E2aFooC8k4gmVBtWVyuEklut89pMF +u+1z6S3RdTnX5yTb2E5fQ4+e0BQ5v1VwSJlXMbSc7kqYA5YwH2AG7hsj/oFgIxpH +YoWlzBk0gG+zrBrjn/B7SK3VAdlntqlyk+otZrWyuOQ9PLLvTIzq6we/qzWaVYa8 +GKa1qF60g2xraUDTn9zxw2lrueFtCfTxqlB2Cnp9ehehVZZCmTEJ3WARjQUwfuaO +RtGdFNrHF+QFlozEJLUbzxQHskD4o55BhrwE0GuWyCqANP2/7waj3VjFhT0+j/6e +KeC2uAloGRwYQw== +-----END CERTIFICATE----- + +# Issuer: CN=AffirmTrust Premium ECC O=AffirmTrust +# Subject: CN=AffirmTrust Premium ECC O=AffirmTrust +# Label: "AffirmTrust Premium ECC" +# Serial: 8401224907861490260 +# MD5 Fingerprint: 64:b0:09:55:cf:b1:d5:99:e2:be:13:ab:a6:5d:ea:4d +# SHA1 Fingerprint: b8:23:6b:00:2f:1d:16:86:53:01:55:6c:11:a4:37:ca:eb:ff:c3:bb +# SHA256 Fingerprint: bd:71:fd:f6:da:97:e4:cf:62:d1:64:7a:dd:25:81:b0:7d:79:ad:f8:39:7e:b4:ec:ba:9c:5e:84:88:82:14:23 +-----BEGIN CERTIFICATE----- +MIIB/jCCAYWgAwIBAgIIdJclisc/elQwCgYIKoZIzj0EAwMwRTELMAkGA1UEBhMC +VVMxFDASBgNVBAoMC0FmZmlybVRydXN0MSAwHgYDVQQDDBdBZmZpcm1UcnVzdCBQ +cmVtaXVtIEVDQzAeFw0xMDAxMjkxNDIwMjRaFw00MDEyMzExNDIwMjRaMEUxCzAJ +BgNVBAYTAlVTMRQwEgYDVQQKDAtBZmZpcm1UcnVzdDEgMB4GA1UEAwwXQWZmaXJt +VHJ1c3QgUHJlbWl1bSBFQ0MwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQNMF4bFZ0D +0KF5Nbc6PJJ6yhUczWLznCZcBz3lVPqj1swS6vQUX+iOGasvLkjmrBhDeKzQN8O9 +ss0s5kfiGuZjuD0uL3jET9v0D6RoTFVya5UdThhClXjMNzyR4ptlKymjQjBAMB0G +A1UdDgQWBBSaryl6wBE1NSZRMADDav5A1a7WPDAPBgNVHRMBAf8EBTADAQH/MA4G +A1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNnADBkAjAXCfOHiFBar8jAQr9HX/Vs +aobgxCd05DhT1wV/GzTjxi+zygk8N53X57hG8f2h4nECMEJZh0PUUd+60wkyWs6I +flc9nF9Ca/UHLbXwgpP5WW+uZPpY5Yse42O+tYHNbwKMeQ== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA" +# Serial: 279744 +# MD5 Fingerprint: d5:e9:81:40:c5:18:69:fc:46:2c:89:75:62:0f:aa:78 +# SHA1 Fingerprint: 07:e0:32:e0:20:b7:2c:3f:19:2f:06:28:a2:59:3a:19:a7:0f:06:9e +# SHA256 Fingerprint: 5c:58:46:8d:55:f5:8e:49:7e:74:39:82:d2:b5:00:10:b6:d1:65:37:4a:cf:83:a7:d4:a3:2d:b7:68:c4:40:8e +-----BEGIN CERTIFICATE----- +MIIDuzCCAqOgAwIBAgIDBETAMA0GCSqGSIb3DQEBBQUAMH4xCzAJBgNVBAYTAlBM +MSIwIAYDVQQKExlVbml6ZXRvIFRlY2hub2xvZ2llcyBTLkEuMScwJQYDVQQLEx5D +ZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxIjAgBgNVBAMTGUNlcnR1bSBU +cnVzdGVkIE5ldHdvcmsgQ0EwHhcNMDgxMDIyMTIwNzM3WhcNMjkxMjMxMTIwNzM3 +WjB+MQswCQYDVQQGEwJQTDEiMCAGA1UEChMZVW5pemV0byBUZWNobm9sb2dpZXMg +Uy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MSIw +IAYDVQQDExlDZXJ0dW0gVHJ1c3RlZCBOZXR3b3JrIENBMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEA4/t9o3K6wvDJFIf1awFO4W5AB7ptJ11/91sts1rH +UV+rpDKmYYe2bg+G0jACl/jXaVehGDldamR5xgFZrDwxSjh80gTSSyjoIF87B6LM +TXPb865Px1bVWqeWifrzq2jUI4ZZJ88JJ7ysbnKDHDBy3+Ci6dLhdHUZvSqeexVU +BBvXQzmtVSjF4hq79MDkrjhJM8x2hZ85RdKknvISjFH4fOQtf/WsX+sWn7Et0brM +kUJ3TCXJkDhv2/DM+44el1k+1WBO5gUo7Ul5E0u6SNsv+XLTOcr+H9g0cvW0QM8x +AcPs3hEtF10fuFDRXhmnad4HMyjKUJX5p1TLVIZQRan5SQIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBQIds3LB/8k9sXN7buQvOKEN0Z19zAOBgNV +HQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQEFBQADggEBAKaorSLOAT2mo/9i0Eidi15y +sHhE49wcrwn9I0j6vSrEuVUEtRCjjSfeC4Jj0O7eDDd5QVsisrCaQVymcODU0HfL +I9MA4GxWL+FpDQ3Zqr8hgVDZBqWo/5U30Kr+4rP1mS1FhIrlQgnXdAIv94nYmem8 +J9RHjboNRhx3zxSkHLmkMcScKHQDNP8zGSal6Q10tz6XxnboJ5ajZt3hrvJBW8qY +VoNzcOSGGtIxQbovvi0TWnZvTuhOgQ4/WwMioBK+ZlgRSssDxLQqKi2WF+A5VLxI +03YnnZotBqbJ7DnSq9ufmgsnAjUpsUCV5/nonFWIGUbWtzT1fs45mtk48VH3Tyw= +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Root Certification Authority O=TAIWAN-CA OU=Root CA +# Label: "TWCA Root Certification Authority" +# Serial: 1 +# MD5 Fingerprint: aa:08:8f:f6:f9:7b:b7:f2:b1:a7:1e:9b:ea:ea:bd:79 +# SHA1 Fingerprint: cf:9e:87:6d:d3:eb:fc:42:26:97:a3:b5:a3:7a:a0:76:a9:06:23:48 +# SHA256 Fingerprint: bf:d8:8f:e1:10:1c:41:ae:3e:80:1b:f8:be:56:35:0e:e9:ba:d1:a6:b9:bd:51:5e:dc:5c:6d:5b:87:11:ac:44 +-----BEGIN CERTIFICATE----- +MIIDezCCAmOgAwIBAgIBATANBgkqhkiG9w0BAQUFADBfMQswCQYDVQQGEwJUVzES +MBAGA1UECgwJVEFJV0FOLUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFU +V0NBIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMDgwODI4MDcyNDMz +WhcNMzAxMjMxMTU1OTU5WjBfMQswCQYDVQQGEwJUVzESMBAGA1UECgwJVEFJV0FO +LUNBMRAwDgYDVQQLDAdSb290IENBMSowKAYDVQQDDCFUV0NBIFJvb3QgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIB +AQCwfnK4pAOU5qfeCTiRShFAh6d8WWQUe7UREN3+v9XAu1bihSX0NXIP+FPQQeFE +AcK0HMMxQhZHhTMidrIKbw/lJVBPhYa+v5guEGcevhEFhgWQxFnQfHgQsIBct+HH +K3XLfJ+utdGdIzdjp9xCoi2SBBtQwXu4PhvJVgSLL1KbralW6cH/ralYhzC2gfeX +RfwZVzsrb+RH9JlF/h3x+JejiB03HFyP4HYlmlD4oFT/RJB2I9IyxsOrBr/8+7/z +rX2SYgJbKdM1o5OaQ2RgXbL6Mv87BK9NQGr5x+PvI/1ry+UPizgN7gr8/g+YnzAx +3WxSZfmLgb4i4RxYA7qRG4kHAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqOFsmjd6LWvJPelSDGRjjCDWmujANBgkq +hkiG9w0BAQUFAAOCAQEAPNV3PdrfibqHDAhUaiBQkr6wQT25JmSDCi/oQMCXKCeC +MErJk/9q56YAf4lCmtYR5VPOL8zy2gXE/uJQxDqGfczafhAJO5I1KlOy/usrBdls +XebQ79NqZp4VKIV66IIArB6nCWlWQtNoURi+VJq/REG6Sb4gumlc7rh3zc5sH62D +lhh9DrUUOYTxKOkto557HnpyWoOzeW/vtPzQCqVYT0bf+215WfKEIlKuD8z7fDvn +aspHYcN6+NOSBB+4IIThNlQWx0DeO4pz3N/GCUzf7Nr/1FNCocnyYh0igzyXxfkZ +YiesZSLX0zzG5Y6yU8xJzrww/nsOM5D77dIUkR8Hrw== +-----END CERTIFICATE----- + +# Issuer: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Subject: O=SECOM Trust Systems CO.,LTD. OU=Security Communication RootCA2 +# Label: "Security Communication RootCA2" +# Serial: 0 +# MD5 Fingerprint: 6c:39:7d:a4:0e:55:59:b2:3f:d6:41:b1:12:50:de:43 +# SHA1 Fingerprint: 5f:3b:8c:f2:f8:10:b3:7d:78:b4:ce:ec:19:19:c3:73:34:b9:c7:74 +# SHA256 Fingerprint: 51:3b:2c:ec:b8:10:d4:cd:e5:dd:85:39:1a:df:c6:c2:dd:60:d8:7b:b7:36:d2:b5:21:48:4a:a4:7a:0e:be:f6 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIBADANBgkqhkiG9w0BAQsFADBdMQswCQYDVQQGEwJKUDEl +MCMGA1UEChMcU0VDT00gVHJ1c3QgU3lzdGVtcyBDTy4sTFRELjEnMCUGA1UECxMe +U2VjdXJpdHkgQ29tbXVuaWNhdGlvbiBSb290Q0EyMB4XDTA5MDUyOTA1MDAzOVoX +DTI5MDUyOTA1MDAzOVowXTELMAkGA1UEBhMCSlAxJTAjBgNVBAoTHFNFQ09NIFRy +dXN0IFN5c3RlbXMgQ08uLExURC4xJzAlBgNVBAsTHlNlY3VyaXR5IENvbW11bmlj +YXRpb24gUm9vdENBMjCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBANAV +OVKxUrO6xVmCxF1SrjpDZYBLx/KWvNs2l9amZIyoXvDjChz335c9S672XewhtUGr +zbl+dp+++T42NKA7wfYxEUV0kz1XgMX5iZnK5atq1LXaQZAQwdbWQonCv/Q4EpVM +VAX3NuRFg3sUZdbcDE3R3n4MqzvEFb46VqZab3ZpUql6ucjrappdUtAtCms1FgkQ +hNBqyjoGADdH5H5XTz+L62e4iKrFvlNVspHEfbmwhRkGeC7bYRr6hfVKkaHnFtWO +ojnflLhwHyg/i/xAXmODPIMqGplrz95Zajv8bxbXH/1KEOtOghY6rCcMU/Gt1SSw +awNQwS08Ft1ENCcadfsCAwEAAaNCMEAwHQYDVR0OBBYEFAqFqXdlBZh8QIH4D5cs +OPEK7DzPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MA0GCSqGSIb3 +DQEBCwUAA4IBAQBMOqNErLlFsceTfsgLCkLfZOoc7llsCLqJX2rKSpWeeo8HxdpF +coJxDjrSzG+ntKEju/Ykn8sX/oymzsLS28yN/HH8AynBbF0zX2S2ZTuJbxh2ePXc +okgfGT+Ok+vx+hfuzU7jBBJV1uXk3fs+BXziHV7Gp7yXT2g69ekuCkO2r1dcYmh8 +t/2jioSgrGK+KwmHNPBqAbubKVY8/gA3zyNs8U6qtnRGEmyR7jTV7JqR50S+kDFy +1UkC9gLl9B/rfNmWVan/7Ir5mUf/NVoCqgTLiluHcSmRvaS0eg29mvVXIwAHIRc/ +SjnRBUkLp7Y3gaVdjKozXoEofKd9J+sAro03 +-----END CERTIFICATE----- + +# Issuer: CN=EC-ACC O=Agencia Catalana de Certificacio (NIF Q-0801176-I) OU=Serveis Publics de Certificacio/Vegeu https://www.catcert.net/verarrel (c)03/Jerarquia Entitats de Certificacio Catalanes +# Subject: CN=EC-ACC O=Agencia Catalana de Certificacio (NIF Q-0801176-I) OU=Serveis Publics de Certificacio/Vegeu https://www.catcert.net/verarrel (c)03/Jerarquia Entitats de Certificacio Catalanes +# Label: "EC-ACC" +# Serial: -23701579247955709139626555126524820479 +# MD5 Fingerprint: eb:f5:9d:29:0d:61:f9:42:1f:7c:c2:ba:6d:e3:15:09 +# SHA1 Fingerprint: 28:90:3a:63:5b:52:80:fa:e6:77:4c:0b:6d:a7:d6:ba:a6:4a:f2:e8 +# SHA256 Fingerprint: 88:49:7f:01:60:2f:31:54:24:6a:e2:8c:4d:5a:ef:10:f1:d8:7e:bb:76:62:6f:4a:e0:b7:f9:5b:a7:96:87:99 +-----BEGIN CERTIFICATE----- +MIIFVjCCBD6gAwIBAgIQ7is969Qh3hSoYqwE893EATANBgkqhkiG9w0BAQUFADCB +8zELMAkGA1UEBhMCRVMxOzA5BgNVBAoTMkFnZW5jaWEgQ2F0YWxhbmEgZGUgQ2Vy +dGlmaWNhY2lvIChOSUYgUS0wODAxMTc2LUkpMSgwJgYDVQQLEx9TZXJ2ZWlzIFB1 +YmxpY3MgZGUgQ2VydGlmaWNhY2lvMTUwMwYDVQQLEyxWZWdldSBodHRwczovL3d3 +dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAoYykwMzE1MDMGA1UECxMsSmVyYXJxdWlh +IEVudGl0YXRzIGRlIENlcnRpZmljYWNpbyBDYXRhbGFuZXMxDzANBgNVBAMTBkVD +LUFDQzAeFw0wMzAxMDcyMzAwMDBaFw0zMTAxMDcyMjU5NTlaMIHzMQswCQYDVQQG +EwJFUzE7MDkGA1UEChMyQWdlbmNpYSBDYXRhbGFuYSBkZSBDZXJ0aWZpY2FjaW8g +KE5JRiBRLTA4MDExNzYtSSkxKDAmBgNVBAsTH1NlcnZlaXMgUHVibGljcyBkZSBD +ZXJ0aWZpY2FjaW8xNTAzBgNVBAsTLFZlZ2V1IGh0dHBzOi8vd3d3LmNhdGNlcnQu +bmV0L3ZlcmFycmVsIChjKTAzMTUwMwYDVQQLEyxKZXJhcnF1aWEgRW50aXRhdHMg +ZGUgQ2VydGlmaWNhY2lvIENhdGFsYW5lczEPMA0GA1UEAxMGRUMtQUNDMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAsyLHT+KXQpWIR4NA9h0X84NzJB5R +85iKw5K4/0CQBXCHYMkAqbWUZRkiFRfCQ2xmRJoNBD45b6VLeqpjt4pEndljkYRm +4CgPukLjbo73FCeTae6RDqNfDrHrZqJyTxIThmV6PttPB/SnCWDaOkKZx7J/sxaV +HMf5NLWUhdWZXqBIoH7nF2W4onW4HvPlQn2v7fOKSGRdghST2MDk/7NQcvJ29rNd +QlB50JQ+awwAvthrDk4q7D7SzIKiGGUzE3eeml0aE9jD2z3Il3rucO2n5nzbcc8t +lGLfbdb1OL4/pYUKGbio2Al1QnDE6u/LDsg0qBIimAy4E5S2S+zw0JDnJwIDAQAB +o4HjMIHgMB0GA1UdEQQWMBSBEmVjX2FjY0BjYXRjZXJ0Lm5ldDAPBgNVHRMBAf8E +BTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUoMOLRKo3pUW/l4Ba0fF4 +opvpXY0wfwYDVR0gBHgwdjB0BgsrBgEEAfV4AQMBCjBlMCwGCCsGAQUFBwIBFiBo +dHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbDA1BggrBgEFBQcCAjApGidW +ZWdldSBodHRwczovL3d3dy5jYXRjZXJ0Lm5ldC92ZXJhcnJlbCAwDQYJKoZIhvcN +AQEFBQADggEBAKBIW4IB9k1IuDlVNZyAelOZ1Vr/sXE7zDkJlF7W2u++AVtd0x7Y +/X1PzaBB4DSTv8vihpw3kpBWHNzrKQXlxJ7HNd+KDM3FIUPpqojlNcAZQmNaAl6k +SBg6hW/cnbw/nZzBh7h6YQjpdwt/cKt63dmXLGQehb+8dJahw3oS7AwaboMMPOhy +Rp/7SNVel+axofjk70YllJyJ22k4vuxcDlbHZVHlUIiIv0LVKz3l+bqeLrPK9HOS +Agu+TGbrIP65y7WZf+a2E/rKS03Z7lNGBjvGTq2TWoF+bCpLagVFjPIhpDGQh2xl +nJ2lYJU6Un/10asIbvPuW/mIPX64b24D5EI= +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2011 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2011 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2011" +# Serial: 0 +# MD5 Fingerprint: 73:9f:4c:4b:73:5b:79:e9:fa:ba:1c:ef:6e:cb:d5:c9 +# SHA1 Fingerprint: fe:45:65:9b:79:03:5b:98:a1:61:b5:51:2e:ac:da:58:09:48:22:4d +# SHA256 Fingerprint: bc:10:4f:15:a4:8b:e7:09:dc:a5:42:a7:e1:d4:b9:df:6f:05:45:27:e8:02:ea:a9:2d:59:54:44:25:8a:fe:71 +-----BEGIN CERTIFICATE----- +MIIEMTCCAxmgAwIBAgIBADANBgkqhkiG9w0BAQUFADCBlTELMAkGA1UEBhMCR1Ix +RDBCBgNVBAoTO0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgQ2VydC4gQXV0aG9yaXR5MUAwPgYDVQQDEzdIZWxsZW5pYyBBY2FkZW1p +YyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIFJvb3RDQSAyMDExMB4XDTExMTIw +NjEzNDk1MloXDTMxMTIwMTEzNDk1MlowgZUxCzAJBgNVBAYTAkdSMUQwQgYDVQQK +EztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0dXRpb25zIENl +cnQuIEF1dGhvcml0eTFAMD4GA1UEAxM3SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBSb290Q0EgMjAxMTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBAKlTAOMupvaO+mDYLZU++CwqVE7NuYRhlFhPjz2L5EPz +dYmNUeTDN9KKiE15HrcS3UN4SoqS5tdI1Q+kOilENbgH9mgdVc04UfCMJDGFr4PJ +fel3r+0ae50X+bOdOFAPplp5kYCvN66m0zH7tSYJnTxa71HFK9+WXesyHgLacEns +bgzImjeN9/E2YEsmLIKe0HjzDQ9jpFEw4fkrJxIH2Oq9GGKYsFk3fb7u8yBRQlqD +75O6aRXxYp2fmTmCobd0LovUxQt7L/DICto9eQqakxylKHJzkUOap9FNhYS5qXSP +FEDH3N6sQWRstBmbAmNtJGSPRLIl6s5ddAxjMlyNh+UCAwEAAaOBiTCBhjAPBgNV +HRMBAf8EBTADAQH/MAsGA1UdDwQEAwIBBjAdBgNVHQ4EFgQUppFC/RNhSiOeCKQp +5dgTBCPuQSUwRwYDVR0eBEAwPqA8MAWCAy5ncjAFggMuZXUwBoIELmVkdTAGggQu +b3JnMAWBAy5ncjAFgQMuZXUwBoEELmVkdTAGgQQub3JnMA0GCSqGSIb3DQEBBQUA +A4IBAQAf73lB4XtuP7KMhjdCSk4cNx6NZrokgclPEg8hwAOXhiVtXdMiKahsog2p +6z0GW5k6x8zDmjR/qw7IThzh+uTczQ2+vyT+bOdrwg3IBp5OjWEopmr95fZi6hg8 +TqBTnbI6nOulnJEWtk2C4AwFSKls9cz4y51JtPACpf1wA+2KIaWuE4ZJwzNzvoc7 +dIsXRSZMFpGD/md9zU1jZ/rzAxKWeAaNsWftjj++n08C9bMJL/NMh98qy5V8Acys +Nnq/onN694/BtZqhFLKPM58N7yLcZnuEvUUXBj08yrl3NI/K6s8/MT7jiOOASSXI +l7WdmplNsDz4SgCbZN2fOUvRJ9e4 +-----END CERTIFICATE----- + +# Issuer: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Subject: CN=Actalis Authentication Root CA O=Actalis S.p.A./03358520967 +# Label: "Actalis Authentication Root CA" +# Serial: 6271844772424770508 +# MD5 Fingerprint: 69:c1:0d:4f:07:a3:1b:c3:fe:56:3d:04:bc:11:f6:a6 +# SHA1 Fingerprint: f3:73:b3:87:06:5a:28:84:8a:f2:f3:4a:ce:19:2b:dd:c7:8e:9c:ac +# SHA256 Fingerprint: 55:92:60:84:ec:96:3a:64:b9:6e:2a:be:01:ce:0b:a8:6a:64:fb:fe:bc:c7:aa:b5:af:c1:55:b3:7f:d7:60:66 +-----BEGIN CERTIFICATE----- +MIIFuzCCA6OgAwIBAgIIVwoRl0LE48wwDQYJKoZIhvcNAQELBQAwazELMAkGA1UE +BhMCSVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8w +MzM1ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290 +IENBMB4XDTExMDkyMjExMjIwMloXDTMwMDkyMjExMjIwMlowazELMAkGA1UEBhMC +SVQxDjAMBgNVBAcMBU1pbGFuMSMwIQYDVQQKDBpBY3RhbGlzIFMucC5BLi8wMzM1 +ODUyMDk2NzEnMCUGA1UEAwweQWN0YWxpcyBBdXRoZW50aWNhdGlvbiBSb290IENB +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAp8bEpSmkLO/lGMWwUKNv +UTufClrJwkg4CsIcoBh/kbWHuUA/3R1oHwiD1S0eiKD4j1aPbZkCkpAW1V8IbInX +4ay8IMKx4INRimlNAJZaby/ARH6jDuSRzVju3PvHHkVH3Se5CAGfpiEd9UEtL0z9 +KK3giq0itFZljoZUj5NDKd45RnijMCO6zfB9E1fAXdKDa0hMxKufgFpbOr3JpyI/ +gCczWw63igxdBzcIy2zSekciRDXFzMwujt0q7bd9Zg1fYVEiVRvjRuPjPdA1Yprb +rxTIW6HMiRvhMCb8oJsfgadHHwTrozmSBp+Z07/T6k9QnBn+locePGX2oxgkg4YQ +51Q+qDp2JE+BIcXjDwL4k5RHILv+1A7TaLndxHqEguNTVHnd25zS8gebLra8Pu2F +be8lEfKXGkJh90qX6IuxEAf6ZYGyojnP9zz/GPvG8VqLWeICrHuS0E4UT1lF9gxe +KF+w6D9Fz8+vm2/7hNN3WpVvrJSEnu68wEqPSpP4RCHiMUVhUE4Q2OM1fEwZtN4F +v6MGn8i1zeQf1xcGDXqVdFUNaBr8EBtiZJ1t4JWgw5QHVw0U5r0F+7if5t+L4sbn +fpb2U8WANFAoWPASUHEXMLrmeGO89LKtmyuy/uE5jF66CyCU3nuDuP/jVo23Eek7 +jPKxwV2dpAtMK9myGPW1n0sCAwEAAaNjMGEwHQYDVR0OBBYEFFLYiDrIn3hm7Ynz +ezhwlMkCAjbQMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUUtiIOsifeGbt +ifN7OHCUyQICNtAwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAL +e3KHwGCmSUyIWOYdiPcUZEim2FgKDk8TNd81HdTtBjHIgT5q1d07GjLukD0R0i70 +jsNjLiNmsGe+b7bAEzlgqqI0JZN1Ut6nna0Oh4lScWoWPBkdg/iaKWW+9D+a2fDz +WochcYBNy+A4mz+7+uAwTc+G02UQGRjRlwKxK3JCaKygvU5a2hi/a5iB0P2avl4V +SM0RFbnAKVy06Ij3Pjaut2L9HmLecHgQHEhb2rykOLpn7VU+Xlff1ANATIGk0k9j +pwlCCRT8AKnCgHNPLsBA2RF7SOp6AsDT6ygBJlh0wcBzIm2Tlf05fbsq4/aC4yyX +X04fkZT6/iyj2HYauE2yOE+b+h1IYHkm4vP9qdCa6HCPSXrW5b0KDtst842/6+Ok +fcvHlXHo2qN8xcL4dJIEG4aspCJTQLas/kx2z/uUMsA1n3Y/buWQbqCmJqK4LL7R +K4X9p2jIugErsWx0Hbhzlefut8cl8ABMALJ+tguLHPPAUJ4lueAI3jZm/zel0btU +ZCzJJ7VLkn5l/9Mt4blOvH+kQSGQQXemOR/qnuOf0GZvBeyqdn6/axag67XH/JJU +LysRJyU3eExRarDzzFhdFPFqSBX/wge2sY0PjlxQRrM9vwGYT7JZVEc+NHt4bVaT +LnPqZih4zR0Uv6CPLy64Lo7yFIrM6bV8+2ydDKXhlg== +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 2 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 2 Root CA" +# Serial: 2 +# MD5 Fingerprint: 46:a7:d2:fe:45:fb:64:5a:a8:59:90:9b:78:44:9b:29 +# SHA1 Fingerprint: 49:0a:75:74:de:87:0a:47:fe:58:ee:f6:c7:6b:eb:c6:0b:12:40:99 +# SHA256 Fingerprint: 9a:11:40:25:19:7c:5b:b9:5d:94:e6:3d:55:cd:43:79:08:47:b6:46:b2:3c:df:11:ad:a4:a0:0e:ff:15:fb:48 +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMiBSb290IENBMB4XDTEwMTAyNjA4MzgwM1oXDTQwMTAyNjA4MzgwM1ow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDIgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBANfHXvfBB9R3+0Mh9PT1aeTuMgHbo4Yf5FkNuud1g1Lr +6hxhFUi7HQfKjK6w3Jad6sNgkoaCKHOcVgb/S2TwDCo3SbXlzwx87vFKu3MwZfPV +L4O2fuPn9Z6rYPnT8Z2SdIrkHJasW4DptfQxh6NR/Md+oW+OU3fUl8FVM5I+GC91 +1K2GScuVr1QGbNgGE41b/+EmGVnAJLqBcXmQRFBoJJRfuLMR8SlBYaNByyM21cHx +MlAQTn/0hpPshNOOvEu/XAFOBz3cFIqUCqTqc/sLUegTBxj6DvEr0VQVfTzh97QZ +QmdiXnfgolXsttlpF9U6r0TtSsWe5HonfOV116rLJeffawrbD02TTqigzXsu8lkB +arcNuAeBfos4GzjmCleZPe4h6KP1DBbdi+w0jpwqHAAVF41og9JwnxgIzRFo1clr +Us3ERo/ctfPYV3Me6ZQ5BL/T3jjetFPsaRyifsSP5BtwrfKi+fv3FmRmaZ9JUaLi +FRhnBkp/1Wy1TbMz4GHrXb7pmA8y1x1LPC5aAVKRCfLf6o3YBkBjqhHk/sM3nhRS +P/TizPJhk9H9Z2vXUq6/aKtAQ6BXNVN48FP4YUIHZMbXb5tMOA1jrGKvNouicwoN +9SG9dKpN6nIDSdvHXx1iY8f93ZHsM+71bbRuMGjeyNYmsHVee7QHIJihdjK4TWxP +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFMmAd+BikoL1Rpzz +uvdMw964o605MA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAU18h +9bqwOlI5LJKwbADJ784g7wbylp7ppHR/ehb8t/W2+xUbP6umwHJdELFx7rxP462s +A20ucS6vxOOto70MEae0/0qyexAQH6dXQbLArvQsWdZHEIjzIVEpMMpghq9Gqx3t +OluwlN5E40EIosHsHdb9T7bWR9AUC8rmyrV7d35BH16Dx7aMOZawP5aBQW9gkOLo ++fsicdl9sz1Gv7SEr5AcD48Saq/v7h56rgJKihcrdv6sVIkkLE8/trKnToyokZf7 +KcZ7XC25y2a2t6hbElGFtQl+Ynhw/qlqYLYdDnkM/crqJIByw5c/8nerQyIKx+u2 +DISCLIBrQYoIwOula9+ZEsuK1V6ADJHgJgg2SMX6OBE1/yWDLfJ6v9r9jv6ly0Us +H8SIU653DtmadsWOLB2jutXsMq7Aqqz30XpN69QH4kj3Io6wpJ9qzo6ysmD0oyLQ +I+uUWnpp3Q+/QFesa1lQ2aOZ4W7+jQF5JyMV3pKdewlNWudLSDBaGOYKbeaP4NK7 +5t98biGCwWg5TbSYWGZizEqQXsP6JwSxeRV0mcy+rSDeJmAc61ZRpqPq5KM/p/9h +3PFaTWwyI0PurKju7koSCTxdccK+efrCh2gdC/1cacwG0Jp9VJkqyTkaGa9LKkPz +Y11aWOIv4x3kqdbQCtCev9eBCfHJxyYNrJgWVqA= +-----END CERTIFICATE----- + +# Issuer: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Subject: CN=Buypass Class 3 Root CA O=Buypass AS-983163327 +# Label: "Buypass Class 3 Root CA" +# Serial: 2 +# MD5 Fingerprint: 3d:3b:18:9e:2c:64:5a:e8:d5:88:ce:0e:f9:37:c2:ec +# SHA1 Fingerprint: da:fa:f7:fa:66:84:ec:06:8f:14:50:bd:c7:c2:81:a5:bc:a9:64:57 +# SHA256 Fingerprint: ed:f7:eb:bc:a2:7a:2a:38:4d:38:7b:7d:40:10:c6:66:e2:ed:b4:84:3e:4c:29:b4:ae:1d:5b:93:32:e6:b2:4d +-----BEGIN CERTIFICATE----- +MIIFWTCCA0GgAwIBAgIBAjANBgkqhkiG9w0BAQsFADBOMQswCQYDVQQGEwJOTzEd +MBsGA1UECgwUQnV5cGFzcyBBUy05ODMxNjMzMjcxIDAeBgNVBAMMF0J1eXBhc3Mg +Q2xhc3MgMyBSb290IENBMB4XDTEwMTAyNjA4Mjg1OFoXDTQwMTAyNjA4Mjg1OFow +TjELMAkGA1UEBhMCTk8xHTAbBgNVBAoMFEJ1eXBhc3MgQVMtOTgzMTYzMzI3MSAw +HgYDVQQDDBdCdXlwYXNzIENsYXNzIDMgUm9vdCBDQTCCAiIwDQYJKoZIhvcNAQEB +BQADggIPADCCAgoCggIBAKXaCpUWUOOV8l6ddjEGMnqb8RB2uACatVI2zSRHsJ8Y +ZLya9vrVediQYkwiL944PdbgqOkcLNt4EemOaFEVcsfzM4fkoF0LXOBXByow9c3E +N3coTRiR5r/VUv1xLXA+58bEiuPwKAv0dpihi4dVsjoT/Lc+JzeOIuOoTyrvYLs9 +tznDDgFHmV0ST9tD+leh7fmdvhFHJlsTmKtdFoqwNxxXnUX/iJY2v7vKB3tvh2PX +0DJq1l1sDPGzbjniazEuOQAnFN44wOwZZoYS6J1yFhNkUsepNxz9gjDthBgd9K5c +/3ATAOux9TN6S9ZV+AWNS2mw9bMoNlwUxFFzTWsL8TQH2xc519woe2v1n/MuwU8X +KhDzzMro6/1rqy6any2CbgTUUgGTLT2G/H783+9CHaZr77kgxve9oKeV/afmiSTY +zIw0bOIjL9kSGiG5VZFvC5F5GQytQIgLcOJ60g7YaEi7ghM5EFjp2CoHxhLbWNvS +O1UQRwUVZ2J+GGOmRj8JDlQyXr8NYnon74Do29lLBlo3WiXQCBJ31G8JUJc9yB3D +34xFMFbG02SrZvPAXpacw8Tvw3xrizp5f7NJzz3iiZ+gMEuFuZyUJHmPfWupRWgP +K9Dx2hzLabjKSWJtyNBjYt1gD1iqj6G8BaVmos8bdrKEZLFMOVLAMLrwjEsCsLa3 +AgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFEe4zf/lb+74suwv +Tg75JbCOPGvDMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAACAj +QTUEkMJAYmDv4jVM1z+s4jSQuKFvdvoWFqRINyzpkMLyPPgKn9iB5btb2iUspKdV +cSQy9sgL8rxq+JOssgfCX5/bzMiKqr5qb+FJEMwx14C7u8jYog5kV+qi9cKpMRXS +IGrs/CIBKM+GuIAeqcwRpTzyFrNHnfzSgCHEy9BHcEGhyoMZCCxt8l13nIoUE9Q2 +HJLw5QY33KbmkJs4j1xrG0aGQ0JfPgEHU1RdZX33inOhmlRaHylDFCfChQ+1iHsa +O5S3HWCntZznKWlXWpuTekMwGwPXYshApqr8ZORK15FTAaggiG6cX0S5y2CBNOxv +033aSF/rtJC8LakcC6wc1aJoIIAE1vyxjy+7SjENSoYc6+I2KSb12tjE8nVhz36u +dmNKekBlk4f4HoCMhuWG1o8O/FMsYOgWYRqiPkN7zTlgVGr18okmAWiDSKIz6MkE +kbIRNBE+6tBDGR8Dk5AM/1E9V/RBbuHLoL7ryWPNbczk+DaqaJ3tvV2XcEQNtg41 +3OEMXbugUZTLfhbrES+jkkXITHHZvMmZUldGL1DPvTVp9D0VzgalLA8+9oG6lLvD +u79leNKGef9JOxqDDPDeeOzI8k1MGt6CKfjBWtrt7uYnXuhF0J0cUahoq0Tj0Itq +4/g7u9xN12TyUb7mqqta6THuBrxzvxNiCp/HuZc= +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 3 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 3" +# Serial: 1 +# MD5 Fingerprint: ca:fb:40:a8:4e:39:92:8a:1d:fe:8e:2f:c4:27:ea:ef +# SHA1 Fingerprint: 55:a6:72:3e:cb:f2:ec:cd:c3:23:74:70:19:9d:2a:be:11:e3:81:d1 +# SHA256 Fingerprint: fd:73:da:d3:1c:64:4f:f1:b4:3b:ef:0c:cd:da:96:71:0b:9c:d9:87:5e:ca:7e:31:70:7a:f3:e9:6d:52:2b:bd +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDMwHhcNMDgxMDAxMTAyOTU2WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDMwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC9dZPwYiJvJK7genasfb3ZJNW4t/zN +8ELg63iIVl6bmlQdTQyK9tPPcPRStdiTBONGhnFBSivwKixVA9ZIw+A5OO3yXDw/ +RLyTPWGrTs0NvvAgJ1gORH8EGoel15YUNpDQSXuhdfsaa3Ox+M6pCSzyU9XDFES4 +hqX2iys52qMzVNn6chr3IhUciJFrf2blw2qAsCTz34ZFiP0Zf3WHHx+xGwpzJFu5 +ZeAsVMhg02YXP+HMVDNzkQI6pn97djmiH5a2OK61yJN0HZ65tOVgnS9W0eDrXltM +EnAMbEQgqxHY9Bn20pxSN+f6tsIxO0rUFJmtxxr1XV/6B7h8DR/Wgx6zAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS1 +A/d2O2GCahKqGFPrAyGUv/7OyjANBgkqhkiG9w0BAQsFAAOCAQEAVj3vlNW92nOy +WL6ukK2YJ5f+AbGwUgC4TeQbIXQbfsDuXmkqJa9c1h3a0nnJ85cp4IaH3gRZD/FZ +1GSFS5mvJQQeyUapl96Cshtwn5z2r3Ex3XsFpSzTucpH9sry9uetuUg/vBa3wW30 +6gmv7PO15wWeph6KU1HWk4HMdJP2udqmJQV0eVp+QD6CSyYRMG7hP0HHRwA11fXT +91Q+gT3aSWqas+8QPebrb9HIIkfLzM8BMZLZGOMivgkeGj5asuRrDFR6fUNOuIml +e9eiPZaGzPImNC1qkp2aGtAw4l1OBLBfiyB+d8E9lYLRRpo7PHi4b6HQDWSieB4p +TpPDpFQUWw== +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 2009" +# Serial: 623603 +# MD5 Fingerprint: cd:e0:25:69:8d:47:ac:9c:89:35:90:f7:fd:51:3d:2f +# SHA1 Fingerprint: 58:e8:ab:b0:36:15:33:fb:80:f7:9b:1b:6d:29:d3:ff:8d:5f:00:f0 +# SHA256 Fingerprint: 49:e7:a4:42:ac:f0:ea:62:87:05:00:54:b5:25:64:b6:50:e4:f4:9e:42:e3:48:d6:aa:38:e0:39:e9:57:b1:c1 +-----BEGIN CERTIFICATE----- +MIIEMzCCAxugAwIBAgIDCYPzMA0GCSqGSIb3DQEBCwUAME0xCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMMHkQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgMjAwOTAeFw0wOTExMDUwODM1NThaFw0yOTExMDUwODM1NTha +ME0xCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxJzAlBgNVBAMM +HkQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgMjAwOTCCASIwDQYJKoZIhvcNAQEB +BQADggEPADCCAQoCggEBANOySs96R+91myP6Oi/WUEWJNTrGa9v+2wBoqOADER03 +UAifTUpolDWzU9GUY6cgVq/eUXjsKj3zSEhQPgrfRlWLJ23DEE0NkVJD2IfgXU42 +tSHKXzlABF9bfsyjxiupQB7ZNoTWSPOSHjRGICTBpFGOShrvUD9pXRl/RcPHAY9R +ySPocq60vFYJfxLLHLGvKZAKyVXMD9O0Gu1HNVpK7ZxzBCHQqr0ME7UAyiZsxGsM +lFqVlNpQmvH/pStmMaTJOKDfHR+4CS7zp+hnUquVH+BGPtikw8paxTGA6Eian5Rp +/hnd2HN8gcqW3o7tszIFZYQ05ub9VxC1X3a/L7AQDcUCAwEAAaOCARowggEWMA8G +A1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFP3aFMSfMN4hvR5COfyrYyNJ4PGEMA4G +A1UdDwEB/wQEAwIBBjCB0wYDVR0fBIHLMIHIMIGAoH6gfIZ6bGRhcDovL2RpcmVj +dG9yeS5kLXRydXN0Lm5ldC9DTj1ELVRSVVNUJTIwUm9vdCUyMENsYXNzJTIwMyUy +MENBJTIwMiUyMDIwMDksTz1ELVRydXN0JTIwR21iSCxDPURFP2NlcnRpZmljYXRl +cmV2b2NhdGlvbmxpc3QwQ6BBoD+GPWh0dHA6Ly93d3cuZC10cnVzdC5uZXQvY3Js +L2QtdHJ1c3Rfcm9vdF9jbGFzc18zX2NhXzJfMjAwOS5jcmwwDQYJKoZIhvcNAQEL +BQADggEBAH+X2zDI36ScfSF6gHDOFBJpiBSVYEQBrLLpME+bUMJm2H6NMLVwMeni +acfzcNsgFYbQDfC+rAF1hM5+n02/t2A7nPPKHeJeaNijnZflQGDSNiH+0LS4F9p0 +o3/U37CYAqxva2ssJSRyoWXuJVrl5jLn8t+rSfrzkGkj2wTZ51xY/GXUl77M/C4K +zCUqNQT4YJEVdT1B/yMfGchs64JTBKbkTCJNjYy6zltz7GRUUG3RnFX7acM2w4y8 +PIWmawomDeCTmGCufsYkl4phX5GOZpIJhzbNi5stPvZR1FDUWSi9g/LMKHtThm3Y +Johw1+qRzT65ysCQblrGXnRl11z+o+I= +-----END CERTIFICATE----- + +# Issuer: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Subject: CN=D-TRUST Root Class 3 CA 2 EV 2009 O=D-Trust GmbH +# Label: "D-TRUST Root Class 3 CA 2 EV 2009" +# Serial: 623604 +# MD5 Fingerprint: aa:c6:43:2c:5e:2d:cd:c4:34:c0:50:4f:11:02:4f:b6 +# SHA1 Fingerprint: 96:c9:1b:0b:95:b4:10:98:42:fa:d0:d8:22:79:fe:60:fa:b9:16:83 +# SHA256 Fingerprint: ee:c5:49:6b:98:8c:e9:86:25:b9:34:09:2e:ec:29:08:be:d0:b0:f3:16:c2:d4:73:0c:84:ea:f1:f3:d3:48:81 +-----BEGIN CERTIFICATE----- +MIIEQzCCAyugAwIBAgIDCYP0MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNVBAYTAkRF +MRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNVBAMMIUQtVFJVU1QgUm9vdCBD +bGFzcyAzIENBIDIgRVYgMjAwOTAeFw0wOTExMDUwODUwNDZaFw0yOTExMDUwODUw +NDZaMFAxCzAJBgNVBAYTAkRFMRUwEwYDVQQKDAxELVRydXN0IEdtYkgxKjAoBgNV +BAMMIUQtVFJVU1QgUm9vdCBDbGFzcyAzIENBIDIgRVYgMjAwOTCCASIwDQYJKoZI +hvcNAQEBBQADggEPADCCAQoCggEBAJnxhDRwui+3MKCOvXwEz75ivJn9gpfSegpn +ljgJ9hBOlSJzmY3aFS3nBfwZcyK3jpgAvDw9rKFs+9Z5JUut8Mxk2og+KbgPCdM0 +3TP1YtHhzRnp7hhPTFiu4h7WDFsVWtg6uMQYZB7jM7K1iXdODL/ZlGsTl28So/6Z +qQTMFexgaDbtCHu39b+T7WYxg4zGcTSHThfqr4uRjRxWQa4iN1438h3Z0S0NL2lR +p75mpoo6Kr3HGrHhFPC+Oh25z1uxav60sUYgovseO3Dvk5h9jHOW8sXvhXCtKSb8 +HgQ+HKDYD8tSg2J87otTlZCpV6LqYQXY+U3EJ/pure3511H3a6UCAwEAAaOCASQw +ggEgMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFNOUikxiEyoZLsyvcop9Ntea +HNxnMA4GA1UdDwEB/wQEAwIBBjCB3QYDVR0fBIHVMIHSMIGHoIGEoIGBhn9sZGFw +Oi8vZGlyZWN0b3J5LmQtdHJ1c3QubmV0L0NOPUQtVFJVU1QlMjBSb290JTIwQ2xh +c3MlMjAzJTIwQ0ElMjAyJTIwRVYlMjAyMDA5LE89RC1UcnVzdCUyMEdtYkgsQz1E +RT9jZXJ0aWZpY2F0ZXJldm9jYXRpb25saXN0MEagRKBChkBodHRwOi8vd3d3LmQt +dHJ1c3QubmV0L2NybC9kLXRydXN0X3Jvb3RfY2xhc3NfM19jYV8yX2V2XzIwMDku +Y3JsMA0GCSqGSIb3DQEBCwUAA4IBAQA07XtaPKSUiO8aEXUHL7P+PPoeUSbrh/Yp +3uDx1MYkCenBz1UbtDDZzhr+BlGmFaQt77JLvyAoJUnRpjZ3NOhk31KxEcdzes05 +nsKtjHEh8lprr988TlWvsoRlFIm5d8sqMb7Po23Pb0iUMkZv53GMoKaEGTcH8gNF +CSuGdXzfX2lXANtu2KZyIktQ1HWYVt+3GP9DQ1CuekR78HlR10M9p9OB0/DJT7na +xpeG0ILD5EJt/rDiZE4OJudANCa1CInXCGNjOCd1HjPqbqjdn5lPdE2BiYBL3ZqX +KVwvvoFBuYz/6n1gBp7N1z3TLqMVvKjmJuVvw9y4AyHqnxbxLFS1 +-----END CERTIFICATE----- + +# Issuer: CN=CA Disig Root R2 O=Disig a.s. +# Subject: CN=CA Disig Root R2 O=Disig a.s. +# Label: "CA Disig Root R2" +# Serial: 10572350602393338211 +# MD5 Fingerprint: 26:01:fb:d8:27:a7:17:9a:45:54:38:1a:43:01:3b:03 +# SHA1 Fingerprint: b5:61:eb:ea:a4:de:e4:25:4b:69:1a:98:a5:57:47:c2:34:c7:d9:71 +# SHA256 Fingerprint: e2:3d:4a:03:6d:7b:70:e9:f5:95:b1:42:20:79:d2:b9:1e:df:bb:1f:b6:51:a0:63:3e:aa:8a:9d:c5:f8:07:03 +-----BEGIN CERTIFICATE----- +MIIFaTCCA1GgAwIBAgIJAJK4iNuwisFjMA0GCSqGSIb3DQEBCwUAMFIxCzAJBgNV +BAYTAlNLMRMwEQYDVQQHEwpCcmF0aXNsYXZhMRMwEQYDVQQKEwpEaXNpZyBhLnMu +MRkwFwYDVQQDExBDQSBEaXNpZyBSb290IFIyMB4XDTEyMDcxOTA5MTUzMFoXDTQy +MDcxOTA5MTUzMFowUjELMAkGA1UEBhMCU0sxEzARBgNVBAcTCkJyYXRpc2xhdmEx +EzARBgNVBAoTCkRpc2lnIGEucy4xGTAXBgNVBAMTEENBIERpc2lnIFJvb3QgUjIw +ggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCio8QACdaFXS1tFPbCw3Oe +NcJxVX6B+6tGUODBfEl45qt5WDza/3wcn9iXAng+a0EE6UG9vgMsRfYvZNSrXaNH +PWSb6WiaxswbP7q+sos0Ai6YVRn8jG+qX9pMzk0DIaPY0jSTVpbLTAwAFjxfGs3I +x2ymrdMxp7zo5eFm1tL7A7RBZckQrg4FY8aAamkw/dLukO8NJ9+flXP04SXabBbe +QTg06ov80egEFGEtQX6sx3dOy1FU+16SGBsEWmjGycT6txOgmLcRK7fWV8x8nhfR +yyX+hk4kLlYMeE2eARKmK6cBZW58Yh2EhN/qwGu1pSqVg8NTEQxzHQuyRpDRQjrO +QG6Vrf/GlK1ul4SOfW+eioANSW1z4nuSHsPzwfPrLgVv2RvPN3YEyLRa5Beny912 +H9AZdugsBbPWnDTYltxhh5EF5EQIM8HauQhl1K6yNg3ruji6DOWbnuuNZt2Zz9aJ +QfYEkoopKW1rOhzndX0CcQ7zwOe9yxndnWCywmZgtrEE7snmhrmaZkCo5xHtgUUD +i/ZnWejBBhG93c+AAk9lQHhcR1DIm+YfgXvkRKhbhZri3lrVx/k6RGZL5DJUfORs +nLMOPReisjQS1n6yqEm70XooQL6iFh/f5DcfEXP7kAplQ6INfPgGAVUzfbANuPT1 +rqVCV3w2EYx7XsQDnYx5nQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1Ud +DwEB/wQEAwIBBjAdBgNVHQ4EFgQUtZn4r7CU9eMg1gqtzk5WpC5uQu0wDQYJKoZI +hvcNAQELBQADggIBACYGXnDnZTPIgm7ZnBc6G3pmsgH2eDtpXi/q/075KMOYKmFM +tCQSin1tERT3nLXK5ryeJ45MGcipvXrA1zYObYVybqjGom32+nNjf7xueQgcnYqf +GopTpti72TVVsRHFqQOzVju5hJMiXn7B9hJSi+osZ7z+Nkz1uM/Rs0mSO9MpDpkb +lvdhuDvEK7Z4bLQjb/D907JedR+Zlais9trhxTF7+9FGs9K8Z7RiVLoJ92Owk6Ka ++elSLotgEqv89WBW7xBci8QaQtyDW2QOy7W81k/BfDxujRNt+3vrMNDcTa/F1bal +TFtxyegxvug4BkihGuLq0t4SOVga/4AOgnXmt8kHbA7v/zjxmHHEt38OFdAlab0i +nSvtBfZGR6ztwPDUO+Ls7pZbkBNOHlY667DvlruWIxG68kOGdGSVyCh13x01utI3 +gzhTODY7z2zp+WsO0PsE6E9312UBeIYMej4hYvF/Y3EMyZ9E26gnonW+boE+18Dr +G5gPcFw0sorMwIUY6256s/daoQe/qUKS82Ail+QUoQebTnbAjn39pCXHR+3/H3Os +zMOl6W8KjptlwlCFtaOgUxLMVYdh84GuEEZhvUQhuMI9dM9+JDX6HAcOmz0iyu8x +L4ysEr3vQCj8KWefshNPZiTEUxnpHikV7+ZtsH8tZ/3zbBt1RqPlShfppNcL +-----END CERTIFICATE----- + +# Issuer: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Subject: CN=ACCVRAIZ1 O=ACCV OU=PKIACCV +# Label: "ACCVRAIZ1" +# Serial: 6828503384748696800 +# MD5 Fingerprint: d0:a0:5a:ee:05:b6:09:94:21:a1:7d:f1:b2:29:82:02 +# SHA1 Fingerprint: 93:05:7a:88:15:c6:4f:ce:88:2f:fa:91:16:52:28:78:bc:53:64:17 +# SHA256 Fingerprint: 9a:6e:c0:12:e1:a7:da:9d:be:34:19:4d:47:8a:d7:c0:db:18:22:fb:07:1d:f1:29:81:49:6e:d1:04:38:41:13 +-----BEGIN CERTIFICATE----- +MIIH0zCCBbugAwIBAgIIXsO3pkN/pOAwDQYJKoZIhvcNAQEFBQAwQjESMBAGA1UE +AwwJQUNDVlJBSVoxMRAwDgYDVQQLDAdQS0lBQ0NWMQ0wCwYDVQQKDARBQ0NWMQsw +CQYDVQQGEwJFUzAeFw0xMTA1MDUwOTM3MzdaFw0zMDEyMzEwOTM3MzdaMEIxEjAQ +BgNVBAMMCUFDQ1ZSQUlaMTEQMA4GA1UECwwHUEtJQUNDVjENMAsGA1UECgwEQUND +VjELMAkGA1UEBhMCRVMwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCb +qau/YUqXry+XZpp0X9DZlv3P4uRm7x8fRzPCRKPfmt4ftVTdFXxpNRFvu8gMjmoY +HtiP2Ra8EEg2XPBjs5BaXCQ316PWywlxufEBcoSwfdtNgM3802/J+Nq2DoLSRYWo +G2ioPej0RGy9ocLLA76MPhMAhN9KSMDjIgro6TenGEyxCQ0jVn8ETdkXhBilyNpA +lHPrzg5XPAOBOp0KoVdDaaxXbXmQeOW1tDvYvEyNKKGno6e6Ak4l0Squ7a4DIrhr +IA8wKFSVf+DuzgpmndFALW4ir50awQUZ0m/A8p/4e7MCQvtQqR0tkw8jq8bBD5L/ +0KIV9VMJcRz/RROE5iZe+OCIHAr8Fraocwa48GOEAqDGWuzndN9wrqODJerWx5eH +k6fGioozl2A3ED6XPm4pFdahD9GILBKfb6qkxkLrQaLjlUPTAYVtjrs78yM2x/47 +4KElB0iryYl0/wiPgL/AlmXz7uxLaL2diMMxs0Dx6M/2OLuc5NF/1OVYm3z61PMO +m3WR5LpSLhl+0fXNWhn8ugb2+1KoS5kE3fj5tItQo05iifCHJPqDQsGH+tUtKSpa +cXpkatcnYGMN285J9Y0fkIkyF/hzQ7jSWpOGYdbhdQrqeWZ2iE9x6wQl1gpaepPl +uUsXQA+xtrn13k/c4LOsOxFwYIRKQ26ZIMApcQrAZQIDAQABo4ICyzCCAscwfQYI +KwYBBQUHAQEEcTBvMEwGCCsGAQUFBzAChkBodHRwOi8vd3d3LmFjY3YuZXMvZmls +ZWFkbWluL0FyY2hpdm9zL2NlcnRpZmljYWRvcy9yYWl6YWNjdjEuY3J0MB8GCCsG +AQUFBzABhhNodHRwOi8vb2NzcC5hY2N2LmVzMB0GA1UdDgQWBBTSh7Tj3zcnk1X2 +VuqB5TbMjB4/vTAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFNKHtOPfNyeT +VfZW6oHlNsyMHj+9MIIBcwYDVR0gBIIBajCCAWYwggFiBgRVHSAAMIIBWDCCASIG +CCsGAQUFBwICMIIBFB6CARAAQQB1AHQAbwByAGkAZABhAGQAIABkAGUAIABDAGUA +cgB0AGkAZgBpAGMAYQBjAGkA8wBuACAAUgBhAO0AegAgAGQAZQAgAGwAYQAgAEEA +QwBDAFYAIAAoAEEAZwBlAG4AYwBpAGEAIABkAGUAIABUAGUAYwBuAG8AbABvAGcA +7QBhACAAeQAgAEMAZQByAHQAaQBmAGkAYwBhAGMAaQDzAG4AIABFAGwAZQBjAHQA +cgDzAG4AaQBjAGEALAAgAEMASQBGACAAUQA0ADYAMAAxADEANQA2AEUAKQAuACAA +QwBQAFMAIABlAG4AIABoAHQAdABwADoALwAvAHcAdwB3AC4AYQBjAGMAdgAuAGUA +czAwBggrBgEFBQcCARYkaHR0cDovL3d3dy5hY2N2LmVzL2xlZ2lzbGFjaW9uX2Mu +aHRtMFUGA1UdHwROMEwwSqBIoEaGRGh0dHA6Ly93d3cuYWNjdi5lcy9maWxlYWRt +aW4vQXJjaGl2b3MvY2VydGlmaWNhZG9zL3JhaXphY2N2MV9kZXIuY3JsMA4GA1Ud +DwEB/wQEAwIBBjAXBgNVHREEEDAOgQxhY2N2QGFjY3YuZXMwDQYJKoZIhvcNAQEF +BQADggIBAJcxAp/n/UNnSEQU5CmH7UwoZtCPNdpNYbdKl02125DgBS4OxnnQ8pdp +D70ER9m+27Up2pvZrqmZ1dM8MJP1jaGo/AaNRPTKFpV8M9xii6g3+CfYCS0b78gU +JyCpZET/LtZ1qmxNYEAZSUNUY9rizLpm5U9EelvZaoErQNV/+QEnWCzI7UiRfD+m +AM/EKXMRNt6GGT6d7hmKG9Ww7Y49nCrADdg9ZuM8Db3VlFzi4qc1GwQA9j9ajepD +vV+JHanBsMyZ4k0ACtrJJ1vnE5Bc5PUzolVt3OAJTS+xJlsndQAJxGJ3KQhfnlms +tn6tn1QwIgPBHnFk/vk4CpYY3QIUrCPLBhwepH2NDd4nQeit2hW3sCPdK6jT2iWH +7ehVRE2I9DZ+hJp4rPcOVkkO1jMl1oRQQmwgEh0q1b688nCBpHBgvgW1m54ERL5h +I6zppSSMEYCUWqKiuUnSwdzRp+0xESyeGabu4VXhwOrPDYTkF7eifKXeVSUG7szA +h1xA2syVP1XgNce4hL60Xc16gwFy7ofmXx2utYXGJt/mwZrpHgJHnyqobalbz+xF +d3+YJ5oyXSrjhO7FmGYvliAd3djDJ9ew+f7Zfc3Qn48LFFhRny+Lwzgt3uiP1o2H +pPVWQxaZLPSkVrQ0uGE3ycJYgBugl6H8WY3pEfbRD0tVNEYqi4Y7 +-----END CERTIFICATE----- + +# Issuer: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Subject: CN=TWCA Global Root CA O=TAIWAN-CA OU=Root CA +# Label: "TWCA Global Root CA" +# Serial: 3262 +# MD5 Fingerprint: f9:03:7e:cf:e6:9e:3c:73:7a:2a:90:07:69:ff:2b:96 +# SHA1 Fingerprint: 9c:bb:48:53:f6:a4:f6:d3:52:a4:e8:32:52:55:60:13:f5:ad:af:65 +# SHA256 Fingerprint: 59:76:90:07:f7:68:5d:0f:cd:50:87:2f:9f:95:d5:75:5a:5b:2b:45:7d:81:f3:69:2b:61:0a:98:67:2f:0e:1b +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgICDL4wDQYJKoZIhvcNAQELBQAwUTELMAkGA1UEBhMCVFcx +EjAQBgNVBAoTCVRBSVdBTi1DQTEQMA4GA1UECxMHUm9vdCBDQTEcMBoGA1UEAxMT +VFdDQSBHbG9iYWwgUm9vdCBDQTAeFw0xMjA2MjcwNjI4MzNaFw0zMDEyMzExNTU5 +NTlaMFExCzAJBgNVBAYTAlRXMRIwEAYDVQQKEwlUQUlXQU4tQ0ExEDAOBgNVBAsT +B1Jvb3QgQ0ExHDAaBgNVBAMTE1RXQ0EgR2xvYmFsIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCwBdvI64zEbooh745NnHEKH1Jw7W2CnJfF +10xORUnLQEK1EjRsGcJ0pDFfhQKX7EMzClPSnIyOt7h52yvVavKOZsTuKwEHktSz +0ALfUPZVr2YOy+BHYC8rMjk1Ujoog/h7FsYYuGLWRyWRzvAZEk2tY/XTP3VfKfCh +MBwqoJimFb3u/Rk28OKRQ4/6ytYQJ0lM793B8YVwm8rqqFpD/G2Gb3PpN0Wp8DbH +zIh1HrtsBv+baz4X7GGqcXzGHaL3SekVtTzWoWH1EfcFbx39Eb7QMAfCKbAJTibc +46KokWofwpFFiFzlmLhxpRUZyXx1EcxwdE8tmx2RRP1WKKD+u4ZqyPpcC1jcxkt2 +yKsi2XMPpfRaAok/T54igu6idFMqPVMnaR1sjjIsZAAmY2E2TqNGtz99sy2sbZCi +laLOz9qC5wc0GZbpuCGqKX6mOL6OKUohZnkfs8O1CWfe1tQHRvMq2uYiN2DLgbYP +oA/pyJV/v1WRBXrPPRXAb94JlAGD1zQbzECl8LibZ9WYkTunhHiVJqRaCPgrdLQA +BDzfuBSO6N+pjWxnkjMdwLfS7JLIvgm/LCkFbwJrnu+8vyq8W8BQj0FwcYeyTbcE +qYSjMq+u7msXi7Kx/mzhkIyIqJdIzshNy/MGz19qCkKxHh53L46g5pIOBvwFItIm +4TFRfTLcDwIDAQABoyMwITAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zANBgkqhkiG9w0BAQsFAAOCAgEAXzSBdu+WHdXltdkCY4QWwa6gcFGn90xHNcgL +1yg9iXHZqjNB6hQbbCEAwGxCGX6faVsgQt+i0trEfJdLjbDorMjupWkEmQqSpqsn +LhpNgb+E1HAerUf+/UqdM+DyucRFCCEK2mlpc3INvjT+lIutwx4116KD7+U4x6WF +H6vPNOw/KP4M8VeGTslV9xzU2KV9Bnpv1d8Q34FOIWWxtuEXeZVFBs5fzNxGiWNo +RI2T9GRwoD2dKAXDOXC4Ynsg/eTb6QihuJ49CcdP+yz4k3ZB3lLg4VfSnQO8d57+ +nile98FRYB/e2guyLXW3Q0iT5/Z5xoRdgFlglPx4mI88k1HtQJAH32RjJMtOcQWh +15QaiDLxInQirqWm2BJpTGCjAu4r7NRjkgtevi92a6O2JryPA9gK8kxkRr05YuWW +6zRjESjMlfGt7+/cgFhI6Uu46mWs6fyAtbXIRfmswZ/ZuepiiI7E8UuDEq3mi4TW +nsLrgxifarsbJGAzcMzs9zLzXNl5fe+epP7JI8Mk7hWSsT2RTyaGvWZzJBPqpK5j +wa19hAM8EHiGG3njxPPyBJUgriOCxLM6AGK/5jYk4Ve6xx6QddVfP5VhK8E7zeWz +aGHQRiapIVJpLesux+t3zqY6tQMzT3bR51xUAV3LePTJDL/PEo4XLSNolOer/qmy +KwbQBM0= +-----END CERTIFICATE----- + +# Issuer: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Subject: CN=TeliaSonera Root CA v1 O=TeliaSonera +# Label: "TeliaSonera Root CA v1" +# Serial: 199041966741090107964904287217786801558 +# MD5 Fingerprint: 37:41:49:1b:18:56:9a:26:f5:ad:c2:66:fb:40:a5:4c +# SHA1 Fingerprint: 43:13:bb:96:f1:d5:86:9b:c1:4e:6a:92:f6:cf:f6:34:69:87:82:37 +# SHA256 Fingerprint: dd:69:36:fe:21:f8:f0:77:c1:23:a1:a5:21:c1:22:24:f7:22:55:b7:3e:03:a7:26:06:93:e8:a2:4b:0f:a3:89 +-----BEGIN CERTIFICATE----- +MIIFODCCAyCgAwIBAgIRAJW+FqD3LkbxezmCcvqLzZYwDQYJKoZIhvcNAQEFBQAw +NzEUMBIGA1UECgwLVGVsaWFTb25lcmExHzAdBgNVBAMMFlRlbGlhU29uZXJhIFJv +b3QgQ0EgdjEwHhcNMDcxMDE4MTIwMDUwWhcNMzIxMDE4MTIwMDUwWjA3MRQwEgYD +VQQKDAtUZWxpYVNvbmVyYTEfMB0GA1UEAwwWVGVsaWFTb25lcmEgUm9vdCBDQSB2 +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMK+6yfwIaPzaSZVfp3F +VRaRXP3vIb9TgHot0pGMYzHw7CTww6XScnwQbfQ3t+XmfHnqjLWCi65ItqwA3GV1 +7CpNX8GH9SBlK4GoRz6JI5UwFpB/6FcHSOcZrr9FZ7E3GwYq/t75rH2D+1665I+X +Z75Ljo1kB1c4VWk0Nj0TSO9P4tNmHqTPGrdeNjPUtAa9GAH9d4RQAEX1jF3oI7x+ +/jXh7VB7qTCNGdMJjmhnXb88lxhTuylixcpecsHHltTbLaC0H2kD7OriUPEMPPCs +81Mt8Bz17Ww5OXOAFshSsCPN4D7c3TxHoLs1iuKYaIu+5b9y7tL6pe0S7fyYGKkm +dtwoSxAgHNN/Fnct7W+A90m7UwW7XWjH1Mh1Fj+JWov3F0fUTPHSiXk+TT2YqGHe +Oh7S+F4D4MHJHIzTjU3TlTazN19jY5szFPAtJmtTfImMMsJu7D0hADnJoWjiUIMu +sDor8zagrC/kb2HCUQk5PotTubtn2txTuXZZNp1D5SDgPTJghSJRt8czu90VL6R4 +pgd7gUY2BIbdeTXHlSw7sKMXNeVzH7RcWe/a6hBle3rQf5+ztCo3O3CLm1u5K7fs +slESl1MpWtTwEhDcTwK7EpIvYtQ/aUN8Ddb8WHUBiJ1YFkveupD/RwGJBmr2X7KQ +arMCpgKIv7NHfirZ1fpoeDVNAgMBAAGjPzA9MA8GA1UdEwEB/wQFMAMBAf8wCwYD +VR0PBAQDAgEGMB0GA1UdDgQWBBTwj1k4ALP1j5qWDNXr+nuqF+gTEjANBgkqhkiG +9w0BAQUFAAOCAgEAvuRcYk4k9AwI//DTDGjkk0kiP0Qnb7tt3oNmzqjMDfz1mgbl +dxSR651Be5kqhOX//CHBXfDkH1e3damhXwIm/9fH907eT/j3HEbAek9ALCI18Bmx +0GtnLLCo4MBANzX2hFxc469CeP6nyQ1Q6g2EdvZR74NTxnr/DlZJLo961gzmJ1Tj +TQpgcmLNkQfWpb/ImWvtxBnmq0wROMVvMeJuScg/doAmAyYp4Db29iBT4xdwNBed +Y2gea+zDTYa4EzAvXUYNR0PVG6pZDrlcjQZIrXSHX8f8MVRBE+LHIQ6e4B4N4cB7 +Q4WQxYpYxmUKeFfyxiMPAdkgS94P+5KFdSpcc41teyWRyu5FrgZLAMzTsVlQ2jqI +OylDRl6XK1TOU2+NSueW+r9xDkKLfP0ooNBIytrEgUy7onOTJsjrDNYmiLbAJM+7 +vVvrdX3pCI6GMyx5dwlppYn8s3CQh3aP0yK7Qs69cwsgJirQmz1wHiRszYd2qReW +t88NkvuOGKmYSdGe/mBEciG5Ge3C9THxOUiIkCR1VBatzvT4aRRkOfujuLpwQMcn +HL/EVlP6Y2XQ8xwOFvVrhlhNGNTkDY6lnVuR3HYkUD/GKvvZt5y11ubQ2egZixVx +SK236thZiNSQvxaz2emsWWFUyBy6ysHK4bkgTI86k4mloMy/0/Z1pHWWbVY= +-----END CERTIFICATE----- + +# Issuer: CN=E-Tugra Certification Authority O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e. OU=E-Tugra Sertifikasyon Merkezi +# Subject: CN=E-Tugra Certification Authority O=E-Tu\u011fra EBG Bili\u015fim Teknolojileri ve Hizmetleri A.\u015e. OU=E-Tugra Sertifikasyon Merkezi +# Label: "E-Tugra Certification Authority" +# Serial: 7667447206703254355 +# MD5 Fingerprint: b8:a1:03:63:b0:bd:21:71:70:8a:6f:13:3a:bb:79:49 +# SHA1 Fingerprint: 51:c6:e7:08:49:06:6e:f3:92:d4:5c:a0:0d:6d:a3:62:8f:c3:52:39 +# SHA256 Fingerprint: b0:bf:d5:2b:b0:d7:d9:bd:92:bf:5d:4d:c1:3d:a2:55:c0:2c:54:2f:37:83:65:ea:89:39:11:f5:5e:55:f2:3c +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIIamg+nFGby1MwDQYJKoZIhvcNAQELBQAwgbIxCzAJBgNV +BAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+BgNVBAoMN0UtVHXEn3JhIEVCRyBC +aWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhpem1ldGxlcmkgQS7Fni4xJjAkBgNV +BAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBNZXJrZXppMSgwJgYDVQQDDB9FLVR1 +Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MB4XDTEzMDMwNTEyMDk0OFoXDTIz +MDMwMzEyMDk0OFowgbIxCzAJBgNVBAYTAlRSMQ8wDQYDVQQHDAZBbmthcmExQDA+ +BgNVBAoMN0UtVHXEn3JhIEVCRyBCaWxpxZ9pbSBUZWtub2xvamlsZXJpIHZlIEhp +em1ldGxlcmkgQS7Fni4xJjAkBgNVBAsMHUUtVHVncmEgU2VydGlmaWthc3lvbiBN +ZXJrZXppMSgwJgYDVQQDDB9FLVR1Z3JhIENlcnRpZmljYXRpb24gQXV0aG9yaXR5 +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA4vU/kwVRHoViVF56C/UY +B4Oufq9899SKa6VjQzm5S/fDxmSJPZQuVIBSOTkHS0vdhQd2h8y/L5VMzH2nPbxH +D5hw+IyFHnSOkm0bQNGZDbt1bsipa5rAhDGvykPL6ys06I+XawGb1Q5KCKpbknSF +Q9OArqGIW66z6l7LFpp3RMih9lRozt6Plyu6W0ACDGQXwLWTzeHxE2bODHnv0ZEo +q1+gElIwcxmOj+GMB6LDu0rw6h8VqO4lzKRG+Bsi77MOQ7osJLjFLFzUHPhdZL3D +k14opz8n8Y4e0ypQBaNV2cvnOVPAmJ6MVGKLJrD3fY185MaeZkJVgkfnsliNZvcH +fC425lAcP9tDJMW/hkd5s3kc91r0E+xs+D/iWR+V7kI+ua2oMoVJl0b+SzGPWsut +dEcf6ZG33ygEIqDUD13ieU/qbIWGvaimzuT6w+Gzrt48Ue7LE3wBf4QOXVGUnhMM +ti6lTPk5cDZvlsouDERVxcr6XQKj39ZkjFqzAQqptQpHF//vkUAqjqFGOjGY5RH8 +zLtJVor8udBhmm9lbObDyz51Sf6Pp+KJxWfXnUYTTjF2OySznhFlhqt/7x3U+Lzn +rFpct1pHXFXOVbQicVtbC/DP3KBhZOqp12gKY6fgDT+gr9Oq0n7vUaDmUStVkhUX +U8u3Zg5mTPj5dUyQ5xJwx0UCAwEAAaNjMGEwHQYDVR0OBBYEFC7j27JJ0JxUeVz6 +Jyr+zE7S6E5UMA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAULuPbsknQnFR5 +XPonKv7MTtLoTlQwDgYDVR0PAQH/BAQDAgEGMA0GCSqGSIb3DQEBCwUAA4ICAQAF +Nzr0TbdF4kV1JI+2d1LoHNgQk2Xz8lkGpD4eKexd0dCrfOAKkEh47U6YA5n+KGCR +HTAduGN8qOY1tfrTYXbm1gdLymmasoR6d5NFFxWfJNCYExL/u6Au/U5Mh/jOXKqY +GwXgAEZKgoClM4so3O0409/lPun++1ndYYRP0lSWE2ETPo+Aab6TR7U1Q9Jauz1c +77NCR807VRMGsAnb/WP2OogKmW9+4c4bU2pEZiNRCHu8W1Ki/QY3OEBhj0qWuJA3 ++GbHeJAAFS6LrVE1Uweoa2iu+U48BybNCAVwzDk/dr2l02cmAYamU9JgO3xDf1WK +vJUawSg5TB9D0pH0clmKuVb8P7Sd2nCcdlqMQ1DujjByTd//SffGqWfZbawCEeI6 +FiWnWAjLb1NBnEg4R2gz0dfHj9R0IdTDBZB6/86WiLEVKV0jq9BgoRJP3vQXzTLl +yb/IQ639Lo7xr+L0mPoSHyDYwKcMhcWQ9DstliaxLL5Mq+ux0orJ23gTDx4JnW2P +AJ8C2sH6H3p6CcRK5ogql5+Ji/03X186zjhZhkuvcQu02PJwT58yE+Owp1fl2tpD +y4Q08ijE6m30Ku/Ba3ba+367hTzSU8JNvnHhRdH9I2cNE3X7z2VnIp2usAnRCf8d +NL/+I5c30jn6PQ0GC7TbO6Orb1wdtn7os4I07QZcJA== +-----END CERTIFICATE----- + +# Issuer: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Subject: CN=T-TeleSec GlobalRoot Class 2 O=T-Systems Enterprise Services GmbH OU=T-Systems Trust Center +# Label: "T-TeleSec GlobalRoot Class 2" +# Serial: 1 +# MD5 Fingerprint: 2b:9b:9e:e4:7b:6c:1f:00:72:1a:cc:c1:77:79:df:6a +# SHA1 Fingerprint: 59:0d:2d:7d:88:4f:40:2e:61:7e:a5:62:32:17:65:cf:17:d8:94:e9 +# SHA256 Fingerprint: 91:e2:f5:78:8d:58:10:eb:a7:ba:58:73:7d:e1:54:8a:8e:ca:cd:01:45:98:bc:0b:14:3e:04:1b:17:05:25:52 +-----BEGIN CERTIFICATE----- +MIIDwzCCAqugAwIBAgIBATANBgkqhkiG9w0BAQsFADCBgjELMAkGA1UEBhMCREUx +KzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnByaXNlIFNlcnZpY2VzIEdtYkgxHzAd +BgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50ZXIxJTAjBgNVBAMMHFQtVGVsZVNl +YyBHbG9iYWxSb290IENsYXNzIDIwHhcNMDgxMDAxMTA0MDE0WhcNMzMxMDAxMjM1 +OTU5WjCBgjELMAkGA1UEBhMCREUxKzApBgNVBAoMIlQtU3lzdGVtcyBFbnRlcnBy +aXNlIFNlcnZpY2VzIEdtYkgxHzAdBgNVBAsMFlQtU3lzdGVtcyBUcnVzdCBDZW50 +ZXIxJTAjBgNVBAMMHFQtVGVsZVNlYyBHbG9iYWxSb290IENsYXNzIDIwggEiMA0G +CSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCqX9obX+hzkeXaXPSi5kfl82hVYAUd +AqSzm1nzHoqvNK38DcLZSBnuaY/JIPwhqgcZ7bBcrGXHX+0CfHt8LRvWurmAwhiC +FoT6ZrAIxlQjgeTNuUk/9k9uN0goOA/FvudocP05l03Sx5iRUKrERLMjfTlH6VJi +1hKTXrcxlkIF+3anHqP1wvzpesVsqXFP6st4vGCvx9702cu+fjOlbpSD8DT6Iavq +jnKgP6TeMFvvhk1qlVtDRKgQFRzlAVfFmPHmBiiRqiDFt1MmUUOyCxGVWOHAD3bZ +wI18gfNycJ5v/hqO2V81xrJvNHy+SE/iWjnX2J14np+GPgNeGYtEotXHAgMBAAGj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBS/ +WSA2AHmgoCJrjNXyYdK4LMuCSjANBgkqhkiG9w0BAQsFAAOCAQEAMQOiYQsfdOhy +NsZt+U2e+iKo4YFWz827n+qrkRk4r6p8FU3ztqONpfSO9kSpp+ghla0+AGIWiPAC +uvxhI+YzmzB6azZie60EI4RYZeLbK4rnJVM3YlNfvNoBYimipidx5joifsFvHZVw +IEoHNN/q/xWA5brXethbdXwFeilHfkCoMRN3zUA7tFFHei4R40cR3p1m0IvVVGb6 +g1XqfMIpiRvpb7PO4gWEyS8+eIVibslfwXhjdFjASBgMmTnrpMwatXlajRWc2BQN +9noHV8cigwUtPJslJj0Ys6lDfMjIq2SPDqO/nBudMNva0Bkuqjzx+zOAduTNrRlP +BSeOE6Fuwg== +-----END CERTIFICATE----- + +# Issuer: CN=Atos TrustedRoot 2011 O=Atos +# Subject: CN=Atos TrustedRoot 2011 O=Atos +# Label: "Atos TrustedRoot 2011" +# Serial: 6643877497813316402 +# MD5 Fingerprint: ae:b9:c4:32:4b:ac:7f:5d:66:cc:77:94:bb:2a:77:56 +# SHA1 Fingerprint: 2b:b1:f5:3e:55:0c:1d:c5:f1:d4:e6:b7:6a:46:4b:55:06:02:ac:21 +# SHA256 Fingerprint: f3:56:be:a2:44:b7:a9:1e:b3:5d:53:ca:9a:d7:86:4a:ce:01:8e:2d:35:d5:f8:f9:6d:df:68:a6:f4:1a:a4:74 +-----BEGIN CERTIFICATE----- +MIIDdzCCAl+gAwIBAgIIXDPLYixfszIwDQYJKoZIhvcNAQELBQAwPDEeMBwGA1UE +AwwVQXRvcyBUcnVzdGVkUm9vdCAyMDExMQ0wCwYDVQQKDARBdG9zMQswCQYDVQQG +EwJERTAeFw0xMTA3MDcxNDU4MzBaFw0zMDEyMzEyMzU5NTlaMDwxHjAcBgNVBAMM +FUF0b3MgVHJ1c3RlZFJvb3QgMjAxMTENMAsGA1UECgwEQXRvczELMAkGA1UEBhMC +REUwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQCVhTuXbyo7LjvPpvMp +Nb7PGKw+qtn4TaA+Gke5vJrf8v7MPkfoepbCJI419KkM/IL9bcFyYie96mvr54rM +VD6QUM+A1JX76LWC1BTFtqlVJVfbsVD2sGBkWXppzwO3bw2+yj5vdHLqqjAqc2K+ +SZFhyBH+DgMq92og3AIVDV4VavzjgsG1xZ1kCWyjWZgHJ8cblithdHFsQ/H3NYkQ +4J7sVaE3IqKHBAUsR320HLliKWYoyrfhk/WklAOZuXCFteZI6o1Q/NnezG8HDt0L +cp2AMBYHlT8oDv3FdU9T1nSatCQujgKRz3bFmx5VdJx4IbHwLfELn8LVlhgf8FQi +eowHAgMBAAGjfTB7MB0GA1UdDgQWBBSnpQaxLKYJYO7Rl+lwrrw7GWzbITAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFKelBrEspglg7tGX6XCuvDsZbNshMBgG +A1UdIAQRMA8wDQYLKwYBBAGwLQMEAQEwDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3 +DQEBCwUAA4IBAQAmdzTblEiGKkGdLD4GkGDEjKwLVLgfuXvTBznk+j57sj1O7Z8j +vZfza1zv7v1Apt+hk6EKhqzvINB5Ab149xnYJDE0BAGmuhWawyfc2E8PzBhj/5kP +DpFrdRbhIfzYJsdHt6bPWHJxfrrhTZVHO8mvbaG0weyJ9rQPOLXiZNwlz6bb65pc +maHFCN795trV1lpFDMS3wrUU77QR/w4VtfX128a961qn8FYiqTxlVMYVqL2Gns2D +lmh6cYGJ4Qvh6hEbaAjMaZ7snkGeRDImeuKHCnE96+RapNLbxc3G3mB/ufNPRJLv +KrcYPqcZ2Qt9sTdBQrC6YB3y/gkRsPCHe6ed +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 1 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 1 G3" +# Serial: 687049649626669250736271037606554624078720034195 +# MD5 Fingerprint: a4:bc:5b:3f:fe:37:9a:fa:64:f0:e2:fa:05:3d:0b:ab +# SHA1 Fingerprint: 1b:8e:ea:57:96:29:1a:c9:39:ea:b8:0a:81:1a:73:73:c0:93:79:67 +# SHA256 Fingerprint: 8a:86:6f:d1:b2:76:b5:7e:57:8e:92:1c:65:82:8a:2b:ed:58:e9:f2:f2:88:05:41:34:b7:f1:f4:bf:c9:cc:74 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIUeFhfLq0sGUvjNwc1NBMotZbUZZMwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMSBHMzAeFw0xMjAxMTIxNzI3NDRaFw00 +MjAxMTIxNzI3NDRaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDEgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCgvlAQjunybEC0BJyFuTHK3C3kEakEPBtV +wedYMB0ktMPvhd6MLOHBPd+C5k+tR4ds7FtJwUrVu4/sh6x/gpqG7D0DmVIB0jWe +rNrwU8lmPNSsAgHaJNM7qAJGr6Qc4/hzWHa39g6QDbXwz8z6+cZM5cOGMAqNF341 +68Xfuw6cwI2H44g4hWf6Pser4BOcBRiYz5P1sZK0/CPTz9XEJ0ngnjybCKOLXSoh +4Pw5qlPafX7PGglTvF0FBM+hSo+LdoINofjSxxR3W5A2B4GbPgb6Ul5jxaYA/qXp +UhtStZI5cgMJYr2wYBZupt0lwgNm3fME0UDiTouG9G/lg6AnhF4EwfWQvTA9xO+o +abw4m6SkltFi2mnAAZauy8RRNOoMqv8hjlmPSlzkYZqn0ukqeI1RPToV7qJZjqlc +3sX5kCLliEVx3ZGZbHqfPT2YfF72vhZooF6uCyP8Wg+qInYtyaEQHeTTRCOQiJ/G +KubX9ZqzWB4vMIkIG1SitZgj7Ah3HJVdYdHLiZxfokqRmu8hqkkWCKi9YSgxyXSt +hfbZxbGL0eUQMk1fiyA6PEkfM4VZDdvLCXVDaXP7a3F98N/ETH3Goy7IlXnLc6KO +Tk0k+17kBL5yG6YnLUlamXrXXAkgt3+UuU/xDRxeiEIbEbfnkduebPRq34wGmAOt +zCjvpUfzUwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUo5fW816iEOGrRZ88F2Q87gFwnMwwDQYJKoZIhvcNAQELBQAD +ggIBABj6W3X8PnrHX3fHyt/PX8MSxEBd1DKquGrX1RUVRpgjpeaQWxiZTOOtQqOC +MTaIzen7xASWSIsBx40Bz1szBpZGZnQdT+3Btrm0DWHMY37XLneMlhwqI2hrhVd2 +cDMT/uFPpiN3GPoajOi9ZcnPP/TJF9zrx7zABC4tRi9pZsMbj/7sPtPKlL92CiUN +qXsCHKnQO18LwIE6PWThv6ctTr1NxNgpxiIY0MWscgKCP6o6ojoilzHdCGPDdRS5 +YCgtW2jgFqlmgiNR9etT2DGbe+m3nUvriBbP+V04ikkwj+3x6xn0dxoxGE1nVGwv +b2X52z3sIexe9PSLymBlVNFxZPT5pqOBMzYzcfCkeF9OrYMh3jRJjehZrJ3ydlo2 +8hP0r+AJx2EqbPfgna67hkooby7utHnNkDPDs3b69fBsnQGQ+p6Q9pxyz0fawx/k +NSBT8lTR32GDpgLiJTjehTItXnOQUl1CxM49S+H5GYQd1aJQzEH7QRTDvdbJWqNj +ZgKAvQU6O0ec7AAmTPWIUb+oI38YB7AL7YsmoWTTYUrrXJ/es69nA7Mf3W1daWhp +q1467HxpvMc7hU6eFbm0FU/DlXpY18ls6Wy58yljXrQs8C097Vpl4KlbQMJImYFt +nh8GKjwStIsPm6Ik8KaN1nrgS7ZklmOVhMJKzRwuJIczYOXD +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 2 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 2 G3" +# Serial: 390156079458959257446133169266079962026824725800 +# MD5 Fingerprint: af:0c:86:6e:bf:40:2d:7f:0b:3e:12:50:ba:12:3d:06 +# SHA1 Fingerprint: 09:3c:61:f3:8b:8b:dc:7d:55:df:75:38:02:05:00:e1:25:f5:c8:36 +# SHA256 Fingerprint: 8f:e4:fb:0a:f9:3a:4d:0d:67:db:0b:eb:b2:3e:37:c7:1b:f3:25:dc:bc:dd:24:0e:a0:4d:af:58:b4:7e:18:40 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIURFc0JFuBiZs18s64KztbpybwdSgwDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMiBHMzAeFw0xMjAxMTIxODU5MzJaFw00 +MjAxMTIxODU5MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDIgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQChriWyARjcV4g/Ruv5r+LrI3HimtFhZiFf +qq8nUeVuGxbULX1QsFN3vXg6YOJkApt8hpvWGo6t/x8Vf9WVHhLL5hSEBMHfNrMW +n4rjyduYNM7YMxcoRvynyfDStNVNCXJJ+fKH46nafaF9a7I6JaltUkSs+L5u+9ym +c5GQYaYDFCDy54ejiK2toIz/pgslUiXnFgHVy7g1gQyjO/Dh4fxaXc6AcW34Sas+ +O7q414AB+6XrW7PFXmAqMaCvN+ggOp+oMiwMzAkd056OXbxMmO7FGmh77FOm6RQ1 +o9/NgJ8MSPsc9PG/Srj61YxxSscfrf5BmrODXfKEVu+lV0POKa2Mq1W/xPtbAd0j +IaFYAI7D0GoT7RPjEiuA3GfmlbLNHiJuKvhB1PLKFAeNilUSxmn1uIZoL1NesNKq +IcGY5jDjZ1XHm26sGahVpkUG0CM62+tlXSoREfA7T8pt9DTEceT/AFr2XK4jYIVz +8eQQsSWu1ZK7E8EM4DnatDlXtas1qnIhO4M15zHfeiFuuDIIfR0ykRVKYnLP43eh +vNURG3YBZwjgQQvD6xVu+KQZ2aKrr+InUlYrAoosFCT5v0ICvybIxo/gbjh9Uy3l +7ZizlWNof/k19N+IxWA1ksB8aRxhlRbQ694Lrz4EEEVlWFA4r0jyWbYW8jwNkALG +cC4BrTwV1wIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQU7edvdlq/YOxJW8ald7tyFnGbxD0wDQYJKoZIhvcNAQELBQAD +ggIBAJHfgD9DCX5xwvfrs4iP4VGyvD11+ShdyLyZm3tdquXK4Qr36LLTn91nMX66 +AarHakE7kNQIXLJgapDwyM4DYvmL7ftuKtwGTTwpD4kWilhMSA/ohGHqPHKmd+RC +roijQ1h5fq7KpVMNqT1wvSAZYaRsOPxDMuHBR//47PERIjKWnML2W2mWeyAMQ0Ga +W/ZZGYjeVYg3UQt4XAoeo0L9x52ID8DyeAIkVJOviYeIyUqAHerQbj5hLja7NQ4n +lv1mNDthcnPxFlxHBlRJAHpYErAK74X9sbgzdWqTHBLmYF5vHX/JHyPLhGGfHoJE ++V+tYlUkmlKY7VHnoX6XOuYvHxHaU4AshZ6rNRDbIl9qxV6XU/IyAgkwo1jwDQHV +csaxfGl7w/U2Rcxhbl5MlMVerugOXou/983g7aEOGzPuVBj+D77vfoRrQ+NwmNtd +dbINWQeFFSM51vHfqSYP1kjHs6Yi9TM3WpVHn3u6GBVv/9YUZINJ0gpnIdsPNWNg +KCLjsZWDzYWm3S8P52dSbrsvhXz1SnPnxT7AvSESBT/8twNJAlvIJebiVDj1eYeM +HVOyToV7BjjHLPj4sHKNJeV3UvQDHEimUF+IIDBu8oJDqz2XhOdT+yHBTw8imoa4 +WSr2Rz0ZiC3oheGe7IUIarFsNMkd7EgrO3jtZsSOeWmD3n+M +-----END CERTIFICATE----- + +# Issuer: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Subject: CN=QuoVadis Root CA 3 G3 O=QuoVadis Limited +# Label: "QuoVadis Root CA 3 G3" +# Serial: 268090761170461462463995952157327242137089239581 +# MD5 Fingerprint: df:7d:b9:ad:54:6f:68:a1:df:89:57:03:97:43:b0:d7 +# SHA1 Fingerprint: 48:12:bd:92:3c:a8:c4:39:06:e7:30:6d:27:96:e6:a4:cf:22:2e:7d +# SHA256 Fingerprint: 88:ef:81:de:20:2e:b0:18:45:2e:43:f8:64:72:5c:ea:5f:bd:1f:c2:d9:d2:05:73:07:09:c5:d8:b8:69:0f:46 +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIULvWbAiin23r/1aOp7r0DoM8Sah0wDQYJKoZIhvcNAQEL +BQAwSDELMAkGA1UEBhMCQk0xGTAXBgNVBAoTEFF1b1ZhZGlzIExpbWl0ZWQxHjAc +BgNVBAMTFVF1b1ZhZGlzIFJvb3QgQ0EgMyBHMzAeFw0xMjAxMTIyMDI2MzJaFw00 +MjAxMTIyMDI2MzJaMEgxCzAJBgNVBAYTAkJNMRkwFwYDVQQKExBRdW9WYWRpcyBM +aW1pdGVkMR4wHAYDVQQDExVRdW9WYWRpcyBSb290IENBIDMgRzMwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCzyw4QZ47qFJenMioKVjZ/aEzHs286IxSR +/xl/pcqs7rN2nXrpixurazHb+gtTTK/FpRp5PIpM/6zfJd5O2YIyC0TeytuMrKNu +FoM7pmRLMon7FhY4futD4tN0SsJiCnMK3UmzV9KwCoWdcTzeo8vAMvMBOSBDGzXR +U7Ox7sWTaYI+FrUoRqHe6okJ7UO4BUaKhvVZR74bbwEhELn9qdIoyhA5CcoTNs+c +ra1AdHkrAj80//ogaX3T7mH1urPnMNA3I4ZyYUUpSFlob3emLoG+B01vr87ERROR +FHAGjx+f+IdpsQ7vw4kZ6+ocYfx6bIrc1gMLnia6Et3UVDmrJqMz6nWB2i3ND0/k +A9HvFZcba5DFApCTZgIhsUfei5pKgLlVj7WiL8DWM2fafsSntARE60f75li59wzw +eyuxwHApw0BiLTtIadwjPEjrewl5qW3aqDCYz4ByA4imW0aucnl8CAMhZa634Ryl +sSqiMd5mBPfAdOhx3v89WcyWJhKLhZVXGqtrdQtEPREoPHtht+KPZ0/l7DxMYIBp +VzgeAVuNVejH38DMdyM0SXV89pgR6y3e7UEuFAUCf+D+IOs15xGsIs5XPd7JMG0Q +A4XN8f+MFrXBsj6IbGB/kE+V9/YtrQE5BwT6dYB9v0lQ7e/JxHwc64B+27bQ3RP+ +ydOc17KXqQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +BjAdBgNVHQ4EFgQUxhfQvKjqAkPyGwaZXSuQILnXnOQwDQYJKoZIhvcNAQELBQAD +ggIBADRh2Va1EodVTd2jNTFGu6QHcrxfYWLopfsLN7E8trP6KZ1/AvWkyaiTt3px +KGmPc+FSkNrVvjrlt3ZqVoAh313m6Tqe5T72omnHKgqwGEfcIHB9UqM+WXzBusnI +FUBhynLWcKzSt/Ac5IYp8M7vaGPQtSCKFWGafoaYtMnCdvvMujAWzKNhxnQT5Wvv +oxXqA/4Ti2Tk08HS6IT7SdEQTXlm66r99I0xHnAUrdzeZxNMgRVhvLfZkXdxGYFg +u/BYpbWcC/ePIlUnwEsBbTuZDdQdm2NnL9DuDcpmvJRPpq3t/O5jrFc/ZSXPsoaP +0Aj/uHYUbt7lJ+yreLVTubY/6CD50qi+YUbKh4yE8/nxoGibIh6BJpsQBJFxwAYf +3KDTuVan45gtf4Od34wrnDKOMpTwATwiKp9Dwi7DmDkHOHv8XgBCH/MyJnmDhPbl +8MFREsALHgQjDFSlTC9JxUrRtm5gDWv8a4uFJGS3iQ6rJUdbPM9+Sb3H6QrG2vd+ +DhcI00iX0HGS8A85PjRqHH3Y8iKuu2n0M7SmSFXRDw4m6Oy2Cy2nhTXN/VnIn9HN +PlopNLk9hM6xZdRZkZFWdSHBd575euFgndOtBBj0fOtek49TSiIp+EgrPk2GrFt/ +ywaZWWDYWGWVjUTR939+J399roD1B0y2PpxxVJkES/1Y+Zj0 +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G2" +# Serial: 15385348160840213938643033620894905419 +# MD5 Fingerprint: 92:38:b9:f8:63:24:82:65:2c:57:33:e6:fe:81:8f:9d +# SHA1 Fingerprint: a1:4b:48:d9:43:ee:0a:0e:40:90:4f:3c:e0:a4:c0:91:93:51:5d:3f +# SHA256 Fingerprint: 7d:05:eb:b6:82:33:9f:8c:94:51:ee:09:4e:eb:fe:fa:79:53:a1:14:ed:b2:f4:49:49:45:2f:ab:7d:2f:c1:85 +-----BEGIN CERTIFICATE----- +MIIDljCCAn6gAwIBAgIQC5McOtY5Z+pnI7/Dr5r0SzANBgkqhkiG9w0BAQsFADBl +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJv +b3QgRzIwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQG +EwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNl +cnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzIwggEi +MA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDZ5ygvUj82ckmIkzTz+GoeMVSA +n61UQbVH35ao1K+ALbkKz3X9iaV9JPrjIgwrvJUXCzO/GU1BBpAAvQxNEP4Htecc +biJVMWWXvdMX0h5i89vqbFCMP4QMls+3ywPgym2hFEwbid3tALBSfK+RbLE4E9Hp +EgjAALAcKxHad3A2m67OeYfcgnDmCXRwVWmvo2ifv922ebPynXApVfSr/5Vh88lA +bx3RvpO704gqu52/clpWcTs/1PPRCv4o76Pu2ZmvA9OPYLfykqGxvYmJHzDNw6Yu +YjOuFgJ3RFrngQo8p0Quebg/BLxcoIfhG69Rjs3sLPr4/m3wOnyqi+RnlTGNAgMB +AAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQW +BBTOw0q5mVXyuNtgv6l+vVa1lzan1jANBgkqhkiG9w0BAQsFAAOCAQEAyqVVjOPI +QW5pJ6d1Ee88hjZv0p3GeDgdaZaikmkuOGybfQTUiaWxMTeKySHMq2zNixya1r9I +0jJmwYrA8y8678Dj1JGG0VDjA9tzd29KOVPt3ibHtX2vK0LRdWLjSisCx1BL4Gni +lmwORGYQRI+tBev4eaymG+g3NJ1TyWGqolKvSnAWhsI6yLETcDbYz+70CjTVW0z9 +B5yiutkBclzzTcHdDrEcDcRjvq30FPuJ7KJBDkzMyFdA0G4Dqs0MjomZmWzwPDCv +ON9vvKO+KSAnq3T/EyJ43pdSVR6DtVQgA+6uwE9W3jfMw3+qBCe703e4YtsXfJwo +IhNzbM8m9Yop5w== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Assured ID Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Assured ID Root G3" +# Serial: 15459312981008553731928384953135426796 +# MD5 Fingerprint: 7c:7f:65:31:0c:81:df:8d:ba:3e:99:e2:5c:ad:6e:fb +# SHA1 Fingerprint: f5:17:a2:4f:9a:48:c6:c9:f8:a2:00:26:9f:dc:0f:48:2c:ab:30:89 +# SHA256 Fingerprint: 7e:37:cb:8b:4c:47:09:0c:ab:36:55:1b:a6:f4:5d:b8:40:68:0f:ba:16:6a:95:2d:b1:00:71:7f:43:05:3f:c2 +-----BEGIN CERTIFICATE----- +MIICRjCCAc2gAwIBAgIQC6Fa+h3foLVJRK/NJKBs7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3Qg +RzMwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBlMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSQwIgYDVQQDExtEaWdpQ2VydCBBc3N1cmVkIElEIFJvb3QgRzMwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAAQZ57ysRGXtzbg/WPuNsVepRC0FFfLvC/8QdJ+1YlJf +Zn4f5dwbRXkLzMZTCp2NXQLZqVneAlr2lSoOjThKiknGvMYDOAdfVdp+CW7if17Q +RSAPWXYQ1qAk8C3eNvJsKTmjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/ +BAQDAgGGMB0GA1UdDgQWBBTL0L2p4ZgFUaFNN6KDec6NHSrkhDAKBggqhkjOPQQD +AwNnADBkAjAlpIFFAmsSS3V0T8gj43DydXLefInwz5FyYZ5eEJJZVrmDxxDnOOlY +JjZ91eQ0hjkCMHw2U/Aw5WJjOpnitqM7mzT6HtoQknFekROn3aRukswy1vUhZscv +6pZjamVFkpUBtA== +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G2 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G2" +# Serial: 4293743540046975378534879503202253541 +# MD5 Fingerprint: e4:a6:8a:c8:54:ac:52:42:46:0a:fd:72:48:1b:2a:44 +# SHA1 Fingerprint: df:3c:24:f9:bf:d6:66:76:1b:26:80:73:fe:06:d1:cc:8d:4f:82:a4 +# SHA256 Fingerprint: cb:3c:cb:b7:60:31:e5:e0:13:8f:8d:d3:9a:23:f9:de:47:ff:c3:5e:43:c1:14:4c:ea:27:d4:6a:5a:b1:cb:5f +-----BEGIN CERTIFICATE----- +MIIDjjCCAnagAwIBAgIQAzrx5qcRqaC7KGSxHQn65TANBgkqhkiG9w0BAQsFADBh +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBH +MjAeFw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVT +MRUwEwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5j +b20xIDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEcyMIIBIjANBgkqhkiG +9w0BAQEFAAOCAQ8AMIIBCgKCAQEAuzfNNNx7a8myaJCtSnX/RrohCgiN9RlUyfuI +2/Ou8jqJkTx65qsGGmvPrC3oXgkkRLpimn7Wo6h+4FR1IAWsULecYxpsMNzaHxmx +1x7e/dfgy5SDN67sH0NO3Xss0r0upS/kqbitOtSZpLYl6ZtrAGCSYP9PIUkY92eQ +q2EGnI/yuum06ZIya7XzV+hdG82MHauVBJVJ8zUtluNJbd134/tJS7SsVQepj5Wz +tCO7TG1F8PapspUwtP1MVYwnSlcUfIKdzXOS0xZKBgyMUNGPHgm+F6HmIcr9g+UQ +vIOlCsRnKPZzFBQ9RnbDhxSJITRNrw9FDKZJobq7nMWxM4MphQIDAQABo0IwQDAP +BgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAdBgNVHQ4EFgQUTiJUIBiV +5uNu5g/6+rkS7QYXjzkwDQYJKoZIhvcNAQELBQADggEBAGBnKJRvDkhj6zHd6mcY +1Yl9PMWLSn/pvtsrF9+wX3N3KjITOYFnQoQj8kVnNeyIv/iPsGEMNKSuIEyExtv4 +NeF22d+mQrvHRAiGfzZ0JFrabA0UWTW98kndth/Jsw1HKj2ZL7tcu7XUIOGZX1NG +Fdtom/DzMNU+MeKNhJ7jitralj41E6Vf8PlwUHBHQRFXGU7Aj64GxJUTFy8bJZ91 +8rGOmaFvE7FBcf6IKshPECBV1/MUReXgRPTqh5Uykw7+U0b6LJ3/iyK5S9kJRaTe +pLiaWN0bfVKfjllDiIGknibVb63dDcY3fe0Dkhvld1927jyNxF1WW6LZZm6zNTfl +MrY= +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Global Root G3 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Global Root G3" +# Serial: 7089244469030293291760083333884364146 +# MD5 Fingerprint: f5:5d:a4:50:a5:fb:28:7e:1e:0f:0d:cc:96:57:56:ca +# SHA1 Fingerprint: 7e:04:de:89:6a:3e:66:6d:00:e6:87:d3:3f:fa:d9:3b:e8:3d:34:9e +# SHA256 Fingerprint: 31:ad:66:48:f8:10:41:38:c7:38:f3:9e:a4:32:01:33:39:3e:3a:18:cc:02:29:6e:f9:7c:2a:c9:ef:67:31:d0 +-----BEGIN CERTIFICATE----- +MIICPzCCAcWgAwIBAgIQBVVWvPJepDU1w6QP1atFcjAKBggqhkjOPQQDAzBhMQsw +CQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cu +ZGlnaWNlcnQuY29tMSAwHgYDVQQDExdEaWdpQ2VydCBHbG9iYWwgUm9vdCBHMzAe +Fw0xMzA4MDExMjAwMDBaFw0zODAxMTUxMjAwMDBaMGExCzAJBgNVBAYTAlVTMRUw +EwYDVQQKEwxEaWdpQ2VydCBJbmMxGTAXBgNVBAsTEHd3dy5kaWdpY2VydC5jb20x +IDAeBgNVBAMTF0RpZ2lDZXJ0IEdsb2JhbCBSb290IEczMHYwEAYHKoZIzj0CAQYF +K4EEACIDYgAE3afZu4q4C/sLfyHS8L6+c/MzXRq8NOrexpu80JX28MzQC7phW1FG +fp4tn+6OYwwX7Adw9c+ELkCDnOg/QW07rdOkFFk2eJ0DQ+4QE2xy3q6Ip6FrtUPO +Z9wj/wMco+I+o0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBhjAd +BgNVHQ4EFgQUs9tIpPmhxdiuNkHMEWNpYim8S8YwCgYIKoZIzj0EAwMDaAAwZQIx +AK288mw/EkrRLTnDCgmXc/SINoyIJ7vmiI1Qhadj+Z4y3maTD/HMsQmP3Wyr+mt/ +oAIwOWZbwmSNuJ5Q3KjVSaLtx9zRSX8XAbjIho9OjIgrqJqpisXRAL34VOKa5Vt8 +sycX +-----END CERTIFICATE----- + +# Issuer: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Subject: CN=DigiCert Trusted Root G4 O=DigiCert Inc OU=www.digicert.com +# Label: "DigiCert Trusted Root G4" +# Serial: 7451500558977370777930084869016614236 +# MD5 Fingerprint: 78:f2:fc:aa:60:1f:2f:b4:eb:c9:37:ba:53:2e:75:49 +# SHA1 Fingerprint: dd:fb:16:cd:49:31:c9:73:a2:03:7d:3f:c8:3a:4d:7d:77:5d:05:e4 +# SHA256 Fingerprint: 55:2f:7b:dc:f1:a7:af:9e:6c:e6:72:01:7f:4f:12:ab:f7:72:40:c7:8e:76:1a:c2:03:d1:d9:d2:0a:c8:99:88 +-----BEGIN CERTIFICATE----- +MIIFkDCCA3igAwIBAgIQBZsbV56OITLiOQe9p3d1XDANBgkqhkiG9w0BAQwFADBi +MQswCQYDVQQGEwJVUzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3 +d3cuZGlnaWNlcnQuY29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3Qg +RzQwHhcNMTMwODAxMTIwMDAwWhcNMzgwMTE1MTIwMDAwWjBiMQswCQYDVQQGEwJV +UzEVMBMGA1UEChMMRGlnaUNlcnQgSW5jMRkwFwYDVQQLExB3d3cuZGlnaWNlcnQu +Y29tMSEwHwYDVQQDExhEaWdpQ2VydCBUcnVzdGVkIFJvb3QgRzQwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQC/5pBzaN675F1KPDAiMGkz7MKnJS7JIT3y +ithZwuEppz1Yq3aaza57G4QNxDAf8xukOBbrVsaXbR2rsnnyyhHS5F/WBTxSD1If +xp4VpX6+n6lXFllVcq9ok3DCsrp1mWpzMpTREEQQLt+C8weE5nQ7bXHiLQwb7iDV +ySAdYyktzuxeTsiT+CFhmzTrBcZe7FsavOvJz82sNEBfsXpm7nfISKhmV1efVFiO +DCu3T6cw2Vbuyntd463JT17lNecxy9qTXtyOj4DatpGYQJB5w3jHtrHEtWoYOAMQ +jdjUN6QuBX2I9YI+EJFwq1WCQTLX2wRzKm6RAXwhTNS8rhsDdV14Ztk6MUSaM0C/ +CNdaSaTC5qmgZ92kJ7yhTzm1EVgX9yRcRo9k98FpiHaYdj1ZXUJ2h4mXaXpI8OCi +EhtmmnTK3kse5w5jrubU75KSOp493ADkRSWJtppEGSt+wJS00mFt6zPZxd9LBADM +fRyVw4/3IbKyEbe7f/LVjHAsQWCqsWMYRJUadmJ+9oCw++hkpjPRiQfhvbfmQ6QY +uKZ3AeEPlAwhHbJUKSWJbOUOUlFHdL4mrLZBdd56rF+NP8m800ERElvlEFDrMcXK +chYiCd98THU/Y+whX8QgUWtvsauGi0/C1kVfnSD8oR7FwI+isX4KJpn15GkvmB0t +9dmpsh3lGwIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIB +hjAdBgNVHQ4EFgQU7NfjgtJxXWRM3y5nP+e6mK4cD08wDQYJKoZIhvcNAQEMBQAD +ggIBALth2X2pbL4XxJEbw6GiAI3jZGgPVs93rnD5/ZpKmbnJeFwMDF/k5hQpVgs2 +SV1EY+CtnJYYZhsjDT156W1r1lT40jzBQ0CuHVD1UvyQO7uYmWlrx8GnqGikJ9yd ++SeuMIW59mdNOj6PWTkiU0TryF0Dyu1Qen1iIQqAyHNm0aAFYF/opbSnr6j3bTWc +fFqK1qI4mfN4i/RN0iAL3gTujJtHgXINwBQy7zBZLq7gcfJW5GqXb5JQbZaNaHqa +sjYUegbyJLkJEVDXCLG4iXqEI2FCKeWjzaIgQdfRnGTZ6iahixTXTBmyUEFxPT9N +cCOGDErcgdLMMpSEDQgJlxxPwO5rIHQw0uA5NBCFIRUBCOhVMt5xSdkoF1BN5r5N +0XWs0Mr7QbhDparTwwVETyw2m+L64kW4I1NsBm9nVX9GtUw/bihaeSbSpKhil9Ie +4u1Ki7wb/UdKDd9nZn6yW0HQO+T0O/QEY+nvwlQAUaCKKsnOeMzV6ocEGLPOr0mI +r/OSmbaz5mEP0oUA51Aa5BuVnRmhuZyxm7EAHu/QD09CbMkKvO5D+jpxpchNJqU1 +/YldvIViHTLSoCtU7ZpXwdv6EM8Zt4tKG48BtieVU+i2iW1bvGjUI+iLUaJW+fCm +gKDWHrO8Dw9TdSmq6hN35N6MgSGtBxBHEa2HPQfRdbzP82Z+ +-----END CERTIFICATE----- + +# Issuer: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Subject: CN=COMODO RSA Certification Authority O=COMODO CA Limited +# Label: "COMODO RSA Certification Authority" +# Serial: 101909084537582093308941363524873193117 +# MD5 Fingerprint: 1b:31:b0:71:40:36:cc:14:36:91:ad:c4:3e:fd:ec:18 +# SHA1 Fingerprint: af:e5:d2:44:a8:d1:19:42:30:ff:47:9f:e2:f8:97:bb:cd:7a:8c:b4 +# SHA256 Fingerprint: 52:f0:e1:c4:e5:8e:c6:29:29:1b:60:31:7f:07:46:71:b8:5d:7e:a8:0d:5b:07:27:34:63:53:4b:32:b4:02:34 +-----BEGIN CERTIFICATE----- +MIIF2DCCA8CgAwIBAgIQTKr5yttjb+Af907YWwOGnTANBgkqhkiG9w0BAQwFADCB +hTELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G +A1UEBxMHU2FsZm9yZDEaMBgGA1UEChMRQ09NT0RPIENBIExpbWl0ZWQxKzApBgNV +BAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMTE5 +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBhTELMAkGA1UEBhMCR0IxGzAZBgNVBAgT +EkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4GA1UEBxMHU2FsZm9yZDEaMBgGA1UEChMR +Q09NT0RPIENBIExpbWl0ZWQxKzApBgNVBAMTIkNPTU9ETyBSU0EgQ2VydGlmaWNh +dGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQCR +6FSS0gpWsawNJN3Fz0RndJkrN6N9I3AAcbxT38T6KhKPS38QVr2fcHK3YX/JSw8X +pz3jsARh7v8Rl8f0hj4K+j5c+ZPmNHrZFGvnnLOFoIJ6dq9xkNfs/Q36nGz637CC +9BR++b7Epi9Pf5l/tfxnQ3K9DADWietrLNPtj5gcFKt+5eNu/Nio5JIk2kNrYrhV +/erBvGy2i/MOjZrkm2xpmfh4SDBF1a3hDTxFYPwyllEnvGfDyi62a+pGx8cgoLEf +Zd5ICLqkTqnyg0Y3hOvozIFIQ2dOciqbXL1MGyiKXCJ7tKuY2e7gUYPDCUZObT6Z ++pUX2nwzV0E8jVHtC7ZcryxjGt9XyD+86V3Em69FmeKjWiS0uqlWPc9vqv9JWL7w +qP/0uK3pN/u6uPQLOvnoQ0IeidiEyxPx2bvhiWC4jChWrBQdnArncevPDt09qZah +SL0896+1DSJMwBGB7FY79tOi4lu3sgQiUpWAk2nojkxl8ZEDLXB0AuqLZxUpaVIC +u9ffUGpVRr+goyhhf3DQw6KqLCGqR84onAZFdr+CGCe01a60y1Dma/RMhnEw6abf +Fobg2P9A3fvQQoh/ozM6LlweQRGBY84YcWsr7KaKtzFcOmpH4MN5WdYgGq/yapiq +crxXStJLnbsQ/LBMQeXtHT1eKJ2czL+zUdqnR+WEUwIDAQABo0IwQDAdBgNVHQ4E +FgQUu69+Aj36pvE8hI6t7jiY7NkyMtQwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB +/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAArx1UaEt65Ru2yyTUEUAJNMnMvl +wFTPoCWOAvn9sKIN9SCYPBMtrFaisNZ+EZLpLrqeLppysb0ZRGxhNaKatBYSaVqM +4dc+pBroLwP0rmEdEBsqpIt6xf4FpuHA1sj+nq6PK7o9mfjYcwlYRm6mnPTXJ9OV +2jeDchzTc+CiR5kDOF3VSXkAKRzH7JsgHAckaVd4sjn8OoSgtZx8jb8uk2Intzna +FxiuvTwJaP+EmzzV1gsD41eeFPfR60/IvYcjt7ZJQ3mFXLrrkguhxuhoqEwWsRqZ +CuhTLJK7oQkYdQxlqHvLI7cawiiFwxv/0Cti76R7CZGYZ4wUAc1oBmpjIXUDgIiK +boHGhfKppC3n9KUkEEeDys30jXlYsQab5xoq2Z0B15R97QNKyvDb6KkBPvVWmcke +jkk9u+UJueBPSZI9FoJAzMxZxuY67RIuaTxslbH9qh17f4a+Hg4yRvv7E491f0yL +S0Zj/gA0QHDBw7mh3aZw4gSzQbzpgJHqZJx64SIDqZxubw5lT2yHh17zbqD5daWb +QOhTsiedSrnAdyGN/4fy3ryM7xfft0kL0fJuMAsaDk527RH89elWsn2/x20Kk4yl +0MC2Hb46TpSi125sC8KKfPog88Tk5c0NqMuRkrF8hey1FGlmDoLnzc7ILaZRfyHB +NVOFBkpdn627G190 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust RSA Certification Authority O=The USERTRUST Network +# Label: "USERTrust RSA Certification Authority" +# Serial: 2645093764781058787591871645665788717 +# MD5 Fingerprint: 1b:fe:69:d1:91:b7:19:33:a3:72:a8:0f:e1:55:e5:b5 +# SHA1 Fingerprint: 2b:8f:1b:57:33:0d:bb:a2:d0:7a:6c:51:f7:0e:e9:0d:da:b9:ad:8e +# SHA256 Fingerprint: e7:93:c9:b0:2f:d8:aa:13:e2:1c:31:22:8a:cc:b0:81:19:64:3b:74:9c:89:89:64:b1:74:6d:46:c3:d4:cb:d2 +-----BEGIN CERTIFICATE----- +MIIF3jCCA8agAwIBAgIQAf1tMPyjylGoG7xkDjUDLTANBgkqhkiG9w0BAQwFADCB +iDELMAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0pl +cnNleSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNV +BAMTJVVTRVJUcnVzdCBSU0EgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAw +MjAxMDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNV +BAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVU +aGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBSU0EgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCAEmUXNg7D2wiz0KxXDXbtzSfTTK1Qg2HiqiBNCS1kCdzOiZ/MPans9s/B +3PHTsdZ7NygRK0faOca8Ohm0X6a9fZ2jY0K2dvKpOyuR+OJv0OwWIJAJPuLodMkY +tJHUYmTbf6MG8YgYapAiPLz+E/CHFHv25B+O1ORRxhFnRghRy4YUVD+8M/5+bJz/ +Fp0YvVGONaanZshyZ9shZrHUm3gDwFA66Mzw3LyeTP6vBZY1H1dat//O+T23LLb2 +VN3I5xI6Ta5MirdcmrS3ID3KfyI0rn47aGYBROcBTkZTmzNg95S+UzeQc0PzMsNT +79uq/nROacdrjGCT3sTHDN/hMq7MkztReJVni+49Vv4M0GkPGw/zJSZrM233bkf6 +c0Plfg6lZrEpfDKEY1WJxA3Bk1QwGROs0303p+tdOmw1XNtB1xLaqUkL39iAigmT +Yo61Zs8liM2EuLE/pDkP2QKe6xJMlXzzawWpXhaDzLhn4ugTncxbgtNMs+1b/97l +c6wjOy0AvzVVdAlJ2ElYGn+SNuZRkg7zJn0cTRe8yexDJtC/QV9AqURE9JnnV4ee +UB9XVKg+/XRjL7FQZQnmWEIuQxpMtPAlR1n6BB6T1CZGSlCBst6+eLf8ZxXhyVeE +Hg9j1uliutZfVS7qXMYoCAQlObgOK6nyTJccBz8NUvXt7y+CDwIDAQABo0IwQDAd +BgNVHQ4EFgQUU3m/WqorSs9UgOHYm8Cd8rIDZsswDgYDVR0PAQH/BAQDAgEGMA8G +A1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEMBQADggIBAFzUfA3P9wF9QZllDHPF +Up/L+M+ZBn8b2kMVn54CVVeWFPFSPCeHlCjtHzoBN6J2/FNQwISbxmtOuowhT6KO +VWKR82kV2LyI48SqC/3vqOlLVSoGIG1VeCkZ7l8wXEskEVX/JJpuXior7gtNn3/3 +ATiUFJVDBwn7YKnuHKsSjKCaXqeYalltiz8I+8jRRa8YFWSQEg9zKC7F4iRO/Fjs +8PRF/iKz6y+O0tlFYQXBl2+odnKPi4w2r78NBc5xjeambx9spnFixdjQg3IM8WcR +iQycE0xyNN+81XHfqnHd4blsjDwSXWXavVcStkNr/+XeTWYRUc+ZruwXtuhxkYze +Sf7dNXGiFSeUHM9h4ya7b6NnJSFd5t0dCy5oGzuCr+yDZ4XUmFF0sbmZgIn/f3gZ +XHlKYC6SQK5MNyosycdiyA5d9zZbyuAlJQG03RoHnHcAP9Dc1ew91Pq7P8yF1m9/ +qS3fuQL39ZeatTXaw2ewh0qpKJ4jjv9cJ2vhsE/zB+4ALtRZh8tSQZXq9EfX7mRB +VXyNWQKV3WKdwrnuWih0hKWbt5DHDAff9Yk2dDLWKMGwsAvgnEzDHNb842m1R0aB +L6KCq9NjRHDEjf8tM7qtj3u1cIiuPhnPQCjY/MiQu12ZIvVS5ljFH4gxQ+6IHdfG +jjxDah2nGN59PRbxYvnKkKj9 +-----END CERTIFICATE----- + +# Issuer: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Subject: CN=USERTrust ECC Certification Authority O=The USERTRUST Network +# Label: "USERTrust ECC Certification Authority" +# Serial: 123013823720199481456569720443997572134 +# MD5 Fingerprint: fa:68:bc:d9:b5:7f:ad:fd:c9:1d:06:83:28:cc:24:c1 +# SHA1 Fingerprint: d1:cb:ca:5d:b2:d5:2a:7f:69:3b:67:4d:e5:f0:5a:1d:0c:95:7d:f0 +# SHA256 Fingerprint: 4f:f4:60:d5:4b:9c:86:da:bf:bc:fc:57:12:e0:40:0d:2b:ed:3f:bc:4d:4f:bd:aa:86:e0:6a:dc:d2:a9:ad:7a +-----BEGIN CERTIFICATE----- +MIICjzCCAhWgAwIBAgIQXIuZxVqUxdJxVt7NiYDMJjAKBggqhkjOPQQDAzCBiDEL +MAkGA1UEBhMCVVMxEzARBgNVBAgTCk5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNl +eSBDaXR5MR4wHAYDVQQKExVUaGUgVVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMT +JVVTRVJUcnVzdCBFQ0MgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkwHhcNMTAwMjAx +MDAwMDAwWhcNMzgwMTE4MjM1OTU5WjCBiDELMAkGA1UEBhMCVVMxEzARBgNVBAgT +Ck5ldyBKZXJzZXkxFDASBgNVBAcTC0plcnNleSBDaXR5MR4wHAYDVQQKExVUaGUg +VVNFUlRSVVNUIE5ldHdvcmsxLjAsBgNVBAMTJVVTRVJUcnVzdCBFQ0MgQ2VydGlm +aWNhdGlvbiBBdXRob3JpdHkwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAAQarFRaqflo +I+d61SRvU8Za2EurxtW20eZzca7dnNYMYf3boIkDuAUU7FfO7l0/4iGzzvfUinng +o4N+LZfQYcTxmdwlkWOrfzCjtHDix6EznPO/LlxTsV+zfTJ/ijTjeXmjQjBAMB0G +A1UdDgQWBBQ64QmG1M8ZwpZ2dEl23OA1xmNjmjAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAKBggqhkjOPQQDAwNoADBlAjA2Z6EWCNzklwBBHU6+4WMB +zzuqQhFkoJ2UOQIReVx7Hfpkue4WQrO/isIJxOzksU0CMQDpKmFHjFJKS04YcPbW +RNZu9YO6bVi9JNlWSOrvxKJGgYhqOkbRqZtNyWHa0V1Xahg= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R4 +# Label: "GlobalSign ECC Root CA - R4" +# Serial: 14367148294922964480859022125800977897474 +# MD5 Fingerprint: 20:f0:27:68:d1:7e:a0:9d:0e:e6:2a:ca:df:5c:89:8e +# SHA1 Fingerprint: 69:69:56:2e:40:80:f4:24:a1:e7:19:9f:14:ba:f3:ee:58:ab:6a:bb +# SHA256 Fingerprint: be:c9:49:11:c2:95:56:76:db:6c:0a:55:09:86:d7:6e:3b:a0:05:66:7c:44:2c:97:62:b4:fb:b7:73:de:22:8c +-----BEGIN CERTIFICATE----- +MIIB4TCCAYegAwIBAgIRKjikHJYKBN5CsiilC+g0mAIwCgYIKoZIzj0EAwIwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI0MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI0MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MFkwEwYHKoZIzj0CAQYIKoZIzj0DAQcDQgAEuMZ5049sJQ6fLjkZHAOkrprlOQcJ +FspjsbmG+IpXwVfOQvpzofdlQv8ewQCybnMO/8ch5RikqtlxP6jUuc6MHaNCMEAw +DgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFFSwe61F +uOJAf/sKbvu+M8k8o4TVMAoGCCqGSM49BAMCA0gAMEUCIQDckqGgE6bPA7DmxCGX +kPoUVy0D7O48027KqGx2vKLeuwIgJ6iFJzWbVsaj8kfSt24bAgAXqmemFZHe+pTs +ewv4n4Q= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign ECC Root CA - R5 +# Label: "GlobalSign ECC Root CA - R5" +# Serial: 32785792099990507226680698011560947931244 +# MD5 Fingerprint: 9f:ad:3b:1c:02:1e:8a:ba:17:74:38:81:0c:a2:bc:08 +# SHA1 Fingerprint: 1f:24:c6:30:cd:a4:18:ef:20:69:ff:ad:4f:dd:5f:46:3a:1b:69:aa +# SHA256 Fingerprint: 17:9f:bc:14:8a:3d:d0:0f:d2:4e:a1:34:58:cc:43:bf:a7:f5:9c:81:82:d7:83:a5:13:f6:eb:ec:10:0c:89:24 +-----BEGIN CERTIFICATE----- +MIICHjCCAaSgAwIBAgIRYFlJ4CYuu1X5CneKcflK2GwwCgYIKoZIzj0EAwMwUDEk +MCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBDQSAtIFI1MRMwEQYDVQQKEwpH +bG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWduMB4XDTEyMTExMzAwMDAwMFoX +DTM4MDExOTAzMTQwN1owUDEkMCIGA1UECxMbR2xvYmFsU2lnbiBFQ0MgUm9vdCBD +QSAtIFI1MRMwEQYDVQQKEwpHbG9iYWxTaWduMRMwEQYDVQQDEwpHbG9iYWxTaWdu +MHYwEAYHKoZIzj0CAQYFK4EEACIDYgAER0UOlvt9Xb/pOdEh+J8LttV7HpI6SFkc +8GIxLcB6KP4ap1yztsyX50XUWPrRd21DosCHZTQKH3rd6zwzocWdTaRvQZU4f8ke +hOvRnkmSh5SHDDqFSmafnVmTTZdhBoZKo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYD +VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUPeYpSJvqB8ohREom3m7e0oPQn1kwCgYI +KoZIzj0EAwMDaAAwZQIxAOVpEslu28YxuglB4Zf4+/2a4n0Sye18ZNPLBSWLVtmg +515dTguDnFt2KaAJJiFqYgIwcdK1j1zqO+F4CYWodZI7yFz9SO8NdCKoCOJuxUnO +xwy8p2Fp8fc74SrL+SvzZpA3 +-----END CERTIFICATE----- + +# Issuer: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden +# Subject: CN=Staat der Nederlanden EV Root CA O=Staat der Nederlanden +# Label: "Staat der Nederlanden EV Root CA" +# Serial: 10000013 +# MD5 Fingerprint: fc:06:af:7b:e8:1a:f1:9a:b4:e8:d2:70:1f:c0:f5:ba +# SHA1 Fingerprint: 76:e2:7e:c1:4f:db:82:c1:c0:a6:75:b5:05:be:3d:29:b4:ed:db:bb +# SHA256 Fingerprint: 4d:24:91:41:4c:fe:95:67:46:ec:4c:ef:a6:cf:6f:72:e2:8a:13:29:43:2f:9d:8a:90:7a:c4:cb:5d:ad:c1:5a +-----BEGIN CERTIFICATE----- +MIIFcDCCA1igAwIBAgIEAJiWjTANBgkqhkiG9w0BAQsFADBYMQswCQYDVQQGEwJO +TDEeMBwGA1UECgwVU3RhYXQgZGVyIE5lZGVybGFuZGVuMSkwJwYDVQQDDCBTdGFh +dCBkZXIgTmVkZXJsYW5kZW4gRVYgUm9vdCBDQTAeFw0xMDEyMDgxMTE5MjlaFw0y +MjEyMDgxMTEwMjhaMFgxCzAJBgNVBAYTAk5MMR4wHAYDVQQKDBVTdGFhdCBkZXIg +TmVkZXJsYW5kZW4xKTAnBgNVBAMMIFN0YWF0IGRlciBOZWRlcmxhbmRlbiBFViBS +b290IENBMIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEA48d+ifkkSzrS +M4M1LGns3Amk41GoJSt5uAg94JG6hIXGhaTK5skuU6TJJB79VWZxXSzFYGgEt9nC +UiY4iKTWO0Cmws0/zZiTs1QUWJZV1VD+hq2kY39ch/aO5ieSZxeSAgMs3NZmdO3d +Z//BYY1jTw+bbRcwJu+r0h8QoPnFfxZpgQNH7R5ojXKhTbImxrpsX23Wr9GxE46p +rfNeaXUmGD5BKyF/7otdBwadQ8QpCiv8Kj6GyzyDOvnJDdrFmeK8eEEzduG/L13l +pJhQDBXd4Pqcfzho0LKmeqfRMb1+ilgnQ7O6M5HTp5gVXJrm0w912fxBmJc+qiXb +j5IusHsMX/FjqTf5m3VpTCgmJdrV8hJwRVXj33NeN/UhbJCONVrJ0yPr08C+eKxC +KFhmpUZtcALXEPlLVPxdhkqHz3/KRawRWrUgUY0viEeXOcDPusBCAUCZSCELa6fS +/ZbV0b5GnUngC6agIk440ME8MLxwjyx1zNDFjFE7PZQIZCZhfbnDZY8UnCHQqv0X +cgOPvZuM5l5Tnrmd74K74bzickFbIZTTRTeU0d8JOV3nI6qaHcptqAqGhYqCvkIH +1vI4gnPah1vlPNOePqc7nvQDs/nxfRN0Av+7oeX6AHkcpmZBiFxgV6YuCcS6/ZrP +px9Aw7vMWgpVSzs4dlG4Y4uElBbmVvMCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFP6rAJCYniT8qcwaivsnuL8wbqg7 +MA0GCSqGSIb3DQEBCwUAA4ICAQDPdyxuVr5Os7aEAJSrR8kN0nbHhp8dB9O2tLsI +eK9p0gtJ3jPFrK3CiAJ9Brc1AsFgyb/E6JTe1NOpEyVa/m6irn0F3H3zbPB+po3u +2dfOWBfoqSmuc0iH55vKbimhZF8ZE/euBhD/UcabTVUlT5OZEAFTdfETzsemQUHS +v4ilf0X8rLiltTMMgsT7B/Zq5SWEXwbKwYY5EdtYzXc7LMJMD16a4/CrPmEbUCTC +wPTxGfARKbalGAKb12NMcIxHowNDXLldRqANb/9Zjr7dn3LDWyvfjFvO5QxGbJKy +CqNMVEIYFRIYvdr8unRu/8G2oGTYqV9Vrp9canaW2HNnh/tNf1zuacpzEPuKqf2e +vTY4SUmH9A4U8OmHuD+nT3pajnnUk+S7aFKErGzp85hwVXIy+TSrK0m1zSBi5Dp6 +Z2Orltxtrpfs/J92VoguZs9btsmksNcFuuEnL5O7Jiqik7Ab846+HUCjuTaPPoIa +Gl6I6lD4WeKDRikL40Rc4ZW2aZCaFG+XroHPaO+Zmr615+F/+PoTRxZMzG0IQOeL +eG9QgkRQP2YGiqtDhFZKDyAthg710tvSeopLzaXoTvFeJiUBWSOgftL2fiFX1ye8 +FVdMpEbB4IMeDExNH08GGeL5qPQ6gqGyeUN51q1veieQA6TqJIc/2b3Z6fJfUEkc +7uzXLg== +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Commercial Root CA 1 O=IdenTrust +# Label: "IdenTrust Commercial Root CA 1" +# Serial: 13298821034946342390520003877796839426 +# MD5 Fingerprint: b3:3e:77:73:75:ee:a0:d3:e3:7e:49:63:49:59:bb:c7 +# SHA1 Fingerprint: df:71:7e:aa:4a:d9:4e:c9:55:84:99:60:2d:48:de:5f:bc:f0:3a:25 +# SHA256 Fingerprint: 5d:56:49:9b:e4:d2:e0:8b:cf:ca:d0:8a:3e:38:72:3d:50:50:3b:de:70:69:48:e4:2f:55:60:30:19:e5:28:ae +-----BEGIN CERTIFICATE----- +MIIFYDCCA0igAwIBAgIQCgFCgAAAAUUjyES1AAAAAjANBgkqhkiG9w0BAQsFADBK +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScwJQYDVQQDEx5JZGVu +VHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwHhcNMTQwMTE2MTgxMjIzWhcNMzQw +MTE2MTgxMjIzWjBKMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MScw +JQYDVQQDEx5JZGVuVHJ1c3QgQ29tbWVyY2lhbCBSb290IENBIDEwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQCnUBneP5k91DNG8W9RYYKyqU+PZ4ldhNlT +3Qwo2dfw/66VQ3KZ+bVdfIrBQuExUHTRgQ18zZshq0PirK1ehm7zCYofWjK9ouuU ++ehcCuz/mNKvcbO0U59Oh++SvL3sTzIwiEsXXlfEU8L2ApeN2WIrvyQfYo3fw7gp +S0l4PJNgiCL8mdo2yMKi1CxUAGc1bnO/AljwpN3lsKImesrgNqUZFvX9t++uP0D1 +bVoE/c40yiTcdCMbXTMTEl3EASX2MN0CXZ/g1Ue9tOsbobtJSdifWwLziuQkkORi +T0/Br4sOdBeo0XKIanoBScy0RnnGF7HamB4HWfp1IYVl3ZBWzvurpWCdxJ35UrCL +vYf5jysjCiN2O/cz4ckA82n5S6LgTrx+kzmEB/dEcH7+B1rlsazRGMzyNeVJSQjK +Vsk9+w8YfYs7wRPCTY/JTw436R+hDmrfYi7LNQZReSzIJTj0+kuniVyc0uMNOYZK +dHzVWYfCP04MXFL0PfdSgvHqo6z9STQaKPNBiDoT7uje/5kdX7rL6B7yuVBgwDHT +c+XvvqDtMwt0viAgxGds8AgDelWAf0ZOlqf0Hj7h9tgJ4TNkK2PXMl6f+cB7D3hv +l7yTmvmcEpB4eoCHFddydJxVdHixuuFucAS6T6C6aMN7/zHwcz09lCqxC0EOoP5N +iGVreTO01wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB +/zAdBgNVHQ4EFgQU7UQZwNPwBovupHu+QucmVMiONnYwDQYJKoZIhvcNAQELBQAD +ggIBAA2ukDL2pkt8RHYZYR4nKM1eVO8lvOMIkPkp165oCOGUAFjvLi5+U1KMtlwH +6oi6mYtQlNeCgN9hCQCTrQ0U5s7B8jeUeLBfnLOic7iPBZM4zY0+sLj7wM+x8uwt +LRvM7Kqas6pgghstO8OEPVeKlh6cdbjTMM1gCIOQ045U8U1mwF10A0Cj7oV+wh93 +nAbowacYXVKV7cndJZ5t+qntozo00Fl72u1Q8zW/7esUTTHHYPTa8Yec4kjixsU3 ++wYQ+nVZZjFHKdp2mhzpgq7vmrlR94gjmmmVYjzlVYA211QC//G5Xc7UI2/YRYRK +W2XviQzdFKcgyxilJbQN+QHwotL0AMh0jqEqSI5l2xPE4iUXfeu+h1sXIFRRk0pT +AwvsXcoz7WL9RccvW9xYoIA55vrX/hMUpu09lEpCdNTDd1lzzY9GvlU47/rokTLq +l1gEIt44w8y8bckzOmoKaT+gyOpyj4xjhiO9bTyWnpXgSUyqorkqG5w2gXjtw+hG +4iZZRHUe2XWJUc0QhJ1hYMtd+ZciTY6Y5uN/9lu7rs3KSoFrXgvzUeF0K+l+J6fZ +mUlO+KWA2yUPHGNiiskzZ2s8EIPGrd6ozRaOjfAHN3Gf8qv8QfXBi+wAN10J5U6A +7/qxXDgGpRtK4dw4LTzcqx+QGtVKnO7RcGzM7vRX+Bi6hG6H +-----END CERTIFICATE----- + +# Issuer: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Subject: CN=IdenTrust Public Sector Root CA 1 O=IdenTrust +# Label: "IdenTrust Public Sector Root CA 1" +# Serial: 13298821034946342390521976156843933698 +# MD5 Fingerprint: 37:06:a5:b0:fc:89:9d:ba:f4:6b:8c:1a:64:cd:d5:ba +# SHA1 Fingerprint: ba:29:41:60:77:98:3f:f4:f3:ef:f2:31:05:3b:2e:ea:6d:4d:45:fd +# SHA256 Fingerprint: 30:d0:89:5a:9a:44:8a:26:20:91:63:55:22:d1:f5:20:10:b5:86:7a:ca:e1:2c:78:ef:95:8f:d4:f4:38:9f:2f +-----BEGIN CERTIFICATE----- +MIIFZjCCA06gAwIBAgIQCgFCgAAAAUUjz0Z8AAAAAjANBgkqhkiG9w0BAQsFADBN +MQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0MSowKAYDVQQDEyFJZGVu +VHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwHhcNMTQwMTE2MTc1MzMyWhcN +MzQwMTE2MTc1MzMyWjBNMQswCQYDVQQGEwJVUzESMBAGA1UEChMJSWRlblRydXN0 +MSowKAYDVQQDEyFJZGVuVHJ1c3QgUHVibGljIFNlY3RvciBSb290IENBIDEwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC2IpT8pEiv6EdrCvsnduTyP4o7 +ekosMSqMjbCpwzFrqHd2hCa2rIFCDQjrVVi7evi8ZX3yoG2LqEfpYnYeEe4IFNGy +RBb06tD6Hi9e28tzQa68ALBKK0CyrOE7S8ItneShm+waOh7wCLPQ5CQ1B5+ctMlS +bdsHyo+1W/CD80/HLaXIrcuVIKQxKFdYWuSNG5qrng0M8gozOSI5Cpcu81N3uURF +/YTLNiCBWS2ab21ISGHKTN9T0a9SvESfqy9rg3LvdYDaBjMbXcjaY8ZNzaxmMc3R +3j6HEDbhuaR672BQssvKplbgN6+rNBM5Jeg5ZuSYeqoSmJxZZoY+rfGwyj4GD3vw +EUs3oERte8uojHH01bWRNszwFcYr3lEXsZdMUD2xlVl8BX0tIdUAvwFnol57plzy +9yLxkA2T26pEUWbMfXYD62qoKjgZl3YNa4ph+bz27nb9cCvdKTz4Ch5bQhyLVi9V +GxyhLrXHFub4qjySjmm2AcG1hp2JDws4lFTo6tyePSW8Uybt1as5qsVATFSrsrTZ +2fjXctscvG29ZV/viDUqZi/u9rNl8DONfJhBaUYPQxxp+pu10GFqzcpL2UyQRqsV +WaFHVCkugyhfHMKiq3IXAAaOReyL4jM9f9oZRORicsPfIsbyVtTdX5Vy7W1f90gD +W/3FKqD2cyOEEBsB5wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQU43HgntinQtnbcZFrlJPrw6PRFKMwDQYJKoZIhvcN +AQELBQADggIBAEf63QqwEZE4rU1d9+UOl1QZgkiHVIyqZJnYWv6IAcVYpZmxI1Qj +t2odIFflAWJBF9MJ23XLblSQdf4an4EKwt3X9wnQW3IV5B4Jaj0z8yGa5hV+rVHV +DRDtfULAj+7AmgjVQdZcDiFpboBhDhXAuM/FSRJSzL46zNQuOAXeNf0fb7iAaJg9 +TaDKQGXSc3z1i9kKlT/YPyNtGtEqJBnZhbMX73huqVjRI9PHE+1yJX9dsXNw0H8G +lwmEKYBhHfpe/3OsoOOJuBxxFcbeMX8S3OFtm6/n6J91eEyrRjuazr8FGF1NFTwW +mhlQBJqymm9li1JfPFgEKCXAZmExfrngdbkaqIHWchezxQMxNRF4eKLg6TCMf4Df +WN88uieW4oA0beOY02QnrEh+KHdcxiVhJfiFDGX6xDIvpZgF5PgLZxYWxoK4Mhn5 ++bl53B/N66+rDt0b20XkeucC4pVd/GnwU2lhlXV5C15V5jgclKlZM57IcXR5f1GJ +tshquDDIajjDbp7hNxbqBWJMWxJH7ae0s1hWx0nzfxJoCTFx8G34Tkf71oXuxVhA +GaQdp/lLQzfcaFpPz+vCZHTetBXZ9FRUGi8c15dxVJCO2SCdUyt/q4/i6jC8UDfv +8Ue1fXwsBOxonbRJRBD0ckscZOf85muQ3Wl9af0AVqW3rLatt8o+Ae+c +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G2 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2009 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G2" +# Serial: 1246989352 +# MD5 Fingerprint: 4b:e2:c9:91:96:65:0c:f4:0e:5a:93:92:a0:0a:fe:b2 +# SHA1 Fingerprint: 8c:f4:27:fd:79:0c:3a:d1:66:06:8d:e8:1e:57:ef:bb:93:22:72:d4 +# SHA256 Fingerprint: 43:df:57:74:b0:3e:7f:ef:5f:e4:0d:93:1a:7b:ed:f1:bb:2e:6b:42:73:8c:4e:6d:38:41:10:3d:3a:a7:f3:39 +-----BEGIN CERTIFICATE----- +MIIEPjCCAyagAwIBAgIESlOMKDANBgkqhkiG9w0BAQsFADCBvjELMAkGA1UEBhMC +VVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50 +cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3Qs +IEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVz +dCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRzIwHhcNMDkwNzA3MTcy +NTU0WhcNMzAxMjA3MTc1NTU0WjCBvjELMAkGA1UEBhMCVVMxFjAUBgNVBAoTDUVu +dHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3d3cuZW50cnVzdC5uZXQvbGVnYWwt +dGVybXMxOTA3BgNVBAsTMChjKSAyMDA5IEVudHJ1c3QsIEluYy4gLSBmb3IgYXV0 +aG9yaXplZCB1c2Ugb25seTEyMDAGA1UEAxMpRW50cnVzdCBSb290IENlcnRpZmlj +YXRpb24gQXV0aG9yaXR5IC0gRzIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEK +AoIBAQC6hLZy254Ma+KZ6TABp3bqMriVQRrJ2mFOWHLP/vaCeb9zYQYKpSfYs1/T +RU4cctZOMvJyig/3gxnQaoCAAEUesMfnmr8SVycco2gvCoe9amsOXmXzHHfV1IWN +cCG0szLni6LVhjkCsbjSR87kyUnEO6fe+1R9V77w6G7CebI6C1XiUJgWMhNcL3hW +wcKUs/Ja5CeanyTXxuzQmyWC48zCxEXFjJd6BmsqEZ+pCm5IO2/b1BEZQvePB7/1 +U1+cPvQXLOZprE4yTGJ36rfo5bs0vBmLrpxR57d+tVOxMyLlbc9wPBr64ptntoP0 +jaWvYkxN4FisZDQSA/i2jZRjJKRxAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAP +BgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBRqciZ60B7vfec7aVHUbI2fkBJmqzAN +BgkqhkiG9w0BAQsFAAOCAQEAeZ8dlsa2eT8ijYfThwMEYGprmi5ZiXMRrEPR9RP/ +jTkrwPK9T3CMqS/qF8QLVJ7UG5aYMzyorWKiAHarWWluBh1+xLlEjZivEtRh2woZ +Rkfz6/djwUAFQKXSt/S1mja/qYh2iARVBCuch38aNzx+LaUa2NSJXsq9rD1s2G2v +1fN2D807iDginWyTmsQ9v4IbZT+mD12q/OWyFcq1rca8PdCE6OoGcrBNOTJ4vz4R +nAuknZoh8/CbCzB428Hch0P+vGOaysXCHMnHjf87ElgI5rY97HosTvuDls4MPGmH +VHOkc8KT/1EQrBVUAdj8BbGJoX90g5pJ19xOe4pIb4tF9g== +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - EC1 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2012 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - EC1" +# Serial: 51543124481930649114116133369 +# MD5 Fingerprint: b6:7e:1d:f0:58:c5:49:6c:24:3b:3d:ed:98:18:ed:bc +# SHA1 Fingerprint: 20:d8:06:40:df:9b:25:f5:12:25:3a:11:ea:f7:59:8a:eb:14:b5:47 +# SHA256 Fingerprint: 02:ed:0e:b2:8c:14:da:45:16:5c:56:67:91:70:0d:64:51:d7:fb:56:f0:b2:ab:1d:3b:8e:b0:70:e5:6e:df:f5 +-----BEGIN CERTIFICATE----- +MIIC+TCCAoCgAwIBAgINAKaLeSkAAAAAUNCR+TAKBggqhkjOPQQDAzCBvzELMAkG +A1UEBhMCVVMxFjAUBgNVBAoTDUVudHJ1c3QsIEluYy4xKDAmBgNVBAsTH1NlZSB3 +d3cuZW50cnVzdC5uZXQvbGVnYWwtdGVybXMxOTA3BgNVBAsTMChjKSAyMDEyIEVu +dHJ1c3QsIEluYy4gLSBmb3IgYXV0aG9yaXplZCB1c2Ugb25seTEzMDEGA1UEAxMq +RW50cnVzdCBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IC0gRUMxMB4XDTEy +MTIxODE1MjUzNloXDTM3MTIxODE1NTUzNlowgb8xCzAJBgNVBAYTAlVTMRYwFAYD +VQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1c3QubmV0 +L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxMiBFbnRydXN0LCBJbmMuIC0g +Zm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMzAxBgNVBAMTKkVudHJ1c3QgUm9vdCBD +ZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEVDMTB2MBAGByqGSM49AgEGBSuBBAAi +A2IABIQTydC6bUF74mzQ61VfZgIaJPRbiWlH47jCffHyAsWfoPZb1YsGGYZPUxBt +ByQnoaD41UcZYUx9ypMn6nQM72+WCf5j7HBdNq1nd67JnXxVRDqiY1Ef9eNi1KlH +Bz7MIKNCMEAwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0O +BBYEFLdj5xrdjekIplWDpOBqUEFlEUJJMAoGCCqGSM49BAMDA2cAMGQCMGF52OVC +R98crlOZF7ZvHH3hvxGU0QOIdeSNiaSKd0bebWHvAvX7td/M/k7//qnmpwIwW5nX +hTcGtXsI/esni0qU+eH6p44mCOh8kmhtc9hvJqwhAriZtyZBWyVgrtBIGu4G +-----END CERTIFICATE----- + +# Issuer: CN=CFCA EV ROOT O=China Financial Certification Authority +# Subject: CN=CFCA EV ROOT O=China Financial Certification Authority +# Label: "CFCA EV ROOT" +# Serial: 407555286 +# MD5 Fingerprint: 74:e1:b6:ed:26:7a:7a:44:30:33:94:ab:7b:27:81:30 +# SHA1 Fingerprint: e2:b8:29:4b:55:84:ab:6b:58:c2:90:46:6c:ac:3f:b8:39:8f:84:83 +# SHA256 Fingerprint: 5c:c3:d7:8e:4e:1d:5e:45:54:7a:04:e6:87:3e:64:f9:0c:f9:53:6d:1c:cc:2e:f8:00:f3:55:c4:c5:fd:70:fd +-----BEGIN CERTIFICATE----- +MIIFjTCCA3WgAwIBAgIEGErM1jANBgkqhkiG9w0BAQsFADBWMQswCQYDVQQGEwJD +TjEwMC4GA1UECgwnQ2hpbmEgRmluYW5jaWFsIENlcnRpZmljYXRpb24gQXV0aG9y +aXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJPT1QwHhcNMTIwODA4MDMwNzAxWhcNMjkx +MjMxMDMwNzAxWjBWMQswCQYDVQQGEwJDTjEwMC4GA1UECgwnQ2hpbmEgRmluYW5j +aWFsIENlcnRpZmljYXRpb24gQXV0aG9yaXR5MRUwEwYDVQQDDAxDRkNBIEVWIFJP +T1QwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDXXWvNED8fBVnVBU03 +sQ7smCuOFR36k0sXgiFxEFLXUWRwFsJVaU2OFW2fvwwbwuCjZ9YMrM8irq93VCpL +TIpTUnrD7i7es3ElweldPe6hL6P3KjzJIx1qqx2hp/Hz7KDVRM8Vz3IvHWOX6Jn5 +/ZOkVIBMUtRSqy5J35DNuF++P96hyk0g1CXohClTt7GIH//62pCfCqktQT+x8Rgp +7hZZLDRJGqgG16iI0gNyejLi6mhNbiyWZXvKWfry4t3uMCz7zEasxGPrb382KzRz +EpR/38wmnvFyXVBlWY9ps4deMm/DGIq1lY+wejfeWkU7xzbh72fROdOXW3NiGUgt +hxwG+3SYIElz8AXSG7Ggo7cbcNOIabla1jj0Ytwli3i/+Oh+uFzJlU9fpy25IGvP +a931DfSCt/SyZi4QKPaXWnuWFo8BGS1sbn85WAZkgwGDg8NNkt0yxoekN+kWzqot +aK8KgWU6cMGbrU1tVMoqLUuFG7OA5nBFDWteNfB/O7ic5ARwiRIlk9oKmSJgamNg +TnYGmE69g60dWIolhdLHZR4tjsbftsbhf4oEIRUpdPA+nJCdDC7xij5aqgwJHsfV +PKPtl8MeNPo4+QgO48BdK4PRVmrJtqhUUy54Mmc9gn900PvhtgVguXDbjgv5E1hv +cWAQUhC5wUEJ73IfZzF4/5YFjQIDAQABo2MwYTAfBgNVHSMEGDAWgBTj/i39KNAL +tbq2osS/BqoFjJP7LzAPBgNVHRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAd +BgNVHQ4EFgQU4/4t/SjQC7W6tqLEvwaqBYyT+y8wDQYJKoZIhvcNAQELBQADggIB +ACXGumvrh8vegjmWPfBEp2uEcwPenStPuiB/vHiyz5ewG5zz13ku9Ui20vsXiObT +ej/tUxPQ4i9qecsAIyjmHjdXNYmEwnZPNDatZ8POQQaIxffu2Bq41gt/UP+TqhdL +jOztUmCypAbqTuv0axn96/Ua4CUqmtzHQTb3yHQFhDmVOdYLO6Qn+gjYXB74BGBS +ESgoA//vU2YApUo0FmZ8/Qmkrp5nGm9BC2sGE5uPhnEFtC+NiWYzKXZUmhH4J/qy +P5Hgzg0b8zAarb8iXRvTvyUFTeGSGn+ZnzxEk8rUQElsgIfXBDrDMlI1Dlb4pd19 +xIsNER9Tyx6yF7Zod1rg1MvIB671Oi6ON7fQAUtDKXeMOZePglr4UeWJoBjnaH9d +Ci77o0cOPaYjesYBx4/IXr9tgFa+iiS6M+qf4TIRnvHST4D2G0CvOJ4RUHlzEhLN +5mydLIhyPDCBBpEi6lmt2hkuIsKNuYyH4Ga8cyNfIWRjgEj1oDwYPZTISEEdQLpe +/v5WOaHIz16eGWRGENoXkbcFgKyLmZJ956LYBws2J+dIeWCKw9cTXPhyQN9Ky8+Z +AAoACxGV2lZFA4gKn2fQ1XmxqI1AbQ3CekD6819kR5LLU7m7Wc5P/dAVUwHY3+vZ +5nbv0CO7O6l5s9UCKc2Jo5YPSjXnTkLAdc0Hz+Ys63su +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GB CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GB CA" +# Serial: 157768595616588414422159278966750757568 +# MD5 Fingerprint: a4:eb:b9:61:28:2e:b7:2f:98:b0:35:26:90:99:51:1d +# SHA1 Fingerprint: 0f:f9:40:76:18:d3:d7:6a:4b:98:f0:a8:35:9e:0c:fd:27:ac:cc:ed +# SHA256 Fingerprint: 6b:9c:08:e8:6e:b0:f7:67:cf:ad:65:cd:98:b6:21:49:e5:49:4a:67:f5:84:5e:7b:d1:ed:01:9f:27:b8:6b:d6 +-----BEGIN CERTIFICATE----- +MIIDtTCCAp2gAwIBAgIQdrEgUnTwhYdGs/gjGvbCwDANBgkqhkiG9w0BAQsFADBt +MQswCQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUg +Rm91bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9i +YWwgUm9vdCBHQiBDQTAeFw0xNDEyMDExNTAwMzJaFw0zOTEyMDExNTEwMzFaMG0x +CzAJBgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBG +b3VuZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2Jh +bCBSb290IEdCIENBMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEA2Be3 +HEokKtaXscriHvt9OO+Y9bI5mE4nuBFde9IllIiCFSZqGzG7qFshISvYD06fWvGx +WuR51jIjK+FTzJlFXHtPrby/h0oLS5daqPZI7H17Dc0hBt+eFf1Biki3IPShehtX +1F1Q/7pn2COZH8g/497/b1t3sWtuuMlk9+HKQUYOKXHQuSP8yYFfTvdv37+ErXNk +u7dCjmn21HYdfp2nuFeKUWdy19SouJVUQHMD9ur06/4oQnc/nSMbsrY9gBQHTC5P +99UKFg29ZkM3fiNDecNAhvVMKdqOmq0NpQSHiB6F4+lT1ZvIiwNjeOvgGUpuuy9r +M2RYk61pv48b74JIxwIDAQABo1EwTzALBgNVHQ8EBAMCAYYwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUNQ/INmNe4qPs+TtmFc5RUuORmj0wEAYJKwYBBAGCNxUB +BAMCAQAwDQYJKoZIhvcNAQELBQADggEBAEBM+4eymYGQfp3FsLAmzYh7KzKNbrgh +cViXfa43FK8+5/ea4n32cZiZBKpDdHij40lhPnOMTZTg+XHEthYOU3gf1qKHLwI5 +gSk8rxWYITD+KJAAjNHhy/peyP34EEY7onhCkRd0VQreUGdNZtGn//3ZwLWoo4rO +ZvUPQ82nK1d7Y0Zqqi5S2PTt4W2tKZB4SLrhI6qjiey1q5bAtEuiHZeeevJuQHHf +aPFlTc58Bd9TZaml8LGXBHAVRgOY1NK/VLSgWH1Sb9pWJmLU2NuJMW8c8CLC02Ic +Nc1MaRVUGpCY3useX8p3x8uOPUNpnJpY0CQ73xtAln41rYHHTnG6iBM= +-----END CERTIFICATE----- + +# Issuer: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Subject: CN=SZAFIR ROOT CA2 O=Krajowa Izba Rozliczeniowa S.A. +# Label: "SZAFIR ROOT CA2" +# Serial: 357043034767186914217277344587386743377558296292 +# MD5 Fingerprint: 11:64:c1:89:b0:24:b1:8c:b1:07:7e:89:9e:51:9e:99 +# SHA1 Fingerprint: e2:52:fa:95:3f:ed:db:24:60:bd:6e:28:f3:9c:cc:cf:5e:b3:3f:de +# SHA256 Fingerprint: a1:33:9d:33:28:1a:0b:56:e5:57:d3:d3:2b:1c:e7:f9:36:7e:b0:94:bd:5f:a7:2a:7e:50:04:c8:de:d7:ca:fe +-----BEGIN CERTIFICATE----- +MIIDcjCCAlqgAwIBAgIUPopdB+xV0jLVt+O2XwHrLdzk1uQwDQYJKoZIhvcNAQEL +BQAwUTELMAkGA1UEBhMCUEwxKDAmBgNVBAoMH0tyYWpvd2EgSXpiYSBSb3psaWN6 +ZW5pb3dhIFMuQS4xGDAWBgNVBAMMD1NaQUZJUiBST09UIENBMjAeFw0xNTEwMTkw +NzQzMzBaFw0zNTEwMTkwNzQzMzBaMFExCzAJBgNVBAYTAlBMMSgwJgYDVQQKDB9L +cmFqb3dhIEl6YmEgUm96bGljemVuaW93YSBTLkEuMRgwFgYDVQQDDA9TWkFGSVIg +Uk9PVCBDQTIwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQC3vD5QqEvN +QLXOYeeWyrSh2gwisPq1e3YAd4wLz32ohswmUeQgPYUM1ljj5/QqGJ3a0a4m7utT +3PSQ1hNKDJA8w/Ta0o4NkjrcsbH/ON7Dui1fgLkCvUqdGw+0w8LBZwPd3BucPbOw +3gAeqDRHu5rr/gsUvTaE2g0gv/pby6kWIK05YO4vdbbnl5z5Pv1+TW9NL++IDWr6 +3fE9biCloBK0TXC5ztdyO4mTp4CEHCdJckm1/zuVnsHMyAHs6A6KCpbns6aH5db5 +BSsNl0BwPLqsdVqc1U2dAgrSS5tmS0YHF2Wtn2yIANwiieDhZNRnvDF5YTy7ykHN +XGoAyDw4jlivAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQD +AgEGMB0GA1UdDgQWBBQuFqlKGLXLzPVvUPMjX/hd56zwyDANBgkqhkiG9w0BAQsF +AAOCAQEAtXP4A9xZWx126aMqe5Aosk3AM0+qmrHUuOQn/6mWmc5G4G18TKI4pAZw +8PRBEew/R40/cof5O/2kbytTAOD/OblqBw7rHRz2onKQy4I9EYKL0rufKq8h5mOG +nXkZ7/e7DDWQw4rtTw/1zBLZpD67oPwglV9PJi8RI4NOdQcPv5vRtB3pEAT+ymCP +oky4rc/hkA/NrgrHXXu3UNLUYfrVFdvXn4dRVOul4+vJhaAlIDf7js4MNIThPIGy +d05DpYhfhmehPea0XGG2Ptv+tyjFogeutcrKjSoS75ftwjCkySp6+/NNIxuZMzSg +LvWpCz/UXeHPhJ/iGcJfitYgHuNztw== +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Network CA 2 O=Unizeto Technologies S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Network CA 2" +# Serial: 44979900017204383099463764357512596969 +# MD5 Fingerprint: 6d:46:9e:d9:25:6d:08:23:5b:5e:74:7d:1e:27:db:f2 +# SHA1 Fingerprint: d3:dd:48:3e:2b:bf:4c:05:e8:af:10:f5:fa:76:26:cf:d3:dc:30:92 +# SHA256 Fingerprint: b6:76:f2:ed:da:e8:77:5c:d3:6c:b0:f6:3c:d1:d4:60:39:61:f4:9e:62:65:ba:01:3a:2f:03:07:b6:d0:b8:04 +-----BEGIN CERTIFICATE----- +MIIF0jCCA7qgAwIBAgIQIdbQSk8lD8kyN/yqXhKN6TANBgkqhkiG9w0BAQ0FADCB +gDELMAkGA1UEBhMCUEwxIjAgBgNVBAoTGVVuaXpldG8gVGVjaG5vbG9naWVzIFMu +QS4xJzAlBgNVBAsTHkNlcnR1bSBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTEkMCIG +A1UEAxMbQ2VydHVtIFRydXN0ZWQgTmV0d29yayBDQSAyMCIYDzIwMTExMDA2MDgz +OTU2WhgPMjA0NjEwMDYwODM5NTZaMIGAMQswCQYDVQQGEwJQTDEiMCAGA1UEChMZ +VW5pemV0byBUZWNobm9sb2dpZXMgUy5BLjEnMCUGA1UECxMeQ2VydHVtIENlcnRp +ZmljYXRpb24gQXV0aG9yaXR5MSQwIgYDVQQDExtDZXJ0dW0gVHJ1c3RlZCBOZXR3 +b3JrIENBIDIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC9+Xj45tWA +DGSdhhuWZGc/IjoedQF97/tcZ4zJzFxrqZHmuULlIEub2pt7uZld2ZuAS9eEQCsn +0+i6MLs+CRqnSZXvK0AkwpfHp+6bJe+oCgCXhVqqndwpyeI1B+twTUrWwbNWuKFB +OJvR+zF/j+Bf4bE/D44WSWDXBo0Y+aomEKsq09DRZ40bRr5HMNUuctHFY9rnY3lE +fktjJImGLjQ/KUxSiyqnwOKRKIm5wFv5HdnnJ63/mgKXwcZQkpsCLL2puTRZCr+E +Sv/f/rOf69me4Jgj7KZrdxYq28ytOxykh9xGc14ZYmhFV+SQgkK7QtbwYeDBoz1m +o130GO6IyY0XRSmZMnUCMe4pJshrAua1YkV/NxVaI2iJ1D7eTiew8EAMvE0Xy02i +sx7QBlrd9pPPV3WZ9fqGGmd4s7+W/jTcvedSVuWz5XV710GRBdxdaeOVDUO5/IOW +OZV7bIBaTxNyxtd9KXpEulKkKtVBRgkg/iKgtlswjbyJDNXXcPiHUv3a76xRLgez +Tv7QCdpw75j6VuZt27VXS9zlLCUVyJ4ueE742pyehizKV/Ma5ciSixqClnrDvFAS +adgOWkaLOusm+iPJtrCBvkIApPjW/jAux9JG9uWOdf3yzLnQh1vMBhBgu4M1t15n +3kfsmUjxpKEV/q2MYo45VU85FrmxY53/twIDAQABo0IwQDAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBS2oVQ5AsOgP46KvPrU+Bym0ToO/TAOBgNVHQ8BAf8EBAMC +AQYwDQYJKoZIhvcNAQENBQADggIBAHGlDs7k6b8/ONWJWsQCYftMxRQXLYtPU2sQ +F/xlhMcQSZDe28cmk4gmb3DWAl45oPePq5a1pRNcgRRtDoGCERuKTsZPpd1iHkTf +CVn0W3cLN+mLIMb4Ck4uWBzrM9DPhmDJ2vuAL55MYIR4PSFk1vtBHxgP58l1cb29 +XN40hz5BsA72udY/CROWFC/emh1auVbONTqwX3BNXuMp8SMoclm2q8KMZiYcdywm +djWLKKdpoPk79SPdhRB0yZADVpHnr7pH1BKXESLjokmUbOe3lEu6LaTaM4tMpkT/ +WjzGHWTYtTHkpjx6qFcL2+1hGsvxznN3Y6SHb0xRONbkX8eftoEq5IVIeVheO/jb +AoJnwTnbw3RLPTYe+SmTiGhbqEQZIfCn6IENLOiTNrQ3ssqwGyZ6miUfmpqAnksq +P/ujmv5zMnHCnsZy4YpoJ/HkD7TETKVhk/iXEAcqMCWpuchxuO9ozC1+9eB+D4Ko +b7a6bINDd82Kkhehnlt4Fj1F4jNy3eFmypnTycUm/Q1oBEauttmbjL4ZvrHG8hnj +XALKLNhvSgfZyTXaQHXyxKcZb55CEJh15pWLYLztxRLXis7VmFxWlgPF7ncGNf/P +5O4/E2Hu29othfDNrp2yGAlFw5Khchf8R7agCyzxxN5DaAhqXzvwdmP7zAYspsbi +DrW5viSP +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: ca:ff:e2:db:03:d9:cb:4b:e9:0f:ad:84:fd:7b:18:ce +# SHA1 Fingerprint: 01:0c:06:95:a6:98:19:14:ff:bf:5f:c6:b0:b6:95:ea:29:e9:12:a6 +# SHA256 Fingerprint: a0:40:92:9a:02:ce:53:b4:ac:f4:f2:ff:c6:98:1c:e4:49:6f:75:5e:6d:45:fe:0b:2a:69:2b:cd:52:52:3f:36 +-----BEGIN CERTIFICATE----- +MIIGCzCCA/OgAwIBAgIBADANBgkqhkiG9w0BAQsFADCBpjELMAkGA1UEBhMCR1Ix +DzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5k +IFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxQDA+BgNVBAMT +N0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgUm9v +dENBIDIwMTUwHhcNMTUwNzA3MTAxMTIxWhcNNDAwNjMwMTAxMTIxWjCBpjELMAkG +A1UEBhMCR1IxDzANBgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNh +ZGVtaWMgYW5kIFJlc2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkx +QDA+BgNVBAMTN0hlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1 +dGlvbnMgUm9vdENBIDIwMTUwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC +AQDC+Kk/G4n8PDwEXT2QNrCROnk8ZlrvbTkBSRq0t89/TSNTt5AA4xMqKKYx8ZEA +4yjsriFBzh/a/X0SWwGDD7mwX5nh8hKDgE0GPt+sr+ehiGsxr/CL0BgzuNtFajT0 +AoAkKAoCFZVedioNmToUW/bLy1O8E00BiDeUJRtCvCLYjqOWXjrZMts+6PAQZe10 +4S+nfK8nNLspfZu2zwnI5dMK/IhlZXQK3HMcXM1AsRzUtoSMTFDPaI6oWa7CJ06C +ojXdFPQf/7J31Ycvqm59JCfnxssm5uX+Zwdj2EUN3TpZZTlYepKZcj2chF6IIbjV +9Cz82XBST3i4vTwri5WY9bPRaM8gFH5MXF/ni+X1NYEZN9cRCLdmvtNKzoNXADrD +gfgXy5I2XdGj2HUb4Ysn6npIQf1FGQatJ5lOwXBH3bWfgVMS5bGMSF0xQxfjjMZ6 +Y5ZLKTBOhE5iGV48zpeQpX8B653g+IuJ3SWYPZK2fu/Z8VFRfS0myGlZYeCsargq +NhEEelC9MoS+L9xy1dcdFkfkR2YgP/SWxa+OAXqlD3pk9Q0Yh9muiNX6hME6wGko +LfINaFGq46V3xqSQDqE3izEjR8EJCOtu93ib14L8hCCZSRm2Ekax+0VVFqmjZayc +Bw/qa9wfLgZy7IaIEuQt218FL+TwA9MmM+eAws1CoRc0CwIDAQABo0IwQDAPBgNV +HRMBAf8EBTADAQH/MA4GA1UdDwEB/wQEAwIBBjAdBgNVHQ4EFgQUcRVnyMjJvXVd +ctA4GGqd83EkVAswDQYJKoZIhvcNAQELBQADggIBAHW7bVRLqhBYRjTyYtcWNl0I +XtVsyIe9tC5G8jH4fOpCtZMWVdyhDBKg2mF+D1hYc2Ryx+hFjtyp8iY/xnmMsVMI +M4GwVhO+5lFc2JsKT0ucVlMC6U/2DWDqTUJV6HwbISHTGzrMd/K4kPFox/la/vot +9L/J9UUbzjgQKjeKeaO04wlshYaT/4mWJ3iBj2fjRnRUjtkNaeJK9E10A/+yd+2V +Z5fkscWrv2oj6NSU4kQoYsRL4vDY4ilrGnB+JGGTe08DMiUNRSQrlrRGar9KC/ea +j8GsGsVn82800vpzY4zvFrCopEYq+OsS7HK07/grfoxSwIuEVPkvPuNVqNxmsdnh +X9izjFk0WaSrT2y7HxjbdavYy5LNlDhhDgcGH0tGEPEVvo2FXDtKK4F5D7Rpn0lQ +l033DlZdwJVqwjbDG2jJ9SrcR5q+ss7FJej6A7na+RZukYT1HCjI/CbM1xyQVqdf +bzoEvM14iQuODy+jqk+iGxI9FghAD/FGTNeqewjBCvVtJ94Cj8rDtSvK6evIIVM4 +pcw72Hc3MKJP2W/R8kCtQXoXxdZKNYm3QdV8hn9VTYNKpXMgwDqvkPGaJI7ZjnHK +e7iG2rKPmT4dEw0SEe7Uq/DpFXYC5ODfqiAeW2GFZECpkJcNrVPSWh2HagCXZWK0 +vm9qp/UsQu0yrbYhnr68 +-----END CERTIFICATE----- + +# Issuer: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Subject: CN=Hellenic Academic and Research Institutions ECC RootCA 2015 O=Hellenic Academic and Research Institutions Cert. Authority +# Label: "Hellenic Academic and Research Institutions ECC RootCA 2015" +# Serial: 0 +# MD5 Fingerprint: 81:e5:b4:17:eb:c2:f5:e1:4b:0d:41:7b:49:92:fe:ef +# SHA1 Fingerprint: 9f:f1:71:8d:92:d5:9a:f3:7d:74:97:b4:bc:6f:84:68:0b:ba:b6:66 +# SHA256 Fingerprint: 44:b5:45:aa:8a:25:e6:5a:73:ca:15:dc:27:fc:36:d2:4c:1c:b9:95:3a:06:65:39:b1:15:82:dc:48:7b:48:33 +-----BEGIN CERTIFICATE----- +MIICwzCCAkqgAwIBAgIBADAKBggqhkjOPQQDAjCBqjELMAkGA1UEBhMCR1IxDzAN +BgNVBAcTBkF0aGVuczFEMEIGA1UEChM7SGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDZXJ0LiBBdXRob3JpdHkxRDBCBgNVBAMTO0hl +bGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgRUNDIFJv +b3RDQSAyMDE1MB4XDTE1MDcwNzEwMzcxMloXDTQwMDYzMDEwMzcxMlowgaoxCzAJ +BgNVBAYTAkdSMQ8wDQYDVQQHEwZBdGhlbnMxRDBCBgNVBAoTO0hlbGxlbmljIEFj +YWRlbWljIGFuZCBSZXNlYXJjaCBJbnN0aXR1dGlvbnMgQ2VydC4gQXV0aG9yaXR5 +MUQwQgYDVQQDEztIZWxsZW5pYyBBY2FkZW1pYyBhbmQgUmVzZWFyY2ggSW5zdGl0 +dXRpb25zIEVDQyBSb290Q0EgMjAxNTB2MBAGByqGSM49AgEGBSuBBAAiA2IABJKg +QehLgoRc4vgxEZmGZE4JJS+dQS8KrjVPdJWyUWRrjWvmP3CV8AVER6ZyOFB2lQJa +jq4onvktTpnvLEhvTCUp6NFxW98dwXU3tNf6e3pCnGoKVlp8aQuqgAkkbH7BRqNC +MEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFLQi +C4KZJAEOnLvkDv2/+5cgk5kqMAoGCCqGSM49BAMCA2cAMGQCMGfOFmI4oqxiRaep +lSTAGiecMjvAwNW6qef4BENThe5SId6d9SWDPp5YSy/XZxMOIQIwBeF1Ad5o7Sof +TUwJCA3sS61kFyjndc5FZXIhF8siQQ6ME5g4mlRtm8rifOoCWCKR +-----END CERTIFICATE----- + +# Issuer: CN=ISRG Root X1 O=Internet Security Research Group +# Subject: CN=ISRG Root X1 O=Internet Security Research Group +# Label: "ISRG Root X1" +# Serial: 172886928669790476064670243504169061120 +# MD5 Fingerprint: 0c:d2:f9:e0:da:17:73:e9:ed:86:4d:a5:e3:70:e7:4e +# SHA1 Fingerprint: ca:bd:2a:79:a1:07:6a:31:f2:1d:25:36:35:cb:03:9d:43:29:a5:e8 +# SHA256 Fingerprint: 96:bc:ec:06:26:49:76:f3:74:60:77:9a:cf:28:c5:a7:cf:e8:a3:c0:aa:e1:1a:8f:fc:ee:05:c0:bd:df:08:c6 +-----BEGIN CERTIFICATE----- +MIIFazCCA1OgAwIBAgIRAIIQz7DSQONZRGPgu2OCiwAwDQYJKoZIhvcNAQELBQAw +TzELMAkGA1UEBhMCVVMxKTAnBgNVBAoTIEludGVybmV0IFNlY3VyaXR5IFJlc2Vh +cmNoIEdyb3VwMRUwEwYDVQQDEwxJU1JHIFJvb3QgWDEwHhcNMTUwNjA0MTEwNDM4 +WhcNMzUwNjA0MTEwNDM4WjBPMQswCQYDVQQGEwJVUzEpMCcGA1UEChMgSW50ZXJu +ZXQgU2VjdXJpdHkgUmVzZWFyY2ggR3JvdXAxFTATBgNVBAMTDElTUkcgUm9vdCBY +MTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK3oJHP0FDfzm54rVygc +h77ct984kIxuPOZXoHj3dcKi/vVqbvYATyjb3miGbESTtrFj/RQSa78f0uoxmyF+ +0TM8ukj13Xnfs7j/EvEhmkvBioZxaUpmZmyPfjxwv60pIgbz5MDmgK7iS4+3mX6U +A5/TR5d8mUgjU+g4rk8Kb4Mu0UlXjIB0ttov0DiNewNwIRt18jA8+o+u3dpjq+sW +T8KOEUt+zwvo/7V3LvSye0rgTBIlDHCNAymg4VMk7BPZ7hm/ELNKjD+Jo2FR3qyH +B5T0Y3HsLuJvW5iB4YlcNHlsdu87kGJ55tukmi8mxdAQ4Q7e2RCOFvu396j3x+UC +B5iPNgiV5+I3lg02dZ77DnKxHZu8A/lJBdiB3QW0KtZB6awBdpUKD9jf1b0SHzUv +KBds0pjBqAlkd25HN7rOrFleaJ1/ctaJxQZBKT5ZPt0m9STJEadao0xAH0ahmbWn +OlFuhjuefXKnEgV4We0+UXgVCwOPjdAvBbI+e0ocS3MFEvzG6uBQE3xDk3SzynTn +jh8BCNAw1FtxNrQHusEwMFxIt4I7mKZ9YIqioymCzLq9gwQbooMDQaHWBfEbwrbw +qHyGO0aoSCqI3Haadr8faqU9GY/rOPNk3sgrDQoo//fb4hVC1CLQJ13hef4Y53CI +rU7m2Ys6xt0nUW7/vGT1M0NPAgMBAAGjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNV +HRMBAf8EBTADAQH/MB0GA1UdDgQWBBR5tFnme7bl5AFzgAiIyBpY9umbbjANBgkq +hkiG9w0BAQsFAAOCAgEAVR9YqbyyqFDQDLHYGmkgJykIrGF1XIpu+ILlaS/V9lZL +ubhzEFnTIZd+50xx+7LSYK05qAvqFyFWhfFQDlnrzuBZ6brJFe+GnY+EgPbk6ZGQ +3BebYhtF8GaV0nxvwuo77x/Py9auJ/GpsMiu/X1+mvoiBOv/2X/qkSsisRcOj/KK +NFtY2PwByVS5uCbMiogziUwthDyC3+6WVwW6LLv3xLfHTjuCvjHIInNzktHCgKQ5 +ORAzI4JMPJ+GslWYHb4phowim57iaztXOoJwTdwJx4nLCgdNbOhdjsnvzqvHu7Ur +TkXWStAmzOVyyghqpZXjFaH3pO3JLF+l+/+sKAIuvtd7u+Nxe5AW0wdeRlN8NwdC +jNPElpzVmbUq4JUagEiuTDkHzsxHpFKVK7q4+63SM1N95R1NbdWhscdCb+ZAJzVc +oyi3B43njTOQ5yOf+1CceWxG1bQVs5ZufpsMljq4Ui0/1lvh+wjChP4kqKOJ2qxq +4RgqsahDYVvTH9w7jXbyLeiNdd8XM2w9U/t7y0Ff/9yi0GE44Za4rF2LN9d11TPA +mRGunUHBcnWEvgJBQl9nJEiU0Zsnvgc/ubhPgXRR4Xq37Z0j4r7g1SgEEzwxA57d +emyPxgcYxn/eR44/KJ4EBs+lVDR3veyJm+kXQ99b21/+jh5Xos1AnX5iItreGCc= +-----END CERTIFICATE----- + +# Issuer: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Subject: O=FNMT-RCM OU=AC RAIZ FNMT-RCM +# Label: "AC RAIZ FNMT-RCM" +# Serial: 485876308206448804701554682760554759 +# MD5 Fingerprint: e2:09:04:b4:d3:bd:d1:a0:14:fd:1a:d2:47:c4:57:1d +# SHA1 Fingerprint: ec:50:35:07:b2:15:c4:95:62:19:e2:a8:9a:5b:42:99:2c:4c:2c:20 +# SHA256 Fingerprint: eb:c5:57:0c:29:01:8c:4d:67:b1:aa:12:7b:af:12:f7:03:b4:61:1e:bc:17:b7:da:b5:57:38:94:17:9b:93:fa +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIPXZONMGc2yAYdGsdUhGkHMA0GCSqGSIb3DQEBCwUAMDsx +CzAJBgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJ +WiBGTk1ULVJDTTAeFw0wODEwMjkxNTU5NTZaFw0zMDAxMDEwMDAwMDBaMDsxCzAJ +BgNVBAYTAkVTMREwDwYDVQQKDAhGTk1ULVJDTTEZMBcGA1UECwwQQUMgUkFJWiBG +Tk1ULVJDTTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBALpxgHpMhm5/ +yBNtwMZ9HACXjywMI7sQmkCpGreHiPibVmr75nuOi5KOpyVdWRHbNi63URcfqQgf +BBckWKo3Shjf5TnUV/3XwSyRAZHiItQDwFj8d0fsjz50Q7qsNI1NOHZnjrDIbzAz +WHFctPVrbtQBULgTfmxKo0nRIBnuvMApGGWn3v7v3QqQIecaZ5JCEJhfTzC8PhxF +tBDXaEAUwED653cXeuYLj2VbPNmaUtu1vZ5Gzz3rkQUCwJaydkxNEJY7kvqcfw+Z +374jNUUeAlz+taibmSXaXvMiwzn15Cou08YfxGyqxRxqAQVKL9LFwag0Jl1mpdIC +IfkYtwb1TplvqKtMUejPUBjFd8g5CSxJkjKZqLsXF3mwWsXmo8RZZUc1g16p6DUL +mbvkzSDGm0oGObVo/CK67lWMK07q87Hj/LaZmtVC+nFNCM+HHmpxffnTtOmlcYF7 +wk5HlqX2doWjKI/pgG6BU6VtX7hI+cL5NqYuSf+4lsKMB7ObiFj86xsc3i1w4peS +MKGJ47xVqCfWS+2QrYv6YyVZLag13cqXM7zlzced0ezvXg5KkAYmY6252TUtB7p2 +ZSysV4999AeU14ECll2jB0nVetBX+RvnU0Z1qrB5QstocQjpYL05ac70r8NWQMet +UqIJ5G+GR4of6ygnXYMgrwTJbFaai0b1AgMBAAGjgYMwgYAwDwYDVR0TAQH/BAUw +AwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYEFPd9xf3E6Jobd2Sn9R2gzL+H +YJptMD4GA1UdIAQ3MDUwMwYEVR0gADArMCkGCCsGAQUFBwIBFh1odHRwOi8vd3d3 +LmNlcnQuZm5tdC5lcy9kcGNzLzANBgkqhkiG9w0BAQsFAAOCAgEAB5BK3/MjTvDD +nFFlm5wioooMhfNzKWtN/gHiqQxjAb8EZ6WdmF/9ARP67Jpi6Yb+tmLSbkyU+8B1 +RXxlDPiyN8+sD8+Nb/kZ94/sHvJwnvDKuO+3/3Y3dlv2bojzr2IyIpMNOmqOFGYM +LVN0V2Ue1bLdI4E7pWYjJ2cJj+F3qkPNZVEI7VFY/uY5+ctHhKQV8Xa7pO6kO8Rf +77IzlhEYt8llvhjho6Tc+hj507wTmzl6NLrTQfv6MooqtyuGC2mDOL7Nii4LcK2N +JpLuHvUBKwrZ1pebbuCoGRw6IYsMHkCtA+fdZn71uSANA+iW+YJF1DngoABd15jm +fZ5nc8OaKveri6E6FO80vFIOiZiaBECEHX5FaZNXzuvO+FB8TxxuBEOb+dY7Ixjp +6o7RTUaN8Tvkasq6+yO3m/qZASlaWFot4/nUbQ4mrcFuNLwy+AwF+mWj2zs3gyLp +1txyM/1d8iC9djwj2ij3+RvrWWTV3F9yfiD8zYm1kGdNYno/Tq0dwzn+evQoFt9B +9kiABdcPUXmsEKvU7ANm5mqwujGSQkBqvjrTcuFqN1W8rB2Vt2lh8kORdOag0wok +RqEIr9baRRmW1FMdW4R58MD3R++Lj8UGrp1MYp3/RgT408m2ECVAdf4WqslKYIYv +uu8wd+RU4riEmViAqhOLUTpPSPaLtrM= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 1 O=Amazon +# Subject: CN=Amazon Root CA 1 O=Amazon +# Label: "Amazon Root CA 1" +# Serial: 143266978916655856878034712317230054538369994 +# MD5 Fingerprint: 43:c6:bf:ae:ec:fe:ad:2f:18:c6:88:68:30:fc:c8:e6 +# SHA1 Fingerprint: 8d:a7:f9:65:ec:5e:fc:37:91:0f:1c:6e:59:fd:c1:cc:6a:6e:de:16 +# SHA256 Fingerprint: 8e:cd:e6:88:4f:3d:87:b1:12:5b:a3:1a:c3:fc:b1:3d:70:16:de:7f:57:cc:90:4f:e1:cb:97:c6:ae:98:19:6e +-----BEGIN CERTIFICATE----- +MIIDQTCCAimgAwIBAgITBmyfz5m/jAo54vB4ikPmljZbyjANBgkqhkiG9w0BAQsF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAxMB4XDTE1MDUyNjAwMDAwMFoXDTM4MDExNzAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMTCCASIwDQYJKoZIhvcNAQEBBQADggEPADCCAQoCggEBALJ4gHHKeNXj +ca9HgFB0fW7Y14h29Jlo91ghYPl0hAEvrAIthtOgQ3pOsqTQNroBvo3bSMgHFzZM +9O6II8c+6zf1tRn4SWiw3te5djgdYZ6k/oI2peVKVuRF4fn9tBb6dNqcmzU5L/qw +IFAGbHrQgLKm+a/sRxmPUDgH3KKHOVj4utWp+UhnMJbulHheb4mjUcAwhmahRWa6 +VOujw5H5SNz/0egwLX0tdHA114gk957EWW67c4cX8jJGKLhD+rcdqsq08p8kDi1L +93FcXmn/6pUCyziKrlA4b9v7LWIbxcceVOF34GfID5yHI9Y/QCB/IIDEgEw+OyQm +jgSubJrIqg0CAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AYYwHQYDVR0OBBYEFIQYzIU07LwMlJQuCFmcx7IQTgoIMA0GCSqGSIb3DQEBCwUA +A4IBAQCY8jdaQZChGsV2USggNiMOruYou6r4lK5IpDB/G/wkjUu0yKGX9rbxenDI +U5PMCCjjmCXPI6T53iHTfIUJrU6adTrCC2qJeHZERxhlbI1Bjjt/msv0tadQ1wUs +N+gDS63pYaACbvXy8MWy7Vu33PqUXHeeE6V/Uq2V8viTO96LXFvKWlJbYK8U90vv +o/ufQJVtMVT8QtPHRh8jrdkPSHCa2XV4cdFyQzR1bldZwgJcJmApzyMZFo6IQ6XU +5MsI+yMRQ+hDKXJioaldXgjUkK642M4UwtBV8ob2xJNDd2ZhwLnoQdeXeGADbkpy +rqXRfboQnoZsG4q5WTP468SQvvG5 +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 2 O=Amazon +# Subject: CN=Amazon Root CA 2 O=Amazon +# Label: "Amazon Root CA 2" +# Serial: 143266982885963551818349160658925006970653239 +# MD5 Fingerprint: c8:e5:8d:ce:a8:42:e2:7a:c0:2a:5c:7c:9e:26:bf:66 +# SHA1 Fingerprint: 5a:8c:ef:45:d7:a6:98:59:76:7a:8c:8b:44:96:b5:78:cf:47:4b:1a +# SHA256 Fingerprint: 1b:a5:b2:aa:8c:65:40:1a:82:96:01:18:f8:0b:ec:4f:62:30:4d:83:ce:c4:71:3a:19:c3:9c:01:1e:a4:6d:b4 +-----BEGIN CERTIFICATE----- +MIIFQTCCAymgAwIBAgITBmyf0pY1hp8KD+WGePhbJruKNzANBgkqhkiG9w0BAQwF +ADA5MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6 +b24gUm9vdCBDQSAyMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTEL +MAkGA1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJv +b3QgQ0EgMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAK2Wny2cSkxK +gXlRmeyKy2tgURO8TW0G/LAIjd0ZEGrHJgw12MBvIITplLGbhQPDW9tK6Mj4kHbZ +W0/jTOgGNk3Mmqw9DJArktQGGWCsN0R5hYGCrVo34A3MnaZMUnbqQ523BNFQ9lXg +1dKmSYXpN+nKfq5clU1Imj+uIFptiJXZNLhSGkOQsL9sBbm2eLfq0OQ6PBJTYv9K +8nu+NQWpEjTj82R0Yiw9AElaKP4yRLuH3WUnAnE72kr3H9rN9yFVkE8P7K6C4Z9r +2UXTu/Bfh+08LDmG2j/e7HJV63mjrdvdfLC6HM783k81ds8P+HgfajZRRidhW+me +z/CiVX18JYpvL7TFz4QuK/0NURBs+18bvBt+xa47mAExkv8LV/SasrlX6avvDXbR +8O70zoan4G7ptGmh32n2M8ZpLpcTnqWHsFcQgTfJU7O7f/aS0ZzQGPSSbtqDT6Zj +mUyl+17vIWR6IF9sZIUVyzfpYgwLKhbcAS4y2j5L9Z469hdAlO+ekQiG+r5jqFoz +7Mt0Q5X5bGlSNscpb/xVA1wf+5+9R+vnSUeVC06JIglJ4PVhHvG/LopyboBZ/1c6 ++XUyo05f7O0oYtlNc/LMgRdg7c3r3NunysV+Ar3yVAhU/bQtCSwXVEqY0VThUWcI +0u1ufm8/0i2BWSlmy5A5lREedCf+3euvAgMBAAGjQjBAMA8GA1UdEwEB/wQFMAMB +Af8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSwDPBMMPQFWAJI/TPlUq9LhONm +UjANBgkqhkiG9w0BAQwFAAOCAgEAqqiAjw54o+Ci1M3m9Zh6O+oAA7CXDpO8Wqj2 +LIxyh6mx/H9z/WNxeKWHWc8w4Q0QshNabYL1auaAn6AFC2jkR2vHat+2/XcycuUY ++gn0oJMsXdKMdYV2ZZAMA3m3MSNjrXiDCYZohMr/+c8mmpJ5581LxedhpxfL86kS +k5Nrp+gvU5LEYFiwzAJRGFuFjWJZY7attN6a+yb3ACfAXVU3dJnJUH/jWS5E4ywl +7uxMMne0nxrpS10gxdr9HIcWxkPo1LsmmkVwXqkLN1PiRnsn/eBG8om3zEK2yygm +btmlyTrIQRNg91CMFa6ybRoVGld45pIq2WWQgj9sAq+uEjonljYE1x2igGOpm/Hl +urR8FLBOybEfdF849lHqm/osohHUqS0nGkWxr7JOcQ3AWEbWaQbLU8uz/mtBzUF+ +fUwPfHJ5elnNXkoOrJupmHN5fLT0zLm4BwyydFy4x2+IoZCn9Kr5v2c69BoVYh63 +n749sSmvZ6ES8lgQGVMDMBu4Gon2nL2XA46jCfMdiyHxtN/kHNGfZQIG6lzWE7OE +76KlXIx3KadowGuuQNKotOrN8I1LOJwZmhsoVLiJkO/KdYE+HvJkJMcYr07/R54H +9jVlpNMKVv/1F2Rs76giJUmTtt8AF9pYfl3uxRuw0dFfIRDH+fO6AgonB8Xx1sfT +4PsJYGw= +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 3 O=Amazon +# Subject: CN=Amazon Root CA 3 O=Amazon +# Label: "Amazon Root CA 3" +# Serial: 143266986699090766294700635381230934788665930 +# MD5 Fingerprint: a0:d4:ef:0b:f7:b5:d8:49:95:2a:ec:f5:c4:fc:81:87 +# SHA1 Fingerprint: 0d:44:dd:8c:3c:8c:1a:1a:58:75:64:81:e9:0f:2e:2a:ff:b3:d2:6e +# SHA256 Fingerprint: 18:ce:6c:fe:7b:f1:4e:60:b2:e3:47:b8:df:e8:68:cb:31:d0:2e:bb:3a:da:27:15:69:f5:03:43:b4:6d:b3:a4 +-----BEGIN CERTIFICATE----- +MIIBtjCCAVugAwIBAgITBmyf1XSXNmY/Owua2eiedgPySjAKBggqhkjOPQQDAjA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSAzMB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgMzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABCmXp8ZBf8ANm+gBG1bG8lKl +ui2yEujSLtf6ycXYqm0fc4E7O5hrOXwzpcVOho6AF2hiRVd9RFgdszflZwjrZt6j +QjBAMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMB0GA1UdDgQWBBSr +ttvXBp43rDCGB5Fwx5zEGbF4wDAKBggqhkjOPQQDAgNJADBGAiEA4IWSoxe3jfkr +BqWTrBqYaGFy+uGh0PsceGCmQ5nFuMQCIQCcAu/xlJyzlvnrxir4tiz+OpAUFteM +YyRIHN8wfdVoOw== +-----END CERTIFICATE----- + +# Issuer: CN=Amazon Root CA 4 O=Amazon +# Subject: CN=Amazon Root CA 4 O=Amazon +# Label: "Amazon Root CA 4" +# Serial: 143266989758080763974105200630763877849284878 +# MD5 Fingerprint: 89:bc:27:d5:eb:17:8d:06:6a:69:d5:fd:89:47:b4:cd +# SHA1 Fingerprint: f6:10:84:07:d6:f8:bb:67:98:0c:c2:e2:44:c2:eb:ae:1c:ef:63:be +# SHA256 Fingerprint: e3:5d:28:41:9e:d0:20:25:cf:a6:90:38:cd:62:39:62:45:8d:a5:c6:95:fb:de:a3:c2:2b:0b:fb:25:89:70:92 +-----BEGIN CERTIFICATE----- +MIIB8jCCAXigAwIBAgITBmyf18G7EEwpQ+Vxe3ssyBrBDjAKBggqhkjOPQQDAzA5 +MQswCQYDVQQGEwJVUzEPMA0GA1UEChMGQW1hem9uMRkwFwYDVQQDExBBbWF6b24g +Um9vdCBDQSA0MB4XDTE1MDUyNjAwMDAwMFoXDTQwMDUyNjAwMDAwMFowOTELMAkG +A1UEBhMCVVMxDzANBgNVBAoTBkFtYXpvbjEZMBcGA1UEAxMQQW1hem9uIFJvb3Qg +Q0EgNDB2MBAGByqGSM49AgEGBSuBBAAiA2IABNKrijdPo1MN/sGKe0uoe0ZLY7Bi +9i0b2whxIdIA6GO9mif78DluXeo9pcmBqqNbIJhFXRbb/egQbeOc4OO9X4Ri83Bk +M6DLJC9wuoihKqB1+IGuYgbEgds5bimwHvouXKNCMEAwDwYDVR0TAQH/BAUwAwEB +/zAOBgNVHQ8BAf8EBAMCAYYwHQYDVR0OBBYEFNPsxzplbszh2naaVvuc84ZtV+WB +MAoGCCqGSM49BAMDA2gAMGUCMDqLIfG9fhGt0O9Yli/W651+kI0rz2ZVwyzjKKlw +CkcO8DdZEv8tmZQoTipPNU0zWgIxAOp1AE47xDqUEpHJWEadIRNyp4iciuRMStuW +1KyLa2tJElMzrdfkviT8tQp21KW8EA== +-----END CERTIFICATE----- + +# Issuer: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Subject: CN=TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1 O=Turkiye Bilimsel ve Teknolojik Arastirma Kurumu - TUBITAK OU=Kamu Sertifikasyon Merkezi - Kamu SM +# Label: "TUBITAK Kamu SM SSL Kok Sertifikasi - Surum 1" +# Serial: 1 +# MD5 Fingerprint: dc:00:81:dc:69:2f:3e:2f:b0:3b:f6:3d:5a:91:8e:49 +# SHA1 Fingerprint: 31:43:64:9b:ec:ce:27:ec:ed:3a:3f:0b:8f:0d:e4:e8:91:dd:ee:ca +# SHA256 Fingerprint: 46:ed:c3:68:90:46:d5:3a:45:3f:b3:10:4a:b8:0d:ca:ec:65:8b:26:60:ea:16:29:dd:7e:86:79:90:64:87:16 +-----BEGIN CERTIFICATE----- +MIIEYzCCA0ugAwIBAgIBATANBgkqhkiG9w0BAQsFADCB0jELMAkGA1UEBhMCVFIx +GDAWBgNVBAcTD0dlYnplIC0gS29jYWVsaTFCMEAGA1UEChM5VHVya2l5ZSBCaWxp +bXNlbCB2ZSBUZWtub2xvamlrIEFyYXN0aXJtYSBLdXJ1bXUgLSBUVUJJVEFLMS0w +KwYDVQQLEyRLYW11IFNlcnRpZmlrYXN5b24gTWVya2V6aSAtIEthbXUgU00xNjA0 +BgNVBAMTLVRVQklUQUsgS2FtdSBTTSBTU0wgS29rIFNlcnRpZmlrYXNpIC0gU3Vy +dW0gMTAeFw0xMzExMjUwODI1NTVaFw00MzEwMjUwODI1NTVaMIHSMQswCQYDVQQG +EwJUUjEYMBYGA1UEBxMPR2ViemUgLSBLb2NhZWxpMUIwQAYDVQQKEzlUdXJraXll +IEJpbGltc2VsIHZlIFRla25vbG9qaWsgQXJhc3Rpcm1hIEt1cnVtdSAtIFRVQklU +QUsxLTArBgNVBAsTJEthbXUgU2VydGlmaWthc3lvbiBNZXJrZXppIC0gS2FtdSBT +TTE2MDQGA1UEAxMtVFVCSVRBSyBLYW11IFNNIFNTTCBLb2sgU2VydGlmaWthc2kg +LSBTdXJ1bSAxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAr3UwM6q7 +a9OZLBI3hNmNe5eA027n/5tQlT6QlVZC1xl8JoSNkvoBHToP4mQ4t4y86Ij5iySr +LqP1N+RAjhgleYN1Hzv/bKjFxlb4tO2KRKOrbEz8HdDc72i9z+SqzvBV96I01INr +N3wcwv61A+xXzry0tcXtAA9TNypN9E8Mg/uGz8v+jE69h/mniyFXnHrfA2eJLJ2X +YacQuFWQfw4tJzh03+f92k4S400VIgLI4OD8D62K18lUUMw7D8oWgITQUVbDjlZ/ +iSIzL+aFCr2lqBs23tPcLG07xxO9WSMs5uWk99gL7eqQQESolbuT1dCANLZGeA4f +AJNG4e7p+exPFwIDAQABo0IwQDAdBgNVHQ4EFgQUZT/HiobGPN08VFw1+DrtUgxH +V8gwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBACo/4fEyjq7hmFxLXs9rHmoJ0iKpEsdeV31zVmSAhHqT5Am5EM2fKifh +AHe+SMg1qIGf5LgsyX8OsNJLN13qudULXjS99HMpw+0mFZx+CFOKWI3QSyjfwbPf +IPP54+M638yclNhOT8NrF7f3cuitZjO1JVOr4PhMqZ398g26rrnZqsZr+ZO7rqu4 +lzwDGrpDxpa5RXI4s6ehlj2Re37AIVNMh+3yC1SVUZPVIqUNivGTDj5UDrDYyU7c +8jEyVupk+eq1nRZmQnLzf9OxMUP8pI4X8W0jq5Rm+K37DwhuJi1/FwcJsoz7UMCf +lo3Ptv0AnVoUmr8CRPXBwp8iXqIPoeM= +-----END CERTIFICATE----- + +# Issuer: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Subject: CN=GDCA TrustAUTH R5 ROOT O=GUANG DONG CERTIFICATE AUTHORITY CO.,LTD. +# Label: "GDCA TrustAUTH R5 ROOT" +# Serial: 9009899650740120186 +# MD5 Fingerprint: 63:cc:d9:3d:34:35:5c:6f:53:a3:e2:08:70:48:1f:b4 +# SHA1 Fingerprint: 0f:36:38:5b:81:1a:25:c3:9b:31:4e:83:ca:e9:34:66:70:cc:74:b4 +# SHA256 Fingerprint: bf:ff:8f:d0:44:33:48:7d:6a:8a:a6:0c:1a:29:76:7a:9f:c2:bb:b0:5e:42:0f:71:3a:13:b9:92:89:1d:38:93 +-----BEGIN CERTIFICATE----- +MIIFiDCCA3CgAwIBAgIIfQmX/vBH6nowDQYJKoZIhvcNAQELBQAwYjELMAkGA1UE +BhMCQ04xMjAwBgNVBAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZ +IENPLixMVEQuMR8wHQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMB4XDTE0 +MTEyNjA1MTMxNVoXDTQwMTIzMTE1NTk1OVowYjELMAkGA1UEBhMCQ04xMjAwBgNV +BAoMKUdVQU5HIERPTkcgQ0VSVElGSUNBVEUgQVVUSE9SSVRZIENPLixMVEQuMR8w +HQYDVQQDDBZHRENBIFRydXN0QVVUSCBSNSBST09UMIICIjANBgkqhkiG9w0BAQEF +AAOCAg8AMIICCgKCAgEA2aMW8Mh0dHeb7zMNOwZ+Vfy1YI92hhJCfVZmPoiC7XJj +Dp6L3TQsAlFRwxn9WVSEyfFrs0yw6ehGXTjGoqcuEVe6ghWinI9tsJlKCvLriXBj +TnnEt1u9ol2x8kECK62pOqPseQrsXzrj/e+APK00mxqriCZ7VqKChh/rNYmDf1+u +KU49tm7srsHwJ5uu4/Ts765/94Y9cnrrpftZTqfrlYwiOXnhLQiPzLyRuEH3FMEj +qcOtmkVEs7LXLM3GKeJQEK5cy4KOFxg2fZfmiJqwTTQJ9Cy5WmYqsBebnh52nUpm +MUHfP/vFBu8btn4aRjb3ZGM74zkYI+dndRTVdVeSN72+ahsmUPI2JgaQxXABZG12 +ZuGR224HwGGALrIuL4xwp9E7PLOR5G62xDtw8mySlwnNR30YwPO7ng/Wi64HtloP +zgsMR6flPri9fcebNaBhlzpBdRfMK5Z3KpIhHtmVdiBnaM8Nvd/WHwlqmuLMc3Gk +L30SgLdTMEZeS1SZD2fJpcjyIMGC7J0R38IC+xo70e0gmu9lZJIQDSri3nDxGGeC +jGHeuLzRL5z7D9Ar7Rt2ueQ5Vfj4oR24qoAATILnsn8JuLwwoC8N9VKejveSswoA +HQBUlwbgsQfZxw9cZX08bVlX5O2ljelAU58VS6Bx9hoh49pwBiFYFIeFd3mqgnkC +AwEAAaNCMEAwHQYDVR0OBBYEFOLJQJ9NzuiaoXzPDj9lxSmIahlRMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQDRSVfg +p8xoWLoBDysZzY2wYUWsEe1jUGn4H3++Fo/9nesLqjJHdtJnJO29fDMylyrHBYZm +DRd9FBUb1Ov9H5r2XpdptxolpAqzkT9fNqyL7FeoPueBihhXOYV0GkLH6VsTX4/5 +COmSdI31R9KrO9b7eGZONn356ZLpBN79SWP8bfsUcZNnL0dKt7n/HipzcEYwv1ry +L3ml4Y0M2fmyYzeMN2WFcGpcWwlyua1jPLHd+PwyvzeG5LuOmCd+uh8W4XAR8gPf +JWIyJyYYMoSf/wA6E7qaTfRPuBRwIrHKK5DOKcFw9C+df/KQHtZa37dG/OaG+svg +IHZ6uqbL9XzeYqWxi+7egmaKTjowHz+Ay60nugxe19CxVsp3cbK1daFQqUBDF8Io +2c9Si1vIY9RCPqAzekYu9wogRlR+ak8x8YF+QnQ4ZXMn7sZ8uI7XpTrXmKGcjBBV +09tL7ECQ8s1uV9JiDnxXk7Gnbc2dg7sq5+W2O3FYrf3RRbxake5TFW/TRQl1brqQ +XR4EzzffHqhmsYzmIGrv/EhOdJhCrylvLmrH+33RZjEizIYAfmaDDEL0vTSSwxrq +T8p+ck0LcIymSLumoRT2+1hEmRSuqguTaaApJUqlyyvdimYHFngVV3Eb7PVHhPOe +MTd61X8kreS8/f3MboPoDKi3QWwH3b08hpcv0g== +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor RootCert CA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor RootCert CA-1" +# Serial: 15752444095811006489 +# MD5 Fingerprint: 6e:85:f1:dc:1a:00:d3:22:d5:b2:b2:ac:6b:37:05:45 +# SHA1 Fingerprint: ff:bd:cd:e7:82:c8:43:5e:3c:6f:26:86:5c:ca:a8:3a:45:5b:c3:0a +# SHA256 Fingerprint: d4:0e:9c:86:cd:8f:e4:68:c1:77:69:59:f4:9e:a7:74:fa:54:86:84:b6:c4:06:f3:90:92:61:f4:dc:e2:57:5c +-----BEGIN CERTIFICATE----- +MIIEMDCCAxigAwIBAgIJANqb7HHzA7AZMA0GCSqGSIb3DQEBCwUAMIGkMQswCQYD +VQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEk +MCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRydXN0Q29y +IFJvb3RDZXJ0IENBLTEwHhcNMTYwMjA0MTIzMjE2WhcNMjkxMjMxMTcyMzE2WjCB +pDELMAkGA1UEBhMCUEExDzANBgNVBAgMBlBhbmFtYTEUMBIGA1UEBwwLUGFuYW1h +IENpdHkxJDAiBgNVBAoMG1RydXN0Q29yIFN5c3RlbXMgUy4gZGUgUi5MLjEnMCUG +A1UECwweVHJ1c3RDb3IgQ2VydGlmaWNhdGUgQXV0aG9yaXR5MR8wHQYDVQQDDBZU +cnVzdENvciBSb290Q2VydCBDQS0xMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIB +CgKCAQEAv463leLCJhJrMxnHQFgKq1mqjQCj/IDHUHuO1CAmujIS2CNUSSUQIpid +RtLByZ5OGy4sDjjzGiVoHKZaBeYei0i/mJZ0PmnK6bV4pQa81QBeCQryJ3pS/C3V +seq0iWEk8xoT26nPUu0MJLq5nux+AHT6k61sKZKuUbS701e/s/OojZz0JEsq1pme +9J7+wH5COucLlVPat2gOkEz7cD+PSiyU8ybdY2mplNgQTsVHCJCZGxdNuWxu72CV +EY4hgLW9oHPY0LJ3xEXqWib7ZnZ2+AYfYW0PVcWDtxBWcgYHpfOxGgMFZA6dWorW +hnAbJN7+KIor0Gqw/Hqi3LJ5DotlDwIDAQABo2MwYTAdBgNVHQ4EFgQU7mtJPHo/ +DeOxCbeKyKsZn3MzUOcwHwYDVR0jBBgwFoAU7mtJPHo/DeOxCbeKyKsZn3MzUOcw +DwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQAD +ggEBACUY1JGPE+6PHh0RU9otRCkZoB5rMZ5NDp6tPVxBb5UrJKF5mDo4Nvu7Zp5I +/5CQ7z3UuJu0h3U/IJvOcs+hVcFNZKIZBqEHMwwLKeXx6quj7LUKdJDHfXLy11yf +ke+Ri7fc7Waiz45mO7yfOgLgJ90WmMCV1Aqk5IGadZQ1nJBfiDcGrVmVCrDRZ9MZ +yonnMlo2HD6CqFqTvsbQZJG2z9m2GM/bftJlo6bEjhcxwft+dtvTheNYsnd6djts +L1Ac59v2Z3kf9YKVmgenFK+P3CghZwnS1k1aHBkcjndcw5QkPTJrS37UeJSDvjdN +zl/HHk484IkzlQsPpTLWPFp5LBk= +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor RootCert CA-2 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor RootCert CA-2" +# Serial: 2711694510199101698 +# MD5 Fingerprint: a2:e1:f8:18:0b:ba:45:d5:c7:41:2a:bb:37:52:45:64 +# SHA1 Fingerprint: b8:be:6d:cb:56:f1:55:b9:63:d4:12:ca:4e:06:34:c7:94:b2:1c:c0 +# SHA256 Fingerprint: 07:53:e9:40:37:8c:1b:d5:e3:83:6e:39:5d:ae:a5:cb:83:9e:50:46:f1:bd:0e:ae:19:51:cf:10:fe:c7:c9:65 +-----BEGIN CERTIFICATE----- +MIIGLzCCBBegAwIBAgIIJaHfyjPLWQIwDQYJKoZIhvcNAQELBQAwgaQxCzAJBgNV +BAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQw +IgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRy +dXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0eTEfMB0GA1UEAwwWVHJ1c3RDb3Ig +Um9vdENlcnQgQ0EtMjAeFw0xNjAyMDQxMjMyMjNaFw0zNDEyMzExNzI2MzlaMIGk +MQswCQYDVQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEg +Q2l0eTEkMCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYD +VQQLDB5UcnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxHzAdBgNVBAMMFlRy +dXN0Q29yIFJvb3RDZXJ0IENBLTIwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIK +AoICAQCnIG7CKqJiJJWQdsg4foDSq8GbZQWU9MEKENUCrO2fk8eHyLAnK0IMPQo+ +QVqedd2NyuCb7GgypGmSaIwLgQ5WoD4a3SwlFIIvl9NkRvRUqdw6VC0xK5mC8tkq +1+9xALgxpL56JAfDQiDyitSSBBtlVkxs1Pu2YVpHI7TYabS3OtB0PAx1oYxOdqHp +2yqlO/rOsP9+aij9JxzIsekp8VduZLTQwRVtDr4uDkbIXvRR/u8OYzo7cbrPb1nK +DOObXUm4TOJXsZiKQlecdu/vvdFoqNL0Cbt3Nb4lggjEFixEIFapRBF37120Hape +az6LMvYHL1cEksr1/p3C6eizjkxLAjHZ5DxIgif3GIJ2SDpxsROhOdUuxTTCHWKF +3wP+TfSvPd9cW436cOGlfifHhi5qjxLGhF5DUVCcGZt45vz27Ud+ez1m7xMTiF88 +oWP7+ayHNZ/zgp6kPwqcMWmLmaSISo5uZk3vFsQPeSghYA2FFn3XVDjxklb9tTNM +g9zXEJ9L/cb4Qr26fHMC4P99zVvh1Kxhe1fVSntb1IVYJ12/+CtgrKAmrhQhJ8Z3 +mjOAPF5GP/fDsaOGM8boXg25NSyqRsGFAnWAoOsk+xWq5Gd/bnc/9ASKL3x74xdh +8N0JqSDIvgmk0H5Ew7IwSjiqqewYmgeCK9u4nBit2uBGF6zPXQIDAQABo2MwYTAd +BgNVHQ4EFgQU2f4hQG6UnrybPZx9mCAZ5YwwYrIwHwYDVR0jBBgwFoAU2f4hQG6U +nrybPZx9mCAZ5YwwYrIwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYw +DQYJKoZIhvcNAQELBQADggIBAJ5Fngw7tu/hOsh80QA9z+LqBrWyOrsGS2h60COX +dKcs8AjYeVrXWoSK2BKaG9l9XE1wxaX5q+WjiYndAfrs3fnpkpfbsEZC89NiqpX+ +MWcUaViQCqoL7jcjx1BRtPV+nuN79+TMQjItSQzL/0kMmx40/W5ulop5A7Zv2wnL +/V9lFDfhOPXzYRZY5LVtDQsEGz9QLX+zx3oaFoBg+Iof6Rsqxvm6ARppv9JYx1RX +CI/hOWB3S6xZhBqI8d3LT3jX5+EzLfzuQfogsL7L9ziUwOHQhQ+77Sxzq+3+knYa +ZH9bDTMJBzN7Bj8RpFxwPIXAz+OQqIN3+tvmxYxoZxBnpVIt8MSZj3+/0WvitUfW +2dCFmU2Umw9Lje4AWkcdEQOsQRivh7dvDDqPys/cA8GiCcjl/YBeyGBCARsaU1q7 +N6a3vLqE6R5sGtRk2tRD/pOLS/IseRYQ1JMLiI+h2IYURpFHmygk71dSTlxCnKr3 +Sewn6EAes6aJInKc9Q0ztFijMDvd1GpUk74aTfOTlPf8hAs/hCBcNANExdqtvArB +As8e5ZTZ845b2EzwnexhF7sUMlQMAimTHpKG9n/v55IFDlndmQguLvqcAFLTxWYp +5KeXRKQOKIETNcX2b2TmQcTVL8w0RSXPQQCWPUouwpaYT05KnJe32x+SMsj/D1Fu +1uwJ +-----END CERTIFICATE----- + +# Issuer: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Subject: CN=TrustCor ECA-1 O=TrustCor Systems S. de R.L. OU=TrustCor Certificate Authority +# Label: "TrustCor ECA-1" +# Serial: 9548242946988625984 +# MD5 Fingerprint: 27:92:23:1d:0a:f5:40:7c:e9:e6:6b:9d:d8:f5:e7:6c +# SHA1 Fingerprint: 58:d1:df:95:95:67:6b:63:c0:f0:5b:1c:17:4d:8b:84:0b:c8:78:bd +# SHA256 Fingerprint: 5a:88:5d:b1:9c:01:d9:12:c5:75:93:88:93:8c:af:bb:df:03:1a:b2:d4:8e:91:ee:15:58:9b:42:97:1d:03:9c +-----BEGIN CERTIFICATE----- +MIIEIDCCAwigAwIBAgIJAISCLF8cYtBAMA0GCSqGSIb3DQEBCwUAMIGcMQswCQYD +VQQGEwJQQTEPMA0GA1UECAwGUGFuYW1hMRQwEgYDVQQHDAtQYW5hbWEgQ2l0eTEk +MCIGA1UECgwbVHJ1c3RDb3IgU3lzdGVtcyBTLiBkZSBSLkwuMScwJQYDVQQLDB5U +cnVzdENvciBDZXJ0aWZpY2F0ZSBBdXRob3JpdHkxFzAVBgNVBAMMDlRydXN0Q29y +IEVDQS0xMB4XDTE2MDIwNDEyMzIzM1oXDTI5MTIzMTE3MjgwN1owgZwxCzAJBgNV +BAYTAlBBMQ8wDQYDVQQIDAZQYW5hbWExFDASBgNVBAcMC1BhbmFtYSBDaXR5MSQw +IgYDVQQKDBtUcnVzdENvciBTeXN0ZW1zIFMuIGRlIFIuTC4xJzAlBgNVBAsMHlRy +dXN0Q29yIENlcnRpZmljYXRlIEF1dGhvcml0eTEXMBUGA1UEAwwOVHJ1c3RDb3Ig +RUNBLTEwggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDPj+ARtZ+odnbb +3w9U73NjKYKtR8aja+3+XzP4Q1HpGjORMRegdMTUpwHmspI+ap3tDvl0mEDTPwOA +BoJA6LHip1GnHYMma6ve+heRK9jGrB6xnhkB1Zem6g23xFUfJ3zSCNV2HykVh0A5 +3ThFEXXQmqc04L/NyFIduUd+Dbi7xgz2c1cWWn5DkR9VOsZtRASqnKmcp0yJF4Ou +owReUoCLHhIlERnXDH19MURB6tuvsBzvgdAsxZohmz3tQjtQJvLsznFhBmIhVE5/ +wZ0+fyCMgMsq2JdiyIMzkX2woloPV+g7zPIlstR8L+xNxqE6FXrntl019fZISjZF +ZtS6mFjBAgMBAAGjYzBhMB0GA1UdDgQWBBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAf +BgNVHSMEGDAWgBREnkj1zG1I1KBLf/5ZJC+Dl5mahjAPBgNVHRMBAf8EBTADAQH/ +MA4GA1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAQEABT41XBVwm8nHc2Fv +civUwo/yQ10CzsSUuZQRg2dd4mdsdXa/uwyqNsatR5Nj3B5+1t4u/ukZMjgDfxT2 +AHMsWbEhBuH7rBiVDKP/mZb3Kyeb1STMHd3BOuCYRLDE5D53sXOpZCz2HAF8P11F +hcCF5yWPldwX8zyfGm6wyuMdKulMY/okYWLW2n62HGz1Ah3UKt1VkOsqEUc8Ll50 +soIipX1TH0XsJ5F95yIW6MBoNtjG8U+ARDL54dHRHareqKucBK+tIA5kmE2la8BI +WJZpTdwHjFGTot+fDz2LYLSCjaoITmJF4PkL0uDgPFveXHEnJcLmA4GLEFPjx1Wi +tJ/X5g== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority RSA O=SSL Corporation +# Label: "SSL.com Root Certification Authority RSA" +# Serial: 8875640296558310041 +# MD5 Fingerprint: 86:69:12:c0:70:f1:ec:ac:ac:c2:d5:bc:a5:5b:a1:29 +# SHA1 Fingerprint: b7:ab:33:08:d1:ea:44:77:ba:14:80:12:5a:6f:bd:a9:36:49:0c:bb +# SHA256 Fingerprint: 85:66:6a:56:2e:e0:be:5c:e9:25:c1:d8:89:0a:6f:76:a8:7e:c1:6d:4d:7d:5f:29:ea:74:19:cf:20:12:3b:69 +-----BEGIN CERTIFICATE----- +MIIF3TCCA8WgAwIBAgIIeyyb0xaAMpkwDQYJKoZIhvcNAQELBQAwfDELMAkGA1UE +BhMCVVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQK +DA9TU0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBSU0EwHhcNMTYwMjEyMTczOTM5WhcNNDEwMjEyMTcz +OTM5WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNv +bSBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IFJTQTCCAiIwDQYJKoZIhvcN +AQEBBQADggIPADCCAgoCggIBAPkP3aMrfcvQKv7sZ4Wm5y4bunfh4/WvpOz6Sl2R +xFdHaxh3a3by/ZPkPQ/CFp4LZsNWlJ4Xg4XOVu/yFv0AYvUiCVToZRdOQbngT0aX +qhvIuG5iXmmxX9sqAn78bMrzQdjt0Oj8P2FI7bADFB0QDksZ4LtO7IZl/zbzXmcC +C52GVWH9ejjt/uIZALdvoVBidXQ8oPrIJZK0bnoix/geoeOy3ZExqysdBP+lSgQ3 +6YWkMyv94tZVNHwZpEpox7Ko07fKoZOI68GXvIz5HdkihCR0xwQ9aqkpk8zruFvh +/l8lqjRYyMEjVJ0bmBHDOJx+PYZspQ9AhnwC9FwCTyjLrnGfDzrIM/4RJTXq/LrF +YD3ZfBjVsqnTdXgDciLKOsMf7yzlLqn6niy2UUb9rwPW6mBo6oUWNmuF6R7As93E +JNyAKoFBbZQ+yODJgUEAnl6/f8UImKIYLEJAs/lvOCdLToD0PYFH4Ih86hzOtXVc +US4cK38acijnALXRdMbX5J+tB5O2UzU1/Dfkw/ZdFr4hc96SCvigY2q8lpJqPvi8 +ZVWb3vUNiSYE/CUapiVpy8JtynziWV+XrOvvLsi81xtZPCvM8hnIk2snYxnP/Okm ++Mpxm3+T/jRnhE6Z6/yzeAkzcLpmpnbtG3PrGqUNxCITIJRWCk4sbE6x/c+cCbqi +M+2HAgMBAAGjYzBhMB0GA1UdDgQWBBTdBAkHovV6fVJTEpKV7jiAJQ2mWTAPBgNV +HRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFN0ECQei9Xp9UlMSkpXuOIAlDaZZMA4G +A1UdDwEB/wQEAwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAIBgRlCn7Jp0cHh5wYfGV +cpNxJK1ok1iOMq8bs3AD/CUrdIWQPXhq9LmLpZc7tRiRux6n+UBbkflVma8eEdBc +Hadm47GUBwwyOabqG7B52B2ccETjit3E+ZUfijhDPwGFpUenPUayvOUiaPd7nNgs +PgohyC0zrL/FgZkxdMF1ccW+sfAjRfSda/wZY52jvATGGAslu1OJD7OAUN5F7kR/ +q5R4ZJjT9ijdh9hwZXT7DrkT66cPYakylszeu+1jTBi7qUD3oFRuIIhxdRjqerQ0 +cuAjJ3dctpDqhiVAq+8zD8ufgr6iIPv2tS0a5sKFsXQP+8hlAqRSAUfdSSLBv9jr +a6x+3uxjMxW3IwiPxg+NQVrdjsW5j+VFP3jbutIbQLH+cU0/4IGiul607BXgk90I +H37hVZkLId6Tngr75qNJvTYw/ud3sqB1l7UtgYgXZSD32pAAn8lSzDLKNXz1PQ/Y +K9f1JmzJBjSWFupwWRoyeXkLtoh/D1JIPb9s2KJELtFOt3JY04kTlf5Eq/jXixtu +nLwsoFvVagCvXzfh1foQC5ichucmj87w7G6KVwuA406ywKBjYZC6VWg3dGq2ktuf +oYYitmUnDuy2n0Jg5GfCtdpBC8TTi2EbvPofkSvXRAdeuims2cXp71NIWuuA8ShY +Ic2wBlX7Jz9TkHCpBB5XJ7k= +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com Root Certification Authority ECC" +# Serial: 8495723813297216424 +# MD5 Fingerprint: 2e:da:e4:39:7f:9c:8f:37:d1:70:9f:26:17:51:3a:8e +# SHA1 Fingerprint: c3:19:7c:39:24:e6:54:af:1b:c4:ab:20:95:7a:e2:c3:0e:13:02:6a +# SHA256 Fingerprint: 34:17:bb:06:cc:60:07:da:1b:96:1c:92:0b:8a:b4:ce:3f:ad:82:0e:4a:a3:0b:9a:cb:c4:a7:4e:bd:ce:bc:65 +-----BEGIN CERTIFICATE----- +MIICjTCCAhSgAwIBAgIIdebfy8FoW6gwCgYIKoZIzj0EAwIwfDELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xMTAvBgNVBAMMKFNTTC5jb20gUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNDAzWhcNNDEwMjEyMTgxNDAz +WjB8MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hvdXN0 +b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjExMC8GA1UEAwwoU1NMLmNvbSBS +b290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABEVuqVDEpiM2nl8ojRfLliJkP9x6jh3MCLOicSS6jkm5BBtHllirLZXI +7Z4INcgn64mMU1jrYor+8FsPazFSY0E7ic3s7LaNGdM0B9y7xgZ/wkWV7Mt/qCPg +CemB+vNH06NjMGEwHQYDVR0OBBYEFILRhXMw5zUE044CkvvlpNHEIejNMA8GA1Ud +EwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUgtGFczDnNQTTjgKS++Wk0cQh6M0wDgYD +VR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2cAMGQCMG/n61kRpGDPYbCWe+0F+S8T +kdzt5fxQaxFGRrMcIQBiu77D5+jNB5n5DQtdcj7EqgIwH7y6C+IwJPt8bYBVCpk+ +gA0z5Wajs6O7pdWLjwkspl1+4vAHCGht0nxpbl/f5Wpl +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority RSA R2 O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority RSA R2" +# Serial: 6248227494352943350 +# MD5 Fingerprint: e1:1e:31:58:1a:ae:54:53:02:f6:17:6a:11:7b:4d:95 +# SHA1 Fingerprint: 74:3a:f0:52:9b:d0:32:a0:f4:4a:83:cd:d4:ba:a9:7b:7c:2e:c4:9a +# SHA256 Fingerprint: 2e:7b:f1:6c:c2:24:85:a7:bb:e2:aa:86:96:75:07:61:b0:ae:39:be:3b:2f:e9:d0:cc:6d:4e:f7:34:91:42:5c +-----BEGIN CERTIFICATE----- +MIIF6zCCA9OgAwIBAgIIVrYpzTS8ePYwDQYJKoZIhvcNAQELBQAwgYIxCzAJBgNV +BAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4GA1UEBwwHSG91c3RvbjEYMBYGA1UE +CgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQDDC5TU0wuY29tIEVWIFJvb3QgQ2Vy +dGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIyMB4XDTE3MDUzMTE4MTQzN1oXDTQy +MDUzMDE4MTQzN1owgYIxCzAJBgNVBAYTAlVTMQ4wDAYDVQQIDAVUZXhhczEQMA4G +A1UEBwwHSG91c3RvbjEYMBYGA1UECgwPU1NMIENvcnBvcmF0aW9uMTcwNQYDVQQD +DC5TU0wuY29tIEVWIFJvb3QgQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkgUlNBIFIy +MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAjzZlQOHWTcDXtOlG2mvq +M0fNTPl9fb69LT3w23jhhqXZuglXaO1XPqDQCEGD5yhBJB/jchXQARr7XnAjssuf +OePPxU7Gkm0mxnu7s9onnQqG6YE3Bf7wcXHswxzpY6IXFJ3vG2fThVUCAtZJycxa +4bH3bzKfydQ7iEGonL3Lq9ttewkfokxykNorCPzPPFTOZw+oz12WGQvE43LrrdF9 +HSfvkusQv1vrO6/PgN3B0pYEW3p+pKk8OHakYo6gOV7qd89dAFmPZiw+B6KjBSYR +aZfqhbcPlgtLyEDhULouisv3D5oi53+aNxPN8k0TayHRwMwi8qFG9kRpnMphNQcA +b9ZhCBHqurj26bNg5U257J8UZslXWNvNh2n4ioYSA0e/ZhN2rHd9NCSFg83XqpyQ +Gp8hLH94t2S42Oim9HizVcuE0jLEeK6jj2HdzghTreyI/BXkmg3mnxp3zkyPuBQV +PWKchjgGAGYS5Fl2WlPAApiiECtoRHuOec4zSnaqW4EWG7WK2NAAe15itAnWhmMO +pgWVSbooi4iTsjQc2KRVbrcc0N6ZVTsj9CLg+SlmJuwgUHfbSguPvuUCYHBBXtSu +UDkiFCbLsjtzdFVHB3mBOagwE0TlBIqulhMlQg+5U8Sb/M3kHN48+qvWBkofZ6aY +MBzdLNvcGJVXZsb/XItW9XcCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAfBgNV +HSMEGDAWgBT5YLvU49U09rj1BoAlp3PbRmmonjAdBgNVHQ4EFgQU+WC71OPVNPa4 +9QaAJadz20ZpqJ4wDgYDVR0PAQH/BAQDAgGGMA0GCSqGSIb3DQEBCwUAA4ICAQBW +s47LCp1Jjr+kxJG7ZhcFUZh1++VQLHqe8RT6q9OKPv+RKY9ji9i0qVQBDb6Thi/5 +Sm3HXvVX+cpVHBK+Rw82xd9qt9t1wkclf7nxY/hoLVUE0fKNsKTPvDxeH3jnpaAg +cLAExbf3cqfeIg29MyVGjGSSJuM+LmOW2puMPfgYCdcDzH2GguDKBAdRUNf/ktUM +79qGn5nX67evaOI5JpS6aLe/g9Pqemc9YmeuJeVy6OLk7K4S9ksrPJ/psEDzOFSz +/bdoyNrGj1E8svuR3Bznm53htw1yj+KkxKl4+esUrMZDBcJlOSgYAsOCsp0FvmXt +ll9ldDz7CTUue5wT/RsPXcdtgTpWD8w74a8CLyKsRspGPKAcTNZEtF4uXBVmCeEm +Kf7GUmG6sXP/wwyc5WxqlD8UykAWlYTzWamsX0xhk23RO8yilQwipmdnRC652dKK +QbNmC1r7fSOl8hqw/96bg5Qu0T/fkreRrwU7ZcegbLHNYhLDkBvjJc40vG93drEQ +w/cFGsDWr3RiSBd3kmmQYRzelYB0VI8YHMPzA9C/pEN1hlMYegouCRw2n5H9gooi +S9EOUCXdywMMF8mDAAhONU2Ki+3wApRmLER/y5UnlhetCTCstnEXbosX9hwJ1C07 +mKVx01QT2WDz9UtmT/rx7iASjbSsV7FFY6GsdqnC+w== +-----END CERTIFICATE----- + +# Issuer: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Subject: CN=SSL.com EV Root Certification Authority ECC O=SSL Corporation +# Label: "SSL.com EV Root Certification Authority ECC" +# Serial: 3182246526754555285 +# MD5 Fingerprint: 59:53:22:65:83:42:01:54:c0:ce:42:b9:5a:7c:f2:90 +# SHA1 Fingerprint: 4c:dd:51:a3:d1:f5:20:32:14:b0:c6:c5:32:23:03:91:c7:46:42:6d +# SHA256 Fingerprint: 22:a2:c1:f7:bd:ed:70:4c:c1:e7:01:b5:f4:08:c3:10:88:0f:e9:56:b5:de:2a:4a:44:f9:9c:87:3a:25:a7:c8 +-----BEGIN CERTIFICATE----- +MIIClDCCAhqgAwIBAgIILCmcWxbtBZUwCgYIKoZIzj0EAwIwfzELMAkGA1UEBhMC +VVMxDjAMBgNVBAgMBVRleGFzMRAwDgYDVQQHDAdIb3VzdG9uMRgwFgYDVQQKDA9T +U0wgQ29ycG9yYXRpb24xNDAyBgNVBAMMK1NTTC5jb20gRVYgUm9vdCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eSBFQ0MwHhcNMTYwMjEyMTgxNTIzWhcNNDEwMjEyMTgx +NTIzWjB/MQswCQYDVQQGEwJVUzEOMAwGA1UECAwFVGV4YXMxEDAOBgNVBAcMB0hv +dXN0b24xGDAWBgNVBAoMD1NTTCBDb3Jwb3JhdGlvbjE0MDIGA1UEAwwrU1NMLmNv +bSBFViBSb290IENlcnRpZmljYXRpb24gQXV0aG9yaXR5IEVDQzB2MBAGByqGSM49 +AgEGBSuBBAAiA2IABKoSR5CYG/vvw0AHgyBO8TCCogbR8pKGYfL2IWjKAMTH6kMA +VIbc/R/fALhBYlzccBYy3h+Z1MzFB8gIH2EWB1E9fVwHU+M1OIzfzZ/ZLg1Kthku +WnBaBu2+8KGwytAJKaNjMGEwHQYDVR0OBBYEFFvKXuXe0oGqzagtZFG22XKbl+ZP +MA8GA1UdEwEB/wQFMAMBAf8wHwYDVR0jBBgwFoAUW8pe5d7SgarNqC1kUbbZcpuX +5k8wDgYDVR0PAQH/BAQDAgGGMAoGCCqGSM49BAMCA2gAMGUCMQCK5kCJN+vp1RPZ +ytRrJPOwPYdGWBrssd9v+1a6cGvHOMzosYxPD/fxZ3YOg9AeUY8CMD32IygmTMZg +h5Mmm7I1HrrW9zzRHM76JTymGoEVW/MSD2zuZYrJh6j5B+BimoxcSg== +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Subject: CN=GlobalSign O=GlobalSign OU=GlobalSign Root CA - R6 +# Label: "GlobalSign Root CA - R6" +# Serial: 1417766617973444989252670301619537 +# MD5 Fingerprint: 4f:dd:07:e4:d4:22:64:39:1e:0c:37:42:ea:d1:c6:ae +# SHA1 Fingerprint: 80:94:64:0e:b5:a7:a1:ca:11:9c:1f:dd:d5:9f:81:02:63:a7:fb:d1 +# SHA256 Fingerprint: 2c:ab:ea:fe:37:d0:6c:a2:2a:ba:73:91:c0:03:3d:25:98:29:52:c4:53:64:73:49:76:3a:3a:b5:ad:6c:cf:69 +-----BEGIN CERTIFICATE----- +MIIFgzCCA2ugAwIBAgIORea7A4Mzw4VlSOb/RVEwDQYJKoZIhvcNAQEMBQAwTDEg +MB4GA1UECxMXR2xvYmFsU2lnbiBSb290IENBIC0gUjYxEzARBgNVBAoTCkdsb2Jh +bFNpZ24xEzARBgNVBAMTCkdsb2JhbFNpZ24wHhcNMTQxMjEwMDAwMDAwWhcNMzQx +MjEwMDAwMDAwWjBMMSAwHgYDVQQLExdHbG9iYWxTaWduIFJvb3QgQ0EgLSBSNjET +MBEGA1UEChMKR2xvYmFsU2lnbjETMBEGA1UEAxMKR2xvYmFsU2lnbjCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAJUH6HPKZvnsFMp7PPcNCPG0RQssgrRI +xutbPK6DuEGSMxSkb3/pKszGsIhrxbaJ0cay/xTOURQh7ErdG1rG1ofuTToVBu1k +ZguSgMpE3nOUTvOniX9PeGMIyBJQbUJmL025eShNUhqKGoC3GYEOfsSKvGRMIRxD +aNc9PIrFsmbVkJq3MQbFvuJtMgamHvm566qjuL++gmNQ0PAYid/kD3n16qIfKtJw +LnvnvJO7bVPiSHyMEAc4/2ayd2F+4OqMPKq0pPbzlUoSB239jLKJz9CgYXfIWHSw +1CM69106yqLbnQneXUQtkPGBzVeS+n68UARjNN9rkxi+azayOeSsJDa38O+2HBNX +k7besvjihbdzorg1qkXy4J02oW9UivFyVm4uiMVRQkQVlO6jxTiWm05OWgtH8wY2 +SXcwvHE35absIQh1/OZhFj931dmRl4QKbNQCTXTAFO39OfuD8l4UoQSwC+n+7o/h +bguyCLNhZglqsQY6ZZZZwPA1/cnaKI0aEYdwgQqomnUdnjqGBQCe24DWJfncBZ4n +WUx2OVvq+aWh2IMP0f/fMBH5hc8zSPXKbWQULHpYT9NLCEnFlWQaYw55PfWzjMpY +rZxCRXluDocZXFSxZba/jJvcE+kNb7gu3GduyYsRtYQUigAZcIN5kZeR1Bonvzce +MgfYFGM8KEyvAgMBAAGjYzBhMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTAD +AQH/MB0GA1UdDgQWBBSubAWjkxPioufi1xzWx/B/yGdToDAfBgNVHSMEGDAWgBSu +bAWjkxPioufi1xzWx/B/yGdToDANBgkqhkiG9w0BAQwFAAOCAgEAgyXt6NH9lVLN +nsAEoJFp5lzQhN7craJP6Ed41mWYqVuoPId8AorRbrcWc+ZfwFSY1XS+wc3iEZGt +Ixg93eFyRJa0lV7Ae46ZeBZDE1ZXs6KzO7V33EByrKPrmzU+sQghoefEQzd5Mr61 +55wsTLxDKZmOMNOsIeDjHfrYBzN2VAAiKrlNIC5waNrlU/yDXNOd8v9EDERm8tLj +vUYAGm0CuiVdjaExUd1URhxN25mW7xocBFymFe944Hn+Xds+qkxV/ZoVqW/hpvvf +cDDpw+5CRu3CkwWJ+n1jez/QcYF8AOiYrg54NMMl+68KnyBr3TsTjxKM4kEaSHpz +oHdpx7Zcf4LIHv5YGygrqGytXm3ABdJ7t+uA/iU3/gKbaKxCXcPu9czc8FB10jZp +nOZ7BN9uBmm23goJSFmH63sUYHpkqmlD75HHTOwY3WzvUy2MmeFe8nI+z1TIvWfs +pA9MRf/TuTAjB0yPEL+GltmZWrSZVxykzLsViVO6LAUP5MSeGbEYNNVMnbrt9x+v +JJUEeKgDu+6B5dpffItKoZB0JaezPkvILFa9x8jvOOJckvB595yEunQtYQEgfn7R +8k8HWV+LLUNS60YMlOH1Zkd5d9VUWx+tJDfLRVpOoERIyNiwmcUVhAn21klJwGW4 +5hpxbqCo8YLoRT5s1gLXCmeDBVrJpBA= +-----END CERTIFICATE----- + +# Issuer: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Subject: CN=OISTE WISeKey Global Root GC CA O=WISeKey OU=OISTE Foundation Endorsed +# Label: "OISTE WISeKey Global Root GC CA" +# Serial: 44084345621038548146064804565436152554 +# MD5 Fingerprint: a9:d6:b9:2d:2f:93:64:f8:a5:69:ca:91:e9:68:07:23 +# SHA1 Fingerprint: e0:11:84:5e:34:de:be:88:81:b9:9c:f6:16:26:d1:96:1f:c3:b9:31 +# SHA256 Fingerprint: 85:60:f9:1c:36:24:da:ba:95:70:b5:fe:a0:db:e3:6f:f1:1a:83:23:be:94:86:85:4f:b3:f3:4a:55:71:19:8d +-----BEGIN CERTIFICATE----- +MIICaTCCAe+gAwIBAgIQISpWDK7aDKtARb8roi066jAKBggqhkjOPQQDAzBtMQsw +CQYDVQQGEwJDSDEQMA4GA1UEChMHV0lTZUtleTEiMCAGA1UECxMZT0lTVEUgRm91 +bmRhdGlvbiBFbmRvcnNlZDEoMCYGA1UEAxMfT0lTVEUgV0lTZUtleSBHbG9iYWwg +Um9vdCBHQyBDQTAeFw0xNzA1MDkwOTQ4MzRaFw00MjA1MDkwOTU4MzNaMG0xCzAJ +BgNVBAYTAkNIMRAwDgYDVQQKEwdXSVNlS2V5MSIwIAYDVQQLExlPSVNURSBGb3Vu +ZGF0aW9uIEVuZG9yc2VkMSgwJgYDVQQDEx9PSVNURSBXSVNlS2V5IEdsb2JhbCBS +b290IEdDIENBMHYwEAYHKoZIzj0CAQYFK4EEACIDYgAETOlQwMYPchi82PG6s4ni +eUqjFqdrVCTbUf/q9Akkwwsin8tqJ4KBDdLArzHkdIJuyiXZjHWd8dvQmqJLIX4W +p2OQ0jnUsYd4XxiWD1AbNTcPasbc2RNNpI6QN+a9WzGRo1QwUjAOBgNVHQ8BAf8E +BAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUSIcUrOPDnpBgOtfKie7T +rYy0UGYwEAYJKwYBBAGCNxUBBAMCAQAwCgYIKoZIzj0EAwMDaAAwZQIwJsdpW9zV +57LnyAyMjMPdeYwbY9XJUpROTYJKcx6ygISpJcBMWm1JKWB4E+J+SOtkAjEA2zQg +Mgj/mkkCtojeFK9dbJlxjRo/i9fgojaGHAeCOnZT/cKi7e97sIBPWA9LUzm9 +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R1 O=Google Trust Services LLC +# Subject: CN=GTS Root R1 O=Google Trust Services LLC +# Label: "GTS Root R1" +# Serial: 146587175971765017618439757810265552097 +# MD5 Fingerprint: 82:1a:ef:d4:d2:4a:f2:9f:e2:3d:97:06:14:70:72:85 +# SHA1 Fingerprint: e1:c9:50:e6:ef:22:f8:4c:56:45:72:8b:92:20:60:d7:d5:a7:a3:e8 +# SHA256 Fingerprint: 2a:57:54:71:e3:13:40:bc:21:58:1c:bd:2c:f1:3e:15:84:63:20:3e:ce:94:bc:f9:d3:cc:19:6b:f0:9a:54:72 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxUtHDA3sM9CJuRz04TANBgkqhkiG9w0BAQwFADBH +MQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExM +QzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIy +MDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNl +cnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjEwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQC2EQKLHuOhd5s73L+UPreVp0A8of2C+X0yBoJx9vaM +f/vo27xqLpeXo4xL+Sv2sfnOhB2x+cWX3u+58qPpvBKJXqeqUqv4IyfLpLGcY9vX +mX7wCl7raKb0xlpHDU0QM+NOsROjyBhsS+z8CZDfnWQpJSMHobTSPS5g4M/SCYe7 +zUjwTcLCeoiKu7rPWRnWr4+wB7CeMfGCwcDfLqZtbBkOtdh+JhpFAz2weaSUKK0P +fyblqAj+lug8aJRT7oM6iCsVlgmy4HqMLnXWnOunVmSPlk9orj2XwoSPwLxAwAtc +vfaHszVsrBhQf4TgTM2S0yDpM7xSma8ytSmzJSq0SPly4cpk9+aCEI3oncKKiPo4 +Zor8Y/kB+Xj9e1x3+naH+uzfsQ55lVe0vSbv1gHR6xYKu44LtcXFilWr06zqkUsp +zBmkMiVOKvFlRNACzqrOSbTqn3yDsEB750Orp2yjj32JgfpMpf/VjsPOS+C12LOO +Rc92wO1AK/1TD7Cn1TsNsYqiA94xrcx36m97PtbfkSIS5r762DL8EGMUUXLeXdYW +k70paDPvOmbsB4om3xPXV2V4J95eSRQAogB/mqghtqmxlbCluQ0WEdrHbEg8QOB+ +DVrNVjzRlwW5y0vtOUucxD/SVRNuJLDWcfr0wbrM7Rv1/oFB2ACYPTrIrnqYNxgF +lQIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQU5K8rJnEaK0gnhS9SZizv8IkTcT4wDQYJKoZIhvcNAQEMBQADggIBADiW +Cu49tJYeX++dnAsznyvgyv3SjgofQXSlfKqE1OXyHuY3UjKcC9FhHb8owbZEKTV1 +d5iyfNm9dKyKaOOpMQkpAWBz40d8U6iQSifvS9efk+eCNs6aaAyC58/UEBZvXw6Z +XPYfcX3v73svfuo21pdwCxXu11xWajOl40k4DLh9+42FpLFZXvRq4d2h9mREruZR +gyFmxhE+885H7pwoHyXa/6xmld01D1zvICxi/ZG6qcz8WpyTgYMpl0p8WnK0OdC3 +d8t5/Wk6kjftbjhlRn7pYL15iJdfOBL07q9bgsiG1eGZbYwE8na6SfZu6W0eX6Dv +J4J2QPim01hcDyxC2kLGe4g0x8HYRZvBPsVhHdljUEn2NIVq4BjFbkerQUIpm/Zg +DdIx02OYI5NaAIFItO/Nis3Jz5nu2Z6qNuFoS3FJFDYoOj0dzpqPJeaAcWErtXvM ++SUWgeExX6GjfhaknBZqlxi9dnKlC54dNuYvoS++cJEPqOba+MSSQGwlfnuzCdyy +F62ARPBopY+Udf90WuioAnwMCeKpSwughQtiue+hMZL77/ZRBIls6Kl0obsXs7X9 +SQ98POyDGCBDTtWTurQ0sR8WNh8M5mQ5Fkzc4P4dyKliPUDqysU0ArSuiYgzNdws +E3PYJ/HQcu51OyLemGhmW/HGY0dVHLqlCFF1pkgl +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R2 O=Google Trust Services LLC +# Subject: CN=GTS Root R2 O=Google Trust Services LLC +# Label: "GTS Root R2" +# Serial: 146587176055767053814479386953112547951 +# MD5 Fingerprint: 44:ed:9a:0e:a4:09:3b:00:f2:ae:4c:a3:c6:61:b0:8b +# SHA1 Fingerprint: d2:73:96:2a:2a:5e:39:9f:73:3f:e1:c7:1e:64:3f:03:38:34:fc:4d +# SHA256 Fingerprint: c4:5d:7b:b0:8e:6d:67:e6:2e:42:35:11:0b:56:4e:5f:78:fd:92:ef:05:8c:84:0a:ea:4e:64:55:d7:58:5c:60 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQbkepxlqz5yDFMJo/aFLybzANBgkqhkiG9w0BAQwFADBH +MQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExM +QzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIy +MDAwMDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNl +cnZpY2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjIwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQDO3v2m++zsFDQ8BwZabFn3GTXd98GdVarTzTukk3Lv +CvptnfbwhYBboUhSnznFt+4orO/LdmgUud+tAWyZH8QiHZ/+cnfgLFuv5AS/T3Kg +GjSY6Dlo7JUle3ah5mm5hRm9iYz+re026nO8/4Piy33B0s5Ks40FnotJk9/BW9Bu +XvAuMC6C/Pq8tBcKSOWIm8Wba96wyrQD8Nr0kLhlZPdcTK3ofmZemde4wj7I0BOd +re7kRXuJVfeKH2JShBKzwkCX44ofR5GmdFrS+LFjKBC4swm4VndAoiaYecb+3yXu +PuWgf9RhD1FLPD+M2uFwdNjCaKH5wQzpoeJ/u1U8dgbuak7MkogwTZq9TwtImoS1 +mKPV+3PBV2HdKFZ1E66HjucMUQkQdYhMvI35ezzUIkgfKtzra7tEscszcTJGr61K +8YzodDqs5xoic4DSMPclQsciOzsSrZYuxsN2B6ogtzVJV+mSSeh2FnIxZyuWfoqj +x5RWIr9qS34BIbIjMt/kmkRtWVtd9QCgHJvGeJeNkP+byKq0rxFROV7Z+2et1VsR +nTKaG73VululycslaVNVJ1zgyjbLiGH7HrfQy+4W+9OmTN6SpdTi3/UGVN4unUu0 +kzCqgc7dGtxRcw1PcOnlthYhGXmy5okLdWTK1au8CcEYof/UVKGFPP0UJAOyh9Ok +twIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUu//KjiOfT5nK2+JopqUVJxce2Q4wDQYJKoZIhvcNAQEMBQADggIBALZp +8KZ3/p7uC4Gt4cCpx/k1HUCCq+YEtN/L9x0Pg/B+E02NjO7jMyLDOfxA325BS0JT +vhaI8dI4XsRomRyYUpOM52jtG2pzegVATX9lO9ZY8c6DR2Dj/5epnGB3GFW1fgiT +z9D2PGcDFWEJ+YF59exTpJ/JjwGLc8R3dtyDovUMSRqodt6Sm2T4syzFJ9MHwAiA +pJiS4wGWAqoC7o87xdFtCjMwc3i5T1QWvwsHoaRc5svJXISPD+AVdyx+Jn7axEvb +pxZ3B7DNdehyQtaVhJ2Gg/LkkM0JR9SLA3DaWsYDQvTtN6LwG1BUSw7YhN4ZKJmB +R64JGz9I0cNv4rBgF/XuIwKl2gBbbZCr7qLpGzvpx0QnRY5rn/WkhLx3+WuXrD5R +RaIRpsyF7gpo8j5QOHokYh4XIDdtak23CZvJ/KRY9bb7nE4Yu5UC56GtmwfuNmsk +0jmGwZODUNKBRqhfYlcsu2xkiAhu7xNUX90txGdj08+JN7+dIPT7eoOboB6BAFDC +5AwiWVIQ7UNWhwD4FFKnHYuTjKJNRn8nxnGbJN7k2oaLDX5rIMHAnuFl2GqjpuiF +izoHCBy69Y9Vmhh1fuXsgWbRIXOhNUQLgD1bnF5vKheW0YMjiGZt5obicDIvUiLn +yOd/xCxgXS/Dr55FBcOEArf9LAhST4Ldo/DUhgkC +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R3 O=Google Trust Services LLC +# Subject: CN=GTS Root R3 O=Google Trust Services LLC +# Label: "GTS Root R3" +# Serial: 146587176140553309517047991083707763997 +# MD5 Fingerprint: 1a:79:5b:6b:04:52:9c:5d:c7:74:33:1b:25:9a:f9:25 +# SHA1 Fingerprint: 30:d4:24:6f:07:ff:db:91:89:8a:0b:e9:49:66:11:eb:8c:5e:46:e5 +# SHA256 Fingerprint: 15:d5:b8:77:46:19:ea:7d:54:ce:1c:a6:d0:b0:c4:03:e0:37:a9:17:f1:31:e8:a0:4e:1e:6b:7a:71:ba:bc:e5 +-----BEGIN CERTIFICATE----- +MIICDDCCAZGgAwIBAgIQbkepx2ypcyRAiQ8DVd2NHTAKBggqhkjOPQQDAzBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjMwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjMwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAQfTzOHMymKoYTey8chWEGJ6ladK0uFxh1MJ7x/JlFyb+Kf1qPKzEUURout +736GjOyxfi//qXGdGIRFBEFVbivqJn+7kAHjSxm65FSWRQmx1WyRRK2EE46ajA2A +DDL24CejQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBTB8Sa6oC2uhYHP0/EqEr24Cmf9vDAKBggqhkjOPQQDAwNpADBmAjEAgFuk +fCPAlaUs3L6JbyO5o91lAFJekazInXJ0glMLfalAvWhgxeG4VDvBNhcl2MG9AjEA +njWSdIUlUfUk7GRSJFClH9voy8l27OyCbvWFGFPouOOaKaqW04MjyaR7YbPMAuhd +-----END CERTIFICATE----- + +# Issuer: CN=GTS Root R4 O=Google Trust Services LLC +# Subject: CN=GTS Root R4 O=Google Trust Services LLC +# Label: "GTS Root R4" +# Serial: 146587176229350439916519468929765261721 +# MD5 Fingerprint: 5d:b6:6a:c4:60:17:24:6a:1a:99:a8:4b:ee:5e:b4:26 +# SHA1 Fingerprint: 2a:1d:60:27:d9:4a:b1:0a:1c:4d:91:5c:cd:33:a0:cb:3e:2d:54:cb +# SHA256 Fingerprint: 71:cc:a5:39:1f:9e:79:4b:04:80:25:30:b3:63:e1:21:da:8a:30:43:bb:26:66:2f:ea:4d:ca:7f:c9:51:a4:bd +-----BEGIN CERTIFICATE----- +MIICCjCCAZGgAwIBAgIQbkepyIuUtui7OyrYorLBmTAKBggqhkjOPQQDAzBHMQsw +CQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZpY2VzIExMQzEU +MBIGA1UEAxMLR1RTIFJvb3QgUjQwHhcNMTYwNjIyMDAwMDAwWhcNMzYwNjIyMDAw +MDAwWjBHMQswCQYDVQQGEwJVUzEiMCAGA1UEChMZR29vZ2xlIFRydXN0IFNlcnZp +Y2VzIExMQzEUMBIGA1UEAxMLR1RTIFJvb3QgUjQwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAATzdHOnaItgrkO4NcWBMHtLSZ37wWHO5t5GvWvVYRg1rkDdc/eJkTBa6zzu +hXyiQHY7qca4R9gq55KRanPpsXI5nymfopjTX15YhmUPoYRlBtHci8nHc8iMai/l +xKvRHYqjQjBAMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBSATNbrdP9JNqPV2Py1PsVq8JQdjDAKBggqhkjOPQQDAwNnADBkAjBqUFJ0 +CMRw3J5QdCHojXohw0+WbhXRIjVhLfoIN+4Zba3bssx9BzT1YBkstTTZbyACMANx +sbqjYAuG7ZoIapVon+Kz4ZNkfF6Tpt95LY2F45TPI11xzPKwTdb+mciUqXWi4w== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Global G2 Root O=UniTrust +# Subject: CN=UCA Global G2 Root O=UniTrust +# Label: "UCA Global G2 Root" +# Serial: 124779693093741543919145257850076631279 +# MD5 Fingerprint: 80:fe:f0:c4:4a:f0:5c:62:32:9f:1c:ba:78:a9:50:f8 +# SHA1 Fingerprint: 28:f9:78:16:19:7a:ff:18:25:18:aa:44:fe:c1:a0:ce:5c:b6:4c:8a +# SHA256 Fingerprint: 9b:ea:11:c9:76:fe:01:47:64:c1:be:56:a6:f9:14:b5:a5:60:31:7a:bd:99:88:39:33:82:e5:16:1a:a0:49:3c +-----BEGIN CERTIFICATE----- +MIIFRjCCAy6gAwIBAgIQXd+x2lqj7V2+WmUgZQOQ7zANBgkqhkiG9w0BAQsFADA9 +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxGzAZBgNVBAMMElVDQSBH +bG9iYWwgRzIgUm9vdDAeFw0xNjAzMTEwMDAwMDBaFw00MDEyMzEwMDAwMDBaMD0x +CzAJBgNVBAYTAkNOMREwDwYDVQQKDAhVbmlUcnVzdDEbMBkGA1UEAwwSVUNBIEds +b2JhbCBHMiBSb290MIICIjANBgkqhkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAxeYr +b3zvJgUno4Ek2m/LAfmZmqkywiKHYUGRO8vDaBsGxUypK8FnFyIdK+35KYmToni9 +kmugow2ifsqTs6bRjDXVdfkX9s9FxeV67HeToI8jrg4aA3++1NDtLnurRiNb/yzm +VHqUwCoV8MmNsHo7JOHXaOIxPAYzRrZUEaalLyJUKlgNAQLx+hVRZ2zA+te2G3/R +VogvGjqNO7uCEeBHANBSh6v7hn4PJGtAnTRnvI3HLYZveT6OqTwXS3+wmeOwcWDc +C/Vkw85DvG1xudLeJ1uK6NjGruFZfc8oLTW4lVYa8bJYS7cSN8h8s+1LgOGN+jIj +tm+3SJUIsUROhYw6AlQgL9+/V087OpAh18EmNVQg7Mc/R+zvWr9LesGtOxdQXGLY +D0tK3Cv6brxzks3sx1DoQZbXqX5t2Okdj4q1uViSukqSKwxW/YDrCPBeKW4bHAyv +j5OJrdu9o54hyokZ7N+1wxrrFv54NkzWbtA+FxyQF2smuvt6L78RHBgOLXMDj6Dl +NaBa4kx1HXHhOThTeEDMg5PXCp6dW4+K5OXgSORIskfNTip1KnvyIvbJvgmRlld6 +iIis7nCs+dwp4wwcOxJORNanTrAmyPPZGpeRaOrvjUYG0lZFWJo8DA+DuAUlwznP +O6Q0ibd5Ei9Hxeepl2n8pndntd978XplFeRhVmUCAwEAAaNCMEAwDgYDVR0PAQH/ +BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFIHEjMz15DD/pQwIX4wV +ZyF0Ad/fMA0GCSqGSIb3DQEBCwUAA4ICAQATZSL1jiutROTL/7lo5sOASD0Ee/oj +L3rtNtqyzm325p7lX1iPyzcyochltq44PTUbPrw7tgTQvPlJ9Zv3hcU2tsu8+Mg5 +1eRfB70VVJd0ysrtT7q6ZHafgbiERUlMjW+i67HM0cOU2kTC5uLqGOiiHycFutfl +1qnN3e92mI0ADs0b+gO3joBYDic/UvuUospeZcnWhNq5NXHzJsBPd+aBJ9J3O5oU +b3n09tDh05S60FdRvScFDcH9yBIw7m+NESsIndTUv4BFFJqIRNow6rSn4+7vW4LV +PtateJLbXDzz2K36uGt/xDYotgIVilQsnLAXc47QN6MUPJiVAAwpBVueSUmxX8fj +y88nZY41F7dXyDDZQVu5FLbowg+UMaeUmMxq67XhJ/UQqAHojhJi6IjMtX9Gl8Cb +EGY4GjZGXyJoPd/JxhMnq1MGrKI8hgZlb7F+sSlEmqO6SWkoaY/X5V+tBIZkbxqg +DMUIYs6Ao9Dz7GjevjPHF1t/gMRMTLGmhIrDO7gJzRSBuhjjVFc2/tsvfEehOjPI ++Vg7RE+xygKJBJYoaMVLuCaJu9YzL1DV/pqJuhgyklTGW+Cd+V7lDSKb9triyCGy +YiGqhkCyLmTTX8jjfhFnRR8F/uOi77Oos/N9j/gMHyIfLXC0uAE0djAA5SN4p1bX +UB+K+wb1whnw0A== +-----END CERTIFICATE----- + +# Issuer: CN=UCA Extended Validation Root O=UniTrust +# Subject: CN=UCA Extended Validation Root O=UniTrust +# Label: "UCA Extended Validation Root" +# Serial: 106100277556486529736699587978573607008 +# MD5 Fingerprint: a1:f3:5f:43:c6:34:9b:da:bf:8c:7e:05:53:ad:96:e2 +# SHA1 Fingerprint: a3:a1:b0:6f:24:61:23:4a:e3:36:a5:c2:37:fc:a6:ff:dd:f0:d7:3a +# SHA256 Fingerprint: d4:3a:f9:b3:54:73:75:5c:96:84:fc:06:d7:d8:cb:70:ee:5c:28:e7:73:fb:29:4e:b4:1e:e7:17:22:92:4d:24 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgIQT9Irj/VkyDOeTzRYZiNwYDANBgkqhkiG9w0BAQsFADBH +MQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNVBAMMHFVDQSBF +eHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwHhcNMTUwMzEzMDAwMDAwWhcNMzgxMjMx +MDAwMDAwWjBHMQswCQYDVQQGEwJDTjERMA8GA1UECgwIVW5pVHJ1c3QxJTAjBgNV +BAMMHFVDQSBFeHRlbmRlZCBWYWxpZGF0aW9uIFJvb3QwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCpCQcoEwKwmeBkqh5DFnpzsZGgdT6o+uM4AHrsiWog +D4vFsJszA1qGxliG1cGFu0/GnEBNyr7uaZa4rYEwmnySBesFK5pI0Lh2PpbIILvS +sPGP2KxFRv+qZ2C0d35qHzwaUnoEPQc8hQ2E0B92CvdqFN9y4zR8V05WAT558aop +O2z6+I9tTcg1367r3CTueUWnhbYFiN6IXSV8l2RnCdm/WhUFhvMJHuxYMjMR83dk +sHYf5BA1FxvyDrFspCqjc/wJHx4yGVMR59mzLC52LqGj3n5qiAno8geK+LLNEOfi +c0CTuwjRP+H8C5SzJe98ptfRr5//lpr1kXuYC3fUfugH0mK1lTnj8/FtDw5lhIpj +VMWAtuCeS31HJqcBCF3RiJ7XwzJE+oJKCmhUfzhTA8ykADNkUVkLo4KRel7sFsLz +KuZi2irbWWIQJUoqgQtHB0MGcIfS+pMRKXpITeuUx3BNr2fVUbGAIAEBtHoIppB/ +TuDvB0GHr2qlXov7z1CymlSvw4m6WC31MJixNnI5fkkE/SmnTHnkBVfblLkWU41G +sx2VYVdWf6/wFlthWG82UBEL2KwrlRYaDh8IzTY0ZRBiZtWAXxQgXy0MoHgKaNYs +1+lvK9JKBZP8nm9rZ/+I8U6laUpSNwXqxhaN0sSZ0YIrO7o1dfdRUVjzyAfd5LQD +fwIDAQABo0IwQDAdBgNVHQ4EFgQU2XQ65DA9DfcS3H5aBZ8eNJr34RQwDwYDVR0T +AQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAYYwDQYJKoZIhvcNAQELBQADggIBADaN +l8xCFWQpN5smLNb7rhVpLGsaGvdftvkHTFnq88nIua7Mui563MD1sC3AO6+fcAUR +ap8lTwEpcOPlDOHqWnzcSbvBHiqB9RZLcpHIojG5qtr8nR/zXUACE/xOHAbKsxSQ +VBcZEhrxH9cMaVr2cXj0lH2RC47skFSOvG+hTKv8dGT9cZr4QQehzZHkPJrgmzI5 +c6sq1WnIeJEmMX3ixzDx/BR4dxIOE/TdFpS/S2d7cFOFyrC78zhNLJA5wA3CXWvp +4uXViI3WLL+rG761KIcSF3Ru/H38j9CHJrAb+7lsq+KePRXBOy5nAliRn+/4Qh8s +t2j1da3Ptfb/EX3C8CSlrdP6oDyp+l3cpaDvRKS+1ujl5BOWF3sGPjLtx7dCvHaj +2GU4Kzg1USEODm8uNBNA4StnDG1KQTAYI1oyVZnJF+A83vbsea0rWBmirSwiGpWO +vpaQXUJXxPkUAzUrHC1RVwinOt4/5Mi0A3PCwSaAuwtCH60NryZy2sy+s6ODWA2C +xR9GUeOcGMyNm43sSet1UNWMKFnKdDTajAshqx7qG+XH/RU+wBeq+yNuJkbL+vmx +cmtpzyKEC2IPrNkZAJSidjzULZrtBJ4tBmIQN1IchXIbJ+XMxjHsN+xjWZsLHXbM +fjKaiJUINlK73nZfdklJrX+9ZSCyycErdhh2n1ax +-----END CERTIFICATE----- + +# Issuer: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Subject: CN=Certigna Root CA O=Dhimyotis OU=0002 48146308100036 +# Label: "Certigna Root CA" +# Serial: 269714418870597844693661054334862075617 +# MD5 Fingerprint: 0e:5c:30:62:27:eb:5b:bc:d7:ae:62:ba:e9:d5:df:77 +# SHA1 Fingerprint: 2d:0d:52:14:ff:9e:ad:99:24:01:74:20:47:6e:6c:85:27:27:f5:43 +# SHA256 Fingerprint: d4:8d:3d:23:ee:db:50:a4:59:e5:51:97:60:1c:27:77:4b:9d:7b:18:c9:4d:5a:05:95:11:a1:02:50:b9:31:68 +-----BEGIN CERTIFICATE----- +MIIGWzCCBEOgAwIBAgIRAMrpG4nxVQMNo+ZBbcTjpuEwDQYJKoZIhvcNAQELBQAw +WjELMAkGA1UEBhMCRlIxEjAQBgNVBAoMCURoaW15b3RpczEcMBoGA1UECwwTMDAw +MiA0ODE0NjMwODEwMDAzNjEZMBcGA1UEAwwQQ2VydGlnbmEgUm9vdCBDQTAeFw0x +MzEwMDEwODMyMjdaFw0zMzEwMDEwODMyMjdaMFoxCzAJBgNVBAYTAkZSMRIwEAYD +VQQKDAlEaGlteW90aXMxHDAaBgNVBAsMEzAwMDIgNDgxNDYzMDgxMDAwMzYxGTAX +BgNVBAMMEENlcnRpZ25hIFJvb3QgQ0EwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAw +ggIKAoICAQDNGDllGlmx6mQWDoyUJJV8g9PFOSbcDO8WV43X2KyjQn+Cyu3NW9sO +ty3tRQgXstmzy9YXUnIo245Onoq2C/mehJpNdt4iKVzSs9IGPjA5qXSjklYcoW9M +CiBtnyN6tMbaLOQdLNyzKNAT8kxOAkmhVECe5uUFoC2EyP+YbNDrihqECB63aCPu +I9Vwzm1RaRDuoXrC0SIxwoKF0vJVdlB8JXrJhFwLrN1CTivngqIkicuQstDuI7pm +TLtipPlTWmR7fJj6o0ieD5Wupxj0auwuA0Wv8HT4Ks16XdG+RCYyKfHx9WzMfgIh +C59vpD++nVPiz32pLHxYGpfhPTc3GGYo0kDFUYqMwy3OU4gkWGQwFsWq4NYKpkDf +ePb1BHxpE4S80dGnBs8B92jAqFe7OmGtBIyT46388NtEbVncSVmurJqZNjBBe3Yz +IoejwpKGbvlw7q6Hh5UbxHq9MfPU0uWZ/75I7HX1eBYdpnDBfzwboZL7z8g81sWT +Co/1VTp2lc5ZmIoJlXcymoO6LAQ6l73UL77XbJuiyn1tJslV1c/DeVIICZkHJC1k +JWumIWmbat10TWuXekG9qxf5kBdIjzb5LdXF2+6qhUVB+s06RbFo5jZMm5BX7CO5 +hwjCxAnxl4YqKE3idMDaxIzb3+KhF1nOJFl0Mdp//TBt2dzhauH8XwIDAQABo4IB +GjCCARYwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYDVR0OBBYE +FBiHVuBud+4kNTxOc5of1uHieX4rMB8GA1UdIwQYMBaAFBiHVuBud+4kNTxOc5of +1uHieX4rMEQGA1UdIAQ9MDswOQYEVR0gADAxMC8GCCsGAQUFBwIBFiNodHRwczov +L3d3d3cuY2VydGlnbmEuZnIvYXV0b3JpdGVzLzBtBgNVHR8EZjBkMC+gLaArhilo +dHRwOi8vY3JsLmNlcnRpZ25hLmZyL2NlcnRpZ25hcm9vdGNhLmNybDAxoC+gLYYr +aHR0cDovL2NybC5kaGlteW90aXMuY29tL2NlcnRpZ25hcm9vdGNhLmNybDANBgkq +hkiG9w0BAQsFAAOCAgEAlLieT/DjlQgi581oQfccVdV8AOItOoldaDgvUSILSo3L +6btdPrtcPbEo/uRTVRPPoZAbAh1fZkYJMyjhDSSXcNMQH+pkV5a7XdrnxIxPTGRG +HVyH41neQtGbqH6mid2PHMkwgu07nM3A6RngatgCdTer9zQoKJHyBApPNeNgJgH6 +0BGM+RFq7q89w1DTj18zeTyGqHNFkIwgtnJzFyO+B2XleJINugHA64wcZr+shncB +lA2c5uk5jR+mUYyZDDl34bSb+hxnV29qao6pK0xXeXpXIs/NX2NGjVxZOob4Mkdi +o2cNGJHc+6Zr9UhhcyNZjgKnvETq9Emd8VRY+WCv2hikLyhF3HqgiIZd8zvn/yk1 +gPxkQ5Tm4xxvvq0OKmOZK8l+hfZx6AYDlf7ej0gcWtSS6Cvu5zHbugRqh5jnxV/v +faci9wHYTfmJ0A6aBVmknpjZbyvKcL5kwlWj9Omvw5Ip3IgWJJk8jSaYtlu3zM63 +Nwf9JtmYhST/WSMDmu2dnajkXjjO11INb9I/bbEFa0nOipFGc/T2L/Coc3cOZayh +jWZSaX5LaAzHHjcng6WMxwLkFM1JAbBzs/3GkDpv0mztO+7skb6iQ12LAEpmJURw +3kAP+HwV96LOPNdeE4yBFxgX0b3xdxA61GU5wSesVywlVP+i2k+KYTlerj1KjL0= +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign Root CA - G1 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign Root CA - G1" +# Serial: 235931866688319308814040 +# MD5 Fingerprint: 9c:42:84:57:dd:cb:0b:a7:2e:95:ad:b6:f3:da:bc:ac +# SHA1 Fingerprint: 8a:c7:ad:8f:73:ac:4e:c1:b5:75:4d:a5:40:f4:fc:cf:7c:b5:8e:8c +# SHA256 Fingerprint: 40:f6:af:03:46:a9:9a:a1:cd:1d:55:5a:4e:9c:ce:62:c7:f9:63:46:03:ee:40:66:15:83:3d:c8:c8:d0:03:67 +-----BEGIN CERTIFICATE----- +MIIDlDCCAnygAwIBAgIKMfXkYgxsWO3W2DANBgkqhkiG9w0BAQsFADBnMQswCQYD +VQQGEwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBU +ZWNobm9sb2dpZXMgTGltaXRlZDEcMBoGA1UEAxMTZW1TaWduIFJvb3QgQ0EgLSBH +MTAeFw0xODAyMTgxODMwMDBaFw00MzAyMTgxODMwMDBaMGcxCzAJBgNVBAYTAklO +MRMwEQYDVQQLEwplbVNpZ24gUEtJMSUwIwYDVQQKExxlTXVkaHJhIFRlY2hub2xv +Z2llcyBMaW1pdGVkMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEcxMIIBIjAN +BgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAk0u76WaK7p1b1TST0Bsew+eeuGQz +f2N4aLTNLnF115sgxk0pvLZoYIr3IZpWNVrzdr3YzZr/k1ZLpVkGoZM0Kd0WNHVO +8oG0x5ZOrRkVUkr+PHB1cM2vK6sVmjM8qrOLqs1D/fXqcP/tzxE7lM5OMhbTI0Aq +d7OvPAEsbO2ZLIvZTmmYsvePQbAyeGHWDV/D+qJAkh1cF+ZwPjXnorfCYuKrpDhM +tTk1b+oDafo6VGiFbdbyL0NVHpENDtjVaqSW0RM8LHhQ6DqS0hdW5TUaQBw+jSzt +Od9C4INBdN+jzcKGYEho42kLVACL5HZpIQ15TjQIXhTCzLG3rdd8cIrHhQIDAQAB +o0IwQDAdBgNVHQ4EFgQU++8Nhp6w492pufEhF38+/PB3KxowDgYDVR0PAQH/BAQD +AgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQELBQADggEBAFn/8oz1h31x +PaOfG1vR2vjTnGs2vZupYeveFix0PZ7mddrXuqe8QhfnPZHr5X3dPpzxz5KsbEjM +wiI/aTvFthUvozXGaCocV685743QNcMYDHsAVhzNixl03r4PEuDQqqE/AjSxcM6d +GNYIAwlG7mDgfrbESQRRfXBgvKqy/3lyeqYdPV8q+Mri/Tm3R7nrft8EI6/6nAYH +6ftjk4BAtcZsCjEozgyfz7MjNYBBjWzEN3uBL4ChQEKF6dk4jeihU80Bv2noWgby +RQuQ+q7hv53yrlc8pa6yVvSLZUDp/TGBLPQ5Cdjua6e0ph0VpZj3AYHYhX3zUVxx +iN66zB+Afko= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Subject: CN=emSign ECC Root CA - G3 O=eMudhra Technologies Limited OU=emSign PKI +# Label: "emSign ECC Root CA - G3" +# Serial: 287880440101571086945156 +# MD5 Fingerprint: ce:0b:72:d1:9f:88:8e:d0:50:03:e8:e3:b8:8b:67:40 +# SHA1 Fingerprint: 30:43:fa:4f:f2:57:dc:a0:c3:80:ee:2e:58:ea:78:b2:3f:e6:bb:c1 +# SHA256 Fingerprint: 86:a1:ec:ba:08:9c:4a:8d:3b:be:27:34:c6:12:ba:34:1d:81:3e:04:3c:f9:e8:a8:62:cd:5c:57:a3:6b:be:6b +-----BEGIN CERTIFICATE----- +MIICTjCCAdOgAwIBAgIKPPYHqWhwDtqLhDAKBggqhkjOPQQDAzBrMQswCQYDVQQG +EwJJTjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNo +bm9sb2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0g +RzMwHhcNMTgwMjE4MTgzMDAwWhcNNDMwMjE4MTgzMDAwWjBrMQswCQYDVQQGEwJJ +TjETMBEGA1UECxMKZW1TaWduIFBLSTElMCMGA1UEChMcZU11ZGhyYSBUZWNobm9s +b2dpZXMgTGltaXRlZDEgMB4GA1UEAxMXZW1TaWduIEVDQyBSb290IENBIC0gRzMw +djAQBgcqhkjOPQIBBgUrgQQAIgNiAAQjpQy4LRL1KPOxst3iAhKAnjlfSU2fySU0 +WXTsuwYc58Byr+iuL+FBVIcUqEqy6HyC5ltqtdyzdc6LBtCGI79G1Y4PPwT01xyS +fvalY8L1X44uT6EYGQIrMgqCZH0Wk9GjQjBAMB0GA1UdDgQWBBR8XQKEE9TMipuB +zhccLikenEhjQjAOBgNVHQ8BAf8EBAMCAQYwDwYDVR0TAQH/BAUwAwEB/zAKBggq +hkjOPQQDAwNpADBmAjEAvvNhzwIQHWSVB7gYboiFBS+DCBeQyh+KTOgNG3qxrdWB +CUfvO6wIBHxcmbHtRwfSAjEAnbpV/KlK6O3t5nYBQnvI+GDZjVGLVTv7jHvrZQnD ++JbNR6iC8hZVdyR+EhCVBCyj +-----END CERTIFICATE----- + +# Issuer: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign Root CA - C1 O=eMudhra Inc OU=emSign PKI +# Label: "emSign Root CA - C1" +# Serial: 825510296613316004955058 +# MD5 Fingerprint: d8:e3:5d:01:21:fa:78:5a:b0:df:ba:d2:ee:2a:5f:68 +# SHA1 Fingerprint: e7:2e:f1:df:fc:b2:09:28:cf:5d:d4:d5:67:37:b1:51:cb:86:4f:01 +# SHA256 Fingerprint: 12:56:09:aa:30:1d:a0:a2:49:b9:7a:82:39:cb:6a:34:21:6f:44:dc:ac:9f:39:54:b1:42:92:f2:e8:c8:60:8f +-----BEGIN CERTIFICATE----- +MIIDczCCAlugAwIBAgILAK7PALrEzzL4Q7IwDQYJKoZIhvcNAQELBQAwVjELMAkG +A1UEBhMCVVMxEzARBgNVBAsTCmVtU2lnbiBQS0kxFDASBgNVBAoTC2VNdWRocmEg +SW5jMRwwGgYDVQQDExNlbVNpZ24gUm9vdCBDQSAtIEMxMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowVjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMRwwGgYDVQQDExNlbVNpZ24gUm9v +dCBDQSAtIEMxMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAz+upufGZ +BczYKCFK83M0UYRWEPWgTywS4/oTmifQz/l5GnRfHXk5/Fv4cI7gklL35CX5VIPZ +HdPIWoU/Xse2B+4+wM6ar6xWQio5JXDWv7V7Nq2s9nPczdcdioOl+yuQFTdrHCZH +3DspVpNqs8FqOp099cGXOFgFixwR4+S0uF2FHYP+eF8LRWgYSKVGczQ7/g/IdrvH +GPMF0Ybzhe3nudkyrVWIzqa2kbBPrH4VI5b2P/AgNBbeCsbEBEV5f6f9vtKppa+c +xSMq9zwhbL2vj07FOrLzNBL834AaSaTUqZX3noleoomslMuoaJuvimUnzYnu3Yy1 +aylwQ6BpC+S5DwIDAQABo0IwQDAdBgNVHQ4EFgQU/qHgcB4qAzlSWkK+XJGFehiq +TbUwDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMBAf8wDQYJKoZIhvcNAQEL +BQADggEBAMJKVvoVIXsoounlHfv4LcQ5lkFMOycsxGwYFYDGrK9HWS8mC+M2sO87 +/kOXSTKZEhVb3xEp/6tT+LvBeA+snFOvV71ojD1pM/CjoCNjO2RnIkSt1XHLVip4 +kqNPEjE2NuLe/gDEo2APJ62gsIq1NnpSob0n9CAnYuhNlCQT5AoE6TyrLshDCUrG +YQTlSTR+08TI9Q/Aqum6VF7zYytPT1DU/rl7mYw9wC68AivTxEDkigcxHpvOJpkT ++xHqmiIMERnHXhuBUDDIlhJu58tBf5E7oke3VIAb3ADMmpDqw8NQBmIMMMAVSKeo +WXzhriKi4gp6D/piq1JM4fHfyr6DDUI= +-----END CERTIFICATE----- + +# Issuer: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Subject: CN=emSign ECC Root CA - C3 O=eMudhra Inc OU=emSign PKI +# Label: "emSign ECC Root CA - C3" +# Serial: 582948710642506000014504 +# MD5 Fingerprint: 3e:53:b3:a3:81:ee:d7:10:f8:d3:b0:1d:17:92:f5:d5 +# SHA1 Fingerprint: b6:af:43:c2:9b:81:53:7d:f6:ef:6b:c3:1f:1f:60:15:0c:ee:48:66 +# SHA256 Fingerprint: bc:4d:80:9b:15:18:9d:78:db:3e:1d:8c:f4:f9:72:6a:79:5d:a1:64:3c:a5:f1:35:8e:1d:db:0e:dc:0d:7e:b3 +-----BEGIN CERTIFICATE----- +MIICKzCCAbGgAwIBAgIKe3G2gla4EnycqDAKBggqhkjOPQQDAzBaMQswCQYDVQQG +EwJVUzETMBEGA1UECxMKZW1TaWduIFBLSTEUMBIGA1UEChMLZU11ZGhyYSBJbmMx +IDAeBgNVBAMTF2VtU2lnbiBFQ0MgUm9vdCBDQSAtIEMzMB4XDTE4MDIxODE4MzAw +MFoXDTQzMDIxODE4MzAwMFowWjELMAkGA1UEBhMCVVMxEzARBgNVBAsTCmVtU2ln +biBQS0kxFDASBgNVBAoTC2VNdWRocmEgSW5jMSAwHgYDVQQDExdlbVNpZ24gRUND +IFJvb3QgQ0EgLSBDMzB2MBAGByqGSM49AgEGBSuBBAAiA2IABP2lYa57JhAd6bci +MK4G9IGzsUJxlTm801Ljr6/58pc1kjZGDoeVjbk5Wum739D+yAdBPLtVb4Ojavti +sIGJAnB9SMVK4+kiVCJNk7tCDK93nCOmfddhEc5lx/h//vXyqaNCMEAwHQYDVR0O +BBYEFPtaSNCAIEDyqOkAB2kZd6fmw/TPMA4GA1UdDwEB/wQEAwIBBjAPBgNVHRMB +Af8EBTADAQH/MAoGCCqGSM49BAMDA2gAMGUCMQC02C8Cif22TGK6Q04ThHK1rt0c +3ta13FaPWEBaLd4gTCKDypOofu4SQMfWh0/434UCMBwUZOR8loMRnLDRWmFLpg9J +0wD8ofzkpf9/rdcw0Md3f76BB1UwUCAU9Vc4CqgxUQ== +-----END CERTIFICATE----- + +# Issuer: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Subject: CN=Hongkong Post Root CA 3 O=Hongkong Post +# Label: "Hongkong Post Root CA 3" +# Serial: 46170865288971385588281144162979347873371282084 +# MD5 Fingerprint: 11:fc:9f:bd:73:30:02:8a:fd:3f:f3:58:b9:cb:20:f0 +# SHA1 Fingerprint: 58:a2:d0:ec:20:52:81:5b:c1:f3:f8:64:02:24:4e:c2:8e:02:4b:02 +# SHA256 Fingerprint: 5a:2f:c0:3f:0c:83:b0:90:bb:fa:40:60:4b:09:88:44:6c:76:36:18:3d:f9:84:6e:17:10:1a:44:7f:b8:ef:d6 +-----BEGIN CERTIFICATE----- +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 +mpv0 +-----END CERTIFICATE----- + +# Issuer: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Subject: CN=Entrust Root Certification Authority - G4 O=Entrust, Inc. OU=See www.entrust.net/legal-terms/(c) 2015 Entrust, Inc. - for authorized use only +# Label: "Entrust Root Certification Authority - G4" +# Serial: 289383649854506086828220374796556676440 +# MD5 Fingerprint: 89:53:f1:83:23:b7:7c:8e:05:f1:8c:71:38:4e:1f:88 +# SHA1 Fingerprint: 14:88:4e:86:26:37:b0:26:af:59:62:5c:40:77:ec:35:29:ba:96:01 +# SHA256 Fingerprint: db:35:17:d1:f6:73:2a:2d:5a:b9:7c:53:3e:c7:07:79:ee:32:70:a6:2f:b4:ac:42:38:37:24:60:e6:f0:1e:88 +-----BEGIN CERTIFICATE----- +MIIGSzCCBDOgAwIBAgIRANm1Q3+vqTkPAAAAAFVlrVgwDQYJKoZIhvcNAQELBQAw +gb4xCzAJBgNVBAYTAlVTMRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQL +Ex9TZWUgd3d3LmVudHJ1c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykg +MjAxNSBFbnRydXN0LCBJbmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAw +BgNVBAMTKUVudHJ1c3QgUm9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0 +MB4XDTE1MDUyNzExMTExNloXDTM3MTIyNzExNDExNlowgb4xCzAJBgNVBAYTAlVT +MRYwFAYDVQQKEw1FbnRydXN0LCBJbmMuMSgwJgYDVQQLEx9TZWUgd3d3LmVudHJ1 +c3QubmV0L2xlZ2FsLXRlcm1zMTkwNwYDVQQLEzAoYykgMjAxNSBFbnRydXN0LCBJ +bmMuIC0gZm9yIGF1dGhvcml6ZWQgdXNlIG9ubHkxMjAwBgNVBAMTKUVudHJ1c3Qg +Um9vdCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eSAtIEc0MIICIjANBgkqhkiG9w0B +AQEFAAOCAg8AMIICCgKCAgEAsewsQu7i0TD/pZJH4i3DumSXbcr3DbVZwbPLqGgZ +2K+EbTBwXX7zLtJTmeH+H17ZSK9dE43b/2MzTdMAArzE+NEGCJR5WIoV3imz/f3E +T+iq4qA7ec2/a0My3dl0ELn39GjUu9CH1apLiipvKgS1sqbHoHrmSKvS0VnM1n4j +5pds8ELl3FFLFUHtSUrJ3hCX1nbB76W1NhSXNdh4IjVS70O92yfbYVaCNNzLiGAM +C1rlLAHGVK/XqsEQe9IFWrhAnoanw5CGAlZSCXqc0ieCU0plUmr1POeo8pyvi73T +DtTUXm6Hnmo9RR3RXRv06QqsYJn7ibT/mCzPfB3pAqoEmh643IhuJbNsZvc8kPNX +wbMv9W3y+8qh+CmdRouzavbmZwe+LGcKKh9asj5XxNMhIWNlUpEbsZmOeX7m640A +2Vqq6nPopIICR5b+W45UYaPrL0swsIsjdXJ8ITzI9vF01Bx7owVV7rtNOzK+mndm +nqxpkCIHH2E6lr7lmk/MBTwoWdPBDFSoWWG9yHJM6Nyfh3+9nEg2XpWjDrk4JFX8 +dWbrAuMINClKxuMrLzOg2qOGpRKX/YAr2hRC45K9PvJdXmd0LhyIRyk0X+IyqJwl +N4y6mACXi0mWHv0liqzc2thddG5msP9E36EYxr5ILzeUePiVSj9/E15dWf10hkNj +c0kCAwEAAaNCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFJ84xFYjwznooHFs6FRM5Og6sb9nMA0GCSqGSIb3DQEBCwUAA4ICAQAS +5UKme4sPDORGpbZgQIeMJX6tuGguW8ZAdjwD+MlZ9POrYs4QjbRaZIxowLByQzTS +Gwv2LFPSypBLhmb8qoMi9IsabyZIrHZ3CL/FmFz0Jomee8O5ZDIBf9PD3Vht7LGr +hFV0d4QEJ1JrhkzO3bll/9bGXp+aEJlLdWr+aumXIOTkdnrG0CSqkM0gkLpHZPt/ +B7NTeLUKYvJzQ85BK4FqLoUWlFPUa19yIqtRLULVAJyZv967lDtX/Zr1hstWO1uI +AeV8KEsD+UmDfLJ/fOPtjqF/YFOOVZ1QNBIPt5d7bIdKROf1beyAN/BYGW5KaHbw +H5Lk6rWS02FREAutp9lfx1/cH6NcjKF+m7ee01ZvZl4HliDtC3T7Zk6LERXpgUl+ +b7DUUH8i119lAg2m9IUe2K4GS0qn0jFmwvjO5QimpAKWRGhXxNUzzxkvFMSUHHuk +2fCfDrGA4tGeEWSpiBE6doLlYsKA2KSD7ZPvfC+QsDJMlhVoSFLUmQjAJOgc47Ol +IQ6SwJAfzyBfyjs4x7dtOvPmRLgOMWuIjnDrnBdSqEGULoe256YSxXXfW8AKbnuk +5F6G+TaU33fD6Q3AOfF5u0aOq0NZJ7cguyPpVkAh7DE9ZapD8j3fcEThuk0mEDuY +n/PIjhs4ViFqUZPTkcpG2om3PVODLAgfi49T3f+sHw== +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft ECC Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft ECC Root Certificate Authority 2017" +# Serial: 136839042543790627607696632466672567020 +# MD5 Fingerprint: dd:a1:03:e6:4a:93:10:d1:bf:f0:19:42:cb:fe:ed:67 +# SHA1 Fingerprint: 99:9a:64:c3:7f:f4:7d:9f:ab:95:f1:47:69:89:14:60:ee:c4:c3:c5 +# SHA256 Fingerprint: 35:8d:f3:9d:76:4a:f9:e1:b7:66:e9:c9:72:df:35:2e:e1:5c:fa:c2:27:af:6a:d1:d7:0e:8e:4a:6e:dc:ba:02 +-----BEGIN CERTIFICATE----- +MIICWTCCAd+gAwIBAgIQZvI9r4fei7FK6gxXMQHC7DAKBggqhkjOPQQDAzBlMQsw +CQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYD +VQQDEy1NaWNyb3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIw +MTcwHhcNMTkxMjE4MjMwNjQ1WhcNNDIwNzE4MjMxNjA0WjBlMQswCQYDVQQGEwJV +UzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1NaWNy +b3NvZnQgRUNDIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwdjAQBgcq +hkjOPQIBBgUrgQQAIgNiAATUvD0CQnVBEyPNgASGAlEvaqiBYgtlzPbKnR5vSmZR +ogPZnZH6thaxjG7efM3beaYvzrvOcS/lpaso7GMEZpn4+vKTEAXhgShC48Zo9OYb +hGBKia/teQ87zvH2RPUBeMCjVDBSMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8E +BTADAQH/MB0GA1UdDgQWBBTIy5lycFIM+Oa+sgRXKSrPQhDtNTAQBgkrBgEEAYI3 +FQEEAwIBADAKBggqhkjOPQQDAwNoADBlAjBY8k3qDPlfXu5gKcs68tvWMoQZP3zV +L8KxzJOuULsJMsbG7X7JNpQS5GiFBqIb0C8CMQCZ6Ra0DvpWSNSkMBaReNtUjGUB +iudQZsIxtzm6uBoiB078a1QWIP8rtedMDE2mT3M= +-----END CERTIFICATE----- + +# Issuer: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Subject: CN=Microsoft RSA Root Certificate Authority 2017 O=Microsoft Corporation +# Label: "Microsoft RSA Root Certificate Authority 2017" +# Serial: 40975477897264996090493496164228220339 +# MD5 Fingerprint: 10:ff:00:ff:cf:c9:f8:c7:7a:c0:ee:35:8e:c9:0f:47 +# SHA1 Fingerprint: 73:a5:e6:4a:3b:ff:83:16:ff:0e:dc:cc:61:8a:90:6e:4e:ae:4d:74 +# SHA256 Fingerprint: c7:41:f7:0f:4b:2a:8d:88:bf:2e:71:c1:41:22:ef:53:ef:10:eb:a0:cf:a5:e6:4c:fa:20:f4:18:85:30:73:e0 +-----BEGIN CERTIFICATE----- +MIIFqDCCA5CgAwIBAgIQHtOXCV/YtLNHcB6qvn9FszANBgkqhkiG9w0BAQwFADBl +MQswCQYDVQQGEwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYw +NAYDVQQDEy1NaWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5 +IDIwMTcwHhcNMTkxMjE4MjI1MTIyWhcNNDIwNzE4MjMwMDIzWjBlMQswCQYDVQQG +EwJVUzEeMBwGA1UEChMVTWljcm9zb2Z0IENvcnBvcmF0aW9uMTYwNAYDVQQDEy1N +aWNyb3NvZnQgUlNBIFJvb3QgQ2VydGlmaWNhdGUgQXV0aG9yaXR5IDIwMTcwggIi +MA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQDKW76UM4wplZEWCpW9R2LBifOZ +Nt9GkMml7Xhqb0eRaPgnZ1AzHaGm++DlQ6OEAlcBXZxIQIJTELy/xztokLaCLeX0 +ZdDMbRnMlfl7rEqUrQ7eS0MdhweSE5CAg2Q1OQT85elss7YfUJQ4ZVBcF0a5toW1 +HLUX6NZFndiyJrDKxHBKrmCk3bPZ7Pw71VdyvD/IybLeS2v4I2wDwAW9lcfNcztm +gGTjGqwu+UcF8ga2m3P1eDNbx6H7JyqhtJqRjJHTOoI+dkC0zVJhUXAoP8XFWvLJ +jEm7FFtNyP9nTUwSlq31/niol4fX/V4ggNyhSyL71Imtus5Hl0dVe49FyGcohJUc +aDDv70ngNXtk55iwlNpNhTs+VcQor1fznhPbRiefHqJeRIOkpcrVE7NLP8TjwuaG +YaRSMLl6IE9vDzhTyzMMEyuP1pq9KsgtsRx9S1HKR9FIJ3Jdh+vVReZIZZ2vUpC6 +W6IYZVcSn2i51BVrlMRpIpj0M+Dt+VGOQVDJNE92kKz8OMHY4Xu54+OU4UZpyw4K +UGsTuqwPN1q3ErWQgR5WrlcihtnJ0tHXUeOrO8ZV/R4O03QK0dqq6mm4lyiPSMQH ++FJDOvTKVTUssKZqwJz58oHhEmrARdlns87/I6KJClTUFLkqqNfs+avNJVgyeY+Q +W5g5xAgGwax/Dj0ApQIDAQABo1QwUjAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/ +BAUwAwEB/zAdBgNVHQ4EFgQUCctZf4aycI8awznjwNnpv7tNsiMwEAYJKwYBBAGC +NxUBBAMCAQAwDQYJKoZIhvcNAQEMBQADggIBAKyvPl3CEZaJjqPnktaXFbgToqZC +LgLNFgVZJ8og6Lq46BrsTaiXVq5lQ7GPAJtSzVXNUzltYkyLDVt8LkS/gxCP81OC +gMNPOsduET/m4xaRhPtthH80dK2Jp86519efhGSSvpWhrQlTM93uCupKUY5vVau6 +tZRGrox/2KJQJWVggEbbMwSubLWYdFQl3JPk+ONVFT24bcMKpBLBaYVu32TxU5nh +SnUgnZUP5NbcA/FZGOhHibJXWpS2qdgXKxdJ5XbLwVaZOjex/2kskZGT4d9Mozd2 +TaGf+G0eHdP67Pv0RR0Tbc/3WeUiJ3IrhvNXuzDtJE3cfVa7o7P4NHmJweDyAmH3 +pvwPuxwXC65B2Xy9J6P9LjrRk5Sxcx0ki69bIImtt2dmefU6xqaWM/5TkshGsRGR +xpl/j8nWZjEgQRCHLQzWwa80mMpkg/sTV9HB8Dx6jKXB/ZUhoHHBk2dxEuqPiApp +GWSZI1b7rCoucL5mxAyE7+WL85MB+GqQk2dLsmijtWKP6T+MejteD+eMuMZ87zf9 +dOLITzNy4ZQ5bb0Sr74MTnB8G2+NszKTc0QWbej09+CVgI+WXTik9KveCjCHk9hN +AHFiRSdLOkKEW39lt2c0Ui2cFmuqqNh7o0JMcccMyj6D5KbvtwEwXlGjefVwaaZB +RA+GsCyRxj3qrg+E +-----END CERTIFICATE----- + +# Issuer: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Subject: CN=e-Szigno Root CA 2017 O=Microsec Ltd. +# Label: "e-Szigno Root CA 2017" +# Serial: 411379200276854331539784714 +# MD5 Fingerprint: de:1f:f6:9e:84:ae:a7:b4:21:ce:1e:58:7d:d1:84:98 +# SHA1 Fingerprint: 89:d4:83:03:4f:9e:9a:48:80:5f:72:37:d4:a9:a6:ef:cb:7c:1f:d1 +# SHA256 Fingerprint: be:b0:0b:30:83:9b:9b:c3:2c:32:e4:44:79:05:95:06:41:f2:64:21:b1:5e:d0:89:19:8b:51:8a:e2:ea:1b:99 +-----BEGIN CERTIFICATE----- +MIICQDCCAeWgAwIBAgIMAVRI7yH9l1kN9QQKMAoGCCqGSM49BAMCMHExCzAJBgNV +BAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMgTHRk +LjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25vIFJv +b3QgQ0EgMjAxNzAeFw0xNzA4MjIxMjA3MDZaFw00MjA4MjIxMjA3MDZaMHExCzAJ +BgNVBAYTAkhVMREwDwYDVQQHDAhCdWRhcGVzdDEWMBQGA1UECgwNTWljcm9zZWMg +THRkLjEXMBUGA1UEYQwOVkFUSFUtMjM1ODQ0OTcxHjAcBgNVBAMMFWUtU3ppZ25v +IFJvb3QgQ0EgMjAxNzBZMBMGByqGSM49AgEGCCqGSM49AwEHA0IABJbcPYrYsHtv +xie+RJCxs1YVe45DJH0ahFnuY2iyxl6H0BVIHqiQrb1TotreOpCmYF9oMrWGQd+H +Wyx7xf58etqjYzBhMA8GA1UdEwEB/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0G +A1UdDgQWBBSHERUI0arBeAyxr87GyZDvvzAEwDAfBgNVHSMEGDAWgBSHERUI0arB +eAyxr87GyZDvvzAEwDAKBggqhkjOPQQDAgNJADBGAiEAtVfd14pVCzbhhkT61Nlo +jbjcI4qKDdQvfepz7L9NbKgCIQDLpbQS+ue16M9+k/zzNY9vTlp8tLxOsvxyqltZ ++efcMQ== +-----END CERTIFICATE----- + +# Issuer: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Subject: O=CERTSIGN SA OU=certSIGN ROOT CA G2 +# Label: "certSIGN Root CA G2" +# Serial: 313609486401300475190 +# MD5 Fingerprint: 8c:f1:75:8a:c6:19:cf:94:b7:f7:65:20:87:c3:97:c7 +# SHA1 Fingerprint: 26:f9:93:b4:ed:3d:28:27:b0:b9:4b:a7:e9:15:1d:a3:8d:92:e5:32 +# SHA256 Fingerprint: 65:7c:fe:2f:a7:3f:aa:38:46:25:71:f3:32:a2:36:3a:46:fc:e7:02:09:51:71:07:02:cd:fb:b6:ee:da:33:05 +-----BEGIN CERTIFICATE----- +MIIFRzCCAy+gAwIBAgIJEQA0tk7GNi02MA0GCSqGSIb3DQEBCwUAMEExCzAJBgNV +BAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJR04g +Uk9PVCBDQSBHMjAeFw0xNzAyMDYwOTI3MzVaFw00MjAyMDYwOTI3MzVaMEExCzAJ +BgNVBAYTAlJPMRQwEgYDVQQKEwtDRVJUU0lHTiBTQTEcMBoGA1UECxMTY2VydFNJ +R04gUk9PVCBDQSBHMjCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAMDF +dRmRfUR0dIf+DjuW3NgBFszuY5HnC2/OOwppGnzC46+CjobXXo9X69MhWf05N0Iw +vlDqtg+piNguLWkh59E3GE59kdUWX2tbAMI5Qw02hVK5U2UPHULlj88F0+7cDBrZ +uIt4ImfkabBoxTzkbFpG583H+u/E7Eu9aqSs/cwoUe+StCmrqzWaTOTECMYmzPhp +n+Sc8CnTXPnGFiWeI8MgwT0PPzhAsP6CRDiqWhqKa2NYOLQV07YRaXseVO6MGiKs +cpc/I1mbySKEwQdPzH/iV8oScLumZfNpdWO9lfsbl83kqK/20U6o2YpxJM02PbyW +xPFsqa7lzw1uKA2wDrXKUXt4FMMgL3/7FFXhEZn91QqhngLjYl/rNUssuHLoPj1P +rCy7Lobio3aP5ZMqz6WryFyNSwb/EkaseMsUBzXgqd+L6a8VTxaJW732jcZZroiF +DsGJ6x9nxUWO/203Nit4ZoORUSs9/1F3dmKh7Gc+PoGD4FapUB8fepmrY7+EF3fx +DTvf95xhszWYijqy7DwaNz9+j5LP2RIUZNoQAhVB/0/E6xyjyfqZ90bp4RjZsbgy +LcsUDFDYg2WD7rlcz8sFWkz6GZdr1l0T08JcVLwyc6B49fFtHsufpaafItzRUZ6C +eWRgKRM+o/1Pcmqr4tTluCRVLERLiohEnMqE0yo7AgMBAAGjQjBAMA8GA1UdEwEB +/wQFMAMBAf8wDgYDVR0PAQH/BAQDAgEGMB0GA1UdDgQWBBSCIS1mxteg4BXrzkwJ +d8RgnlRuAzANBgkqhkiG9w0BAQsFAAOCAgEAYN4auOfyYILVAzOBywaK8SJJ6ejq +kX/GM15oGQOGO0MBzwdw5AgeZYWR5hEit/UCI46uuR59H35s5r0l1ZUa8gWmr4UC +b6741jH/JclKyMeKqdmfS0mbEVeZkkMR3rYzpMzXjWR91M08KCy0mpbqTfXERMQl +qiCA2ClV9+BB/AYm/7k29UMUA2Z44RGx2iBfRgB4ACGlHgAoYXhvqAEBj500mv/0 +OJD7uNGzcgbJceaBxXntC6Z58hMLnPddDnskk7RI24Zf3lCGeOdA5jGokHZwYa+c +NywRtYK3qq4kNFtyDGkNzVmf9nGvnAvRCjj5BiKDUyUM/FHE5r7iOZULJK2v0ZXk +ltd0ZGtxTgI8qoXzIKNDOXZbbFD+mpwUHmUUihW9o4JFWklWatKcsWMy5WHgUyIO +pwpJ6st+H6jiYoD2EEVSmAYY3qXNL3+q1Ok+CHLsIwMCPKaq2LxndD0UF/tUSxfj +03k9bWtJySgOLnRQvwzZRjoQhsmnP+mg7H/rpXdYaXHmgwo38oZJar55CJD2AhZk +PuXaTH4MNMn5X7azKFGnpyuqSfqNZSlO42sTp5SjLVFteAxEy9/eCG/Oo2Sr05WE +1LlSVHJ7liXMvGnjSG4N0MedJ5qq+BOS3R7fY581qRY27Iy4g/Q9iY/NtBde17MX +QRBdJ3NghVdJIgc= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global Certification Authority" +# Serial: 1846098327275375458322922162 +# MD5 Fingerprint: f8:1c:18:2d:2f:ba:5f:6d:a1:6c:bc:c7:ab:91:c7:0e +# SHA1 Fingerprint: 2f:8f:36:4f:e1:58:97:44:21:59:87:a5:2a:9a:d0:69:95:26:7f:b5 +# SHA256 Fingerprint: 97:55:20:15:f5:dd:fc:3c:87:88:c0:06:94:45:55:40:88:94:45:00:84:f1:00:86:70:86:bc:1a:2b:b5:8d:c8 +-----BEGIN CERTIFICATE----- +MIIF2jCCA8KgAwIBAgIMBfcOhtpJ80Y1LrqyMA0GCSqGSIb3DQEBCwUAMIGIMQsw +CQYDVQQGEwJVUzERMA8GA1UECAwISWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28x +ITAfBgNVBAoMGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1 +c3R3YXZlIEdsb2JhbCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0xNzA4MjMx +OTM0MTJaFw00MjA4MjMxOTM0MTJaMIGIMQswCQYDVQQGEwJVUzERMA8GA1UECAwI +SWxsaW5vaXMxEDAOBgNVBAcMB0NoaWNhZ28xITAfBgNVBAoMGFRydXN0d2F2ZSBI +b2xkaW5ncywgSW5jLjExMC8GA1UEAwwoVHJ1c3R3YXZlIEdsb2JhbCBDZXJ0aWZp +Y2F0aW9uIEF1dGhvcml0eTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIB +ALldUShLPDeS0YLOvR29zd24q88KPuFd5dyqCblXAj7mY2Hf8g+CY66j96xz0Xzn +swuvCAAJWX/NKSqIk4cXGIDtiLK0thAfLdZfVaITXdHG6wZWiYj+rDKd/VzDBcdu +7oaJuogDnXIhhpCujwOl3J+IKMujkkkP7NAP4m1ET4BqstTnoApTAbqOl5F2brz8 +1Ws25kCI1nsvXwXoLG0R8+eyvpJETNKXpP7ScoFDB5zpET71ixpZfR9oWN0EACyW +80OzfpgZdNmcc9kYvkHHNHnZ9GLCQ7mzJ7Aiy/k9UscwR7PJPrhq4ufogXBeQotP +JqX+OsIgbrv4Fo7NDKm0G2x2EOFYeUY+VM6AqFcJNykbmROPDMjWLBz7BegIlT1l +RtzuzWniTY+HKE40Cz7PFNm73bZQmq131BnW2hqIyE4bJ3XYsgjxroMwuREOzYfw +hI0Vcnyh78zyiGG69Gm7DIwLdVcEuE4qFC49DxweMqZiNu5m4iK4BUBjECLzMx10 +coos9TkpoNPnG4CELcU9402x/RpvumUHO1jsQkUm+9jaJXLE9gCxInm943xZYkqc +BW89zubWR2OZxiRvchLIrH+QtAuRcOi35hYQcRfO3gZPSEF9NUqjifLJS3tBEW1n +twiYTOURGa5CgNz7kAXU+FDKvuStx8KU1xad5hePrzb7AgMBAAGjQjBAMA8GA1Ud +EwEB/wQFMAMBAf8wHQYDVR0OBBYEFJngGWcNYtt2s9o9uFvo/ULSMQ6HMA4GA1Ud +DwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAmHNw4rDT7TnsTGDZqRKGFx6W +0OhUKDtkLSGm+J1WE2pIPU/HPinbbViDVD2HfSMF1OQc3Og4ZYbFdada2zUFvXfe +uyk3QAUHw5RSn8pk3fEbK9xGChACMf1KaA0HZJDmHvUqoai7PF35owgLEQzxPy0Q +lG/+4jSHg9bP5Rs1bdID4bANqKCqRieCNqcVtgimQlRXtpla4gt5kNdXElE1GYhB +aCXUNxeEFfsBctyV3lImIJgm4nb1J2/6ADtKYdkNy1GTKv0WBpanI5ojSP5RvbbE +sLFUzt5sQa0WZ37b/TjNuThOssFgy50X31ieemKyJo90lZvkWx3SD92YHJtZuSPT +MaCm/zjdzyBP6VhWOmfD0faZmZ26NraAL4hHT4a/RDqA5Dccprrql5gR0IRiR2Qe +qu5AvzSxnI9O4fKSTx+O856X3vOmeWqJcU9LJxdI/uz0UA9PSX3MReO9ekDFQdxh +VicGaeVyQYHTtgGJoC86cnn+OjC/QezHYj6RS8fZMXZC+fc8Y+wmjHMMfRod6qh8 +h6jCJ3zhM0EPz8/8AKAigJ5Kp28AsEFFtyLKaEjFQqKu3R3y4G5OBVixwJAWKqQ9 +EEC+j2Jjg6mcgn0tAumDMHzLJ8n9HmYAsC7TIS+OMxZsmO0QqAfWzJPP29FpHOTK +yeC2nOnOcXHebD8WpHk= +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P256 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P256 Certification Authority" +# Serial: 4151900041497450638097112925 +# MD5 Fingerprint: 5b:44:e3:8d:5d:36:86:26:e8:0d:05:d2:59:a7:83:54 +# SHA1 Fingerprint: b4:90:82:dd:45:0c:be:8b:5b:b1:66:d3:e2:a4:08:26:cd:ed:42:cf +# SHA256 Fingerprint: 94:5b:bc:82:5e:a5:54:f4:89:d1:fd:51:a7:3d:df:2e:a6:24:ac:70:19:a0:52:05:22:5c:22:a7:8c:cf:a8:b4 +-----BEGIN CERTIFICATE----- +MIICYDCCAgegAwIBAgIMDWpfCD8oXD5Rld9dMAoGCCqGSM49BAMCMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM1MTBaFw00MjA4MjMxOTM1MTBaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDI1NiBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTBZMBMGByqGSM49AgEGCCqG +SM49AwEHA0IABH77bOYj43MyCMpg5lOcunSNGLB4kFKA3TjASh3RqMyTpJcGOMoN +FWLGjgEqZZ2q3zSRLoHB5DOSMcT9CTqmP62jQzBBMA8GA1UdEwEB/wQFMAMBAf8w +DwYDVR0PAQH/BAUDAwcGADAdBgNVHQ4EFgQUo0EGrJBt0UrrdaVKEJmzsaGLSvcw +CgYIKoZIzj0EAwIDRwAwRAIgB+ZU2g6gWrKuEZ+Hxbb/ad4lvvigtwjzRM4q3wgh +DDcCIC0mA6AFvWvR9lz4ZcyGbbOcNEhjhAnFjXca4syc4XR7 +-----END CERTIFICATE----- + +# Issuer: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Subject: CN=Trustwave Global ECC P384 Certification Authority O=Trustwave Holdings, Inc. +# Label: "Trustwave Global ECC P384 Certification Authority" +# Serial: 2704997926503831671788816187 +# MD5 Fingerprint: ea:cf:60:c4:3b:b9:15:29:40:a1:97:ed:78:27:93:d6 +# SHA1 Fingerprint: e7:f3:a3:c8:cf:6f:c3:04:2e:6d:0e:67:32:c5:9e:68:95:0d:5e:d2 +# SHA256 Fingerprint: 55:90:38:59:c8:c0:c3:eb:b8:75:9e:ce:4e:25:57:22:5f:f5:75:8b:bd:38:eb:d4:82:76:60:1e:1b:d5:80:97 +-----BEGIN CERTIFICATE----- +MIICnTCCAiSgAwIBAgIMCL2Fl2yZJ6SAaEc7MAoGCCqGSM49BAMDMIGRMQswCQYD +VQQGEwJVUzERMA8GA1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAf +BgNVBAoTGFRydXN0d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3 +YXZlIEdsb2JhbCBFQ0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTAeFw0x +NzA4MjMxOTM2NDNaFw00MjA4MjMxOTM2NDNaMIGRMQswCQYDVQQGEwJVUzERMA8G +A1UECBMISWxsaW5vaXMxEDAOBgNVBAcTB0NoaWNhZ28xITAfBgNVBAoTGFRydXN0 +d2F2ZSBIb2xkaW5ncywgSW5jLjE6MDgGA1UEAxMxVHJ1c3R3YXZlIEdsb2JhbCBF +Q0MgUDM4NCBDZXJ0aWZpY2F0aW9uIEF1dGhvcml0eTB2MBAGByqGSM49AgEGBSuB +BAAiA2IABGvaDXU1CDFHBa5FmVXxERMuSvgQMSOjfoPTfygIOiYaOs+Xgh+AtycJ +j9GOMMQKmw6sWASr9zZ9lCOkmwqKi6vr/TklZvFe/oyujUF5nQlgziip04pt89ZF +1PKYhDhloKNDMEEwDwYDVR0TAQH/BAUwAwEB/zAPBgNVHQ8BAf8EBQMDBwYAMB0G +A1UdDgQWBBRVqYSJ0sEyvRjLbKYHTsjnnb6CkDAKBggqhkjOPQQDAwNnADBkAjA3 +AZKXRRJ+oPM+rRk6ct30UJMDEr5E0k9BpIycnR+j9sKS50gU/k6bpZFXrsY3crsC +MGclCrEMXu6pY5Jv5ZAL/mYiykf9ijH3g/56vxC+GCsej/YpHpRZ744hN8tRmKVu +Sw== +-----END CERTIFICATE----- + +# Issuer: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Subject: CN=NAVER Global Root Certification Authority O=NAVER BUSINESS PLATFORM Corp. +# Label: "NAVER Global Root Certification Authority" +# Serial: 9013692873798656336226253319739695165984492813 +# MD5 Fingerprint: c8:7e:41:f6:25:3b:f5:09:b3:17:e8:46:3d:bf:d0:9b +# SHA1 Fingerprint: 8f:6b:f2:a9:27:4a:da:14:a0:c4:f4:8e:61:27:f9:c0:1e:78:5d:d1 +# SHA256 Fingerprint: 88:f4:38:dc:f8:ff:d1:fa:8f:42:91:15:ff:e5:f8:2a:e1:e0:6e:0c:70:c3:75:fa:ad:71:7b:34:a4:9e:72:65 +-----BEGIN CERTIFICATE----- +MIIFojCCA4qgAwIBAgIUAZQwHqIL3fXFMyqxQ0Rx+NZQTQ0wDQYJKoZIhvcNAQEM +BQAwaTELMAkGA1UEBhMCS1IxJjAkBgNVBAoMHU5BVkVSIEJVU0lORVNTIFBMQVRG +T1JNIENvcnAuMTIwMAYDVQQDDClOQVZFUiBHbG9iYWwgUm9vdCBDZXJ0aWZpY2F0 +aW9uIEF1dGhvcml0eTAeFw0xNzA4MTgwODU4NDJaFw0zNzA4MTgyMzU5NTlaMGkx +CzAJBgNVBAYTAktSMSYwJAYDVQQKDB1OQVZFUiBCVVNJTkVTUyBQTEFURk9STSBD +b3JwLjEyMDAGA1UEAwwpTkFWRVIgR2xvYmFsIFJvb3QgQ2VydGlmaWNhdGlvbiBB +dXRob3JpdHkwggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoICAQC21PGTXLVA +iQqrDZBbUGOukJR0F0Vy1ntlWilLp1agS7gvQnXp2XskWjFlqxcX0TM62RHcQDaH +38dq6SZeWYp34+hInDEW+j6RscrJo+KfziFTowI2MMtSAuXaMl3Dxeb57hHHi8lE +HoSTGEq0n+USZGnQJoViAbbJAh2+g1G7XNr4rRVqmfeSVPc0W+m/6imBEtRTkZaz +kVrd/pBzKPswRrXKCAfHcXLJZtM0l/aM9BhK4dA9WkW2aacp+yPOiNgSnABIqKYP +szuSjXEOdMWLyEz59JuOuDxp7W87UC9Y7cSw0BwbagzivESq2M0UXZR4Yb8Obtoq +vC8MC3GmsxY/nOb5zJ9TNeIDoKAYv7vxvvTWjIcNQvcGufFt7QSUqP620wbGQGHf +nZ3zVHbOUzoBppJB7ASjjw2i1QnK1sua8e9DXcCrpUHPXFNwcMmIpi3Ua2FzUCaG +YQ5fG8Ir4ozVu53BA0K6lNpfqbDKzE0K70dpAy8i+/Eozr9dUGWokG2zdLAIx6yo +0es+nPxdGoMuK8u180SdOqcXYZaicdNwlhVNt0xz7hlcxVs+Qf6sdWA7G2POAN3a +CJBitOUt7kinaxeZVL6HSuOpXgRM6xBtVNbv8ejyYhbLgGvtPe31HzClrkvJE+2K +AQHJuFFYwGY6sWZLxNUxAmLpdIQM201GLQIDAQABo0IwQDAdBgNVHQ4EFgQU0p+I +36HNLL3s9TsBAZMzJ7LrYEswDgYDVR0PAQH/BAQDAgEGMA8GA1UdEwEB/wQFMAMB +Af8wDQYJKoZIhvcNAQEMBQADggIBADLKgLOdPVQG3dLSLvCkASELZ0jKbY7gyKoN +qo0hV4/GPnrK21HUUrPUloSlWGB/5QuOH/XcChWB5Tu2tyIvCZwTFrFsDDUIbatj +cu3cvuzHV+YwIHHW1xDBE1UBjCpD5EHxzzp6U5LOogMFDTjfArsQLtk70pt6wKGm ++LUx5vR1yblTmXVHIloUFcd4G7ad6Qz4G3bxhYTeodoS76TiEJd6eN4MUZeoIUCL +hr0N8F5OSza7OyAfikJW4Qsav3vQIkMsRIz75Sq0bBwcupTgE34h5prCy8VCZLQe +lHsIJchxzIdFV4XTnyliIoNRlwAYl3dqmJLJfGBs32x9SuRwTMKeuB330DTHD8z7 +p/8Dvq1wkNoL3chtl1+afwkyQf3NosxabUzyqkn+Zvjp2DXrDige7kgvOtB5CTh8 +piKCk5XQA76+AqAF3SAi428diDRgxuYKuQl1C/AH6GmWNcf7I4GOODm4RStDeKLR +LBT/DShycpWbXgnbiUSYqqFJu3FS8r/2/yehNq+4tneI3TqkbZs0kNwUXTC/t+sX +5Ie3cdCh13cV1ELX8vMxmV2b3RZtP+oGI/hGoiLtk/bdmuYqh7GYVPEi92tF4+KO +dh2ajcQGjTa3FPOdVGm3jjzVpG2Tgbet9r1ke8LJaDmgkpzNNIaRkPpkUZ3+/uul +9XXeifdy +-----END CERTIFICATE----- + +# Issuer: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Subject: CN=AC RAIZ FNMT-RCM SERVIDORES SEGUROS O=FNMT-RCM OU=Ceres +# Label: "AC RAIZ FNMT-RCM SERVIDORES SEGUROS" +# Serial: 131542671362353147877283741781055151509 +# MD5 Fingerprint: 19:36:9c:52:03:2f:d2:d1:bb:23:cc:dd:1e:12:55:bb +# SHA1 Fingerprint: 62:ff:d9:9e:c0:65:0d:03:ce:75:93:d2:ed:3f:2d:32:c9:e3:e5:4a +# SHA256 Fingerprint: 55:41:53:b1:3d:2c:f9:dd:b7:53:bf:be:1a:4e:0a:e0:8d:0a:a4:18:70:58:fe:60:a2:b8:62:b2:e4:b8:7b:cb +-----BEGIN CERTIFICATE----- +MIICbjCCAfOgAwIBAgIQYvYybOXE42hcG2LdnC6dlTAKBggqhkjOPQQDAzB4MQsw +CQYDVQQGEwJFUzERMA8GA1UECgwIRk5NVC1SQ00xDjAMBgNVBAsMBUNlcmVzMRgw +FgYDVQRhDA9WQVRFUy1RMjgyNjAwNEoxLDAqBgNVBAMMI0FDIFJBSVogRk5NVC1S +Q00gU0VSVklET1JFUyBTRUdVUk9TMB4XDTE4MTIyMDA5MzczM1oXDTQzMTIyMDA5 +MzczM1oweDELMAkGA1UEBhMCRVMxETAPBgNVBAoMCEZOTVQtUkNNMQ4wDAYDVQQL +DAVDZXJlczEYMBYGA1UEYQwPVkFURVMtUTI4MjYwMDRKMSwwKgYDVQQDDCNBQyBS +QUlaIEZOTVQtUkNNIFNFUlZJRE9SRVMgU0VHVVJPUzB2MBAGByqGSM49AgEGBSuB +BAAiA2IABPa6V1PIyqvfNkpSIeSX0oNnnvBlUdBeh8dHsVnyV0ebAAKTRBdp20LH +sbI6GA60XYyzZl2hNPk2LEnb80b8s0RpRBNm/dfF/a82Tc4DTQdxz69qBdKiQ1oK +Um8BA06Oi6NCMEAwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMCAQYwHQYD +VR0OBBYEFAG5L++/EYZg8k/QQW6rcx/n0m5JMAoGCCqGSM49BAMDA2kAMGYCMQCu +SuMrQMN0EfKVrRYj3k4MGuZdpSRea0R7/DjiT8ucRRcRTBQnJlU5dUoDzBOQn5IC +MQD6SmxgiHPz7riYYqnOK8LZiqZwMR2vsJRM60/G49HzYqc8/5MuB1xJAWdpEgJy +v+c= +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root R46 O=GlobalSign nv-sa +# Label: "GlobalSign Root R46" +# Serial: 1552617688466950547958867513931858518042577 +# MD5 Fingerprint: c4:14:30:e4:fa:66:43:94:2a:6a:1b:24:5f:19:d0:ef +# SHA1 Fingerprint: 53:a2:b0:4b:ca:6b:d6:45:e6:39:8a:8e:c4:0d:d2:bf:77:c3:a2:90 +# SHA256 Fingerprint: 4f:a3:12:6d:8d:3a:11:d1:c4:85:5a:4f:80:7c:ba:d6:cf:91:9d:3a:5a:88:b0:3b:ea:2c:63:72:d9:3c:40:c9 +-----BEGIN CERTIFICATE----- +MIIFWjCCA0KgAwIBAgISEdK7udcjGJ5AXwqdLdDfJWfRMA0GCSqGSIb3DQEBDAUA +MEYxCzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYD +VQQDExNHbG9iYWxTaWduIFJvb3QgUjQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMy +MDAwMDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYt +c2ExHDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBSNDYwggIiMA0GCSqGSIb3DQEB +AQUAA4ICDwAwggIKAoICAQCsrHQy6LNl5brtQyYdpokNRbopiLKkHWPd08EsCVeJ +OaFV6Wc0dwxu5FUdUiXSE2te4R2pt32JMl8Nnp8semNgQB+msLZ4j5lUlghYruQG +vGIFAha/r6gjA7aUD7xubMLL1aa7DOn2wQL7Id5m3RerdELv8HQvJfTqa1VbkNud +316HCkD7rRlr+/fKYIje2sGP1q7Vf9Q8g+7XFkyDRTNrJ9CG0Bwta/OrffGFqfUo +0q3v84RLHIf8E6M6cqJaESvWJ3En7YEtbWaBkoe0G1h6zD8K+kZPTXhc+CtI4wSE +y132tGqzZfxCnlEmIyDLPRT5ge1lFgBPGmSXZgjPjHvjK8Cd+RTyG/FWaha/LIWF +zXg4mutCagI0GIMXTpRW+LaCtfOW3T3zvn8gdz57GSNrLNRyc0NXfeD412lPFzYE ++cCQYDdF3uYM2HSNrpyibXRdQr4G9dlkbgIQrImwTDsHTUB+JMWKmIJ5jqSngiCN +I/onccnfxkF0oE32kRbcRoxfKWMxWXEM2G/CtjJ9++ZdU6Z+Ffy7dXxd7Pj2Fxzs +x2sZy/N78CsHpdlseVR2bJ0cpm4O6XkMqCNqo98bMDGfsVR7/mrLZqrcZdCinkqa +ByFrgY/bxFn63iLABJzjqls2k+g9vXqhnQt2sQvHnf3PmKgGwvgqo6GDoLclcqUC +4wIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAYYwDwYDVR0TAQH/BAUwAwEB/zAdBgNV +HQ4EFgQUA1yrc4GHqMywptWU4jaWSf8FmSwwDQYJKoZIhvcNAQEMBQADggIBAHx4 +7PYCLLtbfpIrXTncvtgdokIzTfnvpCo7RGkerNlFo048p9gkUbJUHJNOxO97k4Vg +JuoJSOD1u8fpaNK7ajFxzHmuEajwmf3lH7wvqMxX63bEIaZHU1VNaL8FpO7XJqti +2kM3S+LGteWygxk6x9PbTZ4IevPuzz5i+6zoYMzRx6Fcg0XERczzF2sUyQQCPtIk +pnnpHs6i58FZFZ8d4kuaPp92CC1r2LpXFNqD6v6MVenQTqnMdzGxRBF6XLE+0xRF +FRhiJBPSy03OXIPBNvIQtQ6IbbjhVp+J3pZmOUdkLG5NrmJ7v2B0GbhWrJKsFjLt +rWhV/pi60zTe9Mlhww6G9kuEYO4Ne7UyWHmRVSyBQ7N0H3qqJZ4d16GLuc1CLgSk +ZoNNiTW2bKg2SnkheCLQQrzRQDGQob4Ez8pn7fXwgNNgyYMqIgXQBztSvwyeqiv5 +u+YfjyW6hY0XHgL+XVAEV8/+LbzvXMAaq7afJMbfc2hIkCwU9D9SGuTSyxTDYWnP +4vkYxboznxSjBF25cfe1lNj2M8FawTSLfJvdkzrnE6JwYZ+vj+vYxXX4M2bUdGc6 +N3ec592kD3ZDZopD8p/7DEJ4Y9HiD2971KE9dJeFt0g5QdYg/NA6s/rob8SKunE3 +vouXsXgxT7PntgMTzlSdriVZzH81Xwj3QEUxeCp6 +-----END CERTIFICATE----- + +# Issuer: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Subject: CN=GlobalSign Root E46 O=GlobalSign nv-sa +# Label: "GlobalSign Root E46" +# Serial: 1552617690338932563915843282459653771421763 +# MD5 Fingerprint: b5:b8:66:ed:de:08:83:e3:c9:e2:01:34:06:ac:51:6f +# SHA1 Fingerprint: 39:b4:6c:d5:fe:80:06:eb:e2:2f:4a:bb:08:33:a0:af:db:b9:dd:84 +# SHA256 Fingerprint: cb:b9:c4:4d:84:b8:04:3e:10:50:ea:31:a6:9f:51:49:55:d7:bf:d2:e2:c6:b4:93:01:01:9a:d6:1d:9f:50:58 +-----BEGIN CERTIFICATE----- +MIICCzCCAZGgAwIBAgISEdK7ujNu1LzmJGjFDYQdmOhDMAoGCCqGSM49BAMDMEYx +CzAJBgNVBAYTAkJFMRkwFwYDVQQKExBHbG9iYWxTaWduIG52LXNhMRwwGgYDVQQD +ExNHbG9iYWxTaWduIFJvb3QgRTQ2MB4XDTE5MDMyMDAwMDAwMFoXDTQ2MDMyMDAw +MDAwMFowRjELMAkGA1UEBhMCQkUxGTAXBgNVBAoTEEdsb2JhbFNpZ24gbnYtc2Ex +HDAaBgNVBAMTE0dsb2JhbFNpZ24gUm9vdCBFNDYwdjAQBgcqhkjOPQIBBgUrgQQA +IgNiAAScDrHPt+ieUnd1NPqlRqetMhkytAepJ8qUuwzSChDH2omwlwxwEwkBjtjq +R+q+soArzfwoDdusvKSGN+1wCAB16pMLey5SnCNoIwZD7JIvU4Tb+0cUB+hflGdd +yXqBPCCjQjBAMA4GA1UdDwEB/wQEAwIBhjAPBgNVHRMBAf8EBTADAQH/MB0GA1Ud +DgQWBBQxCpCPtsad0kRLgLWi5h+xEk8blTAKBggqhkjOPQQDAwNoADBlAjEA31SQ +7Zvvi5QCkxeCmb6zniz2C5GMn0oUsfZkvLtoURMMA/cVi4RguYv/Uo7njLwcAjA8 ++RHUjE7AwWHCFUyqqx0LMV87HOIAl0Qx5v5zli/altP+CAezNIm8BZ/3Hobui3A= +-----END CERTIFICATE----- + +# Issuer: CN=GLOBALTRUST 2020 O=e-commerce monitoring GmbH +# Subject: CN=GLOBALTRUST 2020 O=e-commerce monitoring GmbH +# Label: "GLOBALTRUST 2020" +# Serial: 109160994242082918454945253 +# MD5 Fingerprint: 8a:c7:6f:cb:6d:e3:cc:a2:f1:7c:83:fa:0e:78:d7:e8 +# SHA1 Fingerprint: d0:67:c1:13:51:01:0c:aa:d0:c7:6a:65:37:31:16:26:4f:53:71:a2 +# SHA256 Fingerprint: 9a:29:6a:51:82:d1:d4:51:a2:e3:7f:43:9b:74:da:af:a2:67:52:33:29:f9:0f:9a:0d:20:07:c3:34:e2:3c:9a +-----BEGIN CERTIFICATE----- +MIIFgjCCA2qgAwIBAgILWku9WvtPilv6ZeUwDQYJKoZIhvcNAQELBQAwTTELMAkG +A1UEBhMCQVQxIzAhBgNVBAoTGmUtY29tbWVyY2UgbW9uaXRvcmluZyBHbWJIMRkw +FwYDVQQDExBHTE9CQUxUUlVTVCAyMDIwMB4XDTIwMDIxMDAwMDAwMFoXDTQwMDYx +MDAwMDAwMFowTTELMAkGA1UEBhMCQVQxIzAhBgNVBAoTGmUtY29tbWVyY2UgbW9u +aXRvcmluZyBHbWJIMRkwFwYDVQQDExBHTE9CQUxUUlVTVCAyMDIwMIICIjANBgkq +hkiG9w0BAQEFAAOCAg8AMIICCgKCAgEAri5WrRsc7/aVj6B3GyvTY4+ETUWiD59b +RatZe1E0+eyLinjF3WuvvcTfk0Uev5E4C64OFudBc/jbu9G4UeDLgztzOG53ig9Z +YybNpyrOVPu44sB8R85gfD+yc/LAGbaKkoc1DZAoouQVBGM+uq/ufF7MpotQsjj3 +QWPKzv9pj2gOlTblzLmMCcpL3TGQlsjMH/1WljTbjhzqLL6FLmPdqqmV0/0plRPw +yJiT2S0WR5ARg6I6IqIoV6Lr/sCMKKCmfecqQjuCgGOlYx8ZzHyyZqjC0203b+J+ +BlHZRYQfEs4kUmSFC0iAToexIiIwquuuvuAC4EDosEKAA1GqtH6qRNdDYfOiaxaJ +SaSjpCuKAsR49GiKweR6NrFvG5Ybd0mN1MkGco/PU+PcF4UgStyYJ9ORJitHHmkH +r96i5OTUawuzXnzUJIBHKWk7buis/UDr2O1xcSvy6Fgd60GXIsUf1DnQJ4+H4xj0 +4KlGDfV0OoIu0G4skaMxXDtG6nsEEFZegB31pWXogvziB4xiRfUg3kZwhqG8k9Me +dKZssCz3AwyIDMvUclOGvGBG85hqwvG/Q/lwIHfKN0F5VVJjjVsSn8VoxIidrPIw +q7ejMZdnrY8XD2zHc+0klGvIg5rQmjdJBKuxFshsSUktq6HQjJLyQUp5ISXbY9e2 +nKd+Qmn7OmMCAwEAAaNjMGEwDwYDVR0TAQH/BAUwAwEB/zAOBgNVHQ8BAf8EBAMC +AQYwHQYDVR0OBBYEFNwuH9FhN3nkq9XVsxJxaD1qaJwiMB8GA1UdIwQYMBaAFNwu +H9FhN3nkq9XVsxJxaD1qaJwiMA0GCSqGSIb3DQEBCwUAA4ICAQCR8EICaEDuw2jA +VC/f7GLDw56KoDEoqoOOpFaWEhCGVrqXctJUMHytGdUdaG/7FELYjQ7ztdGl4wJC +XtzoRlgHNQIw4Lx0SsFDKv/bGtCwr2zD/cuz9X9tAy5ZVp0tLTWMstZDFyySCstd +6IwPS3BD0IL/qMy/pJTAvoe9iuOTe8aPmxadJ2W8esVCgmxcB9CpwYhgROmYhRZf ++I/KARDOJcP5YBugxZfD0yyIMaK9MOzQ0MAS8cE54+X1+NZK3TTN+2/BT+MAi1bi +kvcoskJ3ciNnxz8RFbLEAwW+uxF7Cr+obuf/WEPPm2eggAe2HcqtbepBEX4tdJP7 +wry+UUTF72glJ4DjyKDUEuzZpTcdN3y0kcra1LGWge9oXHYQSa9+pTeAsRxSvTOB +TI/53WXZFM2KJVj04sWDpQmQ1GwUY7VA3+vA/MRYfg0UFodUJ25W5HCEuGwyEn6C +MUO+1918oa2u1qsgEu8KwxCMSZY13At1XrFP1U80DhEgB3VDRemjEdqso5nCtnkn +4rnvyOL2NSl6dPrFf4IFYqYK6miyeUcGbvJXqBUzxvd4Sj1Ce2t+/vdG6tHrju+I +aFvowdlxfv1k7/9nR4hYJS8+hge9+6jlgqispdNpQ80xiEmEU5LAsTkbOYMBMMTy +qfrQA71yN2BWHzZ8vTmR9W0Nv3vXkg== +-----END CERTIFICATE----- + +# Issuer: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Subject: CN=ANF Secure Server Root CA O=ANF Autoridad de Certificacion OU=ANF CA Raiz +# Label: "ANF Secure Server Root CA" +# Serial: 996390341000653745 +# MD5 Fingerprint: 26:a6:44:5a:d9:af:4e:2f:b2:1d:b6:65:b0:4e:e8:96 +# SHA1 Fingerprint: 5b:6e:68:d0:cc:15:b6:a0:5f:1e:c1:5f:ae:02:fc:6b:2f:5d:6f:74 +# SHA256 Fingerprint: fb:8f:ec:75:91:69:b9:10:6b:1e:51:16:44:c6:18:c5:13:04:37:3f:6c:06:43:08:8d:8b:ef:fd:1b:99:75:99 +-----BEGIN CERTIFICATE----- +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 +-----END CERTIFICATE----- + +# Issuer: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum EC-384 CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum EC-384 CA" +# Serial: 160250656287871593594747141429395092468 +# MD5 Fingerprint: b6:65:b3:96:60:97:12:a1:ec:4e:e1:3d:a3:c6:c9:f1 +# SHA1 Fingerprint: f3:3e:78:3c:ac:df:f4:a2:cc:ac:67:55:69:56:d7:e5:16:3c:e1:ed +# SHA256 Fingerprint: 6b:32:80:85:62:53:18:aa:50:d1:73:c9:8d:8b:da:09:d5:7e:27:41:3d:11:4c:f7:87:a0:f5:d0:6c:03:0c:f6 +-----BEGIN CERTIFICATE----- +MIICZTCCAeugAwIBAgIQeI8nXIESUiClBNAt3bpz9DAKBggqhkjOPQQDAzB0MQsw +CQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEuMScw +JQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAXBgNVBAMT +EENlcnR1bSBFQy0zODQgQ0EwHhcNMTgwMzI2MDcyNDU0WhcNNDMwMzI2MDcyNDU0 +WjB0MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBT +LkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxGTAX +BgNVBAMTEENlcnR1bSBFQy0zODQgQ0EwdjAQBgcqhkjOPQIBBgUrgQQAIgNiAATE +KI6rGFtqvm5kN2PkzeyrOvfMobgOgknXhimfoZTy42B4mIF4Bk3y7JoOV2CDn7Tm +Fy8as10CW4kjPMIRBSqniBMY81CE1700LCeJVf/OTOffph8oxPBUw7l8t1Ot68Kj +QjBAMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFI0GZnQkdjrzife81r1HfS+8 +EF9LMA4GA1UdDwEB/wQEAwIBBjAKBggqhkjOPQQDAwNoADBlAjADVS2m5hjEfO/J +UG7BJw+ch69u1RsIGL2SKcHvlJF40jocVYli5RsJHrpka/F2tNQCMQC0QoSZ/6vn +nvuRlydd3LBbMHHOXjgaatkl5+r3YZJW+OraNsKHZZYuciUvf9/DE8k= +-----END CERTIFICATE----- + +# Issuer: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Subject: CN=Certum Trusted Root CA O=Asseco Data Systems S.A. OU=Certum Certification Authority +# Label: "Certum Trusted Root CA" +# Serial: 40870380103424195783807378461123655149 +# MD5 Fingerprint: 51:e1:c2:e7:fe:4c:84:af:59:0e:2f:f4:54:6f:ea:29 +# SHA1 Fingerprint: c8:83:44:c0:18:ae:9f:cc:f1:87:b7:8f:22:d1:c5:d7:45:84:ba:e5 +# SHA256 Fingerprint: fe:76:96:57:38:55:77:3e:37:a9:5e:7a:d4:d9:cc:96:c3:01:57:c1:5d:31:76:5b:a9:b1:57:04:e1:ae:78:fd +-----BEGIN CERTIFICATE----- +MIIFwDCCA6igAwIBAgIQHr9ZULjJgDdMBvfrVU+17TANBgkqhkiG9w0BAQ0FADB6 +MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEgU3lzdGVtcyBTLkEu +MScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRob3JpdHkxHzAdBgNV +BAMTFkNlcnR1bSBUcnVzdGVkIFJvb3QgQ0EwHhcNMTgwMzE2MTIxMDEzWhcNNDMw +MzE2MTIxMDEzWjB6MQswCQYDVQQGEwJQTDEhMB8GA1UEChMYQXNzZWNvIERhdGEg +U3lzdGVtcyBTLkEuMScwJQYDVQQLEx5DZXJ0dW0gQ2VydGlmaWNhdGlvbiBBdXRo +b3JpdHkxHzAdBgNVBAMTFkNlcnR1bSBUcnVzdGVkIFJvb3QgQ0EwggIiMA0GCSqG +SIb3DQEBAQUAA4ICDwAwggIKAoICAQDRLY67tzbqbTeRn06TpwXkKQMlzhyC93yZ +n0EGze2jusDbCSzBfN8pfktlL5On1AFrAygYo9idBcEq2EXxkd7fO9CAAozPOA/q +p1x4EaTByIVcJdPTsuclzxFUl6s1wB52HO8AU5853BSlLCIls3Jy/I2z5T4IHhQq +NwuIPMqw9MjCoa68wb4pZ1Xi/K1ZXP69VyywkI3C7Te2fJmItdUDmj0VDT06qKhF +8JVOJVkdzZhpu9PMMsmN74H+rX2Ju7pgE8pllWeg8xn2A1bUatMn4qGtg/BKEiJ3 +HAVz4hlxQsDsdUaakFjgao4rpUYwBI4Zshfjvqm6f1bxJAPXsiEodg42MEx51UGa +mqi4NboMOvJEGyCI98Ul1z3G4z5D3Yf+xOr1Uz5MZf87Sst4WmsXXw3Hw09Omiqi +7VdNIuJGmj8PkTQkfVXjjJU30xrwCSss0smNtA0Aq2cpKNgB9RkEth2+dv5yXMSF +ytKAQd8FqKPVhJBPC/PgP5sZ0jeJP/J7UhyM9uH3PAeXjA6iWYEMspA90+NZRu0P +qafegGtaqge2Gcu8V/OXIXoMsSt0Puvap2ctTMSYnjYJdmZm/Bo/6khUHL4wvYBQ +v3y1zgD2DGHZ5yQD4OMBgQ692IU0iL2yNqh7XAjlRICMb/gv1SHKHRzQ+8S1h9E6 +Tsd2tTVItQIDAQABo0IwQDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBSM+xx1 +vALTn04uSNn5YFSqxLNP+jAOBgNVHQ8BAf8EBAMCAQYwDQYJKoZIhvcNAQENBQAD +ggIBAEii1QALLtA/vBzVtVRJHlpr9OTy4EA34MwUe7nJ+jW1dReTagVphZzNTxl4 +WxmB82M+w85bj/UvXgF2Ez8sALnNllI5SW0ETsXpD4YN4fqzX4IS8TrOZgYkNCvo +zMrnadyHncI013nR03e4qllY/p0m+jiGPp2Kh2RX5Rc64vmNueMzeMGQ2Ljdt4NR +5MTMI9UGfOZR0800McD2RrsLrfw9EAUqO0qRJe6M1ISHgCq8CYyqOhNf6DR5UMEQ +GfnTKB7U0VEwKbOukGfWHwpjscWpxkIxYxeU72nLL/qMFH3EQxiJ2fAyQOaA4kZf +5ePBAFmo+eggvIksDkc0C+pXwlM2/KfUrzHN/gLldfq5Jwn58/U7yn2fqSLLiMmq +0Uc9NneoWWRrJ8/vJ8HjJLWG965+Mk2weWjROeiQWMODvA8s1pfrzgzhIMfatz7D +P78v3DSk+yshzWePS/Tj6tQ/50+6uaWTRRxmHyH6ZF5v4HaUMst19W7l9o/HuKTM +qJZ9ZPskWkoDbGs4xugDQ5r3V7mzKWmTOPQD8rv7gmsHINFSH5pkAnuYZttcTVoP +0ISVoDwUQwbKytu4QTbaakRnh6+v40URFWkIsr4WOZckbxJF0WddCajJFdr60qZf +E2Efv4WstK2tBZQIgx51F9NxO5NQI1mg7TyRVJ12AMXDuDjb +-----END CERTIFICATE----- + +# Issuer: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Subject: CN=TunTrust Root CA O=Agence Nationale de Certification Electronique +# Label: "TunTrust Root CA" +# Serial: 108534058042236574382096126452369648152337120275 +# MD5 Fingerprint: 85:13:b9:90:5b:36:5c:b6:5e:b8:5a:f8:e0:31:57:b4 +# SHA1 Fingerprint: cf:e9:70:84:0f:e0:73:0f:9d:f6:0c:7f:2c:4b:ee:20:46:34:9c:bb +# SHA256 Fingerprint: 2e:44:10:2a:b5:8c:b8:54:19:45:1c:8e:19:d9:ac:f3:66:2c:af:bc:61:4b:6a:53:96:0a:30:f7:d0:e2:eb:41 +-----BEGIN CERTIFICATE----- +MIIFszCCA5ugAwIBAgIUEwLV4kBMkkaGFmddtLu7sms+/BMwDQYJKoZIhvcNAQEL +BQAwYTELMAkGA1UEBhMCVE4xNzA1BgNVBAoMLkFnZW5jZSBOYXRpb25hbGUgZGUg +Q2VydGlmaWNhdGlvbiBFbGVjdHJvbmlxdWUxGTAXBgNVBAMMEFR1blRydXN0IFJv +b3QgQ0EwHhcNMTkwNDI2MDg1NzU2WhcNNDQwNDI2MDg1NzU2WjBhMQswCQYDVQQG +EwJUTjE3MDUGA1UECgwuQWdlbmNlIE5hdGlvbmFsZSBkZSBDZXJ0aWZpY2F0aW9u +IEVsZWN0cm9uaXF1ZTEZMBcGA1UEAwwQVHVuVHJ1c3QgUm9vdCBDQTCCAiIwDQYJ +KoZIhvcNAQEBBQADggIPADCCAgoCggIBAMPN0/y9BFPdDCA61YguBUtB9YOCfvdZ +n56eY+hz2vYGqU8ftPkLHzmMmiDQfgbU7DTZhrx1W4eI8NLZ1KMKsmwb60ksPqxd +2JQDoOw05TDENX37Jk0bbjBU2PWARZw5rZzJJQRNmpA+TkBuimvNKWfGzC3gdOgF +VwpIUPp6Q9p+7FuaDmJ2/uqdHYVy7BG7NegfJ7/Boce7SBbdVtfMTqDhuazb1YMZ +GoXRlJfXyqNlC/M4+QKu3fZnz8k/9YosRxqZbwUN/dAdgjH8KcwAWJeRTIAAHDOF +li/LQcKLEITDCSSJH7UP2dl3RxiSlGBcx5kDPP73lad9UKGAwqmDrViWVSHbhlnU +r8a83YFuB9tgYv7sEG7aaAH0gxupPqJbI9dkxt/con3YS7qC0lH4Zr8GRuR5KiY2 +eY8fTpkdso8MDhz/yV3A/ZAQprE38806JG60hZC/gLkMjNWb1sjxVj8agIl6qeIb +MlEsPvLfe/ZdeikZjuXIvTZxi11Mwh0/rViizz1wTaZQmCXcI/m4WEEIcb9PuISg +jwBUFfyRbVinljvrS5YnzWuioYasDXxU5mZMZl+QviGaAkYt5IPCgLnPSz7ofzwB +7I9ezX/SKEIBlYrilz0QIX32nRzFNKHsLA4KUiwSVXAkPcvCFDVDXSdOvsC9qnyW +5/yeYa1E0wCXAgMBAAGjYzBhMB0GA1UdDgQWBBQGmpsfU33x9aTI04Y+oXNZtPdE +ITAPBgNVHRMBAf8EBTADAQH/MB8GA1UdIwQYMBaAFAaamx9TffH1pMjThj6hc1m0 +90QhMA4GA1UdDwEB/wQEAwIBBjANBgkqhkiG9w0BAQsFAAOCAgEAqgVutt0Vyb+z +xiD2BkewhpMl0425yAA/l/VSJ4hxyXT968pk21vvHl26v9Hr7lxpuhbI87mP0zYu +QEkHDVneixCwSQXi/5E/S7fdAo74gShczNxtr18UnH1YeA32gAm56Q6XKRm4t+v4 +FstVEuTGfbvE7Pi1HE4+Z7/FXxttbUcoqgRYYdZ2vyJ/0Adqp2RT8JeNnYA/u8EH +22Wv5psymsNUk8QcCMNE+3tjEUPRahphanltkE8pjkcFwRJpadbGNjHh/PqAulxP +xOu3Mqz4dWEX1xAZufHSCe96Qp1bWgvUxpVOKs7/B9dPfhgGiPEZtdmYu65xxBzn +dFlY7wyJz4sfdZMaBBSSSFCp61cpABbjNhzI+L/wM9VBD8TMPN3pM0MBkRArHtG5 +Xc0yGYuPjCB31yLEQtyEFpslbei0VXF/sHyz03FJuc9SpAQ/3D2gu68zngowYI7b +nV2UqL1g52KAdoGDDIzMMEZJ4gzSqK/rYXHv5yJiqfdcZGyfFoxnNidF9Ql7v/YQ +CvGwjVRDjAS6oz/v4jXH+XTgbzRB0L9zZVcg+ZtnemZoJE6AZb0QmQZZ8mWvuMZH +u/2QeItBcy6vVR/cO5JyboTT0GFMDcx2V+IthSIVNg3rAZ3r2OvEhJn7wAzMMujj +d9qDRIueVSjAi1jTkD5OGwDxFa2DK5o= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS RSA Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS RSA Root CA 2021" +# Serial: 76817823531813593706434026085292783742 +# MD5 Fingerprint: 65:47:9b:58:86:dd:2c:f0:fc:a2:84:1f:1e:96:c4:91 +# SHA1 Fingerprint: 02:2d:05:82:fa:88:ce:14:0c:06:79:de:7f:14:10:e9:45:d7:a5:6d +# SHA256 Fingerprint: d9:5d:0e:8e:da:79:52:5b:f9:be:b1:1b:14:d2:10:0d:32:94:98:5f:0c:62:d9:fa:bd:9c:d9:99:ec:cb:7b:1d +-----BEGIN CERTIFICATE----- +MIIFpDCCA4ygAwIBAgIQOcqTHO9D88aOk8f0ZIk4fjANBgkqhkiG9w0BAQsFADBs +MQswCQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJl +c2VhcmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBSU0Eg +Um9vdCBDQSAyMDIxMB4XDTIxMDIxOTEwNTUzOFoXDTQ1MDIxMzEwNTUzN1owbDEL +MAkGA1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNl +YXJjaCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgUlNBIFJv +b3QgQ0EgMjAyMTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBAIvC569l +mwVnlskNJLnQDmT8zuIkGCyEf3dRywQRNrhe7Wlxp57kJQmXZ8FHws+RFjZiPTgE +4VGC/6zStGndLuwRo0Xua2s7TL+MjaQenRG56Tj5eg4MmOIjHdFOY9TnuEFE+2uv +a9of08WRiFukiZLRgeaMOVig1mlDqa2YUlhu2wr7a89o+uOkXjpFc5gH6l8Cct4M +pbOfrqkdtx2z/IpZ525yZa31MJQjB/OCFks1mJxTuy/K5FrZx40d/JiZ+yykgmvw +Kh+OC19xXFyuQnspiYHLA6OZyoieC0AJQTPb5lh6/a6ZcMBaD9YThnEvdmn8kN3b +LW7R8pv1GmuebxWMevBLKKAiOIAkbDakO/IwkfN4E8/BPzWr8R0RI7VDIp4BkrcY +AuUR0YLbFQDMYTfBKnya4dC6s1BG7oKsnTH4+yPiAwBIcKMJJnkVU2DzOFytOOqB +AGMUuTNe3QvboEUHGjMJ+E20pwKmafTCWQWIZYVWrkvL4N48fS0ayOn7H6NhStYq +E613TBoYm5EPWNgGVMWX+Ko/IIqmhaZ39qb8HOLubpQzKoNQhArlT4b4UEV4AIHr +W2jjJo3Me1xR9BQsQL4aYB16cmEdH2MtiKrOokWQCPxrvrNQKlr9qEgYRtaQQJKQ +CoReaDH46+0N0x3GfZkYVVYnZS6NRcUk7M7jAgMBAAGjQjBAMA8GA1UdEwEB/wQF +MAMBAf8wHQYDVR0OBBYEFApII6ZgpJIKM+qTW8VX6iVNvRLuMA4GA1UdDwEB/wQE +AwIBhjANBgkqhkiG9w0BAQsFAAOCAgEAPpBIqm5iFSVmewzVjIuJndftTgfvnNAU +X15QvWiWkKQUEapobQk1OUAJ2vQJLDSle1mESSmXdMgHHkdt8s4cUCbjnj1AUz/3 +f5Z2EMVGpdAgS1D0NTsY9FVqQRtHBmg8uwkIYtlfVUKqrFOFrJVWNlar5AWMxaja +H6NpvVMPxP/cyuN+8kyIhkdGGvMA9YCRotxDQpSbIPDRzbLrLFPCU3hKTwSUQZqP +JzLB5UkZv/HywouoCjkxKLR9YjYsTewfM7Z+d21+UPCfDtcRj88YxeMn/ibvBZ3P +zzfF0HvaO7AWhAw6k9a+F9sPPg4ZeAnHqQJyIkv3N3a6dcSFA1pj1bF1BcK5vZSt +jBWZp5N99sXzqnTPBIWUmAD04vnKJGW/4GKvyMX6ssmeVkjaef2WdhW+o45WxLM0 +/L5H9MG0qPzVMIho7suuyWPEdr6sOBjhXlzPrjoiUevRi7PzKzMHVIf6tLITe7pT +BGIBnfHAT+7hOtSLIBD6Alfm78ELt5BGnBkpjNxvoEppaZS3JGWg/6w/zgH7IS79 +aPib8qXPMThcFarmlwDB31qlpzmq6YR/PFGoOtmUW4y/Twhx5duoXNTSpv4Ao8YW +xw/ogM4cKGR0GQjTQuPOAF1/sdwTsOEFy9EgqoZ0njnnkf3/W9b3raYvAwtt41dU +63ZTGI0RmLo= +-----END CERTIFICATE----- + +# Issuer: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Subject: CN=HARICA TLS ECC Root CA 2021 O=Hellenic Academic and Research Institutions CA +# Label: "HARICA TLS ECC Root CA 2021" +# Serial: 137515985548005187474074462014555733966 +# MD5 Fingerprint: ae:f7:4c:e5:66:35:d1:b7:9b:8c:22:93:74:d3:4b:b0 +# SHA1 Fingerprint: bc:b0:c1:9d:e9:98:92:70:19:38:57:e9:8d:a7:b4:5d:6e:ee:01:48 +# SHA256 Fingerprint: 3f:99:cc:47:4a:cf:ce:4d:fe:d5:87:94:66:5e:47:8d:15:47:73:9f:2e:78:0f:1b:b4:ca:9b:13:30:97:d4:01 +-----BEGIN CERTIFICATE----- +MIICVDCCAdugAwIBAgIQZ3SdjXfYO2rbIvT/WeK/zjAKBggqhkjOPQQDAzBsMQsw +CQYDVQQGEwJHUjE3MDUGA1UECgwuSGVsbGVuaWMgQWNhZGVtaWMgYW5kIFJlc2Vh +cmNoIEluc3RpdHV0aW9ucyBDQTEkMCIGA1UEAwwbSEFSSUNBIFRMUyBFQ0MgUm9v +dCBDQSAyMDIxMB4XDTIxMDIxOTExMDExMFoXDTQ1MDIxMzExMDEwOVowbDELMAkG +A1UEBhMCR1IxNzA1BgNVBAoMLkhlbGxlbmljIEFjYWRlbWljIGFuZCBSZXNlYXJj +aCBJbnN0aXR1dGlvbnMgQ0ExJDAiBgNVBAMMG0hBUklDQSBUTFMgRUNDIFJvb3Qg +Q0EgMjAyMTB2MBAGByqGSM49AgEGBSuBBAAiA2IABDgI/rGgltJ6rK9JOtDA4MM7 +KKrxcm1lAEeIhPyaJmuqS7psBAqIXhfyVYf8MLA04jRYVxqEU+kw2anylnTDUR9Y +STHMmE5gEYd103KUkE+bECUqqHgtvpBBWJAVcqeht6NCMEAwDwYDVR0TAQH/BAUw +AwEB/zAdBgNVHQ4EFgQUyRtTgRL+BNUW0aq8mm+3oJUZbsowDgYDVR0PAQH/BAQD +AgGGMAoGCCqGSM49BAMDA2cAMGQCMBHervjcToiwqfAircJRQO9gcS3ujwLEXQNw +SaSS6sUUiHCm0w2wqsosQJz76YJumgIwK0eaB8bRwoF8yguWGEEbo/QwCZ61IygN +nxS2PFOiTAZpffpskcYqSUXm7LcT4Tps +-----END CERTIFICATE----- diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/core.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/core.py new file mode 100644 index 0000000..f8d4313 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/certifi/core.py @@ -0,0 +1,76 @@ +# -*- coding: utf-8 -*- + +""" +certifi.py +~~~~~~~~~~ + +This module returns the installation location of cacert.pem or its contents. +""" +import os + + +class _PipPatchedCertificate(Exception): + pass + + +DEBIAN_CA_CERTS_PATH = '/etc/ssl/certs/ca-certificates.crt' + +try: + # Return a certificate file on disk for a standalone pip zipapp running in + # an isolated build environment to use. Passing --cert to the standalone + # pip does not work since requests calls where() unconditionally on import. + _PIP_STANDALONE_CERT = os.environ.get("_PIP_STANDALONE_CERT") + if _PIP_STANDALONE_CERT: + def where(): + return _PIP_STANDALONE_CERT + raise _PipPatchedCertificate() + + from importlib.resources import path as get_path, read_text + + _CACERT_CTX = None + _CACERT_PATH = None + + def where(): + # This is slightly terrible, but we want to delay extracting the file + # in cases where we're inside of a zipimport situation until someone + # actually calls where(), but we don't want to re-extract the file + # on every call of where(), so we'll do it once then store it in a + # global variable. + global _CACERT_CTX + global _CACERT_PATH + if _CACERT_PATH is None: + # This is slightly janky, the importlib.resources API wants you to + # manage the cleanup of this file, so it doesn't actually return a + # path, it returns a context manager that will give you the path + # when you enter it and will do any cleanup when you leave it. In + # the common case of not needing a temporary file, it will just + # return the file system location and the __exit__() is a no-op. + # + # We also have to hold onto the actual context manager, because + # it will do the cleanup whenever it gets garbage collected, so + # we will also store that at the global level as well. + _CACERT_PATH = DEBIAN_CA_CERTS_PATH + + return _CACERT_PATH + +except _PipPatchedCertificate: + pass + +except ImportError: + # This fallback will work for Python versions prior to 3.7 that lack the + # importlib.resources module but relies on the existing `where` function + # so won't address issues with environments like PyOxidizer that don't set + # __file__ on modules. + def read_text(_module, _path, encoding="ascii"): + with open(where(), "r", encoding=encoding) as data: + return data.read() + + # If we don't have importlib.resources, then we will just do the old logic + # of assuming we're on the filesystem and munge the path directly. + def where(): + return DEBIAN_CA_CERTS_PATH + + +def contents(): + with open(where(), "r", encoding="ascii") as data: + return data.read() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py new file mode 100644 index 0000000..80ad254 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__init__.py @@ -0,0 +1,83 @@ +######################## BEGIN LICENSE BLOCK ######################## +# This library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Lesser General Public +# License as published by the Free Software Foundation; either +# version 2.1 of the License, or (at your option) any later version. +# +# This library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Lesser General Public License for more details. +# +# You should have received a copy of the GNU Lesser General Public +# License along with this library; if not, write to the Free Software +# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA +# 02110-1301 USA +######################### END LICENSE BLOCK ######################### + + +from .universaldetector import UniversalDetector +from .enums import InputState +from .version import __version__, VERSION + + +__all__ = ['UniversalDetector', 'detect', 'detect_all', '__version__', 'VERSION'] + + +def detect(byte_str): + """ + Detect the encoding of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError('Expected object of type bytes or bytearray, got: ' + '{}'.format(type(byte_str))) + else: + byte_str = bytearray(byte_str) + detector = UniversalDetector() + detector.feed(byte_str) + return detector.close() + + +def detect_all(byte_str): + """ + Detect all the possible encodings of the given byte string. + + :param byte_str: The byte sequence to examine. + :type byte_str: ``bytes`` or ``bytearray`` + """ + if not isinstance(byte_str, bytearray): + if not isinstance(byte_str, bytes): + raise TypeError('Expected object of type bytes or bytearray, got: ' + '{}'.format(type(byte_str))) + else: + byte_str = bytearray(byte_str) + + detector = UniversalDetector() + detector.feed(byte_str) + detector.close() + + if detector._input_state == InputState.HIGH_BYTE: + results = [] + for prober in detector._charset_probers: + if prober.get_confidence() > detector.MINIMUM_THRESHOLD: + charset_name = prober.charset_name + lower_charset_name = prober.charset_name.lower() + # Use Windows encoding name instead of ISO-8859 if we saw any + # extra Windows-specific bytes + if lower_charset_name.startswith('iso-8859'): + if detector._has_win_bytes: + charset_name = detector.ISO_WIN_MAP.get(lower_charset_name, + charset_name) + results.append({ + 'encoding': charset_name, + 'confidence': prober.get_confidence(), + 'language': prober.language, + }) + if len(results) > 0: + return sorted(results, key=lambda result: -result['confidence']) + + return [detector.result] diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb900118215f6b85e98c362f0bd8ae12585d3f61 GIT binary patch literal 1907 zcmd5-Pj4GV6yMo@UT>TlB0~v|f8B_B!jG?aa8T z!&*XwE8l>F4JVHM6nuxda_U#8gy6m1xJfv3V5NEU-pu>AGr#wSEiSqmd@s(wJo%%d zX@8<{{nJ7C1culJ5^5odwIOK{g1jEXVMv{(XQwEY&b+zF8s1dQm_f_fZ zy~oYQ(P7o%n3b}_+)TN}><4koP1xWTkS+$9f2fX&4`7JTfk-XWB)QPVdd}&4`w?h__PNPjugB!J_x+?= zR&FGsM92X0Q03Pe%F2VO@-cYW|nN<(FJV?Qd1C~h6;+XP!I+lHwe7sfrupUR9OL43A z{(E&1NxGQ^-P52)MLmtuIshgK8LxNy0f$(1-;a_=`hG1Pa~lG_jTl%3;+9-u5*U9w zh7Ger^8FjYL4y*E95@P?{{lD&pg~!>gN0L_M?Gz#gIw9wzPmdyGGn?p!~LaGleaQs zaBE^Boi5L`iIrK?l~A7%eh37b`i-^f5a_h1a}gvKuh!u4rQu4noM z2~F@B$u~2-sLQbQv);s58$AMGcFtd12QySt4&amt5q07#WCLLSH_+w|+{w8U3ATCf z-UlC54du)WP`O=}oJ1j(k#gc7>5Tv*FG2riZ@@l*{hkN4EFkB}Es`YC4} z=$dM&2g0>eSUG4MHV&Q~_{aN?_nP}hU+t>O+$ITzR9P`Qqg=TVfJ<=}$-Y|h`+@M! zqQo!CexcDk^1o>u`UjsrR0af4c95n}a(o^0F=Co1TQCmYhHt=1)#fWOajZC1Dh^O6 zyGW70i>s@7)YsW#CjUBOjy1RmLu>=NQMfu5ZbipJULsh=E)=svbSP_6*I~sZ&R_Zu z6>FI|dhX}2>Z+B|{OOsuqoQqDG#L#=akQn&m*?tDQ6(QA8Q;$vMegicqS(#&B_M_@ W9L018u_f?ME2|X(2^fx1S^Wp0QUSF9 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/big5freq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d17c397c5fd309dc20c1e22ce199c141f22afd47 GIT binary patch literal 27186 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%0A+xss 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 NFTv9Q#vjm4`yXpX6mkFn literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/chardistribution.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb78082269cd6db0614a2729651cd3ef2c6351fc GIT binary patch literal 5747 zcmbtYOK%(36`nVT6h%=IEm3~Nv~1L7;YfbeF>p4aFH<<3rAm%3B{y&HaMW|J!raEd(bF`Z7=qmcOs!=l? zvt~I~E#}0yPp{gwxD&4>oJ6h9>Ek}5nymFZ{k4>nstq^;+-FwPwLxdFHslP|hMi$m znNx%%Vowzj^D>|5&N1R`5hp(G9V32(_=M;qzK{7);*+AE_0ta`7x+I?2?K(>2=&kv=YljIO;DIi2r=yOegpGVOUp!1!3jJN8-eJC{ zq%xtg@6w37NwIiHJ~IiW^bVl-e3oovFdpY$?yI=L&+LsJu`M`B*sY zmPr#gXt*oVd+au(@MPHM2Bqby=lYeV7ak9`HY(*()fHXpy0S!Cho&nUbuUcP`haFY zluxT!RK%Fl^S$7O8XCS=U3sC%Q>5yDrTL8DI%6`sg_AM{gP_)%ybV-CU#f$24DmLs0@HcR286_&1~LyqGIjy^*yUe{!Td_!re&(&?ct_f{hZ|Oo`H|50^dE_Hi z7}v?&T(zaQlt5@5WNw|0gPF~2HVSLpKBKM38bPO{xATU+lkSFO8 z8W11ape_jwO?K!5HVh5ua+~J+z|Gc@nxWZhicFbOhg9RghHj|MQ$3A})%#oldhgkE zi5RjBxx>2Z_fd=7f-I)W6zo;xG4!tM^8C&y`qV6_kx@=4+iDAIOtSL%mdYzkawM&J zL3+Watmn#&`btH3^|F^+F8O5EMm^_!O8#D{ujWK4Am<__@>a){!jb#)h57pr@4GWo zOH=OBoyFPWorQZdVXXLYan>y?NLV7YnfrLQnAakEs`8-iQoy030CwvS5g8#@Op^T! z)%rG}5!IXLds=Y6jD5D;m)DXcm@L8eSvQJ`9HtJ^4IvU9n=LFnoV#;iM~4MXII!9X zT(92PTwQZvANaiw)RKDhLT@eiFDhff?u9l~F$i1yY|S39<95nUCrybtWxDrWhy`3P z&k@Kf*4U7r7m)tcxd{Y8=jQkqqUJafMS$HAWw2m0hk;O>`7F);;vh+mVDoJ zBP+3O*qSu+rA;KoB_yFX$9ry~Q$xDFXm=;mkOV|pWTG);Tcf0`QS!|Q9j&aA!H6-Y zj4Hy+(vFZ^^RWWQdHZj)u>BJvoH5(a(b{vv7dl6>oTT0`u~Lyfg)gPYF2s35XKDOX zx_LvkX{%Y)(3)p^Z)h(czpy0EAM!HD6%aNK1cv=Pwkvzp>aP9R!LDN-zZhsdru!ud znyn<&w8aROiQRYUJDj{qjUA73jJ!rmcf3KqhxQBz>uaKw0f8csFT~J7W{k25 zE8U3?Ec*opzfXj*KU|&HV=sR|687-?BV@i0f(#>3?K^nN55ck$9Zg{CU!wme5eBV? zCVQaCDNOH(>EHp2JjLKN2)NfGaXdQnza;sD^4vA`Gil%MjI7Fv8ipUdmEHdz<;}7+4Wa<=^#=)qJu$v`W5rB+m zCn}@!3P+{9L6gEh-=nH3ddB7#Pz{C|GSg}Xv3c%@UA_U%F!!(Mj&KI|TAZ`DDy!Gt z66JZkk^`;}Ee<%8`3U8Hw2ln8KVSxxzR%SC$iK-ZqrBK zLf1u{+H_jYC%fI@=cGgXw;+E4`5NRK5Vj6yhWlWDMudGLZ+0p-=LmTRL*LmQj~r*u zXZ}w8KEeqJBBiGBC8H(DdvIoJj`y_Q8~6@D{4?E=?|^%)@8CH1(Sx^io*&_zZ{a*4 z*6$VP!__(5d*C^H-qZ77MoFI!W+orZUMT_XXLvs+ex!k@BJ7m_`rJQ>UL4HiIgmpV z!Pn@&Nra1fj~%=Lg0SR2Aq(Lk!4>i+!??Fu4xZrO8mXZlJC>-0JhCo%gwI75MsOMm z6RXSkH;{+8PIHMybq?)iDi1usshzVr5_%YWRPni=a{z}wB0sbm%a6Qrz#kFOseFdI vC2A38C<#|%ZM$s4R)W`u_WRN2&xbfB`S>QxoXBX=FKwjf)5H85$&CFE)S|C~ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetgroupprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f4d6d10f4fce95d6fb847794111ed6e92d32f38f GIT binary patch literal 2236 zcmZ`)OK)366rP#;@U>&7ZAf1fwdtaQiy)?|#6zM4lG5@JZbbqMOK9YHCXSsOUuWjJ zQp}B1sgb&Y9X}vhc2kMJb9abUS1j1Ef$z+9NK(SJ=gc|tJdf|3NgItC!}sgt>y5u> z8T*}tlb;XaQ#AVyh+>K-Y@4?^Ctf6C+iQEAJz&aH{ytN__MUoeUj?fy4qtL?iFr|f zWYYEiu(z6ZG7Y)0ve_}KI-_B2x>$7TqZ{e7--2k?=8Cn2ntjGLxDv|SueLqMtU0M?2 zy=k*=fyr3LbM{mWM9vlenameClU|R3`if|v7!LPZFmNX64102;pJdv+q!Z(?2<&*I zjUnTTNXq`OpGjHF$WAxwKh|90@4 zJBzp9YubLM-yLUxDV&-^= zUyV<${nxjPN9J}35Jw;Rn7l!LwqJo9`S?H_GWZw%mR`;V{yp}?+#b)lxsmhf9HJnD z9NPz;@;+b!D|Z?$3ZaXF-!dUiTr&=V6;pvwx;`)(mY6CH5b%qz41k$|5DQaxW2KR% zL95OYIZxyQ$eU<(4rJDu>+=ZxEEi8;`js{Z) z_2kAG+MYb_f0Z`#ILKTCnW|+jfiEHg{TLWBS7_cTaID4a82gCEuY#NjlB4aX5|IEx zjhtnF0wJdW5KDU^7dG1QaxvhxPW=Huame?)+_UqLz04cL1G6aso-_Tka z3Ud+NfB0SNp8RsH3}GlOl|j@4*M+TzYx0}V9Ux=BgkQA2n`taF<~1B(t`m91o!2n- z8Ja6jH3U>3tOEH*Tn&5#O8qP-@#0CyCzsC%IVpN7)Kp+7U!2Q-0YfgQ{LA=2z+E-P z;XIN&NEZ|ks=PhnvJWmE1PD*;!f<`(YVHj}`!>1jAW}Z0>Y?C_#t&+TY>(E{Oh7Ye zGr520BL_t8Z!xo+`v^0fEq&}jC9q#84|n6nIBfM^Jos%g|Kg9O-jDOd?l1MAtotU7 zTXtcXW(#F*PcA~l|2T0L?m~|1rE4il<_#h@h)^Lo5y>z~d%$!ND7`-J8OkPycSDGd zgEHkPL`BsVZMww8t?(WDO5i9}zDKk4oKnH`UGovDqcEOF2qS(8jYcVOK7Ny%X9Vwb zIVf{-hMpIy2Y6m;Qf{YeoDg4^a%bF0${AO@T|p}%6g#|3*=}hYnPmuGWmY$)?@U)G ziIgW`=xU=Yi(be5n929}ZBWKH`XiO{3w9wKU;MSeE Y;NRL&L?4$%d_twuQem%OtMhs9A6Td5CIA2c literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/charsetprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..63bc48a83986075763e0f21b63ee74a2e3dd3e34 GIT binary patch literal 3490 zcmai1TW=f372esKD4LQL`I5$Q+d<-{W)q1q45X;xICdpBF=D8OrJ?{`ceUIZl4~t@ z>Di%O3KVL|QF@=IR~^r0{AcV>AJWf@(7vomMUoZFo5%we{) zRJHK@ZU6iBf6iFe541S?xLDl8FaHvQumnr2X8C4KCT!s(cF$=#%=*?6uJB%1!jtZE zr|Ai{ZPoqP*kx_KW*Ftl^oP2erC(oN|EiJ1 zt?}~e`jsymd93AHKaBRmj?5eVxZen#$W&yi5y5*QwRz`K_e~Vm`$IA-PGcPeKPR7k z3_kPO3fn(F7qImSTSR9)d1y{CGx4fnqOC_1ADiN%JP_)RqJS2Qo40pvZ|vOJ`c{#S zS4Qe3pARSjzqi8^pIgkbz zj5gQazc8=uDBC-EGEu4ktI}7arfwV03a2$_AJ^-)r4(1e{)W7B+5YOhKKlG#=girR ztVh$xG80L4l7pVf$*(4!`S$TRn(yydW#UKxx3@YFVxISha~Vk;F2kyu{bYEKeXCqg*dzSi4 zc%ab^6dGndJ~c9BcJM1COqGwH-%BoJJ5D9nT_rIN`!eTQo0E6>wJBei^t)k8>T6u4 zog~h?d_u|jgK%yC)>`x7lsQgOxYAI^SsEtS_}r2c5W)xy*!YiUYybTFY+o-_ds0Eg z6RA*_Q1rM=a>*b3vD7eTpX%A^N(k={GzUQ1Qt>EEd5c`h2A!_vI^#$s9mXjSc`j94 zy7n|vB8S^a+(V5MQ*o^!FD=N|`A#>^d3%sXax4E1P%-&x^V}2fkf70X zKC}#Gy^#m3+Uh67pZZvNSX~l6Fz<;4pm=lS9XdeuCiXdduDUt0^P505NdmH`bpRAm zF%`i`KX4u|f%D#kQ!LInQU9vpzfkg~r+Q!Nfl70vRh0FI1pnP#Kx%il%x@(LLr6>% zJ5Z2yM{{+YE>mHX!ob5+aH^E1mdvtq3>r#l$~Y92r&6Z;`i&zjvxK{qgM z|6fJi>q!x#nM#IJ!&FxwJQ*|@=m`Icv z4*1^M-net;h_7FudTEYwQ<|j_V-sjVk+43Mx4U~6B{jWLcAdMsvl#tG(fy^U5ioeW zVaDq_>Ze2|>}>&19B*_*Xf1KaB{Ef?($`Ng)cx|dyF?s*oCZ4V6mDP1CxuH!6%{1I ziE#UP47aDT?grzVAxNaA@=mvXP9pu93yiJUD|W^9S%v0K&0ck?c7@r`TxZn*`syd5 z?--NHJAu{! literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/codingstatemachine.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb6e384a747d593258daa734a5a1b1fa9a737dc7 GIT binary patch literal 2909 zcmaJ@O^?$?7#`dC@Mg0qneP`HC@3CK)tjYRoChIDA6%1<9+h*Oyd#q-g?>)3#uV_CM z@i@uUwiQ;zGz>{p?OK%X6nb!=E&cL898?uRhLxyq<|4rGF>-Z1V znrzFB*X)%yXvq%De^i{km&+s@IfD!1;t!mq#c|!`hKTS<$%@;Y&y`MwdtC6HJxmz& zY^JhU@nNnpHWk_?@hlaZW7Gln_|Lg^U7prrwU==oFi-itrnUo%wng=h|&TZL@U+~T`Mkd-#o$sbO!s&R^5?kVLrsPRazNKk_s%H z+5CDX$?cW{+J16(>q!Z58)ry>X&i?V6&vxONi#df!AbvAjYPWa83#qaJiM+ZJ%}Rs zT%?KQ@RH)w9DKUYiI7G^Xr=jB7`~$va%O z5`@WNaPsHl1VI_Y196^N0jF6Knkb%xt3sVTjwLQqK`vDSk>Q+}OeRVulrJ!pP^`kW z<~a<5=1Dj@RORr6tPi%f9&J_1mJUBA?Eh&BAEigWKWU0Dr>T?pC_Rr(v+5|Pu`;=_GCT*i_NHzdZ)v=Fz}|#!nTHCE^5<`AS9sToMl?Ypq(vu+ zXIe)T01>=c^(p+KRAt3_Iq$-|Xr}pSgyLDOjgD*x5n}54RK!mON?CuJO#9JXWir=&VvE@7mlfD?T~zSibdMM&Sz@E;7U|YT z)9}h)+iQFKmruVCdex4Y)T%CeCKovQ3C6Nrk{F_Ivv=NRH_+srqV5Wr4)OfX(|C23 zr*{(QkEy$X=11Iy;6UNx3JOldCHK<{_t5=gbPm`qoPP;naEZP2(etdo8$9*(MTuTi zbMpb_ecUXn(+W3MyTs08^b__naQ!;wX&u7ofYsP;O*U@fs1AW%+Re>kJx+x&k)^ke zi=m=Z#Yj0=w96Gk6w_Q6>&^>{^>oZ`L)Y==WN|v_^VDrn)1>*DldACIqUEB|!4)kR zo(`-OkOIl6ShOjZ81_Ker@eXsWK8NY+x{*@K-9_>BlWAd}}F>xb( zwwXSM$FApy>I-;2$>kgp!et8H91#hF+eFsJG&P8Xd4_fb-+6fKfsyCT-|_P_oRu@(D1$WDI-L==}IO!1vDLw@SdF|tZ2 z{Us)TKP2Fv9@SMRIX+zm6>)FJ)4PiQFNM7B=b0m^jR`UiKVYl^C>l7 zpee$s&ZkP-J!kru;|?Q9Q)UriLm(lmdEtdH41=%}27b`-+?Vk_+1AF-mpa1{> literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7e0a826b1c41ab5deb4530b5045065e48db930e7 GIT binary patch literal 408 zcmYk1!AiqG5QaC&#wM}Flh9Y_!LC~Hq#`I@gi_Fpxs)_JZMIEz!|t{i-^iQ3&R#wB z6+AhK3J(1L%*Q{>vT86$2-e5z!}6UH^4Y@w@)2%OW{SoM_ezoyAZw5N8={9iNPSMz z04Rh@KRtjj?LoAT)0lgY1QQ=O0!V;%Decn3pL7)N@g|v${C$93duUJhqrMAFV_bg+ z+6X1*LN1jHX3yuXO)#|D^|n&vii7JT3AvivrUv6;3oo{t9pxgoE*2IvsxmHIG!|FF zj^2nqYM*TFt6+tyfMr6L*@DfQJJ>OP9=Bhj(Y@o6jj$SDOUZuj$^w+Xf-O(O6y%81G=~9tci2 zl_aAPrKnrd%IwIlbz3@_8@aXaNH1$d4N5)|?sD&ha8I~1JMwvBK-&Hv3Rksh^keICn+PBjEu-GZn2;lRX3^y6fd<^sHT`(tU+4-+H0qgV}u*;mC- zD2S|e_jk5;*r3n)UwXTr5=e1v*$Yc=gCa;oIf<-OazHud)`=h4!r?Y|PRNW#F6edL zpnIppAraQysBYCc<|z|w;&P#m32^JDAPh0|n9Qs*>nEYa*v6TG&0OQn2s|6d`J08KA`@YpDj5&M{Yg(8g4$HI**^$V3p~3`)!G#Hv5@t}=Bk7bAEt6Fdpb9#G)5^;WWQeVdT;TSLp;e^@*alOUMaNEbhVr7g~O~$f zV?V~RoJVTVDjz@uI+%&tz)SCes8$z~OoWs`jjPtz@D=R8X3rx~G=k%kfLeZ&T6T-p z5v19AJ*p+@%-PhMvrFUGmd(GmntRplY`B1HK30X}s66m$U?MWJzIv&et7-VJ<}JR# PS!(>72_6O%e;f8cvicLa literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/enums.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..194b2007e01ca769518d94a69367a992ce583324 GIT binary patch literal 2591 zcmb7GOK;mo5GEyxqUdMR99wh)G(ZHjQriGMxM^WMXq&N28KPV?x==KCEis`;WtVbb z0X-#urpMm;TX^kB=iK_9SxJ@?J8rtdj`rg&cV~8HzG1SlVJgsmnI4|~q$|pA2(C5_ zz%Fz#1VNRavae8;=3Xl_$JAH(UJh`cYJfF~^MDIf2dqo10WMMlupw~)aEY3LO^J2D zYjhp(y2M4g;VR|LDK~3TM3OU-4jHlH$wCX-Yy35GtWEG1(< zcC!1c!8J*s?Djl$Cfd{p`B%c=-d_Qk>x zqB;)8Rqvd|G~v~Sm#TOzqB6eVXo~^;4Mw4%XsVXiR6~`|ulWNP??M-kLA>7|y&~0n z1}*kVOk;(*(leRK^t!@|FkYhu_^Xs{w)}W7fk@d4qm=RKvk&zdM2>uqoXHmjdC8=& z{P8%tAZbE;xl_M?vh-~91>CCMHD#4OCYkl zjRV`UT+4IqqvMvnXIsteqvf-1r`EK)cH617GUG|@xP~h;{jlA!YED*k+K$(Fa+u|7 ztyWfCyp-kP(aPuZ(I%dUy4-;-?tzd_(ZDf_pP_E6a>X_GEYpSK08(Q8m?x)UJeViN z{)b-hWm1gcb#^Tgcpi3NT_GgGjn`FbT3xHrwVnOU*lV9SP0#LTy3_7@N7ju-e*)VQ z+>EGLBc~|<}j8DAYD~Bri2WgvYO?CNL&dcOq=ZPfTbR+ z^i~^ui^n5vY5D1c>lakH{)SUFZ;WTdvG!|S`v)sCPMnr~XtkbZ`r_X>Zo82EFt-*& zz7Qh@%uM;irM~Yd${)bQ*QgmL`jT`pzjL`wRn7)5@m9mT+=VVa194kq%&8ad+Q{xS zmi}zaZ}ejN>+J!ts*I~EB$tE>C5}Y`VuQn6 zCyGBnIOWof{we|GSbM=V;1y Nal5p=1-*1{>tCSac&7jW literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/escprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..39f7007c914553366a607da998cd3b91a0f4a6b2 GIT binary patch literal 2638 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euckrfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a48952a5995a9ce90e3bbe201dd2f9590067aade GIT binary patch literal 12070 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 T_#TI;@jnwh4S)gx-Ln4yI6@XQ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fb5d5d1e8caee8b70a1abd76deb161579d72fa96 GIT binary patch literal 27190 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/euctwprober.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ce6ac20dcedfc8d3d9cc90f4b30c6bdd7d727a84 GIT binary patch literal 1145 zcmZ`(OK;Oa5Z?7GZg3xjQh_+ZiAXdC6>$OtBozlpsg$BhzN{SYwy{{-VRzFiQE#c# zzfq1o@>{t1%87GtoS1P^H5KYgJD%CG=ka~BE|!<;1lG^Vr-NS}A-~aBTn-rTVCxPD zPB@h$qYoisdaAsAe0!}I8(5hYrH9eXYGWX`{>~W z0@I!5Qt9f^P$&fykkV%?%~Qje!hp)fv!$ehgy~EnCFOm-fCGyWh>1|8tArNjf|iaJ z@&KMoj3qMGnz0M=Hwy2l7H(RY&p-lU8 zbF1~@d8kt(HivQYEj|=F9HzsN9f_P5DolVsE=(v!i8&rtEVhPYv)|4`!_HVbBc_(ASt@uU!-vN4-3jTbJPUASuY%C(Bxg;ASLp9fJij3SO^6?&nXYc~AX UvlibXnHv8y!J`01AfW5kKSDwlq5uE@ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/gb2312freq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6e7bc794a2b9b046a0a676d4541edced1788ff13 GIT binary patch literal 19114 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jisfreq.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..70cd846c397cf0bd02b3c7c45d17e466b83e0a11 GIT binary patch literal 22142 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 Rm?*!ukBVI=cC7d@{|E26+gbns literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/jpcntx.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..03eb20d506575a0385b61edb9fe588167844c13f GIT binary patch literal 37649 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 Od;0Y6p1$zd)Bgj(^(;03 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langbulgarianmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04e96d639364c0b202c5c9711e84ebdd426f7caf GIT binary patch literal 47930 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%0A9A_iBW?)zm>UW{;f8@v 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 UGXyd~Vunb}5Zh>msJrq105zuMDF6Tf literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langhebrewmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..fff31d61232230d8355084a6d3e54b79ced8f1cf GIT binary patch literal 44569 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 T41o-go*~jR#9uT+G+q0Ds;hW* literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/chardet/__pycache__/langrussianmodel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..a5a5338e95440dad85e7afc913fb4d29af69f944 GIT binary patch literal 61023 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

qBej$DPZd8^KUF*>@1wP6>dzLRtv^?M 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 ImH*cN2QHJMzyJUM literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py new file mode 100644 index 0000000..bb548cd --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/editable_legacy.py @@ -0,0 +1,47 @@ +"""Legacy editable installation process, i.e. `setup.py develop`. +""" +import logging +from typing import List, Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.utils.logging import indent_log +from pip._internal.utils.setuptools_build import make_setuptools_develop_args +from pip._internal.utils.subprocess import call_subprocess + +logger = logging.getLogger(__name__) + + +def install_editable( + install_options: List[str], + global_options: Sequence[str], + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, + name: str, + setup_py_path: str, + isolated: bool, + build_env: BuildEnvironment, + unpacked_source_directory: str, +) -> None: + """Install a package in editable mode. Most arguments are pass-through + to setuptools. + """ + logger.info("Running setup.py develop for %s", name) + + args = make_setuptools_develop_args( + setup_py_path, + global_options=global_options, + install_options=install_options, + no_user_config=isolated, + prefix=prefix, + home=home, + use_user_site=use_user_site, + ) + + with indent_log(): + with build_env: + call_subprocess( + args, + command_desc="python setup.py develop", + cwd=unpacked_source_directory, + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py new file mode 100644 index 0000000..5b7ef90 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/legacy.py @@ -0,0 +1,120 @@ +"""Legacy installation process, i.e. `setup.py install`. +""" + +import logging +import os +from distutils.util import change_root +from typing import List, Optional, Sequence + +from pip._internal.build_env import BuildEnvironment +from pip._internal.exceptions import InstallationError, LegacyInstallFailure +from pip._internal.models.scheme import Scheme +from pip._internal.utils.misc import ensure_dir +from pip._internal.utils.setuptools_build import make_setuptools_install_args +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +def write_installed_files_from_setuptools_record( + record_lines: List[str], + root: Optional[str], + req_description: str, +) -> None: + def prepend_root(path: str) -> str: + if root is None or not os.path.isabs(path): + return path + else: + return change_root(root, path) + + for line in record_lines: + directory = os.path.dirname(line) + if directory.endswith(".egg-info"): + egg_info_dir = prepend_root(directory) + break + else: + message = ( + "{} did not indicate that it installed an " + ".egg-info directory. Only setup.py projects " + "generating .egg-info directories are supported." + ).format(req_description) + raise InstallationError(message) + + new_lines = [] + for line in record_lines: + filename = line.strip() + if os.path.isdir(filename): + filename += os.path.sep + new_lines.append(os.path.relpath(prepend_root(filename), egg_info_dir)) + new_lines.sort() + ensure_dir(egg_info_dir) + inst_files_path = os.path.join(egg_info_dir, "installed-files.txt") + with open(inst_files_path, "w") as f: + f.write("\n".join(new_lines) + "\n") + + +def install( + install_options: List[str], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + use_user_site: bool, + pycompile: bool, + scheme: Scheme, + setup_py_path: str, + isolated: bool, + req_name: str, + build_env: BuildEnvironment, + unpacked_source_directory: str, + req_description: str, +) -> bool: + + header_dir = scheme.headers + + with TempDirectory(kind="record") as temp_dir: + try: + record_filename = os.path.join(temp_dir.path, "install-record.txt") + install_args = make_setuptools_install_args( + setup_py_path, + global_options=global_options, + install_options=install_options, + record_filename=record_filename, + root=root, + prefix=prefix, + header_dir=header_dir, + home=home, + use_user_site=use_user_site, + no_user_config=isolated, + pycompile=pycompile, + ) + + runner = runner_with_spinner_message( + f"Running setup.py install for {req_name}" + ) + with build_env: + runner( + cmd=install_args, + cwd=unpacked_source_directory, + ) + + if not os.path.exists(record_filename): + logger.debug("Record file %s not found", record_filename) + # Signal to the caller that we didn't install the new package + return False + + except Exception as e: + # Signal to the caller that we didn't install the new package + raise LegacyInstallFailure(package_details=req_name) from e + + # At this point, we have successfully installed the requirement. + + # We intentionally do not use any encoding to read the file because + # setuptools writes the file using distutils.file_util.write_file, + # which does not specify an encoding. + with open(record_filename) as f: + record_lines = f.read().splitlines() + + write_installed_files_from_setuptools_record(record_lines, root, req_description) + return True diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py new file mode 100644 index 0000000..e191b13 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py @@ -0,0 +1,738 @@ +"""Support for installing and building the "wheel" binary package format. +""" + +import collections +import compileall +import contextlib +import csv +import importlib +import logging +import os.path +import re +import shutil +import sys +import warnings +from base64 import urlsafe_b64encode +from email.message import Message +from itertools import chain, filterfalse, starmap +from typing import ( + IO, + TYPE_CHECKING, + Any, + BinaryIO, + Callable, + Dict, + Iterable, + Iterator, + List, + NewType, + Optional, + Sequence, + Set, + Tuple, + Union, + cast, +) +from zipfile import ZipFile, ZipInfo + +from pip._vendor.distlib.scripts import ScriptMaker +from pip._vendor.distlib.util import get_export_entry +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.locations import get_major_minor_version +from pip._internal.metadata import ( + BaseDistribution, + FilesystemWheel, + get_wheel_distribution, +) +from pip._internal.models.direct_url import DIRECT_URL_METADATA_NAME, DirectUrl +from pip._internal.models.scheme import SCHEME_KEYS, Scheme +from pip._internal.utils.filesystem import adjacent_tmp_file, replace +from pip._internal.utils.misc import captured_stdout, ensure_dir, hash_file, partition +from pip._internal.utils.unpacking import ( + current_umask, + is_within_directory, + set_extracted_file_to_default_mode_plus_executable, + zip_item_is_executable, +) +from pip._internal.utils.wheel import parse_wheel + +if TYPE_CHECKING: + from typing import Protocol + + class File(Protocol): + src_record_path: "RecordPath" + dest_path: str + changed: bool + + def save(self) -> None: + pass + + +logger = logging.getLogger(__name__) + +RecordPath = NewType("RecordPath", str) +InstalledCSVRow = Tuple[RecordPath, str, Union[int, str]] + + +def rehash(path: str, blocksize: int = 1 << 20) -> Tuple[str, str]: + """Return (encoded_digest, length) for path using hashlib.sha256()""" + h, length = hash_file(path, blocksize) + digest = "sha256=" + urlsafe_b64encode(h.digest()).decode("latin1").rstrip("=") + return (digest, str(length)) + + +def csv_io_kwargs(mode: str) -> Dict[str, Any]: + """Return keyword arguments to properly open a CSV file + in the given mode. + """ + return {"mode": mode, "newline": "", "encoding": "utf-8"} + + +def fix_script(path: str) -> bool: + """Replace #!python with #!/path/to/python + Return True if file was changed. + """ + # XXX RECORD hashes will need to be updated + assert os.path.isfile(path) + + with open(path, "rb") as script: + firstline = script.readline() + if not firstline.startswith(b"#!python"): + return False + exename = sys.executable.encode(sys.getfilesystemencoding()) + firstline = b"#!" + exename + os.linesep.encode("ascii") + rest = script.read() + with open(path, "wb") as script: + script.write(firstline) + script.write(rest) + return True + + +def wheel_root_is_purelib(metadata: Message) -> bool: + return metadata.get("Root-Is-Purelib", "").lower() == "true" + + +def get_entrypoints(dist: BaseDistribution) -> Tuple[Dict[str, str], Dict[str, str]]: + console_scripts = {} + gui_scripts = {} + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + console_scripts[entry_point.name] = entry_point.value + elif entry_point.group == "gui_scripts": + gui_scripts[entry_point.name] = entry_point.value + return console_scripts, gui_scripts + + +def message_about_scripts_not_on_PATH(scripts: Sequence[str]) -> Optional[str]: + """Determine if any scripts are not on PATH and format a warning. + Returns a warning message if one or more scripts are not on PATH, + otherwise None. + """ + if not scripts: + return None + + # Group scripts by the path they were installed in + grouped_by_dir: Dict[str, Set[str]] = collections.defaultdict(set) + for destfile in scripts: + parent_dir = os.path.dirname(destfile) + script_name = os.path.basename(destfile) + grouped_by_dir[parent_dir].add(script_name) + + # We don't want to warn for directories that are on PATH. + not_warn_dirs = [ + os.path.normcase(i).rstrip(os.sep) + for i in os.environ.get("PATH", "").split(os.pathsep) + ] + # If an executable sits with sys.executable, we don't warn for it. + # This covers the case of venv invocations without activating the venv. + not_warn_dirs.append(os.path.normcase(os.path.dirname(sys.executable))) + warn_for: Dict[str, Set[str]] = { + parent_dir: scripts + for parent_dir, scripts in grouped_by_dir.items() + if os.path.normcase(parent_dir) not in not_warn_dirs + } + if not warn_for: + return None + + # Format a message + msg_lines = [] + for parent_dir, dir_scripts in warn_for.items(): + sorted_scripts: List[str] = sorted(dir_scripts) + if len(sorted_scripts) == 1: + start_text = "script {} is".format(sorted_scripts[0]) + else: + start_text = "scripts {} are".format( + ", ".join(sorted_scripts[:-1]) + " and " + sorted_scripts[-1] + ) + + msg_lines.append( + "The {} installed in '{}' which is not on PATH.".format( + start_text, parent_dir + ) + ) + + last_line_fmt = ( + "Consider adding {} to PATH or, if you prefer " + "to suppress this warning, use --no-warn-script-location." + ) + if len(msg_lines) == 1: + msg_lines.append(last_line_fmt.format("this directory")) + else: + msg_lines.append(last_line_fmt.format("these directories")) + + # Add a note if any directory starts with ~ + warn_for_tilde = any( + i[0] == "~" for i in os.environ.get("PATH", "").split(os.pathsep) if i + ) + if warn_for_tilde: + tilde_warning_msg = ( + "NOTE: The current PATH contains path(s) starting with `~`, " + "which may not be expanded by all applications." + ) + msg_lines.append(tilde_warning_msg) + + # Returns the formatted multiline message + return "\n".join(msg_lines) + + +def _normalized_outrows( + outrows: Iterable[InstalledCSVRow], +) -> List[Tuple[str, str, str]]: + """Normalize the given rows of a RECORD file. + + Items in each row are converted into str. Rows are then sorted to make + the value more predictable for tests. + + Each row is a 3-tuple (path, hash, size) and corresponds to a record of + a RECORD file (see PEP 376 and PEP 427 for details). For the rows + passed to this function, the size can be an integer as an int or string, + or the empty string. + """ + # Normally, there should only be one row per path, in which case the + # second and third elements don't come into play when sorting. + # However, in cases in the wild where a path might happen to occur twice, + # we don't want the sort operation to trigger an error (but still want + # determinism). Since the third element can be an int or string, we + # coerce each element to a string to avoid a TypeError in this case. + # For additional background, see-- + # https://github.com/pypa/pip/issues/5868 + return sorted( + (record_path, hash_, str(size)) for record_path, hash_, size in outrows + ) + + +def _record_to_fs_path(record_path: RecordPath) -> str: + return record_path + + +def _fs_to_record_path(path: str, relative_to: Optional[str] = None) -> RecordPath: + if relative_to is not None: + # On Windows, do not handle relative paths if they belong to different + # logical disks + if ( + os.path.splitdrive(path)[0].lower() + == os.path.splitdrive(relative_to)[0].lower() + ): + path = os.path.relpath(path, relative_to) + path = path.replace(os.path.sep, "/") + return cast("RecordPath", path) + + +def get_csv_rows_for_installed( + old_csv_rows: List[List[str]], + installed: Dict[RecordPath, RecordPath], + changed: Set[RecordPath], + generated: List[str], + lib_dir: str, +) -> List[InstalledCSVRow]: + """ + :param installed: A map from archive RECORD path to installation RECORD + path. + """ + installed_rows: List[InstalledCSVRow] = [] + for row in old_csv_rows: + if len(row) > 3: + logger.warning("RECORD line has more than three elements: %s", row) + old_record_path = cast("RecordPath", row[0]) + new_record_path = installed.pop(old_record_path, old_record_path) + if new_record_path in changed: + digest, length = rehash(_record_to_fs_path(new_record_path)) + else: + digest = row[1] if len(row) > 1 else "" + length = row[2] if len(row) > 2 else "" + installed_rows.append((new_record_path, digest, length)) + for f in generated: + path = _fs_to_record_path(f, lib_dir) + digest, length = rehash(f) + installed_rows.append((path, digest, length)) + for installed_record_path in installed.values(): + installed_rows.append((installed_record_path, "", "")) + return installed_rows + + +def get_console_script_specs(console: Dict[str, str]) -> List[str]: + """ + Given the mapping from entrypoint name to callable, return the relevant + console script specs. + """ + # Don't mutate caller's version + console = console.copy() + + scripts_to_generate = [] + + # Special case pip and setuptools to generate versioned wrappers + # + # The issue is that some projects (specifically, pip and setuptools) use + # code in setup.py to create "versioned" entry points - pip2.7 on Python + # 2.7, pip3.3 on Python 3.3, etc. But these entry points are baked into + # the wheel metadata at build time, and so if the wheel is installed with + # a *different* version of Python the entry points will be wrong. The + # correct fix for this is to enhance the metadata to be able to describe + # such versioned entry points, but that won't happen till Metadata 2.0 is + # available. + # In the meantime, projects using versioned entry points will either have + # incorrect versioned entry points, or they will not be able to distribute + # "universal" wheels (i.e., they will need a wheel per Python version). + # + # Because setuptools and pip are bundled with _ensurepip and virtualenv, + # we need to use universal wheels. So, as a stopgap until Metadata 2.0, we + # override the versioned entry points in the wheel and generate the + # correct ones. This code is purely a short-term measure until Metadata 2.0 + # is available. + # + # To add the level of hack in this section of code, in order to support + # ensurepip this code will look for an ``ENSUREPIP_OPTIONS`` environment + # variable which will control which version scripts get installed. + # + # ENSUREPIP_OPTIONS=altinstall + # - Only pipX.Y and easy_install-X.Y will be generated and installed + # ENSUREPIP_OPTIONS=install + # - pipX.Y, pipX, easy_install-X.Y will be generated and installed. Note + # that this option is technically if ENSUREPIP_OPTIONS is set and is + # not altinstall + # DEFAULT + # - The default behavior is to install pip, pipX, pipX.Y, easy_install + # and easy_install-X.Y. + pip_script = console.pop("pip", None) + if pip_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("pip = " + pip_script) + + if os.environ.get("ENSUREPIP_OPTIONS", "") != "altinstall": + scripts_to_generate.append( + "pip{} = {}".format(sys.version_info[0], pip_script) + ) + + scripts_to_generate.append(f"pip{get_major_minor_version()} = {pip_script}") + # Delete any other versioned pip entry points + pip_ep = [k for k in console if re.match(r"pip(\d(\.\d)?)?$", k)] + for k in pip_ep: + del console[k] + easy_install_script = console.pop("easy_install", None) + if easy_install_script: + if "ENSUREPIP_OPTIONS" not in os.environ: + scripts_to_generate.append("easy_install = " + easy_install_script) + + scripts_to_generate.append( + "easy_install-{} = {}".format( + get_major_minor_version(), easy_install_script + ) + ) + # Delete any other versioned easy_install entry points + easy_install_ep = [ + k for k in console if re.match(r"easy_install(-\d\.\d)?$", k) + ] + for k in easy_install_ep: + del console[k] + + # Generate the console entry points specified in the wheel + scripts_to_generate.extend(starmap("{} = {}".format, console.items())) + + return scripts_to_generate + + +class ZipBackedFile: + def __init__( + self, src_record_path: RecordPath, dest_path: str, zip_file: ZipFile + ) -> None: + self.src_record_path = src_record_path + self.dest_path = dest_path + self._zip_file = zip_file + self.changed = False + + def _getinfo(self) -> ZipInfo: + return self._zip_file.getinfo(self.src_record_path) + + def save(self) -> None: + # directory creation is lazy and after file filtering + # to ensure we don't install empty dirs; empty dirs can't be + # uninstalled. + parent_dir = os.path.dirname(self.dest_path) + ensure_dir(parent_dir) + + # When we open the output file below, any existing file is truncated + # before we start writing the new contents. This is fine in most + # cases, but can cause a segfault if pip has loaded a shared + # object (e.g. from pyopenssl through its vendored urllib3) + # Since the shared object is mmap'd an attempt to call a + # symbol in it will then cause a segfault. Unlinking the file + # allows writing of new contents while allowing the process to + # continue to use the old copy. + if os.path.exists(self.dest_path): + os.unlink(self.dest_path) + + zipinfo = self._getinfo() + + with self._zip_file.open(zipinfo) as f: + with open(self.dest_path, "wb") as dest: + shutil.copyfileobj(f, dest) + + if zip_item_is_executable(zipinfo): + set_extracted_file_to_default_mode_plus_executable(self.dest_path) + + +class ScriptFile: + def __init__(self, file: "File") -> None: + self._file = file + self.src_record_path = self._file.src_record_path + self.dest_path = self._file.dest_path + self.changed = False + + def save(self) -> None: + self._file.save() + self.changed = fix_script(self.dest_path) + + +class MissingCallableSuffix(InstallationError): + def __init__(self, entry_point: str) -> None: + super().__init__( + "Invalid script entry point: {} - A callable " + "suffix is required. Cf https://packaging.python.org/" + "specifications/entry-points/#use-for-scripts for more " + "information.".format(entry_point) + ) + + +def _raise_for_invalid_entrypoint(specification: str) -> None: + entry = get_export_entry(specification) + if entry is not None and entry.suffix is None: + raise MissingCallableSuffix(str(entry)) + + +class PipScriptMaker(ScriptMaker): + def make(self, specification: str, options: Dict[str, Any] = None) -> List[str]: + _raise_for_invalid_entrypoint(specification) + return super().make(specification, options) + + +def _install_wheel( + name: str, + wheel_zip: ZipFile, + wheel_path: str, + scheme: Scheme, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + """Install a wheel. + + :param name: Name of the project to install + :param wheel_zip: open ZipFile for wheel being installed + :param scheme: Distutils scheme dictating the install directories + :param req_description: String used in place of the requirement, for + logging + :param pycompile: Whether to byte-compile installed Python files + :param warn_script_location: Whether to check that scripts are installed + into a directory on PATH + :raises UnsupportedWheel: + * when the directory holds an unpacked wheel with incompatible + Wheel-Version + * when the .dist-info dir does not match the wheel + """ + info_dir, metadata = parse_wheel(wheel_zip, name) + + if wheel_root_is_purelib(metadata): + lib_dir = scheme.purelib + else: + lib_dir = scheme.platlib + + # Record details of the files moved + # installed = files copied from the wheel to the destination + # changed = files changed while installing (scripts #! line typically) + # generated = files newly generated during the install (script wrappers) + installed: Dict[RecordPath, RecordPath] = {} + changed: Set[RecordPath] = set() + generated: List[str] = [] + + def record_installed( + srcfile: RecordPath, destfile: str, modified: bool = False + ) -> None: + """Map archive RECORD paths to installation RECORD paths.""" + newpath = _fs_to_record_path(destfile, lib_dir) + installed[srcfile] = newpath + if modified: + changed.add(_fs_to_record_path(destfile)) + + def is_dir_path(path: RecordPath) -> bool: + return path.endswith("/") + + def assert_no_path_traversal(dest_dir_path: str, target_path: str) -> None: + if not is_within_directory(dest_dir_path, target_path): + message = ( + "The wheel {!r} has a file {!r} trying to install" + " outside the target directory {!r}" + ) + raise InstallationError( + message.format(wheel_path, target_path, dest_dir_path) + ) + + def root_scheme_file_maker( + zip_file: ZipFile, dest: str + ) -> Callable[[RecordPath], "File"]: + def make_root_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + dest_path = os.path.join(dest, normed_path) + assert_no_path_traversal(dest, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_root_scheme_file + + def data_scheme_file_maker( + zip_file: ZipFile, scheme: Scheme + ) -> Callable[[RecordPath], "File"]: + scheme_paths = {key: getattr(scheme, key) for key in SCHEME_KEYS} + + def make_data_scheme_file(record_path: RecordPath) -> "File": + normed_path = os.path.normpath(record_path) + try: + _, scheme_key, dest_subpath = normed_path.split(os.path.sep, 2) + except ValueError: + message = ( + "Unexpected file in {}: {!r}. .data directory contents" + " should be named like: '/'." + ).format(wheel_path, record_path) + raise InstallationError(message) + + try: + scheme_path = scheme_paths[scheme_key] + except KeyError: + valid_scheme_keys = ", ".join(sorted(scheme_paths)) + message = ( + "Unknown scheme key used in {}: {} (for file {!r}). .data" + " directory contents should be in subdirectories named" + " with a valid scheme key ({})" + ).format(wheel_path, scheme_key, record_path, valid_scheme_keys) + raise InstallationError(message) + + dest_path = os.path.join(scheme_path, dest_subpath) + assert_no_path_traversal(scheme_path, dest_path) + return ZipBackedFile(record_path, dest_path, zip_file) + + return make_data_scheme_file + + def is_data_scheme_path(path: RecordPath) -> bool: + return path.split("/", 1)[0].endswith(".data") + + paths = cast(List[RecordPath], wheel_zip.namelist()) + file_paths = filterfalse(is_dir_path, paths) + root_scheme_paths, data_scheme_paths = partition(is_data_scheme_path, file_paths) + + make_root_scheme_file = root_scheme_file_maker(wheel_zip, lib_dir) + files: Iterator[File] = map(make_root_scheme_file, root_scheme_paths) + + def is_script_scheme_path(path: RecordPath) -> bool: + parts = path.split("/", 2) + return len(parts) > 2 and parts[0].endswith(".data") and parts[1] == "scripts" + + other_scheme_paths, script_scheme_paths = partition( + is_script_scheme_path, data_scheme_paths + ) + + make_data_scheme_file = data_scheme_file_maker(wheel_zip, scheme) + other_scheme_files = map(make_data_scheme_file, other_scheme_paths) + files = chain(files, other_scheme_files) + + # Get the defined entry points + distribution = get_wheel_distribution( + FilesystemWheel(wheel_path), + canonicalize_name(name), + ) + console, gui = get_entrypoints(distribution) + + def is_entrypoint_wrapper(file: "File") -> bool: + # EP, EP.exe and EP-script.py are scripts generated for + # entry point EP by setuptools + path = file.dest_path + name = os.path.basename(path) + if name.lower().endswith(".exe"): + matchname = name[:-4] + elif name.lower().endswith("-script.py"): + matchname = name[:-10] + elif name.lower().endswith(".pya"): + matchname = name[:-4] + else: + matchname = name + # Ignore setuptools-generated scripts + return matchname in console or matchname in gui + + script_scheme_files: Iterator[File] = map( + make_data_scheme_file, script_scheme_paths + ) + script_scheme_files = filterfalse(is_entrypoint_wrapper, script_scheme_files) + script_scheme_files = map(ScriptFile, script_scheme_files) + files = chain(files, script_scheme_files) + + for file in files: + file.save() + record_installed(file.src_record_path, file.dest_path, file.changed) + + def pyc_source_file_paths() -> Iterator[str]: + # We de-duplicate installation paths, since there can be overlap (e.g. + # file in .data maps to same location as file in wheel root). + # Sorting installation paths makes it easier to reproduce and debug + # issues related to permissions on existing files. + for installed_path in sorted(set(installed.values())): + full_installed_path = os.path.join(lib_dir, installed_path) + if not os.path.isfile(full_installed_path): + continue + if not full_installed_path.endswith(".py"): + continue + yield full_installed_path + + def pyc_output_path(path: str) -> str: + """Return the path the pyc file would have been written to.""" + return importlib.util.cache_from_source(path) + + # Compile all of the pyc files for the installed files + if pycompile: + with captured_stdout() as stdout: + with warnings.catch_warnings(): + warnings.filterwarnings("ignore") + for path in pyc_source_file_paths(): + success = compileall.compile_file(path, force=True, quiet=True) + if success: + pyc_path = pyc_output_path(path) + assert os.path.exists(pyc_path) + pyc_record_path = cast( + "RecordPath", pyc_path.replace(os.path.sep, "/") + ) + record_installed(pyc_record_path, pyc_path) + logger.debug(stdout.getvalue()) + + maker = PipScriptMaker(None, scheme.scripts) + + # Ensure old scripts are overwritten. + # See https://github.com/pypa/pip/issues/1800 + maker.clobber = True + + # Ensure we don't generate any variants for scripts because this is almost + # never what somebody wants. + # See https://bitbucket.org/pypa/distlib/issue/35/ + maker.variants = {""} + + # This is required because otherwise distlib creates scripts that are not + # executable. + # See https://bitbucket.org/pypa/distlib/issue/32/ + maker.set_mode = True + + # Generate the console and GUI entry points specified in the wheel + scripts_to_generate = get_console_script_specs(console) + + gui_scripts_to_generate = list(starmap("{} = {}".format, gui.items())) + + generated_console_scripts = maker.make_multiple(scripts_to_generate) + generated.extend(generated_console_scripts) + + generated.extend(maker.make_multiple(gui_scripts_to_generate, {"gui": True})) + + if warn_script_location: + msg = message_about_scripts_not_on_PATH(generated_console_scripts) + if msg is not None: + logger.warning(msg) + + generated_file_mode = 0o666 & ~current_umask() + + @contextlib.contextmanager + def _generate_file(path: str, **kwargs: Any) -> Iterator[BinaryIO]: + with adjacent_tmp_file(path, **kwargs) as f: + yield f + os.chmod(f.name, generated_file_mode) + replace(f.name, path) + + dest_info_dir = os.path.join(lib_dir, info_dir) + + # Record pip as the installer + installer_path = os.path.join(dest_info_dir, "INSTALLER") + with _generate_file(installer_path) as installer_file: + installer_file.write(b"pip\n") + generated.append(installer_path) + + # Record the PEP 610 direct URL reference + if direct_url is not None: + direct_url_path = os.path.join(dest_info_dir, DIRECT_URL_METADATA_NAME) + with _generate_file(direct_url_path) as direct_url_file: + direct_url_file.write(direct_url.to_json().encode("utf-8")) + generated.append(direct_url_path) + + # Record the REQUESTED file + if requested: + requested_path = os.path.join(dest_info_dir, "REQUESTED") + with open(requested_path, "wb"): + pass + generated.append(requested_path) + + record_text = distribution.read_text("RECORD") + record_rows = list(csv.reader(record_text.splitlines())) + + rows = get_csv_rows_for_installed( + record_rows, + installed=installed, + changed=changed, + generated=generated, + lib_dir=lib_dir, + ) + + # Record details of all files installed + record_path = os.path.join(dest_info_dir, "RECORD") + + with _generate_file(record_path, **csv_io_kwargs("w")) as record_file: + # Explicitly cast to typing.IO[str] as a workaround for the mypy error: + # "writer" has incompatible type "BinaryIO"; expected "_Writer" + writer = csv.writer(cast("IO[str]", record_file)) + writer.writerows(_normalized_outrows(rows)) + + +@contextlib.contextmanager +def req_error_context(req_description: str) -> Iterator[None]: + try: + yield + except InstallationError as e: + message = "For req: {}. {}".format(req_description, e.args[0]) + raise InstallationError(message) from e + + +def install_wheel( + name: str, + wheel_path: str, + scheme: Scheme, + req_description: str, + pycompile: bool = True, + warn_script_location: bool = True, + direct_url: Optional[DirectUrl] = None, + requested: bool = False, +) -> None: + with ZipFile(wheel_path, allowZip64=True) as z: + with req_error_context(req_description): + _install_wheel( + name=name, + wheel_zip=z, + wheel_path=wheel_path, + scheme=scheme, + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=requested, + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/prepare.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/prepare.py new file mode 100644 index 0000000..a726f03 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/operations/prepare.py @@ -0,0 +1,642 @@ +"""Prepares a distribution for installation +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import mimetypes +import os +import shutil +from typing import Dict, Iterable, List, Optional + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.distributions import make_distribution_for_install_requirement +from pip._internal.distributions.installed import InstalledDistribution +from pip._internal.exceptions import ( + DirectoryUrlHashUnsupported, + HashMismatch, + HashUnpinned, + InstallationError, + NetworkConnectionError, + PreviousBuildDirError, + VcsHashUnsupported, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.network.download import BatchDownloader, Downloader +from pip._internal.network.lazy_wheel import ( + HTTPRangeRequestUnsupported, + dist_from_wheel_url, +) +from pip._internal.network.session import PipSession +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_tracker import RequirementTracker +from pip._internal.utils.filesystem import copy2_fixed +from pip._internal.utils.hashes import Hashes, MissingHashes +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import display_path, hide_url, is_installable_dir, rmtree +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.unpacking import unpack_file +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +def _get_prepared_distribution( + req: InstallRequirement, + req_tracker: RequirementTracker, + finder: PackageFinder, + build_isolation: bool, +) -> BaseDistribution: + """Prepare a distribution for installation.""" + abstract_dist = make_distribution_for_install_requirement(req) + with req_tracker.track(req): + abstract_dist.prepare_distribution_metadata(finder, build_isolation) + return abstract_dist.get_metadata_distribution() + + +def unpack_vcs_link(link: Link, location: str, verbosity: int) -> None: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend is not None + vcs_backend.unpack(location, url=hide_url(link.url), verbosity=verbosity) + + +class File: + def __init__(self, path: str, content_type: Optional[str]) -> None: + self.path = path + if content_type is None: + self.content_type = mimetypes.guess_type(path)[0] + else: + self.content_type = content_type + + +def get_http_url( + link: Link, + download: Downloader, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> File: + temp_dir = TempDirectory(kind="unpack", globally_managed=True) + # If a download dir is specified, is the file already downloaded there? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + content_type = None + else: + # let's download to a tmp dir + from_path, content_type = download(link, temp_dir.path) + if hashes: + hashes.check_against_path(from_path) + + return File(from_path, content_type) + + +def _copy2_ignoring_special_files(src: str, dest: str) -> None: + """Copying special files is not supported, but as a convenience to users + we skip errors copying them. This supports tools that may create e.g. + socket files in the project source directory. + """ + try: + copy2_fixed(src, dest) + except shutil.SpecialFileError as e: + # SpecialFileError may be raised due to either the source or + # destination. If the destination was the cause then we would actually + # care, but since the destination directory is deleted prior to + # copy we ignore all of them assuming it is caused by the source. + logger.warning( + "Ignoring special file error '%s' encountered copying %s to %s.", + str(e), + src, + dest, + ) + + +def _copy_source_tree(source: str, target: str) -> None: + target_abspath = os.path.abspath(target) + target_basename = os.path.basename(target_abspath) + target_dirname = os.path.dirname(target_abspath) + + def ignore(d: str, names: List[str]) -> List[str]: + skipped: List[str] = [] + if d == source: + # Pulling in those directories can potentially be very slow, + # exclude the following directories if they appear in the top + # level dir (and only it). + # See discussion at https://github.com/pypa/pip/pull/6770 + skipped += [".tox", ".nox"] + if os.path.abspath(d) == target_dirname: + # Prevent an infinite recursion if the target is in source. + # This can happen when TMPDIR is set to ${PWD}/... + # and we copy PWD to TMPDIR. + skipped += [target_basename] + return skipped + + shutil.copytree( + source, + target, + ignore=ignore, + symlinks=True, + copy_function=_copy2_ignoring_special_files, + ) + + +def get_file_url( + link: Link, download_dir: Optional[str] = None, hashes: Optional[Hashes] = None +) -> File: + """Get file and optionally check its hash.""" + # If a download dir is specified, is the file already there and valid? + already_downloaded_path = None + if download_dir: + already_downloaded_path = _check_download_dir(link, download_dir, hashes) + + if already_downloaded_path: + from_path = already_downloaded_path + else: + from_path = link.file_path + + # If --require-hashes is off, `hashes` is either empty, the + # link's embedded hash, or MissingHashes; it is required to + # match. If --require-hashes is on, we are satisfied by any + # hash in `hashes` matching: a URL-based or an option-based + # one; no internet-sourced hash will be in `hashes`. + if hashes: + hashes.check_against_path(from_path) + return File(from_path, None) + + +def unpack_url( + link: Link, + location: str, + download: Downloader, + verbosity: int, + download_dir: Optional[str] = None, + hashes: Optional[Hashes] = None, +) -> Optional[File]: + """Unpack link into location, downloading if required. + + :param hashes: A Hashes object, one of whose embedded hashes must match, + or HashMismatch will be raised. If the Hashes is empty, no matches are + required, and unhashable types of requirements (like VCS ones, which + would ordinarily raise HashUnsupported) are allowed. + """ + # non-editable vcs urls + if link.is_vcs: + unpack_vcs_link(link, location, verbosity=verbosity) + return None + + # Once out-of-tree-builds are no longer supported, could potentially + # replace the below condition with `assert not link.is_existing_dir` + # - unpack_url does not need to be called for in-tree-builds. + # + # As further cleanup, _copy_source_tree and accompanying tests can + # be removed. + # + # TODO when use-deprecated=out-of-tree-build is removed + if link.is_existing_dir(): + if os.path.isdir(location): + rmtree(location) + _copy_source_tree(link.file_path, location) + return None + + # file urls + if link.is_file: + file = get_file_url(link, download_dir, hashes=hashes) + + # http urls + else: + file = get_http_url( + link, + download, + download_dir, + hashes=hashes, + ) + + # unpack the archive to the build dir location. even when only downloading + # archives, they have to be unpacked to parse dependencies, except wheels + if not link.is_wheel: + unpack_file(file.path, location, file.content_type) + + return file + + +def _check_download_dir( + link: Link, download_dir: str, hashes: Optional[Hashes] +) -> Optional[str]: + """Check download_dir for previously downloaded file with correct hash + If a correct file is found return its path else None + """ + download_path = os.path.join(download_dir, link.filename) + + if not os.path.exists(download_path): + return None + + # If already downloaded, does its hash match? + logger.info("File was already downloaded %s", download_path) + if hashes: + try: + hashes.check_against_path(download_path) + except HashMismatch: + logger.warning( + "Previously-downloaded file %s has bad hash. Re-downloading.", + download_path, + ) + os.unlink(download_path) + return None + return download_path + + +class RequirementPreparer: + """Prepares a Requirement""" + + def __init__( + self, + build_dir: str, + download_dir: Optional[str], + src_dir: str, + build_isolation: bool, + req_tracker: RequirementTracker, + session: PipSession, + progress_bar: str, + finder: PackageFinder, + require_hashes: bool, + use_user_site: bool, + lazy_wheel: bool, + verbosity: int, + in_tree_build: bool, + ) -> None: + super().__init__() + + self.src_dir = src_dir + self.build_dir = build_dir + self.req_tracker = req_tracker + self._session = session + self._download = Downloader(session, progress_bar) + self._batch_download = BatchDownloader(session, progress_bar) + self.finder = finder + + # Where still-packed archives should be written to. If None, they are + # not saved, and are deleted immediately after unpacking. + self.download_dir = download_dir + + # Is build isolation allowed? + self.build_isolation = build_isolation + + # Should hash-checking be required? + self.require_hashes = require_hashes + + # Should install in user site-packages? + self.use_user_site = use_user_site + + # Should wheels be downloaded lazily? + self.use_lazy_wheel = lazy_wheel + + # How verbose should underlying tooling be? + self.verbosity = verbosity + + # Should in-tree builds be used for local paths? + self.in_tree_build = in_tree_build + + # Memoized downloaded files, as mapping of url: path. + self._downloaded: Dict[str, str] = {} + + # Previous "header" printed for a link-based InstallRequirement + self._previous_requirement_header = ("", "") + + def _log_preparing_link(self, req: InstallRequirement) -> None: + """Provide context for the requirement being prepared.""" + if req.link.is_file and not req.original_link_is_in_wheel_cache: + message = "Processing %s" + information = str(display_path(req.link.file_path)) + else: + message = "Collecting %s" + information = str(req.req or req) + + if (message, information) != self._previous_requirement_header: + self._previous_requirement_header = (message, information) + logger.info(message, information) + + if req.original_link_is_in_wheel_cache: + with indent_log(): + logger.info("Using cached %s", req.link.filename) + + def _ensure_link_req_src_dir( + self, req: InstallRequirement, parallel_builds: bool + ) -> None: + """Ensure source_dir of a linked InstallRequirement.""" + # Since source_dir is only set for editable requirements. + if req.link.is_wheel: + # We don't need to unpack wheels, so no need for a source + # directory. + return + assert req.source_dir is None + if req.link.is_existing_dir() and self.in_tree_build: + # build local directories in-tree + req.source_dir = req.link.file_path + return + + # We always delete unpacked sdists after pip runs. + req.ensure_has_source_dir( + self.build_dir, + autodelete=True, + parallel_builds=parallel_builds, + ) + + # If a checkout exists, it's unwise to keep going. version + # inconsistencies are logged later, but do not fail the + # installation. + # FIXME: this won't upgrade when there's an existing + # package unpacked in `req.source_dir` + # TODO: this check is now probably dead code + if is_installable_dir(req.source_dir): + raise PreviousBuildDirError( + "pip can't proceed with requirements '{}' due to a" + "pre-existing build directory ({}). This is likely " + "due to a previous installation that failed . pip is " + "being responsible and not assuming it can delete this. " + "Please delete it and try again.".format(req, req.source_dir) + ) + + def _get_linked_req_hashes(self, req: InstallRequirement) -> Hashes: + # By the time this is called, the requirement's link should have + # been checked so we can tell what kind of requirements req is + # and raise some more informative errors than otherwise. + # (For example, we can raise VcsHashUnsupported for a VCS URL + # rather than HashMissing.) + if not self.require_hashes: + return req.hashes(trust_internet=True) + + # We could check these first 2 conditions inside unpack_url + # and save repetition of conditions, but then we would + # report less-useful error messages for unhashable + # requirements, complaining that there's no hash provided. + if req.link.is_vcs: + raise VcsHashUnsupported() + if req.link.is_existing_dir(): + raise DirectoryUrlHashUnsupported() + + # Unpinned packages are asking for trouble when a new version + # is uploaded. This isn't a security check, but it saves users + # a surprising hash mismatch in the future. + # file:/// URLs aren't pinnable, so don't complain about them + # not being pinned. + if req.original_link is None and not req.is_pinned: + raise HashUnpinned() + + # If known-good hashes are missing for this requirement, + # shim it with a facade object that will provoke hash + # computation and then raise a HashMissing exception + # showing the user what the hash should be. + return req.hashes(trust_internet=False) or MissingHashes() + + def _fetch_metadata_using_lazy_wheel( + self, + link: Link, + ) -> Optional[BaseDistribution]: + """Fetch metadata using lazy wheel, if possible.""" + if not self.use_lazy_wheel: + return None + if self.require_hashes: + logger.debug("Lazy wheel is not used as hash checking is required") + return None + if link.is_file or not link.is_wheel: + logger.debug( + "Lazy wheel is not used as %r does not points to a remote wheel", + link, + ) + return None + + wheel = Wheel(link.filename) + name = canonicalize_name(wheel.name) + logger.info( + "Obtaining dependency information from %s %s", + name, + wheel.version, + ) + url = link.url.split("#", 1)[0] + try: + return dist_from_wheel_url(name, url, self._session) + except HTTPRangeRequestUnsupported: + logger.debug("%s does not support range requests", url) + return None + + def _complete_partial_requirements( + self, + partially_downloaded_reqs: Iterable[InstallRequirement], + parallel_builds: bool = False, + ) -> None: + """Download any requirements which were only fetched by metadata.""" + # Download to a temporary directory. These will be copied over as + # needed for downstream 'download', 'wheel', and 'install' commands. + temp_dir = TempDirectory(kind="unpack", globally_managed=True).path + + # Map each link to the requirement that owns it. This allows us to set + # `req.local_file_path` on the appropriate requirement after passing + # all the links at once into BatchDownloader. + links_to_fully_download: Dict[Link, InstallRequirement] = {} + for req in partially_downloaded_reqs: + assert req.link + links_to_fully_download[req.link] = req + + batch_download = self._batch_download( + links_to_fully_download.keys(), + temp_dir, + ) + for link, (filepath, _) in batch_download: + logger.debug("Downloading link %s to %s", link, filepath) + req = links_to_fully_download[link] + req.local_file_path = filepath + + # This step is necessary to ensure all lazy wheels are processed + # successfully by the 'download', 'wheel', and 'install' commands. + for req in partially_downloaded_reqs: + self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool = False + ) -> BaseDistribution: + """Prepare a requirement to be obtained from req.link.""" + assert req.link + link = req.link + self._log_preparing_link(req) + with indent_log(): + # Check if the relevant file is already available + # in the download directory + file_path = None + if self.download_dir is not None and link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + + if file_path is not None: + # The file is already available, so mark it as downloaded + self._downloaded[req.link.url] = file_path + else: + # The file is not available, attempt to fetch only metadata + wheel_dist = self._fetch_metadata_using_lazy_wheel(link) + if wheel_dist is not None: + req.needs_more_preparation = True + return wheel_dist + + # None of the optimizations worked, fully prepare the requirement + return self._prepare_linked_requirement(req, parallel_builds) + + def prepare_linked_requirements_more( + self, reqs: Iterable[InstallRequirement], parallel_builds: bool = False + ) -> None: + """Prepare linked requirements more, if needed.""" + reqs = [req for req in reqs if req.needs_more_preparation] + for req in reqs: + # Determine if any of these requirements were already downloaded. + if self.download_dir is not None and req.link.is_wheel: + hashes = self._get_linked_req_hashes(req) + file_path = _check_download_dir(req.link, self.download_dir, hashes) + if file_path is not None: + self._downloaded[req.link.url] = file_path + req.needs_more_preparation = False + + # Prepare requirements we found were already downloaded for some + # reason. The other downloads will be completed separately. + partially_downloaded_reqs: List[InstallRequirement] = [] + for req in reqs: + if req.needs_more_preparation: + partially_downloaded_reqs.append(req) + else: + self._prepare_linked_requirement(req, parallel_builds) + + # TODO: separate this part out from RequirementPreparer when the v1 + # resolver can be removed! + self._complete_partial_requirements( + partially_downloaded_reqs, + parallel_builds=parallel_builds, + ) + + def _prepare_linked_requirement( + self, req: InstallRequirement, parallel_builds: bool + ) -> BaseDistribution: + assert req.link + link = req.link + + self._ensure_link_req_src_dir(req, parallel_builds) + hashes = self._get_linked_req_hashes(req) + + if link.is_existing_dir() and self.in_tree_build: + local_file = None + elif link.url not in self._downloaded: + try: + local_file = unpack_url( + link, + req.source_dir, + self._download, + self.verbosity, + self.download_dir, + hashes, + ) + except NetworkConnectionError as exc: + raise InstallationError( + "Could not install requirement {} because of HTTP " + "error {} for URL {}".format(req, exc, link) + ) + else: + file_path = self._downloaded[link.url] + if hashes: + hashes.check_against_path(file_path) + local_file = File(file_path, content_type=None) + + # For use in later processing, + # preserve the file path on the requirement. + if local_file: + req.local_file_path = local_file.path + + dist = _get_prepared_distribution( + req, + self.req_tracker, + self.finder, + self.build_isolation, + ) + return dist + + def save_linked_requirement(self, req: InstallRequirement) -> None: + assert self.download_dir is not None + assert req.link is not None + link = req.link + if link.is_vcs or (link.is_existing_dir() and req.editable): + # Make a .zip of the source_dir we already created. + req.archive(self.download_dir) + return + + if link.is_existing_dir(): + logger.debug( + "Not copying link to destination directory " + "since it is a directory: %s", + link, + ) + return + if req.local_file_path is None: + # No distribution was downloaded for this requirement. + return + + download_location = os.path.join(self.download_dir, link.filename) + if not os.path.exists(download_location): + shutil.copy(req.local_file_path, download_location) + download_path = display_path(download_location) + logger.info("Saved %s", download_path) + + def prepare_editable_requirement( + self, + req: InstallRequirement, + ) -> BaseDistribution: + """Prepare an editable requirement.""" + assert req.editable, "cannot prepare a non-editable req as editable" + + logger.info("Obtaining %s", req) + + with indent_log(): + if self.require_hashes: + raise InstallationError( + "The editable requirement {} cannot be installed when " + "requiring hashes, because there is no single file to " + "hash.".format(req) + ) + req.ensure_has_source_dir(self.src_dir) + req.update_editable() + + dist = _get_prepared_distribution( + req, + self.req_tracker, + self.finder, + self.build_isolation, + ) + + req.check_if_exists(self.use_user_site) + + return dist + + def prepare_installed_requirement( + self, + req: InstallRequirement, + skip_reason: str, + ) -> BaseDistribution: + """Prepare an already-installed requirement.""" + assert req.satisfied_by, "req should have been satisfied but isn't" + assert skip_reason is not None, ( + "did not get skip reason skipped but req.satisfied_by " + "is set to {}".format(req.satisfied_by) + ) + logger.info( + "Requirement %s: %s (%s)", skip_reason, req, req.satisfied_by.version + ) + with indent_log(): + if self.require_hashes: + logger.debug( + "Since it is already installed, we are trusting this " + "package without checking its hash. To ensure a " + "completely repeatable environment, install into an " + "empty virtualenv." + ) + return InstalledDistribution(req).get_metadata_distribution() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/pyproject.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/pyproject.py new file mode 100644 index 0000000..e183eaf --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/pyproject.py @@ -0,0 +1,168 @@ +import os +from collections import namedtuple +from typing import Any, List, Optional + +from pip._vendor import tomli +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement + +from pip._internal.exceptions import ( + InstallationError, + InvalidPyProjectBuildRequires, + MissingPyProjectBuildRequires, +) + + +def _is_list_of_str(obj: Any) -> bool: + return isinstance(obj, list) and all(isinstance(item, str) for item in obj) + + +def make_pyproject_path(unpacked_source_directory: str) -> str: + return os.path.join(unpacked_source_directory, "pyproject.toml") + + +BuildSystemDetails = namedtuple( + "BuildSystemDetails", ["requires", "backend", "check", "backend_path"] +) + + +def load_pyproject_toml( + use_pep517: Optional[bool], pyproject_toml: str, setup_py: str, req_name: str +) -> Optional[BuildSystemDetails]: + """Load the pyproject.toml file. + + Parameters: + use_pep517 - Has the user requested PEP 517 processing? None + means the user hasn't explicitly specified. + pyproject_toml - Location of the project's pyproject.toml file + setup_py - Location of the project's setup.py file + req_name - The name of the requirement we're processing (for + error reporting) + + Returns: + None if we should use the legacy code path, otherwise a tuple + ( + requirements from pyproject.toml, + name of PEP 517 backend, + requirements we should check are installed after setting + up the build environment + directory paths to import the backend from (backend-path), + relative to the project root. + ) + """ + has_pyproject = os.path.isfile(pyproject_toml) + has_setup = os.path.isfile(setup_py) + + if not has_pyproject and not has_setup: + raise InstallationError( + f"{req_name} does not appear to be a Python project: " + f"neither 'setup.py' nor 'pyproject.toml' found." + ) + + if has_pyproject: + with open(pyproject_toml, encoding="utf-8") as f: + pp_toml = tomli.loads(f.read()) + build_system = pp_toml.get("build-system") + else: + build_system = None + + # The following cases must use PEP 517 + # We check for use_pep517 being non-None and falsey because that means + # the user explicitly requested --no-use-pep517. The value 0 as + # opposed to False can occur when the value is provided via an + # environment variable or config file option (due to the quirk of + # strtobool() returning an integer in pip's configuration code). + if has_pyproject and not has_setup: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project does not have a setup.py" + ) + use_pep517 = True + elif build_system and "build-backend" in build_system: + if use_pep517 is not None and not use_pep517: + raise InstallationError( + "Disabling PEP 517 processing is invalid: " + "project specifies a build backend of {} " + "in pyproject.toml".format(build_system["build-backend"]) + ) + use_pep517 = True + + # If we haven't worked out whether to use PEP 517 yet, + # and the user hasn't explicitly stated a preference, + # we do so if the project has a pyproject.toml file. + elif use_pep517 is None: + use_pep517 = has_pyproject + + # At this point, we know whether we're going to use PEP 517. + assert use_pep517 is not None + + # If we're using the legacy code path, there is nothing further + # for us to do here. + if not use_pep517: + return None + + if build_system is None: + # Either the user has a pyproject.toml with no build-system + # section, or the user has no pyproject.toml, but has opted in + # explicitly via --use-pep517. + # In the absence of any explicit backend specification, we + # assume the setuptools backend that most closely emulates the + # traditional direct setup.py execution, and require wheel and + # a version of setuptools that supports that backend. + + build_system = { + "requires": ["setuptools>=40.8.0", "wheel"], + "build-backend": "setuptools.build_meta:__legacy__", + } + + # If we're using PEP 517, we have build system information (either + # from pyproject.toml, or defaulted by the code above). + # Note that at this point, we do not know if the user has actually + # specified a backend, though. + assert build_system is not None + + # Ensure that the build-system section in pyproject.toml conforms + # to PEP 518. + + # Specifying the build-system table but not the requires key is invalid + if "requires" not in build_system: + raise MissingPyProjectBuildRequires(package=req_name) + + # Error out if requires is not a list of strings + requires = build_system["requires"] + if not _is_list_of_str(requires): + raise InvalidPyProjectBuildRequires( + package=req_name, + reason="It is not a list of strings.", + ) + + # Each requirement must be valid as per PEP 508 + for requirement in requires: + try: + Requirement(requirement) + except InvalidRequirement as error: + raise InvalidPyProjectBuildRequires( + package=req_name, + reason=f"It contains an invalid requirement: {requirement!r}", + ) from error + + backend = build_system.get("build-backend") + backend_path = build_system.get("backend-path", []) + check: List[str] = [] + if backend is None: + # If the user didn't specify a backend, we assume they want to use + # the setuptools backend. But we can't be sure they have included + # a version of setuptools which supplies the backend, or wheel + # (which is needed by the backend) in their requirements. So we + # make a note to check that those requirements are present once + # we have set up the environment. + # This is quite a lot of work to check for a very specific case. But + # the problem is, that case is potentially quite common - projects that + # adopted PEP 518 early for the ability to specify requirements to + # execute setup.py, but never considered needing to mention the build + # tools themselves. The original PEP 518 code had a similar check (but + # implemented in a different way). + backend = "setuptools.build_meta:__legacy__" + check = ["setuptools>=40.8.0", "wheel"] + + return BuildSystemDetails(requires, backend, check, backend_path) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__init__.py new file mode 100644 index 0000000..70dea27 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__init__.py @@ -0,0 +1,94 @@ +import collections +import logging +from typing import Iterator, List, Optional, Sequence, Tuple + +from pip._internal.utils.logging import indent_log + +from .req_file import parse_requirements +from .req_install import InstallRequirement +from .req_set import RequirementSet + +__all__ = [ + "RequirementSet", + "InstallRequirement", + "parse_requirements", + "install_given_reqs", +] + +logger = logging.getLogger(__name__) + + +class InstallationResult: + def __init__(self, name: str) -> None: + self.name = name + + def __repr__(self) -> str: + return f"InstallationResult(name={self.name!r})" + + +def _validate_requirements( + requirements: List[InstallRequirement], +) -> Iterator[Tuple[str, InstallRequirement]]: + for req in requirements: + assert req.name, f"invalid to-be-installed requirement: {req}" + yield req.name, req + + +def install_given_reqs( + requirements: List[InstallRequirement], + install_options: List[str], + global_options: Sequence[str], + root: Optional[str], + home: Optional[str], + prefix: Optional[str], + warn_script_location: bool, + use_user_site: bool, + pycompile: bool, +) -> List[InstallationResult]: + """ + Install everything in the given list. + + (to be called after having downloaded and unpacked the packages) + """ + to_install = collections.OrderedDict(_validate_requirements(requirements)) + + if to_install: + logger.info( + "Installing collected packages: %s", + ", ".join(to_install.keys()), + ) + + installed = [] + + with indent_log(): + for req_name, requirement in to_install.items(): + if requirement.should_reinstall: + logger.info("Attempting uninstall: %s", req_name) + with indent_log(): + uninstalled_pathset = requirement.uninstall(auto_confirm=True) + else: + uninstalled_pathset = None + + try: + requirement.install( + install_options, + global_options, + root=root, + home=home, + prefix=prefix, + warn_script_location=warn_script_location, + use_user_site=use_user_site, + pycompile=pycompile, + ) + except Exception: + # if install did not succeed, rollback previous uninstall + if uninstalled_pathset and not requirement.install_succeeded: + uninstalled_pathset.rollback() + raise + else: + if uninstalled_pathset and requirement.install_succeeded: + uninstalled_pathset.commit() + + installed.append(InstallationResult(req_name)) + + return installed diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..04276963211e8c82c1184bdc36156f0879061615 GIT binary patch literal 2604 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_file.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3045aabe35c67dd8c34217eb7987f3c87b5ccf55 GIT binary patch literal 13495 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 YAKvlG?yZwsCNonHOg%g`x_{6A0I4Q|!2kdN literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_install.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..3eb67f3959a94591c5d08cffcd0120f3588de7db GIT binary patch literal 22184 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/__pycache__/req_tracker.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6f549159fd7bf97c9fd607634f6fed481071a31 GIT binary patch literal 4312 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 F{|^Np3T6NR literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/constructors.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/constructors.py new file mode 100644 index 0000000..25bfb39 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/constructors.py @@ -0,0 +1,490 @@ +"""Backing implementation for InstallRequirement's various constructors + +The idea here is that these formed a major chunk of InstallRequirement's size +so, moving them and support code dedicated to them outside of that class +helps creates for better understandability for the rest of the code. + +These are meant to be used elsewhere within pip to create instances of +InstallRequirement. +""" + +import logging +import os +import re +from typing import Any, Dict, Optional, Set, Tuple, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import InvalidRequirement, Requirement +from pip._vendor.packaging.specifiers import Specifier + +from pip._internal.exceptions import InstallationError +from pip._internal.models.index import PyPI, TestPyPI +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_file import ParsedRequirement +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.filetypes import is_archive_file +from pip._internal.utils.misc import is_installable_dir +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import is_url, vcs + +__all__ = [ + "install_req_from_editable", + "install_req_from_line", + "parse_editable", +] + +logger = logging.getLogger(__name__) +operators = Specifier._operators.keys() + + +def _strip_extras(path: str) -> Tuple[str, Optional[str]]: + m = re.match(r"^(.+)(\[[^\]]+\])$", path) + extras = None + if m: + path_no_extras = m.group(1) + extras = m.group(2) + else: + path_no_extras = path + + return path_no_extras, extras + + +def convert_extras(extras: Optional[str]) -> Set[str]: + if not extras: + return set() + return get_requirement("placeholder" + extras.lower()).extras + + +def parse_editable(editable_req: str) -> Tuple[Optional[str], str, Set[str]]: + """Parses an editable requirement into: + - a requirement name + - an URL + - extras + - editable options + Accepted requirements: + svn+http://blahblah@rev#egg=Foobar[baz]&subdirectory=version_subdir + .[some_extra] + """ + + url = editable_req + + # If a file path is specified with extras, strip off the extras. + url_no_extras, extras = _strip_extras(url) + + if os.path.isdir(url_no_extras): + # Treating it as code that has already been checked out + url_no_extras = path_to_url(url_no_extras) + + if url_no_extras.lower().startswith("file:"): + package_name = Link(url_no_extras).egg_fragment + if extras: + return ( + package_name, + url_no_extras, + get_requirement("placeholder" + extras.lower()).extras, + ) + else: + return package_name, url_no_extras, set() + + for version_control in vcs: + if url.lower().startswith(f"{version_control}:"): + url = f"{version_control}+{url}" + break + + link = Link(url) + + if not link.is_vcs: + backends = ", ".join(vcs.all_schemes) + raise InstallationError( + f"{editable_req} is not a valid editable requirement. " + f"It should either be a path to a local project or a VCS URL " + f"(beginning with {backends})." + ) + + package_name = link.egg_fragment + if not package_name: + raise InstallationError( + "Could not detect requirement name for '{}', please specify one " + "with #egg=your_package_name".format(editable_req) + ) + return package_name, url, set() + + +def check_first_requirement_in_file(filename: str) -> None: + """Check if file is parsable as a requirements file. + + This is heavily based on ``pkg_resources.parse_requirements``, but + simplified to just check the first meaningful line. + + :raises InvalidRequirement: If the first meaningful line cannot be parsed + as an requirement. + """ + with open(filename, encoding="utf-8", errors="ignore") as f: + # Create a steppable iterator, so we can handle \-continuations. + lines = ( + line + for line in (line.strip() for line in f) + if line and not line.startswith("#") # Skip blank lines/comments. + ) + + for line in lines: + # Drop comments -- a hash without a space may be in a URL. + if " #" in line: + line = line[: line.find(" #")] + # If there is a line continuation, drop it, and append the next line. + if line.endswith("\\"): + line = line[:-2].strip() + next(lines, "") + Requirement(line) + return + + +def deduce_helpful_msg(req: str) -> str: + """Returns helpful msg in case requirements file does not exist, + or cannot be parsed. + + :params req: Requirements file path + """ + if not os.path.exists(req): + return f" File '{req}' does not exist." + msg = " The path does exist. " + # Try to parse and check if it is a requirements file. + try: + check_first_requirement_in_file(req) + except InvalidRequirement: + logger.debug("Cannot parse '%s' as requirements file", req) + else: + msg += ( + f"The argument you provided " + f"({req}) appears to be a" + f" requirements file. If that is the" + f" case, use the '-r' flag to install" + f" the packages specified within it." + ) + return msg + + +class RequirementParts: + def __init__( + self, + requirement: Optional[Requirement], + link: Optional[Link], + markers: Optional[Marker], + extras: Set[str], + ): + self.requirement = requirement + self.link = link + self.markers = markers + self.extras = extras + + +def parse_req_from_editable(editable_req: str) -> RequirementParts: + name, url, extras_override = parse_editable(editable_req) + + if name is not None: + try: + req: Optional[Requirement] = Requirement(name) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{name}'") + else: + req = None + + link = Link(url) + + return RequirementParts(req, link, None, extras_override) + + +# ---- The actual constructors follow ---- + + +def install_req_from_editable( + editable_req: str, + comes_from: Optional[Union[InstallRequirement, str]] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + options: Optional[Dict[str, Any]] = None, + constraint: bool = False, + user_supplied: bool = False, + permit_editable_wheels: bool = False, +) -> InstallRequirement: + + parts = parse_req_from_editable(editable_req) + + return InstallRequirement( + parts.requirement, + comes_from=comes_from, + user_supplied=user_supplied, + editable=True, + permit_editable_wheels=permit_editable_wheels, + link=parts.link, + constraint=constraint, + use_pep517=use_pep517, + isolated=isolated, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + extras=parts.extras, + ) + + +def _looks_like_path(name: str) -> bool: + """Checks whether the string "looks like" a path on the filesystem. + + This does not check whether the target actually exists, only judge from the + appearance. + + Returns true if any of the following conditions is true: + * a path separator is found (either os.path.sep or os.path.altsep); + * a dot is found (which represents the current directory). + """ + if os.path.sep in name: + return True + if os.path.altsep is not None and os.path.altsep in name: + return True + if name.startswith("."): + return True + return False + + +def _get_url_from_path(path: str, name: str) -> Optional[str]: + """ + First, it checks whether a provided path is an installable directory. If it + is, returns the path. + + If false, check if the path is an archive file (such as a .whl). + The function checks if the path is a file. If false, if the path has + an @, it will treat it as a PEP 440 URL requirement and return the path. + """ + if _looks_like_path(name) and os.path.isdir(path): + if is_installable_dir(path): + return path_to_url(path) + # TODO: The is_installable_dir test here might not be necessary + # now that it is done in load_pyproject_toml too. + raise InstallationError( + f"Directory {name!r} is not installable. Neither 'setup.py' " + "nor 'pyproject.toml' found." + ) + if not is_archive_file(path): + return None + if os.path.isfile(path): + return path_to_url(path) + urlreq_parts = name.split("@", 1) + if len(urlreq_parts) >= 2 and not _looks_like_path(urlreq_parts[0]): + # If the path contains '@' and the part before it does not look + # like a path, try to treat it as a PEP 440 URL req instead. + return None + logger.warning( + "Requirement %r looks like a filename, but the file does not exist", + name, + ) + return path_to_url(path) + + +def parse_req_from_line(name: str, line_source: Optional[str]) -> RequirementParts: + if is_url(name): + marker_sep = "; " + else: + marker_sep = ";" + if marker_sep in name: + name, markers_as_string = name.split(marker_sep, 1) + markers_as_string = markers_as_string.strip() + if not markers_as_string: + markers = None + else: + markers = Marker(markers_as_string) + else: + markers = None + name = name.strip() + req_as_string = None + path = os.path.normpath(os.path.abspath(name)) + link = None + extras_as_string = None + + if is_url(name): + link = Link(name) + else: + p, extras_as_string = _strip_extras(path) + url = _get_url_from_path(p, name) + if url is not None: + link = Link(url) + + # it's a local file, dir, or url + if link: + # Handle relative file URLs + if link.scheme == "file" and re.search(r"\.\./", link.url): + link = Link(path_to_url(os.path.normpath(os.path.abspath(link.path)))) + # wheel file + if link.is_wheel: + wheel = Wheel(link.filename) # can raise InvalidWheelFilename + req_as_string = f"{wheel.name}=={wheel.version}" + else: + # set the req to the egg fragment. when it's not there, this + # will become an 'unnamed' requirement + req_as_string = link.egg_fragment + + # a requirement specifier + else: + req_as_string = name + + extras = convert_extras(extras_as_string) + + def with_source(text: str) -> str: + if not line_source: + return text + return f"{text} (from {line_source})" + + def _parse_req_string(req_as_string: str) -> Requirement: + try: + req = get_requirement(req_as_string) + except InvalidRequirement: + if os.path.sep in req_as_string: + add_msg = "It looks like a path." + add_msg += deduce_helpful_msg(req_as_string) + elif "=" in req_as_string and not any( + op in req_as_string for op in operators + ): + add_msg = "= is not a valid operator. Did you mean == ?" + else: + add_msg = "" + msg = with_source(f"Invalid requirement: {req_as_string!r}") + if add_msg: + msg += f"\nHint: {add_msg}" + raise InstallationError(msg) + else: + # Deprecate extras after specifiers: "name>=1.0[extras]" + # This currently works by accident because _strip_extras() parses + # any extras in the end of the string and those are saved in + # RequirementParts + for spec in req.specifier: + spec_str = str(spec) + if spec_str.endswith("]"): + msg = f"Extras after version '{spec_str}'." + raise InstallationError(msg) + return req + + if req_as_string is not None: + req: Optional[Requirement] = _parse_req_string(req_as_string) + else: + req = None + + return RequirementParts(req, link, markers, extras) + + +def install_req_from_line( + name: str, + comes_from: Optional[Union[str, InstallRequirement]] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + options: Optional[Dict[str, Any]] = None, + constraint: bool = False, + line_source: Optional[str] = None, + user_supplied: bool = False, +) -> InstallRequirement: + """Creates an InstallRequirement from a name, which might be a + requirement, directory containing 'setup.py', filename, or URL. + + :param line_source: An optional string describing where the line is from, + for logging purposes in case of an error. + """ + parts = parse_req_from_line(name, line_source) + + return InstallRequirement( + parts.requirement, + comes_from, + link=parts.link, + markers=parts.markers, + use_pep517=use_pep517, + isolated=isolated, + install_options=options.get("install_options", []) if options else [], + global_options=options.get("global_options", []) if options else [], + hash_options=options.get("hashes", {}) if options else {}, + constraint=constraint, + extras=parts.extras, + user_supplied=user_supplied, + ) + + +def install_req_from_req_string( + req_string: str, + comes_from: Optional[InstallRequirement] = None, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + try: + req = get_requirement(req_string) + except InvalidRequirement: + raise InstallationError(f"Invalid requirement: '{req_string}'") + + domains_not_allowed = [ + PyPI.file_storage_domain, + TestPyPI.file_storage_domain, + ] + if ( + req.url + and comes_from + and comes_from.link + and comes_from.link.netloc in domains_not_allowed + ): + # Explicitly disallow pypi packages that depend on external urls + raise InstallationError( + "Packages installed from PyPI cannot depend on packages " + "which are not also hosted on PyPI.\n" + "{} depends on {} ".format(comes_from.name, req) + ) + + return InstallRequirement( + req, + comes_from, + isolated=isolated, + use_pep517=use_pep517, + user_supplied=user_supplied, + ) + + +def install_req_from_parsed_requirement( + parsed_req: ParsedRequirement, + isolated: bool = False, + use_pep517: Optional[bool] = None, + user_supplied: bool = False, +) -> InstallRequirement: + if parsed_req.is_editable: + req = install_req_from_editable( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + constraint=parsed_req.constraint, + isolated=isolated, + user_supplied=user_supplied, + ) + + else: + req = install_req_from_line( + parsed_req.requirement, + comes_from=parsed_req.comes_from, + use_pep517=use_pep517, + isolated=isolated, + options=parsed_req.options, + constraint=parsed_req.constraint, + line_source=parsed_req.line_source, + user_supplied=user_supplied, + ) + return req + + +def install_req_from_link_and_ireq( + link: Link, ireq: InstallRequirement +) -> InstallRequirement: + return InstallRequirement( + req=ireq.req, + comes_from=ireq.comes_from, + editable=ireq.editable, + link=link, + markers=ireq.markers, + use_pep517=ireq.use_pep517, + isolated=ireq.isolated, + install_options=ireq.install_options, + global_options=ireq.global_options, + hash_options=ireq.hash_options, + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_file.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_file.py new file mode 100644 index 0000000..03ae504 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_file.py @@ -0,0 +1,536 @@ +""" +Requirements file parsing +""" + +import optparse +import os +import re +import shlex +import urllib.parse +from optparse import Values +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Dict, + Iterable, + Iterator, + List, + Optional, + Tuple, +) + +from pip._internal.cli import cmdoptions +from pip._internal.exceptions import InstallationError, RequirementsFileParseError +from pip._internal.models.search_scope import SearchScope +from pip._internal.network.session import PipSession +from pip._internal.network.utils import raise_for_status +from pip._internal.utils.encoding import auto_decode +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + from pip._internal.index.package_finder import PackageFinder + +__all__ = ["parse_requirements"] + +ReqFileLines = Iterable[Tuple[int, str]] + +LineParser = Callable[[str], Tuple[str, Values]] + +SCHEME_RE = re.compile(r"^(http|https|file):", re.I) +COMMENT_RE = re.compile(r"(^|\s+)#.*$") + +# Matches environment variable-style values in '${MY_VARIABLE_1}' with the +# variable name consisting of only uppercase letters, digits or the '_' +# (underscore). This follows the POSIX standard defined in IEEE Std 1003.1, +# 2013 Edition. +ENV_VAR_RE = re.compile(r"(?P\$\{(?P[A-Z0-9_]+)\})") + +SUPPORTED_OPTIONS: List[Callable[..., optparse.Option]] = [ + cmdoptions.index_url, + cmdoptions.extra_index_url, + cmdoptions.no_index, + cmdoptions.constraints, + cmdoptions.requirements, + cmdoptions.editable, + cmdoptions.find_links, + cmdoptions.no_binary, + cmdoptions.only_binary, + cmdoptions.prefer_binary, + cmdoptions.require_hashes, + cmdoptions.pre, + cmdoptions.trusted_host, + cmdoptions.use_new_feature, +] + +# options to be passed to requirements +SUPPORTED_OPTIONS_REQ: List[Callable[..., optparse.Option]] = [ + cmdoptions.install_options, + cmdoptions.global_options, + cmdoptions.hash, +] + +# the 'dest' string values +SUPPORTED_OPTIONS_REQ_DEST = [str(o().dest) for o in SUPPORTED_OPTIONS_REQ] + + +class ParsedRequirement: + def __init__( + self, + requirement: str, + is_editable: bool, + comes_from: str, + constraint: bool, + options: Optional[Dict[str, Any]] = None, + line_source: Optional[str] = None, + ) -> None: + self.requirement = requirement + self.is_editable = is_editable + self.comes_from = comes_from + self.options = options + self.constraint = constraint + self.line_source = line_source + + +class ParsedLine: + def __init__( + self, + filename: str, + lineno: int, + args: str, + opts: Values, + constraint: bool, + ) -> None: + self.filename = filename + self.lineno = lineno + self.opts = opts + self.constraint = constraint + + if args: + self.is_requirement = True + self.is_editable = False + self.requirement = args + elif opts.editables: + self.is_requirement = True + self.is_editable = True + # We don't support multiple -e on one line + self.requirement = opts.editables[0] + else: + self.is_requirement = False + + +def parse_requirements( + filename: str, + session: PipSession, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + constraint: bool = False, +) -> Iterator[ParsedRequirement]: + """Parse a requirements file and yield ParsedRequirement instances. + + :param filename: Path or url of requirements file. + :param session: PipSession instance. + :param finder: Instance of pip.index.PackageFinder. + :param options: cli options. + :param constraint: If true, parsing a constraint file rather than + requirements file. + """ + line_parser = get_line_parser(finder) + parser = RequirementsFileParser(session, line_parser) + + for parsed_line in parser.parse(filename, constraint): + parsed_req = handle_line( + parsed_line, options=options, finder=finder, session=session + ) + if parsed_req is not None: + yield parsed_req + + +def preprocess(content: str) -> ReqFileLines: + """Split, filter, and join lines, and return a line iterator + + :param content: the content of the requirements file + """ + lines_enum: ReqFileLines = enumerate(content.splitlines(), start=1) + lines_enum = join_lines(lines_enum) + lines_enum = ignore_comments(lines_enum) + lines_enum = expand_env_variables(lines_enum) + return lines_enum + + +def handle_requirement_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, +) -> ParsedRequirement: + + # preserve for the nested code path + line_comes_from = "{} {} (line {})".format( + "-c" if line.constraint else "-r", + line.filename, + line.lineno, + ) + + assert line.is_requirement + + if line.is_editable: + # For editable requirements, we don't support per-requirement + # options, so just return the parsed requirement. + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + ) + else: + if options: + # Disable wheels if the user has specified build options + cmdoptions.check_install_build_global(options, line.opts) + + # get the options that apply to requirements + req_options = {} + for dest in SUPPORTED_OPTIONS_REQ_DEST: + if dest in line.opts.__dict__ and line.opts.__dict__[dest]: + req_options[dest] = line.opts.__dict__[dest] + + line_source = f"line {line.lineno} of {line.filename}" + return ParsedRequirement( + requirement=line.requirement, + is_editable=line.is_editable, + comes_from=line_comes_from, + constraint=line.constraint, + options=req_options, + line_source=line_source, + ) + + +def handle_option_line( + opts: Values, + filename: str, + lineno: int, + finder: Optional["PackageFinder"] = None, + options: Optional[optparse.Values] = None, + session: Optional[PipSession] = None, +) -> None: + + if options: + # percolate options upward + if opts.require_hashes: + options.require_hashes = opts.require_hashes + if opts.features_enabled: + options.features_enabled.extend( + f for f in opts.features_enabled if f not in options.features_enabled + ) + + # set finder options + if finder: + find_links = finder.find_links + index_urls = finder.index_urls + if opts.index_url: + index_urls = [opts.index_url] + if opts.no_index is True: + index_urls = [] + if opts.extra_index_urls: + index_urls.extend(opts.extra_index_urls) + if opts.find_links: + # FIXME: it would be nice to keep track of the source + # of the find_links: support a find-links local path + # relative to a requirements file. + value = opts.find_links[0] + req_dir = os.path.dirname(os.path.abspath(filename)) + relative_to_reqs_file = os.path.join(req_dir, value) + if os.path.exists(relative_to_reqs_file): + value = relative_to_reqs_file + find_links.append(value) + + if session: + # We need to update the auth urls in session + session.update_index_urls(index_urls) + + search_scope = SearchScope( + find_links=find_links, + index_urls=index_urls, + ) + finder.search_scope = search_scope + + if opts.pre: + finder.set_allow_all_prereleases() + + if opts.prefer_binary: + finder.set_prefer_binary() + + if session: + for host in opts.trusted_hosts or []: + source = f"line {lineno} of {filename}" + session.add_trusted_host(host, source=source) + + +def handle_line( + line: ParsedLine, + options: Optional[optparse.Values] = None, + finder: Optional["PackageFinder"] = None, + session: Optional[PipSession] = None, +) -> Optional[ParsedRequirement]: + """Handle a single parsed requirements line; This can result in + creating/yielding requirements, or updating the finder. + + :param line: The parsed line to be processed. + :param options: CLI options. + :param finder: The finder - updated by non-requirement lines. + :param session: The session - updated by non-requirement lines. + + Returns a ParsedRequirement object if the line is a requirement line, + otherwise returns None. + + For lines that contain requirements, the only options that have an effect + are from SUPPORTED_OPTIONS_REQ, and they are scoped to the + requirement. Other options from SUPPORTED_OPTIONS may be present, but are + ignored. + + For lines that do not contain requirements, the only options that have an + effect are from SUPPORTED_OPTIONS. Options from SUPPORTED_OPTIONS_REQ may + be present, but are ignored. These lines may contain multiple options + (although our docs imply only one is supported), and all our parsed and + affect the finder. + """ + + if line.is_requirement: + parsed_req = handle_requirement_line(line, options) + return parsed_req + else: + handle_option_line( + line.opts, + line.filename, + line.lineno, + finder, + options, + session, + ) + return None + + +class RequirementsFileParser: + def __init__( + self, + session: PipSession, + line_parser: LineParser, + ) -> None: + self._session = session + self._line_parser = line_parser + + def parse(self, filename: str, constraint: bool) -> Iterator[ParsedLine]: + """Parse a given file, yielding parsed lines.""" + yield from self._parse_and_recurse(filename, constraint) + + def _parse_and_recurse( + self, filename: str, constraint: bool + ) -> Iterator[ParsedLine]: + for line in self._parse_file(filename, constraint): + if not line.is_requirement and ( + line.opts.requirements or line.opts.constraints + ): + # parse a nested requirements file + if line.opts.requirements: + req_path = line.opts.requirements[0] + nested_constraint = False + else: + req_path = line.opts.constraints[0] + nested_constraint = True + + # original file is over http + if SCHEME_RE.search(filename): + # do a url join so relative paths work + req_path = urllib.parse.urljoin(filename, req_path) + # original file and nested file are paths + elif not SCHEME_RE.search(req_path): + # do a join so relative paths work + req_path = os.path.join( + os.path.dirname(filename), + req_path, + ) + + yield from self._parse_and_recurse(req_path, nested_constraint) + else: + yield line + + def _parse_file(self, filename: str, constraint: bool) -> Iterator[ParsedLine]: + _, content = get_file_content(filename, self._session) + + lines_enum = preprocess(content) + + for line_number, line in lines_enum: + try: + args_str, opts = self._line_parser(line) + except OptionParsingError as e: + # add offending line + msg = f"Invalid requirement: {line}\n{e.msg}" + raise RequirementsFileParseError(msg) + + yield ParsedLine( + filename, + line_number, + args_str, + opts, + constraint, + ) + + +def get_line_parser(finder: Optional["PackageFinder"]) -> LineParser: + def parse_line(line: str) -> Tuple[str, Values]: + # Build new parser for each line since it accumulates appendable + # options. + parser = build_parser() + defaults = parser.get_default_values() + defaults.index_url = None + if finder: + defaults.format_control = finder.format_control + + args_str, options_str = break_args_options(line) + + opts, _ = parser.parse_args(shlex.split(options_str), defaults) + + return args_str, opts + + return parse_line + + +def break_args_options(line: str) -> Tuple[str, str]: + """Break up the line into an args and options string. We only want to shlex + (and then optparse) the options, not the args. args can contain markers + which are corrupted by shlex. + """ + tokens = line.split(" ") + args = [] + options = tokens[:] + for token in tokens: + if token.startswith("-") or token.startswith("--"): + break + else: + args.append(token) + options.pop(0) + return " ".join(args), " ".join(options) + + +class OptionParsingError(Exception): + def __init__(self, msg: str) -> None: + self.msg = msg + + +def build_parser() -> optparse.OptionParser: + """ + Return a parser for parsing requirement lines + """ + parser = optparse.OptionParser(add_help_option=False) + + option_factories = SUPPORTED_OPTIONS + SUPPORTED_OPTIONS_REQ + for option_factory in option_factories: + option = option_factory() + parser.add_option(option) + + # By default optparse sys.exits on parsing errors. We want to wrap + # that in our own exception. + def parser_exit(self: Any, msg: str) -> "NoReturn": + raise OptionParsingError(msg) + + # NOTE: mypy disallows assigning to a method + # https://github.com/python/mypy/issues/2427 + parser.exit = parser_exit # type: ignore + + return parser + + +def join_lines(lines_enum: ReqFileLines) -> ReqFileLines: + """Joins a line ending in '\' with the previous line (except when following + comments). The joined line takes on the index of the first line. + """ + primary_line_number = None + new_line: List[str] = [] + for line_number, line in lines_enum: + if not line.endswith("\\") or COMMENT_RE.match(line): + if COMMENT_RE.match(line): + # this ensures comments are always matched later + line = " " + line + if new_line: + new_line.append(line) + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + new_line = [] + else: + yield line_number, line + else: + if not new_line: + primary_line_number = line_number + new_line.append(line.strip("\\")) + + # last line contains \ + if new_line: + assert primary_line_number is not None + yield primary_line_number, "".join(new_line) + + # TODO: handle space after '\'. + + +def ignore_comments(lines_enum: ReqFileLines) -> ReqFileLines: + """ + Strips comments and filter empty lines. + """ + for line_number, line in lines_enum: + line = COMMENT_RE.sub("", line) + line = line.strip() + if line: + yield line_number, line + + +def expand_env_variables(lines_enum: ReqFileLines) -> ReqFileLines: + """Replace all environment variables that can be retrieved via `os.getenv`. + + The only allowed format for environment variables defined in the + requirement file is `${MY_VARIABLE_1}` to ensure two things: + + 1. Strings that contain a `$` aren't accidentally (partially) expanded. + 2. Ensure consistency across platforms for requirement files. + + These points are the result of a discussion on the `github pull + request #3514 `_. + + Valid characters in variable names follow the `POSIX standard + `_ and are limited + to uppercase letter, digits and the `_` (underscore). + """ + for line_number, line in lines_enum: + for env_var, var_name in ENV_VAR_RE.findall(line): + value = os.getenv(var_name) + if not value: + continue + + line = line.replace(env_var, value) + + yield line_number, line + + +def get_file_content(url: str, session: PipSession) -> Tuple[str, str]: + """Gets the content of a file; it may be a filename, file: URL, or + http: URL. Returns (location, content). Content is unicode. + Respects # -*- coding: declarations on the retrieved files. + + :param url: File path or url. + :param session: PipSession instance. + """ + scheme = get_url_scheme(url) + + # Pip has special support for file:// URLs (LocalFSAdapter). + if scheme in ["http", "https", "file"]: + resp = session.get(url) + raise_for_status(resp) + return resp.url, resp.text + + # Assume this is a bare path. + try: + with open(url, "rb") as f: + content = auto_decode(f.read()) + except OSError as exc: + raise InstallationError(f"Could not open requirements file: {exc}") + return url, content diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_install.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_install.py new file mode 100644 index 0000000..02dbda1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_install.py @@ -0,0 +1,858 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import functools +import logging +import os +import shutil +import sys +import uuid +import zipfile +from typing import Any, Collection, Dict, Iterable, List, Optional, Sequence, Union + +from pip._vendor.packaging.markers import Marker +from pip._vendor.packaging.requirements import Requirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.packaging.version import Version +from pip._vendor.packaging.version import parse as parse_version +from pip._vendor.pep517.wrappers import Pep517HookCaller + +from pip._internal.build_env import BuildEnvironment, NoOpBuildEnvironment +from pip._internal.exceptions import InstallationError, LegacyInstallFailure +from pip._internal.locations import get_scheme +from pip._internal.metadata import ( + BaseDistribution, + get_default_environment, + get_directory_distribution, +) +from pip._internal.models.link import Link +from pip._internal.operations.build.metadata import generate_metadata +from pip._internal.operations.build.metadata_editable import generate_editable_metadata +from pip._internal.operations.build.metadata_legacy import ( + generate_metadata as generate_metadata_legacy, +) +from pip._internal.operations.install.editable_legacy import ( + install_editable as install_editable_legacy, +) +from pip._internal.operations.install.legacy import install as install_legacy +from pip._internal.operations.install.wheel import install_wheel +from pip._internal.pyproject import load_pyproject_toml, make_pyproject_path +from pip._internal.req.req_uninstall import UninstallPathSet +from pip._internal.utils.deprecation import deprecated +from pip._internal.utils.direct_url_helpers import ( + direct_url_for_editable, + direct_url_from_link, +) +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.misc import ( + ask_path_exists, + backup_dir, + display_path, + hide_url, + redact_auth_from_url, +) +from pip._internal.utils.packaging import safe_extra +from pip._internal.utils.subprocess import runner_with_spinner_message +from pip._internal.utils.temp_dir import TempDirectory, tempdir_kinds +from pip._internal.utils.virtualenv import running_under_virtualenv +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + + +class InstallRequirement: + """ + Represents something that may be installed later on, may have information + about where to fetch the relevant requirement and also contains logic for + installing the said requirement. + """ + + def __init__( + self, + req: Optional[Requirement], + comes_from: Optional[Union[str, "InstallRequirement"]], + editable: bool = False, + link: Optional[Link] = None, + markers: Optional[Marker] = None, + use_pep517: Optional[bool] = None, + isolated: bool = False, + install_options: Optional[List[str]] = None, + global_options: Optional[List[str]] = None, + hash_options: Optional[Dict[str, List[str]]] = None, + constraint: bool = False, + extras: Collection[str] = (), + user_supplied: bool = False, + permit_editable_wheels: bool = False, + ) -> None: + assert req is None or isinstance(req, Requirement), req + self.req = req + self.comes_from = comes_from + self.constraint = constraint + self.editable = editable + self.permit_editable_wheels = permit_editable_wheels + self.legacy_install_reason: Optional[int] = None + + # source_dir is the local directory where the linked requirement is + # located, or unpacked. In case unpacking is needed, creating and + # populating source_dir is done by the RequirementPreparer. Note this + # is not necessarily the directory where pyproject.toml or setup.py is + # located - that one is obtained via unpacked_source_directory. + self.source_dir: Optional[str] = None + if self.editable: + assert link + if link.is_file: + self.source_dir = os.path.normpath(os.path.abspath(link.file_path)) + + if link is None and req and req.url: + # PEP 508 URL requirement + link = Link(req.url) + self.link = self.original_link = link + self.original_link_is_in_wheel_cache = False + + # Path to any downloaded or already-existing package. + self.local_file_path: Optional[str] = None + if self.link and self.link.is_file: + self.local_file_path = self.link.file_path + + if extras: + self.extras = extras + elif req: + self.extras = {safe_extra(extra) for extra in req.extras} + else: + self.extras = set() + if markers is None and req: + markers = req.marker + self.markers = markers + + # This holds the Distribution object if this requirement is already installed. + self.satisfied_by: Optional[BaseDistribution] = None + # Whether the installation process should try to uninstall an existing + # distribution before installing this requirement. + self.should_reinstall = False + # Temporary build location + self._temp_build_dir: Optional[TempDirectory] = None + # Set to True after successful installation + self.install_succeeded: Optional[bool] = None + # Supplied options + self.install_options = install_options if install_options else [] + self.global_options = global_options if global_options else [] + self.hash_options = hash_options if hash_options else {} + # Set to True after successful preparation of this requirement + self.prepared = False + # User supplied requirement are explicitly requested for installation + # by the user via CLI arguments or requirements files, as opposed to, + # e.g. dependencies, extras or constraints. + self.user_supplied = user_supplied + + self.isolated = isolated + self.build_env: BuildEnvironment = NoOpBuildEnvironment() + + # For PEP 517, the directory where we request the project metadata + # gets stored. We need this to pass to build_wheel, so the backend + # can ensure that the wheel matches the metadata (see the PEP for + # details). + self.metadata_directory: Optional[str] = None + + # The static build requirements (from pyproject.toml) + self.pyproject_requires: Optional[List[str]] = None + + # Build requirements that we will check are available + self.requirements_to_check: List[str] = [] + + # The PEP 517 backend we should use to build the project + self.pep517_backend: Optional[Pep517HookCaller] = None + + # Are we using PEP 517 for this requirement? + # After pyproject.toml has been loaded, the only valid values are True + # and False. Before loading, None is valid (meaning "use the default"). + # Setting an explicit value before loading pyproject.toml is supported, + # but after loading this flag should be treated as read only. + self.use_pep517 = use_pep517 + + # This requirement needs more preparation before it can be built + self.needs_more_preparation = False + + def __str__(self) -> str: + if self.req: + s = str(self.req) + if self.link: + s += " from {}".format(redact_auth_from_url(self.link.url)) + elif self.link: + s = redact_auth_from_url(self.link.url) + else: + s = "" + if self.satisfied_by is not None: + s += " in {}".format(display_path(self.satisfied_by.location)) + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from: Optional[str] = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += f" (from {comes_from})" + return s + + def __repr__(self) -> str: + return "<{} object: {} editable={!r}>".format( + self.__class__.__name__, str(self), self.editable + ) + + def format_debug(self) -> str: + """An un-tested helper for getting state, for debugging.""" + attributes = vars(self) + names = sorted(attributes) + + state = ("{}={!r}".format(attr, attributes[attr]) for attr in sorted(names)) + return "<{name} object: {{{state}}}>".format( + name=self.__class__.__name__, + state=", ".join(state), + ) + + # Things that are valid for all kinds of requirements? + @property + def name(self) -> Optional[str]: + if self.req is None: + return None + return self.req.name + + @functools.lru_cache() # use cached_property in python 3.8+ + def supports_pyproject_editable(self) -> bool: + if not self.use_pep517: + return False + assert self.pep517_backend + with self.build_env: + runner = runner_with_spinner_message( + "Checking if build backend supports build_editable" + ) + with self.pep517_backend.subprocess_runner(runner): + return "build_editable" in self.pep517_backend._supported_features() + + @property + def specifier(self) -> SpecifierSet: + return self.req.specifier + + @property + def is_pinned(self) -> bool: + """Return whether I am pinned to an exact version. + + For example, some-package==1.2 is pinned; some-package>1.2 is not. + """ + specifiers = self.specifier + return len(specifiers) == 1 and next(iter(specifiers)).operator in {"==", "==="} + + def match_markers(self, extras_requested: Optional[Iterable[str]] = None) -> bool: + if not extras_requested: + # Provide an extra to safely evaluate the markers + # without matching any extra + extras_requested = ("",) + if self.markers is not None: + return any( + self.markers.evaluate({"extra": extra}) for extra in extras_requested + ) + else: + return True + + @property + def has_hash_options(self) -> bool: + """Return whether any known-good hashes are specified as options. + + These activate --require-hashes mode; hashes specified as part of a + URL do not. + + """ + return bool(self.hash_options) + + def hashes(self, trust_internet: bool = True) -> Hashes: + """Return a hash-comparer that considers my option- and URL-based + hashes to be known-good. + + Hashes in URLs--ones embedded in the requirements file, not ones + downloaded from an index server--are almost peers with ones from + flags. They satisfy --require-hashes (whether it was implicitly or + explicitly activated) but do not activate it. md5 and sha224 are not + allowed in flags, which should nudge people toward good algos. We + always OR all hashes together, even ones from URLs. + + :param trust_internet: Whether to trust URL-based (#md5=...) hashes + downloaded from the internet, as by populate_link() + + """ + good_hashes = self.hash_options.copy() + link = self.link if trust_internet else self.original_link + if link and link.hash: + good_hashes.setdefault(link.hash_name, []).append(link.hash) + return Hashes(good_hashes) + + def from_path(self) -> Optional[str]: + """Format a nice indicator to show where this "comes from" """ + if self.req is None: + return None + s = str(self.req) + if self.comes_from: + if isinstance(self.comes_from, str): + comes_from = self.comes_from + else: + comes_from = self.comes_from.from_path() + if comes_from: + s += "->" + comes_from + return s + + def ensure_build_location( + self, build_dir: str, autodelete: bool, parallel_builds: bool + ) -> str: + assert build_dir is not None + if self._temp_build_dir is not None: + assert self._temp_build_dir.path + return self._temp_build_dir.path + if self.req is None: + # Some systems have /tmp as a symlink which confuses custom + # builds (such as numpy). Thus, we ensure that the real path + # is returned. + self._temp_build_dir = TempDirectory( + kind=tempdir_kinds.REQ_BUILD, globally_managed=True + ) + + return self._temp_build_dir.path + + # This is the only remaining place where we manually determine the path + # for the temporary directory. It is only needed for editables where + # it is the value of the --src option. + + # When parallel builds are enabled, add a UUID to the build directory + # name so multiple builds do not interfere with each other. + dir_name: str = canonicalize_name(self.name) + if parallel_builds: + dir_name = f"{dir_name}_{uuid.uuid4().hex}" + + # FIXME: Is there a better place to create the build_dir? (hg and bzr + # need this) + if not os.path.exists(build_dir): + logger.debug("Creating directory %s", build_dir) + os.makedirs(build_dir) + actual_build_dir = os.path.join(build_dir, dir_name) + # `None` indicates that we respect the globally-configured deletion + # settings, which is what we actually want when auto-deleting. + delete_arg = None if autodelete else False + return TempDirectory( + path=actual_build_dir, + delete=delete_arg, + kind=tempdir_kinds.REQ_BUILD, + globally_managed=True, + ).path + + def _set_requirement(self) -> None: + """Set requirement after generating metadata.""" + assert self.req is None + assert self.metadata is not None + assert self.source_dir is not None + + # Construct a Requirement object from the generated metadata + if isinstance(parse_version(self.metadata["Version"]), Version): + op = "==" + else: + op = "===" + + self.req = Requirement( + "".join( + [ + self.metadata["Name"], + op, + self.metadata["Version"], + ] + ) + ) + + def warn_on_mismatching_name(self) -> None: + metadata_name = canonicalize_name(self.metadata["Name"]) + if canonicalize_name(self.req.name) == metadata_name: + # Everything is fine. + return + + # If we're here, there's a mismatch. Log a warning about it. + logger.warning( + "Generating metadata for package %s " + "produced metadata for project name %s. Fix your " + "#egg=%s fragments.", + self.name, + metadata_name, + self.name, + ) + self.req = Requirement(metadata_name) + + def check_if_exists(self, use_user_site: bool) -> None: + """Find an installed distribution that satisfies or conflicts + with this requirement, and set self.satisfied_by or + self.should_reinstall appropriately. + """ + if self.req is None: + return + existing_dist = get_default_environment().get_distribution(self.req.name) + if not existing_dist: + return + + version_compatible = self.req.specifier.contains( + existing_dist.version, + prereleases=True, + ) + if not version_compatible: + self.satisfied_by = None + if use_user_site: + if existing_dist.in_usersite: + self.should_reinstall = True + elif running_under_virtualenv() and existing_dist.in_site_packages: + raise InstallationError( + f"Will not install to the user site because it will " + f"lack sys.path precedence to {existing_dist.raw_name} " + f"in {existing_dist.location}" + ) + else: + self.should_reinstall = True + else: + if self.editable: + self.should_reinstall = True + # when installing editables, nothing pre-existing should ever + # satisfy + self.satisfied_by = None + else: + self.satisfied_by = existing_dist + + # Things valid for wheels + @property + def is_wheel(self) -> bool: + if not self.link: + return False + return self.link.is_wheel + + # Things valid for sdists + @property + def unpacked_source_directory(self) -> str: + return os.path.join( + self.source_dir, self.link and self.link.subdirectory_fragment or "" + ) + + @property + def setup_py_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_py = os.path.join(self.unpacked_source_directory, "setup.py") + + return setup_py + + @property + def setup_cfg_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + setup_cfg = os.path.join(self.unpacked_source_directory, "setup.cfg") + + return setup_cfg + + @property + def pyproject_toml_path(self) -> str: + assert self.source_dir, f"No source dir for {self}" + return make_pyproject_path(self.unpacked_source_directory) + + def load_pyproject_toml(self) -> None: + """Load the pyproject.toml file. + + After calling this routine, all of the attributes related to PEP 517 + processing for this requirement have been set. In particular, the + use_pep517 attribute can be used to determine whether we should + follow the PEP 517 or legacy (setup.py) code path. + """ + pyproject_toml_data = load_pyproject_toml( + self.use_pep517, self.pyproject_toml_path, self.setup_py_path, str(self) + ) + + if pyproject_toml_data is None: + self.use_pep517 = False + return + + self.use_pep517 = True + requires, backend, check, backend_path = pyproject_toml_data + self.requirements_to_check = check + self.pyproject_requires = requires + self.pep517_backend = Pep517HookCaller( + self.unpacked_source_directory, + backend, + backend_path=backend_path, + ) + + def isolated_editable_sanity_check(self) -> None: + """Check that an editable requirement if valid for use with PEP 517/518. + + This verifies that an editable that has a pyproject.toml either supports PEP 660 + or as a setup.py or a setup.cfg + """ + if ( + self.editable + and self.use_pep517 + and not self.supports_pyproject_editable() + and not os.path.isfile(self.setup_py_path) + and not os.path.isfile(self.setup_cfg_path) + ): + raise InstallationError( + f"Project {self} has a 'pyproject.toml' and its build " + f"backend is missing the 'build_editable' hook. Since it does not " + f"have a 'setup.py' nor a 'setup.cfg', " + f"it cannot be installed in editable mode. " + f"Consider using a build backend that supports PEP 660." + ) + + def prepare_metadata(self) -> None: + """Ensure that project metadata is available. + + Under PEP 517 and PEP 660, call the backend hook to prepare the metadata. + Under legacy processing, call setup.py egg-info. + """ + assert self.source_dir + details = self.name or f"from {self.link}" + + if self.use_pep517: + assert self.pep517_backend is not None + if ( + self.editable + and self.permit_editable_wheels + and self.supports_pyproject_editable() + ): + self.metadata_directory = generate_editable_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata( + build_env=self.build_env, + backend=self.pep517_backend, + details=details, + ) + else: + self.metadata_directory = generate_metadata_legacy( + build_env=self.build_env, + setup_py_path=self.setup_py_path, + source_dir=self.unpacked_source_directory, + isolated=self.isolated, + details=details, + ) + + # Act on the newly generated metadata, based on the name and version. + if not self.name: + self._set_requirement() + else: + self.warn_on_mismatching_name() + + self.assert_source_matches_version() + + @property + def metadata(self) -> Any: + if not hasattr(self, "_metadata"): + self._metadata = self.get_dist().metadata + + return self._metadata + + def get_dist(self) -> BaseDistribution: + return get_directory_distribution(self.metadata_directory) + + def assert_source_matches_version(self) -> None: + assert self.source_dir + version = self.metadata["version"] + if self.req.specifier and version not in self.req.specifier: + logger.warning( + "Requested %s, but installing version %s", + self, + version, + ) + else: + logger.debug( + "Source in %s has version %s, which satisfies requirement %s", + display_path(self.source_dir), + version, + self, + ) + + # For both source distributions and editables + def ensure_has_source_dir( + self, + parent_dir: str, + autodelete: bool = False, + parallel_builds: bool = False, + ) -> None: + """Ensure that a source_dir is set. + + This will create a temporary build dir if the name of the requirement + isn't known yet. + + :param parent_dir: The ideal pip parent_dir for the source_dir. + Generally src_dir for editables and build_dir for sdists. + :return: self.source_dir + """ + if self.source_dir is None: + self.source_dir = self.ensure_build_location( + parent_dir, + autodelete=autodelete, + parallel_builds=parallel_builds, + ) + + # For editable installations + def update_editable(self) -> None: + if not self.link: + logger.debug( + "Cannot update repository at %s; repository location is unknown", + self.source_dir, + ) + return + assert self.editable + assert self.source_dir + if self.link.scheme == "file": + # Static paths don't get updated + return + vcs_backend = vcs.get_backend_for_scheme(self.link.scheme) + # Editable requirements are validated in Requirement constructors. + # So here, if it's neither a path nor a valid VCS URL, it's a bug. + assert vcs_backend, f"Unsupported VCS URL {self.link.url}" + hidden_url = hide_url(self.link.url) + vcs_backend.obtain(self.source_dir, url=hidden_url, verbosity=0) + + # Top-level Actions + def uninstall( + self, auto_confirm: bool = False, verbose: bool = False + ) -> Optional[UninstallPathSet]: + """ + Uninstall the distribution currently satisfying this requirement. + + Prompts before removing or modifying files unless + ``auto_confirm`` is True. + + Refuses to delete or modify files outside of ``sys.prefix`` - + thus uninstallation within a virtual environment can only + modify that virtual environment, even if the virtualenv is + linked to global site-packages. + + """ + assert self.req + dist = get_default_environment().get_distribution(self.req.name) + if not dist: + logger.warning("Skipping %s as it is not installed.", self.name) + return None + logger.info("Found existing installation: %s", dist) + + uninstalled_pathset = UninstallPathSet.from_dist(dist) + uninstalled_pathset.remove(auto_confirm, verbose) + return uninstalled_pathset + + def _get_archive_name(self, path: str, parentdir: str, rootdir: str) -> str: + def _clean_zip_name(name: str, prefix: str) -> str: + assert name.startswith( + prefix + os.path.sep + ), f"name {name!r} doesn't start with prefix {prefix!r}" + name = name[len(prefix) + 1 :] + name = name.replace(os.path.sep, "/") + return name + + path = os.path.join(parentdir, path) + name = _clean_zip_name(path, rootdir) + return self.name + "/" + name + + def archive(self, build_dir: Optional[str]) -> None: + """Saves archive to provided build_dir. + + Used for saving downloaded VCS requirements as part of `pip download`. + """ + assert self.source_dir + if build_dir is None: + return + + create_archive = True + archive_name = "{}-{}.zip".format(self.name, self.metadata["version"]) + archive_path = os.path.join(build_dir, archive_name) + + if os.path.exists(archive_path): + response = ask_path_exists( + "The file {} exists. (i)gnore, (w)ipe, " + "(b)ackup, (a)bort ".format(display_path(archive_path)), + ("i", "w", "b", "a"), + ) + if response == "i": + create_archive = False + elif response == "w": + logger.warning("Deleting %s", display_path(archive_path)) + os.remove(archive_path) + elif response == "b": + dest_file = backup_dir(archive_path) + logger.warning( + "Backing up %s to %s", + display_path(archive_path), + display_path(dest_file), + ) + shutil.move(archive_path, dest_file) + elif response == "a": + sys.exit(-1) + + if not create_archive: + return + + zip_output = zipfile.ZipFile( + archive_path, + "w", + zipfile.ZIP_DEFLATED, + allowZip64=True, + ) + with zip_output: + dir = os.path.normcase(os.path.abspath(self.unpacked_source_directory)) + for dirpath, dirnames, filenames in os.walk(dir): + for dirname in dirnames: + dir_arcname = self._get_archive_name( + dirname, + parentdir=dirpath, + rootdir=dir, + ) + zipdir = zipfile.ZipInfo(dir_arcname + "/") + zipdir.external_attr = 0x1ED << 16 # 0o755 + zip_output.writestr(zipdir, "") + for filename in filenames: + file_arcname = self._get_archive_name( + filename, + parentdir=dirpath, + rootdir=dir, + ) + filename = os.path.join(dirpath, filename) + zip_output.write(filename, file_arcname) + + logger.info("Saved %s", display_path(archive_path)) + + def install( + self, + install_options: List[str], + global_options: Optional[Sequence[str]] = None, + root: Optional[str] = None, + home: Optional[str] = None, + prefix: Optional[str] = None, + warn_script_location: bool = True, + use_user_site: bool = False, + pycompile: bool = True, + ) -> None: + scheme = get_scheme( + self.name, + user=use_user_site, + home=home, + root=root, + isolated=self.isolated, + prefix=prefix, + ) + + global_options = global_options if global_options is not None else [] + if self.editable and not self.is_wheel: + install_editable_legacy( + install_options, + global_options, + prefix=prefix, + home=home, + use_user_site=use_user_site, + name=self.name, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + ) + self.install_succeeded = True + return + + if self.is_wheel: + assert self.local_file_path + direct_url = None + if self.editable: + direct_url = direct_url_for_editable(self.unpacked_source_directory) + elif self.original_link: + direct_url = direct_url_from_link( + self.original_link, + self.source_dir, + self.original_link_is_in_wheel_cache, + ) + install_wheel( + self.name, + self.local_file_path, + scheme=scheme, + req_description=str(self.req), + pycompile=pycompile, + warn_script_location=warn_script_location, + direct_url=direct_url, + requested=self.user_supplied, + ) + self.install_succeeded = True + return + + # TODO: Why don't we do this for editable installs? + + # Extend the list of global and install options passed on to + # the setup.py call with the ones from the requirements file. + # Options specified in requirements file override those + # specified on the command line, since the last option given + # to setup.py is the one that is used. + global_options = list(global_options) + self.global_options + install_options = list(install_options) + self.install_options + + try: + success = install_legacy( + install_options=install_options, + global_options=global_options, + root=root, + home=home, + prefix=prefix, + use_user_site=use_user_site, + pycompile=pycompile, + scheme=scheme, + setup_py_path=self.setup_py_path, + isolated=self.isolated, + req_name=self.name, + build_env=self.build_env, + unpacked_source_directory=self.unpacked_source_directory, + req_description=str(self.req), + ) + except LegacyInstallFailure as exc: + self.install_succeeded = False + raise exc + except Exception: + self.install_succeeded = True + raise + + self.install_succeeded = success + + if success and self.legacy_install_reason == 8368: + deprecated( + reason=( + "{} was installed using the legacy 'setup.py install' " + "method, because a wheel could not be built for it.".format( + self.name + ) + ), + replacement="to fix the wheel build issue reported above", + gone_in=None, + issue=8368, + ) + + +def check_invalid_constraint_type(req: InstallRequirement) -> str: + + # Check for unsupported forms + problem = "" + if not req.name: + problem = "Unnamed requirements are not allowed as constraints" + elif req.editable: + problem = "Editable requirements are not allowed as constraints" + elif req.extras: + problem = "Constraints cannot have extras" + + if problem: + deprecated( + reason=( + "Constraints are only allowed to take the form of a package " + "name and a version specifier. Other forms were originally " + "permitted as an accident of the implementation, but were " + "undocumented. The new implementation of the resolver no " + "longer supports these forms." + ), + replacement="replacing the constraint with a requirement", + # No plan yet for when the new resolver becomes default + gone_in=None, + issue=8210, + ) + + return problem diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_set.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_set.py new file mode 100644 index 0000000..6626c37 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_set.py @@ -0,0 +1,189 @@ +import logging +from collections import OrderedDict +from typing import Dict, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import InstallationError +from pip._internal.models.wheel import Wheel +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils import compatibility_tags + +logger = logging.getLogger(__name__) + + +class RequirementSet: + def __init__(self, check_supported_wheels: bool = True) -> None: + """Create a RequirementSet.""" + + self.requirements: Dict[str, InstallRequirement] = OrderedDict() + self.check_supported_wheels = check_supported_wheels + + self.unnamed_requirements: List[InstallRequirement] = [] + + def __str__(self) -> str: + requirements = sorted( + (req for req in self.requirements.values() if not req.comes_from), + key=lambda req: canonicalize_name(req.name or ""), + ) + return " ".join(str(req.req) for req in requirements) + + def __repr__(self) -> str: + requirements = sorted( + self.requirements.values(), + key=lambda req: canonicalize_name(req.name or ""), + ) + + format_string = "<{classname} object; {count} requirement(s): {reqs}>" + return format_string.format( + classname=self.__class__.__name__, + count=len(requirements), + reqs=", ".join(str(req.req) for req in requirements), + ) + + def add_unnamed_requirement(self, install_req: InstallRequirement) -> None: + assert not install_req.name + self.unnamed_requirements.append(install_req) + + def add_named_requirement(self, install_req: InstallRequirement) -> None: + assert install_req.name + + project_name = canonicalize_name(install_req.name) + self.requirements[project_name] = install_req + + def add_requirement( + self, + install_req: InstallRequirement, + parent_req_name: Optional[str] = None, + extras_requested: Optional[Iterable[str]] = None, + ) -> Tuple[List[InstallRequirement], Optional[InstallRequirement]]: + """Add install_req as a requirement to install. + + :param parent_req_name: The name of the requirement that needed this + added. The name is used because when multiple unnamed requirements + resolve to the same name, we could otherwise end up with dependency + links that point outside the Requirements set. parent_req must + already be added. Note that None implies that this is a user + supplied requirement, vs an inferred one. + :param extras_requested: an iterable of extras used to evaluate the + environment markers. + :return: Additional requirements to scan. That is either [] if + the requirement is not applicable, or [install_req] if the + requirement is applicable and has just been added. + """ + # If the markers do not match, ignore this requirement. + if not install_req.match_markers(extras_requested): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + install_req.name, + install_req.markers, + ) + return [], None + + # If the wheel is not supported, raise an error. + # Should check this after filtering out based on environment markers to + # allow specifying different wheels based on the environment/OS, in a + # single requirements file. + if install_req.link and install_req.link.is_wheel: + wheel = Wheel(install_req.link.filename) + tags = compatibility_tags.get_supported() + if self.check_supported_wheels and not wheel.supported(tags): + raise InstallationError( + "{} is not a supported wheel on this platform.".format( + wheel.filename + ) + ) + + # This next bit is really a sanity check. + assert ( + not install_req.user_supplied or parent_req_name is None + ), "a user supplied req shouldn't have a parent" + + # Unnamed requirements are scanned again and the requirement won't be + # added as a dependency until after scanning. + if not install_req.name: + self.add_unnamed_requirement(install_req) + return [install_req], None + + try: + existing_req: Optional[InstallRequirement] = self.get_requirement( + install_req.name + ) + except KeyError: + existing_req = None + + has_conflicting_requirement = ( + parent_req_name is None + and existing_req + and not existing_req.constraint + and existing_req.extras == install_req.extras + and existing_req.req + and install_req.req + and existing_req.req.specifier != install_req.req.specifier + ) + if has_conflicting_requirement: + raise InstallationError( + "Double requirement given: {} (already in {}, name={!r})".format( + install_req, existing_req, install_req.name + ) + ) + + # When no existing requirement exists, add the requirement as a + # dependency and it will be scanned again after. + if not existing_req: + self.add_named_requirement(install_req) + # We'd want to rescan this requirement later + return [install_req], install_req + + # Assume there's no need to scan, and that we've already + # encountered this for scanning. + if install_req.constraint or not existing_req.constraint: + return [], existing_req + + does_not_satisfy_constraint = install_req.link and not ( + existing_req.link and install_req.link.path == existing_req.link.path + ) + if does_not_satisfy_constraint: + raise InstallationError( + "Could not satisfy constraints for '{}': " + "installation from path or url cannot be " + "constrained to a version".format(install_req.name) + ) + # If we're now installing a constraint, mark the existing + # object for real installation. + existing_req.constraint = False + # If we're now installing a user supplied requirement, + # mark the existing object as such. + if install_req.user_supplied: + existing_req.user_supplied = True + existing_req.extras = tuple( + sorted(set(existing_req.extras) | set(install_req.extras)) + ) + logger.debug( + "Setting %s extras to: %s", + existing_req, + existing_req.extras, + ) + # Return the existing requirement for addition to the parent and + # scanning again. + return [existing_req], existing_req + + def has_requirement(self, name: str) -> bool: + project_name = canonicalize_name(name) + + return ( + project_name in self.requirements + and not self.requirements[project_name].constraint + ) + + def get_requirement(self, name: str) -> InstallRequirement: + project_name = canonicalize_name(name) + + if project_name in self.requirements: + return self.requirements[project_name] + + raise KeyError(f"No project with the name {name!r}") + + @property + def all_requirements(self) -> List[InstallRequirement]: + return self.unnamed_requirements + list(self.requirements.values()) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py new file mode 100644 index 0000000..24d3c53 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_tracker.py @@ -0,0 +1,124 @@ +import contextlib +import hashlib +import logging +import os +from types import TracebackType +from typing import Dict, Iterator, Optional, Set, Type, Union + +from pip._internal.models.link import Link +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.temp_dir import TempDirectory + +logger = logging.getLogger(__name__) + + +@contextlib.contextmanager +def update_env_context_manager(**changes: str) -> Iterator[None]: + target = os.environ + + # Save values from the target and change them. + non_existent_marker = object() + saved_values: Dict[str, Union[object, str]] = {} + for name, new_value in changes.items(): + try: + saved_values[name] = target[name] + except KeyError: + saved_values[name] = non_existent_marker + target[name] = new_value + + try: + yield + finally: + # Restore original values in the target. + for name, original_value in saved_values.items(): + if original_value is non_existent_marker: + del target[name] + else: + assert isinstance(original_value, str) # for mypy + target[name] = original_value + + +@contextlib.contextmanager +def get_requirement_tracker() -> Iterator["RequirementTracker"]: + root = os.environ.get("PIP_REQ_TRACKER") + with contextlib.ExitStack() as ctx: + if root is None: + root = ctx.enter_context(TempDirectory(kind="req-tracker")).path + ctx.enter_context(update_env_context_manager(PIP_REQ_TRACKER=root)) + logger.debug("Initialized build tracking at %s", root) + + with RequirementTracker(root) as tracker: + yield tracker + + +class RequirementTracker: + def __init__(self, root: str) -> None: + self._root = root + self._entries: Set[InstallRequirement] = set() + logger.debug("Created build tracker: %s", self._root) + + def __enter__(self) -> "RequirementTracker": + logger.debug("Entered build tracker: %s", self._root) + return self + + def __exit__( + self, + exc_type: Optional[Type[BaseException]], + exc_val: Optional[BaseException], + exc_tb: Optional[TracebackType], + ) -> None: + self.cleanup() + + def _entry_path(self, link: Link) -> str: + hashed = hashlib.sha224(link.url_without_fragment.encode()).hexdigest() + return os.path.join(self._root, hashed) + + def add(self, req: InstallRequirement) -> None: + """Add an InstallRequirement to build tracking.""" + + assert req.link + # Get the file to write information about this requirement. + entry_path = self._entry_path(req.link) + + # Try reading from the file. If it exists and can be read from, a build + # is already in progress, so a LookupError is raised. + try: + with open(entry_path) as fp: + contents = fp.read() + except FileNotFoundError: + pass + else: + message = "{} is already being built: {}".format(req.link, contents) + raise LookupError(message) + + # If we're here, req should really not be building already. + assert req not in self._entries + + # Start tracking this requirement. + with open(entry_path, "w", encoding="utf-8") as fp: + fp.write(str(req)) + self._entries.add(req) + + logger.debug("Added %s to build tracker %r", req, self._root) + + def remove(self, req: InstallRequirement) -> None: + """Remove an InstallRequirement from build tracking.""" + + assert req.link + # Delete the created file and the corresponding entries. + os.unlink(self._entry_path(req.link)) + self._entries.remove(req) + + logger.debug("Removed %s from build tracker %r", req, self._root) + + def cleanup(self) -> None: + for req in set(self._entries): + self.remove(req) + + logger.debug("Removed build tracker: %r", self._root) + + @contextlib.contextmanager + def track(self, req: InstallRequirement) -> Iterator[None]: + self.add(req) + yield + self.remove(req) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py new file mode 100644 index 0000000..472090a --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py @@ -0,0 +1,633 @@ +import functools +import os +import sys +import sysconfig +from importlib.util import cache_from_source +from typing import Any, Callable, Dict, Iterable, Iterator, List, Optional, Set, Tuple + +from pip._internal.exceptions import UninstallationError +from pip._internal.locations import get_bin_prefix, get_bin_user +from pip._internal.metadata import BaseDistribution +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.egg_link import egg_link_path_from_location +from pip._internal.utils.logging import getLogger, indent_log +from pip._internal.utils.misc import ask, is_local, normalize_path, renames, rmtree +from pip._internal.utils.temp_dir import AdjacentTempDirectory, TempDirectory + +logger = getLogger(__name__) + + +def _script_names(bin_dir: str, script_name: str, is_gui: bool) -> Iterator[str]: + """Create the fully qualified name of the files created by + {console,gui}_scripts for the given ``dist``. + Returns the list of file names + """ + exe_name = os.path.join(bin_dir, script_name) + yield exe_name + if not WINDOWS: + return + yield f"{exe_name}.exe" + yield f"{exe_name}.exe.manifest" + if is_gui: + yield f"{exe_name}-script.pyw" + else: + yield f"{exe_name}-script.py" + + +def _unique(fn: Callable[..., Iterator[Any]]) -> Callable[..., Iterator[Any]]: + @functools.wraps(fn) + def unique(*args: Any, **kw: Any) -> Iterator[Any]: + seen: Set[Any] = set() + for item in fn(*args, **kw): + if item not in seen: + seen.add(item) + yield item + + return unique + + +@_unique +def uninstallation_paths(dist: BaseDistribution) -> Iterator[str]: + """ + Yield all the uninstallation paths for dist based on RECORD-without-.py[co] + + Yield paths to all the files in RECORD. For each .py file in RECORD, add + the .pyc and .pyo in the same directory. + + UninstallPathSet.add() takes care of the __pycache__ .py[co]. + + If RECORD is not found, raises UninstallationError, + with possible information from the INSTALLER file. + + https://packaging.python.org/specifications/recording-installed-packages/ + """ + location = dist.location + assert location is not None, "not installed" + + entries = dist.iter_declared_entries() + if entries is None: + msg = "Cannot uninstall {dist}, RECORD file not found.".format(dist=dist) + installer = dist.installer + if not installer or installer == "pip": + dep = "{}=={}".format(dist.raw_name, dist.version) + msg += ( + " You might be able to recover from this via: " + "'pip install --force-reinstall --no-deps {}'.".format(dep) + ) + else: + msg += " Hint: The package was installed by {}.".format(installer) + raise UninstallationError(msg) + + for entry in entries: + path = os.path.join(location, entry) + yield path + if path.endswith(".py"): + dn, fn = os.path.split(path) + base = fn[:-3] + path = os.path.join(dn, base + ".pyc") + yield path + path = os.path.join(dn, base + ".pyo") + yield path + + +def compact(paths: Iterable[str]) -> Set[str]: + """Compact a path set to contain the minimal number of paths + necessary to contain all paths in the set. If /a/path/ and + /a/path/to/a/file.txt are both in the set, leave only the + shorter path.""" + + sep = os.path.sep + short_paths: Set[str] = set() + for path in sorted(paths, key=len): + should_skip = any( + path.startswith(shortpath.rstrip("*")) + and path[len(shortpath.rstrip("*").rstrip(sep))] == sep + for shortpath in short_paths + ) + if not should_skip: + short_paths.add(path) + return short_paths + + +def compress_for_rename(paths: Iterable[str]) -> Set[str]: + """Returns a set containing the paths that need to be renamed. + + This set may include directories when the original sequence of paths + included every file on disk. + """ + case_map = {os.path.normcase(p): p for p in paths} + remaining = set(case_map) + unchecked = sorted({os.path.split(p)[0] for p in case_map.values()}, key=len) + wildcards: Set[str] = set() + + def norm_join(*a: str) -> str: + return os.path.normcase(os.path.join(*a)) + + for root in unchecked: + if any(os.path.normcase(root).startswith(w) for w in wildcards): + # This directory has already been handled. + continue + + all_files: Set[str] = set() + all_subdirs: Set[str] = set() + for dirname, subdirs, files in os.walk(root): + all_subdirs.update(norm_join(root, dirname, d) for d in subdirs) + all_files.update(norm_join(root, dirname, f) for f in files) + # If all the files we found are in our remaining set of files to + # remove, then remove them from the latter set and add a wildcard + # for the directory. + if not (all_files - remaining): + remaining.difference_update(all_files) + wildcards.add(root + os.sep) + + return set(map(case_map.__getitem__, remaining)) | wildcards + + +def compress_for_output_listing(paths: Iterable[str]) -> Tuple[Set[str], Set[str]]: + """Returns a tuple of 2 sets of which paths to display to user + + The first set contains paths that would be deleted. Files of a package + are not added and the top-level directory of the package has a '*' added + at the end - to signify that all it's contents are removed. + + The second set contains files that would have been skipped in the above + folders. + """ + + will_remove = set(paths) + will_skip = set() + + # Determine folders and files + folders = set() + files = set() + for path in will_remove: + if path.endswith(".pyc"): + continue + if path.endswith("__init__.py") or ".dist-info" in path: + folders.add(os.path.dirname(path)) + files.add(path) + + # probably this one https://github.com/python/mypy/issues/390 + _normcased_files = set(map(os.path.normcase, files)) # type: ignore + + folders = compact(folders) + + # This walks the tree using os.walk to not miss extra folders + # that might get added. + for folder in folders: + for dirpath, _, dirfiles in os.walk(folder): + for fname in dirfiles: + if fname.endswith(".pyc"): + continue + + file_ = os.path.join(dirpath, fname) + if ( + os.path.isfile(file_) + and os.path.normcase(file_) not in _normcased_files + ): + # We are skipping this file. Add it to the set. + will_skip.add(file_) + + will_remove = files | {os.path.join(folder, "*") for folder in folders} + + return will_remove, will_skip + + +class StashedUninstallPathSet: + """A set of file rename operations to stash files while + tentatively uninstalling them.""" + + def __init__(self) -> None: + # Mapping from source file root to [Adjacent]TempDirectory + # for files under that directory. + self._save_dirs: Dict[str, TempDirectory] = {} + # (old path, new path) tuples for each move that may need + # to be undone. + self._moves: List[Tuple[str, str]] = [] + + def _get_directory_stash(self, path: str) -> str: + """Stashes a directory. + + Directories are stashed adjacent to their original location if + possible, or else moved/copied into the user's temp dir.""" + + try: + save_dir: TempDirectory = AdjacentTempDirectory(path) + except OSError: + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[os.path.normcase(path)] = save_dir + + return save_dir.path + + def _get_file_stash(self, path: str) -> str: + """Stashes a file. + + If no root has been provided, one will be created for the directory + in the user's temp directory.""" + path = os.path.normcase(path) + head, old_head = os.path.dirname(path), None + save_dir = None + + while head != old_head: + try: + save_dir = self._save_dirs[head] + break + except KeyError: + pass + head, old_head = os.path.dirname(head), head + else: + # Did not find any suitable root + head = os.path.dirname(path) + save_dir = TempDirectory(kind="uninstall") + self._save_dirs[head] = save_dir + + relpath = os.path.relpath(path, head) + if relpath and relpath != os.path.curdir: + return os.path.join(save_dir.path, relpath) + return save_dir.path + + def stash(self, path: str) -> str: + """Stashes the directory or file and returns its new location. + Handle symlinks as files to avoid modifying the symlink targets. + """ + path_is_dir = os.path.isdir(path) and not os.path.islink(path) + if path_is_dir: + new_path = self._get_directory_stash(path) + else: + new_path = self._get_file_stash(path) + + self._moves.append((path, new_path)) + if path_is_dir and os.path.isdir(new_path): + # If we're moving a directory, we need to + # remove the destination first or else it will be + # moved to inside the existing directory. + # We just created new_path ourselves, so it will + # be removable. + os.rmdir(new_path) + renames(path, new_path) + return new_path + + def commit(self) -> None: + """Commits the uninstall by removing stashed files.""" + for _, save_dir in self._save_dirs.items(): + save_dir.cleanup() + self._moves = [] + self._save_dirs = {} + + def rollback(self) -> None: + """Undoes the uninstall by moving stashed files back.""" + for p in self._moves: + logger.info("Moving to %s\n from %s", *p) + + for new_path, path in self._moves: + try: + logger.debug("Replacing %s from %s", new_path, path) + if os.path.isfile(new_path) or os.path.islink(new_path): + os.unlink(new_path) + elif os.path.isdir(new_path): + rmtree(new_path) + renames(path, new_path) + except OSError as ex: + logger.error("Failed to restore %s", new_path) + logger.debug("Exception: %s", ex) + + self.commit() + + @property + def can_rollback(self) -> bool: + return bool(self._moves) + + +class UninstallPathSet: + """A set of file paths to be removed in the uninstallation of a + requirement.""" + + def __init__(self, dist: BaseDistribution) -> None: + self._paths: Set[str] = set() + self._refuse: Set[str] = set() + self._pth: Dict[str, UninstallPthEntries] = {} + self._dist = dist + self._moved_paths = StashedUninstallPathSet() + + def _permitted(self, path: str) -> bool: + """ + Return True if the given path is one we are permitted to + remove/modify, False otherwise. + + """ + return is_local(path) + + def add(self, path: str) -> None: + head, tail = os.path.split(path) + + # we normalize the head to resolve parent directory symlinks, but not + # the tail, since we only want to uninstall symlinks, not their targets + path = os.path.join(normalize_path(head), os.path.normcase(tail)) + + if not os.path.exists(path): + return + if self._permitted(path): + self._paths.add(path) + else: + self._refuse.add(path) + + # __pycache__ files can show up after 'installed-files.txt' is created, + # due to imports + if os.path.splitext(path)[1] == ".py": + self.add(cache_from_source(path)) + + def add_pth(self, pth_file: str, entry: str) -> None: + pth_file = normalize_path(pth_file) + if self._permitted(pth_file): + if pth_file not in self._pth: + self._pth[pth_file] = UninstallPthEntries(pth_file) + self._pth[pth_file].add(entry) + else: + self._refuse.add(pth_file) + + def remove(self, auto_confirm: bool = False, verbose: bool = False) -> None: + """Remove paths in ``self._paths`` with confirmation (unless + ``auto_confirm`` is True).""" + + if not self._paths: + logger.info( + "Can't uninstall '%s'. No files were found to uninstall.", + self._dist.raw_name, + ) + return + + dist_name_version = f"{self._dist.raw_name}-{self._dist.version}" + logger.info("Uninstalling %s:", dist_name_version) + + with indent_log(): + if auto_confirm or self._allowed_to_proceed(verbose): + moved = self._moved_paths + + for_rename = compress_for_rename(self._paths) + + for path in sorted(compact(for_rename)): + moved.stash(path) + logger.verbose("Removing file or directory %s", path) + + for pth in self._pth.values(): + pth.remove() + + logger.info("Successfully uninstalled %s", dist_name_version) + + def _allowed_to_proceed(self, verbose: bool) -> bool: + """Display which files would be deleted and prompt for confirmation""" + + def _display(msg: str, paths: Iterable[str]) -> None: + if not paths: + return + + logger.info(msg) + with indent_log(): + for path in sorted(compact(paths)): + logger.info(path) + + if not verbose: + will_remove, will_skip = compress_for_output_listing(self._paths) + else: + # In verbose mode, display all the files that are going to be + # deleted. + will_remove = set(self._paths) + will_skip = set() + + _display("Would remove:", will_remove) + _display("Would not remove (might be manually added):", will_skip) + _display("Would not remove (outside of prefix):", self._refuse) + if verbose: + _display("Will actually move:", compress_for_rename(self._paths)) + + return ask("Proceed (Y/n)? ", ("y", "n", "")) != "n" + + def rollback(self) -> None: + """Rollback the changes previously made by remove().""" + if not self._moved_paths.can_rollback: + logger.error( + "Can't roll back %s; was not uninstalled", + self._dist.raw_name, + ) + return + logger.info("Rolling back uninstall of %s", self._dist.raw_name) + self._moved_paths.rollback() + for pth in self._pth.values(): + pth.rollback() + + def commit(self) -> None: + """Remove temporary save dir: rollback will no longer be possible.""" + self._moved_paths.commit() + + @classmethod + def from_dist(cls, dist: BaseDistribution) -> "UninstallPathSet": + dist_location = dist.location + info_location = dist.info_location + if dist_location is None: + logger.info( + "Not uninstalling %s since it is not installed", + dist.canonical_name, + ) + return cls(dist) + + normalized_dist_location = normalize_path(dist_location) + if not dist.local: + logger.info( + "Not uninstalling %s at %s, outside environment %s", + dist.canonical_name, + normalized_dist_location, + sys.prefix, + ) + return cls(dist) + + if normalized_dist_location in { + p + for p in {sysconfig.get_path("stdlib"), sysconfig.get_path("platstdlib")} + if p + }: + logger.info( + "Not uninstalling %s at %s, as it is in the standard library.", + dist.canonical_name, + normalized_dist_location, + ) + return cls(dist) + + paths_to_remove = cls(dist) + develop_egg_link = egg_link_path_from_location(dist.raw_name) + + # Distribution is installed with metadata in a "flat" .egg-info + # directory. This means it is not a modern .dist-info installation, an + # egg, or legacy editable. + setuptools_flat_installation = ( + dist.installed_with_setuptools_egg_info + and info_location is not None + and os.path.exists(info_location) + # If dist is editable and the location points to a ``.egg-info``, + # we are in fact in the legacy editable case. + and not info_location.endswith(f"{dist.setuptools_filename}.egg-info") + ) + + # Uninstall cases order do matter as in the case of 2 installs of the + # same package, pip needs to uninstall the currently detected version + if setuptools_flat_installation: + if info_location is not None: + paths_to_remove.add(info_location) + installed_files = dist.iter_declared_entries() + if installed_files is not None: + for installed_file in installed_files: + paths_to_remove.add(os.path.join(dist_location, installed_file)) + # FIXME: need a test for this elif block + # occurs with --single-version-externally-managed/--record outside + # of pip + elif dist.is_file("top_level.txt"): + try: + namespace_packages = dist.read_text("namespace_packages.txt") + except FileNotFoundError: + namespaces = [] + else: + namespaces = namespace_packages.splitlines(keepends=False) + for top_level_pkg in [ + p + for p in dist.read_text("top_level.txt").splitlines() + if p and p not in namespaces + ]: + path = os.path.join(dist_location, top_level_pkg) + paths_to_remove.add(path) + paths_to_remove.add(f"{path}.py") + paths_to_remove.add(f"{path}.pyc") + paths_to_remove.add(f"{path}.pyo") + + elif dist.installed_by_distutils: + raise UninstallationError( + "Cannot uninstall {!r}. It is a distutils installed project " + "and thus we cannot accurately determine which files belong " + "to it which would lead to only a partial uninstall.".format( + dist.raw_name, + ) + ) + + elif dist.installed_as_egg: + # package installed by easy_install + # We cannot match on dist.egg_name because it can slightly vary + # i.e. setuptools-0.6c11-py2.6.egg vs setuptools-0.6rc11-py2.6.egg + paths_to_remove.add(dist_location) + easy_install_egg = os.path.split(dist_location)[1] + easy_install_pth = os.path.join( + os.path.dirname(dist_location), + "easy-install.pth", + ) + paths_to_remove.add_pth(easy_install_pth, "./" + easy_install_egg) + + elif dist.installed_with_dist_info: + for path in uninstallation_paths(dist): + paths_to_remove.add(path) + + elif develop_egg_link: + # PEP 660 modern editable is handled in the ``.dist-info`` case + # above, so this only covers the setuptools-style editable. + with open(develop_egg_link) as fh: + link_pointer = os.path.normcase(fh.readline().strip()) + assert link_pointer == dist_location, ( + f"Egg-link {link_pointer} does not match installed location of " + f"{dist.raw_name} (at {dist_location})" + ) + paths_to_remove.add(develop_egg_link) + easy_install_pth = os.path.join( + os.path.dirname(develop_egg_link), "easy-install.pth" + ) + paths_to_remove.add_pth(easy_install_pth, dist_location) + + else: + logger.debug( + "Not sure how to uninstall: %s - Check: %s", + dist, + dist_location, + ) + + if dist.in_usersite: + bin_dir = get_bin_user() + else: + bin_dir = get_bin_prefix() + + # find distutils scripts= scripts + try: + for script in dist.iterdir("scripts"): + paths_to_remove.add(os.path.join(bin_dir, script.name)) + if WINDOWS: + paths_to_remove.add(os.path.join(bin_dir, f"{script.name}.bat")) + except (FileNotFoundError, NotADirectoryError): + pass + + # find console_scripts and gui_scripts + def iter_scripts_to_remove( + dist: BaseDistribution, + bin_dir: str, + ) -> Iterator[str]: + for entry_point in dist.iter_entry_points(): + if entry_point.group == "console_scripts": + yield from _script_names(bin_dir, entry_point.name, False) + elif entry_point.group == "gui_scripts": + yield from _script_names(bin_dir, entry_point.name, True) + + for s in iter_scripts_to_remove(dist, bin_dir): + paths_to_remove.add(s) + + return paths_to_remove + + +class UninstallPthEntries: + def __init__(self, pth_file: str) -> None: + self.file = pth_file + self.entries: Set[str] = set() + self._saved_lines: Optional[List[bytes]] = None + + def add(self, entry: str) -> None: + entry = os.path.normcase(entry) + # On Windows, os.path.normcase converts the entry to use + # backslashes. This is correct for entries that describe absolute + # paths outside of site-packages, but all the others use forward + # slashes. + # os.path.splitdrive is used instead of os.path.isabs because isabs + # treats non-absolute paths with drive letter markings like c:foo\bar + # as absolute paths. It also does not recognize UNC paths if they don't + # have more than "\\sever\share". Valid examples: "\\server\share\" or + # "\\server\share\folder". + if WINDOWS and not os.path.splitdrive(entry)[0]: + entry = entry.replace("\\", "/") + self.entries.add(entry) + + def remove(self) -> None: + logger.verbose("Removing pth entries from %s:", self.file) + + # If the file doesn't exist, log a warning and return + if not os.path.isfile(self.file): + logger.warning("Cannot remove entries from nonexistent file %s", self.file) + return + with open(self.file, "rb") as fh: + # windows uses '\r\n' with py3k, but uses '\n' with py2.x + lines = fh.readlines() + self._saved_lines = lines + if any(b"\r\n" in line for line in lines): + endline = "\r\n" + else: + endline = "\n" + # handle missing trailing newline + if lines and not lines[-1].endswith(endline.encode("utf-8")): + lines[-1] = lines[-1] + endline.encode("utf-8") + for entry in self.entries: + try: + logger.verbose("Removing entry: %s", entry) + lines.remove((entry + endline).encode("utf-8")) + except ValueError: + pass + with open(self.file, "wb") as fh: + fh.writelines(lines) + + def rollback(self) -> bool: + if self._saved_lines is None: + logger.error("Cannot roll back changes to %s, none were made", self.file) + return False + logger.debug("Rolling %s back to previous state", self.file) + with open(self.file, "wb") as fh: + fh.writelines(self._saved_lines) + return True diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..98f9633c7fce3218eab03cd6156d28b7bfbb9a18 GIT binary patch literal 204 zcmYk0K?=e!6hu?$LWCZ~h5bswm5QJ{K?DyFQu}LzX?{pjq29=)*KzADT$zBN1M`NN z)lim=SkU9Pt7E<*{*{EX4t8lk#g1&8?C;FR`G+?_LoI@kR*4c0{T8oKS<<*6?JX&V z7EJFO(#s;BgOcU97Wr%nPI{aeak_{zIxx}zm)fJ%LV-m`s`HXG@UTkHd2agWaM4oL MDO|-PZV-^N4<|r2KL7v# literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f099f557b9a3b3cfbc430a8e518512853536491 GIT binary patch literal 1056 zcmZuwJx?1!5Z>@YxuW06_vNRVo+pB|=I?A`}uKl!zeGU2{5n$L7S|?RjqP$drLU zLz%y`ZK~9CDIl|FNQlBn^E|UN+I{oJrP}mwD+0xWpKe{a4wRL48O2m z>nGjIdY+B;GNrPC0_%UuYh$C&mC1FPsUEkh2W4%jd<>Imj!-~p=yc^?`UT9;U3A|< zN_NTX9Rgqpmn;#I6Dfa_NJAh!2uEQ<$xm7`gpf{}>d2QZ8D02EB-=!?W4rIN8jhjX zY6fWAsI^HECbiudp1|-lt*2F`(SS_9o&c!Yh6rYg< z@RHlLLv0Rx`aJl z8q`Vw#?{=M=<>~W|8=bL!EL(TfAuo1a|17`Y@!_LgjD z=2c#f(aEuR&wX3=8Oh)OBR?rQaeg=Wg45>1JtTBP)Oxi+yY>G^a)f%8lV%Nvhla4x Y&O(s4Zb9`5!8+@TE*D~j`!}n>Z`xiDNdN!< literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/base.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/base.py new file mode 100644 index 0000000..42dade1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/base.py @@ -0,0 +1,20 @@ +from typing import Callable, List, Optional + +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet + +InstallRequirementProvider = Callable[ + [str, Optional[InstallRequirement]], InstallRequirement +] + + +class BaseResolver: + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + raise NotImplementedError() + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + raise NotImplementedError() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5638b8848994b659a7273ce06b917c00aa8bc0da GIT binary patch literal 211 zcmYk0K?=e!5JgkzLWCZ~g&n2fN=49}Ac6-dX*;&TG!v4v5O3tt>$vq6u1rDD5C47s zpUqH`Ojyw4cDM}r8t|_ulx?t$11ffA)983-W|)6?_s~#_z=e^#fRo>250xQ>J5tV& zlxRSE*N|Fg=@O(UzBNl1bFjkUO!M-}YqX$+hFmCzMsW!SEy>OaQXsMBrH4Emh0F6) S`{#JoQq@V^4FA|sK+HbM3OMQj literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..19c0e4e1abddfc04651b3fd7a5c589dcf5a23bba GIT binary patch literal 12298 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py new file mode 100644 index 0000000..8c149d4 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py @@ -0,0 +1,467 @@ +"""Dependency Resolution + +The dependency resolution in pip is performed as follows: + +for top-level requirements: + a. only one spec allowed per project, regardless of conflicts or not. + otherwise a "double requirement" exception is raised + b. they override sub-dependency requirements. +for sub-dependencies + a. "first found, wins" (where the order is breadth first) +""" + +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import logging +import sys +from collections import defaultdict +from itertools import chain +from typing import DefaultDict, Iterable, List, Optional, Set, Tuple + +from pip._vendor.packaging import specifiers +from pip._vendor.packaging.requirements import Requirement + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import ( + BestVersionAlreadyInstalled, + DistributionNotFound, + HashError, + HashErrors, + NoneMetadataError, + UnsupportedPythonVersion, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import normalize_version_info +from pip._internal.utils.packaging import check_requires_python + +logger = logging.getLogger(__name__) + +DiscoveredDependencies = DefaultDict[str, List[InstallRequirement]] + + +def _check_dist_requires_python( + dist: BaseDistribution, + version_info: Tuple[int, int, int], + ignore_requires_python: bool = False, +) -> None: + """ + Check whether the given Python version is compatible with a distribution's + "Requires-Python" value. + + :param version_info: A 3-tuple of ints representing the Python + major-minor-micro version to check. + :param ignore_requires_python: Whether to ignore the "Requires-Python" + value if the given Python version isn't compatible. + + :raises UnsupportedPythonVersion: When the given Python version isn't + compatible. + """ + # This idiosyncratically converts the SpecifierSet to str and let + # check_requires_python then parse it again into SpecifierSet. But this + # is the legacy resolver so I'm just not going to bother refactoring. + try: + requires_python = str(dist.requires_python) + except FileNotFoundError as e: + raise NoneMetadataError(dist, str(e)) + try: + is_compatible = check_requires_python( + requires_python, + version_info=version_info, + ) + except specifiers.InvalidSpecifier as exc: + logger.warning( + "Package %r has an invalid Requires-Python: %s", dist.raw_name, exc + ) + return + + if is_compatible: + return + + version = ".".join(map(str, version_info)) + if ignore_requires_python: + logger.debug( + "Ignoring failed Requires-Python check for package %r: %s not in %r", + dist.raw_name, + version, + requires_python, + ) + return + + raise UnsupportedPythonVersion( + "Package {!r} requires a different Python: {} not in {!r}".format( + dist.raw_name, version, requires_python + ) + ) + + +class Resolver(BaseResolver): + """Resolves which packages need to be installed/uninstalled to perform \ + the requested operation without breaking the requirements of any package. + """ + + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + if py_version_info is None: + py_version_info = sys.version_info[:3] + else: + py_version_info = normalize_version_info(py_version_info) + + self._py_version_info = py_version_info + + self.preparer = preparer + self.finder = finder + self.wheel_cache = wheel_cache + + self.upgrade_strategy = upgrade_strategy + self.force_reinstall = force_reinstall + self.ignore_dependencies = ignore_dependencies + self.ignore_installed = ignore_installed + self.ignore_requires_python = ignore_requires_python + self.use_user_site = use_user_site + self._make_install_req = make_install_req + + self._discovered_dependencies: DiscoveredDependencies = defaultdict(list) + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + """Resolve what operations need to be done + + As a side-effect of this method, the packages (and their dependencies) + are downloaded, unpacked and prepared for installation. This + preparation is done by ``pip.operations.prepare``. + + Once PyPI has static dependency metadata available, it would be + possible to move the preparation to become a step separated from + dependency resolution. + """ + requirement_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for req in root_reqs: + if req.constraint: + check_invalid_constraint_type(req) + requirement_set.add_requirement(req) + + # Actually prepare the files, and collect any exceptions. Most hash + # exceptions cannot be checked ahead of time, because + # _populate_link() needs to be called before we can make decisions + # based on link type. + discovered_reqs: List[InstallRequirement] = [] + hash_errors = HashErrors() + for req in chain(requirement_set.all_requirements, discovered_reqs): + try: + discovered_reqs.extend(self._resolve_one(requirement_set, req)) + except HashError as exc: + exc.req = req + hash_errors.append(exc) + + if hash_errors: + raise hash_errors + + return requirement_set + + def _is_upgrade_allowed(self, req: InstallRequirement) -> bool: + if self.upgrade_strategy == "to-satisfy-only": + return False + elif self.upgrade_strategy == "eager": + return True + else: + assert self.upgrade_strategy == "only-if-needed" + return req.user_supplied or req.constraint + + def _set_req_to_reinstall(self, req: InstallRequirement) -> None: + """ + Set a requirement to be installed. + """ + # Don't uninstall the conflict if doing a user install and the + # conflict is not a user install. + if not self.use_user_site or req.satisfied_by.in_usersite: + req.should_reinstall = True + req.satisfied_by = None + + def _check_skip_installed( + self, req_to_install: InstallRequirement + ) -> Optional[str]: + """Check if req_to_install should be skipped. + + This will check if the req is installed, and whether we should upgrade + or reinstall it, taking into account all the relevant user options. + + After calling this req_to_install will only have satisfied_by set to + None if the req_to_install is to be upgraded/reinstalled etc. Any + other value will be a dist recording the current thing installed that + satisfies the requirement. + + Note that for vcs urls and the like we can't assess skipping in this + routine - we simply identify that we need to pull the thing down, + then later on it is pulled down and introspected to assess upgrade/ + reinstalls etc. + + :return: A text reason for why it was skipped, or None. + """ + if self.ignore_installed: + return None + + req_to_install.check_if_exists(self.use_user_site) + if not req_to_install.satisfied_by: + return None + + if self.force_reinstall: + self._set_req_to_reinstall(req_to_install) + return None + + if not self._is_upgrade_allowed(req_to_install): + if self.upgrade_strategy == "only-if-needed": + return "already satisfied, skipping upgrade" + return "already satisfied" + + # Check for the possibility of an upgrade. For link-based + # requirements we have to pull the tree down and inspect to assess + # the version #, so it's handled way down. + if not req_to_install.link: + try: + self.finder.find_requirement(req_to_install, upgrade=True) + except BestVersionAlreadyInstalled: + # Then the best version is installed. + return "already up-to-date" + except DistributionNotFound: + # No distribution found, so we squash the error. It will + # be raised later when we re-try later to do the install. + # Why don't we just raise here? + pass + + self._set_req_to_reinstall(req_to_install) + return None + + def _find_requirement_link(self, req: InstallRequirement) -> Optional[Link]: + upgrade = self._is_upgrade_allowed(req) + best_candidate = self.finder.find_requirement(req, upgrade) + if not best_candidate: + return None + + # Log a warning per PEP 592 if necessary before returning. + link = best_candidate.link + if link.is_yanked: + reason = link.yanked_reason or "" + msg = ( + # Mark this as a unicode string to prevent + # "UnicodeEncodeError: 'ascii' codec can't encode character" + # in Python 2 when the reason contains non-ascii characters. + "The candidate selected for download or install is a " + "yanked version: {candidate}\n" + "Reason for being yanked: {reason}" + ).format(candidate=best_candidate, reason=reason) + logger.warning(msg) + + return link + + def _populate_link(self, req: InstallRequirement) -> None: + """Ensure that if a link can be found for this, that it is found. + + Note that req.link may still be None - if the requirement is already + installed and not needed to be upgraded based on the return value of + _is_upgrade_allowed(). + + If preparer.require_hashes is True, don't use the wheel cache, because + cached wheels, always built locally, have different hashes than the + files downloaded from the index server and thus throw false hash + mismatches. Furthermore, cached wheels at present have undeterministic + contents due to file modification times. + """ + if req.link is None: + req.link = self._find_requirement_link(req) + + if self.wheel_cache is None or self.preparer.require_hashes: + return + cache_entry = self.wheel_cache.get_cache_entry( + link=req.link, + package_name=req.name, + supported_tags=get_supported(), + ) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + if req.link is req.original_link and cache_entry.persistent: + req.original_link_is_in_wheel_cache = True + req.link = cache_entry.link + + def _get_dist_for(self, req: InstallRequirement) -> BaseDistribution: + """Takes a InstallRequirement and returns a single AbstractDist \ + representing a prepared variant of the same. + """ + if req.editable: + return self.preparer.prepare_editable_requirement(req) + + # satisfied_by is only evaluated by calling _check_skip_installed, + # so it must be None here. + assert req.satisfied_by is None + skip_reason = self._check_skip_installed(req) + + if req.satisfied_by: + return self.preparer.prepare_installed_requirement(req, skip_reason) + + # We eagerly populate the link, since that's our "legacy" behavior. + self._populate_link(req) + dist = self.preparer.prepare_linked_requirement(req) + + # NOTE + # The following portion is for determining if a certain package is + # going to be re-installed/upgraded or not and reporting to the user. + # This should probably get cleaned up in a future refactor. + + # req.req is only avail after unpack for URL + # pkgs repeat check_if_exists to uninstall-on-upgrade + # (#14) + if not self.ignore_installed: + req.check_if_exists(self.use_user_site) + + if req.satisfied_by: + should_modify = ( + self.upgrade_strategy != "to-satisfy-only" + or self.force_reinstall + or self.ignore_installed + or req.link.scheme == "file" + ) + if should_modify: + self._set_req_to_reinstall(req) + else: + logger.info( + "Requirement already satisfied (use --upgrade to upgrade): %s", + req, + ) + return dist + + def _resolve_one( + self, + requirement_set: RequirementSet, + req_to_install: InstallRequirement, + ) -> List[InstallRequirement]: + """Prepare a single requirements file. + + :return: A list of additional InstallRequirements to also install. + """ + # Tell user what we are doing for this requirement: + # obtain (editable), skipping, processing (local url), collecting + # (remote url or package name) + if req_to_install.constraint or req_to_install.prepared: + return [] + + req_to_install.prepared = True + + # Parse and return dependencies + dist = self._get_dist_for(req_to_install) + # This will raise UnsupportedPythonVersion if the given Python + # version isn't compatible with the distribution's Requires-Python. + _check_dist_requires_python( + dist, + version_info=self._py_version_info, + ignore_requires_python=self.ignore_requires_python, + ) + + more_reqs: List[InstallRequirement] = [] + + def add_req(subreq: Requirement, extras_requested: Iterable[str]) -> None: + # This idiosyncratically converts the Requirement to str and let + # make_install_req then parse it again into Requirement. But this is + # the legacy resolver so I'm just not going to bother refactoring. + sub_install_req = self._make_install_req(str(subreq), req_to_install) + parent_req_name = req_to_install.name + to_scan_again, add_to_parent = requirement_set.add_requirement( + sub_install_req, + parent_req_name=parent_req_name, + extras_requested=extras_requested, + ) + if parent_req_name and add_to_parent: + self._discovered_dependencies[parent_req_name].append(add_to_parent) + more_reqs.extend(to_scan_again) + + with indent_log(): + # We add req_to_install before its dependencies, so that we + # can refer to it when adding dependencies. + if not requirement_set.has_requirement(req_to_install.name): + # 'unnamed' requirements will get added here + # 'unnamed' requirements can only come from being directly + # provided by the user. + assert req_to_install.user_supplied + requirement_set.add_requirement(req_to_install, parent_req_name=None) + + if not self.ignore_dependencies: + if req_to_install.extras: + logger.debug( + "Installing extra requirements: %r", + ",".join(req_to_install.extras), + ) + missing_requested = sorted( + set(req_to_install.extras) - set(dist.iter_provided_extras()) + ) + for missing in missing_requested: + logger.warning( + "%s %s does not provide the extra '%s'", + dist.raw_name, + dist.version, + missing, + ) + + available_requested = sorted( + set(dist.iter_provided_extras()) & set(req_to_install.extras) + ) + for subreq in dist.iter_dependencies(available_requested): + add_req(subreq, extras_requested=available_requested) + + return more_reqs + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Create the installation order. + + The installation order is topological - requirements are installed + before the requiring thing. We break cycles at an arbitrary point, + and make no other guarantees. + """ + # The current implementation, which we may change at any point + # installs the user specified things in the order given, except when + # dependencies must come earlier to achieve topological order. + order = [] + ordered_reqs: Set[InstallRequirement] = set() + + def schedule(req: InstallRequirement) -> None: + if req.satisfied_by or req in ordered_reqs: + return + if req.constraint: + return + ordered_reqs.add(req) + for dep in self._discovered_dependencies[req.name]: + schedule(dep) + order.append(req) + + for install_req in req_set.requirements.values(): + schedule(install_req) + return order diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f806f37514c6c726b5e0636de2d2133d462587f4 GIT binary patch literal 215 zcmd1j<>g`kf{j()X(0MBh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o5j%KO;XkRX;Ja zC?_#VKcLbjwM;*yC_gXNIX|zYC_g7BwMf69vLquv&(>JaOg|?x3CcCrGc?dI&MZmQ zEl5nxPE1cN)-T8`(2vi|D@iTNOU%(PN-fUMDJ{v&&x0__QbC&IfeJE9;^XxSDsOSv T#%j`O^ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..eb14276830352d33b878171d154dcafbdda31707 GIT binary patch literal 6458 zcmd5=TXP&o6`r1%ygiyvS8LVGdnTCgEwmPxC0ya~ z?208EQCqRP_KMZIAX1_zO6Gl$=fo1v3nrFUEM5>x-83)q(j&LE{9}ukdF7GCD~EP# z1+^-lLv0SVRbCSnKF_llaS(*lKt7?h2_ei_Q#R(Bt0r!*_Kx09BrNxa04(0};kpsCFw< zaXSd!qE;z-No)GGw%Qg-=Wet^?(=pmbfzz(2ci?}w0J+3ZKcyv#5*$V*tEmpvmV+UlOM7529r5(V5@fXdCkO;C6`eDe0Oa->WQ_sFN5~x z+M9c?h}|_Vqfp$4!dON@AmmzqFW!#AmtSnYv=;cA!|IF87oJ~Jek`8rw>$5)w}e{j z`~5Y~4`Do5Y)uLk1v_NEi(m^@)5XW^C^&yC`T8vvQn=>3ETe#f8;Ys7DxIER( z@-)xD@iQVzj?Z(C+(XvNp_UhUa9CZJ7kJUM7Pu>lU7MG986!%(GUlLT<+jSah66=B z?(jHOcnUtTr1LP9g2zGgI;Td*LZ`PA7fl(bmh%vHy+e8)Jx1rK7++k(%Rck8uB@Y1W{8jlb*^h7i9%dp+UW#pR;ZNd_2a$E z;8k>lYWAQyC5`FSF3$SH6Gt}%b|X*|FZ=9)C37*O-z}WC&?W&7?AS(&gW}SW{)Fw@ zB{E8&###8bv+o+;`3|OSP5L5Dx(Z@Y zC7Yni$JU`e!Ik6yGF|WxvOC)zd2+*+7cj^u3cm3Yy&FYPxRom))HDqE%huqzsXhD3 zQ|;JSfOYO|?wu0z`}jV7}E zfMhZ8zcRBXY0<=~%Qi5;9ju-$9(FoU^VC5aRSl1)G{f_B-t&49-wEiw=y?x!+CkDY z2~v_wCyPYB38D*~psiF-0BE^UAA`{n|=(dgy3ge2RLDsSv z{{BrRO}}>jUv{R*Y-fR$-I}wQH*$Btdh8*~Uq?~D1{r}Hpp6L^;Dn^afK|%0q|pK= zGA$W`I&ftHPX_2(In?st$nyf=tAHBuC%I#hm*IF7U6{(Mj55!RQlAm(Qj&DYK4J}f z@XtHjqW;t{<*Ji zyY-k@rbgFCepF8~hb!aB{ILGsw%^&Vci@4OIo^wQ0zMjr>8R_SX0v$@^Y_~_zCxn{ zVHO(CB?aVB^*AyENE+G(4Ib{TIcEKQd1GhO_(@%Do3$c1xb(R=VtW2~*m_mUNXj+n zY|2%P!xxA18fX0>7(OFc%w`A6Q?_VMGo5J@`3gqD7Mg5fM29S4?05J4aLa7-m_DI4 z+Ly@-A^4ZE&a@a`V5PB|hSq|zVQ83OW{$*4VHBTZsfo_ztE9r4L{3wtOS`^>-b9I+ zL3LV*)R_dpQzJKJI5$vCEaZUMBYXX3Vy>5I!O0mnp_9%%VW9z2mklmXFEtaz&Nms> z`GS2dY>C(#1CJL((YrhSx3PG#Pd2DeFMb;H`4Y&V(gx2|Yjv2E(u`y zk%=89v6k#c;|z{dtgSLTS7o(q*{L~_dJO;?>z{yZ2i?Z-6s?h-Bw3_+I|Lw;E6CgE z!ey_tF0=lqAnaLg6w=Z5@kq#3 z@By*@9Aw%7rWwB0QU%N;xF6GZz2A&ix-i+#RR7mmNZ!HZADy2c8)A(EhuFVydd%YfF!sa?);eVx7P zC4%0e0Y|%`d+Q&@OFubT`V8JL5a3*-HURm@@nWl!#ZE%=;tVv)pV7E6Doe_33@YpD zc$&M(1y0g2NWj`;0>7jx-Bgkr6j@w4M2yYep*M4VA}~A~!zn4-L{W8+35MHQV7W6Y z3v3mLUUSwPmvuVc>m##G?rvs1BLjV{kOZl^jxV51Zx)7ggSUgl}p0x_-_#?gn@ChndhP)+k$$=on0Zy3%tW`gTCQAW;_ zeEV2EK9LcqnS4expVs6Ct$B}#u@-$EHP^^Q@g|$1gd>6G$pM+1lI+#wW_*p3Uv&xO bl2x>;NS~^95gE$@=&DoBl%HL^Tuc84#cJ0w literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..ec6286bbe3e6bcea07f2704e235db6eb1ee87387 GIT binary patch literal 18365 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e6f97dd1b70cf1fe33bd1f559a55b3fbf4516a3f GIT binary patch literal 19223 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 HttIc@SOqv0 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c81aa35bd8cb399012cb092a5dccbf1dd2aa9ae7 GIT binary patch literal 7717 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 dmNl&by; literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6b21543f21121b9253a9f5fe36fca4a1cd41d812 GIT binary patch literal 3184 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..b8ff108926a6b16467dd6cca568892475dfa4037 GIT binary patch literal 8110 zcma)BTXP#ncAgss7XlzeQWr{=HKs2Tv?M5Bc9S@YvRO&iYVFdhC~aJZql|~>1~BAY zz@7nV(1WaFDkXU%n@AM!+2DqH2pJmzs z)HJ$#`f|Ga^!J@}5Y}oH1)qQ1f46&MRZ;$p3bUUQ3g5*O-B%TbDNOa0cJ`~bRaw^B z8h$lT_l>sU7up5iY@2?uUGz)sl3#9@{Ytx{QXk!$^Q-Nu%o|?Kuea;|e0yG&3n(|* z$7J607W~EbqRbb)CI5K)xXhQl6aLBeNtrKur~KvivdmY!)Bc(E8JVB+UhvPh&&qt& zd(l7FKIdC)OO|WiOa4lGMds_?%l<3vSNvDoucAE98s2OE`SyALLi>U&AM=|2#r8#2 z;fDAevM+ew@>knyD6jDg{5)@U^<|~K%GJYle(6YUzkWkui)`t>!j|~C1HIi~$Jq&X zlE1-D@d7XM*0RFi=xWPK*JR7=^nIiKCOgB+yv5H@EqmeVR_ImcZ(x?J$659wdc4Kd zJ4*B1FX?=4HH&HO?gzK8+gHDT{p!0nZ{0|ZYi=h_jrZIrPD?)=#BLZkUaH^Waay=L z9C$o6I!+XSp{B<=P7nre$MM{KZU>Ifn_61^o)hs6J_tq3MY^=XqtF}DAUFL%7)9=; z$D3+elJ&b>AYZ%Y3f_r1yCIxG9~G7N`<#1Molc*c)^0nUZKucIaRVmXFK+OiA-ecH zh;Iu%aD=R0xEVyT<9Rc0(YroV#1fte2(d7IditBaZi{f&&8C{W?GC0zEnPzK8s8lD zdT!90u8|r|3crMUE10Bw)d`r(oS3I`GZH|c;yX?!4#fyr6Pqyf;tn0e?B|8N5d9r8 zT%iln*7~?Kf3LRnvc^s`og2*H1y9mN92)f=TJqu~HTMv=WabUkKw9oHM8 zoX!tMHgqO}GDE^{*y_;wCm+gJ@z8ce?;(km1LaUXQdA|WB+8byt3=fwD4(gZo@j}h z7>S+~l5$c^O37SOW$GievW>(oY}@IgjY|^laW+{oHc*htrNwThn&LI;e^FLpr$|Se zwbY2X*Ue^^a>&`G98v_?=ZOeXA{yd}Fkh%?*|s~LgPpa%P`=z>?}t8LcU<8)o9nkn z*ZA%_6JfxwhCwVs&*Ne}JGDQ0v-O>I&)v+6Z?;~)v`)&fHprkMS|7NBbu18&1F%|$ z%sJ>}*#;_qMBmc! zYv3s$Z$dQ+V}ogNajUeeh_i9|Kp7VTJ+9DiJO@=O9B5;6f1c^%Vq$Jp(W{menej+7 zlyM14RDWLyP8&)*Kf0wVCq4K9J*`NUB&zJ*mrD!HP-EJ{i14 z@3u~feO8j?)ug_)oK&}#w{>wpuUkR+bo3LvIV1iiuRDdh7sNkMx^*`HeNi06=MF7a zPHI~(9cikv^FiKPg$!spo=@h*FOvDK74ZvJ*?JjuFX35EP`~xc;GftWt3EQu4UF`rvFtrAVC`13ATHt1(z#9ucoGiOEtcQ?qU|002$9&fCtIq)YoF+ zUf_ievyjhalj2$ggj+p#mj_pxMrzO$X)zxxHE1BZn$)^^F+0=c4&hA)_c_1R z69Xd>C$Qn-ZAzxFDE^T2KntU^$b(%Mm?ch9gHu#p*?4aP7HKiZoV1$r5ZNq|c%2#( zSEMI;Jf5(f++&*y5eh-}vRI@RMc)|=u+G%nbv&q6dUB=Fx%`nw1>fz z;G%vw1dUD4H)D%Grordj$mYzA9av>)X_}jh!XdGw+^HhkbX|Inj6C|(^uivw>7o;$N z)|oDm?ZXmiE{Hd1w|sx$$SkVnmze?1nClJYfyg zg)lJqfYgNOFI71V7&;j`(j7a3F|TOvpXXz45s6` zam%{f2O9UeH;61AL@*b#)&#^kM9|eI4BX}eIbno}sVal!(R4K2;t6CzJRsTHCYjLu znFVx)LdX$)xMVbTwhtZLwwTjG;&2e+o|1c(Z5n}PhTzk=rbhJ0f)PCEuM%ofJGxlb z9(Q~FnCM_)XJzc-!8V=_0UQp(d{;7Sd==~hys$PQ$~Fz=1S6|6>Yy7P3vG#<45&UG z#Sxn>C{>KCK}fvXvfk$wxdJqJZ|DdIwjC{NGaSamUUGv$KQ!!glsy7EoEoMMw|TH? zP0tNP7F!qP`-@K+w5C08?JxU7QUrhyR6ydxg{IYY1(<#rnhw@p;ey;V|4bXJV=dACR@>3;TU_t!Z8MLM$-4g3P3U zb1q|}8yF%j$aBdUW=4JNe1)m*@j%?9mS!Xk-LwEJ+>g?7cNoB{4LvX-{PEaD#9)b_ znvl|_Hn!{_U_(i;CTI~mlx)**)oeJ~@>!sK4oAw>{2U!4@>>?>O@LZSqGeq*ftDq; z3Vbuasu%Xp{U3YMRBttx$U7n<0p3x?2C1;2NBOF4?+hI;dn49K+GCV7C?PBq^OPJ% zk{X*>eX2uSM3Krmv{-r>f=*qK)i3#6!oJw2Cbird>TnRBJ#)ryQe(*xg9w-mg2igPVn86D7tDkFS*>W6#Q3Rwy(gli)Uv8WuUB_X&^gR}1d2>VXZ1E&D^0gDpt zCaBmQ!dnFF!h$E18wfWP5~099Zf7zufKkGd718K!cO((@StPeMF}NTrFvDMuJG+FR z0h>TP$=bL()zsLCC<$%t`{&sof)olfvbM2)biri#t8A ztDHQ`1-HdpIrlc7Ig_{#546`uUo1H8ujNX`9RV%RUuOG1 zA?yjUZ$sZn7!Y=6d*T#M#HUq~1o=)~eGcz~Utv>Q8C&NCXhe3iq)!J1bt%9@jw+cF zAgxf!lDT}icy0_6Y%h?z*0OGrSpj83V4APeeoMOn(JXka&$G?;vaN@1o{uduxT1K7 zrI3zhyOm4-J}DI9RoH)8aK?j}K&l;%O=PE*ZL{YHs>zPHNv0lLmoB^p&N4#-o+vg( zBI&K?8VBU?MQtRB@=!&j2LZr4$Q`0gKn6%tDJLOMeTX0;LE26OEf6=7Ep)&qEOJD0 z$mZ4nm1uLI0UVXf`0qpp5`~OWo2d>zEUjUeh26m}GnkX)@A%;^Pjzexd>7|q5kZ`$ zF33qq3$k5$5+S_U-VU(;HbviqI5UR6FeIC#2I)dtkVh!_ea7qgYmD>ncp@TEcrscA zeo6)3s&+!%e~k>6=U5(3EEhTGU1^eK>nMVBd7RPlk1?jWPssr#B)a%3B+X)GYY>sa zd6nQHJXy$=o|@UwA~?XEZYJ(esJCQcf!x31i7p{Amkrg@v_1h}aG(2|xGSiHqvG~fRCfLfy3i4R4dnna82Ix+k=MZpRQMZhW4VjH?cPogwnG|GgMx*^KgQRwbZ@ssHx zg(_wYEqS^hqYi%nDiJtesaC40pql2l#V&r*B856|_XQnMYQ`f%K0yYzpo7b-J827& zV=Qey8N5l)ASB(w-vt2+5pkArYV>R&(C0;h0>J5s*%nwO#g`GM7IQQZMTas2?K-u6 z@%e3AFwlk_M3m~(Xi+wrM8R9~4;5*mrYldsq5oYz&V}L#?$94=(yB$Yg`}Pi5#p}{ z=|DuSJPac(;PmX%&0y%a$k@*f0cq`~%g=8^mz8ktn`2C(FD str: + if not extras: + return project + canonical_extras = sorted(canonicalize_name(e) for e in extras) + return "{}[{}]".format(project, ",".join(canonical_extras)) + + +class Constraint: + def __init__( + self, specifier: SpecifierSet, hashes: Hashes, links: FrozenSet[Link] + ) -> None: + self.specifier = specifier + self.hashes = hashes + self.links = links + + @classmethod + def empty(cls) -> "Constraint": + return Constraint(SpecifierSet(), Hashes(), frozenset()) + + @classmethod + def from_ireq(cls, ireq: InstallRequirement) -> "Constraint": + links = frozenset([ireq.link]) if ireq.link else frozenset() + return Constraint(ireq.specifier, ireq.hashes(trust_internet=False), links) + + def __bool__(self) -> bool: + return bool(self.specifier) or bool(self.hashes) or bool(self.links) + + def __and__(self, other: InstallRequirement) -> "Constraint": + if not isinstance(other, InstallRequirement): + return NotImplemented + specifier = self.specifier & other.specifier + hashes = self.hashes & other.hashes(trust_internet=False) + links = self.links + if other.link: + links = links.union([other.link]) + return Constraint(specifier, hashes, links) + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + # Reject if there are any mismatched URL constraints on this package. + if self.links and not all(_match_link(link, candidate) for link in self.links): + return False + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class Requirement: + @property + def project_name(self) -> NormalizedName: + """The "project name" of a requirement. + + This is different from ``name`` if this requirement contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Subclass should override") + + @property + def name(self) -> str: + """The name identifying this requirement in the resolver. + + This is different from ``project_name`` if this requirement contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Subclass should override") + + def is_satisfied_by(self, candidate: "Candidate") -> bool: + return False + + def get_candidate_lookup(self) -> CandidateLookup: + raise NotImplementedError("Subclass should override") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") + + +def _match_link(link: Link, candidate: "Candidate") -> bool: + if candidate.source_link: + return links_equivalent(link, candidate.source_link) + return False + + +class Candidate: + @property + def project_name(self) -> NormalizedName: + """The "project name" of the candidate. + + This is different from ``name`` if this candidate contains extras, + in which case ``name`` would contain the ``[...]`` part, while this + refers to the name of the project. + """ + raise NotImplementedError("Override in subclass") + + @property + def name(self) -> str: + """The name identifying this candidate in the resolver. + + This is different from ``project_name`` if this candidate contains + extras, where ``project_name`` would not contain the ``[...]`` part. + """ + raise NotImplementedError("Override in subclass") + + @property + def version(self) -> CandidateVersion: + raise NotImplementedError("Override in subclass") + + @property + def is_installed(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def is_editable(self) -> bool: + raise NotImplementedError("Override in subclass") + + @property + def source_link(self) -> Optional[Link]: + raise NotImplementedError("Override in subclass") + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + raise NotImplementedError("Override in subclass") + + def get_install_requirement(self) -> Optional[InstallRequirement]: + raise NotImplementedError("Override in subclass") + + def format_for_error(self) -> str: + raise NotImplementedError("Subclass should override") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py new file mode 100644 index 0000000..9b8450e --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py @@ -0,0 +1,547 @@ +import logging +import sys +from typing import TYPE_CHECKING, Any, FrozenSet, Iterable, Optional, Tuple, Union, cast + +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.packaging.version import Version + +from pip._internal.exceptions import ( + HashError, + InstallationSubprocessError, + MetadataInconsistent, +) +from pip._internal.metadata import BaseDistribution +from pip._internal.models.link import Link, links_equivalent +from pip._internal.models.wheel import Wheel +from pip._internal.req.constructors import ( + install_req_from_editable, + install_req_from_line, +) +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.misc import normalize_version_info + +from .base import Candidate, CandidateVersion, Requirement, format_name + +if TYPE_CHECKING: + from .factory import Factory + +logger = logging.getLogger(__name__) + +BaseCandidate = Union[ + "AlreadyInstalledCandidate", + "EditableCandidate", + "LinkCandidate", +] + +# Avoid conflicting with the PyPI package "Python". +REQUIRES_PYTHON_IDENTIFIER = cast(NormalizedName, "") + + +def as_base_candidate(candidate: Candidate) -> Optional[BaseCandidate]: + """The runtime version of BaseCandidate.""" + base_candidate_classes = ( + AlreadyInstalledCandidate, + EditableCandidate, + LinkCandidate, + ) + if isinstance(candidate, base_candidate_classes): + return candidate + return None + + +def make_install_req_from_link( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert not template.editable, "template is editable" + if template.req: + line = str(template.req) + else: + line = link.url + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + ireq.original_link = template.original_link + ireq.link = link + return ireq + + +def make_install_req_from_editable( + link: Link, template: InstallRequirement +) -> InstallRequirement: + assert template.editable, "template not editable" + return install_req_from_editable( + link.url, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + permit_editable_wheels=template.permit_editable_wheels, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + + +def _make_install_req_from_dist( + dist: BaseDistribution, template: InstallRequirement +) -> InstallRequirement: + if template.req: + line = str(template.req) + elif template.link: + line = f"{dist.canonical_name} @ {template.link.url}" + else: + line = f"{dist.canonical_name}=={dist.version}" + ireq = install_req_from_line( + line, + user_supplied=template.user_supplied, + comes_from=template.comes_from, + use_pep517=template.use_pep517, + isolated=template.isolated, + constraint=template.constraint, + options=dict( + install_options=template.install_options, + global_options=template.global_options, + hashes=template.hash_options, + ), + ) + ireq.satisfied_by = dist + return ireq + + +class _InstallRequirementBackedCandidate(Candidate): + """A candidate backed by an ``InstallRequirement``. + + This represents a package request with the target not being already + in the environment, and needs to be fetched and installed. The backing + ``InstallRequirement`` is responsible for most of the leg work; this + class exposes appropriate information to the resolver. + + :param link: The link passed to the ``InstallRequirement``. The backing + ``InstallRequirement`` will use this link to fetch the distribution. + :param source_link: The link this candidate "originates" from. This is + different from ``link`` when the link is found in the wheel cache. + ``link`` would point to the wheel cache, while this points to the + found remote link (e.g. from pypi.org). + """ + + dist: BaseDistribution + is_installed = False + + def __init__( + self, + link: Link, + source_link: Link, + ireq: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + self._link = link + self._source_link = source_link + self._factory = factory + self._ireq = ireq + self._name = name + self._version = version + self.dist = self._prepare() + + def __str__(self) -> str: + return f"{self.name} {self.version}" + + def __repr__(self) -> str: + return "{class_name}({link!r})".format( + class_name=self.__class__.__name__, + link=str(self._link), + ) + + def __hash__(self) -> int: + return hash((self.__class__, self._link)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return links_equivalent(self._link, other._link) + return False + + @property + def source_link(self) -> Optional[Link]: + return self._source_link + + @property + def project_name(self) -> NormalizedName: + """The normalised name of the project the candidate refers to""" + if self._name is None: + self._name = self.dist.canonical_name + return self._name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + if self._version is None: + self._version = self.dist.version + return self._version + + def format_for_error(self) -> str: + return "{} {} (from {})".format( + self.name, + self.version, + self._link.file_path if self._link.is_file else self._link, + ) + + def _prepare_distribution(self) -> BaseDistribution: + raise NotImplementedError("Override in subclass") + + def _check_metadata_consistency(self, dist: BaseDistribution) -> None: + """Check for consistency of project name and version of dist.""" + if self._name is not None and self._name != dist.canonical_name: + raise MetadataInconsistent( + self._ireq, + "name", + self._name, + dist.canonical_name, + ) + if self._version is not None and self._version != dist.version: + raise MetadataInconsistent( + self._ireq, + "version", + str(self._version), + str(dist.version), + ) + + def _prepare(self) -> BaseDistribution: + try: + dist = self._prepare_distribution() + except HashError as e: + # Provide HashError the underlying ireq that caused it. This + # provides context for the resulting error message to show the + # offending line to the user. + e.req = self._ireq + raise + except InstallationSubprocessError as exc: + # The output has been presented already, so don't duplicate it. + exc.context = "See above for output." + raise + + self._check_metadata_consistency(dist) + return dist + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + requires = self.dist.iter_dependencies() if with_requires else () + for r in requires: + yield self._factory.make_requirement_from_spec(str(r), self._ireq) + yield self._factory.make_requires_python_requirement(self.dist.requires_python) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return self._ireq + + +class LinkCandidate(_InstallRequirementBackedCandidate): + is_editable = False + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + source_link = link + cache_entry = factory.get_wheel_cache_entry(link, name) + if cache_entry is not None: + logger.debug("Using cached wheel link: %s", cache_entry.link) + link = cache_entry.link + ireq = make_install_req_from_link(link, template) + assert ireq.link == link + if ireq.link.is_wheel and not ireq.link.is_file: + wheel = Wheel(ireq.link.filename) + wheel_name = canonicalize_name(wheel.name) + assert name == wheel_name, f"{name!r} != {wheel_name!r} for wheel" + # Version may not be present for PEP 508 direct URLs + if version is not None: + wheel_version = Version(wheel.version) + assert version == wheel_version, "{!r} != {!r} for wheel {}".format( + version, wheel_version, name + ) + + if ( + cache_entry is not None + and cache_entry.persistent + and template.link is template.original_link + ): + ireq.original_link_is_in_wheel_cache = True + + super().__init__( + link=link, + source_link=source_link, + ireq=ireq, + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + preparer = self._factory.preparer + return preparer.prepare_linked_requirement(self._ireq, parallel_builds=True) + + +class EditableCandidate(_InstallRequirementBackedCandidate): + is_editable = True + + def __init__( + self, + link: Link, + template: InstallRequirement, + factory: "Factory", + name: Optional[NormalizedName] = None, + version: Optional[CandidateVersion] = None, + ) -> None: + super().__init__( + link=link, + source_link=link, + ireq=make_install_req_from_editable(link, template), + factory=factory, + name=name, + version=version, + ) + + def _prepare_distribution(self) -> BaseDistribution: + return self._factory.preparer.prepare_editable_requirement(self._ireq) + + +class AlreadyInstalledCandidate(Candidate): + is_installed = True + source_link = None + + def __init__( + self, + dist: BaseDistribution, + template: InstallRequirement, + factory: "Factory", + ) -> None: + self.dist = dist + self._ireq = _make_install_req_from_dist(dist, template) + self._factory = factory + + # This is just logging some messages, so we can do it eagerly. + # The returned dist would be exactly the same as self.dist because we + # set satisfied_by in _make_install_req_from_dist. + # TODO: Supply reason based on force_reinstall and upgrade_strategy. + skip_reason = "already satisfied" + factory.preparer.prepare_installed_requirement(self._ireq, skip_reason) + + def __str__(self) -> str: + return str(self.dist) + + def __repr__(self) -> str: + return "{class_name}({distribution!r})".format( + class_name=self.__class__.__name__, + distribution=self.dist, + ) + + def __hash__(self) -> int: + return hash((self.__class__, self.name, self.version)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.name == other.name and self.version == other.version + return False + + @property + def project_name(self) -> NormalizedName: + return self.dist.canonical_name + + @property + def name(self) -> str: + return self.project_name + + @property + def version(self) -> CandidateVersion: + return self.dist.version + + @property + def is_editable(self) -> bool: + return self.dist.editable + + def format_for_error(self) -> str: + return f"{self.name} {self.version} (Installed)" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + if not with_requires: + return + for r in self.dist.iter_dependencies(): + yield self._factory.make_requirement_from_spec(str(r), self._ireq) + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None + + +class ExtrasCandidate(Candidate): + """A candidate that has 'extras', indicating additional dependencies. + + Requirements can be for a project with dependencies, something like + foo[extra]. The extras don't affect the project/version being installed + directly, but indicate that we need additional dependencies. We model that + by having an artificial ExtrasCandidate that wraps the "base" candidate. + + The ExtrasCandidate differs from the base in the following ways: + + 1. It has a unique name, of the form foo[extra]. This causes the resolver + to treat it as a separate node in the dependency graph. + 2. When we're getting the candidate's dependencies, + a) We specify that we want the extra dependencies as well. + b) We add a dependency on the base candidate. + See below for why this is needed. + 3. We return None for the underlying InstallRequirement, as the base + candidate will provide it, and we don't want to end up with duplicates. + + The dependency on the base candidate is needed so that the resolver can't + decide that it should recommend foo[extra1] version 1.0 and foo[extra2] + version 2.0. Having those candidates depend on foo=1.0 and foo=2.0 + respectively forces the resolver to recognise that this is a conflict. + """ + + def __init__( + self, + base: BaseCandidate, + extras: FrozenSet[str], + ) -> None: + self.base = base + self.extras = extras + + def __str__(self) -> str: + name, rest = str(self.base).split(" ", 1) + return "{}[{}] {}".format(name, ",".join(self.extras), rest) + + def __repr__(self) -> str: + return "{class_name}(base={base!r}, extras={extras!r})".format( + class_name=self.__class__.__name__, + base=self.base, + extras=self.extras, + ) + + def __hash__(self) -> int: + return hash((self.base, self.extras)) + + def __eq__(self, other: Any) -> bool: + if isinstance(other, self.__class__): + return self.base == other.base and self.extras == other.extras + return False + + @property + def project_name(self) -> NormalizedName: + return self.base.project_name + + @property + def name(self) -> str: + """The normalised name of the project the candidate refers to""" + return format_name(self.base.project_name, self.extras) + + @property + def version(self) -> CandidateVersion: + return self.base.version + + def format_for_error(self) -> str: + return "{} [{}]".format( + self.base.format_for_error(), ", ".join(sorted(self.extras)) + ) + + @property + def is_installed(self) -> bool: + return self.base.is_installed + + @property + def is_editable(self) -> bool: + return self.base.is_editable + + @property + def source_link(self) -> Optional[Link]: + return self.base.source_link + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + factory = self.base._factory + + # Add a dependency on the exact base + # (See note 2b in the class docstring) + yield factory.make_requirement_from_candidate(self.base) + if not with_requires: + return + + # The user may have specified extras that the candidate doesn't + # support. We ignore any unsupported extras here. + valid_extras = self.extras.intersection(self.base.dist.iter_provided_extras()) + invalid_extras = self.extras.difference(self.base.dist.iter_provided_extras()) + for extra in sorted(invalid_extras): + logger.warning( + "%s %s does not provide the extra '%s'", + self.base.name, + self.version, + extra, + ) + + for r in self.base.dist.iter_dependencies(valid_extras): + requirement = factory.make_requirement_from_spec( + str(r), self.base._ireq, valid_extras + ) + if requirement: + yield requirement + + def get_install_requirement(self) -> Optional[InstallRequirement]: + # We don't return anything here, because we always + # depend on the base candidate, and we'll get the + # install requirement from that. + return None + + +class RequiresPythonCandidate(Candidate): + is_installed = False + source_link = None + + def __init__(self, py_version_info: Optional[Tuple[int, ...]]) -> None: + if py_version_info is not None: + version_info = normalize_version_info(py_version_info) + else: + version_info = sys.version_info[:3] + self._version = Version(".".join(str(c) for c in version_info)) + + # We don't need to implement __eq__() and __ne__() since there is always + # only one RequiresPythonCandidate in a resolution, i.e. the host Python. + # The built-in object.__eq__() and object.__ne__() do exactly what we want. + + def __str__(self) -> str: + return f"Python {self._version}" + + @property + def project_name(self) -> NormalizedName: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def name(self) -> str: + return REQUIRES_PYTHON_IDENTIFIER + + @property + def version(self) -> CandidateVersion: + return self._version + + def format_for_error(self) -> str: + return f"Python {self.version}" + + def iter_dependencies(self, with_requires: bool) -> Iterable[Optional[Requirement]]: + return () + + def get_install_requirement(self) -> Optional[InstallRequirement]: + return None diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py new file mode 100644 index 0000000..261d8d5 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py @@ -0,0 +1,739 @@ +import contextlib +import functools +import logging +from typing import ( + TYPE_CHECKING, + Dict, + FrozenSet, + Iterable, + Iterator, + List, + Mapping, + NamedTuple, + Optional, + Sequence, + Set, + Tuple, + TypeVar, + cast, +) + +from pip._vendor.packaging.requirements import InvalidRequirement +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name +from pip._vendor.resolvelib import ResolutionImpossible + +from pip._internal.cache import CacheEntry, WheelCache +from pip._internal.exceptions import ( + DistributionNotFound, + InstallationError, + InstallationSubprocessError, + MetadataInconsistent, + UnsupportedPythonVersion, + UnsupportedWheel, +) +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import BaseDistribution, get_default_environment +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.constructors import install_req_from_link_and_ireq +from pip._internal.req.req_install import ( + InstallRequirement, + check_invalid_constraint_type, +) +from pip._internal.resolution.base import InstallRequirementProvider +from pip._internal.utils.compatibility_tags import get_supported +from pip._internal.utils.hashes import Hashes +from pip._internal.utils.packaging import get_requirement +from pip._internal.utils.virtualenv import running_under_virtualenv + +from .base import Candidate, CandidateVersion, Constraint, Requirement +from .candidates import ( + AlreadyInstalledCandidate, + BaseCandidate, + EditableCandidate, + ExtrasCandidate, + LinkCandidate, + RequiresPythonCandidate, + as_base_candidate, +) +from .found_candidates import FoundCandidates, IndexCandidateInfo +from .requirements import ( + ExplicitRequirement, + RequiresPythonRequirement, + SpecifierRequirement, + UnsatisfiableRequirement, +) + +if TYPE_CHECKING: + from typing import Protocol + + class ConflictCause(Protocol): + requirement: RequiresPythonRequirement + parent: Candidate + + +logger = logging.getLogger(__name__) + +C = TypeVar("C") +Cache = Dict[Link, C] + + +class CollectedRootRequirements(NamedTuple): + requirements: List[Requirement] + constraints: Dict[str, Constraint] + user_requested: Dict[str, int] + + +class Factory: + def __init__( + self, + finder: PackageFinder, + preparer: RequirementPreparer, + make_install_req: InstallRequirementProvider, + wheel_cache: Optional[WheelCache], + use_user_site: bool, + force_reinstall: bool, + ignore_installed: bool, + ignore_requires_python: bool, + suppress_build_failures: bool, + py_version_info: Optional[Tuple[int, ...]] = None, + ) -> None: + self._finder = finder + self.preparer = preparer + self._wheel_cache = wheel_cache + self._python_candidate = RequiresPythonCandidate(py_version_info) + self._make_install_req_from_spec = make_install_req + self._use_user_site = use_user_site + self._force_reinstall = force_reinstall + self._ignore_requires_python = ignore_requires_python + self._suppress_build_failures = suppress_build_failures + + self._build_failures: Cache[InstallationError] = {} + self._link_candidate_cache: Cache[LinkCandidate] = {} + self._editable_candidate_cache: Cache[EditableCandidate] = {} + self._installed_candidate_cache: Dict[str, AlreadyInstalledCandidate] = {} + self._extras_candidate_cache: Dict[ + Tuple[int, FrozenSet[str]], ExtrasCandidate + ] = {} + + if not ignore_installed: + env = get_default_environment() + self._installed_dists = { + dist.canonical_name: dist + for dist in env.iter_installed_distributions(local_only=False) + } + else: + self._installed_dists = {} + + @property + def force_reinstall(self) -> bool: + return self._force_reinstall + + def _fail_if_link_is_unsupported_wheel(self, link: Link) -> None: + if not link.is_wheel: + return + wheel = Wheel(link.filename) + if wheel.supported(self._finder.target_python.get_tags()): + return + msg = f"{link.filename} is not a supported wheel on this platform." + raise UnsupportedWheel(msg) + + def _make_extras_candidate( + self, base: BaseCandidate, extras: FrozenSet[str] + ) -> ExtrasCandidate: + cache_key = (id(base), extras) + try: + candidate = self._extras_candidate_cache[cache_key] + except KeyError: + candidate = ExtrasCandidate(base, extras) + self._extras_candidate_cache[cache_key] = candidate + return candidate + + def _make_candidate_from_dist( + self, + dist: BaseDistribution, + extras: FrozenSet[str], + template: InstallRequirement, + ) -> Candidate: + try: + base = self._installed_candidate_cache[dist.canonical_name] + except KeyError: + base = AlreadyInstalledCandidate(dist, template, factory=self) + self._installed_candidate_cache[dist.canonical_name] = base + if not extras: + return base + return self._make_extras_candidate(base, extras) + + def _make_candidate_from_link( + self, + link: Link, + extras: FrozenSet[str], + template: InstallRequirement, + name: Optional[NormalizedName], + version: Optional[CandidateVersion], + ) -> Optional[Candidate]: + # TODO: Check already installed candidate, and use it if the link and + # editable flag match. + + if link in self._build_failures: + # We already tried this candidate before, and it does not build. + # Don't bother trying again. + return None + + if template.editable: + if link not in self._editable_candidate_cache: + try: + self._editable_candidate_cache[link] = EditableCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + except InstallationSubprocessError as e: + if not self._suppress_build_failures: + raise + logger.warning("Discarding %s due to build failure: %s", link, e) + self._build_failures[link] = e + return None + + base: BaseCandidate = self._editable_candidate_cache[link] + else: + if link not in self._link_candidate_cache: + try: + self._link_candidate_cache[link] = LinkCandidate( + link, + template, + factory=self, + name=name, + version=version, + ) + except MetadataInconsistent as e: + logger.info( + "Discarding [blue underline]%s[/]: [yellow]%s[reset]", + link, + e, + extra={"markup": True}, + ) + self._build_failures[link] = e + return None + except InstallationSubprocessError as e: + if not self._suppress_build_failures: + raise + logger.warning("Discarding %s due to build failure: %s", link, e) + self._build_failures[link] = e + return None + base = self._link_candidate_cache[link] + + if not extras: + return base + return self._make_extras_candidate(base, extras) + + def _iter_found_candidates( + self, + ireqs: Sequence[InstallRequirement], + specifier: SpecifierSet, + hashes: Hashes, + prefers_installed: bool, + incompatible_ids: Set[int], + ) -> Iterable[Candidate]: + if not ireqs: + return () + + # The InstallRequirement implementation requires us to give it a + # "template". Here we just choose the first requirement to represent + # all of them. + # Hopefully the Project model can correct this mismatch in the future. + template = ireqs[0] + assert template.req, "Candidates found on index must be PEP 508" + name = canonicalize_name(template.req.name) + + extras: FrozenSet[str] = frozenset() + for ireq in ireqs: + assert ireq.req, "Candidates found on index must be PEP 508" + specifier &= ireq.req.specifier + hashes &= ireq.hashes(trust_internet=False) + extras |= frozenset(ireq.extras) + + def _get_installed_candidate() -> Optional[Candidate]: + """Get the candidate for the currently-installed version.""" + # If --force-reinstall is set, we want the version from the index + # instead, so we "pretend" there is nothing installed. + if self._force_reinstall: + return None + try: + installed_dist = self._installed_dists[name] + except KeyError: + return None + # Don't use the installed distribution if its version does not fit + # the current dependency graph. + if not specifier.contains(installed_dist.version, prereleases=True): + return None + candidate = self._make_candidate_from_dist( + dist=installed_dist, + extras=extras, + template=template, + ) + # The candidate is a known incompatibility. Don't use it. + if id(candidate) in incompatible_ids: + return None + return candidate + + def iter_index_candidate_infos() -> Iterator[IndexCandidateInfo]: + result = self._finder.find_best_candidate( + project_name=name, + specifier=specifier, + hashes=hashes, + ) + icans = list(result.iter_applicable()) + + # PEP 592: Yanked releases are ignored unless the specifier + # explicitly pins a version (via '==' or '===') that can be + # solely satisfied by a yanked release. + all_yanked = all(ican.link.is_yanked for ican in icans) + + def is_pinned(specifier: SpecifierSet) -> bool: + for sp in specifier: + if sp.operator == "===": + return True + if sp.operator != "==": + continue + if sp.version.endswith(".*"): + continue + return True + return False + + pinned = is_pinned(specifier) + + # PackageFinder returns earlier versions first, so we reverse. + for ican in reversed(icans): + if not (all_yanked and pinned) and ican.link.is_yanked: + continue + func = functools.partial( + self._make_candidate_from_link, + link=ican.link, + extras=extras, + template=template, + name=name, + version=ican.version, + ) + yield ican.version, func + + return FoundCandidates( + iter_index_candidate_infos, + _get_installed_candidate(), + prefers_installed, + incompatible_ids, + ) + + def _iter_explicit_candidates_from_base( + self, + base_requirements: Iterable[Requirement], + extras: FrozenSet[str], + ) -> Iterator[Candidate]: + """Produce explicit candidates from the base given an extra-ed package. + + :param base_requirements: Requirements known to the resolver. The + requirements are guaranteed to not have extras. + :param extras: The extras to inject into the explicit requirements' + candidates. + """ + for req in base_requirements: + lookup_cand, _ = req.get_candidate_lookup() + if lookup_cand is None: # Not explicit. + continue + # We've stripped extras from the identifier, and should always + # get a BaseCandidate here, unless there's a bug elsewhere. + base_cand = as_base_candidate(lookup_cand) + assert base_cand is not None, "no extras here" + yield self._make_extras_candidate(base_cand, extras) + + def _iter_candidates_from_constraints( + self, + identifier: str, + constraint: Constraint, + template: InstallRequirement, + ) -> Iterator[Candidate]: + """Produce explicit candidates from constraints. + + This creates "fake" InstallRequirement objects that are basically clones + of what "should" be the template, but with original_link set to link. + """ + for link in constraint.links: + self._fail_if_link_is_unsupported_wheel(link) + candidate = self._make_candidate_from_link( + link, + extras=frozenset(), + template=install_req_from_link_and_ireq(link, template), + name=canonicalize_name(identifier), + version=None, + ) + if candidate: + yield candidate + + def find_candidates( + self, + identifier: str, + requirements: Mapping[str, Iterable[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + constraint: Constraint, + prefers_installed: bool, + ) -> Iterable[Candidate]: + # Collect basic lookup information from the requirements. + explicit_candidates: Set[Candidate] = set() + ireqs: List[InstallRequirement] = [] + for req in requirements[identifier]: + cand, ireq = req.get_candidate_lookup() + if cand is not None: + explicit_candidates.add(cand) + if ireq is not None: + ireqs.append(ireq) + + # If the current identifier contains extras, add explicit candidates + # from entries from extra-less identifier. + with contextlib.suppress(InvalidRequirement): + parsed_requirement = get_requirement(identifier) + explicit_candidates.update( + self._iter_explicit_candidates_from_base( + requirements.get(parsed_requirement.name, ()), + frozenset(parsed_requirement.extras), + ), + ) + + # Add explicit candidates from constraints. We only do this if there are + # known ireqs, which represent requirements not already explicit. If + # there are no ireqs, we're constraining already-explicit requirements, + # which is handled later when we return the explicit candidates. + if ireqs: + try: + explicit_candidates.update( + self._iter_candidates_from_constraints( + identifier, + constraint, + template=ireqs[0], + ), + ) + except UnsupportedWheel: + # If we're constrained to install a wheel incompatible with the + # target architecture, no candidates will ever be valid. + return () + + # Since we cache all the candidates, incompatibility identification + # can be made quicker by comparing only the id() values. + incompat_ids = {id(c) for c in incompatibilities.get(identifier, ())} + + # If none of the requirements want an explicit candidate, we can ask + # the finder for candidates. + if not explicit_candidates: + return self._iter_found_candidates( + ireqs, + constraint.specifier, + constraint.hashes, + prefers_installed, + incompat_ids, + ) + + return ( + c + for c in explicit_candidates + if id(c) not in incompat_ids + and constraint.is_satisfied_by(c) + and all(req.is_satisfied_by(c) for req in requirements[identifier]) + ) + + def _make_requirement_from_install_req( + self, ireq: InstallRequirement, requested_extras: Iterable[str] + ) -> Optional[Requirement]: + if not ireq.match_markers(requested_extras): + logger.info( + "Ignoring %s: markers '%s' don't match your environment", + ireq.name, + ireq.markers, + ) + return None + if not ireq.link: + return SpecifierRequirement(ireq) + self._fail_if_link_is_unsupported_wheel(ireq.link) + cand = self._make_candidate_from_link( + ireq.link, + extras=frozenset(ireq.extras), + template=ireq, + name=canonicalize_name(ireq.name) if ireq.name else None, + version=None, + ) + if cand is None: + # There's no way we can satisfy a URL requirement if the underlying + # candidate fails to build. An unnamed URL must be user-supplied, so + # we fail eagerly. If the URL is named, an unsatisfiable requirement + # can make the resolver do the right thing, either backtrack (and + # maybe find some other requirement that's buildable) or raise a + # ResolutionImpossible eventually. + if not ireq.name: + raise self._build_failures[ireq.link] + return UnsatisfiableRequirement(canonicalize_name(ireq.name)) + return self.make_requirement_from_candidate(cand) + + def collect_root_requirements( + self, root_ireqs: List[InstallRequirement] + ) -> CollectedRootRequirements: + collected = CollectedRootRequirements([], {}, {}) + for i, ireq in enumerate(root_ireqs): + if ireq.constraint: + # Ensure we only accept valid constraints + problem = check_invalid_constraint_type(ireq) + if problem: + raise InstallationError(problem) + if not ireq.match_markers(): + continue + assert ireq.name, "Constraint must be named" + name = canonicalize_name(ireq.name) + if name in collected.constraints: + collected.constraints[name] &= ireq + else: + collected.constraints[name] = Constraint.from_ireq(ireq) + else: + req = self._make_requirement_from_install_req( + ireq, + requested_extras=(), + ) + if req is None: + continue + if ireq.user_supplied and req.name not in collected.user_requested: + collected.user_requested[req.name] = i + collected.requirements.append(req) + return collected + + def make_requirement_from_candidate( + self, candidate: Candidate + ) -> ExplicitRequirement: + return ExplicitRequirement(candidate) + + def make_requirement_from_spec( + self, + specifier: str, + comes_from: Optional[InstallRequirement], + requested_extras: Iterable[str] = (), + ) -> Optional[Requirement]: + ireq = self._make_install_req_from_spec(specifier, comes_from) + return self._make_requirement_from_install_req(ireq, requested_extras) + + def make_requires_python_requirement( + self, + specifier: SpecifierSet, + ) -> Optional[Requirement]: + if self._ignore_requires_python: + return None + # Don't bother creating a dependency for an empty Requires-Python. + if not str(specifier): + return None + return RequiresPythonRequirement(specifier, self._python_candidate) + + def get_wheel_cache_entry( + self, link: Link, name: Optional[str] + ) -> Optional[CacheEntry]: + """Look up the link in the wheel cache. + + If ``preparer.require_hashes`` is True, don't use the wheel cache, + because cached wheels, always built locally, have different hashes + than the files downloaded from the index server and thus throw false + hash mismatches. Furthermore, cached wheels at present have + nondeterministic contents due to file modification times. + """ + if self._wheel_cache is None or self.preparer.require_hashes: + return None + return self._wheel_cache.get_cache_entry( + link=link, + package_name=name, + supported_tags=get_supported(), + ) + + def get_dist_to_uninstall(self, candidate: Candidate) -> Optional[BaseDistribution]: + # TODO: Are there more cases this needs to return True? Editable? + dist = self._installed_dists.get(candidate.project_name) + if dist is None: # Not installed, no uninstallation required. + return None + + # We're installing into global site. The current installation must + # be uninstalled, no matter it's in global or user site, because the + # user site installation has precedence over global. + if not self._use_user_site: + return dist + + # We're installing into user site. Remove the user site installation. + if dist.in_usersite: + return dist + + # We're installing into user site, but the installed incompatible + # package is in global site. We can't uninstall that, and would let + # the new user installation to "shadow" it. But shadowing won't work + # in virtual environments, so we error out. + if running_under_virtualenv() and dist.in_site_packages: + message = ( + f"Will not install to the user site because it will lack " + f"sys.path precedence to {dist.raw_name} in {dist.location}" + ) + raise InstallationError(message) + return None + + def _report_requires_python_error( + self, causes: Sequence["ConflictCause"] + ) -> UnsupportedPythonVersion: + assert causes, "Requires-Python error reported with no cause" + + version = self._python_candidate.version + + if len(causes) == 1: + specifier = str(causes[0].requirement.specifier) + message = ( + f"Package {causes[0].parent.name!r} requires a different " + f"Python: {version} not in {specifier!r}" + ) + return UnsupportedPythonVersion(message) + + message = f"Packages require a different Python. {version} not in:" + for cause in causes: + package = cause.parent.format_for_error() + specifier = str(cause.requirement.specifier) + message += f"\n{specifier!r} (required by {package})" + return UnsupportedPythonVersion(message) + + def _report_single_requirement_conflict( + self, req: Requirement, parent: Optional[Candidate] + ) -> DistributionNotFound: + if parent is None: + req_disp = str(req) + else: + req_disp = f"{req} (from {parent.name})" + + cands = self._finder.find_all_candidates(req.project_name) + versions = [str(v) for v in sorted({c.version for c in cands})] + + logger.critical( + "Could not find a version that satisfies the requirement %s " + "(from versions: %s)", + req_disp, + ", ".join(versions) or "none", + ) + if str(req) == "requirements.txt": + logger.info( + "HINT: You are attempting to install a package literally " + 'named "requirements.txt" (which cannot exist). Consider ' + "using the '-r' flag to install the packages listed in " + "requirements.txt" + ) + + return DistributionNotFound(f"No matching distribution found for {req}") + + def get_installation_error( + self, + e: "ResolutionImpossible[Requirement, Candidate]", + constraints: Dict[str, Constraint], + ) -> InstallationError: + + assert e.causes, "Installation error reported with no cause" + + # If one of the things we can't solve is "we need Python X.Y", + # that is what we report. + requires_python_causes = [ + cause + for cause in e.causes + if isinstance(cause.requirement, RequiresPythonRequirement) + and not cause.requirement.is_satisfied_by(self._python_candidate) + ] + if requires_python_causes: + # The comprehension above makes sure all Requirement instances are + # RequiresPythonRequirement, so let's cast for convenience. + return self._report_requires_python_error( + cast("Sequence[ConflictCause]", requires_python_causes), + ) + + # Otherwise, we have a set of causes which can't all be satisfied + # at once. + + # The simplest case is when we have *one* cause that can't be + # satisfied. We just report that case. + if len(e.causes) == 1: + req, parent = e.causes[0] + if req.name not in constraints: + return self._report_single_requirement_conflict(req, parent) + + # OK, we now have a list of requirements that can't all be + # satisfied at once. + + # A couple of formatting helpers + def text_join(parts: List[str]) -> str: + if len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def describe_trigger(parent: Candidate) -> str: + ireq = parent.get_install_requirement() + if not ireq or not ireq.comes_from: + return f"{parent.name}=={parent.version}" + if isinstance(ireq.comes_from, InstallRequirement): + return str(ireq.comes_from.name) + return str(ireq.comes_from) + + triggers = set() + for req, parent in e.causes: + if parent is None: + # This is a root requirement, so we can report it directly + trigger = req.format_for_error() + else: + trigger = describe_trigger(parent) + triggers.add(trigger) + + if triggers: + info = text_join(sorted(triggers)) + else: + info = "the requested packages" + + msg = ( + "Cannot install {} because these package versions " + "have conflicting dependencies.".format(info) + ) + logger.critical(msg) + msg = "\nThe conflict is caused by:" + + relevant_constraints = set() + for req, parent in e.causes: + if req.name in constraints: + relevant_constraints.add(req.name) + msg = msg + "\n " + if parent: + msg = msg + f"{parent.name} {parent.version} depends on " + else: + msg = msg + "The user requested " + msg = msg + req.format_for_error() + for key in relevant_constraints: + spec = constraints[key].specifier + msg += f"\n The user requested (constraint) {key}{spec}" + + msg = ( + msg + + "\n\n" + + "To fix this you could try to:\n" + + "1. loosen the range of package versions you've specified\n" + + "2. remove package versions to allow pip attempt to solve " + + "the dependency conflict\n" + ) + + logger.info(msg) + + return DistributionNotFound( + "ResolutionImpossible: for help visit " + "https://pip.pypa.io/en/latest/topics/dependency-resolution/" + "#dealing-with-dependency-conflicts" + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py new file mode 100644 index 0000000..8663097 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py @@ -0,0 +1,155 @@ +"""Utilities to lazily create and visit candidates found. + +Creating and visiting a candidate is a *very* costly operation. It involves +fetching, extracting, potentially building modules from source, and verifying +distribution metadata. It is therefore crucial for performance to keep +everything here lazy all the way down, so we only touch candidates that we +absolutely need, and not "download the world" when we only need one version of +something. +""" + +import functools +from collections.abc import Sequence +from typing import TYPE_CHECKING, Any, Callable, Iterator, Optional, Set, Tuple + +from pip._vendor.packaging.version import _BaseVersion + +from .base import Candidate + +IndexCandidateInfo = Tuple[_BaseVersion, Callable[[], Optional[Candidate]]] + +if TYPE_CHECKING: + SequenceCandidate = Sequence[Candidate] +else: + # For compatibility: Python before 3.9 does not support using [] on the + # Sequence class. + # + # >>> from collections.abc import Sequence + # >>> Sequence[str] + # Traceback (most recent call last): + # File "", line 1, in + # TypeError: 'ABCMeta' object is not subscriptable + # + # TODO: Remove this block after dropping Python 3.8 support. + SequenceCandidate = Sequence + + +def _iter_built(infos: Iterator[IndexCandidateInfo]) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the package is not already installed. Candidates + from index come later in their normal ordering. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_prepended( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers the already-installed + candidate and NOT to upgrade. The installed candidate is therefore + always yielded first, and candidates from index come later in their + normal ordering, except skipped when the version is already installed. + """ + yield installed + versions_found: Set[_BaseVersion] = {installed.version} + for version, func in infos: + if version in versions_found: + continue + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + +def _iter_built_with_inserted( + installed: Candidate, infos: Iterator[IndexCandidateInfo] +) -> Iterator[Candidate]: + """Iterator for ``FoundCandidates``. + + This iterator is used when the resolver prefers to upgrade an + already-installed package. Candidates from index are returned in their + normal ordering, except replaced when the version is already installed. + + The implementation iterates through and yields other candidates, inserting + the installed candidate exactly once before we start yielding older or + equivalent candidates, or after all other candidates if they are all newer. + """ + versions_found: Set[_BaseVersion] = set() + for version, func in infos: + if version in versions_found: + continue + # If the installed candidate is better, yield it first. + if installed.version >= version: + yield installed + versions_found.add(installed.version) + candidate = func() + if candidate is None: + continue + yield candidate + versions_found.add(version) + + # If the installed candidate is older than all other candidates. + if installed.version not in versions_found: + yield installed + + +class FoundCandidates(SequenceCandidate): + """A lazy sequence to provide candidates to the resolver. + + The intended usage is to return this from `find_matches()` so the resolver + can iterate through the sequence multiple times, but only access the index + page when remote packages are actually needed. This improve performances + when suitable candidates are already installed on disk. + """ + + def __init__( + self, + get_infos: Callable[[], Iterator[IndexCandidateInfo]], + installed: Optional[Candidate], + prefers_installed: bool, + incompatible_ids: Set[int], + ): + self._get_infos = get_infos + self._installed = installed + self._prefers_installed = prefers_installed + self._incompatible_ids = incompatible_ids + + def __getitem__(self, index: Any) -> Any: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + def __iter__(self) -> Iterator[Candidate]: + infos = self._get_infos() + if not self._installed: + iterator = _iter_built(infos) + elif self._prefers_installed: + iterator = _iter_built_with_prepended(self._installed, infos) + else: + iterator = _iter_built_with_inserted(self._installed, infos) + return (c for c in iterator if id(c) not in self._incompatible_ids) + + def __len__(self) -> int: + # Implemented to satisfy the ABC check. This is not needed by the + # resolver, and should not be used by the provider either (for + # performance reasons). + raise NotImplementedError("don't do this") + + @functools.lru_cache(maxsize=1) + def __bool__(self) -> bool: + if self._prefers_installed and self._installed: + return True + return any(self) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py new file mode 100644 index 0000000..e6ec959 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py @@ -0,0 +1,248 @@ +import collections +import math +from typing import ( + TYPE_CHECKING, + Dict, + Iterable, + Iterator, + Mapping, + Sequence, + TypeVar, + Union, +) + +from pip._vendor.resolvelib.providers import AbstractProvider + +from .base import Candidate, Constraint, Requirement +from .candidates import REQUIRES_PYTHON_IDENTIFIER +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.providers import Preference + from pip._vendor.resolvelib.resolvers import RequirementInformation + + PreferenceInformation = RequirementInformation[Requirement, Candidate] + + _ProviderBase = AbstractProvider[Requirement, Candidate, str] +else: + _ProviderBase = AbstractProvider + +# Notes on the relationship between the provider, the factory, and the +# candidate and requirement classes. +# +# The provider is a direct implementation of the resolvelib class. Its role +# is to deliver the API that resolvelib expects. +# +# Rather than work with completely abstract "requirement" and "candidate" +# concepts as resolvelib does, pip has concrete classes implementing these two +# ideas. The API of Requirement and Candidate objects are defined in the base +# classes, but essentially map fairly directly to the equivalent provider +# methods. In particular, `find_matches` and `is_satisfied_by` are +# requirement methods, and `get_dependencies` is a candidate method. +# +# The factory is the interface to pip's internal mechanisms. It is stateless, +# and is created by the resolver and held as a property of the provider. It is +# responsible for creating Requirement and Candidate objects, and provides +# services to those objects (access to pip's finder and preparer). + + +D = TypeVar("D") +V = TypeVar("V") + + +def _get_with_identifier( + mapping: Mapping[str, V], + identifier: str, + default: D, +) -> Union[D, V]: + """Get item from a package name lookup mapping with a resolver identifier. + + This extra logic is needed when the target mapping is keyed by package + name, which cannot be directly looked up with an identifier (which may + contain requested extras). Additional logic is added to also look up a value + by "cleaning up" the extras from the identifier. + """ + if identifier in mapping: + return mapping[identifier] + # HACK: Theoretically we should check whether this identifier is a valid + # "NAME[EXTRAS]" format, and parse out the name part with packaging or + # some regular expression. But since pip's resolver only spits out three + # kinds of identifiers: normalized PEP 503 names, normalized names plus + # extras, and Requires-Python, we can cheat a bit here. + name, open_bracket, _ = identifier.partition("[") + if open_bracket and name in mapping: + return mapping[name] + return default + + +class PipProvider(_ProviderBase): + """Pip's provider implementation for resolvelib. + + :params constraints: A mapping of constraints specified by the user. Keys + are canonicalized project names. + :params ignore_dependencies: Whether the user specified ``--no-deps``. + :params upgrade_strategy: The user-specified upgrade strategy. + :params user_requested: A set of canonicalized package names that the user + supplied for pip to install/upgrade. + """ + + def __init__( + self, + factory: Factory, + constraints: Dict[str, Constraint], + ignore_dependencies: bool, + upgrade_strategy: str, + user_requested: Dict[str, int], + ) -> None: + self._factory = factory + self._constraints = constraints + self._ignore_dependencies = ignore_dependencies + self._upgrade_strategy = upgrade_strategy + self._user_requested = user_requested + self._known_depths: Dict[str, float] = collections.defaultdict(lambda: math.inf) + + def identify(self, requirement_or_candidate: Union[Requirement, Candidate]) -> str: + return requirement_or_candidate.name + + def get_preference( # type: ignore + self, + identifier: str, + resolutions: Mapping[str, Candidate], + candidates: Mapping[str, Iterator[Candidate]], + information: Mapping[str, Iterable["PreferenceInformation"]], + backtrack_causes: Sequence["PreferenceInformation"], + ) -> "Preference": + """Produce a sort key for given requirement based on preference. + + The lower the return value is, the more preferred this group of + arguments is. + + Currently pip considers the followings in order: + + * Prefer if any of the known requirements is "direct", e.g. points to an + explicit URL. + * If equal, prefer if any requirement is "pinned", i.e. contains + operator ``===`` or ``==``. + * If equal, calculate an approximate "depth" and resolve requirements + closer to the user-specified requirements first. + * Order user-specified requirements by the order they are specified. + * If equal, prefers "non-free" requirements, i.e. contains at least one + operator, such as ``>=`` or ``<``. + * If equal, order alphabetically for consistency (helps debuggability). + """ + lookups = (r.get_candidate_lookup() for r, _ in information[identifier]) + candidate, ireqs = zip(*lookups) + operators = [ + specifier.operator + for specifier_set in (ireq.specifier for ireq in ireqs if ireq) + for specifier in specifier_set + ] + + direct = candidate is not None + pinned = any(op[:2] == "==" for op in operators) + unfree = bool(operators) + + try: + requested_order: Union[int, float] = self._user_requested[identifier] + except KeyError: + requested_order = math.inf + parent_depths = ( + self._known_depths[parent.name] if parent is not None else 0.0 + for _, parent in information[identifier] + ) + inferred_depth = min(d for d in parent_depths) + 1.0 + else: + inferred_depth = 1.0 + self._known_depths[identifier] = inferred_depth + + requested_order = self._user_requested.get(identifier, math.inf) + + # Requires-Python has only one candidate and the check is basically + # free, so we always do it first to avoid needless work if it fails. + requires_python = identifier == REQUIRES_PYTHON_IDENTIFIER + + # HACK: Setuptools have a very long and solid backward compatibility + # track record, and extremely few projects would request a narrow, + # non-recent version range of it since that would break a lot things. + # (Most projects specify it only to request for an installer feature, + # which does not work, but that's another topic.) Intentionally + # delaying Setuptools helps reduce branches the resolver has to check. + # This serves as a temporary fix for issues like "apache-airflow[all]" + # while we work on "proper" branch pruning techniques. + delay_this = identifier == "setuptools" + + # Prefer the causes of backtracking on the assumption that the problem + # resolving the dependency tree is related to the failures that caused + # the backtracking + backtrack_cause = self.is_backtrack_cause(identifier, backtrack_causes) + + return ( + not requires_python, + delay_this, + not direct, + not pinned, + not backtrack_cause, + inferred_depth, + requested_order, + not unfree, + identifier, + ) + + def find_matches( + self, + identifier: str, + requirements: Mapping[str, Iterator[Requirement]], + incompatibilities: Mapping[str, Iterator[Candidate]], + ) -> Iterable[Candidate]: + def _eligible_for_upgrade(identifier: str) -> bool: + """Are upgrades allowed for this project? + + This checks the upgrade strategy, and whether the project was one + that the user specified in the command line, in order to decide + whether we should upgrade if there's a newer version available. + + (Note that we don't need access to the `--upgrade` flag, because + an upgrade strategy of "to-satisfy-only" means that `--upgrade` + was not specified). + """ + if self._upgrade_strategy == "eager": + return True + elif self._upgrade_strategy == "only-if-needed": + user_order = _get_with_identifier( + self._user_requested, + identifier, + default=None, + ) + return user_order is not None + return False + + constraint = _get_with_identifier( + self._constraints, + identifier, + default=Constraint.empty(), + ) + return self._factory.find_candidates( + identifier=identifier, + requirements=requirements, + constraint=constraint, + prefers_installed=(not _eligible_for_upgrade(identifier)), + incompatibilities=incompatibilities, + ) + + def is_satisfied_by(self, requirement: Requirement, candidate: Candidate) -> bool: + return requirement.is_satisfied_by(candidate) + + def get_dependencies(self, candidate: Candidate) -> Sequence[Requirement]: + with_requires = not self._ignore_dependencies + return [r for r in candidate.iter_dependencies(with_requires) if r is not None] + + @staticmethod + def is_backtrack_cause( + identifier: str, backtrack_causes: Sequence["PreferenceInformation"] + ) -> bool: + for backtrack_cause in backtrack_causes: + if identifier == backtrack_cause.requirement.name: + return True + if backtrack_cause.parent and identifier == backtrack_cause.parent.name: + return True + return False diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py new file mode 100644 index 0000000..6ced532 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py @@ -0,0 +1,68 @@ +from collections import defaultdict +from logging import getLogger +from typing import Any, DefaultDict + +from pip._vendor.resolvelib.reporters import BaseReporter + +from .base import Candidate, Requirement + +logger = getLogger(__name__) + + +class PipReporter(BaseReporter): + def __init__(self) -> None: + self.backtracks_by_package: DefaultDict[str, int] = defaultdict(int) + + self._messages_at_backtrack = { + 1: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 8: ( + "pip is looking at multiple versions of {package_name} to " + "determine which version is compatible with other " + "requirements. This could take a while." + ), + 13: ( + "This is taking longer than usual. You might need to provide " + "the dependency resolver with stricter constraints to reduce " + "runtime. See https://pip.pypa.io/warnings/backtracking for " + "guidance. If you want to abort this run, press Ctrl + C." + ), + } + + def backtracking(self, candidate: Candidate) -> None: + self.backtracks_by_package[candidate.name] += 1 + + count = self.backtracks_by_package[candidate.name] + if count not in self._messages_at_backtrack: + return + + message = self._messages_at_backtrack[count] + logger.info("INFO: %s", message.format(package_name=candidate.name)) + + +class PipDebuggingReporter(BaseReporter): + """A reporter that does an info log for every event it sees.""" + + def starting(self) -> None: + logger.info("Reporter.starting()") + + def starting_round(self, index: int) -> None: + logger.info("Reporter.starting_round(%r)", index) + + def ending_round(self, index: int, state: Any) -> None: + logger.info("Reporter.ending_round(%r, state)", index) + + def ending(self, state: Any) -> None: + logger.info("Reporter.ending(%r)", state) + + def adding_requirement(self, requirement: Requirement, parent: Candidate) -> None: + logger.info("Reporter.adding_requirement(%r, %r)", requirement, parent) + + def backtracking(self, candidate: Candidate) -> None: + logger.info("Reporter.backtracking(%r)", candidate) + + def pinning(self, candidate: Candidate) -> None: + logger.info("Reporter.pinning(%r)", candidate) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py new file mode 100644 index 0000000..f561f1f --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py @@ -0,0 +1,166 @@ +from pip._vendor.packaging.specifiers import SpecifierSet +from pip._vendor.packaging.utils import NormalizedName, canonicalize_name + +from pip._internal.req.req_install import InstallRequirement + +from .base import Candidate, CandidateLookup, Requirement, format_name + + +class ExplicitRequirement(Requirement): + def __init__(self, candidate: Candidate) -> None: + self.candidate = candidate + + def __str__(self) -> str: + return str(self.candidate) + + def __repr__(self) -> str: + return "{class_name}({candidate!r})".format( + class_name=self.__class__.__name__, + candidate=self.candidate, + ) + + @property + def project_name(self) -> NormalizedName: + # No need to canonicalize - the candidate did this + return self.candidate.project_name + + @property + def name(self) -> str: + # No need to canonicalize - the candidate did this + return self.candidate.name + + def format_for_error(self) -> str: + return self.candidate.format_for_error() + + def get_candidate_lookup(self) -> CandidateLookup: + return self.candidate, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return candidate == self.candidate + + +class SpecifierRequirement(Requirement): + def __init__(self, ireq: InstallRequirement) -> None: + assert ireq.link is None, "This is a link, not a specifier" + self._ireq = ireq + self._extras = frozenset(ireq.extras) + + def __str__(self) -> str: + return str(self._ireq.req) + + def __repr__(self) -> str: + return "{class_name}({requirement!r})".format( + class_name=self.__class__.__name__, + requirement=str(self._ireq.req), + ) + + @property + def project_name(self) -> NormalizedName: + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + return canonicalize_name(self._ireq.req.name) + + @property + def name(self) -> str: + return format_name(self.project_name, self._extras) + + def format_for_error(self) -> str: + + # Convert comma-separated specifiers into "A, B, ..., F and G" + # This makes the specifier a bit more "human readable", without + # risking a change in meaning. (Hopefully! Not all edge cases have + # been checked) + parts = [s.strip() for s in str(self).split(",")] + if len(parts) == 0: + return "" + elif len(parts) == 1: + return parts[0] + + return ", ".join(parts[:-1]) + " and " + parts[-1] + + def get_candidate_lookup(self) -> CandidateLookup: + return None, self._ireq + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self.name, ( + f"Internal issue: Candidate is not for this requirement " + f"{candidate.name} vs {self.name}" + ) + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + assert self._ireq.req, "Specifier-backed ireq is always PEP 508" + spec = self._ireq.req.specifier + return spec.contains(candidate.version, prereleases=True) + + +class RequiresPythonRequirement(Requirement): + """A requirement representing Requires-Python metadata.""" + + def __init__(self, specifier: SpecifierSet, match: Candidate) -> None: + self.specifier = specifier + self._candidate = match + + def __str__(self) -> str: + return f"Python {self.specifier}" + + def __repr__(self) -> str: + return "{class_name}({specifier!r})".format( + class_name=self.__class__.__name__, + specifier=str(self.specifier), + ) + + @property + def project_name(self) -> NormalizedName: + return self._candidate.project_name + + @property + def name(self) -> str: + return self._candidate.name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + if self.specifier.contains(self._candidate.version, prereleases=True): + return self._candidate, None + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + assert candidate.name == self._candidate.name, "Not Python candidate" + # We can safely always allow prereleases here since PackageFinder + # already implements the prerelease logic, and would have filtered out + # prerelease candidates if the user does not expect them. + return self.specifier.contains(candidate.version, prereleases=True) + + +class UnsatisfiableRequirement(Requirement): + """A requirement that cannot be satisfied.""" + + def __init__(self, name: NormalizedName) -> None: + self._name = name + + def __str__(self) -> str: + return f"{self._name} (unavailable)" + + def __repr__(self) -> str: + return "{class_name}({name!r})".format( + class_name=self.__class__.__name__, + name=str(self._name), + ) + + @property + def project_name(self) -> NormalizedName: + return self._name + + @property + def name(self) -> str: + return self._name + + def format_for_error(self) -> str: + return str(self) + + def get_candidate_lookup(self) -> CandidateLookup: + return None, None + + def is_satisfied_by(self, candidate: Candidate) -> bool: + return False diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py new file mode 100644 index 0000000..618f1e1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py @@ -0,0 +1,292 @@ +import functools +import logging +import os +from typing import TYPE_CHECKING, Dict, List, Optional, Set, Tuple, cast + +from pip._vendor.packaging.utils import canonicalize_name +from pip._vendor.resolvelib import BaseReporter, ResolutionImpossible +from pip._vendor.resolvelib import Resolver as RLResolver +from pip._vendor.resolvelib.structs import DirectedGraph + +from pip._internal.cache import WheelCache +from pip._internal.index.package_finder import PackageFinder +from pip._internal.operations.prepare import RequirementPreparer +from pip._internal.req.req_install import InstallRequirement +from pip._internal.req.req_set import RequirementSet +from pip._internal.resolution.base import BaseResolver, InstallRequirementProvider +from pip._internal.resolution.resolvelib.provider import PipProvider +from pip._internal.resolution.resolvelib.reporter import ( + PipDebuggingReporter, + PipReporter, +) + +from .base import Candidate, Requirement +from .factory import Factory + +if TYPE_CHECKING: + from pip._vendor.resolvelib.resolvers import Result as RLResult + + Result = RLResult[Requirement, Candidate, str] + + +logger = logging.getLogger(__name__) + + +class Resolver(BaseResolver): + _allowed_strategies = {"eager", "only-if-needed", "to-satisfy-only"} + + def __init__( + self, + preparer: RequirementPreparer, + finder: PackageFinder, + wheel_cache: Optional[WheelCache], + make_install_req: InstallRequirementProvider, + use_user_site: bool, + ignore_dependencies: bool, + ignore_installed: bool, + ignore_requires_python: bool, + force_reinstall: bool, + upgrade_strategy: str, + suppress_build_failures: bool, + py_version_info: Optional[Tuple[int, ...]] = None, + ): + super().__init__() + assert upgrade_strategy in self._allowed_strategies + + self.factory = Factory( + finder=finder, + preparer=preparer, + make_install_req=make_install_req, + wheel_cache=wheel_cache, + use_user_site=use_user_site, + force_reinstall=force_reinstall, + ignore_installed=ignore_installed, + ignore_requires_python=ignore_requires_python, + suppress_build_failures=suppress_build_failures, + py_version_info=py_version_info, + ) + self.ignore_dependencies = ignore_dependencies + self.upgrade_strategy = upgrade_strategy + self._result: Optional[Result] = None + + def resolve( + self, root_reqs: List[InstallRequirement], check_supported_wheels: bool + ) -> RequirementSet: + collected = self.factory.collect_root_requirements(root_reqs) + provider = PipProvider( + factory=self.factory, + constraints=collected.constraints, + ignore_dependencies=self.ignore_dependencies, + upgrade_strategy=self.upgrade_strategy, + user_requested=collected.user_requested, + ) + if "PIP_RESOLVER_DEBUG" in os.environ: + reporter: BaseReporter = PipDebuggingReporter() + else: + reporter = PipReporter() + resolver: RLResolver[Requirement, Candidate, str] = RLResolver( + provider, + reporter, + ) + + try: + try_to_avoid_resolution_too_deep = 2000000 + result = self._result = resolver.resolve( + collected.requirements, max_rounds=try_to_avoid_resolution_too_deep + ) + + except ResolutionImpossible as e: + error = self.factory.get_installation_error( + cast("ResolutionImpossible[Requirement, Candidate]", e), + collected.constraints, + ) + raise error from e + + req_set = RequirementSet(check_supported_wheels=check_supported_wheels) + for candidate in result.mapping.values(): + ireq = candidate.get_install_requirement() + if ireq is None: + continue + + # Check if there is already an installation under the same name, + # and set a flag for later stages to uninstall it, if needed. + installed_dist = self.factory.get_dist_to_uninstall(candidate) + if installed_dist is None: + # There is no existing installation -- nothing to uninstall. + ireq.should_reinstall = False + elif self.factory.force_reinstall: + # The --force-reinstall flag is set -- reinstall. + ireq.should_reinstall = True + elif installed_dist.version != candidate.version: + # The installation is different in version -- reinstall. + ireq.should_reinstall = True + elif candidate.is_editable or installed_dist.editable: + # The incoming distribution is editable, or different in + # editable-ness to installation -- reinstall. + ireq.should_reinstall = True + elif candidate.source_link and candidate.source_link.is_file: + # The incoming distribution is under file:// + if candidate.source_link.is_wheel: + # is a local wheel -- do nothing. + logger.info( + "%s is already installed with the same version as the " + "provided wheel. Use --force-reinstall to force an " + "installation of the wheel.", + ireq.name, + ) + continue + + # is a local sdist or path -- reinstall + ireq.should_reinstall = True + else: + continue + + link = candidate.source_link + if link and link.is_yanked: + # The reason can contain non-ASCII characters, Unicode + # is required for Python 2. + msg = ( + "The candidate selected for download or install is a " + "yanked version: {name!r} candidate (version {version} " + "at {link})\nReason for being yanked: {reason}" + ).format( + name=candidate.name, + version=candidate.version, + link=link, + reason=link.yanked_reason or "", + ) + logger.warning(msg) + + req_set.add_named_requirement(ireq) + + reqs = req_set.all_requirements + self.factory.preparer.prepare_linked_requirements_more(reqs) + return req_set + + def get_installation_order( + self, req_set: RequirementSet + ) -> List[InstallRequirement]: + """Get order for installation of requirements in RequirementSet. + + The returned list contains a requirement before another that depends on + it. This helps ensure that the environment is kept consistent as they + get installed one-by-one. + + The current implementation creates a topological ordering of the + dependency graph, giving more weight to packages with less + or no dependencies, while breaking any cycles in the graph at + arbitrary points. We make no guarantees about where the cycle + would be broken, other than it *would* be broken. + """ + assert self._result is not None, "must call resolve() first" + + if not req_set.requirements: + # Nothing is left to install, so we do not need an order. + return [] + + graph = self._result.graph + weights = get_topological_weights( + graph, + expected_node_count=len(self._result.mapping) + 1, + ) + + sorted_items = sorted( + req_set.requirements.items(), + key=functools.partial(_req_set_item_sorter, weights=weights), + reverse=True, + ) + return [ireq for _, ireq in sorted_items] + + +def get_topological_weights( + graph: "DirectedGraph[Optional[str]]", expected_node_count: int +) -> Dict[Optional[str], int]: + """Assign weights to each node based on how "deep" they are. + + This implementation may change at any point in the future without prior + notice. + + We first simplify the dependency graph by pruning any leaves and giving them + the highest weight: a package without any dependencies should be installed + first. This is done again and again in the same way, giving ever less weight + to the newly found leaves. The loop stops when no leaves are left: all + remaining packages have at least one dependency left in the graph. + + Then we continue with the remaining graph, by taking the length for the + longest path to any node from root, ignoring any paths that contain a single + node twice (i.e. cycles). This is done through a depth-first search through + the graph, while keeping track of the path to the node. + + Cycles in the graph result would result in node being revisited while also + being on its own path. In this case, take no action. This helps ensure we + don't get stuck in a cycle. + + When assigning weight, the longer path (i.e. larger length) is preferred. + """ + path: Set[Optional[str]] = set() + weights: Dict[Optional[str], int] = {} + + def visit(node: Optional[str]) -> None: + if node in path: + # We hit a cycle, so we'll break it here. + return + + # Time to visit the children! + path.add(node) + for child in graph.iter_children(node): + visit(child) + path.remove(node) + + last_known_parent_count = weights.get(node, 0) + weights[node] = max(last_known_parent_count, len(path)) + + # Simplify the graph, pruning leaves that have no dependencies. + # This is needed for large graphs (say over 200 packages) because the + # `visit` function is exponentially slower then, taking minutes. + # See https://github.com/pypa/pip/issues/10557 + # We will loop until we explicitly break the loop. + while True: + leaves = set() + for key in graph: + if key is None: + continue + for _child in graph.iter_children(key): + # This means we have at least one child + break + else: + # No child. + leaves.add(key) + if not leaves: + # We are done simplifying. + break + # Calculate the weight for the leaves. + weight = len(graph) - 1 + for leaf in leaves: + weights[leaf] = weight + # Remove the leaves from the graph, making it simpler. + for leaf in leaves: + graph.remove(leaf) + + # Visit the remaining graph. + # `None` is guaranteed to be the root node by resolvelib. + visit(None) + + # Sanity checks + assert weights[None] == 0 + assert len(weights) == expected_node_count + + return weights + + +def _req_set_item_sorter( + item: Tuple[str, InstallRequirement], + weights: Dict[Optional[str], int], +) -> Tuple[int, str]: + """Key function used to sort install requirements for installation. + + Based on the "weight" mapping calculated in ``get_installation_order()``. + The canonical package name is returned as the second member as a tie- + breaker to ensure the result is predictable, which is useful in tests. + """ + name = canonicalize_name(item[0]) + return weights[name], name diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py new file mode 100644 index 0000000..7300e0e --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py @@ -0,0 +1,189 @@ +import datetime +import hashlib +import json +import logging +import optparse +import os.path +import sys +from typing import Any, Dict + +from pip._vendor.packaging.version import parse as parse_version + +from pip._internal.index.collector import LinkCollector +from pip._internal.index.package_finder import PackageFinder +from pip._internal.metadata import get_default_environment +from pip._internal.models.selection_prefs import SelectionPreferences +from pip._internal.network.session import PipSession +from pip._internal.utils.filesystem import adjacent_tmp_file, check_path_owner, replace +from pip._internal.utils.misc import ensure_dir + +SELFCHECK_DATE_FMT = "%Y-%m-%dT%H:%M:%SZ" + + +logger = logging.getLogger(__name__) + + +def _get_statefile_name(key: str) -> str: + key_bytes = key.encode() + name = hashlib.sha224(key_bytes).hexdigest() + return name + + +class SelfCheckState: + def __init__(self, cache_dir: str) -> None: + self.state: Dict[str, Any] = {} + self.statefile_path = None + + # Try to load the existing state + if cache_dir: + self.statefile_path = os.path.join( + cache_dir, "selfcheck", _get_statefile_name(self.key) + ) + try: + with open(self.statefile_path, encoding="utf-8") as statefile: + self.state = json.load(statefile) + except (OSError, ValueError, KeyError): + # Explicitly suppressing exceptions, since we don't want to + # error out if the cache file is invalid. + pass + + @property + def key(self) -> str: + return sys.prefix + + def save(self, pypi_version: str, current_time: datetime.datetime) -> None: + # If we do not have a path to cache in, don't bother saving. + if not self.statefile_path: + return + + # Check to make sure that we own the directory + if not check_path_owner(os.path.dirname(self.statefile_path)): + return + + # Now that we've ensured the directory is owned by this user, we'll go + # ahead and make sure that all our directories are created. + ensure_dir(os.path.dirname(self.statefile_path)) + + state = { + # Include the key so it's easy to tell which pip wrote the + # file. + "key": self.key, + "last_check": current_time.strftime(SELFCHECK_DATE_FMT), + "pypi_version": pypi_version, + } + + text = json.dumps(state, sort_keys=True, separators=(",", ":")) + + with adjacent_tmp_file(self.statefile_path) as f: + f.write(text.encode()) + + try: + # Since we have a prefix-specific state file, we can just + # overwrite whatever is there, no need to check. + replace(f.name, self.statefile_path) + except OSError: + # Best effort. + pass + + +def was_installed_by_pip(pkg: str) -> bool: + """Checks whether pkg was installed by pip + + This is used not to display the upgrade message when pip is in fact + installed by system package manager, such as dnf on Fedora. + """ + dist = get_default_environment().get_distribution(pkg) + return dist is not None and "pip" == dist.installer + + +def pip_self_version_check(session: PipSession, options: optparse.Values) -> None: + """Check for an update for pip. + + Limit the frequency of checks to once per week. State is stored either in + the active virtualenv or in the user's USER_CACHE_DIR keyed off the prefix + of the pip script path. + """ + installed_dist = get_default_environment().get_distribution("pip") + if not installed_dist: + return + + pip_version = installed_dist.version + pypi_version = None + + try: + state = SelfCheckState(cache_dir=options.cache_dir) + + current_time = datetime.datetime.utcnow() + # Determine if we need to refresh the state + if "last_check" in state.state and "pypi_version" in state.state: + last_check = datetime.datetime.strptime( + state.state["last_check"], SELFCHECK_DATE_FMT + ) + if (current_time - last_check).total_seconds() < 7 * 24 * 60 * 60: + pypi_version = state.state["pypi_version"] + + # Refresh the version if we need to or just see if we need to warn + if pypi_version is None: + # Lets use PackageFinder to see what the latest pip version is + link_collector = LinkCollector.create( + session, + options=options, + suppress_no_index=True, + ) + + # Pass allow_yanked=False so we don't suggest upgrading to a + # yanked version. + selection_prefs = SelectionPreferences( + allow_yanked=False, + allow_all_prereleases=False, # Explicitly set to False + ) + + finder = PackageFinder.create( + link_collector=link_collector, + selection_prefs=selection_prefs, + use_deprecated_html5lib=( + "html5lib" in options.deprecated_features_enabled + ), + ) + best_candidate = finder.find_best_candidate("pip").best_candidate + if best_candidate is None: + return + pypi_version = str(best_candidate.version) + + # save that we've performed a check + state.save(pypi_version, current_time) + + remote_version = parse_version(pypi_version) + + local_version_is_older = ( + pip_version < remote_version + and pip_version.base_version != remote_version.base_version + and was_installed_by_pip("pip") + ) + + # Determine if our pypi_version is older + if not local_version_is_older: + return + + # We cannot tell how the current pip is available in the current + # command context, so be pragmatic here and suggest the command + # that's always available. This does not accommodate spaces in + # `sys.executable` on purpose as it is not possible to do it + # correctly without knowing the user's shell. Thus, + # it won't be done until possible through the standard library. + # Do not be tempted to use the undocumented subprocess.list2cmdline. + # It is considered an internal implementation detail for a reason. + pip_cmd = f"{sys.executable} -m pip" + logger.warning( + "You are using pip version %s; however, version %s is " + "available.\nYou should consider upgrading via the " + "'%s install --upgrade pip' command.", + pip_version, + pypi_version, + pip_cmd, + ) + except Exception: + logger.debug( + "There was an error checking the latest version of pip", + exc_info=True, + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..5f36afa32bfe6360c6f69ae4e9ba954feea91d52 GIT binary patch literal 199 zcmd1j<>g`kf{j()X(0MBh(HF6K#l_t7qb9~6oz01O-8?!3`HPe1o10NKO;XkRX;Ja zC?_#VKcLbjwM;*yC_gXNIX|zYC_g7BwMf69vLquv&(>JaOg|?x3CcCrGc?dI&MZmQ zEl5nxPE1cN)-T8`(2vi|D@iTNOU%(PEy>I&){h4YWR}Fo>lIYq;;_lhPbtkwwF9}K KmOD;)m zV8gfMT=WsLMKA5GucK>Ed4d8xb%wIH4!Q(5;*7}Q%s1b#>h}WzlV(;P23qv7$t%wou@=}g!hIBPtq6OYd7(QFT0{E{V@|g z5xikZPxQr(*o9RfoJ$h!E&n*KwW((LQu3mjO!9IP1SfKwms0bQ{blV^@lla!&BvAE zW-9q}+$~jfCDpLf@*s+$@HwAJGp$4v1bLa8bnWmUKhOQn3ly@ zd2mwsC=i?9iR#1WpK&~`W-`ulRb<2X`^Aa8iiN65d0dr7RZuDw&lgb9^2>+OqqxY2 zYxQCD#pkikjeIcAMlZ98)bTu@$7x;~smiQ~Ym*l`Mgm0hMdPo*`Uo!7nB9H4y!Rf` z8ybav(@oPdo5?h7f;4S;0qfl~{i)81^&dY?MKuDmtBq3VQ6Uj*R$F2ZZ5Lfnz}q-)-4(f}ud!+9@(2>cR{4*ehkRHYE=yf2 zpm9|z{$76T<^fi;MV2CD$_3|bDE``C)4QR2NYy?3kA-T5&E{iJkp>pVeMh1GKmH?O zZ1}j-khc*2HKn+64HNX*f%gIvahJbb$VslDXt#unl-Z|QIS3E!sXUSq&r1$miEg+OrLcs@BDGu84um`iI|{kd?CDMSALHZGg0-6o zafTf?!203-Es!i+h*Yz?{RDjq7LBk3-ab_bOX%3r55gVw0jTYLo>|PHtSzH#dC-01 po!J-2UavmH-3YsNbL-XJ$1QKaLM~~HhLNtnPZ_)G-VOFT{{ojagfsvE literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..c62c90ddc2333497e9bcb101973217bba3ca73a7 GIT binary patch literal 1625 zcmZWpPjBQj6ps_nOqx!oLj}79BxE5j(Jm995+^{2MZJJ3Bzl@l4d`C=BKHeZu8NVMO%C49q%8m$s4${4=zmwyoGOW--vP5u?t={(l8D(DfFu5R-K^QsRpl9Gyt-)tX6ez z;e;DGOVFfbsbbj8p-;)1*cWhJ}2(-^)$GH2;SJGhBWNre8XioX^e!t z;KfqrXeuS(pxy+qh0{MOTk4g}xPp?OWIwIHmlqj^RLK{*vY^XSLRPO4wEFsB_GMP8 zlg;*E_W5U-K?*;ud2#N@%aHdhcSJ+Q%dD}gG}*?BS-plB?M<4X-1=8@ACc zL6Ydv;hPZfu>`P>suo!~0{39L9Z!|umOG}pP@9fokuAG{GEP9xw5qy9 zzO1nboNh`znH~^!9mH;_s^(>0s&kpUtDfb4a4)udlCOB7P2MNPn|HR}#WSDTX*ed7 z(1?-=8HZl}h#AMyJu{!+#xWzvc?gLO+n^=CAsaS2qgWmxvK8G#KK5=XI9#gg5XN{Z z9dwadn=ZbqL2sxhVfQW9((plyu4ev=2KI6LF?Qo$iPP_yQQ1x>Oe2i|a-X&&Ya12lA-^ zzoWPFJADhoJj2Vzah{Mpq$eRmvKIkEK}wF(NjJ)Kp^H5CR=k7V(5~Ij1CF?E8(-Bd z?|(>$P|~{|84Laeb@W8*vd^DOhlhUPmCu+jz4)vCTm8m;CuR=^8pLr-##m^3(LUXu He6aN|mr9pp literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/compat.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..08fd8c03f2923a4487b15d69115d049e99d94db7 GIT binary patch literal 1515 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 L{Iyk?|JT0(T~qFD literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..17a4915147497b99ae91a486531a65406a3ee456 GIT binary patch literal 522 zcmYjNv1%MK5S3QiyUis|lRl_DLskifR7nUpqzM>9x@#8QYV4IyCoNi?&6;)R53$RX z`5m>X(x!Bk(P4uJ-kTXTym=abaIhd4zpsCs{lokxH_xNO<||@2MABqMG}VQrE2cENK^x{gnIEd&)+d;b#u>+x11c5WrY@uHK zMSXIT_y{Vba_e2}64Po-vjA}yT+8ynW0aUPjuC@EisXXc75C(ZMRG?cGSR8HXE%Ie z6W?(3Lr<10Re5Dzmw2vH89i=TmZ3n2kQW4=DStYZ=jIaJFB0;B9xi0(w;+`XR;}gf z_zf_4Y-hY$b& literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..7be52c09b089bc8cfa3452d29ba1e611417fc6e2 GIT binary patch literal 3320 zcmaJ^-H+SG5hs@);_-AJ_I=n%?S^gI1WIGcX@Ima9K(j~rbgSd5nq~CXhBfgl|-8& zncd~tCrd!vyVw2&Z2|kSkNtP}+NZqqp>J^$yT2iII=K!?fwQ~A{h0a9?93=zTk{P( z|Csz@@S}CZ_$LjPpA8JI<5m9#`OM%(*We~+iP<%)mUS6gE3w9Q*B(1vXY6*}aiiN9 zdtJ|@xpuNL_Pc)7caqg{v%7}A+g<;};0^8_8{88cM^<-}v*?Vl#aX^`)mULGj9=uw zz&EiqU~d?FRW!r~+NRjzYhs(P3rDyZZ=l^mi}izbeuketcDg(KyL^jpAKTqs&hXp$ zE91LZcWyrS{Jec*-oA-;d%j1Le}`WksW{5}~29F|{f~|t6mlZnTBA22c={QSO+y4?c8hb6Lv~Hw_rFS!(5ckXDQe%vvl%EDuK>w7#;|zzzxI6+O6C7KD~YO#{QkVdsl)! zZMpoI7+lAznjpe}sSGj`)M4e$y*R&hD$(b)ta~l1^ujQW#v%+$KMZS)(Qk&~7e$oR zU;b{$HEdat=i|;O8;ed9%OvV`?j7C|2OTc6RNTx`EwdyMvXdX`QI>xEVf&*_68GlA z58EGH?xbhmyQPh(F*T=bYEA8_bL7IYjr-NB&8ex`5tHv|>#5DnXXebE zx=)>{@yx7eef!!L+nc-zG};R^+Dka7mMiH-mVT^M(d#FXQZ)>XBpU*SVYxCC`j_Yn zSvKZiv>K9tlV^yWC9*|io5&6b@TeA?+EyYI7%=@3qUXU;w2kL^=B{bK^qFt1o4ZV2 z0P{5$bik}&dmkNbJV3P2bQ7&VTc)8czy|@qwht3RcqS;>z&i=**4DRKqbKFW1OEEIJ18RZy zJ??^MVr28ifDN6Q%e|)-U*Z0-F?DYlN91;msUv@??P=r4{FAAj2kx|?ZNAEzWQi&$ ztVM=p7(W+DE+oaW6Nf`MdmJlG5pGbV{W?&^`mpW$0Un89m!(&#K8-1WAyUlw0ofv@ z?es_lg~HZ#ID9lZ1S?jr?iq|Cwb-dAM0zR(ZwL2BS&{IdCxR&GXB2?72oz$lNc*Ba zmu6vw*F{nVE(A2m(*GkCVtYgml_FFhh=nk(s7}fp2K^`{jp~Ev7GF9P`p!djkPQM{ z=747c+2VDjff4D2D+|=d*@56eoYvbCqMt^w!a|$|H_v1cSG&Edf_@<-v|k(pG>0$; zgvTkEj=6%OHsD|ALC4oyFMIQ;*f+EBI7;~?iiQC>Itfp<8)R}ET)G5>FU?ne{A78H z8O;bZ;hPQ@#}zpY^)0SLdQ}(b^yE8qpMta)_aHw^M2BjL)KIIVgGUugaG?V@0PrC2 z2SpN87N^rsPsJq4%fTQ{IWSFt2@iOz`h}w02`qV#%j_WLP)rEk!!b1~dlU9#HhGWC z^<)-2ijxFM9eejF?*rhT7)1whR>+_ah=-y*dGCG<_p1#2WcGeN3lq~UNHR>2fhzJm zlaQc2xp*VUGl)P%!cxEh6gaItx&7O$IB}~QbTYvIfIh2k6L79(EC5~z)}CCyb*d>j zDK5+)E1)ubd!%))u5>!XSdWTc8`eQO&Z8>zRt8a>C$r~f(5LF*`%Qj8#h0E-3CKneWinp&OSwBkDwf17wmkcXf ztjc$#k67P-n1}rON=2#lFFZuU&`z$936r*6_dbx7j8$-RFSug^Ta*E8o|@`Y)D7nKA$X literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..d4f2a2f5dc142af7f6eb6401fdb4df8e946a23ba GIT binary patch literal 2090 zcmZux&2Jk;6yMpMUGJ{f`D#8|QK+F%WTDzYE#*S1qE?moP(TVGVIi$Ho^ibCewdkY zO47B2NX0EzE)`O8PENZtce`%xbv>hZvRdwUeIwH>$ir@E zWH+nlQ8xnFPAERltruon)zU!EwcsggN5+M6^kwM1&E=2 zpDnRV&)n`Jo7=QnD}O_7R*Pu=i=j%(BFS1**FP4$LAuL7Df*=j9;Sl#)Yl@@H4u%i z_DxTs0CDv5w0I2P`Y=(0Se5ZeWUzI1ds2tYgrZ8*BFVY-1Xm+b^lbds=|kb`!TSJS z`3EeObz~h|#Ht7*Yu4D_w#JSkm9=9l=fD=%Dx29y6!$wWte%l-$Ige~Tf9B>^uhB^ zWuqPS#wQRTRL)U2k&mGeMPuq+Kd|M!PpzNGD-n^{K!4^yM6_mMMCFKY;r}Ufj~bP8 z4EdSUZGh6-Uw=>*yIiPd(!2nzsY=)m(_vHa??-?~&I{F)N~Fbhd*5l^Z|?g~$L~EI z-+wyZZ^+Ts1hZ1?-8~`KPsokdoc4Elu4xJt5Qv=iK*$p%u;a9Y za0k6I&r=nrOgN~dgG3IrmkfuzV8TUJH2Y_o?v!cKq5@l5)X`p_NmvJck!)k?@;6Jo z2Idph8I(EiB&o=ftsX(oA+<_D($D*^mp_9`5OPX4Hv{hkSVZ_If;33f|{} z12%|*ya9`E`-GB+cw~Y2XOR;UpUe^a#|1kyI!cznE?&p`hO!)q9>>Fa1Qh2F$_SY0 z&s7kVgbt5E___@tQHY(po~aP zma8D?wVB&NN#pagnqZU|Y(v&Q@m>hjY&_C51NP}vT;o&%gz=LB=ULoKdIR3W%AY@2 z*BZR$7Jq^OJ#C3QiX0&~pp(Z=<;aHNfMeL@9+U5!F&(>OuR_+j@~W}A<603^L|&iz zdKH1_nyOV)`IWO1RJF=w7KVh z(sj7SdG3=7Uq>~G4KS0)n;7z+UR$2+HBsgU#h9fo;4f@lGjtQ6L&>FxER2>u^-d-gwkn(w^EI!u14>etiuX-@agcJ1-f} zWcy`C=B^X)kS>!ccjbSBFl~XItuMc7H)Es?HIjyRdhu2BMe!XN#%2N-QfazXmYGR> u1~G%3p{V~6BsGiXP1HZJPE#~qld$<4?5g9&>gqn9OBJfK`%Mq-nRr<-XI&o_P#3d<8e8W+VC{pJmmU1w%~@(wO3}^1Kl#^8U`$87~=fL?=$43i_G8bEfW;y&xfM&AoAkR-Ana2aHWM-ZF9 z47dpfTq6O^0LPGKZdUvqISLASEVDB?zY{44lD^Coh<2qGQdLKXLeH*t#jIMo z{i-^wf3YhEHLPFcm|3v(E-J>R+YP*aB){osD269bz$kB@mDbd)D~)J>!T zC3zZEg&oa7m+5QgBfFND5nb@66l@?CT>@f$ojP=#wkTuH-y1%oY7N=@;gVgsx~mOk zv*-)Q*XQhB**cfeQ7)QU-;8q1kivc^s;m=?4>nekNv+DifpxV})eBWP7M5F;@}prU XiWDA~<)&M>v`CAt(7ID!z3cu1=ISsl literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..50aa39a2744330c9921decc5061bc262517430cc GIT binary patch literal 2155 zcmbVN&5j#I5T2eHkH?O8vurj$1cX}3AsAvi$x2A90D+Pq@uLML;bIgeKx$3K`Z}i4SJ%H=C`4@v< z(jfQ)mGf5xl#k)IKZD4FoXDVCK1r8&J?w_?3}rNqyD`DNNLI#4HyKyERjtedY`8+iiO%Q<-xG&lZ) zn1cN#DblYdPH4qsGb}c&a6Fr^{vjK3ThykOn+$ERcf(AT5^9)DRSwo8Vce8Su8xYG zvvsC)Hk7)@WbpaOJ4fL(wmN z%{RaO?vqxRwdQwQ@3)`5`;xTgwRHwiq|oppf=HXh)Bu`a1G5Q_m!r;s9`g)Ato)X9xj8~}1gOUX@VGIIx7eYo3xuOmfosqVJ#-R)olv{p^gnTSaz6UuP|J<|a= zr0uLq-JZ;f&1|K4G_GQqLJ-@D*@DM~TE<{l*K!XO7c7DoOBgaQ?Z+`%A44=|GzcwH*k_y>Vjni1*!Dv5%QN zgj!Q*%{DgbvS`gRS^#rqix@YGP{V4Zg(?zZ(P1<8AQu}K5-w`K-vP66k*;=p8A@>( z(lk{NZ^3P`JZW4fo1{Tf68;^B7XU(V)&R{x83q7O@FFl*7vzMv@RX3iMK1!o<6^Vp zZ86$Z1N1k~^mC^x9%2C0101fZZ1jv^{1!~MGc%muflxUf!4_?Q^W@Rv?8#?OAKk&oO5>W${EPRSr9Y)xB}@G` z&ljESE}hJ{{eNE0g?AS7DzUe7t#0GcLl;A0%P?2m*epT&6x#dNJ<1^YTf5$!0aDRZ znbRJpI?sV&EC jbv~8+BmAV<8z9ms1r}(Kt#FHkNl4+4E? literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/encoding.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..67d7decf6af9bca7ce8ecd916ca9487cf645e637 GIT binary patch literal 1312 zcmZuv&2Jk;6rb5Iuh&ju(llzzhgNWji{d4*6jdlisELDskXED>lAFj{d&c%QL-@1?PBl;Ez_7Sz_>!h;4?K`AO*T@P)9kNQ+ zesbCy1fQaM?F#xtCv{6Z$B9(heLl_@ow{Sy-+nap4D9Sp%LQ(C=~9KHJlfnXT+Q8O z6jVmF^W^DQr*acc?{Si(gO?vaK0lKWw_a|ay>6U;Sl14TRjfTh)mWrGZ2GufE}+>5 zu;rg16goubn`hP~zO-g&j%Rp*#l0C))(roM3H}+bJhx}o0$T{9Q}nILatPQ26Wc`L z|A&|M%q9+TjZM4@OB^eA?#*mCYpGp2Gl$?Ymiu3zAMnhXmllXP=5$h86xDCnc^~T7 z%Ac2szrfiyDwtOmXkmygPk%WW(%wZFhuw*yGL%XH3t^uNZ~-@=;$e>qL3@f#LP8ZN zp&HVVrUhX^5W+f&8SBPy4x}^Qiy3VUsLBNGQ}~zMByT~Ur1g*`7c}G4I^zMAQI=#;CrK3*Y0RRrN|=mpsyDKUuEb--JH_=kptyVo zMAZrK18lw7v>)IASMfSt#n$%@u3_hmco!1tceQ5->q&73Ol=7&?i$5YlMF^cvx2@yWGOfA03^aFdr-60cDjw3!=MG3$La%i?ahh@! ztAwYr)6u0KA7u%URf9hAwsU%K33FHN?~gbcGx~{{7x^BD0QuN_HSF7kR>*t*1i_~L EA4fB1>Hq)$ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..1ea88c4d25a79effaa6c7bc55ae612e9b4209622 GIT binary patch literal 1309 zcmZ8hO|RTE6wTMnONUp91wyKX#NAaRO%qVnO08%`d6g&vJ)Yo6NVBOt@y*24iLGmA zh9GwELtx30zmqL1wk+Aebuyq4mh8lieeSvU9LLP#->#ZQZEF5|DG z^_@Q$DY{-KWA=q|e$2nLUYSnlbv$ORP~Dgb+PiT{=zHp_IBY+)@SbwN;_lwz!AIZ5 zKPNK&C5|JX{t*2bA|&EZ-gt$bC!yg;!dfJ#4S~=ajFu2S4c4g6yJEEhZm*b%Ayx5? z0j#pn2*+K5!vhAGvm+p}RvpR$KEX=#4#Cu*oa@m|Sb~&O-5zQ(E!@1geYF8MxWWqG zY@qG6S5_n348Ad)+kkIS5il2yQ-xCSn&>37#`y`4(RokHbPfSlO#D>mJd;Ja0cJoB zTwm9mW}rKOS1mHg8Ee?1pXs&cz})AwZ%wEP9+dFNL6if_3e52>nS+uH11(mK=#*=x zA|3^GfyW${nNB37B4qZwK5_L7+yPgfjHLBOg*RD)Bi;R z7UQI&n;810`H|89 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..501bee97f809c12f18f4ac720bb8cd9813aae5c4 GIT binary patch literal 5167 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..e0876ed0c1bf4603de34b4c3ea0b584b6cad89cd GIT binary patch literal 949 zcmY*Y&2G~`5MKWzank%zqW;``^#L1N2??nnN=elURH`OG<%{cNH_fVRueIy6ja5$Y z7#!fpk@w&U_R6WRz=>Hmf^@Cu2$1^2FlS4aQ3l`4!+j z!YD-8z$P;iGc*mYTg*!A&<5QOE4UI?iAid>Ix#m9ad2%1VJEELq1A|AuARnDD~3IiX>L8({O1ggcmeZ?eOq;iS?|-*7Gvo9mYbnhr1_B zVaiV9gs7?@`Ano^Lmy2i!F=rE z*-4ql9f}!@XyTsf>}M{OZtRYEDk&y{U^fOkbz?D}(o5n_V5a`9E&4P%gIT2~hf>}SPp&3b;g7Lrp_dN7^IKS=mB4no1Ds`H}zt literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..de9e3084e7a105c11fa69d038bd88780d266b3c3 GIT binary patch literal 1678 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/inject_securetransport.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4709069610a3690764963e81b94b005235d4fb45 GIT binary patch literal 994 zcmZuwO>Yx15VdzVA6;4+38@?^fsaILcPWuL0Rl=66(y;<1w=0^XYDj@9DA{ygjDnd zKLm~(`8#{%#9!b7vzt_^DlB>A@jTDGnYXJqHbMmJ=f&&cwvW)S(z(9i4n2o$2^fY> z5yQ-r_!P4`3s~)IaO!dI3&Mzb32Ha!E=K4D8F86&LnfL{B`0n~9TDoBXU>v@XH&yZ z3{^JQ#_bTTh?tbeC=5?VeB}^3(o@OEfD@(_C)5&7ja-z6Tw5y!lJ5|w30D^K5h^7y z{Nt2cs6iDAEeDWRmORjg%z*))anmLgu$kfDGD3$ANG^#9b#{{)@abu{qCe+A6v{IV z?EuND8^~YMpU|wI>_8E&s-P5V4C(thS4nb6gaw{D)X)v^9RWF*$;n|d+lwAW;cu8L z>J@dv-PEY8^sbf%hc(#yu&o2*&^cy!?3)Hd3A(5=k0I$@qW4IJ0doH0E(Rqq`T$BL zXpTOk^MLu|nz>)$n}82wZBoC)xO}r-zHyDAx9Hq>hrczymzqMBb`8ieYUV;2&=!f! z7HYL|v1uzI-Ib8-wZgXxTQqY?-B6nexK8fdui|O zo0r|=VmlXkl+L(f+C)<$r5JRgOe<%^zywgVX!Mh1iaX26r$RZMuApttGyqf~e;~5~ z=Rcp~k)H6F3M1(tK3cruvzQt9lJ?8AT1sx>eBnk~J?%t~W2m@tJJH_5*b2vYbDE9m z8MiU8i_3!CC@SNr6Vk>j8aIXz<%?qL|DlqVy$2@r0_=I~cpcZV_cshmuZ3Hcx9*!w vfIvf~_Pw@WG}4smEKN-fE~;SF-!*d^0!8!5@?U#aN@Sa00@Pd!{c!6ajY<~+ literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/logging.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..9a0b6ce6bd75888459f567a935c43c9b9941e94d GIT binary patch literal 9638 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/setuptools_build.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a267d32a0498685dab6c77703e9cf3b962b6b83 GIT binary patch literal 4602 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 Y68n`?X8+^3>OD)DsI0*shVN53pL^ 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 RRx3}==-;Yi)y$K>{9j)k1x^3} literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..cb09578dcbc8189cc90ebd03afd5479c31cfc9a0 GIT binary patch literal 6659 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..4e7762c30f585a58891367ea38720a36830094e0 GIT binary patch literal 3295 zcmaJ@U31&U6~%%8NKq0ce`%67nQokB6m}%iiPKJ|6Q^}$InBgXG?qGPI89)PyCh+Q z0J^)BELNK7jM~Sxe?fZeV_*B;KY`ai^)K|H?zsz6qGUDX0NA@&?B09sxgXi$V%@>- z@8d6eCyS2rFA`>d9)zFc(*M9sID#ckr+l&wv$ET9?X%LU*r(U=@N^S@7<7VRwNqt| zbWUq>?u>Qn(mkCQ6^s^yCl`CJ@I~-PuhW=FRZ)YqG?C^+9nvzSstn|fH=Q>fd@(N; zFne>dW>GXC-I_>CVj0ryiF8BUgmg!+9jAHg-_YOLYPyB@B-W;=eVLm$OQU4`ah!IO zk&x^9P#Za1*Rhf7dDMLo^`-u;{?P+m@BeK3ll>?e$xn?M$)jGBXxS_RCCx~sUD|o} z=R?@QrElYAoafBA2FTIqr1GKyZQOCXF_7ICn#Vnkb6b0nmSL`BFMi3RRM@$RIE+kp z(5lxte!GKM^8pqlQuFQ2ZT``{AMTiykgU0supQJs=hO!;SDv9>m+lPz-1xem|k(BoZvYoy=@ zu^I6EFppOC6lPL=0`ANKU|4k!X~I(l(CY%yazwfo?_4og$^IybV0P(1?7V_y*7$m$ z2#D8=XPC6cFJNGt6DRi#J8@t>8~@^|B_`hmS&3l>a#cw_L72y>j)mmWj2&zIF;SXl zW+2r;tYxd|TFmX)*P8Ig6^ET`{)4IJ3$9wasyVr{hRbT+!+?U~)HRjoo?vJ0u`}kz zKSKHtl|Q?GT{>n*>@+xYPOE3mSB~ol&vQKIq{1NWI3GCrodd=k`hShh)JUnRG=%uhew(xNEkfp;h9QZ z24V@Y=35AeHG()c_+*p_o@R!F4x$}(yHaZoM0qbxWJ#5A{o>5AKQg`bkDIKh$+VjZ zuz#yLSGbujygV|4!h4>@X-T3gpenp9mucbA?nPZA=8e^;sD8P#sZ^#wy`^&d5GI9m zYQcIl-m~1h6C&KhnRRxPAL0PLjN7vBvPPxO-hZ{=2F!h>zK6+6?5kjc%7XRbHU`AL zV+USiBS$q1{3+Zs_(dSq9XXGjZ|)p3Q#tjH*cm%^k6f%{>b)cP)EC|v6aEWVy;rXO z-LeS4;A+$Xy=@HhXaC1z&v-9WlqZq1`K5FNf+L}8WcSin(>$qj*^PTKGN&0th93-M zdj0nif`#0uM|qxU1i#7np0uI9AM1E8fk#y~SK1SLt zS-3U+%f>lbCp=xf(0Y{%sdJRU>n#Kpv~kom@xE;Fhgy$@G|^A8JrtiSzR(uRi9Q6K z#Q|9ukvA<;t=+=6<+bpwiI1CsrCkxgu)b79bz)laZut4u#*<$^+6;HT-r3#!Rk-u{ z?q<0CaN~=IpKb1hPd7i?{7vE8l3DnDm5p)~yE%%6GE_WzC=SxT9u{d9mL|;9p!-;< z-@q-HuQ9LUGVhh=*W5Z=VF->tcuY~?ba9>kD8-$30QVqFQXD0^it(QNXA}nIY(PPS zv}b#R(<%jstzZ8vxerI)O|$ho(Fu7J(~=;zRT##U7m&fS ze%vMGse;XvUK>L~qA-S@vk`DRVs066L< zZbenZXbpz4s78Cb%zbohQ44Jr3qy5_mIbA~$a4$yIvi#q#Fxce7p}AO)9%fFeAUtK zh8L^LX5;nhOIb}*VO^Zo6MrsBf# zZ?Rg_>%a?GfJE=PY8_&8rKnQOfeY3>g{!1mrLC!#DFSnt(<|b*s?f|Fipi5QNZ~B< zA)NI#y{S@PiV~!#At*dDc&4SG&H!B~nk1?(Hi|61R*P%xsC@!=j}rMQA+GP@Rs a{4cY*>yevYHT*`cF}LD3mKty0Z2S)nznNPA literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..6cc991319473a0323c30689755bab0d5a80465b2 GIT binary patch literal 4420 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 ZLh@5V5>$3BI%~^o@2$<9Tlv+}e*uR`wO#-K literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/_log.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/_log.py new file mode 100644 index 0000000..92c4c6a --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/_log.py @@ -0,0 +1,38 @@ +"""Customize logging + +Defines custom logger class for the `logger.verbose(...)` method. + +init_logging() must be called before any other modules that call logging.getLogger. +""" + +import logging +from typing import Any, cast + +# custom log level for `--verbose` output +# between DEBUG and INFO +VERBOSE = 15 + + +class VerboseLogger(logging.Logger): + """Custom Logger, defining a verbose log-level + + VERBOSE is between INFO and DEBUG. + """ + + def verbose(self, msg: str, *args: Any, **kwargs: Any) -> None: + return self.log(VERBOSE, msg, *args, **kwargs) + + +def getLogger(name: str) -> VerboseLogger: + """logging.getLogger, but ensures our VerboseLogger class is returned""" + return cast(VerboseLogger, logging.getLogger(name)) + + +def init_logging() -> None: + """Register our VerboseLogger and VERBOSE log level. + + Should be called before any calls to getLogger(), + i.e. in pip._internal.__init__ + """ + logging.setLoggerClass(VerboseLogger) + logging.addLevelName(VERBOSE, "VERBOSE") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py new file mode 100644 index 0000000..16933bf --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py @@ -0,0 +1,52 @@ +""" +This code wraps the vendored appdirs module to so the return values are +compatible for the current pip code base. + +The intention is to rewrite current usages gradually, keeping the tests pass, +and eventually drop this after all usages are changed. +""" + +import os +import sys +from typing import List + +from pip._vendor import platformdirs as _appdirs + + +def user_cache_dir(appname: str) -> str: + return _appdirs.user_cache_dir(appname, appauthor=False) + + +def _macos_user_config_dir(appname: str, roaming: bool = True) -> str: + # Use ~/Application Support/pip, if the directory exists. + path = _appdirs.user_data_dir(appname, appauthor=False, roaming=roaming) + if os.path.isdir(path): + return path + + # Use a Linux-like ~/.config/pip, by default. + linux_like_path = "~/.config/" + if appname: + linux_like_path = os.path.join(linux_like_path, appname) + + return os.path.expanduser(linux_like_path) + + +def user_config_dir(appname: str, roaming: bool = True) -> str: + if sys.platform == "darwin": + return _macos_user_config_dir(appname, roaming) + + return _appdirs.user_config_dir(appname, appauthor=False, roaming=roaming) + + +# for the discussion regarding site_config_dir locations +# see +def site_config_dirs(appname: str) -> List[str]: + if sys.platform == "darwin": + return [_appdirs.site_data_dir(appname, appauthor=False, multipath=True)] + + dirval = _appdirs.site_config_dir(appname, appauthor=False, multipath=True) + if sys.platform == "win32": + return [dirval] + + # Unix-y system. Look in /etc as well. + return dirval.split(os.pathsep) + ["/etc"] diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/compat.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/compat.py new file mode 100644 index 0000000..3f4d300 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/compat.py @@ -0,0 +1,63 @@ +"""Stuff that differs in different Python versions and platform +distributions.""" + +import logging +import os +import sys + +__all__ = ["get_path_uid", "stdlib_pkgs", "WINDOWS"] + + +logger = logging.getLogger(__name__) + + +def has_tls() -> bool: + try: + import _ssl # noqa: F401 # ignore unused + + return True + except ImportError: + pass + + from pip._vendor.urllib3.util import IS_PYOPENSSL + + return IS_PYOPENSSL + + +def get_path_uid(path: str) -> int: + """ + Return path's uid. + + Does not follow symlinks: + https://github.com/pypa/pip/pull/935#discussion_r5307003 + + Placed this function in compat due to differences on AIX and + Jython, that should eventually go away. + + :raises OSError: When path is a symlink or can't be read. + """ + if hasattr(os, "O_NOFOLLOW"): + fd = os.open(path, os.O_RDONLY | os.O_NOFOLLOW) + file_uid = os.fstat(fd).st_uid + os.close(fd) + else: # AIX and Jython + # WARNING: time of check vulnerability, but best we can do w/o NOFOLLOW + if not os.path.islink(path): + # older versions of Jython don't have `os.fstat` + file_uid = os.stat(path).st_uid + else: + # raise OSError for parity with os.O_NOFOLLOW above + raise OSError(f"{path} is a symlink; Will not return uid for symlinks") + return file_uid + + +# packages in the stdlib that may have installation metadata, but should not be +# considered 'installed'. this theoretically could be determined based on +# dist.location (py27:`sysconfig.get_paths()['stdlib']`, +# py26:sysconfig.get_config_vars('LIBDEST')), but fear platform variation may +# make this ineffective, so hard-coding +stdlib_pkgs = {"python", "wsgiref", "argparse"} + + +# windows detection, covers cpython and ironpython +WINDOWS = sys.platform.startswith("win") or (sys.platform == "cli" and os.name == "nt") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py new file mode 100644 index 0000000..b6ed9a7 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py @@ -0,0 +1,165 @@ +"""Generate and work with PEP 425 Compatibility Tags. +""" + +import re +from typing import List, Optional, Tuple + +from pip._vendor.packaging.tags import ( + PythonVersion, + Tag, + compatible_tags, + cpython_tags, + generic_tags, + interpreter_name, + interpreter_version, + mac_platforms, +) + +_osx_arch_pat = re.compile(r"(.+)_(\d+)_(\d+)_(.+)") + + +def version_info_to_nodot(version_info: Tuple[int, ...]) -> str: + # Only use up to the first two numbers. + return "".join(map(str, version_info[:2])) + + +def _mac_platforms(arch: str) -> List[str]: + match = _osx_arch_pat.match(arch) + if match: + name, major, minor, actual_arch = match.groups() + mac_version = (int(major), int(minor)) + arches = [ + # Since we have always only checked that the platform starts + # with "macosx", for backwards-compatibility we extract the + # actual prefix provided by the user in case they provided + # something like "macosxcustom_". It may be good to remove + # this as undocumented or deprecate it in the future. + "{}_{}".format(name, arch[len("macosx_") :]) + for arch in mac_platforms(mac_version, actual_arch) + ] + else: + # arch pattern didn't match (?!) + arches = [arch] + return arches + + +def _custom_manylinux_platforms(arch: str) -> List[str]: + arches = [arch] + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch_prefix == "manylinux2014": + # manylinux1/manylinux2010 wheels run on most manylinux2014 systems + # with the exception of wheels depending on ncurses. PEP 599 states + # manylinux1/manylinux2010 wheels should be considered + # manylinux2014 wheels: + # https://www.python.org/dev/peps/pep-0599/#backwards-compatibility-with-manylinux2010-wheels + if arch_suffix in {"i686", "x86_64"}: + arches.append("manylinux2010" + arch_sep + arch_suffix) + arches.append("manylinux1" + arch_sep + arch_suffix) + elif arch_prefix == "manylinux2010": + # manylinux1 wheels run on most manylinux2010 systems with the + # exception of wheels depending on ncurses. PEP 571 states + # manylinux1 wheels should be considered manylinux2010 wheels: + # https://www.python.org/dev/peps/pep-0571/#backwards-compatibility-with-manylinux1-wheels + arches.append("manylinux1" + arch_sep + arch_suffix) + return arches + + +def _get_custom_platforms(arch: str) -> List[str]: + arch_prefix, arch_sep, arch_suffix = arch.partition("_") + if arch.startswith("macosx"): + arches = _mac_platforms(arch) + elif arch_prefix in ["manylinux2014", "manylinux2010"]: + arches = _custom_manylinux_platforms(arch) + else: + arches = [arch] + return arches + + +def _expand_allowed_platforms(platforms: Optional[List[str]]) -> Optional[List[str]]: + if not platforms: + return None + + seen = set() + result = [] + + for p in platforms: + if p in seen: + continue + additions = [c for c in _get_custom_platforms(p) if c not in seen] + seen.update(additions) + result.extend(additions) + + return result + + +def _get_python_version(version: str) -> PythonVersion: + if len(version) > 1: + return int(version[0]), int(version[1:]) + else: + return (int(version[0]),) + + +def _get_custom_interpreter( + implementation: Optional[str] = None, version: Optional[str] = None +) -> str: + if implementation is None: + implementation = interpreter_name() + if version is None: + version = interpreter_version() + return f"{implementation}{version}" + + +def get_supported( + version: Optional[str] = None, + platforms: Optional[List[str]] = None, + impl: Optional[str] = None, + abis: Optional[List[str]] = None, +) -> List[Tag]: + """Return a list of supported tags for each version specified in + `versions`. + + :param version: a string version, of the form "33" or "32", + or None. The version will be assumed to support our ABI. + :param platform: specify a list of platforms you want valid + tags for, or None. If None, use the local system platform. + :param impl: specify the exact implementation you want valid + tags for, or None. If None, use the local interpreter impl. + :param abis: specify a list of abis you want valid + tags for, or None. If None, use the local interpreter abi. + """ + supported: List[Tag] = [] + + python_version: Optional[PythonVersion] = None + if version is not None: + python_version = _get_python_version(version) + + interpreter = _get_custom_interpreter(impl, version) + + platforms = _expand_allowed_platforms(platforms) + + is_cpython = (impl or interpreter_name()) == "cp" + if is_cpython: + supported.extend( + cpython_tags( + python_version=python_version, + abis=abis, + platforms=platforms, + ) + ) + else: + supported.extend( + generic_tags( + interpreter=interpreter, + abis=abis, + platforms=platforms, + ) + ) + supported.extend( + compatible_tags( + python_version=python_version, + interpreter=interpreter, + platforms=platforms, + ) + ) + + return supported diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/datetime.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/datetime.py new file mode 100644 index 0000000..8668b3b --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/datetime.py @@ -0,0 +1,11 @@ +"""For when pip wants to check the date or time. +""" + +import datetime + + +def today_is_later_than(year: int, month: int, day: int) -> bool: + today = datetime.date.today() + given = datetime.date(year, month, day) + + return today > given diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py new file mode 100644 index 0000000..72bd6f2 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py @@ -0,0 +1,120 @@ +""" +A module that implements tooling to enable easy warnings about deprecations. +""" + +import logging +import warnings +from typing import Any, Optional, TextIO, Type, Union + +from pip._vendor.packaging.version import parse + +from pip import __version__ as current_version # NOTE: tests patch this name. + +DEPRECATION_MSG_PREFIX = "DEPRECATION: " + + +class PipDeprecationWarning(Warning): + pass + + +_original_showwarning: Any = None + + +# Warnings <-> Logging Integration +def _showwarning( + message: Union[Warning, str], + category: Type[Warning], + filename: str, + lineno: int, + file: Optional[TextIO] = None, + line: Optional[str] = None, +) -> None: + if file is not None: + if _original_showwarning is not None: + _original_showwarning(message, category, filename, lineno, file, line) + elif issubclass(category, PipDeprecationWarning): + # We use a specially named logger which will handle all of the + # deprecation messages for pip. + logger = logging.getLogger("pip._internal.deprecations") + logger.warning(message) + else: + _original_showwarning(message, category, filename, lineno, file, line) + + +def install_warning_logger() -> None: + # Enable our Deprecation Warnings + warnings.simplefilter("default", PipDeprecationWarning, append=True) + + global _original_showwarning + + if _original_showwarning is None: + _original_showwarning = warnings.showwarning + warnings.showwarning = _showwarning + + +def deprecated( + *, + reason: str, + replacement: Optional[str], + gone_in: Optional[str], + feature_flag: Optional[str] = None, + issue: Optional[int] = None, +) -> None: + """Helper to deprecate existing functionality. + + reason: + Textual reason shown to the user about why this functionality has + been deprecated. Should be a complete sentence. + replacement: + Textual suggestion shown to the user about what alternative + functionality they can use. + gone_in: + The version of pip does this functionality should get removed in. + Raises an error if pip's current version is greater than or equal to + this. + feature_flag: + Command-line flag of the form --use-feature={feature_flag} for testing + upcoming functionality. + issue: + Issue number on the tracker that would serve as a useful place for + users to find related discussion and provide feedback. + """ + + # Determine whether or not the feature is already gone in this version. + is_gone = gone_in is not None and parse(current_version) >= parse(gone_in) + + message_parts = [ + (reason, f"{DEPRECATION_MSG_PREFIX}{{}}"), + ( + gone_in, + "pip {} will enforce this behaviour change." + if not is_gone + else "Since pip {}, this is no longer supported.", + ), + ( + replacement, + "A possible replacement is {}.", + ), + ( + feature_flag, + "You can use the flag --use-feature={} to test the upcoming behaviour." + if not is_gone + else None, + ), + ( + issue, + "Discussion can be found at https://github.com/pypa/pip/issues/{}", + ), + ] + + message = " ".join( + format_str.format(value) + for value, format_str in message_parts + if format_str is not None and value is not None + ) + + # Raise as an error if this behaviour is deprecated. + if is_gone: + raise PipDeprecationWarning(message) + + warnings.warn(message, category=PipDeprecationWarning, stacklevel=2) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py new file mode 100644 index 0000000..0e8e5e1 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py @@ -0,0 +1,87 @@ +from typing import Optional + +from pip._internal.models.direct_url import ArchiveInfo, DirectUrl, DirInfo, VcsInfo +from pip._internal.models.link import Link +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + + +def direct_url_as_pep440_direct_reference(direct_url: DirectUrl, name: str) -> str: + """Convert a DirectUrl to a pip requirement string.""" + direct_url.validate() # if invalid, this is a pip bug + requirement = name + " @ " + fragments = [] + if isinstance(direct_url.info, VcsInfo): + requirement += "{}+{}@{}".format( + direct_url.info.vcs, direct_url.url, direct_url.info.commit_id + ) + elif isinstance(direct_url.info, ArchiveInfo): + requirement += direct_url.url + if direct_url.info.hash: + fragments.append(direct_url.info.hash) + else: + assert isinstance(direct_url.info, DirInfo) + requirement += direct_url.url + if direct_url.subdirectory: + fragments.append("subdirectory=" + direct_url.subdirectory) + if fragments: + requirement += "#" + "&".join(fragments) + return requirement + + +def direct_url_for_editable(source_dir: str) -> DirectUrl: + return DirectUrl( + url=path_to_url(source_dir), + info=DirInfo(editable=True), + ) + + +def direct_url_from_link( + link: Link, source_dir: Optional[str] = None, link_is_in_wheel_cache: bool = False +) -> DirectUrl: + if link.is_vcs: + vcs_backend = vcs.get_backend_for_scheme(link.scheme) + assert vcs_backend + url, requested_revision, _ = vcs_backend.get_url_rev_and_auth( + link.url_without_fragment + ) + # For VCS links, we need to find out and add commit_id. + if link_is_in_wheel_cache: + # If the requested VCS link corresponds to a cached + # wheel, it means the requested revision was an + # immutable commit hash, otherwise it would not have + # been cached. In that case we don't have a source_dir + # with the VCS checkout. + assert requested_revision + commit_id = requested_revision + else: + # If the wheel was not in cache, it means we have + # had to checkout from VCS to build and we have a source_dir + # which we can inspect to find out the commit id. + assert source_dir + commit_id = vcs_backend.get_revision(source_dir) + return DirectUrl( + url=url, + info=VcsInfo( + vcs=vcs_backend.name, + commit_id=commit_id, + requested_revision=requested_revision, + ), + subdirectory=link.subdirectory_fragment, + ) + elif link.is_existing_dir(): + return DirectUrl( + url=link.url_without_fragment, + info=DirInfo(), + subdirectory=link.subdirectory_fragment, + ) + else: + hash = None + hash_name = link.hash_name + if hash_name: + hash = f"{hash_name}={link.hash}" + return DirectUrl( + url=link.url_without_fragment, + info=ArchiveInfo(hash=hash), + subdirectory=link.subdirectory_fragment, + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py new file mode 100644 index 0000000..e4aa5b8 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/distutils_args.py @@ -0,0 +1,42 @@ +from distutils.errors import DistutilsArgError +from distutils.fancy_getopt import FancyGetopt +from typing import Dict, List + +_options = [ + ("exec-prefix=", None, ""), + ("home=", None, ""), + ("install-base=", None, ""), + ("install-data=", None, ""), + ("install-headers=", None, ""), + ("install-lib=", None, ""), + ("install-platlib=", None, ""), + ("install-purelib=", None, ""), + ("install-scripts=", None, ""), + ("prefix=", None, ""), + ("root=", None, ""), + ("user", None, ""), +] + + +# typeshed doesn't permit Tuple[str, None, str], see python/typeshed#3469. +_distutils_getopt = FancyGetopt(_options) # type: ignore + + +def parse_distutils_args(args: List[str]) -> Dict[str, str]: + """Parse provided arguments, returning an object that has the + matched arguments. + + Any unknown arguments are ignored. + """ + result = {} + for arg in args: + try: + _, match = _distutils_getopt.getopt(args=[arg]) + except DistutilsArgError: + # We don't care about any other options, which here may be + # considered unrecognized since our option list is not + # exhaustive. + pass + else: + result.update(match.__dict__) + return result diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py new file mode 100644 index 0000000..9e0da8d --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py @@ -0,0 +1,75 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import re +import sys +from typing import Optional + +from pip._internal.locations import site_packages, user_site +from pip._internal.utils.virtualenv import ( + running_under_virtualenv, + virtualenv_no_global, +) + +__all__ = [ + "egg_link_path_from_sys_path", + "egg_link_path_from_location", +] + + +def _egg_link_name(raw_name: str) -> str: + """ + Convert a Name metadata value to a .egg-link name, by applying + the same substitution as pkg_resources's safe_name function. + Note: we cannot use canonicalize_name because it has a different logic. + """ + return re.sub("[^A-Za-z0-9.]+", "-", raw_name) + ".egg-link" + + +def egg_link_path_from_sys_path(raw_name: str) -> Optional[str]: + """ + Look for a .egg-link file for project name, by walking sys.path. + """ + egg_link_name = _egg_link_name(raw_name) + for path_item in sys.path: + egg_link = os.path.join(path_item, egg_link_name) + if os.path.isfile(egg_link): + return egg_link + return None + + +def egg_link_path_from_location(raw_name: str) -> Optional[str]: + """ + Return the path for the .egg-link file if it exists, otherwise, None. + + There's 3 scenarios: + 1) not in a virtualenv + try to find in site.USER_SITE, then site_packages + 2) in a no-global virtualenv + try to find in site_packages + 3) in a yes-global virtualenv + try to find in site_packages, then site.USER_SITE + (don't look in global location) + + For #1 and #3, there could be odd cases, where there's an egg-link in 2 + locations. + + This method will just return the first one found. + """ + sites = [] + if running_under_virtualenv(): + sites.append(site_packages) + if not virtualenv_no_global() and user_site: + sites.append(user_site) + else: + if user_site: + sites.append(user_site) + sites.append(site_packages) + + egg_link_name = _egg_link_name(raw_name) + for site in sites: + egglink = os.path.join(site, egg_link_name) + if os.path.isfile(egglink): + return egglink + return None diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/encoding.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/encoding.py new file mode 100644 index 0000000..1c73f6c --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/encoding.py @@ -0,0 +1,36 @@ +import codecs +import locale +import re +import sys +from typing import List, Tuple + +BOMS: List[Tuple[bytes, str]] = [ + (codecs.BOM_UTF8, "utf-8"), + (codecs.BOM_UTF16, "utf-16"), + (codecs.BOM_UTF16_BE, "utf-16-be"), + (codecs.BOM_UTF16_LE, "utf-16-le"), + (codecs.BOM_UTF32, "utf-32"), + (codecs.BOM_UTF32_BE, "utf-32-be"), + (codecs.BOM_UTF32_LE, "utf-32-le"), +] + +ENCODING_RE = re.compile(br"coding[:=]\s*([-\w.]+)") + + +def auto_decode(data: bytes) -> str: + """Check a bytes string for a BOM to correctly detect the encoding + + Fallback to locale.getpreferredencoding(False) like open() on Python3""" + for bom, encoding in BOMS: + if data.startswith(bom): + return data[len(bom) :].decode(encoding) + # Lets check the first two lines as in PEP263 + for line in data.split(b"\n")[:2]: + if line[0:1] == b"#" and ENCODING_RE.search(line): + result = ENCODING_RE.search(line) + assert result is not None + encoding = result.groups()[0].decode("ascii") + return data.decode(encoding) + return data.decode( + locale.getpreferredencoding(False) or sys.getdefaultencoding(), + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py new file mode 100644 index 0000000..1504a12 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py @@ -0,0 +1,27 @@ +import sys +from typing import List, Optional + +from pip._internal.cli.main import main + + +def _wrapper(args: Optional[List[str]] = None) -> int: + """Central wrapper for all old entrypoints. + + Historically pip has had several entrypoints defined. Because of issues + arising from PATH, sys.path, multiple Pythons, their interactions, and most + of them having a pip installed, users suffer every time an entrypoint gets + moved. + + To alleviate this pain, and provide a mechanism for warning users and + directing them to an appropriate place for help, we now define all of + our old entrypoints as wrappers for the current one. + """ + sys.stderr.write( + "WARNING: pip is being invoked by an old script wrapper. This will " + "fail in a future version of pip.\n" + "Please see https://github.com/pypa/pip/issues/5599 for advice on " + "fixing the underlying issue.\n" + "To avoid this problem you can invoke Python with '-m pip' instead of " + "running pip directly.\n" + ) + return main(args) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py new file mode 100644 index 0000000..b7e6191 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py @@ -0,0 +1,182 @@ +import fnmatch +import os +import os.path +import random +import shutil +import stat +import sys +from contextlib import contextmanager +from tempfile import NamedTemporaryFile +from typing import Any, BinaryIO, Iterator, List, Union, cast + +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip._internal.utils.compat import get_path_uid +from pip._internal.utils.misc import format_size + + +def check_path_owner(path: str) -> bool: + # If we don't have a way to check the effective uid of this process, then + # we'll just assume that we own the directory. + if sys.platform == "win32" or not hasattr(os, "geteuid"): + return True + + assert os.path.isabs(path) + + previous = None + while path != previous: + if os.path.lexists(path): + # Check if path is writable by current user. + if os.geteuid() == 0: + # Special handling for root user in order to handle properly + # cases where users use sudo without -H flag. + try: + path_uid = get_path_uid(path) + except OSError: + return False + return path_uid == 0 + else: + return os.access(path, os.W_OK) + else: + previous, path = path, os.path.dirname(path) + return False # assume we don't own the path + + +def copy2_fixed(src: str, dest: str) -> None: + """Wrap shutil.copy2() but map errors copying socket files to + SpecialFileError as expected. + + See also https://bugs.python.org/issue37700. + """ + try: + shutil.copy2(src, dest) + except OSError: + for f in [src, dest]: + try: + is_socket_file = is_socket(f) + except OSError: + # An error has already occurred. Another error here is not + # a problem and we can ignore it. + pass + else: + if is_socket_file: + raise shutil.SpecialFileError(f"`{f}` is a socket") + + raise + + +def is_socket(path: str) -> bool: + return stat.S_ISSOCK(os.lstat(path).st_mode) + + +@contextmanager +def adjacent_tmp_file(path: str, **kwargs: Any) -> Iterator[BinaryIO]: + """Return a file-like object pointing to a tmp file next to path. + + The file is created securely and is ensured to be written to disk + after the context reaches its end. + + kwargs will be passed to tempfile.NamedTemporaryFile to control + the way the temporary file will be opened. + """ + with NamedTemporaryFile( + delete=False, + dir=os.path.dirname(path), + prefix=os.path.basename(path), + suffix=".tmp", + **kwargs, + ) as f: + result = cast(BinaryIO, f) + try: + yield result + finally: + result.flush() + os.fsync(result.fileno()) + + +# Tenacity raises RetryError by default, explicitly raise the original exception +_replace_retry = retry(reraise=True, stop=stop_after_delay(1), wait=wait_fixed(0.25)) + +replace = _replace_retry(os.replace) + + +# test_writable_dir and _test_writable_dir_win are copied from Flit, +# with the author's agreement to also place them under pip's license. +def test_writable_dir(path: str) -> bool: + """Check if a directory is writable. + + Uses os.access() on POSIX, tries creating files on Windows. + """ + # If the directory doesn't exist, find the closest parent that does. + while not os.path.isdir(path): + parent = os.path.dirname(path) + if parent == path: + break # Should never get here, but infinite loops are bad + path = parent + + if os.name == "posix": + return os.access(path, os.W_OK) + + return _test_writable_dir_win(path) + + +def _test_writable_dir_win(path: str) -> bool: + # os.access doesn't work on Windows: http://bugs.python.org/issue2528 + # and we can't use tempfile: http://bugs.python.org/issue22107 + basename = "accesstest_deleteme_fishfingers_custard_" + alphabet = "abcdefghijklmnopqrstuvwxyz0123456789" + for _ in range(10): + name = basename + "".join(random.choice(alphabet) for _ in range(6)) + file = os.path.join(path, name) + try: + fd = os.open(file, os.O_RDWR | os.O_CREAT | os.O_EXCL) + except FileExistsError: + pass + except PermissionError: + # This could be because there's a directory with the same name. + # But it's highly unlikely there's a directory called that, + # so we'll assume it's because the parent dir is not writable. + # This could as well be because the parent dir is not readable, + # due to non-privileged user access. + return False + else: + os.close(fd) + os.unlink(file) + return True + + # This should never be reached + raise OSError("Unexpected condition testing for writable directory") + + +def find_files(path: str, pattern: str) -> List[str]: + """Returns a list of absolute paths of files beneath path, recursively, + with filenames which match the UNIX-style shell glob pattern.""" + result: List[str] = [] + for root, _, files in os.walk(path): + matches = fnmatch.filter(files, pattern) + result.extend(os.path.join(root, f) for f in matches) + return result + + +def file_size(path: str) -> Union[int, float]: + # If it's a symlink, return 0. + if os.path.islink(path): + return 0 + return os.path.getsize(path) + + +def format_file_size(path: str) -> str: + return format_size(file_size(path)) + + +def directory_size(path: str) -> Union[int, float]: + size = 0.0 + for root, _dirs, files in os.walk(path): + for filename in files: + file_path = os.path.join(root, filename) + size += file_size(file_path) + return size + + +def format_directory_size(path: str) -> str: + return format_size(directory_size(path)) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py new file mode 100644 index 0000000..5948570 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py @@ -0,0 +1,27 @@ +"""Filetype information. +""" + +from typing import Tuple + +from pip._internal.utils.misc import splitext + +WHEEL_EXTENSION = ".whl" +BZ2_EXTENSIONS: Tuple[str, ...] = (".tar.bz2", ".tbz") +XZ_EXTENSIONS: Tuple[str, ...] = ( + ".tar.xz", + ".txz", + ".tlz", + ".tar.lz", + ".tar.lzma", +) +ZIP_EXTENSIONS: Tuple[str, ...] = (".zip", WHEEL_EXTENSION) +TAR_EXTENSIONS: Tuple[str, ...] = (".tar.gz", ".tgz", ".tar") +ARCHIVE_EXTENSIONS = ZIP_EXTENSIONS + BZ2_EXTENSIONS + TAR_EXTENSIONS + XZ_EXTENSIONS + + +def is_archive_file(name: str) -> bool: + """Return True if `name` is a considered as an archive file.""" + ext = splitext(name)[1].lower() + if ext in ARCHIVE_EXTENSIONS: + return True + return False diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/glibc.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/glibc.py new file mode 100644 index 0000000..7bd3c20 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/glibc.py @@ -0,0 +1,88 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import os +import sys +from typing import Optional, Tuple + + +def glibc_version_string() -> Optional[str]: + "Returns glibc version string, or None if not using glibc." + return glibc_version_string_confstr() or glibc_version_string_ctypes() + + +def glibc_version_string_confstr() -> Optional[str]: + "Primary implementation of glibc_version_string using os.confstr." + # os.confstr is quite a bit faster than ctypes.DLL. It's also less likely + # to be broken or missing. This strategy is used in the standard library + # platform module: + # https://github.com/python/cpython/blob/fcf1d003bf4f0100c9d0921ff3d70e1127ca1b71/Lib/platform.py#L175-L183 + if sys.platform == "win32": + return None + try: + # os.confstr("CS_GNU_LIBC_VERSION") returns a string like "glibc 2.17": + _, version = os.confstr("CS_GNU_LIBC_VERSION").split() + except (AttributeError, OSError, ValueError): + # os.confstr() or CS_GNU_LIBC_VERSION not available (or a bad value)... + return None + return version + + +def glibc_version_string_ctypes() -> Optional[str]: + "Fallback implementation of glibc_version_string using ctypes." + + try: + import ctypes + except ImportError: + return None + + # ctypes.CDLL(None) internally calls dlopen(NULL), and as the dlopen + # manpage says, "If filename is NULL, then the returned handle is for the + # main program". This way we can let the linker do the work to figure out + # which libc our process is actually using. + process_namespace = ctypes.CDLL(None) + try: + gnu_get_libc_version = process_namespace.gnu_get_libc_version + except AttributeError: + # Symbol doesn't exist -> therefore, we are not linked to + # glibc. + return None + + # Call gnu_get_libc_version, which returns a string like "2.5" + gnu_get_libc_version.restype = ctypes.c_char_p + version_str = gnu_get_libc_version() + # py2 / py3 compatibility: + if not isinstance(version_str, str): + version_str = version_str.decode("ascii") + + return version_str + + +# platform.libc_ver regularly returns completely nonsensical glibc +# versions. E.g. on my computer, platform says: +# +# ~$ python2.7 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.7') +# ~$ python3.5 -c 'import platform; print(platform.libc_ver())' +# ('glibc', '2.9') +# +# But the truth is: +# +# ~$ ldd --version +# ldd (Debian GLIBC 2.22-11) 2.22 +# +# This is unfortunate, because it means that the linehaul data on libc +# versions that was generated by pip 8.1.2 and earlier is useless and +# misleading. Solution: instead of using platform, use our code that actually +# works. +def libc_ver() -> Tuple[str, str]: + """Try to determine the glibc version + + Returns a tuple of strings (lib, version) which default to empty strings + in case the lookup fails. + """ + glibc_version = glibc_version_string() + if glibc_version is None: + return ("", "") + else: + return ("glibc", glibc_version) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/hashes.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/hashes.py new file mode 100644 index 0000000..82eb035 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/hashes.py @@ -0,0 +1,144 @@ +import hashlib +from typing import TYPE_CHECKING, BinaryIO, Dict, Iterator, List + +from pip._internal.exceptions import HashMismatch, HashMissing, InstallationError +from pip._internal.utils.misc import read_chunks + +if TYPE_CHECKING: + from hashlib import _Hash + + # NoReturn introduced in 3.6.2; imported only for type checking to maintain + # pip compatibility with older patch versions of Python 3.6 + from typing import NoReturn + + +# The recommended hash algo of the moment. Change this whenever the state of +# the art changes; it won't hurt backward compatibility. +FAVORITE_HASH = "sha256" + + +# Names of hashlib algorithms allowed by the --hash option and ``pip hash`` +# Currently, those are the ones at least as collision-resistant as sha256. +STRONG_HASHES = ["sha256", "sha384", "sha512"] + + +class Hashes: + """A wrapper that builds multiple hashes at once and checks them against + known-good values + + """ + + def __init__(self, hashes: Dict[str, List[str]] = None) -> None: + """ + :param hashes: A dict of algorithm names pointing to lists of allowed + hex digests + """ + allowed = {} + if hashes is not None: + for alg, keys in hashes.items(): + # Make sure values are always sorted (to ease equality checks) + allowed[alg] = sorted(keys) + self._allowed = allowed + + def __and__(self, other: "Hashes") -> "Hashes": + if not isinstance(other, Hashes): + return NotImplemented + + # If either of the Hashes object is entirely empty (i.e. no hash + # specified at all), all hashes from the other object are allowed. + if not other: + return self + if not self: + return other + + # Otherwise only hashes that present in both objects are allowed. + new = {} + for alg, values in other._allowed.items(): + if alg not in self._allowed: + continue + new[alg] = [v for v in values if v in self._allowed[alg]] + return Hashes(new) + + @property + def digest_count(self) -> int: + return sum(len(digests) for digests in self._allowed.values()) + + def is_hash_allowed(self, hash_name: str, hex_digest: str) -> bool: + """Return whether the given hex digest is allowed.""" + return hex_digest in self._allowed.get(hash_name, []) + + def check_against_chunks(self, chunks: Iterator[bytes]) -> None: + """Check good hashes against ones built from iterable of chunks of + data. + + Raise HashMismatch if none match. + + """ + gots = {} + for hash_name in self._allowed.keys(): + try: + gots[hash_name] = hashlib.new(hash_name) + except (ValueError, TypeError): + raise InstallationError(f"Unknown hash name: {hash_name}") + + for chunk in chunks: + for hash in gots.values(): + hash.update(chunk) + + for hash_name, got in gots.items(): + if got.hexdigest() in self._allowed[hash_name]: + return + self._raise(gots) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMismatch(self._allowed, gots) + + def check_against_file(self, file: BinaryIO) -> None: + """Check good hashes against a file-like object + + Raise HashMismatch if none match. + + """ + return self.check_against_chunks(read_chunks(file)) + + def check_against_path(self, path: str) -> None: + with open(path, "rb") as file: + return self.check_against_file(file) + + def __bool__(self) -> bool: + """Return whether I know any known-good hashes.""" + return bool(self._allowed) + + def __eq__(self, other: object) -> bool: + if not isinstance(other, Hashes): + return NotImplemented + return self._allowed == other._allowed + + def __hash__(self) -> int: + return hash( + ",".join( + sorted( + ":".join((alg, digest)) + for alg, digest_list in self._allowed.items() + for digest in digest_list + ) + ) + ) + + +class MissingHashes(Hashes): + """A workalike for Hashes used when we're missing a hash for a requirement + + It computes the actual hash of the requirement and raises a HashMissing + exception showing it to the user. + + """ + + def __init__(self) -> None: + """Don't offer the ``hashes`` kwarg.""" + # Pass our favorite hash in to generate a "gotten hash". With the + # empty list, it will never match, so an error will always raise. + super().__init__(hashes={FAVORITE_HASH: []}) + + def _raise(self, gots: Dict[str, "_Hash"]) -> "NoReturn": + raise HashMissing(gots[FAVORITE_HASH].hexdigest()) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py new file mode 100644 index 0000000..276aa79 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/inject_securetransport.py @@ -0,0 +1,35 @@ +"""A helper module that injects SecureTransport, on import. + +The import should be done as early as possible, to ensure all requests and +sessions (or whatever) are created after injecting SecureTransport. + +Note that we only do the injection on macOS, when the linked OpenSSL is too +old to handle TLSv1.2. +""" + +import sys + + +def inject_securetransport() -> None: + # Only relevant on macOS + if sys.platform != "darwin": + return + + try: + import ssl + except ImportError: + return + + # Checks for OpenSSL 1.0.1 + if ssl.OPENSSL_VERSION_NUMBER >= 0x1000100F: + return + + try: + from pip._vendor.urllib3.contrib import securetransport + except (ImportError, OSError): + return + + securetransport.inject_into_urllib3() + + +inject_securetransport() diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/logging.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/logging.py new file mode 100644 index 0000000..6e001c5 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/logging.py @@ -0,0 +1,343 @@ +import contextlib +import errno +import logging +import logging.handlers +import os +import sys +import threading +from dataclasses import dataclass +from logging import Filter +from typing import IO, Any, ClassVar, Iterator, List, Optional, TextIO, Type + +from pip._vendor.rich.console import ( + Console, + ConsoleOptions, + ConsoleRenderable, + RenderResult, +) +from pip._vendor.rich.highlighter import NullHighlighter +from pip._vendor.rich.logging import RichHandler +from pip._vendor.rich.segment import Segment +from pip._vendor.rich.style import Style + +from pip._internal.exceptions import DiagnosticPipError +from pip._internal.utils._log import VERBOSE, getLogger +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.deprecation import DEPRECATION_MSG_PREFIX +from pip._internal.utils.misc import ensure_dir + +_log_state = threading.local() +subprocess_logger = getLogger("pip.subprocessor") + + +class BrokenStdoutLoggingError(Exception): + """ + Raised if BrokenPipeError occurs for the stdout stream while logging. + """ + + +def _is_broken_pipe_error(exc_class: Type[BaseException], exc: BaseException) -> bool: + if exc_class is BrokenPipeError: + return True + + # On Windows, a broken pipe can show up as EINVAL rather than EPIPE: + # https://bugs.python.org/issue19612 + # https://bugs.python.org/issue30418 + if not WINDOWS: + return False + + return isinstance(exc, OSError) and exc.errno in (errno.EINVAL, errno.EPIPE) + + +@contextlib.contextmanager +def indent_log(num: int = 2) -> Iterator[None]: + """ + A context manager which will cause the log output to be indented for any + log messages emitted inside it. + """ + # For thread-safety + _log_state.indentation = get_indentation() + _log_state.indentation += num + try: + yield + finally: + _log_state.indentation -= num + + +def get_indentation() -> int: + return getattr(_log_state, "indentation", 0) + + +class IndentingFormatter(logging.Formatter): + default_time_format = "%Y-%m-%dT%H:%M:%S" + + def __init__( + self, + *args: Any, + add_timestamp: bool = False, + **kwargs: Any, + ) -> None: + """ + A logging.Formatter that obeys the indent_log() context manager. + + :param add_timestamp: A bool indicating output lines should be prefixed + with their record's timestamp. + """ + self.add_timestamp = add_timestamp + super().__init__(*args, **kwargs) + + def get_message_start(self, formatted: str, levelno: int) -> str: + """ + Return the start of the formatted log message (not counting the + prefix to add to each line). + """ + if levelno < logging.WARNING: + return "" + if formatted.startswith(DEPRECATION_MSG_PREFIX): + # Then the message already has a prefix. We don't want it to + # look like "WARNING: DEPRECATION: ...." + return "" + if levelno < logging.ERROR: + return "WARNING: " + + return "ERROR: " + + def format(self, record: logging.LogRecord) -> str: + """ + Calls the standard formatter, but will indent all of the log message + lines by our current indentation level. + """ + formatted = super().format(record) + message_start = self.get_message_start(formatted, record.levelno) + formatted = message_start + formatted + + prefix = "" + if self.add_timestamp: + prefix = f"{self.formatTime(record)} " + prefix += " " * get_indentation() + formatted = "".join([prefix + line for line in formatted.splitlines(True)]) + return formatted + + +@dataclass +class IndentedRenderable: + renderable: ConsoleRenderable + indent: int + + def __rich_console__( + self, console: Console, options: ConsoleOptions + ) -> RenderResult: + segments = console.render(self.renderable, options) + lines = Segment.split_lines(segments) + for line in lines: + yield Segment(" " * self.indent) + yield from line + yield Segment("\n") + + +class RichPipStreamHandler(RichHandler): + KEYWORDS: ClassVar[Optional[List[str]]] = [] + + def __init__(self, stream: Optional[TextIO], no_color: bool) -> None: + super().__init__( + console=Console(file=stream, no_color=no_color, soft_wrap=True), + show_time=False, + show_level=False, + show_path=False, + highlighter=NullHighlighter(), + ) + + # Our custom override on Rich's logger, to make things work as we need them to. + def emit(self, record: logging.LogRecord) -> None: + style: Optional[Style] = None + + # If we are given a diagnostic error to present, present it with indentation. + if record.msg == "[present-diagnostic] %s" and len(record.args) == 1: + diagnostic_error: DiagnosticPipError = record.args[0] # type: ignore[index] + assert isinstance(diagnostic_error, DiagnosticPipError) + + renderable: ConsoleRenderable = IndentedRenderable( + diagnostic_error, indent=get_indentation() + ) + else: + message = self.format(record) + renderable = self.render_message(record, message) + if record.levelno is not None: + if record.levelno >= logging.ERROR: + style = Style(color="red") + elif record.levelno >= logging.WARNING: + style = Style(color="yellow") + + try: + self.console.print(renderable, overflow="ignore", crop=False, style=style) + except Exception: + self.handleError(record) + + def handleError(self, record: logging.LogRecord) -> None: + """Called when logging is unable to log some output.""" + + exc_class, exc = sys.exc_info()[:2] + # If a broken pipe occurred while calling write() or flush() on the + # stdout stream in logging's Handler.emit(), then raise our special + # exception so we can handle it in main() instead of logging the + # broken pipe error and continuing. + if ( + exc_class + and exc + and self.console.file is sys.stdout + and _is_broken_pipe_error(exc_class, exc) + ): + raise BrokenStdoutLoggingError() + + return super().handleError(record) + + +class BetterRotatingFileHandler(logging.handlers.RotatingFileHandler): + def _open(self) -> IO[Any]: + ensure_dir(os.path.dirname(self.baseFilename)) + return super()._open() + + +class MaxLevelFilter(Filter): + def __init__(self, level: int) -> None: + self.level = level + + def filter(self, record: logging.LogRecord) -> bool: + return record.levelno < self.level + + +class ExcludeLoggerFilter(Filter): + + """ + A logging Filter that excludes records from a logger (or its children). + """ + + def filter(self, record: logging.LogRecord) -> bool: + # The base Filter class allows only records from a logger (or its + # children). + return not super().filter(record) + + +def setup_logging(verbosity: int, no_color: bool, user_log_file: Optional[str]) -> int: + """Configures and sets up all of the logging + + Returns the requested logging level, as its integer value. + """ + + # Determine the level to be logging at. + if verbosity >= 2: + level_number = logging.DEBUG + elif verbosity == 1: + level_number = VERBOSE + elif verbosity == -1: + level_number = logging.WARNING + elif verbosity == -2: + level_number = logging.ERROR + elif verbosity <= -3: + level_number = logging.CRITICAL + else: + level_number = logging.INFO + + level = logging.getLevelName(level_number) + + # The "root" logger should match the "console" level *unless* we also need + # to log to a user log file. + include_user_log = user_log_file is not None + if include_user_log: + additional_log_file = user_log_file + root_level = "DEBUG" + else: + additional_log_file = "/dev/null" + root_level = level + + # Disable any logging besides WARNING unless we have DEBUG level logging + # enabled for vendored libraries. + vendored_log_level = "WARNING" if level in ["INFO", "ERROR"] else "DEBUG" + + # Shorthands for clarity + log_streams = { + "stdout": "ext://sys.stdout", + "stderr": "ext://sys.stderr", + } + handler_classes = { + "stream": "pip._internal.utils.logging.RichPipStreamHandler", + "file": "pip._internal.utils.logging.BetterRotatingFileHandler", + } + handlers = ["console", "console_errors", "console_subprocess"] + ( + ["user_log"] if include_user_log else [] + ) + + logging.config.dictConfig( + { + "version": 1, + "disable_existing_loggers": False, + "filters": { + "exclude_warnings": { + "()": "pip._internal.utils.logging.MaxLevelFilter", + "level": logging.WARNING, + }, + "restrict_to_subprocess": { + "()": "logging.Filter", + "name": subprocess_logger.name, + }, + "exclude_subprocess": { + "()": "pip._internal.utils.logging.ExcludeLoggerFilter", + "name": subprocess_logger.name, + }, + }, + "formatters": { + "indent": { + "()": IndentingFormatter, + "format": "%(message)s", + }, + "indent_with_timestamp": { + "()": IndentingFormatter, + "format": "%(message)s", + "add_timestamp": True, + }, + }, + "handlers": { + "console": { + "level": level, + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stdout"], + "filters": ["exclude_subprocess", "exclude_warnings"], + "formatter": "indent", + }, + "console_errors": { + "level": "WARNING", + "class": handler_classes["stream"], + "no_color": no_color, + "stream": log_streams["stderr"], + "filters": ["exclude_subprocess"], + "formatter": "indent", + }, + # A handler responsible for logging to the console messages + # from the "subprocessor" logger. + "console_subprocess": { + "level": level, + "class": handler_classes["stream"], + "stream": log_streams["stderr"], + "no_color": no_color, + "filters": ["restrict_to_subprocess"], + "formatter": "indent", + }, + "user_log": { + "level": "DEBUG", + "class": handler_classes["file"], + "filename": additional_log_file, + "encoding": "utf-8", + "delay": True, + "formatter": "indent_with_timestamp", + }, + }, + "root": { + "level": root_level, + "handlers": handlers, + }, + "loggers": {"pip._vendor": {"level": vendored_log_level}}, + } + ) + + return level_number diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/misc.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/misc.py new file mode 100644 index 0000000..0bf9e99 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/misc.py @@ -0,0 +1,653 @@ +# The following comment should be removed at some point in the future. +# mypy: strict-optional=False + +import contextlib +import errno +import getpass +import hashlib +import io +import logging +import os +import posixpath +import shutil +import stat +import sys +import urllib.parse +from io import StringIO +from itertools import filterfalse, tee, zip_longest +from types import TracebackType +from typing import ( + Any, + BinaryIO, + Callable, + ContextManager, + Iterable, + Iterator, + List, + Optional, + TextIO, + Tuple, + Type, + TypeVar, + cast, +) + +from pip._vendor.tenacity import retry, stop_after_delay, wait_fixed + +from pip import __version__ +from pip._internal.exceptions import CommandError +from pip._internal.locations import get_major_minor_version +from pip._internal.utils.compat import WINDOWS +from pip._internal.utils.virtualenv import running_under_virtualenv + +__all__ = [ + "rmtree", + "display_path", + "backup_dir", + "ask", + "splitext", + "format_size", + "is_installable_dir", + "normalize_path", + "renames", + "get_prog", + "captured_stdout", + "ensure_dir", + "remove_auth_from_url", +] + + +logger = logging.getLogger(__name__) + +T = TypeVar("T") +ExcInfo = Tuple[Type[BaseException], BaseException, TracebackType] +VersionInfo = Tuple[int, int, int] +NetlocTuple = Tuple[str, Tuple[Optional[str], Optional[str]]] + + +def get_pip_version() -> str: + pip_pkg_dir = os.path.join(os.path.dirname(__file__), "..", "..") + pip_pkg_dir = os.path.abspath(pip_pkg_dir) + + return "pip {} from {} (python {})".format( + __version__, + pip_pkg_dir, + get_major_minor_version(), + ) + + +def normalize_version_info(py_version_info: Tuple[int, ...]) -> Tuple[int, int, int]: + """ + Convert a tuple of ints representing a Python version to one of length + three. + + :param py_version_info: a tuple of ints representing a Python version, + or None to specify no version. The tuple can have any length. + + :return: a tuple of length three if `py_version_info` is non-None. + Otherwise, return `py_version_info` unchanged (i.e. None). + """ + if len(py_version_info) < 3: + py_version_info += (3 - len(py_version_info)) * (0,) + elif len(py_version_info) > 3: + py_version_info = py_version_info[:3] + + return cast("VersionInfo", py_version_info) + + +def ensure_dir(path: str) -> None: + """os.path.makedirs without EEXIST.""" + try: + os.makedirs(path) + except OSError as e: + # Windows can raise spurious ENOTEMPTY errors. See #6426. + if e.errno != errno.EEXIST and e.errno != errno.ENOTEMPTY: + raise + + +def get_prog() -> str: + try: + prog = os.path.basename(sys.argv[0]) + if prog in ("__main__.py", "-c"): + return f"{sys.executable} -m pip" + else: + return prog + except (AttributeError, TypeError, IndexError): + pass + return "pip" + + +# Retry every half second for up to 3 seconds +# Tenacity raises RetryError by default, explicitly raise the original exception +@retry(reraise=True, stop=stop_after_delay(3), wait=wait_fixed(0.5)) +def rmtree(dir: str, ignore_errors: bool = False) -> None: + shutil.rmtree(dir, ignore_errors=ignore_errors, onerror=rmtree_errorhandler) + + +def rmtree_errorhandler(func: Callable[..., Any], path: str, exc_info: ExcInfo) -> None: + """On Windows, the files in .svn are read-only, so when rmtree() tries to + remove them, an exception is thrown. We catch that here, remove the + read-only attribute, and hopefully continue without problems.""" + try: + has_attr_readonly = not (os.stat(path).st_mode & stat.S_IWRITE) + except OSError: + # it's equivalent to os.path.exists + return + + if has_attr_readonly: + # convert to read/write + os.chmod(path, stat.S_IWRITE) + # use the original function to repeat the operation + func(path) + return + else: + raise + + +def display_path(path: str) -> str: + """Gives the display value for a given path, making it relative to cwd + if possible.""" + path = os.path.normcase(os.path.abspath(path)) + if path.startswith(os.getcwd() + os.path.sep): + path = "." + path[len(os.getcwd()) :] + return path + + +def backup_dir(dir: str, ext: str = ".bak") -> str: + """Figure out the name of a directory to back up the given dir to + (adding .bak, .bak2, etc)""" + n = 1 + extension = ext + while os.path.exists(dir + extension): + n += 1 + extension = ext + str(n) + return dir + extension + + +def ask_path_exists(message: str, options: Iterable[str]) -> str: + for action in os.environ.get("PIP_EXISTS_ACTION", "").split(): + if action in options: + return action + return ask(message, options) + + +def _check_no_input(message: str) -> None: + """Raise an error if no input is allowed.""" + if os.environ.get("PIP_NO_INPUT"): + raise Exception( + f"No input was expected ($PIP_NO_INPUT set); question: {message}" + ) + + +def ask(message: str, options: Iterable[str]) -> str: + """Ask the message interactively, with the given possible responses""" + while 1: + _check_no_input(message) + response = input(message) + response = response.strip().lower() + if response not in options: + print( + "Your response ({!r}) was not one of the expected responses: " + "{}".format(response, ", ".join(options)) + ) + else: + return response + + +def ask_input(message: str) -> str: + """Ask for input interactively.""" + _check_no_input(message) + return input(message) + + +def ask_password(message: str) -> str: + """Ask for a password interactively.""" + _check_no_input(message) + return getpass.getpass(message) + + +def strtobool(val: str) -> int: + """Convert a string representation of truth to true (1) or false (0). + + True values are 'y', 'yes', 't', 'true', 'on', and '1'; false values + are 'n', 'no', 'f', 'false', 'off', and '0'. Raises ValueError if + 'val' is anything else. + """ + val = val.lower() + if val in ("y", "yes", "t", "true", "on", "1"): + return 1 + elif val in ("n", "no", "f", "false", "off", "0"): + return 0 + else: + raise ValueError(f"invalid truth value {val!r}") + + +def format_size(bytes: float) -> str: + if bytes > 1000 * 1000: + return "{:.1f} MB".format(bytes / 1000.0 / 1000) + elif bytes > 10 * 1000: + return "{} kB".format(int(bytes / 1000)) + elif bytes > 1000: + return "{:.1f} kB".format(bytes / 1000.0) + else: + return "{} bytes".format(int(bytes)) + + +def tabulate(rows: Iterable[Iterable[Any]]) -> Tuple[List[str], List[int]]: + """Return a list of formatted rows and a list of column sizes. + + For example:: + + >>> tabulate([['foobar', 2000], [0xdeadbeef]]) + (['foobar 2000', '3735928559'], [10, 4]) + """ + rows = [tuple(map(str, row)) for row in rows] + sizes = [max(map(len, col)) for col in zip_longest(*rows, fillvalue="")] + table = [" ".join(map(str.ljust, row, sizes)).rstrip() for row in rows] + return table, sizes + + +def is_installable_dir(path: str) -> bool: + """Is path is a directory containing pyproject.toml or setup.py? + + If pyproject.toml exists, this is a PEP 517 project. Otherwise we look for + a legacy setuptools layout by identifying setup.py. We don't check for the + setup.cfg because using it without setup.py is only available for PEP 517 + projects, which are already covered by the pyproject.toml check. + """ + if not os.path.isdir(path): + return False + if os.path.isfile(os.path.join(path, "pyproject.toml")): + return True + if os.path.isfile(os.path.join(path, "setup.py")): + return True + return False + + +def read_chunks(file: BinaryIO, size: int = io.DEFAULT_BUFFER_SIZE) -> Iterator[bytes]: + """Yield pieces of data from a file-like object until EOF.""" + while True: + chunk = file.read(size) + if not chunk: + break + yield chunk + + +def normalize_path(path: str, resolve_symlinks: bool = True) -> str: + """ + Convert a path to its canonical, case-normalized, absolute version. + + """ + path = os.path.expanduser(path) + if resolve_symlinks: + path = os.path.realpath(path) + else: + path = os.path.abspath(path) + return os.path.normcase(path) + + +def splitext(path: str) -> Tuple[str, str]: + """Like os.path.splitext, but take off .tar too""" + base, ext = posixpath.splitext(path) + if base.lower().endswith(".tar"): + ext = base[-4:] + ext + base = base[:-4] + return base, ext + + +def renames(old: str, new: str) -> None: + """Like os.renames(), but handles renaming across devices.""" + # Implementation borrowed from os.renames(). + head, tail = os.path.split(new) + if head and tail and not os.path.exists(head): + os.makedirs(head) + + shutil.move(old, new) + + head, tail = os.path.split(old) + if head and tail: + try: + os.removedirs(head) + except OSError: + pass + + +def is_local(path: str) -> bool: + """ + Return True if this is a path pip is allowed to modify. + + If we're in a virtualenv, sys.prefix points to the virtualenv's + prefix; only sys.prefix is considered local. + + If we're not in a virtualenv, in general we can modify anything. + However, if the OS vendor has configured distutils to install + somewhere other than sys.prefix (which could be a subdirectory of + sys.prefix, e.g. /usr/local), we consider sys.prefix itself nonlocal + and the domain of the OS vendor. (In other words, everything _other + than_ sys.prefix is considered local.) + + Caution: this function assumes the head of path has been normalized + with normalize_path. + """ + + path = normalize_path(path) + # Hard-coded becouse PyPy uses a different sys.prefix on Debian + prefix = '/usr' + + if running_under_virtualenv(): + return path.startswith(normalize_path(sys.prefix)) + else: + from pip._internal.locations import get_scheme + from pip._internal.models.scheme import SCHEME_KEYS + if path.startswith(prefix): + scheme = get_scheme("") + for key in SCHEME_KEYS: + local_path = getattr(scheme, key) + if path.startswith(normalize_path(local_path)): + return True + return False + else: + return True + + +def write_output(msg: Any, *args: Any) -> None: + logger.info(msg, *args) + + +class StreamWrapper(StringIO): + orig_stream: TextIO = None + + @classmethod + def from_stream(cls, orig_stream: TextIO) -> "StreamWrapper": + cls.orig_stream = orig_stream + return cls() + + # compileall.compile_dir() needs stdout.encoding to print to stdout + # https://github.com/python/mypy/issues/4125 + @property + def encoding(self): # type: ignore + return self.orig_stream.encoding + + +@contextlib.contextmanager +def captured_output(stream_name: str) -> Iterator[StreamWrapper]: + """Return a context manager used by captured_stdout/stdin/stderr + that temporarily replaces the sys stream *stream_name* with a StringIO. + + Taken from Lib/support/__init__.py in the CPython repo. + """ + orig_stdout = getattr(sys, stream_name) + setattr(sys, stream_name, StreamWrapper.from_stream(orig_stdout)) + try: + yield getattr(sys, stream_name) + finally: + setattr(sys, stream_name, orig_stdout) + + +def captured_stdout() -> ContextManager[StreamWrapper]: + """Capture the output of sys.stdout: + + with captured_stdout() as stdout: + print('hello') + self.assertEqual(stdout.getvalue(), 'hello\n') + + Taken from Lib/support/__init__.py in the CPython repo. + """ + return captured_output("stdout") + + +def captured_stderr() -> ContextManager[StreamWrapper]: + """ + See captured_stdout(). + """ + return captured_output("stderr") + + +# Simulates an enum +def enum(*sequential: Any, **named: Any) -> Type[Any]: + enums = dict(zip(sequential, range(len(sequential))), **named) + reverse = {value: key for key, value in enums.items()} + enums["reverse_mapping"] = reverse + return type("Enum", (), enums) + + +def build_netloc(host: str, port: Optional[int]) -> str: + """ + Build a netloc from a host-port pair + """ + if port is None: + return host + if ":" in host: + # Only wrap host with square brackets when it is IPv6 + host = f"[{host}]" + return f"{host}:{port}" + + +def build_url_from_netloc(netloc: str, scheme: str = "https") -> str: + """ + Build a full URL from a netloc. + """ + if netloc.count(":") >= 2 and "@" not in netloc and "[" not in netloc: + # It must be a bare IPv6 address, so wrap it with brackets. + netloc = f"[{netloc}]" + return f"{scheme}://{netloc}" + + +def parse_netloc(netloc: str) -> Tuple[str, Optional[int]]: + """ + Return the host-port pair from a netloc. + """ + url = build_url_from_netloc(netloc) + parsed = urllib.parse.urlparse(url) + return parsed.hostname, parsed.port + + +def split_auth_from_netloc(netloc: str) -> NetlocTuple: + """ + Parse out and remove the auth information from a netloc. + + Returns: (netloc, (username, password)). + """ + if "@" not in netloc: + return netloc, (None, None) + + # Split from the right because that's how urllib.parse.urlsplit() + # behaves if more than one @ is present (which can be checked using + # the password attribute of urlsplit()'s return value). + auth, netloc = netloc.rsplit("@", 1) + pw: Optional[str] = None + if ":" in auth: + # Split from the left because that's how urllib.parse.urlsplit() + # behaves if more than one : is present (which again can be checked + # using the password attribute of the return value) + user, pw = auth.split(":", 1) + else: + user, pw = auth, None + + user = urllib.parse.unquote(user) + if pw is not None: + pw = urllib.parse.unquote(pw) + + return netloc, (user, pw) + + +def redact_netloc(netloc: str) -> str: + """ + Replace the sensitive data in a netloc with "****", if it exists. + + For example: + - "user:pass@example.com" returns "user:****@example.com" + - "accesstoken@example.com" returns "****@example.com" + """ + netloc, (user, password) = split_auth_from_netloc(netloc) + if user is None: + return netloc + if password is None: + user = "****" + password = "" + else: + user = urllib.parse.quote(user) + password = ":****" + return "{user}{password}@{netloc}".format( + user=user, password=password, netloc=netloc + ) + + +def _transform_url( + url: str, transform_netloc: Callable[[str], Tuple[Any, ...]] +) -> Tuple[str, NetlocTuple]: + """Transform and replace netloc in a url. + + transform_netloc is a function taking the netloc and returning a + tuple. The first element of this tuple is the new netloc. The + entire tuple is returned. + + Returns a tuple containing the transformed url as item 0 and the + original tuple returned by transform_netloc as item 1. + """ + purl = urllib.parse.urlsplit(url) + netloc_tuple = transform_netloc(purl.netloc) + # stripped url + url_pieces = (purl.scheme, netloc_tuple[0], purl.path, purl.query, purl.fragment) + surl = urllib.parse.urlunsplit(url_pieces) + return surl, cast("NetlocTuple", netloc_tuple) + + +def _get_netloc(netloc: str) -> NetlocTuple: + return split_auth_from_netloc(netloc) + + +def _redact_netloc(netloc: str) -> Tuple[str]: + return (redact_netloc(netloc),) + + +def split_auth_netloc_from_url(url: str) -> Tuple[str, str, Tuple[str, str]]: + """ + Parse a url into separate netloc, auth, and url with no auth. + + Returns: (url_without_auth, netloc, (username, password)) + """ + url_without_auth, (netloc, auth) = _transform_url(url, _get_netloc) + return url_without_auth, netloc, auth + + +def remove_auth_from_url(url: str) -> str: + """Return a copy of url with 'username:password@' removed.""" + # username/pass params are passed to subversion through flags + # and are not recognized in the url. + return _transform_url(url, _get_netloc)[0] + + +def redact_auth_from_url(url: str) -> str: + """Replace the password in a given url with ****.""" + return _transform_url(url, _redact_netloc)[0] + + +class HiddenText: + def __init__(self, secret: str, redacted: str) -> None: + self.secret = secret + self.redacted = redacted + + def __repr__(self) -> str: + return "".format(str(self)) + + def __str__(self) -> str: + return self.redacted + + # This is useful for testing. + def __eq__(self, other: Any) -> bool: + if type(self) != type(other): + return False + + # The string being used for redaction doesn't also have to match, + # just the raw, original string. + return self.secret == other.secret + + +def hide_value(value: str) -> HiddenText: + return HiddenText(value, redacted="****") + + +def hide_url(url: str) -> HiddenText: + redacted = redact_auth_from_url(url) + return HiddenText(url, redacted=redacted) + + +def protect_pip_from_modification_on_windows(modifying_pip: bool) -> None: + """Protection of pip.exe from modification on Windows + + On Windows, any operation modifying pip should be run as: + python -m pip ... + """ + pip_names = [ + "pip.exe", + "pip{}.exe".format(sys.version_info[0]), + "pip{}.{}.exe".format(*sys.version_info[:2]), + ] + + # See https://github.com/pypa/pip/issues/1299 for more discussion + should_show_use_python_msg = ( + modifying_pip and WINDOWS and os.path.basename(sys.argv[0]) in pip_names + ) + + if should_show_use_python_msg: + new_command = [sys.executable, "-m", "pip"] + sys.argv[1:] + raise CommandError( + "To modify pip, please run the following command:\n{}".format( + " ".join(new_command) + ) + ) + + +def is_console_interactive() -> bool: + """Is this console interactive?""" + return sys.stdin is not None and sys.stdin.isatty() + + +def hash_file(path: str, blocksize: int = 1 << 20) -> Tuple[Any, int]: + """Return (hash, length) for path using hashlib.sha256()""" + + h = hashlib.sha256() + length = 0 + with open(path, "rb") as f: + for block in read_chunks(f, size=blocksize): + length += len(block) + h.update(block) + return h, length + + +def is_wheel_installed() -> bool: + """ + Return whether the wheel package is installed. + """ + try: + import wheel # noqa: F401 + except ImportError: + return False + + return True + + +def pairwise(iterable: Iterable[Any]) -> Iterator[Tuple[Any, Any]]: + """ + Return paired elements. + + For example: + s -> (s0, s1), (s2, s3), (s4, s5), ... + """ + iterable = iter(iterable) + return zip_longest(iterable, iterable) + + +def partition( + pred: Callable[[T], bool], + iterable: Iterable[T], +) -> Tuple[Iterable[T], Iterable[T]]: + """ + Use a predicate to partition entries into false entries and true entries, + like + + partition(is_odd, range(10)) --> 0 2 4 6 8 and 1 3 5 7 9 + """ + t1, t2 = tee(iterable) + return filterfalse(pred, t1), filter(pred, t2) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/models.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/models.py new file mode 100644 index 0000000..b6bb21a --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/models.py @@ -0,0 +1,39 @@ +"""Utilities for defining models +""" + +import operator +from typing import Any, Callable, Type + + +class KeyBasedCompareMixin: + """Provides comparison capabilities that is based on a key""" + + __slots__ = ["_compare_key", "_defining_class"] + + def __init__(self, key: Any, defining_class: Type["KeyBasedCompareMixin"]) -> None: + self._compare_key = key + self._defining_class = defining_class + + def __hash__(self) -> int: + return hash(self._compare_key) + + def __lt__(self, other: Any) -> bool: + return self._compare(other, operator.__lt__) + + def __le__(self, other: Any) -> bool: + return self._compare(other, operator.__le__) + + def __gt__(self, other: Any) -> bool: + return self._compare(other, operator.__gt__) + + def __ge__(self, other: Any) -> bool: + return self._compare(other, operator.__ge__) + + def __eq__(self, other: Any) -> bool: + return self._compare(other, operator.__eq__) + + def _compare(self, other: Any, method: Callable[[Any, Any], bool]) -> bool: + if not isinstance(other, self._defining_class): + return NotImplemented + + return method(self._compare_key, other._compare_key) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/packaging.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/packaging.py new file mode 100644 index 0000000..b9f6af4 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/packaging.py @@ -0,0 +1,57 @@ +import functools +import logging +import re +from typing import NewType, Optional, Tuple, cast + +from pip._vendor.packaging import specifiers, version +from pip._vendor.packaging.requirements import Requirement + +NormalizedExtra = NewType("NormalizedExtra", str) + +logger = logging.getLogger(__name__) + + +def check_requires_python( + requires_python: Optional[str], version_info: Tuple[int, ...] +) -> bool: + """ + Check if the given Python version matches a "Requires-Python" specifier. + + :param version_info: A 3-tuple of ints representing a Python + major-minor-micro version to check (e.g. `sys.version_info[:3]`). + + :return: `True` if the given Python version satisfies the requirement. + Otherwise, return `False`. + + :raises InvalidSpecifier: If `requires_python` has an invalid format. + """ + if requires_python is None: + # The package provides no information + return True + requires_python_specifier = specifiers.SpecifierSet(requires_python) + + python_version = version.parse(".".join(map(str, version_info))) + return python_version in requires_python_specifier + + +@functools.lru_cache(maxsize=512) +def get_requirement(req_string: str) -> Requirement: + """Construct a packaging.Requirement object with caching""" + # Parsing requirement strings is expensive, and is also expected to happen + # with a low diversity of different arguments (at least relative the number + # constructed). This method adds a cache to requirement object creation to + # minimize repeated parsing of the same string to construct equivalent + # Requirement objects. + return Requirement(req_string) + + +def safe_extra(extra: str) -> NormalizedExtra: + """Convert an arbitrary string to a standard 'extra' name + + Any runs of non-alphanumeric characters are replaced with a single '_', + and the result is always lowercased. + + This function is duplicated from ``pkg_resources``. Note that this is not + the same to either ``canonicalize_name`` or ``_egg_link_name``. + """ + return cast(NormalizedExtra, re.sub("[^A-Za-z0-9.-]+", "_", extra).lower()) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py new file mode 100644 index 0000000..f460c40 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/setuptools_build.py @@ -0,0 +1,195 @@ +import sys +import textwrap +from typing import List, Optional, Sequence + +# Shim to wrap setup.py invocation with setuptools +# Note that __file__ is handled via two {!r} *and* %r, to ensure that paths on +# Windows are correctly handled (it should be "C:\\Users" not "C:\Users"). +_SETUPTOOLS_SHIM = textwrap.dedent( + """ + exec(compile(''' + # This is -- a caller that pip uses to run setup.py + # + # - It imports setuptools before invoking setup.py, to enable projects that directly + # import from `distutils.core` to work with newer packaging standards. + # - It provides a clear error message when setuptools is not installed. + # - It sets `sys.argv[0]` to the underlying `setup.py`, when invoking `setup.py` so + # setuptools doesn't think the script is `-c`. This avoids the following warning: + # manifest_maker: standard file '-c' not found". + # - It generates a shim setup.py, for handling setup.cfg-only projects. + import os, sys, tokenize + + try: + import setuptools + except ImportError as error: + print( + "ERROR: Can not execute `setup.py` since setuptools is not available in " + "the build environment.", + file=sys.stderr, + ) + sys.exit(1) + + __file__ = %r + sys.argv[0] = __file__ + + if os.path.exists(__file__): + filename = __file__ + with tokenize.open(__file__) as f: + setup_py_code = f.read() + else: + filename = "" + setup_py_code = "from setuptools import setup; setup()" + + exec(compile(setup_py_code, filename, "exec")) + ''' % ({!r},), "", "exec")) + """ +).rstrip() + + +def make_setuptools_shim_args( + setup_py_path: str, + global_options: Sequence[str] = None, + no_user_config: bool = False, + unbuffered_output: bool = False, +) -> List[str]: + """ + Get setuptools command arguments with shim wrapped setup file invocation. + + :param setup_py_path: The path to setup.py to be wrapped. + :param global_options: Additional global options. + :param no_user_config: If True, disables personal user configuration. + :param unbuffered_output: If True, adds the unbuffered switch to the + argument list. + """ + args = [sys.executable] + if unbuffered_output: + args += ["-u"] + args += ["-c", _SETUPTOOLS_SHIM.format(setup_py_path)] + if global_options: + args += global_options + if no_user_config: + args += ["--no-user-cfg"] + return args + + +def make_setuptools_bdist_wheel_args( + setup_py_path: str, + global_options: Sequence[str], + build_options: Sequence[str], + destination_dir: str, +) -> List[str]: + # NOTE: Eventually, we'd want to also -S to the flags here, when we're + # isolating. Currently, it breaks Python in virtualenvs, because it + # relies on site.py to find parts of the standard library outside the + # virtualenv. + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["bdist_wheel", "-d", destination_dir] + args += build_options + return args + + +def make_setuptools_clean_args( + setup_py_path: str, + global_options: Sequence[str], +) -> List[str]: + args = make_setuptools_shim_args( + setup_py_path, global_options=global_options, unbuffered_output=True + ) + args += ["clean", "--all"] + return args + + +def make_setuptools_develop_args( + setup_py_path: str, + global_options: Sequence[str], + install_options: Sequence[str], + no_user_config: bool, + prefix: Optional[str], + home: Optional[str], + use_user_site: bool, +) -> List[str]: + assert not (use_user_site and prefix) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + ) + + args += ["develop", "--no-deps"] + + args += install_options + + if prefix: + args += ["--prefix", prefix] + if home is not None: + args += ["--install-dir", home] + + if use_user_site: + args += ["--user", "--prefix="] + + return args + + +def make_setuptools_egg_info_args( + setup_py_path: str, + egg_info_dir: Optional[str], + no_user_config: bool, +) -> List[str]: + args = make_setuptools_shim_args(setup_py_path, no_user_config=no_user_config) + + args += ["egg_info"] + + if egg_info_dir: + args += ["--egg-base", egg_info_dir] + + return args + + +def make_setuptools_install_args( + setup_py_path: str, + global_options: Sequence[str], + install_options: Sequence[str], + record_filename: str, + root: Optional[str], + prefix: Optional[str], + header_dir: Optional[str], + home: Optional[str], + use_user_site: bool, + no_user_config: bool, + pycompile: bool, +) -> List[str]: + assert not (use_user_site and prefix) + assert not (use_user_site and root) + + args = make_setuptools_shim_args( + setup_py_path, + global_options=global_options, + no_user_config=no_user_config, + unbuffered_output=True, + ) + args += ["install", "--record", record_filename] + args += ["--single-version-externally-managed"] + + if root is not None: + args += ["--root", root] + if prefix is not None: + args += ["--prefix", prefix] + if home is not None: + args += ["--home", home] + if use_user_site: + args += ["--user", "--prefix="] + + if pycompile: + args += ["--compile"] + else: + args += ["--no-compile"] + + if header_dir: + args += ["--install-headers", header_dir] + + args += install_options + + return args diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py new file mode 100644 index 0000000..b5b7624 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py @@ -0,0 +1,260 @@ +import logging +import os +import shlex +import subprocess +from typing import ( + TYPE_CHECKING, + Any, + Callable, + Iterable, + List, + Mapping, + Optional, + Union, +) + +from pip._vendor.rich.markup import escape + +from pip._internal.cli.spinners import SpinnerInterface, open_spinner +from pip._internal.exceptions import InstallationSubprocessError +from pip._internal.utils.logging import VERBOSE, subprocess_logger +from pip._internal.utils.misc import HiddenText + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + +CommandArgs = List[Union[str, HiddenText]] + + +def make_command(*args: Union[str, HiddenText, CommandArgs]) -> CommandArgs: + """ + Create a CommandArgs object. + """ + command_args: CommandArgs = [] + for arg in args: + # Check for list instead of CommandArgs since CommandArgs is + # only known during type-checking. + if isinstance(arg, list): + command_args.extend(arg) + else: + # Otherwise, arg is str or HiddenText. + command_args.append(arg) + + return command_args + + +def format_command_args(args: Union[List[str], CommandArgs]) -> str: + """ + Format command arguments for display. + """ + # For HiddenText arguments, display the redacted form by calling str(). + # Also, we don't apply str() to arguments that aren't HiddenText since + # this can trigger a UnicodeDecodeError in Python 2 if the argument + # has type unicode and includes a non-ascii character. (The type + # checker doesn't ensure the annotations are correct in all cases.) + return " ".join( + shlex.quote(str(arg)) if isinstance(arg, HiddenText) else shlex.quote(arg) + for arg in args + ) + + +def reveal_command_args(args: Union[List[str], CommandArgs]) -> List[str]: + """ + Return the arguments in their raw, unredacted form. + """ + return [arg.secret if isinstance(arg, HiddenText) else arg for arg in args] + + +def call_subprocess( + cmd: Union[List[str], CommandArgs], + show_stdout: bool = False, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + unset_environ: Optional[Iterable[str]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: Optional[bool] = True, + stdout_only: Optional[bool] = False, + *, + command_desc: str, +) -> str: + """ + Args: + show_stdout: if true, use INFO to log the subprocess's stderr and + stdout streams. Otherwise, use DEBUG. Defaults to False. + extra_ok_returncodes: an iterable of integer return codes that are + acceptable, in addition to 0. Defaults to None, which means []. + unset_environ: an iterable of environment variable names to unset + prior to calling subprocess.Popen(). + log_failed_cmd: if false, failed commands are not logged, only raised. + stdout_only: if true, return only stdout, else return both. When true, + logging of both stdout and stderr occurs when the subprocess has + terminated, else logging occurs as subprocess output is produced. + """ + if extra_ok_returncodes is None: + extra_ok_returncodes = [] + if unset_environ is None: + unset_environ = [] + # Most places in pip use show_stdout=False. What this means is-- + # + # - We connect the child's output (combined stderr and stdout) to a + # single pipe, which we read. + # - We log this output to stderr at DEBUG level as it is received. + # - If DEBUG logging isn't enabled (e.g. if --verbose logging wasn't + # requested), then we show a spinner so the user can still see the + # subprocess is in progress. + # - If the subprocess exits with an error, we log the output to stderr + # at ERROR level if it hasn't already been displayed to the console + # (e.g. if --verbose logging wasn't enabled). This way we don't log + # the output to the console twice. + # + # If show_stdout=True, then the above is still done, but with DEBUG + # replaced by INFO. + if show_stdout: + # Then log the subprocess output at INFO level. + log_subprocess = subprocess_logger.info + used_level = logging.INFO + else: + # Then log the subprocess output using VERBOSE. This also ensures + # it will be logged to the log file (aka user_log), if enabled. + log_subprocess = subprocess_logger.verbose + used_level = VERBOSE + + # Whether the subprocess will be visible in the console. + showing_subprocess = subprocess_logger.getEffectiveLevel() <= used_level + + # Only use the spinner if we're not showing the subprocess output + # and we have a spinner. + use_spinner = not showing_subprocess and spinner is not None + + log_subprocess("Running command %s", command_desc) + env = os.environ.copy() + if extra_environ: + env.update(extra_environ) + for name in unset_environ: + env.pop(name, None) + try: + proc = subprocess.Popen( + # Convert HiddenText objects to the underlying str. + reveal_command_args(cmd), + stdin=subprocess.PIPE, + stdout=subprocess.PIPE, + stderr=subprocess.STDOUT if not stdout_only else subprocess.PIPE, + cwd=cwd, + env=env, + errors="backslashreplace", + ) + except Exception as exc: + if log_failed_cmd: + subprocess_logger.critical( + "Error %s while executing command %s", + exc, + command_desc, + ) + raise + all_output = [] + if not stdout_only: + assert proc.stdout + assert proc.stdin + proc.stdin.close() + # In this mode, stdout and stderr are in the same pipe. + while True: + line: str = proc.stdout.readline() + if not line: + break + line = line.rstrip() + all_output.append(line + "\n") + + # Show the line immediately. + log_subprocess(line) + # Update the spinner. + if use_spinner: + assert spinner + spinner.spin() + try: + proc.wait() + finally: + if proc.stdout: + proc.stdout.close() + output = "".join(all_output) + else: + # In this mode, stdout and stderr are in different pipes. + # We must use communicate() which is the only safe way to read both. + out, err = proc.communicate() + # log line by line to preserve pip log indenting + for out_line in out.splitlines(): + log_subprocess(out_line) + all_output.append(out) + for err_line in err.splitlines(): + log_subprocess(err_line) + all_output.append(err) + output = out + + proc_had_error = proc.returncode and proc.returncode not in extra_ok_returncodes + if use_spinner: + assert spinner + if proc_had_error: + spinner.finish("error") + else: + spinner.finish("done") + if proc_had_error: + if on_returncode == "raise": + error = InstallationSubprocessError( + command_description=command_desc, + exit_code=proc.returncode, + output_lines=all_output if not showing_subprocess else None, + ) + if log_failed_cmd: + subprocess_logger.error("[present-diagnostic] %s", error) + subprocess_logger.verbose( + "[bold magenta]full command[/]: [blue]%s[/]", + escape(format_command_args(cmd)), + extra={"markup": True}, + ) + subprocess_logger.verbose( + "[bold magenta]cwd[/]: %s", + escape(cwd or "[inherit]"), + extra={"markup": True}, + ) + + raise error + elif on_returncode == "warn": + subprocess_logger.warning( + 'Command "%s" had error code %s in %s', + command_desc, + proc.returncode, + cwd, + ) + elif on_returncode == "ignore": + pass + else: + raise ValueError(f"Invalid value: on_returncode={on_returncode!r}") + return output + + +def runner_with_spinner_message(message: str) -> Callable[..., None]: + """Provide a subprocess_runner that shows a spinner message. + + Intended for use with for pep517's Pep517HookCaller. Thus, the runner has + an API that matches what's expected by Pep517HookCaller.subprocess_runner. + """ + + def runner( + cmd: List[str], + cwd: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + ) -> None: + with open_spinner(message) as spinner: + call_subprocess( + cmd, + command_desc=message, + cwd=cwd, + extra_environ=extra_environ, + spinner=spinner, + ) + + return runner diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py new file mode 100644 index 0000000..442679a --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py @@ -0,0 +1,246 @@ +import errno +import itertools +import logging +import os.path +import tempfile +from contextlib import ExitStack, contextmanager +from typing import Any, Dict, Iterator, Optional, TypeVar, Union + +from pip._internal.utils.misc import enum, rmtree + +logger = logging.getLogger(__name__) + +_T = TypeVar("_T", bound="TempDirectory") + + +# Kinds of temporary directories. Only needed for ones that are +# globally-managed. +tempdir_kinds = enum( + BUILD_ENV="build-env", + EPHEM_WHEEL_CACHE="ephem-wheel-cache", + REQ_BUILD="req-build", +) + + +_tempdir_manager: Optional[ExitStack] = None + + +@contextmanager +def global_tempdir_manager() -> Iterator[None]: + global _tempdir_manager + with ExitStack() as stack: + old_tempdir_manager, _tempdir_manager = _tempdir_manager, stack + try: + yield + finally: + _tempdir_manager = old_tempdir_manager + + +class TempDirectoryTypeRegistry: + """Manages temp directory behavior""" + + def __init__(self) -> None: + self._should_delete: Dict[str, bool] = {} + + def set_delete(self, kind: str, value: bool) -> None: + """Indicate whether a TempDirectory of the given kind should be + auto-deleted. + """ + self._should_delete[kind] = value + + def get_delete(self, kind: str) -> bool: + """Get configured auto-delete flag for a given TempDirectory type, + default True. + """ + return self._should_delete.get(kind, True) + + +_tempdir_registry: Optional[TempDirectoryTypeRegistry] = None + + +@contextmanager +def tempdir_registry() -> Iterator[TempDirectoryTypeRegistry]: + """Provides a scoped global tempdir registry that can be used to dictate + whether directories should be deleted. + """ + global _tempdir_registry + old_tempdir_registry = _tempdir_registry + _tempdir_registry = TempDirectoryTypeRegistry() + try: + yield _tempdir_registry + finally: + _tempdir_registry = old_tempdir_registry + + +class _Default: + pass + + +_default = _Default() + + +class TempDirectory: + """Helper class that owns and cleans up a temporary directory. + + This class can be used as a context manager or as an OO representation of a + temporary directory. + + Attributes: + path + Location to the created temporary directory + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + Methods: + cleanup() + Deletes the temporary directory + + When used as a context manager, if the delete attribute is True, on + exiting the context the temporary directory is deleted. + """ + + def __init__( + self, + path: Optional[str] = None, + delete: Union[bool, None, _Default] = _default, + kind: str = "temp", + globally_managed: bool = False, + ): + super().__init__() + + if delete is _default: + if path is not None: + # If we were given an explicit directory, resolve delete option + # now. + delete = False + else: + # Otherwise, we wait until cleanup and see what + # tempdir_registry says. + delete = None + + # The only time we specify path is in for editables where it + # is the value of the --src option. + if path is None: + path = self._create(kind) + + self._path = path + self._deleted = False + self.delete = delete + self.kind = kind + + if globally_managed: + assert _tempdir_manager is not None + _tempdir_manager.enter_context(self) + + @property + def path(self) -> str: + assert not self._deleted, f"Attempted to access deleted path: {self._path}" + return self._path + + def __repr__(self) -> str: + return f"<{self.__class__.__name__} {self.path!r}>" + + def __enter__(self: _T) -> _T: + return self + + def __exit__(self, exc: Any, value: Any, tb: Any) -> None: + if self.delete is not None: + delete = self.delete + elif _tempdir_registry: + delete = _tempdir_registry.get_delete(self.kind) + else: + delete = True + + if delete: + self.cleanup() + + def _create(self, kind: str) -> str: + """Create a temporary directory and store its path in self.path""" + # We realpath here because some systems have their default tmpdir + # symlinked to another directory. This tends to confuse build + # scripts, so we canonicalize the path by traversing potential + # symlinks here. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + logger.debug("Created temporary directory: %s", path) + return path + + def cleanup(self) -> None: + """Remove the temporary directory created and reset state""" + self._deleted = True + if not os.path.exists(self._path): + return + rmtree(self._path) + + +class AdjacentTempDirectory(TempDirectory): + """Helper class that creates a temporary directory adjacent to a real one. + + Attributes: + original + The original directory to create a temp directory for. + path + After calling create() or entering, contains the full + path to the temporary directory. + delete + Whether the directory should be deleted when exiting + (when used as a contextmanager) + + """ + + # The characters that may be used to name the temp directory + # We always prepend a ~ and then rotate through these until + # a usable name is found. + # pkg_resources raises a different error for .dist-info folder + # with leading '-' and invalid metadata + LEADING_CHARS = "-~.=%0123456789" + + def __init__(self, original: str, delete: Optional[bool] = None) -> None: + self.original = original.rstrip("/\\") + super().__init__(delete=delete) + + @classmethod + def _generate_names(cls, name: str) -> Iterator[str]: + """Generates a series of temporary names. + + The algorithm replaces the leading characters in the name + with ones that are valid filesystem characters, but are not + valid package names (for both Python and pip definitions of + package). + """ + for i in range(1, len(name)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i - 1 + ): + new_name = "~" + "".join(candidate) + name[i:] + if new_name != name: + yield new_name + + # If we make it this far, we will have to make a longer name + for i in range(len(cls.LEADING_CHARS)): + for candidate in itertools.combinations_with_replacement( + cls.LEADING_CHARS, i + ): + new_name = "~" + "".join(candidate) + name + if new_name != name: + yield new_name + + def _create(self, kind: str) -> str: + root, name = os.path.split(self.original) + for candidate in self._generate_names(name): + path = os.path.join(root, candidate) + try: + os.mkdir(path) + except OSError as ex: + # Continue if the name exists already + if ex.errno != errno.EEXIST: + raise + else: + path = os.path.realpath(path) + break + else: + # Final fallback on the default behavior. + path = os.path.realpath(tempfile.mkdtemp(prefix=f"pip-{kind}-")) + + logger.debug("Created temporary directory: %s", path) + return path diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py new file mode 100644 index 0000000..5f63f97 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py @@ -0,0 +1,258 @@ +"""Utilities related archives. +""" + +import logging +import os +import shutil +import stat +import tarfile +import zipfile +from typing import Iterable, List, Optional +from zipfile import ZipInfo + +from pip._internal.exceptions import InstallationError +from pip._internal.utils.filetypes import ( + BZ2_EXTENSIONS, + TAR_EXTENSIONS, + XZ_EXTENSIONS, + ZIP_EXTENSIONS, +) +from pip._internal.utils.misc import ensure_dir + +logger = logging.getLogger(__name__) + + +SUPPORTED_EXTENSIONS = ZIP_EXTENSIONS + TAR_EXTENSIONS + +try: + import bz2 # noqa + + SUPPORTED_EXTENSIONS += BZ2_EXTENSIONS +except ImportError: + logger.debug("bz2 module is not available") + +try: + # Only for Python 3.3+ + import lzma # noqa + + SUPPORTED_EXTENSIONS += XZ_EXTENSIONS +except ImportError: + logger.debug("lzma module is not available") + + +def current_umask() -> int: + """Get the current umask which involves having to set it temporarily.""" + mask = os.umask(0) + os.umask(mask) + return mask + + +def split_leading_dir(path: str) -> List[str]: + path = path.lstrip("/").lstrip("\\") + if "/" in path and ( + ("\\" in path and path.find("/") < path.find("\\")) or "\\" not in path + ): + return path.split("/", 1) + elif "\\" in path: + return path.split("\\", 1) + else: + return [path, ""] + + +def has_leading_dir(paths: Iterable[str]) -> bool: + """Returns true if all the paths have the same leading path name + (i.e., everything is in one subdirectory in an archive)""" + common_prefix = None + for path in paths: + prefix, rest = split_leading_dir(path) + if not prefix: + return False + elif common_prefix is None: + common_prefix = prefix + elif prefix != common_prefix: + return False + return True + + +def is_within_directory(directory: str, target: str) -> bool: + """ + Return true if the absolute path of target is within the directory + """ + abs_directory = os.path.abspath(directory) + abs_target = os.path.abspath(target) + + prefix = os.path.commonprefix([abs_directory, abs_target]) + return prefix == abs_directory + + +def set_extracted_file_to_default_mode_plus_executable(path: str) -> None: + """ + Make file present at path have execute for user/group/world + (chmod +x) is no-op on windows per python docs + """ + os.chmod(path, (0o777 & ~current_umask() | 0o111)) + + +def zip_item_is_executable(info: ZipInfo) -> bool: + mode = info.external_attr >> 16 + # if mode and regular file and any execute permissions for + # user/group/world? + return bool(mode and stat.S_ISREG(mode) and mode & 0o111) + + +def unzip_file(filename: str, location: str, flatten: bool = True) -> None: + """ + Unzip the file (with path `filename`) to the destination `location`. All + files are written based on system defaults and umask (i.e. permissions are + not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + zipfp = open(filename, "rb") + try: + zip = zipfile.ZipFile(zipfp, allowZip64=True) + leading = has_leading_dir(zip.namelist()) and flatten + for info in zip.infolist(): + name = info.filename + fn = name + if leading: + fn = split_leading_dir(name)[1] + fn = os.path.join(location, fn) + dir = os.path.dirname(fn) + if not is_within_directory(location, fn): + message = ( + "The zip file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, fn, location)) + if fn.endswith("/") or fn.endswith("\\"): + # A directory + ensure_dir(fn) + else: + ensure_dir(dir) + # Don't use read() to avoid allocating an arbitrarily large + # chunk of memory for the file's content + fp = zip.open(name) + try: + with open(fn, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + finally: + fp.close() + if zip_item_is_executable(info): + set_extracted_file_to_default_mode_plus_executable(fn) + finally: + zipfp.close() + + +def untar_file(filename: str, location: str) -> None: + """ + Untar the file (with path `filename`) to the destination `location`. + All files are written based on system defaults and umask (i.e. permissions + are not preserved), except that regular file members with any execute + permissions (user, group, or world) have "chmod +x" applied after being + written. Note that for windows, any execute changes using os.chmod are + no-ops per the python docs. + """ + ensure_dir(location) + if filename.lower().endswith(".gz") or filename.lower().endswith(".tgz"): + mode = "r:gz" + elif filename.lower().endswith(BZ2_EXTENSIONS): + mode = "r:bz2" + elif filename.lower().endswith(XZ_EXTENSIONS): + mode = "r:xz" + elif filename.lower().endswith(".tar"): + mode = "r" + else: + logger.warning( + "Cannot determine compression type for file %s", + filename, + ) + mode = "r:*" + tar = tarfile.open(filename, mode, encoding="utf-8") + try: + leading = has_leading_dir([member.name for member in tar.getmembers()]) + for member in tar.getmembers(): + fn = member.name + if leading: + fn = split_leading_dir(fn)[1] + path = os.path.join(location, fn) + if not is_within_directory(location, path): + message = ( + "The tar file ({}) has a file ({}) trying to install " + "outside target directory ({})" + ) + raise InstallationError(message.format(filename, path, location)) + if member.isdir(): + ensure_dir(path) + elif member.issym(): + try: + # https://github.com/python/typeshed/issues/2673 + tar._extract_member(member, path) # type: ignore + except Exception as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + else: + try: + fp = tar.extractfile(member) + except (KeyError, AttributeError) as exc: + # Some corrupt tar files seem to produce this + # (specifically bad symlinks) + logger.warning( + "In the tar file %s the member %s is invalid: %s", + filename, + member.name, + exc, + ) + continue + ensure_dir(os.path.dirname(path)) + assert fp is not None + with open(path, "wb") as destfp: + shutil.copyfileobj(fp, destfp) + fp.close() + # Update the timestamp (useful for cython compiled files) + tar.utime(member, path) + # member have any execute permissions for user/group/world? + if member.mode & 0o111: + set_extracted_file_to_default_mode_plus_executable(path) + finally: + tar.close() + + +def unpack_file( + filename: str, + location: str, + content_type: Optional[str] = None, +) -> None: + filename = os.path.realpath(filename) + if ( + content_type == "application/zip" + or filename.lower().endswith(ZIP_EXTENSIONS) + or zipfile.is_zipfile(filename) + ): + unzip_file(filename, location, flatten=not filename.endswith(".whl")) + elif ( + content_type == "application/x-gzip" + or tarfile.is_tarfile(filename) + or filename.lower().endswith(TAR_EXTENSIONS + BZ2_EXTENSIONS + XZ_EXTENSIONS) + ): + untar_file(filename, location) + else: + # FIXME: handle? + # FIXME: magic signatures? + logger.critical( + "Cannot unpack file %s (downloaded from %s, content-type: %s); " + "cannot detect archive format", + filename, + location, + content_type, + ) + raise InstallationError(f"Cannot determine archive format of {location}") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/urls.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/urls.py new file mode 100644 index 0000000..6ba2e04 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/urls.py @@ -0,0 +1,62 @@ +import os +import string +import urllib.parse +import urllib.request +from typing import Optional + +from .compat import WINDOWS + + +def get_url_scheme(url: str) -> Optional[str]: + if ":" not in url: + return None + return url.split(":", 1)[0].lower() + + +def path_to_url(path: str) -> str: + """ + Convert a path to a file: URL. The path will be made absolute and have + quoted path parts. + """ + path = os.path.normpath(os.path.abspath(path)) + url = urllib.parse.urljoin("file:", urllib.request.pathname2url(path)) + return url + + +def url_to_path(url: str) -> str: + """ + Convert a file: URL to a path. + """ + assert url.startswith( + "file:" + ), f"You can only turn file: urls into filenames (not {url!r})" + + _, netloc, path, _, _ = urllib.parse.urlsplit(url) + + if not netloc or netloc == "localhost": + # According to RFC 8089, same as empty authority. + netloc = "" + elif WINDOWS: + # If we have a UNC path, prepend UNC share notation. + netloc = "\\\\" + netloc + else: + raise ValueError( + f"non-local file URIs are not supported on this platform: {url!r}" + ) + + path = urllib.request.url2pathname(netloc + path) + + # On Windows, urlsplit parses the path as something like "/C:/Users/foo". + # This creates issues for path-related functions like io.open(), so we try + # to detect and strip the leading slash. + if ( + WINDOWS + and not netloc # Not UNC. + and len(path) >= 3 + and path[0] == "/" # Leading slash to strip. + and path[1] in string.ascii_letters # Drive letter. + and path[2:4] in (":", ":/") # Colon + end of string, or colon + absolute path. + ): + path = path[1:] + + return path diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py new file mode 100644 index 0000000..c926db4 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py @@ -0,0 +1,104 @@ +import logging +import os +import re +import site +import sys +from typing import List, Optional + +logger = logging.getLogger(__name__) +_INCLUDE_SYSTEM_SITE_PACKAGES_REGEX = re.compile( + r"include-system-site-packages\s*=\s*(?Ptrue|false)" +) + + +def _running_under_venv() -> bool: + """Checks if sys.base_prefix and sys.prefix match. + + This handles PEP 405 compliant virtual environments. + """ + return sys.prefix != getattr(sys, "base_prefix", sys.prefix) + + +def _running_under_regular_virtualenv() -> bool: + """Checks if sys.real_prefix is set. + + This handles virtual environments created with pypa's virtualenv. + """ + # pypa/virtualenv case + return hasattr(sys, "real_prefix") + + +def running_under_virtualenv() -> bool: + """Return True if we're running inside a virtualenv, False otherwise.""" + return _running_under_venv() or _running_under_regular_virtualenv() + + +def _get_pyvenv_cfg_lines() -> Optional[List[str]]: + """Reads {sys.prefix}/pyvenv.cfg and returns its contents as list of lines + + Returns None, if it could not read/access the file. + """ + pyvenv_cfg_file = os.path.join(sys.prefix, "pyvenv.cfg") + try: + # Although PEP 405 does not specify, the built-in venv module always + # writes with UTF-8. (pypa/pip#8717) + with open(pyvenv_cfg_file, encoding="utf-8") as f: + return f.read().splitlines() # avoids trailing newlines + except OSError: + return None + + +def _no_global_under_venv() -> bool: + """Check `{sys.prefix}/pyvenv.cfg` for system site-packages inclusion + + PEP 405 specifies that when system site-packages are not supposed to be + visible from a virtual environment, `pyvenv.cfg` must contain the following + line: + + include-system-site-packages = false + + Additionally, log a warning if accessing the file fails. + """ + cfg_lines = _get_pyvenv_cfg_lines() + if cfg_lines is None: + # We're not in a "sane" venv, so assume there is no system + # site-packages access (since that's PEP 405's default state). + logger.warning( + "Could not access 'pyvenv.cfg' despite a virtual environment " + "being active. Assuming global site-packages is not accessible " + "in this environment." + ) + return True + + for line in cfg_lines: + match = _INCLUDE_SYSTEM_SITE_PACKAGES_REGEX.match(line) + if match is not None and match.group("value") == "false": + return True + return False + + +def _no_global_under_regular_virtualenv() -> bool: + """Check if "no-global-site-packages.txt" exists beside site.py + + This mirrors logic in pypa/virtualenv for determining whether system + site-packages are visible in the virtual environment. + """ + site_mod_dir = os.path.dirname(os.path.abspath(site.__file__)) + no_global_site_packages_file = os.path.join( + site_mod_dir, + "no-global-site-packages.txt", + ) + return os.path.exists(no_global_site_packages_file) + + +def virtualenv_no_global() -> bool: + """Returns a boolean, whether running in venv with no system site-packages.""" + # PEP 405 compliance needs to be checked first since virtualenv >=20 would + # return True for both checks, but is only able to use the PEP 405 config. + if _running_under_venv(): + return _no_global_under_venv() + + if _running_under_regular_virtualenv(): + return _no_global_under_regular_virtualenv() + + return False diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/wheel.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/wheel.py new file mode 100644 index 0000000..e5e3f34 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/utils/wheel.py @@ -0,0 +1,136 @@ +"""Support functions for working with wheel files. +""" + +import logging +from email.message import Message +from email.parser import Parser +from typing import Tuple +from zipfile import BadZipFile, ZipFile + +from pip._vendor.packaging.utils import canonicalize_name + +from pip._internal.exceptions import UnsupportedWheel + +VERSION_COMPATIBLE = (1, 0) + + +logger = logging.getLogger(__name__) + + +def parse_wheel(wheel_zip: ZipFile, name: str) -> Tuple[str, Message]: + """Extract information from the provided wheel, ensuring it meets basic + standards. + + Returns the name of the .dist-info directory and the parsed WHEEL metadata. + """ + try: + info_dir = wheel_dist_info_dir(wheel_zip, name) + metadata = wheel_metadata(wheel_zip, info_dir) + version = wheel_version(metadata) + except UnsupportedWheel as e: + raise UnsupportedWheel("{} has an invalid wheel, {}".format(name, str(e))) + + check_compatibility(version, name) + + return info_dir, metadata + + +def wheel_dist_info_dir(source: ZipFile, name: str) -> str: + """Returns the name of the contained .dist-info directory. + + Raises AssertionError or UnsupportedWheel if not found, >1 found, or + it doesn't match the provided name. + """ + # Zip file path separators must be / + subdirs = {p.split("/", 1)[0] for p in source.namelist()} + + info_dirs = [s for s in subdirs if s.endswith(".dist-info")] + + if not info_dirs: + raise UnsupportedWheel(".dist-info directory not found") + + if len(info_dirs) > 1: + raise UnsupportedWheel( + "multiple .dist-info directories found: {}".format(", ".join(info_dirs)) + ) + + info_dir = info_dirs[0] + + info_dir_name = canonicalize_name(info_dir) + canonical_name = canonicalize_name(name) + if not info_dir_name.startswith(canonical_name): + raise UnsupportedWheel( + ".dist-info directory {!r} does not start with {!r}".format( + info_dir, canonical_name + ) + ) + + return info_dir + + +def read_wheel_metadata_file(source: ZipFile, path: str) -> bytes: + try: + return source.read(path) + # BadZipFile for general corruption, KeyError for missing entry, + # and RuntimeError for password-protected files + except (BadZipFile, KeyError, RuntimeError) as e: + raise UnsupportedWheel(f"could not read {path!r} file: {e!r}") + + +def wheel_metadata(source: ZipFile, dist_info_dir: str) -> Message: + """Return the WHEEL metadata of an extracted wheel, if possible. + Otherwise, raise UnsupportedWheel. + """ + path = f"{dist_info_dir}/WHEEL" + # Zip file path separators must be / + wheel_contents = read_wheel_metadata_file(source, path) + + try: + wheel_text = wheel_contents.decode() + except UnicodeDecodeError as e: + raise UnsupportedWheel(f"error decoding {path!r}: {e!r}") + + # FeedParser (used by Parser) does not raise any exceptions. The returned + # message may have .defects populated, but for backwards-compatibility we + # currently ignore them. + return Parser().parsestr(wheel_text) + + +def wheel_version(wheel_data: Message) -> Tuple[int, ...]: + """Given WHEEL metadata, return the parsed Wheel-Version. + Otherwise, raise UnsupportedWheel. + """ + version_text = wheel_data["Wheel-Version"] + if version_text is None: + raise UnsupportedWheel("WHEEL is missing Wheel-Version") + + version = version_text.strip() + + try: + return tuple(map(int, version.split("."))) + except ValueError: + raise UnsupportedWheel(f"invalid Wheel-Version: {version!r}") + + +def check_compatibility(version: Tuple[int, ...], name: str) -> None: + """Raises errors or warns if called with an incompatible Wheel-Version. + + pip should refuse to install a Wheel-Version that's a major series + ahead of what it's compatible with (e.g 2.0 > 1.1); and warn when + installing a version only minor version ahead (e.g 1.2 > 1.1). + + version: a 2-tuple representing a Wheel-Version (Major, Minor) + name: name of wheel or package to raise exception about + + :raises UnsupportedWheel: when an incompatible Wheel-Version is given + """ + if version[0] > VERSION_COMPATIBLE[0]: + raise UnsupportedWheel( + "{}'s Wheel-Version ({}) is not compatible with this version " + "of pip".format(name, ".".join(map(str, version))) + ) + elif version > VERSION_COMPATIBLE: + logger.warning( + "Installing from a newer Wheel-Version (%s)", + ".".join(map(str, version)), + ) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py new file mode 100644 index 0000000..b6beddb --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py @@ -0,0 +1,15 @@ +# Expose a limited set of classes and functions so callers outside of +# the vcs package don't need to import deeper than `pip._internal.vcs`. +# (The test directory may still need to import from a vcs sub-package.) +# Import all vcs modules to register each VCS in the VcsSupport object. +import pip._internal.vcs.bazaar +import pip._internal.vcs.git +import pip._internal.vcs.mercurial +import pip._internal.vcs.subversion # noqa: F401 +from pip._internal.vcs.versioncontrol import ( # noqa: F401 + RemoteNotFoundError, + RemoteNotValidError, + is_url, + make_vcs_requirement_url, + vcs, +) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..0a46158a351ed51c88871ffeb77681cbe35ac76f GIT binary patch literal 522 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 M)H8oZ|4JYJABduFN9BobR0Twem)zX5jhf z`2F7QvSIw23a1|jg*Wlae;{E7GZUj*e$B3_%U0LI*GlZv={l*~byKhFnbgNlDyiS~ z(`vV>%T7{D7rF~+y<691H)*8JZd2#IlsM3y}-z@NUc)&+hZj3RP#Z946s@Fbs=9 z$5iz+e8_{S9FFn=)dxi$j6~9LRP8R`EmxGP`3V;i)85XrLga~hxff?l&qMu(BH!Ur z5r{l5f}Y6JK=5I%i^|@OWJKpU{b)_0LcU-c1~*9lkiFTpnbmce-F2DM^>~H3+-DxI za{sc?b6AD>Upj|ow+4Cnti~7E0gk;Dr5DYA>@Zx^@}0w5zLpg?5Wwul784ja}ERm*!)1 zE7o|9J+E8V&bNGJ^i0-fKl-wclV1MHaE$I1VBv?#34Z&I&Go@=YLTGo2lJW4Nyt`@9IYL&<@! z-5?Zw*~T`cg~YSQSLXuSc&eXr7>5PfK(<<-!MQdisj9nNZ0Fd;{#N8-p4n4DhF&d$ zzacZRkBnpEz%9%pAa!C*+`^uihvu;o@rq2xTY#5LxkR7J@{>Bp>s zlEwT3Z(%?UBuPyQ{ z&_-ixymA}rkF$Pz&~LveUzF`4$5)W!_o?jBk(nVv$O<_4OVZ z+03ViD%DglfOLhij^s&CTtcl_qvSFrSE!R#%4}M)xIBJJVC~Mj)>yH?4f;AuYEnR`ZY0lu#SY_^Uu|ACMFE>3*l#Gm7&x}}^!Uqs3!_bye1@m@Ge3T5t%H*e>o zgtfE0Xv@7A(rwQr)g~7XyU4|U39DZaw4Q@(9$V|5iszB(EGa9O%At9cvy;aeCXZpd zDOdF<&w6ox7zzn|T(}$V!5yIDq2yilIx5uA{6@*&TZyC>igROO?4I)bU@ zR(=nmWfsxI4Xmpwd!ZoQYkY|pQ6&fxovI*EoWmDE3&E(|kMgG9h4LGa(^NM9EK+`y zGL6&oxbsTUypE|Qoqq`+1FX!JS;z0%6X%O%>ze6*VLfTtOXj#W7vV-Z@C?$($Iz>h z_8KzK7@|G1;0sJPGO%9VwPhiW;9WkB0aG#e?QEXc}1sO%__;#bI*e(0<$RFmR|;AviP;zA#x zpIk-aSl-m#INv$0_1~K30}JD|6OEr8_)H=Fhj4VF`KN?rkvPT=YVGNBR|n~KG2o}n za$O&;9Sy<^v6B~Q+Kq{%wX;#W&BZJ2P`1OYP4N^?dSgDDs=zFHR>*N{eZAl*IAOux z_#DFz?%Wr5u(d~438eRs2dLi1M@vh!z(8my1z^3_IT)#WDS@)_4;UwjE;#O4!8zV| z^}Nu^AlJEjR*5%oD#~33}TSoBJRZ{O51}_4oW$+U%R=EZX%4pF6MI#_-7&G zQJjWJn_!dm=S^Y@3yv30ODM}3pNU8iDxN8ufEGS4o3&Cl2+F|LX(0|URVgP#uri*N z0E3)voR`zn!<9oWHzF&XJ(QnQIEr-oLScRcEw>~?aj@S1w$@v22+=SXdjzL_t;wX&4^Lqz2 zNX})D9DD!elK2prVo=&K!W|Ktd!R>!w|{F!i>LcaQJfR~O;@FA9wc+HIDL}ugK@cUd+aM_QO`KQ+NdAmhzJjD~ zIpDk&-We+v97Z8PP#{1MqJgdo-+D3l7iT!{r5Y9m024i(>~ zghHcQ&_^vtiVvvzx0KwYgfOU_?L1G!@2K3Rgan})QxQcxNoHcwp`B9~EwBs7QI&iX ziEogow7C2=)3PD1Cud%(_WhN$D^1H?HmwD`b-ayhrsbe_;{{XDY@Ms(ReV&1?m|RL z$&i&-><_7+4@^52WI}2UH{6Z+4R-^)lb07!pbW&dyWz zfyu)WMO@1A;&pDZvJ?1>)GSD~&(49{_Qo_8Owq5^BkHty@;;(TyQ>1|ALv`3=u_nl zN=OdM7rc+Zskk`hkF@ml?ahC^#LzD(EJ?ca`3AA4WwT|KOnS|%Ra&<3r)KN_-BKQq literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..725f86e2e2543550fcfb3908116ad14da4f1f16b GIT binary patch literal 8456 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 List[str]: + return ["-r", rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + elif verbosity == 1: + flag = "" + else: + flag = f"-{'v'*verbosity}" + cmd_args = make_command("branch", flag, rev_options.to_args(), url, dest) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(make_command("switch", url), cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command("pull", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing bzr+ from bzr+ssh:// readd it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "bzr+" + url + return url, rev, user_pass + + @classmethod + def get_remote_url(cls, location: str) -> str: + urls = cls.run_command( + ["info"], show_stdout=False, stdout_only=True, cwd=location + ) + for line in urls.splitlines(): + line = line.strip() + for x in ("checkout of branch: ", "parent branch: "): + if line.startswith(x): + repo = line.split(x)[1] + if cls._is_local_repository(repo): + return path_to_url(repo) + return repo + raise RemoteNotFoundError + + @classmethod + def get_revision(cls, location: str) -> str: + revision = cls.run_command( + ["revno"], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return revision.splitlines()[-1] + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + +vcs.register(Bazaar) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/git.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/git.py new file mode 100644 index 0000000..8d1d499 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/git.py @@ -0,0 +1,526 @@ +import logging +import os.path +import pathlib +import re +import urllib.parse +import urllib.request +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path, hide_url +from pip._internal.utils.subprocess import make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RemoteNotValidError, + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +urlsplit = urllib.parse.urlsplit +urlunsplit = urllib.parse.urlunsplit + + +logger = logging.getLogger(__name__) + + +GIT_VERSION_REGEX = re.compile( + r"^git version " # Prefix. + r"(\d+)" # Major. + r"\.(\d+)" # Dot, minor. + r"(?:\.(\d+))?" # Optional dot, patch. + r".*$" # Suffix, including any pre- and post-release segments we don't care about. +) + +HASH_REGEX = re.compile("^[a-fA-F0-9]{40}$") + +# SCP (Secure copy protocol) shorthand. e.g. 'git@example.com:foo/bar.git' +SCP_REGEX = re.compile( + r"""^ + # Optional user, e.g. 'git@' + (\w+@)? + # Server, e.g. 'github.com'. + ([^/:]+): + # The server-side path. e.g. 'user/project.git'. Must start with an + # alphanumeric character so as not to be confusable with a Windows paths + # like 'C:/foo/bar' or 'C:\foo\bar'. + (\w[^:]*) + $""", + re.VERBOSE, +) + + +def looks_like_hash(sha: str) -> bool: + return bool(HASH_REGEX.match(sha)) + + +class Git(VersionControl): + name = "git" + dirname = ".git" + repo_name = "clone" + schemes = ( + "git+http", + "git+https", + "git+ssh", + "git+git", + "git+file", + ) + # Prevent the user's environment variables from interfering with pip: + # https://github.com/pypa/pip/issues/1130 + unset_environ = ("GIT_DIR", "GIT_WORK_TREE") + default_arg_rev = "HEAD" + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [rev] + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + _, rev_options = self.get_url_rev_options(hide_url(url)) + if not rev_options.rev: + return False + if not self.is_commit_id_equal(dest, rev_options.rev): + # the current commit is different from rev, + # which means rev was something else than a commit hash + return False + # return False in the rare case rev is both a commit hash + # and a tag or a branch; we don't want to cache in that case + # because that branch/tag could point to something else in the future + is_tag_or_branch = bool(self.get_revision_sha(dest, rev_options.rev)[0]) + return not is_tag_or_branch + + def get_git_version(self) -> Tuple[int, ...]: + version = self.run_command( + ["version"], + command_desc="git version", + show_stdout=False, + stdout_only=True, + ) + match = GIT_VERSION_REGEX.match(version) + if not match: + logger.warning("Can't parse git version: %s", version) + return () + return tuple(int(c) for c in match.groups()) + + @classmethod + def get_current_branch(cls, location: str) -> Optional[str]: + """ + Return the current branch, or None if HEAD isn't at a branch + (e.g. detached HEAD). + """ + # git-symbolic-ref exits with empty stdout if "HEAD" is a detached + # HEAD rather than a symbolic ref. In addition, the -q causes the + # command to exit with status code 1 instead of 128 in this case + # and to suppress the message to stderr. + args = ["symbolic-ref", "-q", "HEAD"] + output = cls.run_command( + args, + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + ref = output.strip() + + if ref.startswith("refs/heads/"): + return ref[len("refs/heads/") :] + + return None + + @classmethod + def get_revision_sha(cls, dest: str, rev: str) -> Tuple[Optional[str], bool]: + """ + Return (sha_or_none, is_branch), where sha_or_none is a commit hash + if the revision names a remote branch or tag, otherwise None. + + Args: + dest: the repository directory. + rev: the revision name. + """ + # Pass rev to pre-filter the list. + output = cls.run_command( + ["show-ref", rev], + cwd=dest, + show_stdout=False, + stdout_only=True, + on_returncode="ignore", + ) + refs = {} + # NOTE: We do not use splitlines here since that would split on other + # unicode separators, which can be maliciously used to install a + # different revision. + for line in output.strip().split("\n"): + line = line.rstrip("\r") + if not line: + continue + try: + ref_sha, ref_name = line.split(" ", maxsplit=2) + except ValueError: + # Include the offending line to simplify troubleshooting if + # this error ever occurs. + raise ValueError(f"unexpected show-ref line: {line!r}") + + refs[ref_name] = ref_sha + + branch_ref = f"refs/remotes/origin/{rev}" + tag_ref = f"refs/tags/{rev}" + + sha = refs.get(branch_ref) + if sha is not None: + return (sha, True) + + sha = refs.get(tag_ref) + + return (sha, False) + + @classmethod + def _should_fetch(cls, dest: str, rev: str) -> bool: + """ + Return true if rev is a ref or is a commit that we don't have locally. + + Branches and tags are not considered in this method because they are + assumed to be always available locally (which is a normal outcome of + ``git clone`` and ``git fetch --tags``). + """ + if rev.startswith("refs/"): + # Always fetch remote refs. + return True + + if not looks_like_hash(rev): + # Git fetch would fail with abbreviated commits. + return False + + if cls.has_commit(dest, rev): + # Don't fetch if we have the commit locally. + return False + + return True + + @classmethod + def resolve_revision( + cls, dest: str, url: HiddenText, rev_options: RevOptions + ) -> RevOptions: + """ + Resolve a revision to a new RevOptions object with the SHA1 of the + branch, tag, or ref if found. + + Args: + rev_options: a RevOptions object. + """ + rev = rev_options.arg_rev + # The arg_rev property's implementation for Git ensures that the + # rev return value is always non-None. + assert rev is not None + + sha, is_branch = cls.get_revision_sha(dest, rev) + + if sha is not None: + rev_options = rev_options.make_new(sha) + rev_options.branch_name = rev if is_branch else None + + return rev_options + + # Do not show a warning for the common case of something that has + # the form of a Git commit hash. + if not looks_like_hash(rev): + logger.warning( + "Did not find branch or tag '%s', assuming revision or ref.", + rev, + ) + + if not cls._should_fetch(dest, rev): + return rev_options + + # fetch the requested revision + cls.run_command( + make_command("fetch", "-q", url, rev_options.to_args()), + cwd=dest, + ) + # Change the revision to the SHA of the ref we fetched + sha = cls.get_revision(dest, rev="FETCH_HEAD") + rev_options = rev_options.make_new(sha) + + return rev_options + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the current commit hash equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + if not name: + # Then avoid an unnecessary subprocess call. + return False + + return cls.get_revision(dest) == name + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info("Cloning %s%s to %s", url, rev_display, display_path(dest)) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + else: + flags = ("--verbose", "--progress") + if self.get_git_version() >= (2, 17): + # Git added support for partial clone in 2.17 + # https://git-scm.com/docs/partial-clone + # Speeds up cloning by functioning without a complete copy of repository + self.run_command( + make_command( + "clone", + "--filter=blob:none", + *flags, + url, + dest, + ) + ) + else: + self.run_command(make_command("clone", *flags, url, dest)) + + if rev_options.rev: + # Then a specific revision was requested. + rev_options = self.resolve_revision(dest, url, rev_options) + branch_name = getattr(rev_options, "branch_name", None) + logger.debug("Rev options %s, branch_name %s", rev_options, branch_name) + if branch_name is None: + # Only do a checkout if the current commit id doesn't match + # the requested revision. + if not self.is_commit_id_equal(dest, rev_options.rev): + cmd_args = make_command( + "checkout", + "-q", + rev_options.to_args(), + ) + self.run_command(cmd_args, cwd=dest) + elif self.get_current_branch(dest) != branch_name: + # Then a specific branch was requested, and that branch + # is not yet checked out. + track_branch = f"origin/{branch_name}" + cmd_args = [ + "checkout", + "-b", + branch_name, + "--track", + track_branch, + ] + self.run_command(cmd_args, cwd=dest) + else: + sha = self.get_revision(dest) + rev_options = rev_options.make_new(sha) + + logger.info("Resolved %s to commit %s", url, rev_options.rev) + + #: repo may contain submodules + self.update_submodules(dest) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command( + make_command("config", "remote.origin.url", url), + cwd=dest, + ) + cmd_args = make_command("checkout", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + self.update_submodules(dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + # First fetch changes from the default remote + if self.get_git_version() >= (1, 9): + # fetch tags in addition to everything else + self.run_command(["fetch", "-q", "--tags"], cwd=dest) + else: + self.run_command(["fetch", "-q"], cwd=dest) + # Then reset to wanted revision (maybe even origin/master) + rev_options = self.resolve_revision(dest, url, rev_options) + cmd_args = make_command("reset", "--hard", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + #: update submodules + self.update_submodules(dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return URL of the first remote encountered. + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + # We need to pass 1 for extra_ok_returncodes since the command + # exits with return code 1 if there are no matching lines. + stdout = cls.run_command( + ["config", "--get-regexp", r"remote\..*\.url"], + extra_ok_returncodes=(1,), + show_stdout=False, + stdout_only=True, + cwd=location, + ) + remotes = stdout.splitlines() + try: + found_remote = remotes[0] + except IndexError: + raise RemoteNotFoundError + + for remote in remotes: + if remote.startswith("remote.origin.url "): + found_remote = remote + break + url = found_remote.split(" ")[1] + return cls._git_remote_to_pip_url(url.strip()) + + @staticmethod + def _git_remote_to_pip_url(url: str) -> str: + """ + Convert a remote url from what git uses to what pip accepts. + + There are 3 legal forms **url** may take: + + 1. A fully qualified url: ssh://git@example.com/foo/bar.git + 2. A local project.git folder: /path/to/bare/repository.git + 3. SCP shorthand for form 1: git@example.com:foo/bar.git + + Form 1 is output as-is. Form 2 must be converted to URI and form 3 must + be converted to form 1. + + See the corresponding test test_git_remote_url_to_pip() for examples of + sample inputs/outputs. + """ + if re.match(r"\w+://", url): + # This is already valid. Pass it though as-is. + return url + if os.path.exists(url): + # A local bare remote (git clone --mirror). + # Needs a file:// prefix. + return pathlib.PurePath(url).as_uri() + scp_match = SCP_REGEX.match(url) + if scp_match: + # Add an ssh:// prefix and replace the ':' with a '/'. + return scp_match.expand(r"ssh://\1\2/\3") + # Otherwise, bail out. + raise RemoteNotValidError(url) + + @classmethod + def has_commit(cls, location: str, rev: str) -> bool: + """ + Check if rev is a commit that is available in the local repository. + """ + try: + cls.run_command( + ["rev-parse", "-q", "--verify", "sha^" + rev], + cwd=location, + log_failed_cmd=False, + ) + except InstallationError: + return False + else: + return True + + @classmethod + def get_revision(cls, location: str, rev: Optional[str] = None) -> str: + if rev is None: + rev = "HEAD" + current_rev = cls.run_command( + ["rev-parse", rev], + show_stdout=False, + stdout_only=True, + cwd=location, + ) + return current_rev.strip() + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + git_dir = cls.run_command( + ["rev-parse", "--git-dir"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if not os.path.isabs(git_dir): + git_dir = os.path.join(location, git_dir) + repo_root = os.path.abspath(os.path.join(git_dir, "..")) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Prefixes stub URLs like 'user@hostname:user/repo.git' with 'ssh://'. + That's required because although they use SSH they sometimes don't + work with a ssh:// scheme (e.g. GitHub). But we need a scheme for + parsing. Hence we remove it again afterwards and return it as a stub. + """ + # Works around an apparent Git bug + # (see https://article.gmane.org/gmane.comp.version-control.git/146500) + scheme, netloc, path, query, fragment = urlsplit(url) + if scheme.endswith("file"): + initial_slashes = path[: -len(path.lstrip("/"))] + newpath = initial_slashes + urllib.request.url2pathname(path).replace( + "\\", "/" + ).lstrip("/") + after_plus = scheme.find("+") + 1 + url = scheme[:after_plus] + urlunsplit( + (scheme[after_plus:], netloc, newpath, query, fragment), + ) + + if "://" not in url: + assert "file:" not in url + url = url.replace("git+", "git+ssh://") + url, rev, user_pass = super().get_url_rev_and_auth(url) + url = url.replace("ssh://", "") + else: + url, rev, user_pass = super().get_url_rev_and_auth(url) + + return url, rev, user_pass + + @classmethod + def update_submodules(cls, location: str) -> None: + if not os.path.exists(os.path.join(location, ".gitmodules")): + return + cls.run_command( + ["submodule", "update", "--init", "--recursive", "-q"], + cwd=location, + ) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["rev-parse", "--show-toplevel"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under git control " + "because git is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + @staticmethod + def should_add_vcs_url_prefix(repo_url: str) -> bool: + """In either https or ssh form, requirements must be prefixed with git+.""" + return True + + +vcs.register(Git) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py new file mode 100644 index 0000000..2a005e0 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py @@ -0,0 +1,163 @@ +import configparser +import logging +import os +from typing import List, Optional, Tuple + +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import HiddenText, display_path +from pip._internal.utils.subprocess import make_command +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs.versioncontrol import ( + RevOptions, + VersionControl, + find_path_to_project_root_from_repo_root, + vcs, +) + +logger = logging.getLogger(__name__) + + +class Mercurial(VersionControl): + name = "hg" + dirname = ".hg" + repo_name = "clone" + schemes = ( + "hg+file", + "hg+http", + "hg+https", + "hg+ssh", + "hg+static-http", + ) + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return [rev] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Cloning hg %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flags: Tuple[str, ...] = ("--quiet",) + elif verbosity == 1: + flags = () + elif verbosity == 2: + flags = ("--verbose",) + else: + flags = ("--verbose", "--debug") + self.run_command(make_command("clone", "--noupdate", *flags, url, dest)) + self.run_command( + make_command("update", *flags, rev_options.to_args()), + cwd=dest, + ) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + repo_config = os.path.join(dest, self.dirname, "hgrc") + config = configparser.RawConfigParser() + try: + config.read(repo_config) + config.set("paths", "default", url.secret) + with open(repo_config, "w") as config_file: + config.write(config_file) + except (OSError, configparser.NoSectionError) as exc: + logger.warning("Could not switch Mercurial repository to %s: %s", url, exc) + else: + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + self.run_command(["pull", "-q"], cwd=dest) + cmd_args = make_command("update", "-q", rev_options.to_args()) + self.run_command(cmd_args, cwd=dest) + + @classmethod + def get_remote_url(cls, location: str) -> str: + url = cls.run_command( + ["showconfig", "paths.default"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + if cls._is_local_repository(url): + url = path_to_url(url) + return url.strip() + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the repository-local changeset revision number, as an integer. + """ + current_revision = cls.run_command( + ["parents", "--template={rev}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_revision + + @classmethod + def get_requirement_revision(cls, location: str) -> str: + """ + Return the changeset identification hash, as a 40-character + hexadecimal string + """ + current_rev_hash = cls.run_command( + ["parents", "--template={node}"], + show_stdout=False, + stdout_only=True, + cwd=location, + ).strip() + return current_rev_hash + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + # find the repo root + repo_root = cls.run_command( + ["root"], show_stdout=False, stdout_only=True, cwd=location + ).strip() + if not os.path.isabs(repo_root): + repo_root = os.path.abspath(os.path.join(location, repo_root)) + return find_path_to_project_root_from_repo_root(location, repo_root) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + loc = super().get_repository_root(location) + if loc: + return loc + try: + r = cls.run_command( + ["root"], + cwd=location, + show_stdout=False, + stdout_only=True, + on_returncode="raise", + log_failed_cmd=False, + ) + except BadCommand: + logger.debug( + "could not determine if %s is under hg control " + "because hg is not available", + location, + ) + return None + except InstallationError: + return None + return os.path.normpath(r.rstrip("\r\n")) + + +vcs.register(Mercurial) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py new file mode 100644 index 0000000..89c8754 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py @@ -0,0 +1,324 @@ +import logging +import os +import re +from typing import List, Optional, Tuple + +from pip._internal.utils.misc import ( + HiddenText, + display_path, + is_console_interactive, + is_installable_dir, + split_auth_from_netloc, +) +from pip._internal.utils.subprocess import CommandArgs, make_command +from pip._internal.vcs.versioncontrol import ( + AuthInfo, + RemoteNotFoundError, + RevOptions, + VersionControl, + vcs, +) + +logger = logging.getLogger(__name__) + +_svn_xml_url_re = re.compile('url="([^"]+)"') +_svn_rev_re = re.compile(r'committed-rev="(\d+)"') +_svn_info_xml_rev_re = re.compile(r'\s*revision="(\d+)"') +_svn_info_xml_url_re = re.compile(r"(.*)") + + +class Subversion(VersionControl): + name = "svn" + dirname = ".svn" + repo_name = "checkout" + schemes = ("svn+ssh", "svn+http", "svn+https", "svn+svn", "svn+file") + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + return True + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + return ["-r", rev] + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the maximum revision for all files under a given location + """ + # Note: taken from setuptools.command.egg_info + revision = 0 + + for base, dirs, _ in os.walk(location): + if cls.dirname not in dirs: + dirs[:] = [] + continue # no sense walking uncontrolled subdirs + dirs.remove(cls.dirname) + entries_fn = os.path.join(base, cls.dirname, "entries") + if not os.path.exists(entries_fn): + # FIXME: should we warn? + continue + + dirurl, localrev = cls._get_svn_url_rev(base) + + if base == location: + assert dirurl is not None + base = dirurl + "/" # save the root url + elif not dirurl or not dirurl.startswith(base): + dirs[:] = [] + continue # not part of the same svn tree, skip it + revision = max(revision, localrev) + return str(revision) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + This override allows the auth information to be passed to svn via the + --username and --password options instead of via the URL. + """ + if scheme == "ssh": + # The --username and --password options can't be used for + # svn+ssh URLs, so keep the auth information in the URL. + return super().get_netloc_and_auth(netloc, scheme) + + return split_auth_from_netloc(netloc) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + # hotfix the URL scheme after removing svn+ from svn+ssh:// readd it + url, rev, user_pass = super().get_url_rev_and_auth(url) + if url.startswith("ssh://"): + url = "svn+" + url + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + extra_args: CommandArgs = [] + if username: + extra_args += ["--username", username] + if password: + extra_args += ["--password", password] + + return extra_args + + @classmethod + def get_remote_url(cls, location: str) -> str: + # In cases where the source is in a subdirectory, we have to look up in + # the location until we find a valid project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + raise RemoteNotFoundError + + url, _rev = cls._get_svn_url_rev(location) + if url is None: + raise RemoteNotFoundError + + return url + + @classmethod + def _get_svn_url_rev(cls, location: str) -> Tuple[Optional[str], int]: + from pip._internal.exceptions import InstallationError + + entries_path = os.path.join(location, cls.dirname, "entries") + if os.path.exists(entries_path): + with open(entries_path) as f: + data = f.read() + else: # subversion >= 1.7 does not have the 'entries' file + data = "" + + url = None + if data.startswith("8") or data.startswith("9") or data.startswith("10"): + entries = list(map(str.splitlines, data.split("\n\x0c\n"))) + del entries[0][0] # get rid of the '8' + url = entries[0][3] + revs = [int(d[9]) for d in entries if len(d) > 9 and d[9]] + [0] + elif data.startswith("= 1.7 + # Note that using get_remote_call_options is not necessary here + # because `svn info` is being run against a local directory. + # We don't need to worry about making sure interactive mode + # is being used to prompt for passwords, because passwords + # are only potentially needed for remote server requests. + xml = cls.run_command( + ["info", "--xml", location], + show_stdout=False, + stdout_only=True, + ) + match = _svn_info_xml_url_re.search(xml) + assert match is not None + url = match.group(1) + revs = [int(m.group(1)) for m in _svn_info_xml_rev_re.finditer(xml)] + except InstallationError: + url, revs = None, [] + + if revs: + rev = max(revs) + else: + rev = 0 + + return url, rev + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """Always assume the versions don't match""" + return False + + def __init__(self, use_interactive: bool = None) -> None: + if use_interactive is None: + use_interactive = is_console_interactive() + self.use_interactive = use_interactive + + # This member is used to cache the fetched version of the current + # ``svn`` client. + # Special value definitions: + # None: Not evaluated yet. + # Empty tuple: Could not parse version. + self._vcs_version: Optional[Tuple[int, ...]] = None + + super().__init__() + + def call_vcs_version(self) -> Tuple[int, ...]: + """Query the version of the currently installed Subversion client. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + # Example versions: + # svn, version 1.10.3 (r1842928) + # compiled Feb 25 2019, 14:20:39 on x86_64-apple-darwin17.0.0 + # svn, version 1.7.14 (r1542130) + # compiled Mar 28 2018, 08:49:13 on x86_64-pc-linux-gnu + # svn, version 1.12.0-SlikSvn (SlikSvn/1.12.0) + # compiled May 28 2019, 13:44:56 on x86_64-microsoft-windows6.2 + version_prefix = "svn, version " + version = self.run_command(["--version"], show_stdout=False, stdout_only=True) + if not version.startswith(version_prefix): + return () + + version = version[len(version_prefix) :].split()[0] + version_list = version.partition("-")[0].split(".") + try: + parsed_version = tuple(map(int, version_list)) + except ValueError: + return () + + return parsed_version + + def get_vcs_version(self) -> Tuple[int, ...]: + """Return the version of the currently installed Subversion client. + + If the version of the Subversion client has already been queried, + a cached value will be used. + + :return: A tuple containing the parts of the version information or + ``()`` if the version returned from ``svn`` could not be parsed. + :raises: BadCommand: If ``svn`` is not installed. + """ + if self._vcs_version is not None: + # Use cached version, if available. + # If parsing the version failed previously (empty tuple), + # do not attempt to parse it again. + return self._vcs_version + + vcs_version = self.call_vcs_version() + self._vcs_version = vcs_version + return vcs_version + + def get_remote_call_options(self) -> CommandArgs: + """Return options to be used on calls to Subversion that contact the server. + + These options are applicable for the following ``svn`` subcommands used + in this class. + + - checkout + - switch + - update + + :return: A list of command line arguments to pass to ``svn``. + """ + if not self.use_interactive: + # --non-interactive switch is available since Subversion 0.14.4. + # Subversion < 1.8 runs in interactive mode by default. + return ["--non-interactive"] + + svn_version = self.get_vcs_version() + # By default, Subversion >= 1.8 runs in non-interactive mode if + # stdin is not a TTY. Since that is how pip invokes SVN, in + # call_subprocess(), pip must pass --force-interactive to ensure + # the user can be prompted for a password, if required. + # SVN added the --force-interactive option in SVN 1.8. Since + # e.g. RHEL/CentOS 7, which is supported until 2024, ships with + # SVN 1.7, pip should continue to support SVN 1.7. Therefore, pip + # can't safely add the option if the SVN version is < 1.8 (or unknown). + if svn_version >= (1, 8): + return ["--force-interactive"] + + return [] + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + rev_display = rev_options.to_display() + logger.info( + "Checking out %s%s to %s", + url, + rev_display, + display_path(dest), + ) + if verbosity <= 0: + flag = "--quiet" + else: + flag = "" + cmd_args = make_command( + "checkout", + flag, + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "switch", + self.get_remote_call_options(), + rev_options.to_args(), + url, + dest, + ) + self.run_command(cmd_args) + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + cmd_args = make_command( + "update", + self.get_remote_call_options(), + rev_options.to_args(), + dest, + ) + self.run_command(cmd_args) + + +vcs.register(Subversion) diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py new file mode 100644 index 0000000..02bbf68 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py @@ -0,0 +1,705 @@ +"""Handles all VCS (version control) support""" + +import logging +import os +import shutil +import sys +import urllib.parse +from typing import ( + TYPE_CHECKING, + Any, + Dict, + Iterable, + Iterator, + List, + Mapping, + Optional, + Tuple, + Type, + Union, +) + +from pip._internal.cli.spinners import SpinnerInterface +from pip._internal.exceptions import BadCommand, InstallationError +from pip._internal.utils.misc import ( + HiddenText, + ask_path_exists, + backup_dir, + display_path, + hide_url, + hide_value, + is_installable_dir, + rmtree, +) +from pip._internal.utils.subprocess import ( + CommandArgs, + call_subprocess, + format_command_args, + make_command, +) +from pip._internal.utils.urls import get_url_scheme + +if TYPE_CHECKING: + # Literal was introduced in Python 3.8. + # + # TODO: Remove `if TYPE_CHECKING` when dropping support for Python 3.7. + from typing import Literal + + +__all__ = ["vcs"] + + +logger = logging.getLogger(__name__) + +AuthInfo = Tuple[Optional[str], Optional[str]] + + +def is_url(name: str) -> bool: + """ + Return true if the name looks like a URL. + """ + scheme = get_url_scheme(name) + if scheme is None: + return False + return scheme in ["http", "https", "file", "ftp"] + vcs.all_schemes + + +def make_vcs_requirement_url( + repo_url: str, rev: str, project_name: str, subdir: Optional[str] = None +) -> str: + """ + Return the URL for a VCS requirement. + + Args: + repo_url: the remote VCS url, with any needed VCS prefix (e.g. "git+"). + project_name: the (unescaped) project name. + """ + egg_project_name = project_name.replace("-", "_") + req = f"{repo_url}@{rev}#egg={egg_project_name}" + if subdir: + req += f"&subdirectory={subdir}" + + return req + + +def find_path_to_project_root_from_repo_root( + location: str, repo_root: str +) -> Optional[str]: + """ + Find the the Python project's root by searching up the filesystem from + `location`. Return the path to project root relative to `repo_root`. + Return None if the project root is `repo_root`, or cannot be found. + """ + # find project root. + orig_location = location + while not is_installable_dir(location): + last_location = location + location = os.path.dirname(location) + if location == last_location: + # We've traversed up to the root of the filesystem without + # finding a Python project. + logger.warning( + "Could not find a Python project for directory %s (tried all " + "parent directories)", + orig_location, + ) + return None + + if os.path.samefile(repo_root, location): + return None + + return os.path.relpath(location, repo_root) + + +class RemoteNotFoundError(Exception): + pass + + +class RemoteNotValidError(Exception): + def __init__(self, url: str): + super().__init__(url) + self.url = url + + +class RevOptions: + + """ + Encapsulates a VCS-specific revision to install, along with any VCS + install options. + + Instances of this class should be treated as if immutable. + """ + + def __init__( + self, + vc_class: Type["VersionControl"], + rev: Optional[str] = None, + extra_args: Optional[CommandArgs] = None, + ) -> None: + """ + Args: + vc_class: a VersionControl subclass. + rev: the name of the revision to install. + extra_args: a list of extra options. + """ + if extra_args is None: + extra_args = [] + + self.extra_args = extra_args + self.rev = rev + self.vc_class = vc_class + self.branch_name: Optional[str] = None + + def __repr__(self) -> str: + return f"" + + @property + def arg_rev(self) -> Optional[str]: + if self.rev is None: + return self.vc_class.default_arg_rev + + return self.rev + + def to_args(self) -> CommandArgs: + """ + Return the VCS-specific command arguments. + """ + args: CommandArgs = [] + rev = self.arg_rev + if rev is not None: + args += self.vc_class.get_base_rev_args(rev) + args += self.extra_args + + return args + + def to_display(self) -> str: + if not self.rev: + return "" + + return f" (to revision {self.rev})" + + def make_new(self, rev: str) -> "RevOptions": + """ + Make a copy of the current instance, but with a new rev. + + Args: + rev: the name of the revision for the new object. + """ + return self.vc_class.make_rev_options(rev, extra_args=self.extra_args) + + +class VcsSupport: + _registry: Dict[str, "VersionControl"] = {} + schemes = ["ssh", "git", "hg", "bzr", "sftp", "svn"] + + def __init__(self) -> None: + # Register more schemes with urlparse for various version control + # systems + urllib.parse.uses_netloc.extend(self.schemes) + super().__init__() + + def __iter__(self) -> Iterator[str]: + return self._registry.__iter__() + + @property + def backends(self) -> List["VersionControl"]: + return list(self._registry.values()) + + @property + def dirnames(self) -> List[str]: + return [backend.dirname for backend in self.backends] + + @property + def all_schemes(self) -> List[str]: + schemes: List[str] = [] + for backend in self.backends: + schemes.extend(backend.schemes) + return schemes + + def register(self, cls: Type["VersionControl"]) -> None: + if not hasattr(cls, "name"): + logger.warning("Cannot register VCS %s", cls.__name__) + return + if cls.name not in self._registry: + self._registry[cls.name] = cls() + logger.debug("Registered VCS backend: %s", cls.name) + + def unregister(self, name: str) -> None: + if name in self._registry: + del self._registry[name] + + def get_backend_for_dir(self, location: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object if a repository of that type is found + at the given directory. + """ + vcs_backends = {} + for vcs_backend in self._registry.values(): + repo_path = vcs_backend.get_repository_root(location) + if not repo_path: + continue + logger.debug("Determine that %s uses VCS: %s", location, vcs_backend.name) + vcs_backends[repo_path] = vcs_backend + + if not vcs_backends: + return None + + # Choose the VCS in the inner-most directory. Since all repository + # roots found here would be either `location` or one of its + # parents, the longest path should have the most path components, + # i.e. the backend representing the inner-most repository. + inner_most_repo_path = max(vcs_backends, key=len) + return vcs_backends[inner_most_repo_path] + + def get_backend_for_scheme(self, scheme: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + for vcs_backend in self._registry.values(): + if scheme in vcs_backend.schemes: + return vcs_backend + return None + + def get_backend(self, name: str) -> Optional["VersionControl"]: + """ + Return a VersionControl object or None. + """ + name = name.lower() + return self._registry.get(name) + + +vcs = VcsSupport() + + +class VersionControl: + name = "" + dirname = "" + repo_name = "" + # List of supported schemes for this Version Control + schemes: Tuple[str, ...] = () + # Iterable of environment variable names to pass to call_subprocess(). + unset_environ: Tuple[str, ...] = () + default_arg_rev: Optional[str] = None + + @classmethod + def should_add_vcs_url_prefix(cls, remote_url: str) -> bool: + """ + Return whether the vcs prefix (e.g. "git+") should be added to a + repository's remote url when used in a requirement. + """ + return not remote_url.lower().startswith(f"{cls.name}:") + + @classmethod + def get_subdirectory(cls, location: str) -> Optional[str]: + """ + Return the path to Python project root, relative to the repo root. + Return None if the project root is in the repo root. + """ + return None + + @classmethod + def get_requirement_revision(cls, repo_dir: str) -> str: + """ + Return the revision string that should be used in a requirement. + """ + return cls.get_revision(repo_dir) + + @classmethod + def get_src_requirement(cls, repo_dir: str, project_name: str) -> str: + """ + Return the requirement string to use to redownload the files + currently at the given repository directory. + + Args: + project_name: the (unescaped) project name. + + The return value has a form similar to the following: + + {repository_url}@{revision}#egg={project_name} + """ + repo_url = cls.get_remote_url(repo_dir) + + if cls.should_add_vcs_url_prefix(repo_url): + repo_url = f"{cls.name}+{repo_url}" + + revision = cls.get_requirement_revision(repo_dir) + subdir = cls.get_subdirectory(repo_dir) + req = make_vcs_requirement_url(repo_url, revision, project_name, subdir=subdir) + + return req + + @staticmethod + def get_base_rev_args(rev: str) -> List[str]: + """ + Return the base revision arguments for a vcs command. + + Args: + rev: the name of a revision to install. Cannot be None. + """ + raise NotImplementedError + + def is_immutable_rev_checkout(self, url: str, dest: str) -> bool: + """ + Return true if the commit hash checked out at dest matches + the revision in url. + + Always return False, if the VCS does not support immutable commit + hashes. + + This method does not check if there are local uncommitted changes + in dest after checkout, as pip currently has no use case for that. + """ + return False + + @classmethod + def make_rev_options( + cls, rev: Optional[str] = None, extra_args: Optional[CommandArgs] = None + ) -> RevOptions: + """ + Return a RevOptions object. + + Args: + rev: the name of a revision to install. + extra_args: a list of extra options. + """ + return RevOptions(cls, rev, extra_args=extra_args) + + @classmethod + def _is_local_repository(cls, repo: str) -> bool: + """ + posix absolute paths start with os.path.sep, + win32 ones start with drive (like c:\\folder) + """ + drive, tail = os.path.splitdrive(repo) + return repo.startswith(os.path.sep) or bool(drive) + + @classmethod + def get_netloc_and_auth( + cls, netloc: str, scheme: str + ) -> Tuple[str, Tuple[Optional[str], Optional[str]]]: + """ + Parse the repository URL's netloc, and return the new netloc to use + along with auth information. + + Args: + netloc: the original repository URL netloc. + scheme: the repository URL's scheme without the vcs prefix. + + This is mainly for the Subversion class to override, so that auth + information can be provided via the --username and --password options + instead of through the URL. For other subclasses like Git without + such an option, auth information must stay in the URL. + + Returns: (netloc, (username, password)). + """ + return netloc, (None, None) + + @classmethod + def get_url_rev_and_auth(cls, url: str) -> Tuple[str, Optional[str], AuthInfo]: + """ + Parse the repository URL to use, and return the URL, revision, + and auth info to use. + + Returns: (url, rev, (username, password)). + """ + scheme, netloc, path, query, frag = urllib.parse.urlsplit(url) + if "+" not in scheme: + raise ValueError( + "Sorry, {!r} is a malformed VCS url. " + "The format is +://, " + "e.g. svn+http://myrepo/svn/MyApp#egg=MyApp".format(url) + ) + # Remove the vcs prefix. + scheme = scheme.split("+", 1)[1] + netloc, user_pass = cls.get_netloc_and_auth(netloc, scheme) + rev = None + if "@" in path: + path, rev = path.rsplit("@", 1) + if not rev: + raise InstallationError( + "The URL {!r} has an empty revision (after @) " + "which is not supported. Include a revision after @ " + "or remove @ from the URL.".format(url) + ) + url = urllib.parse.urlunsplit((scheme, netloc, path, query, "")) + return url, rev, user_pass + + @staticmethod + def make_rev_args( + username: Optional[str], password: Optional[HiddenText] + ) -> CommandArgs: + """ + Return the RevOptions "extra arguments" to use in obtain(). + """ + return [] + + def get_url_rev_options(self, url: HiddenText) -> Tuple[HiddenText, RevOptions]: + """ + Return the URL and RevOptions object to use in obtain(), + as a tuple (url, rev_options). + """ + secret_url, rev, user_pass = self.get_url_rev_and_auth(url.secret) + username, secret_password = user_pass + password: Optional[HiddenText] = None + if secret_password is not None: + password = hide_value(secret_password) + extra_args = self.make_rev_args(username, password) + rev_options = self.make_rev_options(rev, extra_args=extra_args) + + return hide_url(secret_url), rev_options + + @staticmethod + def normalize_url(url: str) -> str: + """ + Normalize a URL for comparison by unquoting it and removing any + trailing slash. + """ + return urllib.parse.unquote(url).rstrip("/") + + @classmethod + def compare_urls(cls, url1: str, url2: str) -> bool: + """ + Compare two repo URLs for identity, ignoring incidental differences. + """ + return cls.normalize_url(url1) == cls.normalize_url(url2) + + def fetch_new( + self, dest: str, url: HiddenText, rev_options: RevOptions, verbosity: int + ) -> None: + """ + Fetch a revision from a repository, in the case that this is the + first fetch from the repository. + + Args: + dest: the directory to fetch the repository to. + rev_options: a RevOptions object. + verbosity: verbosity level. + """ + raise NotImplementedError + + def switch(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Switch the repo at ``dest`` to point to ``URL``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + def update(self, dest: str, url: HiddenText, rev_options: RevOptions) -> None: + """ + Update an already-existing repo to the given ``rev_options``. + + Args: + rev_options: a RevOptions object. + """ + raise NotImplementedError + + @classmethod + def is_commit_id_equal(cls, dest: str, name: Optional[str]) -> bool: + """ + Return whether the id of the current commit equals the given name. + + Args: + dest: the repository directory. + name: a string name. + """ + raise NotImplementedError + + def obtain(self, dest: str, url: HiddenText, verbosity: int) -> None: + """ + Install or update in editable mode the package represented by this + VersionControl object. + + :param dest: the repository directory in which to install or update. + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + url, rev_options = self.get_url_rev_options(url) + + if not os.path.exists(dest): + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + rev_display = rev_options.to_display() + if self.is_repository_directory(dest): + existing_url = self.get_remote_url(dest) + if self.compare_urls(existing_url, url.secret): + logger.debug( + "%s in %s exists, and has correct URL (%s)", + self.repo_name.title(), + display_path(dest), + url, + ) + if not self.is_commit_id_equal(dest, rev_options.rev): + logger.info( + "Updating %s %s%s", + display_path(dest), + self.repo_name, + rev_display, + ) + self.update(dest, url, rev_options) + else: + logger.info("Skipping because already up-to-date.") + return + + logger.warning( + "%s %s in %s exists with URL %s", + self.name, + self.repo_name, + display_path(dest), + existing_url, + ) + prompt = ("(s)witch, (i)gnore, (w)ipe, (b)ackup ", ("s", "i", "w", "b")) + else: + logger.warning( + "Directory %s already exists, and is not a %s %s.", + dest, + self.name, + self.repo_name, + ) + # https://github.com/python/mypy/issues/1174 + prompt = ("(i)gnore, (w)ipe, (b)ackup ", ("i", "w", "b")) # type: ignore + + logger.warning( + "The plan is to install the %s repository %s", + self.name, + url, + ) + response = ask_path_exists("What to do? {}".format(prompt[0]), prompt[1]) + + if response == "a": + sys.exit(-1) + + if response == "w": + logger.warning("Deleting %s", display_path(dest)) + rmtree(dest) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + if response == "b": + dest_dir = backup_dir(dest) + logger.warning("Backing up %s to %s", display_path(dest), dest_dir) + shutil.move(dest, dest_dir) + self.fetch_new(dest, url, rev_options, verbosity=verbosity) + return + + # Do nothing if the response is "i". + if response == "s": + logger.info( + "Switching %s %s to %s%s", + self.repo_name, + display_path(dest), + url, + rev_display, + ) + self.switch(dest, url, rev_options) + + def unpack(self, location: str, url: HiddenText, verbosity: int) -> None: + """ + Clean up current location and download the url repository + (and vcs infos) into location + + :param url: the repository URL starting with a vcs prefix. + :param verbosity: verbosity level. + """ + if os.path.exists(location): + rmtree(location) + self.obtain(location, url=url, verbosity=verbosity) + + @classmethod + def get_remote_url(cls, location: str) -> str: + """ + Return the url used at location + + Raises RemoteNotFoundError if the repository does not have a remote + url configured. + """ + raise NotImplementedError + + @classmethod + def get_revision(cls, location: str) -> str: + """ + Return the current commit id of the files at the given location. + """ + raise NotImplementedError + + @classmethod + def run_command( + cls, + cmd: Union[List[str], CommandArgs], + show_stdout: bool = True, + cwd: Optional[str] = None, + on_returncode: 'Literal["raise", "warn", "ignore"]' = "raise", + extra_ok_returncodes: Optional[Iterable[int]] = None, + command_desc: Optional[str] = None, + extra_environ: Optional[Mapping[str, Any]] = None, + spinner: Optional[SpinnerInterface] = None, + log_failed_cmd: bool = True, + stdout_only: bool = False, + ) -> str: + """ + Run a VCS subcommand + This is simply a wrapper around call_subprocess that adds the VCS + command name, and checks that the VCS is available + """ + cmd = make_command(cls.name, *cmd) + if command_desc is None: + command_desc = format_command_args(cmd) + try: + return call_subprocess( + cmd, + show_stdout, + cwd, + on_returncode=on_returncode, + extra_ok_returncodes=extra_ok_returncodes, + command_desc=command_desc, + extra_environ=extra_environ, + unset_environ=cls.unset_environ, + spinner=spinner, + log_failed_cmd=log_failed_cmd, + stdout_only=stdout_only, + ) + except FileNotFoundError: + # errno.ENOENT = no such file or directory + # In other words, the VCS executable isn't available + raise BadCommand( + f"Cannot find command {cls.name!r} - do you have " + f"{cls.name!r} installed and in your PATH?" + ) + except PermissionError: + # errno.EACCES = Permission denied + # This error occurs, for instance, when the command is installed + # only for another user. So, the current user don't have + # permission to call the other user command. + raise BadCommand( + f"No permission to execute {cls.name!r} - install it " + f"locally, globally (ask admin), or check your PATH. " + f"See possible solutions at " + f"https://pip.pypa.io/en/latest/reference/pip_freeze/" + f"#fixing-permission-denied." + ) + + @classmethod + def is_repository_directory(cls, path: str) -> bool: + """ + Return whether a directory path is a repository directory. + """ + logger.debug("Checking in %s for %s (%s)...", path, cls.dirname, cls.name) + return os.path.exists(os.path.join(path, cls.dirname)) + + @classmethod + def get_repository_root(cls, location: str) -> Optional[str]: + """ + Return the "root" (top-level) directory controlled by the vcs, + or `None` if the directory is not in any. + + It is meant to be overridden to implement smarter detection + mechanisms for specific vcs. + + This can do more than is_repository_directory() alone. For + example, the Git override checks that Git is actually available. + """ + if cls.is_repository_directory(location): + return location + return None diff --git a/python=3.6/lib/python3.10/site-packages/pip/_internal/wheel_builder.py b/python=3.6/lib/python3.10/site-packages/pip/_internal/wheel_builder.py new file mode 100644 index 0000000..d066344 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_internal/wheel_builder.py @@ -0,0 +1,377 @@ +"""Orchestrator for building wheels from InstallRequirements. +""" + +import logging +import os.path +import re +import shutil +from typing import Any, Callable, Iterable, List, Optional, Tuple + +from pip._vendor.packaging.utils import canonicalize_name, canonicalize_version +from pip._vendor.packaging.version import InvalidVersion, Version + +from pip._internal.cache import WheelCache +from pip._internal.exceptions import InvalidWheelFilename, UnsupportedWheel +from pip._internal.metadata import FilesystemWheel, get_wheel_distribution +from pip._internal.models.link import Link +from pip._internal.models.wheel import Wheel +from pip._internal.operations.build.wheel import build_wheel_pep517 +from pip._internal.operations.build.wheel_editable import build_wheel_editable +from pip._internal.operations.build.wheel_legacy import build_wheel_legacy +from pip._internal.req.req_install import InstallRequirement +from pip._internal.utils.logging import indent_log +from pip._internal.utils.misc import ensure_dir, hash_file, is_wheel_installed +from pip._internal.utils.setuptools_build import make_setuptools_clean_args +from pip._internal.utils.subprocess import call_subprocess +from pip._internal.utils.temp_dir import TempDirectory +from pip._internal.utils.urls import path_to_url +from pip._internal.vcs import vcs + +logger = logging.getLogger(__name__) + +_egg_info_re = re.compile(r"([a-z0-9_.]+)-([a-z0-9_.!+-]+)", re.IGNORECASE) + +BinaryAllowedPredicate = Callable[[InstallRequirement], bool] +BuildResult = Tuple[List[InstallRequirement], List[InstallRequirement]] + + +def _contains_egg_info(s: str) -> bool: + """Determine whether the string looks like an egg_info. + + :param s: The string to parse. E.g. foo-2.1 + """ + return bool(_egg_info_re.search(s)) + + +def _should_build( + req: InstallRequirement, + need_wheel: bool, + check_binary_allowed: BinaryAllowedPredicate, +) -> bool: + """Return whether an InstallRequirement should be built into a wheel.""" + if req.constraint: + # never build requirements that are merely constraints + return False + if req.is_wheel: + if need_wheel: + logger.info( + "Skipping %s, due to already being wheel.", + req.name, + ) + return False + + if need_wheel: + # i.e. pip wheel, not pip install + return True + + # From this point, this concerns the pip install command only + # (need_wheel=False). + + if not req.source_dir: + return False + + if req.editable: + # we only build PEP 660 editable requirements + return req.supports_pyproject_editable() + + if req.use_pep517: + return True + + if not check_binary_allowed(req): + logger.info( + "Skipping wheel build for %s, due to binaries being disabled for it.", + req.name, + ) + return False + + if not is_wheel_installed(): + # we don't build legacy requirements if wheel is not installed + logger.info( + "Using legacy 'setup.py install' for %s, " + "since package 'wheel' is not installed.", + req.name, + ) + return False + + return True + + +def should_build_for_wheel_command( + req: InstallRequirement, +) -> bool: + return _should_build(req, need_wheel=True, check_binary_allowed=_always_true) + + +def should_build_for_install_command( + req: InstallRequirement, + check_binary_allowed: BinaryAllowedPredicate, +) -> bool: + return _should_build( + req, need_wheel=False, check_binary_allowed=check_binary_allowed + ) + + +def _should_cache( + req: InstallRequirement, +) -> Optional[bool]: + """ + Return whether a built InstallRequirement can be stored in the persistent + wheel cache, assuming the wheel cache is available, and _should_build() + has determined a wheel needs to be built. + """ + if req.editable or not req.source_dir: + # never cache editable requirements + return False + + if req.link and req.link.is_vcs: + # VCS checkout. Do not cache + # unless it points to an immutable commit hash. + assert not req.editable + assert req.source_dir + vcs_backend = vcs.get_backend_for_scheme(req.link.scheme) + assert vcs_backend + if vcs_backend.is_immutable_rev_checkout(req.link.url, req.source_dir): + return True + return False + + assert req.link + base, ext = req.link.splitext() + if _contains_egg_info(base): + return True + + # Otherwise, do not cache. + return False + + +def _get_cache_dir( + req: InstallRequirement, + wheel_cache: WheelCache, +) -> str: + """Return the persistent or temporary cache directory where the built + wheel need to be stored. + """ + cache_available = bool(wheel_cache.cache_dir) + assert req.link + if cache_available and _should_cache(req): + cache_dir = wheel_cache.get_path_for_link(req.link) + else: + cache_dir = wheel_cache.get_ephem_path_for_link(req.link) + return cache_dir + + +def _always_true(_: Any) -> bool: + return True + + +def _verify_one(req: InstallRequirement, wheel_path: str) -> None: + canonical_name = canonicalize_name(req.name or "") + w = Wheel(os.path.basename(wheel_path)) + if canonicalize_name(w.name) != canonical_name: + raise InvalidWheelFilename( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(canonical_name, w.name), + ) + dist = get_wheel_distribution(FilesystemWheel(wheel_path), canonical_name) + dist_verstr = str(dist.version) + if canonicalize_version(dist_verstr) != canonicalize_version(w.version): + raise InvalidWheelFilename( + "Wheel has unexpected file name: expected {!r}, " + "got {!r}".format(dist_verstr, w.version), + ) + metadata_version_value = dist.metadata_version + if metadata_version_value is None: + raise UnsupportedWheel("Missing Metadata-Version") + try: + metadata_version = Version(metadata_version_value) + except InvalidVersion: + msg = f"Invalid Metadata-Version: {metadata_version_value}" + raise UnsupportedWheel(msg) + if metadata_version >= Version("1.2") and not isinstance(dist.version, Version): + raise UnsupportedWheel( + "Metadata 1.2 mandates PEP 440 version, " + "but {!r} is not".format(dist_verstr) + ) + + +def _build_one( + req: InstallRequirement, + output_dir: str, + verify: bool, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + """Build one wheel. + + :return: The filename of the built wheel, or None if the build failed. + """ + artifact = "editable" if editable else "wheel" + try: + ensure_dir(output_dir) + except OSError as e: + logger.warning( + "Building %s for %s failed: %s", + artifact, + req.name, + e, + ) + return None + + # Install build deps into temporary directory (PEP 518) + with req.build_env: + wheel_path = _build_one_inside_env( + req, output_dir, build_options, global_options, editable + ) + if wheel_path and verify: + try: + _verify_one(req, wheel_path) + except (InvalidWheelFilename, UnsupportedWheel) as e: + logger.warning("Built %s for %s is invalid: %s", artifact, req.name, e) + return None + return wheel_path + + +def _build_one_inside_env( + req: InstallRequirement, + output_dir: str, + build_options: List[str], + global_options: List[str], + editable: bool, +) -> Optional[str]: + with TempDirectory(kind="wheel") as temp_dir: + assert req.name + if req.use_pep517: + assert req.metadata_directory + assert req.pep517_backend + if global_options: + logger.warning( + "Ignoring --global-option when building %s using PEP 517", req.name + ) + if build_options: + logger.warning( + "Ignoring --build-option when building %s using PEP 517", req.name + ) + if editable: + wheel_path = build_wheel_editable( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_pep517( + name=req.name, + backend=req.pep517_backend, + metadata_directory=req.metadata_directory, + tempd=temp_dir.path, + ) + else: + wheel_path = build_wheel_legacy( + name=req.name, + setup_py_path=req.setup_py_path, + source_dir=req.unpacked_source_directory, + global_options=global_options, + build_options=build_options, + tempd=temp_dir.path, + ) + + if wheel_path is not None: + wheel_name = os.path.basename(wheel_path) + dest_path = os.path.join(output_dir, wheel_name) + try: + wheel_hash, length = hash_file(wheel_path) + shutil.move(wheel_path, dest_path) + logger.info( + "Created wheel for %s: filename=%s size=%d sha256=%s", + req.name, + wheel_name, + length, + wheel_hash.hexdigest(), + ) + logger.info("Stored in directory: %s", output_dir) + return dest_path + except Exception as e: + logger.warning( + "Building wheel for %s failed: %s", + req.name, + e, + ) + # Ignore return, we can't do anything else useful. + if not req.use_pep517: + _clean_one_legacy(req, global_options) + return None + + +def _clean_one_legacy(req: InstallRequirement, global_options: List[str]) -> bool: + clean_args = make_setuptools_clean_args( + req.setup_py_path, + global_options=global_options, + ) + + logger.info("Running setup.py clean for %s", req.name) + try: + call_subprocess( + clean_args, command_desc="python setup.py clean", cwd=req.source_dir + ) + return True + except Exception: + logger.error("Failed cleaning build dir for %s", req.name) + return False + + +def build( + requirements: Iterable[InstallRequirement], + wheel_cache: WheelCache, + verify: bool, + build_options: List[str], + global_options: List[str], +) -> BuildResult: + """Build wheels. + + :return: The list of InstallRequirement that succeeded to build and + the list of InstallRequirement that failed to build. + """ + if not requirements: + return [], [] + + # Build the wheels. + logger.info( + "Building wheels for collected packages: %s", + ", ".join(req.name for req in requirements), # type: ignore + ) + + with indent_log(): + build_successes, build_failures = [], [] + for req in requirements: + assert req.name + cache_dir = _get_cache_dir(req, wheel_cache) + wheel_file = _build_one( + req, + cache_dir, + verify, + build_options, + global_options, + req.editable and req.permit_editable_wheels, + ) + if wheel_file: + # Update the link for this. + req.link = Link(path_to_url(wheel_file)) + req.local_file_path = req.link.file_path + assert req.link.is_wheel + build_successes.append(req) + else: + build_failures.append(req) + + # notify success/failure + if build_successes: + logger.info( + "Successfully built %s", + " ".join([req.name for req in build_successes]), # type: ignore + ) + if build_failures: + logger.info( + "Failed to build %s", + " ".join([req.name for req in build_failures]), # type: ignore + ) + # Return a list of requirements that failed to build + return build_successes, build_failures diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/__init__.py b/python=3.6/lib/python3.10/site-packages/pip/_vendor/__init__.py new file mode 100644 index 0000000..3843cb0 --- /dev/null +++ b/python=3.6/lib/python3.10/site-packages/pip/_vendor/__init__.py @@ -0,0 +1,111 @@ +""" +pip._vendor is for vendoring dependencies of pip to prevent needing pip to +depend on something external. + +Files inside of pip._vendor should be considered immutable and should only be +updated to versions from upstream. +""" +from __future__ import absolute_import + +import glob +import os.path +import sys + +# Downstream redistributors which have debundled our dependencies should also +# patch this value to be true. This will trigger the additional patching +# to cause things like "six" to be available as pip. +DEBUNDLED = False + +# By default, look in this directory for a bunch of .whl files which we will +# add to the beginning of sys.path before attempting to import anything. This +# is done to support downstream re-distributors like Debian and Fedora who +# wish to create their own Wheels for our dependencies to aid in debundling. +WHEEL_DIR = os.path.abspath(os.path.dirname(__file__)) + + +# Define a small helper function to alias our vendored modules to the real ones +# if the vendored ones do not exist. This idea of this was taken from +# https://github.com/kennethreitz/requests/pull/2567. +def vendored(modulename): + vendored_name = "{0}.{1}".format(__name__, modulename) + + try: + __import__(modulename, globals(), locals(), level=0) + except ImportError: + # We can just silently allow import failures to pass here. If we + # got to this point it means that ``import pip._vendor.whatever`` + # failed and so did ``import whatever``. Since we're importing this + # upfront in an attempt to alias imports, not erroring here will + # just mean we get a regular import error whenever pip *actually* + # tries to import one of these modules to use it, which actually + # gives us a better error message than we would have otherwise + # gotten. + pass + else: + sys.modules[vendored_name] = sys.modules[modulename] + base, head = vendored_name.rsplit(".", 1) + setattr(sys.modules[base], head, sys.modules[modulename]) + + +# If we're operating in a debundled setup, then we want to go ahead and trigger +# the aliasing of our vendored libraries as well as looking for wheels to add +# to our sys.path. This will cause all of this code to be a no-op typically +# however downstream redistributors can enable it in a consistent way across +# all platforms. +if DEBUNDLED: + # Actually look inside of WHEEL_DIR to find .whl files and add them to the + # front of our sys.path. + sys.path[:] = glob.glob(os.path.join(WHEEL_DIR, "*.whl")) + sys.path + + # Actually alias all of our vendored dependencies. + vendored("cachecontrol") + vendored("certifi") + vendored("colorama") + vendored("distlib") + vendored("distro") + vendored("html5lib") + vendored("six") + vendored("six.moves") + vendored("six.moves.urllib") + vendored("six.moves.urllib.parse") + vendored("packaging") + vendored("packaging.version") + vendored("packaging.specifiers") + vendored("pep517") + vendored("pkg_resources") + vendored("platformdirs") + vendored("progress") + vendored("requests") + vendored("requests.exceptions") + vendored("requests.packages") + vendored("requests.packages.urllib3") + vendored("requests.packages.urllib3._collections") + vendored("requests.packages.urllib3.connection") + vendored("requests.packages.urllib3.connectionpool") + vendored("requests.packages.urllib3.contrib") + vendored("requests.packages.urllib3.contrib.ntlmpool") + vendored("requests.packages.urllib3.contrib.pyopenssl") + vendored("requests.packages.urllib3.exceptions") + vendored("requests.packages.urllib3.fields") + vendored("requests.packages.urllib3.filepost") + vendored("requests.packages.urllib3.packages") + vendored("requests.packages.urllib3.packages.ordered_dict") + vendored("requests.packages.urllib3.packages.six") + vendored("requests.packages.urllib3.packages.ssl_match_hostname") + vendored("requests.packages.urllib3.packages.ssl_match_hostname." + "_implementation") + vendored("requests.packages.urllib3.poolmanager") + vendored("requests.packages.urllib3.request") + vendored("requests.packages.urllib3.response") + vendored("requests.packages.urllib3.util") + vendored("requests.packages.urllib3.util.connection") + vendored("requests.packages.urllib3.util.request") + vendored("requests.packages.urllib3.util.response") + vendored("requests.packages.urllib3.util.retry") + vendored("requests.packages.urllib3.util.ssl_") + vendored("requests.packages.urllib3.util.timeout") + vendored("requests.packages.urllib3.util.url") + vendored("resolvelib") + vendored("tenacity") + vendored("tomli") + vendored("urllib3") diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/__init__.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..f311b6c52f464f6f984b0799e52bb1f037f28a4f GIT binary patch literal 2922 zcmbuB-EQ1O6oCD=w%6Hh(>DD{X^Z>cZK<~*qydq0}Y#`ca~&mX}p(_o0@^< zjAl!-t$9TAsOGHZG0o$eCp70YPimghJgs>~b6)eT=3AQQG|y{Z(0p4n)V!#9N%OMi z70s)f*EFwd-q7r5-qgIM`Htpo%}BGWc}H_W^IgqF&G$5yH1BHO(|lj^14U#%t?$l< z)vrOBl~KHb3q)C%@o*I|e#(lq5aAMLaFJ%1hjcXr;ZV@9WEf;bSYV8l*myV?ONX=w zInA*cs44tXU{)j~3WA3j0WDdCMZ39`z{=qSgXGRe?hG>k=nTGm(4X5g< z@xl=9y0>Y}k7?dFHq9L$IjFH~ePeA|TefJ{64t!2Y46Ey+u#v+yW>8oyjOR&qE`!B zOxXvPHwbJrk!JL|9tflh{>c*|{Wva?9LKQ?V!bNpduxRD6T+oSXsS5#s9x|2W0Xmo zkGS-5iiY3^=`voDOh}JokqE&$jts_gO0jH@g8-xYJJRVV97|__6ZDh8=D@l?`rQF| zxtnB+B>nCeqh-9&MT{2s0WAchgkaV!M`A#Wj~1i5U6S?n<6^XMr^_>eZJXyoM z3jx&CLD+@$6q$(Qs2oXu&x-TPH;~$lmT6gM%$Dgkt>0&7X3cXZI|aj4<7V_?Kx8XT z(gB7TQWi)r#Y|+Yne}?&Fe?3l$jOo#v3d5gYC;p`bOZBhcG8W8 zjDSRS>hB{_nK0Ow=6E3x@71wMH_~BQ&HXjROPqo|5U4LA-`mF4JM(-@V7(E1+Px*^&Xf7gKe4g`f=kN9G?|Hex(DmolZhxp7!qNOvQ$iS+T;Zl!AozT7&at^G?EVD z0obb!e6{kQUW-)nAvlL>kf@lcu1-+{KFgB=4m_I{30lFlO@tFsLe%5x!ogn~ii}j9 z>GRRPD4udAl&WaYtm}uUoY*!c;Iu-)M%Cp*)G1F*bA7E!WI3k8sc~1!K^l{R$~6S4 z3S>NA;37#gF_H~IbCOAKoah!iN2M3Xh^FHLvpN(*2E~TK-$z3_s>(=@a>#ySAT7#S zON}>|S3dpf$@1fsW$Dy29@O1&2a;J`RiJFG!oL8}+I;re%F5$-`O%kk{+7-<&5F9P y>}yUcwf_BaS^8L&Kwd%P7%k7YeA73b#+>WB?%6B0Z>#73{j0V9yOx&e{PHLKDU_rD literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/distro.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..38fa766ecc0382edde2a0d93297608bd11d1f963 GIT binary patch literal 38240 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 literal 0 HcmV?d00001 diff --git a/python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc b/python=3.6/lib/python3.10/site-packages/pip/_vendor/__pycache__/six.cpython-310.pyc new file mode 100644 index 0000000000000000000000000000000000000000..416ea18b91e51e0a6283fa4dd1032af714946328 GIT binary patch literal 27589 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