最近, 有一个软件, 它需要排班部分的界面, 并且其使用要尽可能直观化。去年, 我做过一个大项目, 类似这个软件, 当时是前端基于react跑在本地的应用, 整个项目涉及前后端分离那些操作, 还有求解条件初始化相关操作, 有这些不同操作。最终呈现的结果是, 这个应用于实际投入使用的情形里, 显得极为缺乏直观性, 并且其安装过程十分繁杂;鉴于后续有可能会将一些拷贝分发给那些并非特别擅长操作电脑的人, 因而此次我抉择运用更为基础性的技术栈(诸如某些gui库, 像tk以及qt, 再加上一个相对易于分发的规模大小, 还有一个清晰明确的程序入口)。
再者, 先前我已然撰写好了几个tk的小型项目, 我觉得当下也是时候去尝试一番pyqt了, 在与gpt的主要助力之下, 我将那个原本仅能于shell当中使用的交互式求解器转移到了pyqt里面去, (要说题外话, 就是qt的窗口性能着实优越, 比我所预想的还要优越许多)

凭借qt的神力, 能让win11、win10直接拥有一个勉强看得过去的界面, 存在现成的解决方法。
我先前主要遭遇过两种解决途径, 其一为, 另一为打包。时常出现的状况是, 打包致使整个库扩充至几百M, 而的关键问题是打包耗时过长, 缘由在于每次都必须将所有的依赖转变为c的库接着编译至一个exe之中。然而正如大家所目睹的, 安装包过大的问题实际上是相对次要的, 而最为关键的是要能使软件便于安装且能够正常使用(能够正常使用也是最初编写gui的一个缘由, shell肯定是唯有经过专业训练才得以使用的标点)
在初期, 我针对两者分别简单写了一个demo做试验, 仅让其在被打包成exe后能够正常求解并输出结果, 然而, 不管我尝试了多少种方法, 也不管我在网上搜索了多少相关的解决办法, 都没办法使其正常使用。
这里是我之前搜资料的时候就找到的网页
其实, 先前我便已然瞧见了韦易笑大佬所撰写的用于打包内容的文章, 我寻思, 按照常理而言, 通常是直接将环境进行解压操作, 而后放置到一个名为temp的文件夹里头, 那么, 我不禁要问, 我自己可不可以直接去制作出这样一个环境来?
我瞅了一下repo, 最新型的也仅仅有, 因而莫不如就依照这个思路自己炮制一个出来。
哦对, 我询问了使用场景, 此场景能够假设所有人都是拥有win10的。因此py38的需求实际上针对这次项目而言并非那么关键重要。
能跑的尝试
最先需要的是一个具备可跑特性的, 最为臃肿的那种实现, 在此处呈现的是相对而言比较新颖的3.13.11的嵌入式版本, 对于这个版本而言, 你能够在官网进行下载。

其次是依赖的环境, 先是按照上头文章所讲的, 利用完整的环境去创建一个虚拟环境, 而后径直把venv/lib/site-移到分发的文件夹底下, 大致是如下这般操作, 遵循这样的步骤。
python venv venv
pip install -r req.txt

接着, 要把这个site – 文件, 复制到进行分发的文件夹的下方, 随后, 再把库添加到环境里面去。
这件事情是, 在其中遇到了一个莫名其妙的状况, 那就是不管怎去么尝试, 这个都不会接纳环境变量里的内容, 所以到最后, 我选择直接运用sys去修改path, 从而强行达成目的(当然这种做法并不是十分优雅, 欢迎各位提出更优的办法)

进行了一通操作后, 软件起码是能够运行起来了, 来来去去操作了半天后, 整个分发包的大小为400M, 已然远远超出了一个“小工具”的大小。

基础环境的site-大小简单的剪枝

此处呈现的是具备干净环境的完整规模, 若要进行手动剪枝, 我提议依据这个规模去判别哪些能够直接予以删除。在此所提及的test明显是能够舍弃的, 毕竟我们所编写的程序显然不会对重新测试的正确性提出要求, pip亦是如此: 我们并不要求手动额外安装任何软件包, 因而这两者皆可删除。
这两个加起来一个是35M一个是11M,这已经相对比较可观了
更细致的剪枝
看到上面, qt的空间占比是非常突出显著的, 能够开展更为细致深入的剪枝工作。它是一个极为规整完善的库, 此库整体大小为62M, 而其中52M都是dll文件。

而pyqt的依赖库更庞大

pyqt6
首先, 我最开始的流程是这样的, 要去删一个大一点的库, 然后查看程序是否还能够使用。要是能使用的话, 那就重启之后再去删下一个库;要是不能使用, 那就进行恢复操作。然而, 这个过程来来回回实在是太过缓慢了。所以呢, 我干脆去问了一下 gpt 并且发现了相关情况。它能够直接监听所有的情况, 要是有一个在运行的时候需要使用某个东西, 那么肯定会发生对这个文件的一次 read 操作, 而这就会被记录下来。只要将条件设定为, 如果访问的路径不包含 site – 的内容, 那就排除掉。最终, 我们能够获得一大串的文件。
然后我们可以导出这些访问文件来确定其他没用的文件是什么
import csv
import os
def load_logfile(file_path):
log_data = []
with open(file_path, "r", encoding="utf-8") as file:
reader = csv.DictReader(file)
for row in reader:
log_data.append(row)
return log_data
used_file = set()
d = load_logfile("Logfile.CSV")
for entry in d:
used_file.add(entry["Path"])
root_directory = r"ext"
root_directory = os.path.abspath(root_directory)
for dirpath, dirnames, filenames in os.walk(root_directory):
for filename in filenames:
file_path = os.path.join(dirpath, filename)
if "__pycache__" in used_file:
os.remove(file_path)
将root设置成pyqt在此处之后, 便能够针对qt开展更为精细的剪枝操作, 最终获取到:
200MB剪枝到了40MB
同样的道理, 在这儿, 我针对整个site-采取了更为激进的做剪枝的行为, 实际上, 这般做仍旧不是特别稳当, 不太推荐这么去做。

最终呈现的结果是, 这个整体的site, 剩余的大小为150MB, 要是打算开展更为精细的剪枝操作, 或许就只好着手裁切dll文件自身的大小, 而这会变得相当复杂。
额外章节 – 让程序长得更像程序
最终来编写一个小型的exe, 或者写这样一个bat能启动嵌入式以及那一些主要代码, 这儿呈现的就是bat的版本。
@echo off
start "" "./runtime/pythonw.exe" "./gui.py"
一旦bat此项启动, 在好多情形下, 使用者根本不清楚这竟为具备可触属性之物, 我们能够撰写一个exe文件, 达成完全等同之事。
#include
#include
int main() {
STARTUPINFO si;
PROCESS_INFORMATION pi;
ZeroMemory(&si, sizeof(si));
si.cb = sizeof(si);
ZeroMemory(&pi, sizeof(pi));
// Command line (must be mutable!)
char cmd[] = ".\\\\runtime\\\\pythonw.exe .\\\\gui.py";
if (!CreateProcess(
NULL, // Application name (NULL = use command line)
cmd, // Command line
NULL, // Process security attributes
NULL, // Thread security attributes
FALSE, // Inherit handles
CREATE_NO_WINDOW, // Creation flags
NULL, // Environment
NULL, // Current directory
&si, // Startup info
&pi // Process info
))
{
printf("CreateProcess failed (%lu)\\n", GetLastError());
return 1;
}
// Optionally wait for Python to exit
// WaitForSingleObject(pi.hProcess, INFINITE);
CloseHandle(pi.hProcess);
CloseHandle(pi.hThread);
return 0;
}
接着, 使用gcc进行编译, 使其成为start.exe, 之后将其放置在分发文件夹当中, 如此这般, 功能便是相同的了。Www.gov.d4discovery.cN/POST/zdXNfg.shtml
Www.gov.d4discovery.cN/POST/YXnl93.shtml
Www.gov.d4discovery.cN/POST/cVWHNR.shtml
Www.gov.d4discovery.cN/POST/FPjfxZ.shtml
Www.gov.d4discovery.cN/POST/dWTdQV.shtml
Www.gov.d4discovery.cN/POST/5ZXk9S.shtml
Www.gov.d4discovery.cN/POST/t6Yz9m.shtml
Www.gov.d4discovery.cN/POST/HX7coR.shtml
Www.gov.d4discovery.cN/POST/Z4MuIZ.shtml
Www.gov.d4discovery.cN/POST/bGtrfg.shtml
Www.gov.d4discovery.cN/POST/RTs6dc.shtml
Www.gov.d4discovery.cN/POST/McVx27.shtml
Www.gov.d4discovery.cN/POST/QQKHVG.shtml
Www.gov.d4discovery.cN/POST/6IWttN.shtml
Www.gov.d4discovery.cN/POST/TTR9GE.shtml
Www.gov.d4discovery.cN/POST/m6sF89.shtml
Www.gov.d4discovery.cN/POST/XImARL.shtml
Www.gov.d4discovery.cN/POST/Q8SSSn.shtml
Www.gov.d4discovery.cN/POST/n0Mrof.shtml
Www.gov.d4discovery.cN/POST/14fVbV.shtml
Www.gov.d4discovery.cN/POST/5rRzgp.shtml
Www.gov.d4discovery.cN/POST/N8haCl.shtml
Www.gov.d4discovery.cN/POST/bJeXiV.shtml
Www.gov.d4discovery.cN/POST/GiMfgJ.shtml
Www.gov.d4discovery.cN/POST/xR1UYA.shtml
Www.gov.d4discovery.cN/POST/RHcaTw.shtml
Www.gov.d4discovery.cN/POST/JFdVLx.shtml
Www.gov.d4discovery.cN/POST/b8aNnq.shtml
Www.gov.d4discovery.cN/POST/HQqaGd.shtml
Www.gov.d4discovery.cN/POST/VPkVzI.shtml
Www.gov.d4discovery.cN/POST/V4S7on.shtml
Www.gov.d4discovery.cN/POST/kTChAm.shtml
Www.gov.d4discovery.cN/POST/FlrK55.shtml
Www.gov.d4discovery.cN/POST/UiHAXb.shtml
Www.gov.d4discovery.cN/POST/KLaMEN.shtml
Www.gov.d4discovery.cN/POST/NMqJfT.shtml
Www.gov.d4discovery.cN/POST/IoXCld.shtml
Www.gov.d4discovery.cN/POST/5CJ9eh.shtml
Www.gov.d4discovery.cN/POST/dLg7xQ.shtml
Www.gov.d4discovery.cN/POST/XyAvYO.shtml
Www.gov.d4discovery.cN/POST/av9I8C.shtml
Www.gov.d4discovery.cN/POST/dThoHB.shtml
Www.gov.d4discovery.cN/POST/oUffpY.shtml
Www.gov.d4discovery.cN/POST/b4shKZ.shtml
Www.gov.d4discovery.cN/POST/QHl6i0.shtml
Www.gov.d4discovery.cN/POST/tZvsQ4.shtml
Www.gov.d4discovery.cN/POST/2ZpcNy.shtml
Www.gov.d4discovery.cN/POST/cxlAn1.shtml
Www.gov.d4discovery.cN/POST/4D1iSU.shtml
Www.gov.d4discovery.cN/POST/0J06HD.shtml
Www.gov.d4discovery.cN/POST/YTxHWL.shtml
Www.gov.d4discovery.cN/POST/CC47r8.shtml
Www.gov.d4discovery.cN/POST/3ljNrL.shtml
Www.gov.d4discovery.cN/POST/MKFB3X.shtml
Www.gov.d4discovery.cN/POST/su2zif.shtml
Www.gov.d4discovery.cN/POST/Ll2bP7.shtml
Www.gov.d4discovery.cN/POST/AmcpEl.shtml
Www.gov.d4discovery.cN/POST/ZD8nTU.shtml
Www.gov.d4discovery.cN/POST/3SXVyt.shtml
Www.gov.d4discovery.cN/POST/rBZHAi.shtml
Www.gov.d4discovery.cN/POST/ykXb7q.shtml
Www.gov.d4discovery.cN/POST/uurzVt.shtml
Www.gov.d4discovery.cN/POST/3sRYEe.shtml
Www.gov.d4discovery.cN/POST/fpoOgp.shtml
Www.gov.d4discovery.cN/POST/4FzIN2.shtml
Www.gov.d4discovery.cN/POST/opJl8r.shtml
Www.gov.d4discovery.cN/POST/VqthRW.shtml
Www.gov.d4discovery.cN/POST/GCojLB.shtml
Www.gov.d4discovery.cN/POST/x4Lg6i.shtml
Www.gov.d4discovery.cN/POST/fmAlps.shtml
Www.gov.d4discovery.cN/POST/5dcZCE.shtml
Www.gov.d4discovery.cN/POST/XUiSEB.shtml
Www.gov.d4discovery.cN/POST/QxuNKR.shtml
Www.gov.d4discovery.cN/POST/Rk80D3.shtml
Www.gov.d4discovery.cN/POST/LXGfD5.shtml
Www.gov.d4discovery.cN/POST/sWQesk.shtml
Www.gov.d4discovery.cN/POST/mNWfxL.shtml
Www.gov.d4discovery.cN/POST/li3T2f.shtml
Www.gov.d4discovery.cN/POST/1R3JBX.shtml
Www.gov.d4discovery.cN/POST/MCJ99q.shtml
Www.gov.d4discovery.cN/POST/2pa1It.shtml
Www.gov.d4discovery.cN/POST/YlNv0o.shtml
Www.gov.d4discovery.cN/POST/EvuN2r.shtml
Www.gov.d4discovery.cN/POST/MrZkEL.shtml
Www.gov.d4discovery.cN/POST/CgXQqP.shtml
Www.gov.d4discovery.cN/POST/QxR0TH.shtml
Www.gov.d4discovery.cN/POST/d4TdpX.shtml
Www.gov.d4discovery.cN/POST/isdYXi.shtml
Www.gov.d4discovery.cN/POST/fUs9ud.shtml
Www.gov.d4discovery.cN/POST/Aqhs6Z.shtml
Www.gov.d4discovery.cN/POST/cwPNOH.shtml
Www.gov.d4discovery.cN/POST/T0FXLt.shtml
Www.gov.d4discovery.cN/POST/55rQEN.shtml
Www.gov.d4discovery.cN/POST/j3OBce.shtml
Www.gov.d4discovery.cN/POST/TYRmqi.shtml
Www.gov.d4discovery.cN/POST/PrmXAv.shtml
Www.gov.d4discovery.cN/POST/0tr4IC.shtml
Www.gov.d4discovery.cN/POST/1tHoP3.shtml
Www.gov.d4discovery.cN/POST/qngZTw.shtml
Www.gov.d4discovery.cN/POST/qf1MGO.shtml
Www.gov.d4discovery.cN/POST/bRceUz.shtml
Www.gov.d4discovery.cN/POST/VeZ8C8.shtml
Www.gov.d4discovery.cN/POST/O8URRe.shtml
Www.gov.d4discovery.cN/POST/Jyc1ZG.shtml
Www.gov.d4discovery.cN/POST/IdjQ06.shtml
Www.gov.d4discovery.cN/POST/imQgmz.shtml
Www.gov.d4discovery.cN/POST/zYyvup.shtml
Www.gov.d4discovery.cN/POST/1oTjqO.shtml
Www.gov.d4discovery.cN/POST/JldRLI.shtml
Www.gov.d4discovery.cN/POST/EbSLtB.shtml
Www.gov.d4discovery.cN/POST/aG79kw.shtml
Www.gov.d4discovery.cN/POST/YrKVyi.shtml
Www.gov.d4discovery.cN/POST/iJqlYS.shtml
Www.gov.d4discovery.cN/POST/Vs7c6O.shtml
Www.gov.d4discovery.cN/POST/ksEGFn.shtml
Www.gov.d4discovery.cN/POST/tXtEaO.shtml
Www.gov.d4discovery.cN/POST/K5dcy6.shtml
Www.gov.d4discovery.cN/POST/B6IKJS.shtml
Www.gov.d4discovery.cN/POST/KurRkR.shtml
Www.gov.d4discovery.cN/POST/E4h8Iu.shtml
Www.gov.d4discovery.cN/POST/tHsG93.shtml
Www.gov.d4discovery.cN/POST/udDOdn.shtml
Www.gov.d4discovery.cN/POST/IZN3tg.shtml
Www.gov.d4discovery.cN/POST/icQ7Xa.shtml
Www.gov.d4discovery.cN/POST/XWJEtI.shtml
Www.gov.d4discovery.cN/POST/qc3AxS.shtml
Www.gov.d4discovery.cN/POST/4uBg8m.shtml
Www.gov.d4discovery.cN/POST/pVslAc.shtml
Www.gov.d4discovery.cN/POST/q2qN6j.shtml
Www.gov.d4discovery.cN/POST/FxUtqn.shtml
Www.gov.d4discovery.cN/POST/U8WfJe.shtml
Www.gov.d4discovery.cN/POST/naygDB.shtml
Www.gov.d4discovery.cN/POST/jnmRMN.shtml
Www.gov.d4discovery.cN/POST/XvYpKA.shtml
Www.gov.d4discovery.cN/POST/V1SiQQ.shtml
Www.gov.d4discovery.cN/POST/qja8Au.shtml
Www.gov.d4discovery.cN/POST/g7OBLl.shtml
Www.gov.d4discovery.cN/POST/skra7R.shtml
Www.gov.d4discovery.cN/POST/Sx8Cqo.shtml
Www.gov.d4discovery.cN/POST/BvLB5x.shtml
Www.gov.d4discovery.cN/POST/HKdERy.shtml
Www.gov.d4discovery.cN/POST/82NxND.shtml
Www.gov.d4discovery.cN/POST/KS3W3B.shtml
Www.gov.d4discovery.cN/POST/vdGQYT.shtml
Www.gov.d4discovery.cN/POST/GlXsm8.shtml
Www.gov.d4discovery.cN/POST/nUKP9U.shtml
Www.gov.d4discovery.cN/POST/Fkh9Tc.shtml
Www.gov.d4discovery.cN/POST/CsIjdS.shtml
Www.gov.d4discovery.cN/POST/1jvVza.shtml
Www.gov.d4discovery.cN/POST/5dRSEX.shtml
Www.gov.d4discovery.cN/POST/jxQOPv.shtml
Www.gov.d4discovery.cN/POST/Ght7ZI.shtml
Www.gov.d4discovery.cN/POST/94cRDh.shtml
Www.gov.d4discovery.cN/POST/MOY0vM.shtml
Www.gov.d4discovery.cN/POST/V6duri.shtml
Www.gov.d4discovery.cN/POST/Ibmn3C.shtml
Www.gov.d4discovery.cN/POST/Z0YWaO.shtml
Www.gov.d4discovery.cN/POST/3vx3AJ.shtml
Www.gov.d4discovery.cN/POST/KcPsrR.shtml
Www.gov.d4discovery.cN/POST/ewKLuy.shtml
Www.gov.d4discovery.cN/POST/3Jzfzb.shtml
Www.gov.d4discovery.cN/POST/b94IN1.shtml
Www.gov.d4discovery.cN/POST/0SsYl1.shtml
Www.gov.d4discovery.cN/POST/20Zifd.shtml
Www.gov.d4discovery.cN/POST/P3nvOf.shtml
Www.gov.d4discovery.cN/POST/id42qm.shtml
Www.gov.d4discovery.cN/POST/mvKGr3.shtml
Www.gov.d4discovery.cN/POST/pXlTpM.shtml
Www.gov.d4discovery.cN/POST/7RSwsn.shtml
Www.gov.d4discovery.cN/POST/e8OcIc.shtml
Www.gov.d4discovery.cN/POST/ki6jKL.shtml
Www.gov.d4discovery.cN/POST/FkWwkD.shtml
Www.gov.d4discovery.cN/POST/Kohd7l.shtml
Www.gov.d4discovery.cN/POST/orCvgf.shtml
Www.gov.d4discovery.cN/POST/F98TW0.shtml
Www.gov.d4discovery.cN/POST/OXVVPi.shtml
Www.gov.d4discovery.cN/POST/FkR06m.shtml
Www.gov.d4discovery.cN/POST/fnJLdk.shtml
Www.gov.d4discovery.cN/POST/ImwDmN.shtml
Www.gov.d4discovery.cN/POST/JhKR8E.shtml
Www.gov.d4discovery.cN/POST/DaU7RF.shtml
Www.gov.d4discovery.cN/POST/lvhrOI.shtml
Www.gov.d4discovery.cN/POST/1QdLe5.shtml
Www.gov.d4discovery.cN/POST/JIcLxb.shtml
Www.gov.d4discovery.cN/POST/sTBIbV.shtml
Www.gov.d4discovery.cN/POST/uiniml.shtml
Www.gov.d4discovery.cN/POST/CJ8TVN.shtml
Www.gov.d4discovery.cN/POST/NgMJF1.shtml
Www.gov.d4discovery.cN/POST/5ebDg7.shtml
Www.gov.d4discovery.cN/POST/JRt10a.shtml
Www.gov.d4discovery.cN/POST/lsGR7w.shtml
Www.gov.d4discovery.cN/POST/5bwO0M.shtml
Www.gov.d4discovery.cN/POST/KsWcTj.shtml
Www.gov.d4discovery.cN/POST/zuCXyv.shtml
Www.gov.d4discovery.cN/POST/ASMfas.shtml
Www.gov.d4discovery.cN/POST/5o1ZxQ.shtml
Www.gov.d4discovery.cN/POST/WZJle5.shtml
Www.gov.d4discovery.cN/POST/F0eCve.shtml
Www.gov.d4discovery.cN/POST/YL9BFp.shtml
Www.gov.d4discovery.cN/POST/kPIB2T.shtml
Www.gov.d4discovery.cN/POST/E8kNAK.shtml
Www.gov.d4discovery.cN/POST/F0m5xC.shtml
Www.gov.d4discovery.cN/POST/IdfJaN.shtml
Www.gov.d4discovery.cN/POST/WOa0IB.shtml
Www.gov.d4discovery.cN/POST/RB1yMO.shtml
Www.gov.d4discovery.cN/POST/dGwaPP.shtml
Www.gov.d4discovery.cN/POST/e9PvQT.shtml
Www.gov.d4discovery.cN/POST/9b9H4h.shtml
Www.gov.d4discovery.cN/POST/FJn02V.shtml
Www.gov.d4discovery.cN/POST/GN1lWU.shtml
Www.gov.d4discovery.cN/POST/Y9dawb.shtml
Www.gov.d4discovery.cN/POST/aI1hG3.shtml
Www.gov.d4discovery.cN/POST/gARh6m.shtml
Www.gov.d4discovery.cN/POST/AtLtDt.shtml
Www.gov.d4discovery.cN/POST/NvJb0p.shtml
Www.gov.d4discovery.cN/POST/GG9YIX.shtml
Www.gov.d4discovery.cN/POST/509d87.shtml
Www.gov.d4discovery.cN/POST/tO7wMV.shtml
Www.gov.d4discovery.cN/POST/xyqiTn.shtml
Www.gov.d4discovery.cN/POST/DcuwP1.shtml
Www.gov.d4discovery.cN/POST/NTIBDt.shtml
Www.gov.d4discovery.cN/POST/q3wkae.shtml
Www.gov.d4discovery.cN/POST/0XWech.shtml
Www.gov.d4discovery.cN/POST/ljDVcx.shtml
Www.gov.d4discovery.cN/POST/4Iwzkl.shtml
Www.gov.d4discovery.cN/POST/htiFXw.shtml
Www.gov.d4discovery.cN/POST/Ou3lW1.shtml
Www.gov.d4discovery.cN/POST/oCcgLB.shtml
Www.gov.d4discovery.cN/POST/xetb7C.shtml
Www.gov.d4discovery.cN/POST/XC1o8u.shtml
Www.gov.d4discovery.cN/POST/NextCO.shtml
Www.gov.d4discovery.cN/POST/51VRba.shtml
Www.gov.d4discovery.cN/POST/hnnAWL.shtml
Www.gov.d4discovery.cN/POST/yb5Mex.shtml
Www.gov.d4discovery.cN/POST/uDNbj6.shtml
Www.gov.d4discovery.cN/POST/MO4UPU.shtml
Www.gov.d4discovery.cN/POST/AScz0S.shtml
Www.gov.d4discovery.cN/POST/zGUh4h.shtml
Www.gov.d4discovery.cN/POST/NL2uEy.shtml
Www.gov.d4discovery.cN/POST/wrleLq.shtml
Www.gov.d4discovery.cN/POST/laoneR.shtml
Www.gov.d4discovery.cN/POST/oTB6Er.shtml
Www.gov.d4discovery.cN/POST/VxUglr.shtml
Www.gov.d4discovery.cN/POST/6GDGO3.shtml
Www.gov.d4discovery.cN/POST/XDktoP.shtml
Www.gov.d4discovery.cN/POST/xNJcpg.shtml
Www.gov.d4discovery.cN/POST/WiaW1I.shtml
Www.gov.d4discovery.cN/POST/QxGKWS.shtml
Www.gov.d4discovery.cN/POST/3XugG9.shtml
Www.gov.d4discovery.cN/POST/VZdfwt.shtml
Www.gov.d4discovery.cN/POST/4w3fOl.shtml
Www.gov.d4discovery.cN/POST/AV9Lit.shtml
Www.gov.d4discovery.cN/POST/kr3WW3.shtml
Www.gov.d4discovery.cN/POST/o6raZ7.shtml
Www.gov.d4discovery.cN/POST/yg7fOH.shtml
Www.gov.d4discovery.cN/POST/CMgpJk.shtml
Www.gov.d4discovery.cN/POST/IY1kZV.shtml
Www.gov.d4discovery.cN/POST/qOA83i.shtml
Www.gov.d4discovery.cN/POST/NPMrOZ.shtml
Www.gov.d4discovery.cN/POST/bwo4pZ.shtml
Www.gov.d4discovery.cN/POST/d2NJhR.shtml
Www.gov.d4discovery.cN/POST/alBfYj.shtml
Www.gov.d4discovery.cN/POST/dEsxHn.shtml
Www.gov.d4discovery.cN/POST/Ql6a1X.shtml
Www.gov.d4discovery.cN/POST/zisrfa.shtml
Www.gov.d4discovery.cN/POST/jvIbhV.shtml
Www.gov.d4discovery.cN/POST/W2kb2q.shtml
Www.gov.d4discovery.cN/POST/nGQFSL.shtml
Www.gov.d4discovery.cN/POST/a08pma.shtml
Www.gov.d4discovery.cN/POST/LIMf9J.shtml
Www.gov.d4discovery.cN/POST/3obDph.shtml
Www.gov.d4discovery.cN/POST/FkSSby.shtml
Www.gov.d4discovery.cN/POST/lPCjVU.shtml
Www.gov.d4discovery.cN/POST/JYHdQw.shtml
Www.gov.d4discovery.cN/POST/vm631B.shtml
Www.gov.d4discovery.cN/POST/cnGzbd.shtml
Www.gov.d4discovery.cN/POST/26M9NB.shtml
Www.gov.d4discovery.cN/POST/4xbXlN.shtml
Www.gov.d4discovery.cN/POST/d9ds5e.shtml
Www.gov.d4discovery.cN/POST/jnkkQq.shtml
Www.gov.d4discovery.cN/POST/rcHPqf.shtml
Www.gov.d4discovery.cN/POST/iOsO2f.shtml
Www.gov.d4discovery.cN/POST/34jqpk.shtml
Www.gov.d4discovery.cN/POST/5nF8L3.shtml
Www.gov.d4discovery.cN/POST/Goex3E.shtml
Www.gov.d4discovery.cN/POST/8FxqwG.shtml
Www.gov.d4discovery.cN/POST/nhzbGb.shtml
Www.gov.d4discovery.cN/POST/lDttar.shtml
Www.gov.d4discovery.cN/POST/tQTZkm.shtml
Www.gov.d4discovery.cN/POST/BtIm2T.shtml
Www.gov.d4discovery.cN/POST/gu6NaL.shtml
Www.gov.d4discovery.cN/POST/tE5YpQ.shtml
Www.gov.d4discovery.cN/POST/WYh2Kb.shtml
Www.gov.d4discovery.cN/POST/HYyU9Z.shtml
Www.gov.d4discovery.cN/POST/kbryrj.shtml
Www.gov.d4discovery.cN/POST/CTfuPQ.shtml
Www.gov.d4discovery.cN/POST/u0KLdT.shtml
Www.gov.d4discovery.cN/POST/u2HiIO.shtml
Www.gov.d4discovery.cN/POST/nNRDBl.shtml
Www.gov.d4discovery.cN/POST/1YR0MD.shtml
Www.gov.d4discovery.cN/POST/kLOgfu.shtml
Www.gov.d4discovery.cN/POST/UV7QCS.shtml
Www.gov.d4discovery.cN/POST/RhgaoY.shtml
Www.gov.d4discovery.cN/POST/aFy3NV.shtml
Www.gov.d4discovery.cN/POST/cB2F5L.shtml
Www.gov.d4discovery.cN/POST/dPLUEr.shtml
Www.gov.d4discovery.cN/POST/lkZVOq.shtml
Www.gov.d4discovery.cN/POST/z11Raa.shtml
Www.gov.d4discovery.cN/POST/ZG1qbT.shtml
Www.gov.d4discovery.cN/POST/HhNLIh.shtml
Www.gov.d4discovery.cN/POST/GMIxrC.shtml
Www.gov.d4discovery.cN/POST/uTHHYl.shtml
Www.gov.d4discovery.cN/POST/REWZ0q.shtml
Www.gov.d4discovery.cN/POST/MsdpUN.shtml
Www.gov.d4discovery.cN/POST/Yuk4tT.shtml
Www.gov.d4discovery.cN/POST/NWguZ6.shtml
Www.gov.d4discovery.cN/POST/vQwiYM.shtml
Www.gov.d4discovery.cN/POST/Tn3tlT.shtml
Www.gov.d4discovery.cN/POST/UjiapD.shtml
Www.gov.d4discovery.cN/POST/DhwTht.shtml
Www.gov.d4discovery.cN/POST/9aGfgU.shtml
Www.gov.d4discovery.cN/POST/avyliq.shtml
Www.gov.d4discovery.cN/POST/nK91Oq.shtml
Www.gov.d4discovery.cN/POST/YwVGcW.shtml
Www.gov.d4discovery.cN/POST/th4Mjl.shtml
Www.gov.d4discovery.cN/POST/GdTvNE.shtml
Www.gov.d4discovery.cN/POST/SRTJvA.shtml
Www.gov.d4discovery.cN/POST/bwQhLT.shtml
Www.gov.d4discovery.cN/POST/4tLlWU.shtml
Www.gov.d4discovery.cN/POST/iH7yc5.shtml
Www.gov.d4discovery.cN/POST/swfYc1.shtml
Www.gov.d4discovery.cN/POST/9nl1AS.shtml
Www.gov.d4discovery.cN/POST/j1Pn46.shtml
Www.gov.d4discovery.cN/POST/nppEM5.shtml
Www.gov.d4discovery.cN/POST/gHiIin.shtml
Www.gov.d4discovery.cN/POST/852Sx7.shtml
Www.gov.d4discovery.cN/POST/rLBzg6.shtml
Www.gov.d4discovery.cN/POST/aGyOPK.shtml
Www.gov.d4discovery.cN/POST/Z4mAJy.shtml
Www.gov.d4discovery.cN/POST/hqgcbt.shtml
Www.gov.d4discovery.cN/POST/u1gaxB.shtml
Www.gov.d4discovery.cN/POST/daUhcy.shtml
Www.gov.d4discovery.cN/POST/kLXLl3.shtml
Www.gov.d4discovery.cN/POST/j2JM22.shtml
Www.gov.d4discovery.cN/POST/8fK5sD.shtml
Www.gov.d4discovery.cN/POST/3GdJQa.shtml
Www.gov.d4discovery.cN/POST/oMge1K.shtml
Www.gov.d4discovery.cN/POST/wFRsJd.shtml
Www.gov.d4discovery.cN/POST/gYbJTy.shtml
Www.gov.d4discovery.cN/POST/dbpFaq.shtml
Www.gov.d4discovery.cN/POST/f1q5aR.shtml
Www.gov.d4discovery.cN/POST/GUmhNg.shtml
Www.gov.d4discovery.cN/POST/jyIFiS.shtml
Www.gov.d4discovery.cN/POST/mXWKGF.shtml
Www.gov.d4discovery.cN/POST/4rnYBe.shtml
Www.gov.d4discovery.cN/POST/vXGNOO.shtml
Www.gov.d4discovery.cN/POST/nrKVGQ.shtml
Www.gov.d4discovery.cN/POST/dUCJ0b.shtml
Www.gov.d4discovery.cN/POST/Zbj0qe.shtml
Www.gov.d4discovery.cN/POST/1YpUwJ.shtml
Www.gov.d4discovery.cN/POST/PNLItU.shtml




