Spaces:
Running
Running
jameson512 commited on
Commit ·
fccea05
1
Parent(s): 1dc43d6
Upload files via LFS
Browse files- Dockerfile +41 -0
- README.md +1 -2
- requirements.txt +0 -662
Dockerfile
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 1. 指定包含 Python 3.10 的基础镜像
|
| 2 |
+
FROM python:3.10-slim
|
| 3 |
+
|
| 4 |
+
# 2. [新增] 从官方镜像中直接复制最新版的 uv 到当前容器 (最快、最稳定的安装方式)
|
| 5 |
+
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
|
| 6 |
+
|
| 7 |
+
# 3. 设置 Gradio 需要的默认环境变量
|
| 8 |
+
ENV GRADIO_SERVER_NAME="0.0.0.0"
|
| 9 |
+
ENV GRADIO_SERVER_PORT=7860
|
| 10 |
+
ENV DEBIAN_FRONTEND=noninteractive
|
| 11 |
+
|
| 12 |
+
# 4. 设置工作目录
|
| 13 |
+
WORKDIR /app
|
| 14 |
+
|
| 15 |
+
# 5. 安装下载工具,并下载安装 FFmpeg 7
|
| 16 |
+
RUN apt-get update && \
|
| 17 |
+
apt-get install -y wget xz-utils && \
|
| 18 |
+
wget https://johnvansickle.com/ffmpeg/releases/ffmpeg-release-amd64-static.tar.xz && \
|
| 19 |
+
tar -Jxf ffmpeg-release-amd64-static.tar.xz && \
|
| 20 |
+
cp ffmpeg-*-static/ffmpeg /usr/local/bin/ && \
|
| 21 |
+
cp ffmpeg-*-static/ffprobe /usr/local/bin/ && \
|
| 22 |
+
rm -rf ffmpeg-* && \
|
| 23 |
+
apt-get clean && rm -rf /var/lib/apt/lists/*
|
| 24 |
+
|
| 25 |
+
# 6. [新增] 优先复制配置文件 (这利用了 Docker 缓存,以后改代码不改依赖时能秒构建)
|
| 26 |
+
COPY pyproject.toml ./
|
| 27 |
+
# 如果你的项目根目录下生成了 uv.lock 文件,请将下面这行的注释取消掉:
|
| 28 |
+
# COPY uv.lock ./
|
| 29 |
+
|
| 30 |
+
# 7. [修改] 使用 uv 读取 pyproject.toml 并安装依赖到系统环境中
|
| 31 |
+
RUN uv pip install --system -r pyproject.toml --all-extras
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
# 8. 复制你项目里的所有其他代码文件
|
| 35 |
+
COPY . .
|
| 36 |
+
|
| 37 |
+
# 9. 暴露端口
|
| 38 |
+
EXPOSE 7860
|
| 39 |
+
|
| 40 |
+
# 10. 启动你的主程序
|
| 41 |
+
CMD ["python", "webui.py"]
|
README.md
CHANGED
|
@@ -3,8 +3,7 @@ title: pyVideoTrans
|
|
| 3 |
emoji: 🎥
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: red
|
| 6 |
-
sdk:
|
| 7 |
-
python_version: "3.10"
|
| 8 |
app_file: webui.py
|
| 9 |
pinned: false
|
| 10 |
---
|
|
|
|
| 3 |
emoji: 🎥
|
| 4 |
colorFrom: blue
|
| 5 |
colorTo: red
|
| 6 |
+
sdk: docker
|
|
|
|
| 7 |
app_file: webui.py
|
| 8 |
pinned: false
|
| 9 |
---
|
requirements.txt
DELETED
|
@@ -1,662 +0,0 @@
|
|
| 1 |
-
absl-py==1.4.0
|
| 2 |
-
accelerate==1.14.0
|
| 3 |
-
access==1.1.10.post3
|
| 4 |
-
affine==2.4.0
|
| 5 |
-
aiofiles==24.1.0
|
| 6 |
-
aiohappyeyeballs==2.6.2
|
| 7 |
-
aiohttp==3.14.1
|
| 8 |
-
aiosignal==1.4.0
|
| 9 |
-
aiosqlite==0.22.1
|
| 10 |
-
alabaster==1.0.0
|
| 11 |
-
albucore==0.0.24
|
| 12 |
-
albumentations==2.0.8
|
| 13 |
-
ale-py==0.12.0
|
| 14 |
-
alembic==1.18.4
|
| 15 |
-
altair==5.5.0
|
| 16 |
-
annotated-doc==0.0.4
|
| 17 |
-
annotated-types==0.7.0
|
| 18 |
-
antlr4-python3-runtime==4.9.3
|
| 19 |
-
anyio==4.13.0
|
| 20 |
-
anywidget==0.9.21
|
| 21 |
-
apsw==3.53.2.0
|
| 22 |
-
apswutils==0.1.2
|
| 23 |
-
argon2-cffi==25.1.0
|
| 24 |
-
argon2-cffi-bindings==25.1.0
|
| 25 |
-
array-record==0.8.3
|
| 26 |
-
arrow==1.4.0
|
| 27 |
-
arviz==0.22.0
|
| 28 |
-
astropy==7.2.0
|
| 29 |
-
astropy-iers-data==0.2026.6.8.17.49.5
|
| 30 |
-
astunparse==1.6.3
|
| 31 |
-
atpublic==5.1
|
| 32 |
-
attrs==26.1.0
|
| 33 |
-
audioread==3.1.0
|
| 34 |
-
authlib==1.7.2
|
| 35 |
-
autograd==1.8.0
|
| 36 |
-
babel==2.18.0
|
| 37 |
-
backcall==0.2.0
|
| 38 |
-
beartype==0.22.9
|
| 39 |
-
beautifulsoup4==4.13.5
|
| 40 |
-
betterproto==2.0.0b6
|
| 41 |
-
bigframes==2.42.0
|
| 42 |
-
bigquery-magics==0.14.0
|
| 43 |
-
bleach==6.4.0
|
| 44 |
-
blinker==1.9.0
|
| 45 |
-
blis==1.3.3
|
| 46 |
-
blobfile==3.2.0
|
| 47 |
-
blosc2==4.4.5
|
| 48 |
-
bokeh==3.8.2
|
| 49 |
-
bottleneck==1.4.2
|
| 50 |
-
bqplot==0.12.47
|
| 51 |
-
branca==0.8.2
|
| 52 |
-
brotli==1.2.0
|
| 53 |
-
cachecontrol==0.14.4
|
| 54 |
-
cachetools==6.2.6
|
| 55 |
-
catalogue==2.0.10
|
| 56 |
-
certifi==2026.5.20
|
| 57 |
-
cffi==2.0.0
|
| 58 |
-
chardet==5.2.0
|
| 59 |
-
charset-normalizer==3.4.7
|
| 60 |
-
clarabel==0.11.1
|
| 61 |
-
click==8.4.1
|
| 62 |
-
cligj==0.7.2
|
| 63 |
-
cloudpathlib==0.24.0
|
| 64 |
-
cloudpickle==3.1.2
|
| 65 |
-
cmake==3.31.10
|
| 66 |
-
cmdstanpy==1.3.0
|
| 67 |
-
colorcet==3.2.1
|
| 68 |
-
colorlover==0.3.0
|
| 69 |
-
community==1.0.0b1
|
| 70 |
-
confection==1.3.3
|
| 71 |
-
cons==0.4.7
|
| 72 |
-
contourpy==1.3.3
|
| 73 |
-
cramjam==2.11.0
|
| 74 |
-
cryptography==49.0.0
|
| 75 |
-
cufflinks==0.17.3
|
| 76 |
-
curl-cffi==0.15.0
|
| 77 |
-
cvxopt==1.3.2
|
| 78 |
-
cvxpy==1.6.7
|
| 79 |
-
cycler==0.12.1
|
| 80 |
-
cyipopt==1.5.0
|
| 81 |
-
cymem==2.0.13
|
| 82 |
-
cython==3.0.12
|
| 83 |
-
dask==2026.6.0
|
| 84 |
-
dataproc-spark-connect==1.1.0
|
| 85 |
-
datasets==4.0.0
|
| 86 |
-
db-dtypes==1.7.0
|
| 87 |
-
debugpy==1.8.15
|
| 88 |
-
decorator==4.4.2
|
| 89 |
-
defusedxml==0.7.1
|
| 90 |
-
deprecation==2.1.0
|
| 91 |
-
diffusers==0.38.0
|
| 92 |
-
dill==0.3.8
|
| 93 |
-
distro==1.9.0
|
| 94 |
-
dlib==19.24.6
|
| 95 |
-
dm-tree==0.1.10
|
| 96 |
-
docstring-parser==0.18.0
|
| 97 |
-
docutils==0.21.2
|
| 98 |
-
dopamine-rl==4.1.2
|
| 99 |
-
duckdb==1.3.2
|
| 100 |
-
earthengine-api==1.7.30
|
| 101 |
-
easydict==1.13
|
| 102 |
-
editdistance==0.8.1
|
| 103 |
-
eerepr==0.1.2
|
| 104 |
-
einops==0.8.2
|
| 105 |
-
en-core-web-sm @ https://github.com/explosion/spacy-models/releases/download/en_core_web_sm-3.8.0/en_core_web_sm-3.8.0-py3-none-any.whl
|
| 106 |
-
entrypoints==0.4
|
| 107 |
-
esda==2.9.0
|
| 108 |
-
et-xmlfile==2.0.0
|
| 109 |
-
etils==1.14.0
|
| 110 |
-
etuples==0.3.10
|
| 111 |
-
farama-notifications==0.0.6
|
| 112 |
-
fastai==2.8.7
|
| 113 |
-
fastapi==0.136.3
|
| 114 |
-
fastcore==1.13.3
|
| 115 |
-
fastdownload==0.0.7
|
| 116 |
-
fastjsonschema==2.21.2
|
| 117 |
-
fastlite==0.2.4
|
| 118 |
-
fastprogress==1.1.6
|
| 119 |
-
fasttransform==0.0.2
|
| 120 |
-
ffmpy==1.0.0
|
| 121 |
-
filelock==3.29.3
|
| 122 |
-
firebase-admin==6.9.0
|
| 123 |
-
flask==3.1.3
|
| 124 |
-
flatbuffers==25.12.19
|
| 125 |
-
flax==0.11.2
|
| 126 |
-
folium==0.20.0
|
| 127 |
-
fonttools==4.63.0
|
| 128 |
-
fqdn==1.5.1
|
| 129 |
-
frozendict==2.4.7
|
| 130 |
-
frozenlist==1.8.0
|
| 131 |
-
fsspec==2025.3.0
|
| 132 |
-
future==1.0.0
|
| 133 |
-
gast==0.7.0
|
| 134 |
-
gcsfs==2025.3.0
|
| 135 |
-
gdal==3.8.4
|
| 136 |
-
gdown==5.2.2
|
| 137 |
-
geemap==0.38.1
|
| 138 |
-
geocoder==1.38.1
|
| 139 |
-
geographiclib==2.1
|
| 140 |
-
geopandas==1.1.3
|
| 141 |
-
geopy==2.4.1
|
| 142 |
-
giddy==2.3.6
|
| 143 |
-
gin-config==0.5.0
|
| 144 |
-
gitdb==4.0.12
|
| 145 |
-
gitpython==3.1.50
|
| 146 |
-
glob2==0.7
|
| 147 |
-
google==3.0.0
|
| 148 |
-
google-adk==1.29.0
|
| 149 |
-
google-ai-generativelanguage==0.6.15
|
| 150 |
-
google-api-core==2.30.3
|
| 151 |
-
google-api-python-client==2.197.0
|
| 152 |
-
google-auth==2.47.0
|
| 153 |
-
google-auth-httplib2==0.4.0
|
| 154 |
-
google-auth-oauthlib==1.4.0
|
| 155 |
-
google-cloud-aiplatform==1.157.0
|
| 156 |
-
google-cloud-appengine-logging==1.10.0
|
| 157 |
-
google-cloud-audit-log==0.6.0
|
| 158 |
-
google-cloud-bigquery==3.41.0
|
| 159 |
-
google-cloud-bigquery-connection==1.22.0
|
| 160 |
-
google-cloud-bigquery-storage==2.39.0
|
| 161 |
-
google-cloud-bigtable==2.38.0
|
| 162 |
-
google-cloud-core==2.6.0
|
| 163 |
-
google-cloud-dataplex==2.20.0
|
| 164 |
-
google-cloud-dataproc==5.28.0
|
| 165 |
-
google-cloud-datastore==2.25.0
|
| 166 |
-
google-cloud-discoveryengine==0.13.12
|
| 167 |
-
google-cloud-firestore==2.27.0
|
| 168 |
-
google-cloud-functions==1.23.0
|
| 169 |
-
google-cloud-iam==2.23.0
|
| 170 |
-
google-cloud-language==2.20.0
|
| 171 |
-
google-cloud-logging==3.16.0
|
| 172 |
-
google-cloud-monitoring==2.31.0
|
| 173 |
-
google-cloud-pubsub==2.39.0
|
| 174 |
-
google-cloud-resource-manager==1.17.0
|
| 175 |
-
google-cloud-secret-manager==2.29.0
|
| 176 |
-
google-cloud-spanner==3.68.0
|
| 177 |
-
google-cloud-speech==2.40.0
|
| 178 |
-
google-cloud-storage==3.12.0
|
| 179 |
-
google-cloud-trace==1.19.0
|
| 180 |
-
google-cloud-translate==3.26.0
|
| 181 |
-
google-colab @ file:///colabtools/dist/google_colab-1.0.0.tar.gz
|
| 182 |
-
google-crc32c==1.8.0
|
| 183 |
-
google-genai==1.68.0
|
| 184 |
-
google-generativeai==0.8.6
|
| 185 |
-
google-pasta==0.2.0
|
| 186 |
-
google-resumable-media==2.10.0
|
| 187 |
-
googleapis-common-protos==1.75.0
|
| 188 |
-
googledrivedownloader==1.1.0
|
| 189 |
-
gradio==5.50.0
|
| 190 |
-
gradio-client==1.14.0
|
| 191 |
-
grain==0.2.17
|
| 192 |
-
graphviz==0.21
|
| 193 |
-
greenlet==3.5.1
|
| 194 |
-
groovy==0.1.2
|
| 195 |
-
grpc-google-iam-v1==0.14.4
|
| 196 |
-
grpc-interceptor==0.15.4
|
| 197 |
-
grpcio==1.81.1
|
| 198 |
-
grpcio-status==1.71.2
|
| 199 |
-
grpclib==0.4.9
|
| 200 |
-
gspread==6.2.1
|
| 201 |
-
gspread-dataframe==4.0.0
|
| 202 |
-
gym==0.25.2
|
| 203 |
-
gym-notices==0.1.0
|
| 204 |
-
gymnasium==1.3.0
|
| 205 |
-
h11==0.16.0
|
| 206 |
-
h2==4.3.0
|
| 207 |
-
h5netcdf==1.8.1
|
| 208 |
-
h5py==3.16.0
|
| 209 |
-
hdbscan==0.8.44
|
| 210 |
-
hf-xet==1.5.1
|
| 211 |
-
highspy==1.14.0
|
| 212 |
-
holidays==0.98
|
| 213 |
-
holoviews==1.22.1
|
| 214 |
-
hpack==4.1.0
|
| 215 |
-
html5lib==1.1
|
| 216 |
-
httpcore==1.0.9
|
| 217 |
-
httpimport==1.4.1
|
| 218 |
-
httplib2==0.31.2
|
| 219 |
-
httptools==0.8.0
|
| 220 |
-
httpx==0.28.1
|
| 221 |
-
httpx-sse==0.4.3
|
| 222 |
-
huggingface-hub==1.19.0
|
| 223 |
-
humanize==4.15.0
|
| 224 |
-
hyperframe==6.1.0
|
| 225 |
-
hyperopt==0.2.7
|
| 226 |
-
ibis-framework==9.5.0
|
| 227 |
-
idna==3.18
|
| 228 |
-
imageio==2.37.3
|
| 229 |
-
imageio-ffmpeg==0.6.0
|
| 230 |
-
imagesize==2.0.0
|
| 231 |
-
imbalanced-learn==0.14.2
|
| 232 |
-
immutabledict==4.3.1
|
| 233 |
-
importlib-metadata==8.7.1
|
| 234 |
-
importlib-resources==7.1.0
|
| 235 |
-
imutils==0.5.4
|
| 236 |
-
inequality==1.1.2
|
| 237 |
-
inflect==7.5.0
|
| 238 |
-
iniconfig==2.3.0
|
| 239 |
-
intel-cmplr-lib-ur==2025.3.3
|
| 240 |
-
intel-openmp==2025.3.3
|
| 241 |
-
ipyevents==2.0.4
|
| 242 |
-
ipyfilechooser==0.6.0
|
| 243 |
-
ipykernel==6.17.1
|
| 244 |
-
ipyleaflet==0.20.0
|
| 245 |
-
ipyparallel==8.8.0
|
| 246 |
-
ipython==7.34.0
|
| 247 |
-
ipython-genutils==0.2.0
|
| 248 |
-
ipython-sql==0.5.0
|
| 249 |
-
ipywidgets==7.7.1
|
| 250 |
-
isoduration==20.11.0
|
| 251 |
-
itsdangerous==2.2.0
|
| 252 |
-
jaraco-classes==3.4.0
|
| 253 |
-
jaraco-context==6.1.2
|
| 254 |
-
jaraco-functools==4.5.0
|
| 255 |
-
jax==0.7.2
|
| 256 |
-
jaxlib==0.7.2
|
| 257 |
-
jeepney==0.9.0
|
| 258 |
-
jieba==0.42.1
|
| 259 |
-
jinja2==3.1.6
|
| 260 |
-
jiter==0.15.0
|
| 261 |
-
joblib==1.5.3
|
| 262 |
-
joserfc==1.7.1
|
| 263 |
-
jsonpatch==1.33
|
| 264 |
-
jsonpickle==4.1.2
|
| 265 |
-
jsonpointer==3.1.1
|
| 266 |
-
jsonschema==4.26.0
|
| 267 |
-
jsonschema-specifications==2025.9.1
|
| 268 |
-
jupyter-client==7.4.9
|
| 269 |
-
jupyter-console==6.6.3
|
| 270 |
-
jupyter-core==5.9.1
|
| 271 |
-
jupyter-events==0.12.1
|
| 272 |
-
jupyter-kernel-gateway @ git+https://github.com/googlecolab/kernel_gateway@b134e9945df25c2dcb98ade9129399be10788671
|
| 273 |
-
jupyter-leaflet==0.20.0
|
| 274 |
-
jupyter-server==2.18.2
|
| 275 |
-
jupyter-server-terminals==0.5.4
|
| 276 |
-
jupyterlab-pygments==0.3.0
|
| 277 |
-
jupyterlab-widgets==3.0.16
|
| 278 |
-
jupytext==1.19.3
|
| 279 |
-
kaggle==2.0.2
|
| 280 |
-
kagglehub==1.0.2
|
| 281 |
-
kagglesdk==0.1.23
|
| 282 |
-
keras==3.13.2
|
| 283 |
-
keras-hub==0.26.0
|
| 284 |
-
keras-nlp==0.26.0
|
| 285 |
-
keyring==25.7.0
|
| 286 |
-
keyrings-google-artifactregistry-auth==1.1.2
|
| 287 |
-
kiwisolver==1.5.0
|
| 288 |
-
langchain==1.3.9
|
| 289 |
-
langchain-core==1.4.7
|
| 290 |
-
langchain-protocol==0.0.17
|
| 291 |
-
langgraph==1.2.5
|
| 292 |
-
langgraph-checkpoint==4.1.1
|
| 293 |
-
langgraph-prebuilt==1.1.0
|
| 294 |
-
langgraph-sdk==0.4.2
|
| 295 |
-
langsmith==0.8.15
|
| 296 |
-
lark==1.3.1
|
| 297 |
-
lazy-loader==0.5
|
| 298 |
-
libclang==18.1.1
|
| 299 |
-
libpysal==4.14.1
|
| 300 |
-
librosa==0.11.0
|
| 301 |
-
lightgbm==4.6.0
|
| 302 |
-
linkify-it-py==2.1.0
|
| 303 |
-
llvmlite==0.43.0
|
| 304 |
-
locket==1.0.0
|
| 305 |
-
logical-unification==0.4.7
|
| 306 |
-
lxml==6.1.1
|
| 307 |
-
mako==1.3.12
|
| 308 |
-
mapclassify==2.10.0
|
| 309 |
-
markdown==3.10.2
|
| 310 |
-
markdown-it-py==4.2.0
|
| 311 |
-
markupsafe==3.0.3
|
| 312 |
-
matplotlib==3.10.0
|
| 313 |
-
matplotlib-inline==0.2.2
|
| 314 |
-
matplotlib-venn==1.1.2
|
| 315 |
-
mcp==1.27.2
|
| 316 |
-
mdit-py-plugins==0.6.1
|
| 317 |
-
mdurl==0.1.2
|
| 318 |
-
mgwr==2.2.1
|
| 319 |
-
minikanren==1.0.5
|
| 320 |
-
missingno==0.5.2
|
| 321 |
-
mistune==3.2.1
|
| 322 |
-
mizani==0.13.5
|
| 323 |
-
mkl==2025.3.1
|
| 324 |
-
ml-dtypes==0.5.4
|
| 325 |
-
mlxtend==0.23.4
|
| 326 |
-
mmh3==5.2.1
|
| 327 |
-
momepy==0.11.0
|
| 328 |
-
more-itertools==10.8.0
|
| 329 |
-
moviepy==1.0.3
|
| 330 |
-
mpmath==1.3.0
|
| 331 |
-
msgpack==1.2.0
|
| 332 |
-
multidict==6.7.1
|
| 333 |
-
multipledispatch==1.0.0
|
| 334 |
-
multiprocess==0.70.16
|
| 335 |
-
multitasking==0.0.13
|
| 336 |
-
murmurhash==1.0.15
|
| 337 |
-
music21==9.9.2
|
| 338 |
-
namex==0.1.0
|
| 339 |
-
narwhals==2.22.1
|
| 340 |
-
natsort==8.4.0
|
| 341 |
-
nbclassic==1.3.3
|
| 342 |
-
nbclient==0.10.4
|
| 343 |
-
nbconvert==7.17.1
|
| 344 |
-
nbformat==5.10.4
|
| 345 |
-
ndindex==1.10.1
|
| 346 |
-
nest-asyncio==1.6.0
|
| 347 |
-
networkx==3.6.1
|
| 348 |
-
nh3==0.3.5
|
| 349 |
-
nibabel==5.4.2
|
| 350 |
-
nltk==3.9.1
|
| 351 |
-
notebook==6.5.7
|
| 352 |
-
notebook-shim==0.2.4
|
| 353 |
-
numba==0.60.0
|
| 354 |
-
numexpr==2.14.1
|
| 355 |
-
numpy==2.0.2
|
| 356 |
-
nvidia-nccl-cu12==2.30.7
|
| 357 |
-
oauth2client==4.1.3
|
| 358 |
-
oauthlib==3.3.1
|
| 359 |
-
omegaconf==2.3.1
|
| 360 |
-
onemkl-license==2025.3.1
|
| 361 |
-
openai==2.41.1
|
| 362 |
-
opencv-contrib-python==4.13.0.92
|
| 363 |
-
opencv-python==4.13.0.92
|
| 364 |
-
opencv-python-headless==4.13.0.92
|
| 365 |
-
openpyxl==3.1.5
|
| 366 |
-
opentelemetry-api==1.38.0
|
| 367 |
-
opentelemetry-exporter-gcp-logging==1.11.0a0
|
| 368 |
-
opentelemetry-exporter-gcp-monitoring==1.12.0a0
|
| 369 |
-
opentelemetry-exporter-gcp-trace==1.12.0
|
| 370 |
-
opentelemetry-exporter-otlp-proto-common==1.38.0
|
| 371 |
-
opentelemetry-exporter-otlp-proto-http==1.38.0
|
| 372 |
-
opentelemetry-proto==1.38.0
|
| 373 |
-
opentelemetry-resourcedetector-gcp==1.12.0a0
|
| 374 |
-
opentelemetry-sdk==1.38.0
|
| 375 |
-
opentelemetry-semantic-conventions==0.59b0
|
| 376 |
-
opt-einsum==3.4.0
|
| 377 |
-
optax==0.2.8
|
| 378 |
-
optree==0.19.1
|
| 379 |
-
orbax-checkpoint==0.12.0
|
| 380 |
-
orjson==3.11.9
|
| 381 |
-
ormsgpack==1.12.2
|
| 382 |
-
osqp==1.1.3
|
| 383 |
-
packaging==26.2
|
| 384 |
-
pandas==2.2.2
|
| 385 |
-
pandas-datareader==0.10.0
|
| 386 |
-
pandas-gbq==0.30.0
|
| 387 |
-
pandas-stubs==2.2.2.240909
|
| 388 |
-
pandocfilters==1.5.1
|
| 389 |
-
panel==1.9.3
|
| 390 |
-
panel-material-ui==0.12.0
|
| 391 |
-
param==2.4.1
|
| 392 |
-
parso==0.8.7
|
| 393 |
-
parsy==2.2
|
| 394 |
-
partd==1.4.2
|
| 395 |
-
patsy==1.0.2
|
| 396 |
-
peewee==4.0.7
|
| 397 |
-
peft==0.19.1
|
| 398 |
-
pexpect==4.9.0
|
| 399 |
-
pickleshare==0.7.5
|
| 400 |
-
pillow==11.3.0
|
| 401 |
-
pip==24.1.2
|
| 402 |
-
platformdirs==4.10.0
|
| 403 |
-
plotly==5.24.1
|
| 404 |
-
plotnine==0.14.5
|
| 405 |
-
pluggy==1.6.0
|
| 406 |
-
plum-dispatch==2.9.0
|
| 407 |
-
pointpats==2.5.5
|
| 408 |
-
polars==1.35.2
|
| 409 |
-
polars-runtime-32==1.35.2
|
| 410 |
-
pooch==1.9.0
|
| 411 |
-
portpicker==1.5.2
|
| 412 |
-
preshed==3.0.13
|
| 413 |
-
prettytable==3.17.0
|
| 414 |
-
proglog==0.1.12
|
| 415 |
-
progressbar2==4.5.0
|
| 416 |
-
prometheus-client==0.25.0
|
| 417 |
-
promise==2.3
|
| 418 |
-
prompt-toolkit==3.0.52
|
| 419 |
-
propcache==0.5.2
|
| 420 |
-
prophet==1.3.0
|
| 421 |
-
proto-plus==1.28.0
|
| 422 |
-
protobuf==5.29.6
|
| 423 |
-
psutil==5.9.5
|
| 424 |
-
psycopg2==2.9.12
|
| 425 |
-
psygnal==0.15.1
|
| 426 |
-
ptyprocess==0.7.0
|
| 427 |
-
pulp==3.3.2
|
| 428 |
-
py-cpuinfo==9.0.0
|
| 429 |
-
py4j==0.10.9.9
|
| 430 |
-
pyarrow==18.1.0
|
| 431 |
-
pyasn1==0.6.3
|
| 432 |
-
pyasn1-modules==0.4.2
|
| 433 |
-
pycairo==1.29.0
|
| 434 |
-
pycocotools==2.0.11
|
| 435 |
-
pycparser==3.0
|
| 436 |
-
pycryptodomex==3.23.0
|
| 437 |
-
pydantic==2.12.3
|
| 438 |
-
pydantic-core==2.41.4
|
| 439 |
-
pydantic-settings==2.14.1
|
| 440 |
-
pydata-google-auth==1.9.1
|
| 441 |
-
pydot==4.0.1
|
| 442 |
-
pydotplus==2.0.2
|
| 443 |
-
pydrive2==1.21.1
|
| 444 |
-
pydub==0.25.1
|
| 445 |
-
pyerfa==2.0.1.5
|
| 446 |
-
pygame==2.6.1
|
| 447 |
-
pygit2==1.19.2
|
| 448 |
-
pygments==2.20.0
|
| 449 |
-
pygobject==3.48.2
|
| 450 |
-
pyiceberg==0.11.1
|
| 451 |
-
pyjwt==2.13.0
|
| 452 |
-
pymc==5.28.5
|
| 453 |
-
pynndescent==0.6.0
|
| 454 |
-
pyogrio==0.12.1
|
| 455 |
-
pyomo==6.10.1
|
| 456 |
-
pyopengl==3.1.10
|
| 457 |
-
pyopenssl==26.3.0
|
| 458 |
-
pyparsing==3.3.2
|
| 459 |
-
pyperclip==1.11.0
|
| 460 |
-
pyproj==3.7.2
|
| 461 |
-
pyroaring==1.1.0
|
| 462 |
-
pysal==25.7
|
| 463 |
-
pyshp==3.0.12
|
| 464 |
-
pysocks==1.7.1
|
| 465 |
-
pyspark==4.0.3
|
| 466 |
-
pytensor==2.38.3
|
| 467 |
-
pytest==8.4.2
|
| 468 |
-
python-apt==0.0.0
|
| 469 |
-
python-box==7.4.1
|
| 470 |
-
python-dateutil==2.9.0.post0
|
| 471 |
-
python-dotenv==1.2.2
|
| 472 |
-
python-fasthtml==0.12.50
|
| 473 |
-
python-json-logger==4.1.0
|
| 474 |
-
python-louvain==0.16
|
| 475 |
-
python-multipart==0.0.32
|
| 476 |
-
python-slugify==8.0.4
|
| 477 |
-
python-snappy==0.7.3
|
| 478 |
-
python-utils==3.9.1
|
| 479 |
-
pytz==2025.2
|
| 480 |
-
pyviz-comms==3.0.6
|
| 481 |
-
pywavelets==1.9.0
|
| 482 |
-
pyyaml==6.0.3
|
| 483 |
-
pyzmq==26.2.1
|
| 484 |
-
quantecon==0.11.2
|
| 485 |
-
rasterio==1.5.0
|
| 486 |
-
rasterstats==0.21.0
|
| 487 |
-
ratelim==0.1.6
|
| 488 |
-
referencing==0.37.0
|
| 489 |
-
regex==2025.11.3
|
| 490 |
-
requests==2.32.4
|
| 491 |
-
requests-oauthlib==2.0.0
|
| 492 |
-
requests-toolbelt==1.0.0
|
| 493 |
-
requirements-parser==0.9.0
|
| 494 |
-
rfc3339-validator==0.1.4
|
| 495 |
-
rfc3986-validator==0.1.1
|
| 496 |
-
rfc3987-syntax==1.1.0
|
| 497 |
-
rich==13.9.4
|
| 498 |
-
roman-numerals==4.1.0
|
| 499 |
-
roman-numerals-py==4.1.0
|
| 500 |
-
rpds-py==2026.5.1
|
| 501 |
-
rpy2==3.5.17
|
| 502 |
-
rsa==4.9.1
|
| 503 |
-
rtree==1.4.1
|
| 504 |
-
ruff==0.15.17
|
| 505 |
-
safehttpx==0.1.7
|
| 506 |
-
safetensors==0.8.0
|
| 507 |
-
scikit-image==0.25.2
|
| 508 |
-
scikit-learn==1.6.1
|
| 509 |
-
scipy==1.16.3
|
| 510 |
-
scooby==0.11.2
|
| 511 |
-
scs==3.2.11
|
| 512 |
-
seaborn==0.13.2
|
| 513 |
-
secretstorage==3.5.0
|
| 514 |
-
segregation==2.5.4
|
| 515 |
-
semantic-version==2.10.0
|
| 516 |
-
send2trash==2.1.0
|
| 517 |
-
sentence-transformers==5.5.1
|
| 518 |
-
sentencepiece==0.2.1
|
| 519 |
-
sentry-sdk==2.62.0
|
| 520 |
-
setuptools==75.2.0
|
| 521 |
-
shap==0.52.0
|
| 522 |
-
shapely==2.1.2
|
| 523 |
-
shellingham==1.5.4
|
| 524 |
-
simple-parsing==0.1.8
|
| 525 |
-
simplejson==4.1.1
|
| 526 |
-
simsimd==6.5.16
|
| 527 |
-
six==1.17.0
|
| 528 |
-
sklearn-compat==0.1.6
|
| 529 |
-
sklearn-pandas==2.2.0
|
| 530 |
-
slicer==0.0.8
|
| 531 |
-
smart-open==7.6.1
|
| 532 |
-
smmap==5.0.3
|
| 533 |
-
sniffio==1.3.1
|
| 534 |
-
snowballstemmer==3.1.1
|
| 535 |
-
soundfile==0.14.0
|
| 536 |
-
soupsieve==2.8.4
|
| 537 |
-
soxr==1.1.0
|
| 538 |
-
spacy==3.8.14
|
| 539 |
-
spacy-legacy==3.0.12
|
| 540 |
-
spacy-loggers==1.0.5
|
| 541 |
-
spaghetti==1.7.6
|
| 542 |
-
spanner-graph-notebook==1.1.10
|
| 543 |
-
spglm==1.1.0
|
| 544 |
-
sphinx==8.2.3
|
| 545 |
-
sphinxcontrib-applehelp==2.0.0
|
| 546 |
-
sphinxcontrib-devhelp==2.0.0
|
| 547 |
-
sphinxcontrib-htmlhelp==2.1.0
|
| 548 |
-
sphinxcontrib-jsmath==1.0.1
|
| 549 |
-
sphinxcontrib-qthelp==2.0.0
|
| 550 |
-
sphinxcontrib-serializinghtml==2.0.0
|
| 551 |
-
spint==1.0.7
|
| 552 |
-
splot==1.1.7
|
| 553 |
-
spopt==0.7.0
|
| 554 |
-
spreg==1.9.0
|
| 555 |
-
sqlalchemy==2.0.50
|
| 556 |
-
sqlalchemy-spanner==1.19.0
|
| 557 |
-
sqlglot==25.20.2
|
| 558 |
-
sqlparse==0.5.5
|
| 559 |
-
srsly==2.5.3
|
| 560 |
-
sse-starlette==3.4.4
|
| 561 |
-
stanio==0.5.1
|
| 562 |
-
starlette==0.52.1
|
| 563 |
-
statsmodels==0.14.6
|
| 564 |
-
strictyaml==1.7.3
|
| 565 |
-
stringzilla==4.6.2
|
| 566 |
-
stumpy==1.13.0
|
| 567 |
-
sympy==1.14.0
|
| 568 |
-
tables==3.10.2
|
| 569 |
-
tabulate==0.9.0
|
| 570 |
-
tbb==2022.3.1
|
| 571 |
-
tcmlib==1.5.0
|
| 572 |
-
tenacity==9.1.4
|
| 573 |
-
tensorboard==2.20.0
|
| 574 |
-
tensorboard-data-server==0.7.2
|
| 575 |
-
tensorflow==2.20.0
|
| 576 |
-
tensorflow-datasets==4.9.10
|
| 577 |
-
tensorflow-hub==0.16.1
|
| 578 |
-
tensorflow-metadata==1.21.0
|
| 579 |
-
tensorflow-probability==0.25.0
|
| 580 |
-
tensorflow-text==2.20.1
|
| 581 |
-
tensorstore==0.1.84
|
| 582 |
-
termcolor==3.3.0
|
| 583 |
-
terminado==0.18.1
|
| 584 |
-
text-unidecode==1.3
|
| 585 |
-
textblob==0.19.0
|
| 586 |
-
textual==6.2.1
|
| 587 |
-
tf-keras==2.20.0
|
| 588 |
-
tf-slim==1.1.0
|
| 589 |
-
thinc==8.3.13
|
| 590 |
-
threadpoolctl==3.6.0
|
| 591 |
-
tifffile==2026.4.11
|
| 592 |
-
tiktoken==0.13.0
|
| 593 |
-
timm==1.0.27
|
| 594 |
-
tinycss2==1.5.1
|
| 595 |
-
tobler==0.14.0
|
| 596 |
-
tokenizers==0.22.2
|
| 597 |
-
toml==0.10.2
|
| 598 |
-
tomlkit==0.13.3
|
| 599 |
-
toolz==0.12.1
|
| 600 |
-
torch @ https://download.pytorch.org/whl/cpu/torch-2.11.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl
|
| 601 |
-
torchao==0.10.0
|
| 602 |
-
torchaudio @ https://download.pytorch.org/whl/cpu/torchaudio-2.11.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl
|
| 603 |
-
torchcodec @ https://download.pytorch.org/whl/cpu/torchcodec-0.11.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl
|
| 604 |
-
torchdata==0.11.0
|
| 605 |
-
torchsummary==1.5.1
|
| 606 |
-
torchtune==0.6.1
|
| 607 |
-
torchvision @ https://download.pytorch.org/whl/cpu/torchvision-0.26.0%2Bcpu-cp312-cp312-manylinux_2_28_x86_64.whl
|
| 608 |
-
tornado==6.5.7
|
| 609 |
-
tqdm==4.67.3
|
| 610 |
-
traitlets==5.7.1
|
| 611 |
-
traittypes==0.2.3
|
| 612 |
-
transformers==5.12.0
|
| 613 |
-
treescope==0.1.10
|
| 614 |
-
tsfresh==0.21.2
|
| 615 |
-
tweepy==4.16.0
|
| 616 |
-
typeguard==4.5.2
|
| 617 |
-
typer==0.25.1
|
| 618 |
-
types-pytz==2026.2.0.20260518
|
| 619 |
-
types-setuptools==82.0.0.20260518
|
| 620 |
-
typing-extensions==4.15.0
|
| 621 |
-
typing-inspection==0.4.2
|
| 622 |
-
tzdata==2026.2
|
| 623 |
-
tzlocal==5.3.1
|
| 624 |
-
uc-micro-py==2.0.0
|
| 625 |
-
umap-learn==0.5.12
|
| 626 |
-
umf==1.0.3
|
| 627 |
-
uri-template==1.3.0
|
| 628 |
-
uritemplate==4.2.0
|
| 629 |
-
urllib3==2.5.0
|
| 630 |
-
uuid-utils==0.16.0
|
| 631 |
-
uv==0.11.24
|
| 632 |
-
uvicorn==0.49.0
|
| 633 |
-
uvloop==0.22.1
|
| 634 |
-
vega-datasets==0.9.0
|
| 635 |
-
wandb==0.27.2
|
| 636 |
-
wasabi==1.1.3
|
| 637 |
-
watchdog==6.0.0
|
| 638 |
-
watchfiles==1.2.0
|
| 639 |
-
wcwidth==0.8.1
|
| 640 |
-
weasel==1.0.0
|
| 641 |
-
webcolors==25.10.0
|
| 642 |
-
webencodings==0.5.1
|
| 643 |
-
websocket-client==1.9.0
|
| 644 |
-
websockets==15.0.1
|
| 645 |
-
werkzeug==3.1.8
|
| 646 |
-
wheel==0.47.0
|
| 647 |
-
widgetsnbextension==3.6.10
|
| 648 |
-
wordcloud==1.9.6
|
| 649 |
-
wrapt==2.2.1
|
| 650 |
-
xarray==2025.12.0
|
| 651 |
-
xarray-einstats==0.10.0
|
| 652 |
-
xgboost==3.2.0
|
| 653 |
-
xlrd==2.0.2
|
| 654 |
-
xxhash==3.7.0
|
| 655 |
-
xyzservices==2026.3.0
|
| 656 |
-
yarl==1.24.2
|
| 657 |
-
ydf==0.15.0
|
| 658 |
-
ydf-tf==2.20.0
|
| 659 |
-
yellowbrick==1.5
|
| 660 |
-
yfinance==0.2.66
|
| 661 |
-
zipp==4.1.0
|
| 662 |
-
zstandard==0.25.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|