基于网格搜索与分段回归的时间序列变化点检测方法
传统统计方法在时间序列分析中既简洁又有力,但面对大规模时间序列集合时,扩展性往往不尽如人意。现实中的趋势变化往往微弱、带有噪声、数量也不止一个,靠肉眼判断既不可靠也不现实。一旦需要处理数十乃至数百条时间序列,人工识别就更不可行了。

Figure 1: Identify the optimal number of knots and their positions using grid search
解决思路是用程序来定位变化点。估计趋势变化点的手段有很多,本文聚焦于网格搜索策略与分段回归的结合,自动确定变化点的数量和位置。
完整代码有 R 和 Python 两个版本,Streamlit 应用也可在线体验。
使用网格搜索寻找变化点
网格搜索是一种系统化的优化技术,原理并不复杂:在预定义的离散候选参数集上逐一评估模型,按照指定准则挑出表现最好的那组配置。
在分段回归中,待搜索的参数就是节点(knot)的数量和位置,每个节点对应一个候选变化点。整体流程如下:
- 定义参数
- 定义代价函数
- 对每组网格组合拟合分段回归
- 对结果评分
- 选择达到最优结果的网格组合
为减少过拟合、增强稳定性,还需要设置节点之间的最小距离约束,避免变化点在时间轴上挤得太近。
定义代价函数
比较不同变化点数量的模型之前,需要有一套统一的评价标准。代价函数(也叫损失函数或目标函数)就是干这个的:它接收一组模型参数,输出一个标量,反映模型误差或拟合质量。机器学习和统计建模中的训练与模型选择,本质上都是在寻找令代价函数取极值的参数组合。
回归问题中,代价函数度量的是预测值与观测值之间的偏差。常见选择包括:均方误差(MSE)度量平方残差的均值;平均绝对误差(MAE)度量绝对残差的均值;负对数似然(NLL)度量观测数据在给定模型下出现的概率。
这些指标只关注拟合优度,不考虑模型复杂度。变化点越多的分段回归模型几乎总能把误差压得更低,哪怕它只是在拟合噪声。
应对方法是引入惩罚代价函数,在拟合质量和模型复杂度之间取得平衡。AIC(赤池信息准则)和 BIC(贝叶斯信息准则)是两个典型代表,均以负对数似然为基础,再加上一个与估计参数数量相关的惩罚项。
AIC:
AIC=-2log(L) +2k
BIC:
BIC=-2log(L)+klog(n)*
其中:
- L = 最大化似然值
- k = 估计参数的数量
- n = 观测值的数量

Figure 2: Example for finding the optimal number of knots using the BIC score
惩罚项的存在抑制了不必要的复杂度,有助于在网格搜索中筛选出真正有意义的变化点数目。BIC 的惩罚力度比 AIC 更重,选出的变化点数量往往更少——也就更保守。
网格搜索工作流程
基础概念铺设完毕,下面定义网格搜索的具体流程。一个典型的变化点检测网格搜索包含四个环节:
- 准备数据并定义搜索空间
- 为给定的节点配置拟合分段回归模型
- 使用惩罚代价函数评估每个配置
- 选择最优的节点数量及其位置
函数输入是时间序列与搜索空间参数,输出是最优节点集合。

Figure 3: A general grid search function workflow
网格搜索胜在直白、易于实现,但计算开销会随候选变化点数量的增长而快速膨胀。引入搜索空间约束可以缓解这个问题:减少待评估的配置数,同时也起到防止过拟合的作用。
具体的约束手段有三条:一是排除序列头尾一定比例的观测值,保证每个分段都有足够数据支撑趋势估计;二是强制每个分段包含不少于某个阈值的观测值,稳定斜率估计,避免模型在短而嘈杂的片段上过拟合;三是限定节点数量的上限,控制搜索范围。
设置这些参数时需要综合考虑观测值数量、序列频率以及业务逻辑。
注意,这里用不含节点的简单趋势模型作为网格搜索结果的基准。
网格搜索实现
回到前一篇教程的示例——加利福尼亚州天然气消费者数量,看一下网格搜索函数在 R 中的实现。Python 版本可在对应 notebook 中获取。
加载所需的库:
library(dplyr)
library(tsibble)
library(plotly)
引入一组辅助函数,其中包括网格搜索函数 piecewise_regression:
fun_path <- "https://raw.githubusercontent.com/RamiKrispin/the-forecaster/refs/heads/main/functions.R"
source(fun_path)
加载序列并整理格式:
path <- "https://raw.githubusercontent.com/RamiKrispin/the-forecaster/refs/heads/main/data/ca_natural_gas_consumers.csv"
ts <- read.csv(path) |>
arrange(index) |>
filter(index > 1986) |>
as_tsibble(index = "index")
ts |> head()
序列为年度数据,index 列是时间戳,y 列是数值:
# A tsibble: 6 x 2 [1Y]
index y
<int> <int>
1 1987 7904858
2 1988 8113034
3 1989 8313776
4 1990 8497848
5 1991 8634774
6 1992 8680613
绘制序列:
p <- plot_ly(data = ts) |>
add_lines(x = ~ index,
y = ~ y, name = "Actual") |>
layout(
title = "Number of Natural Gas Consumers in California",
yaxis = list(title = "Number of Consumers"),
xaxis = list(title = "Source: US energy information administration"),
legend = list(x = legend_x, y = legend_y)
)
p

Figure 4: Yearly number of natural gas consumers in California. The series is trending up without seasonality patterns
用 piecewise_regression 函数识别最优节点数量及位置:
grid <- piecewise_regression(
data = ts,
time_col = "index",
value_col = "y",
max_knots = 4,
min_segment_length = 8,
edge_buffer = 0.05,
grid_resolution = 20
)
搜索空间由以下参数定义:
max_knots- 最大节点数量min_segment_length- 两个节点之间的最小观测值数量edge_buffer- 从序列头尾排除的观测值比例grid_resolution- 每个节点数量对应的最大搜索组合数
这里把 max_knots 设为 4,搜索空间中节点数量的范围就是 0–4。函数会根据约束条件生成候选配置,并裁剪掉不满足条件的组合。
运行结果如下:
Testing 0 knot(s)...
Best BIC: 919.28 | RSS: 1.006639e+12 | Tested 1 configurations
Testing 1 knot(s)...
Best BIC: 858.05 | RSS: 182625404855 | Tested 18 configurations
Testing 2 knot(s)...
Best BIC: 844.26 | RSS: 115452860424 | Tested 25 configurations
Testing 3 knot(s)...
Best BIC: 852.94 | RSS: 131838198802 | Tested 5 configurations
Testing 4 knot(s)...
Optimal model: 2 knot(s) with BIC = 844.26
Warning message:
In generate_candidates(k, min_idx, max_idx, min_segment_length) :
Cannot fit 4 knots with min segment length 8
输出按节点数量分组列出了测试过的模型数,最终确定最优节点数为 2。函数还抛出了一条警告:受搜索空间约束限制,观测值不足以容纳 4 个节点,因此跳过了对应的拟合。这一行为符合预期——说明约束条件正在起作用。
下面的动画展示了搜索空间中所有配置的拟合过程:

Figure 5: Animation of the grid search process
函数输出中包含搜索过程和最优结果的详细信息。最优节点数:
grid$optimal_knots
[1] 2
节点位置:
grid$knot_dates
[1] 1999 2007
最后,用
plot_knots
函数加上注释,把最优节点叠加到原始序列上进行可视化:

Figure 6: The optimal number of knots and their positions based on the grid search results
局限性
网格搜索配合分段回归,对于识别趋势变化点的数量和位置是一种切实可行的方案。它最适合的场景是相对"干净"的时间序列,主导信号就是底层趋势——本文的示例正是如此。
现实中的时间序列往往不这么纯粹。季节性、突发水平偏移、异常值都可能干扰甚至扭曲趋势成分。在这些效应存在的情况下,网格搜索可能定位到虚假的变化点,也可能遗漏真正有意义的趋势断裂。
一种可行的预处理策略是先做分解(如 STL),将趋势成分分离出来,再在提取到的趋势上执行网格搜索,而非直接在原始序列上操作。
对于结构复杂或噪声较大的序列,能够联合建模趋势与季节性的变化点检测方法可能更为适用。
总结
本文展示了如何将变化点检测转化为一个优化问题:通过网格搜索遍历候选节点配置,用惩罚似然准则(BIC)选出最优模型,配合分段回归完成趋势变化点的自动检测。
https://gitee.com/gudulubei/eyuo/issues/IFZBEG
https://gitee.com/gudulubei/eyuo/issues/IFZBEF
https://gitee.com/gudulubei/eyuo/issues/IFZBEE
https://gitee.com/gudulubei/eyuo/issues/IFZBED
https://gitee.com/gudulubei/eyuo/issues/IFZBEC
https://gitee.com/gudulubei/eyuo/issues/IFZBEB
https://gitee.com/gudulubei/eyuo/issues/IFZBEA
https://gitee.com/gudulubei/eyuo/issues/IFZBE8
https://gitee.com/gudulubei/eyuo/issues/IFZBE7
https://gitee.com/gudulubei/eyuo/issues/IFZBE6
https://gitee.com/gudulubei/eyuo/issues/IFZBE5
https://gitee.com/gudulubei/eyuo/issues/IFZBE4
https://gitee.com/gudulubei/eyuo/issues/IFZBE3
https://gitee.com/gudulubei/eyuo/issues/IFZBE2
https://gitee.com/gudulubei/eyuo/issues/IFZBE1
https://gitee.com/gudulubei/eyuo/issues/IFZBE0
https://gitee.com/gudulubei/eyuo/issues/IFZBDZ
https://gitee.com/gudulubei/eyuo/issues/IFZBDY
https://gitee.com/gudulubei/eyuo/issues/IFZBDX
https://gitee.com/gudulubei/eyuo/issues/IFZBDW
https://gitee.com/gudulubei/eyuo/issues/IFZBDV
https://gitee.com/gudulubei/eyuo/issues/IFZBDU
https://gitee.com/gudulubei/eyuo/issues/IFZBDT
https://gitee.com/gudulubei/eyuo/issues/IFZBDS
https://gitee.com/gudulubei/eyuo/issues/IFZBDR
https://gitee.com/gudulubei/eyuo/issues/IFZBDP
https://gitee.com/gudulubei/eyuo/issues/IFZBDO
https://gitee.com/gudulubei/eyuo/issues/IFZBDN
https://gitee.com/gudulubei/eyuo/issues/IFZBDM
https://gitee.com/gudulubei/eyuo/issues/IFZBDL
https://gitee.com/gudulubei/eyuo/issues/IFZBDK
https://gitee.com/gudulubei/eyuo/issues/IFZBDI
https://gitee.com/gudulubei/eyuo/issues/IFZBDH
https://gitee.com/gudulubei/eyuo/issues/IFZBDG
https://gitee.com/gudulubei/eyuo/issues/IFZBDF
https://gitee.com/gudulubei/eyuo/issues/IFZBDE
https://gitee.com/gudulubei/eyuo/issues/IFZBDD
https://gitee.com/gudulubei/eyuo/issues/IFZBDC
https://gitee.com/gudulubei/eyuo/issues/IFZBDB
https://gitee.com/gudulubei/eyuo/issues/IFZBDA
https://gitee.com/gudulubei/eyuo/issues/IFZBD9
https://gitee.com/gudulubei/eyuo/issues/IFZBD8
https://gitee.com/gudulubei/eyuo/issues/IFZBD7
https://gitee.com/gudulubei/eyuo/issues/IFZBD5
https://gitee.com/gudulubei/eyuo/issues/IFZBD4
https://gitee.com/gudulubei/eyuo/issues/IFZBD3
https://gitee.com/gudulubei/eyuo/issues/IFZBD2
https://gitee.com/gudulubei/eyuo/issues/IFZBD1
https://gitee.com/gudulubei/eyuo/issues/IFZBD0
https://gitee.com/gudulubei/eyuo/issues/IFZBCZ
https://gitee.com/gudulubei/eyuo/issues/IFZBCY
https://gitee.com/gudulubei/eyuo/issues/IFZBCX
https://gitee.com/gudulubei/eyuo/issues/IFZBCW
https://gitee.com/gudulubei/eyuo/issues/IFZBCV
https://gitee.com/gudulubei/eyuo/issues/IFZBCU
https://gitee.com/gudulubei/eyuo/issues/IFZBCT
https://gitee.com/gudulubei/eyuo/issues/IFZBCS
https://gitee.com/gudulubei/eyuo/issues/IFZBCR
https://gitee.com/gudulubei/eyuo/issues/IFZBCQ
https://gitee.com/gudulubei/eyuo/issues/IFZBCP
https://gitee.com/gudulubei/eyuo/issues/IFZBCO
https://gitee.com/gudulubei/eyuo/issues/IFZBCN
https://gitee.com/gudulubei/eyuo/issues/IFZBCM
https://gitee.com/gudulubei/eyuo/issues/IFZBCK
https://gitee.com/gudulubei/eyuo/issues/IFZBCJ
https://gitee.com/gudulubei/eyuo/issues/IFZBCI
https://gitee.com/gudulubei/eyuo/issues/IFZBCH
https://gitee.com/gudulubei/eyuo/issues/IFZBCG
https://gitee.com/gudulubei/eyuo/issues/IFZBCF
https://gitee.com/gudulubei/eyuo/issues/IFZBCE
https://gitee.com/gudulubei/eyuo/issues/IFZBCD
https://gitee.com/gudulubei/eyuo/issues/IFZBCC
https://gitee.com/gudulubei/eyuo/issues/IFZBCB
https://gitee.com/gudulubei/eyuo/issues/IFZBCA
https://gitee.com/gudulubei/eyuo/issues/IFZBC9
https://gitee.com/gudulubei/eyuo/issues/IFZBC8
https://gitee.com/gudulubei/eyuo/issues/IFZBC7
https://gitee.com/gudulubei/eyuo/issues/IFZBC6
https://gitee.com/gudulubei/eyuo/issues/IFZBC5
https://gitee.com/gudulubei/eyuo/issues/IFZBC3
https://gitee.com/gudulubei/eyuo/issues/IFZBC2
https://gitee.com/gudulubei/eyuo/issues/IFZBC1
https://gitee.com/gudulubei/eyuo/issues/IFZBC0
https://gitee.com/gudulubei/eyuo/issues/IFZBBZ
https://gitee.com/gudulubei/eyuo/issues/IFZBBY
https://gitee.com/gudulubei/eyuo/issues/IFZBBX
https://gitee.com/gudulubei/eyuo/issues/IFZBBW
https://gitee.com/gudulubei/eyuo/issues/IFZBBU
https://gitee.com/gudulubei/eyuo/issues/IFZBBT
https://gitee.com/gudulubei/eyuo/issues/IFZBBS
https://gitee.com/gudulubei/eyuo/issues/IFZBBR
https://gitee.com/gudulubei/eyuo/issues/IFZBBQ
https://gitee.com/gudulubei/eyuo/issues/IFZBBP
https://gitee.com/gudulubei/eyuo/issues/IFZBBO
https://gitee.com/gudulubei/eyuo/issues/IFZBBN
https://gitee.com/gudulubei/eyuo/issues/IFZBBM
https://gitee.com/gudulubei/eyuo/issues/IFZBBL
https://gitee.com/gudulubei/eyuo/issues/IFZBBK
https://gitee.com/gudulubei/eyuo/issues/IFZBBJ
https://gitee.com/gudulubei/eyuo/issues/IFZBBH
https://gitee.com/gudulubei/eyuo/issues/IFZBBG
https://gitee.com/gudulubei/eyuo/issues/IFZBBF
https://gitee.com/gudulubei/eyuo/issues/IFZBBE
https://gitee.com/gudulubei/eyuo/issues/IFZBBD
https://gitee.com/gudulubei/eyuo/issues/IFZBBC
https://gitee.com/gudulubei/eyuo/issues/IFZBBB
https://gitee.com/gudulubei/eyuo/issues/IFZBBA
https://gitee.com/gudulubei/eyuo/issues/IFZBB9
https://gitee.com/gudulubei/eyuo/issues/IFZBB8
https://gitee.com/gudulubei/eyuo/issues/IFZBB7
https://gitee.com/gudulubei/eyuo/issues/IFZBB6
https://gitee.com/gudulubei/eyuo/issues/IFZBB5
https://gitee.com/gudulubei/eyuo/issues/IFZBB4
https://gitee.com/gudulubei/eyuo/issues/IFZBB3
https://gitee.com/gudulubei/eyuo/issues/IFZBB2
https://gitee.com/gudulubei/eyuo/issues/IFZBB1
https://gitee.com/gudulubei/eyuo/issues/IFZBAZ
https://gitee.com/gudulubei/eyuo/issues/IFZBAY
https://gitee.com/gudulubei/eyuo/issues/IFZBAX
https://gitee.com/gudulubei/eyuo/issues/IFZBAW
https://gitee.com/gudulubei/eyuo/issues/IFZBAV
https://gitee.com/gudulubei/eyuo/issues/IFZBAU
https://gitee.com/gudulubei/eyuo/issues/IFZBAT
https://gitee.com/gudulubei/eyuo/issues/IFZBAS
https://gitee.com/gudulubei/eyuo/issues/IFZBAR
https://gitee.com/gudulubei/eyuo/issues/IFZBAQ
https://gitee.com/gudulubei/eyuo/issues/IFZBAP
https://gitee.com/gudulubei/eyuo/issues/IFZBAO
https://gitee.com/gudulubei/eyuo/issues/IFZBAN
https://gitee.com/gudulubei/eyuo/issues/IFZBAM
https://gitee.com/gudulubei/eyuo/issues/IFZBAL
https://gitee.com/gudulubei/eyuo/issues/IFZBAK
https://gitee.com/gudulubei/eyuo/issues/IFZBAJ
https://gitee.com/gudulubei/eyuo/issues/IFZBAI
https://gitee.com/gudulubei/eyuo/issues/IFZBAH
https://gitee.com/gudulubei/eyuo/issues/IFZBAF
https://gitee.com/gudulubei/eyuo/issues/IFZBAE
https://gitee.com/gudulubei/eyuo/issues/IFZBAD
https://gitee.com/gudulubei/eyuo/issues/IFZBAC
https://gitee.com/gudulubei/eyuo/issues/IFZBAA
https://gitee.com/gudulubei/eyuo/issues/IFZBA9
https://gitee.com/gudulubei/eyuo/issues/IFZBA8
https://gitee.com/gudulubei/eyuo/issues/IFZBA7
https://gitee.com/gudulubei/eyuo/issues/IFZBA6
https://gitee.com/gudulubei/eyuo/issues/IFZBA5
https://gitee.com/gudulubei/eyuo/issues/IFZBA4
https://gitee.com/gudulubei/eyuo/issues/IFZBA2
https://gitee.com/gudulubei/eyuo/issues/IFZBA1
https://gitee.com/gudulubei/eyuo/issues/IFZBA0
https://gitee.com/gudulubei/eyuo/issues/IFZB9Z
https://gitee.com/gudulubei/eyuo/issues/IFZB9Y
https://gitee.com/gudulubei/eyuo/issues/IFZB9X
https://gitee.com/gudulubei/eyuo/issues/IFZB9W
https://gitee.com/gudulubei/eyuo/issues/IFZB9U
https://gitee.com/gudulubei/eyuo/issues/IFZB9T
https://gitee.com/gudulubei/eyuo/issues/IFZB9S
https://gitee.com/gudulubei/eyuo/issues/IFZB9R
https://gitee.com/gudulubei/eyuo/issues/IFZB9Q
https://gitee.com/gudulubei/eyuo/issues/IFZB9P
https://gitee.com/gudulubei/eyuo/issues/IFZB9O
https://gitee.com/gudulubei/eyuo/issues/IFZB9N
https://gitee.com/gudulubei/eyuo/issues/IFZB9M
https://gitee.com/gudulubei/eyuo/issues/IFZB9L
https://gitee.com/gudulubei/eyuo/issues/IFZB9K
https://gitee.com/gudulubei/eyuo/issues/IFZB9J
https://gitee.com/gudulubei/eyuo/issues/IFZB9I
https://gitee.com/gudulubei/eyuo/issues/IFZB9H
https://gitee.com/gudulubei/eyuo/issues/IFZB9G
https://gitee.com/gudulubei/eyuo/issues/IFZB9F
https://gitee.com/gudulubei/eyuo/issues/IFZB9E
https://gitee.com/gudulubei/eyuo/issues/IFZB9C
https://gitee.com/gudulubei/eyuo/issues/IFZB9B
https://gitee.com/gudulubei/eyuo/issues/IFZB9A
https://gitee.com/gudulubei/eyuo/issues/IFZB99
https://gitee.com/gudulubei/eyuo/issues/IFZB98
https://gitee.com/gudulubei/eyuo/issues/IFZB97
https://gitee.com/gudulubei/eyuo/issues/IFZB96
https://gitee.com/gudulubei/eyuo/issues/IFZB95
https://gitee.com/gudulubei/eyuo/issues/IFZB94
https://gitee.com/gudulubei/eyuo/issues/IFZB93
https://gitee.com/gudulubei/eyuo/issues/IFZB92
https://gitee.com/gudulubei/eyuo/issues/IFZB91
https://gitee.com/gudulubei/eyuo/issues/IFZB90
https://gitee.com/gudulubei/eyuo/issues/IFZB8Z
https://gitee.com/gudulubei/eyuo/issues/IFZB8X
https://gitee.com/gudulubei/eyuo/issues/IFZB8W
https://gitee.com/gudulubei/eyuo/issues/IFZB8V
https://gitee.com/gudulubei/eyuo/issues/IFZB8U
https://gitee.com/gudulubei/eyuo/issues/IFZB8S
https://gitee.com/gudulubei/eyuo/issues/IFZB8R
https://gitee.com/gudulubei/eyuo/issues/IFZB8Q
https://gitee.com/gudulubei/eyuo/issues/IFZB8P
https://gitee.com/gudulubei/eyuo/issues/IFZB8O
https://gitee.com/gudulubei/eyuo/issues/IFZB8N
https://gitee.com/gudulubei/eyuo/issues/IFZB8M
https://gitee.com/gudulubei/eyuo/issues/IFZB8L
https://gitee.com/gudulubei/eyuo/issues/IFZB8K
https://gitee.com/gudulubei/eyuo/issues/IFZB8J
https://gitee.com/gudulubei/eyuo/issues/IFZB8I
https://gitee.com/gudulubei/eyuo/issues/IFZB8H
https://gitee.com/gudulubei/eyuo/issues/IFZB8G
https://gitee.com/gudulubei/eyuo/issues/IFZB8F
https://gitee.com/gudulubei/eyuo/issues/IFZB8E
https://gitee.com/gudulubei/eyuo/issues/IFZB8D
https://gitee.com/gudulubei/eyuo/issues/IFZB8C
https://gitee.com/gudulubei/eyuo/issues/IFZB8B
https://gitee.com/gudulubei/eyuo/issues/IFZB89
https://gitee.com/gudulubei/eyuo/issues/IFZB88
https://gitee.com/gudulubei/eyuo/issues/IFZB87
https://gitee.com/gudulubei/eyuo/issues/IFZB86
https://gitee.com/gudulubei/eyuo/issues/IFZB85
https://gitee.com/gudulubei/eyuo/issues/IFZB84
https://gitee.com/gudulubei/eyuo/issues/IFZB83
https://gitee.com/gudulubei/eyuo/issues/IFZB82
https://gitee.com/gudulubei/eyuo/issues/IFZB81
https://gitee.com/gudulubei/eyuo/issues/IFZB80
https://gitee.com/gudulubei/eyuo/issues/IFZB7Z
https://gitee.com/gudulubei/eyuo/issues/IFZB7Y
https://gitee.com/gudulubei/eyuo/issues/IFZB7X
https://gitee.com/gudulubei/eyuo/issues/IFZB7W
https://gitee.com/gudulubei/eyuo/issues/IFZB7V
https://gitee.com/gudulubei/eyuo/issues/IFZB7U
https://gitee.com/gudulubei/eyuo/issues/IFZB7T
https://gitee.com/gudulubei/eyuo/issues/IFZB7S
https://gitee.com/gudulubei/eyuo/issues/IFZB7R
https://gitee.com/gudulubei/eyuo/issues/IFZB7P
https://gitee.com/gudulubei/eyuo/issues/IFZB7O
https://gitee.com/gudulubei/eyuo/issues/IFZB7N
https://gitee.com/gudulubei/eyuo/issues/IFZB7M
https://gitee.com/gudulubei/eyuo/issues/IFZB7L
https://gitee.com/gudulubei/eyuo/issues/IFZB7K
https://gitee.com/gudulubei/eyuo/issues/IFZB7J
https://gitee.com/gudulubei/eyuo/issues/IFZB7H
https://gitee.com/gudulubei/eyuo/issues/IFZB7G
https://gitee.com/gudulubei/eyuo/issues/IFZB7F
https://gitee.com/gudulubei/eyuo/issues/IFZB7E
https://gitee.com/gudulubei/eyuo/issues/IFZB7D
https://gitee.com/gudulubei/eyuo/issues/IFZB7C
https://gitee.com/gudulubei/eyuo/issues/IFZB7B
https://gitee.com/gudulubei/eyuo/issues/IFZB7A
https://gitee.com/gudulubei/eyuo/issues/IFZB79
https://gitee.com/gudulubei/eyuo/issues/IFZB78
https://gitee.com/gudulubei/eyuo/issues/IFZB77
https://gitee.com/gudulubei/eyuo/issues/IFZB76
https://gitee.com/gudulubei/eyuo/issues/IFZB74
https://gitee.com/gudulubei/eyuo/issues/IFZB73
https://gitee.com/gudulubei/eyuo/issues/IFZB72
https://gitee.com/gudulubei/eyuo/issues/IFZB71
https://gitee.com/gudulubei/eyuo/issues/IFZB70
https://gitee.com/gudulubei/eyuo/issues/IFZB6Z
https://gitee.com/gudulubei/eyuo/issues/IFZB6Y
https://gitee.com/gudulubei/eyuo/issues/IFZB6X
https://gitee.com/gudulubei/eyuo/issues/IFZB6W
https://gitee.com/gudulubei/eyuo/issues/IFZB6V
https://gitee.com/gudulubei/eyuo/issues/IFZB6U
https://gitee.com/gudulubei/eyuo/issues/IFZB6T
https://gitee.com/gudulubei/eyuo/issues/IFZB6S
https://gitee.com/gudulubei/eyuo/issues/IFZB6R
https://gitee.com/gudulubei/eyuo/issues/IFZB6Q
https://gitee.com/gudulubei/eyuo/issues/IFZB6P
https://gitee.com/gudulubei/eyuo/issues/IFZB6O
https://gitee.com/gudulubei/eyuo/issues/IFZB6N
https://gitee.com/gudulubei/eyuo/issues/IFZB6L
https://gitee.com/gudulubei/eyuo/issues/IFZB6K
https://gitee.com/gudulubei/eyuo/issues/IFZB6J
https://gitee.com/gudulubei/eyuo/issues/IFZB6I
https://gitee.com/gudulubei/eyuo/issues/IFZB6H
https://gitee.com/gudulubei/eyuo/issues/IFZB6G
https://gitee.com/gudulubei/eyuo/issues/IFZB6F
https://gitee.com/gudulubei/eyuo/issues/IFZB6E
https://gitee.com/gudulubei/eyuo/issues/IFZB6D
https://gitee.com/gudulubei/eyuo/issues/IFZB6C
https://gitee.com/gudulubei/eyuo/issues/IFZB6B
https://gitee.com/gudulubei/eyuo/issues/IFZB6A
https://gitee.com/gudulubei/eyuo/issues/IFZB69
https://gitee.com/gudulubei/eyuo/issues/IFZB68
https://gitee.com/gudulubei/eyuo/issues/IFZB67
https://gitee.com/gudulubei/eyuo/issues/IFZB66
https://gitee.com/gudulubei/eyuo/issues/IFZB65
https://gitee.com/gudulubei/eyuo/issues/IFZB64
https://gitee.com/gudulubei/eyuo/issues/IFZB61
https://gitee.com/gudulubei/eyuo/issues/IFZB60
https://gitee.com/gudulubei/eyuo/issues/IFZB5Z
https://gitee.com/gudulubei/eyuo/issues/IFZB5Y
https://gitee.com/gudulubei/eyuo/issues/IFZB5X
https://gitee.com/gudulubei/eyuo/issues/IFZB5W
https://gitee.com/gudulubei/eyuo/issues/IFZB5V
https://gitee.com/gudulubei/eyuo/issues/IFZB5U
https://gitee.com/gudulubei/eyuo/issues/IFZB5T
https://gitee.com/gudulubei/eyuo/issues/IFZB5S
https://gitee.com/gudulubei/eyuo/issues/IFZB5R
https://gitee.com/gudulubei/eyuo/issues/IFZB5Q
https://gitee.com/gudulubei/eyuo/issues/IFZB5P
https://gitee.com/gudulubei/eyuo/issues/IFZB5O
https://gitee.com/gudulubei/eyuo/issues/IFZB5N
https://gitee.com/gudulubei/eyuo/issues/IFZB5M
https://gitee.com/gudulubei/eyuo/issues/IFZB5L
https://gitee.com/gudulubei/eyuo/issues/IFZB5J
https://gitee.com/gudulubei/eyuo/issues/IFZB5I
https://gitee.com/gudulubei/eyuo/issues/IFZB5H
https://gitee.com/gudulubei/eyuo/issues/IFZB5G
https://gitee.com/gudulubei/eyuo/issues/IFZB5F
https://gitee.com/gudulubei/eyuo/issues/IFZB5E
https://gitee.com/gudulubei/eyuo/issues/IFZB5D
https://gitee.com/gudulubei/eyuo/issues/IFZB5C
https://gitee.com/gudulubei/eyuo/issues/IFZB5B
https://gitee.com/gudulubei/eyuo/issues/IFZB5A
https://gitee.com/gudulubei/eyuo/issues/IFZB59
https://gitee.com/gudulubei/eyuo/issues/IFZB58
https://gitee.com/gudulubei/eyuo/issues/IFZB57
https://gitee.com/gudulubei/eyuo/issues/IFZB56
https://gitee.com/gudulubei/eyuo/issues/IFZB55
https://gitee.com/gudulubei/eyuo/issues/IFZB54
https://gitee.com/gudulubei/eyuo/issues/IFZB53
https://gitee.com/gudulubei/eyuo/issues/IFZB52
https://gitee.com/gudulubei/eyuo/issues/IFZB50
https://gitee.com/gudulubei/eyuo/issues/IFZB4Z
https://gitee.com/gudulubei/eyuo/issues/IFZB4Y
https://gitee.com/gudulubei/eyuo/issues/IFZB4X
https://gitee.com/gudulubei/eyuo/issues/IFZB4W
https://gitee.com/gudulubei/eyuo/issues/IFZB4V
https://gitee.com/gudulubei/eyuo/issues/IFZB4U
https://gitee.com/gudulubei/eyuo/issues/IFZB4T
https://gitee.com/gudulubei/eyuo/issues/IFZB4S
https://gitee.com/gudulubei/eyuo/issues/IFZB4R
https://gitee.com/gudulubei/eyuo/issues/IFZB4P
https://gitee.com/gudulubei/eyuo/issues/IFZB4O
https://gitee.com/gudulubei/eyuo/issues/IFZB4N
https://gitee.com/gudulubei/eyuo/issues/IFZB4M
https://gitee.com/gudulubei/eyuo/issues/IFZB4L
https://gitee.com/gudulubei/eyuo/issues/IFZB4K
https://gitee.com/gudulubei/eyuo/issues/IFZB4J
https://gitee.com/gudulubei/eyuo/issues/IFZB4I
https://gitee.com/gudulubei/eyuo/issues/IFZB4G
https://gitee.com/gudulubei/eyuo/issues/IFZB4F
https://gitee.com/gudulubei/eyuo/issues/IFZB4E
https://gitee.com/gudulubei/eyuo/issues/IFZB4D
https://gitee.com/gudulubei/eyuo/issues/IFZB4C
https://gitee.com/gudulubei/eyuo/issues/IFZB4B
https://gitee.com/gudulubei/eyuo/issues/IFZB4A
https://gitee.com/gudulubei/eyuo/issues/IFZB49
https://gitee.com/gudulubei/eyuo/issues/IFZB48
https://gitee.com/gudulubei/eyuo/issues/IFZB47
https://gitee.com/gudulubei/eyuo/issues/IFZB46
https://gitee.com/gudulubei/eyuo/issues/IFZB45
https://gitee.com/gudulubei/eyuo/issues/IFZB44
https://gitee.com/gudulubei/eyuo/issues/IFZB43
https://gitee.com/gudulubei/eyuo/issues/IFZB42
https://gitee.com/gudulubei/eyuo/issues/IFZB41
https://gitee.com/gudulubei/eyuo/issues/IFZB40
https://gitee.com/gudulubei/eyuo/issues/IFZB3Z
https://gitee.com/gudulubei/eyuo/issues/IFZB3Y
https://gitee.com/gudulubei/eyuo/issues/IFZB3W
https://gitee.com/gudulubei/eyuo/issues/IFZB3V
https://gitee.com/gudulubei/eyuo/issues/IFZB3U
https://gitee.com/gudulubei/eyuo/issues/IFZB3T
https://gitee.com/gudulubei/eyuo/issues/IFZB3S
https://gitee.com/gudulubei/eyuo/issues/IFZB3R
https://gitee.com/gudulubei/eyuo/issues/IFZB3Q
https://gitee.com/gudulubei/eyuo/issues/IFZB3P
https://gitee.com/gudulubei/eyuo/issues/IFZB3O
https://gitee.com/gudulubei/eyuo/issues/IFZB3N
https://gitee.com/gudulubei/eyuo/issues/IFZB3M
https://gitee.com/gudulubei/eyuo/issues/IFZB3L
https://gitee.com/gudulubei/eyuo/issues/IFZB3K
https://gitee.com/gudulubei/eyuo/issues/IFZB3J
https://gitee.com/gudulubei/eyuo/issues/IFZB3I
https://gitee.com/gudulubei/eyuo/issues/IFZB3H
https://gitee.com/gudulubei/eyuo/issues/IFZB3G
https://gitee.com/gudulubei/eyuo/issues/IFZB3F
https://gitee.com/gudulubei/eyuo/issues/IFZB3D
https://gitee.com/gudulubei/eyuo/issues/IFZB3C
https://gitee.com/gudulubei/eyuo/issues/IFZB3A
https://gitee.com/gudulubei/eyuo/issues/IFZB39
https://gitee.com/gudulubei/eyuo/issues/IFZB38
https://gitee.com/gudulubei/eyuo/issues/IFZB37
https://gitee.com/gudulubei/eyuo/issues/IFZB36
https://gitee.com/gudulubei/eyuo/issues/IFZB35
https://gitee.com/gudulubei/eyuo/issues/IFZB34
https://gitee.com/gudulubei/eyuo/issues/IFZB33
https://gitee.com/gudulubei/eyuo/issues/IFZB32
https://gitee.com/gudulubei/eyuo/issues/IFZB31
https://gitee.com/gudulubei/eyuo/issues/IFZB30
https://gitee.com/gudulubei/eyuo/issues/IFZB2Z
https://gitee.com/gudulubei/eyuo/issues/IFZB2Y
https://gitee.com/gudulubei/eyuo/issues/IFZB2X
https://gitee.com/gudulubei/eyuo/issues/IFZB2W
https://gitee.com/gudulubei/eyuo/issues/IFZB2V
https://gitee.com/gudulubei/eyuo/issues/IFZB2T
https://gitee.com/gudulubei/eyuo/issues/IFZB2S
https://gitee.com/gudulubei/eyuo/issues/IFZB2R
https://gitee.com/gudulubei/eyuo/issues/IFZB2Q
https://gitee.com/gudulubei/eyuo/issues/IFZB2P
https://gitee.com/gudulubei/eyuo/issues/IFZB2O
https://gitee.com/gudulubei/eyuo/issues/IFZB2N
https://gitee.com/gudulubei/eyuo/issues/IFZB2M
https://gitee.com/gudulubei/eyuo/issues/IFZB2L
https://gitee.com/gudulubei/eyuo/issues/IFZB2K
https://gitee.com/gudulubei/eyuo/issues/IFZB2J
https://gitee.com/gudulubei/eyuo/issues/IFZB2I
https://gitee.com/gudulubei/eyuo/issues/IFZB2H
https://gitee.com/gudulubei/eyuo/issues/IFZB2G
https://gitee.com/gudulubei/eyuo/issues/IFZB2F
https://gitee.com/gudulubei/eyuo/issues/IFZB2E
https://gitee.com/gudulubei/eyuo/issues/IFZB2D
https://gitee.com/gudulubei/eyuo/issues/IFZB2C
https://gitee.com/gudulubei/eyuo/issues/IFZB2B
https://gitee.com/gudulubei/eyuo/issues/IFZB2A
https://gitee.com/gudulubei/eyuo/issues/IFZB29
https://gitee.com/gudulubei/eyuo/issues/IFZB28
https://gitee.com/gudulubei/eyuo/issues/IFZB27
https://gitee.com/gudulubei/eyuo/issues/IFZB26
https://gitee.com/gudulubei/eyuo/issues/IFZB25
https://gitee.com/gudulubei/eyuo/issues/IFZB24
https://gitee.com/gudulubei/eyuo/issues/IFZB23
https://gitee.com/gudulubei/eyuo/issues/IFZB22
https://gitee.com/gudulubei/eyuo/issues/IFZB21
https://gitee.com/gudulubei/eyuo/issues/IFZB20
https://gitee.com/gudulubei/eyuo/issues/IFZB1Z
https://gitee.com/gudulubei/eyuo/issues/IFZB1Y
https://gitee.com/gudulubei/eyuo/issues/IFZB1W
https://gitee.com/gudulubei/eyuo/issues/IFZB1V
https://gitee.com/gudulubei/eyuo/issues/IFZB1U
https://gitee.com/gudulubei/eyuo/issues/IFZB1T
https://gitee.com/gudulubei/eyuo/issues/IFZB1S
https://gitee.com/gudulubei/eyuo/issues/IFZB1R
https://gitee.com/gudulubei/eyuo/issues/IFZB1Q
https://gitee.com/gudulubei/eyuo/issues/IFZB1P
https://gitee.com/gudulubei/eyuo/issues/IFZB1O
https://gitee.com/gudulubei/eyuo/issues/IFZB1N
https://gitee.com/gudulubei/eyuo/issues/IFZB1M
https://gitee.com/gudulubei/eyuo/issues/IFZB1L
https://gitee.com/gudulubei/eyuo/issues/IFZB1K
https://gitee.com/gudulubei/eyuo/issues/IFZB1J
https://gitee.com/gudulubei/eyuo/issues/IFZB1I
https://gitee.com/gudulubei/eyuo/issues/IFZB1H
https://gitee.com/gudulubei/eyuo/issues/IFZB1G
https://gitee.com/gudulubei/eyuo/issues/IFZB1F
https://gitee.com/gudulubei/eyuo/issues/IFZB1E
https://gitee.com/gudulubei/eyuo/issues/IFZB1D
https://gitee.com/gudulubei/eyuo/issues/IFZB1C
https://gitee.com/gudulubei/eyuo/issues/IFZB1B
https://gitee.com/gudulubei/eyuo/issues/IFZB1A
https://gitee.com/gudulubei/eyuo/issues/IFZB19
https://gitee.com/gudulubei/eyuo/issues/IFZB17
https://gitee.com/gudulubei/eyuo/issues/IFZB16
https://gitee.com/gudulubei/eyuo/issues/IFZB15
https://gitee.com/gudulubei/eyuo/issues/IFZB14
https://gitee.com/gudulubei/eyuo/issues/IFZB13
https://gitee.com/gudulubei/eyuo/issues/IFZB12
https://gitee.com/gudulubei/eyuo/issues/IFZB11
https://gitee.com/gudulubei/eyuo/issues/IFZB10
https://gitee.com/gudulubei/eyuo/issues/IFZB0W
https://gitee.com/gudulubei/eyuo/issues/IFZB0V
https://gitee.com/gudulubei/eyuo/issues/IFZB0U
https://gitee.com/gudulubei/eyuo/issues/IFZB0T
https://gitee.com/gudulubei/eyuo/issues/IFZB0S
https://gitee.com/gudulubei/eyuo/issues/IFZB0R
https://gitee.com/gudulubei/eyuo/issues/IFZB0Q
https://gitee.com/gudulubei/eyuo/issues/IFZB0P
https://gitee.com/gudulubei/eyuo/issues/IFZB0O
https://gitee.com/gudulubei/eyuo/issues/IFZB0N
https://gitee.com/gudulubei/eyuo/issues/IFZB0M
https://gitee.com/gudulubei/eyuo/issues/IFZB0L
https://gitee.com/gudulubei/eyuo/issues/IFZB0J
https://gitee.com/gudulubei/eyuo/issues/IFZB0I
https://gitee.com/gudulubei/eyuo/issues/IFZB0H
https://gitee.com/gudulubei/eyuo/issues/IFZB0G
https://gitee.com/gudulubei/eyuo/issues/IFZB0F
https://gitee.com/gudulubei/eyuo/issues/IFZB0E
https://gitee.com/gudulubei/eyuo/issues/IFZB0D
https://gitee.com/gudulubei/eyuo/issues/IFZB0C
https://gitee.com/gudulubei/eyuo/issues/IFZB0B
https://gitee.com/gudulubei/eyuo/issues/IFZB0A
https://gitee.com/gudulubei/eyuo/issues/IFZB09
https://gitee.com/gudulubei/eyuo/issues/IFZB08
https://gitee.com/gudulubei/eyuo/issues/IFZB07
https://gitee.com/gudulubei/eyuo/issues/IFZB05
https://gitee.com/gudulubei/eyuo/issues/IFZB04
https://gitee.com/gudulubei/eyuo/issues/IFZB03
https://gitee.com/gudulubei/eyuo/issues/IFZB02
https://gitee.com/gudulubei/eyuo/issues/IFZB01
https://gitee.com/gudulubei/eyuo/issues/IFZB00
https://gitee.com/gudulubei/eyuo/issues/IFZAZY
https://gitee.com/gudulubei/eyuo/issues/IFZAZX
https://gitee.com/gudulubei/eyuo/issues/IFZAZW
https://gitee.com/gudulubei/eyuo/issues/IFZAZV
https://gitee.com/gudulubei/eyuo/issues/IFZAZU
https://gitee.com/gudulubei/eyuo/issues/IFZAZT
https://gitee.com/gudulubei/eyuo/issues/IFZAZS
https://gitee.com/gudulubei/eyuo/issues/IFZAZR
https://gitee.com/gudulubei/eyuo/issues/IFZAZQ
https://gitee.com/gudulubei/eyuo/issues/IFZAZP
https://gitee.com/gudulubei/eyuo/issues/IFZAZO
https://gitee.com/gudulubei/eyuo/issues/IFZAZN
https://gitee.com/gudulubei/eyuo/issues/IFZAZM
https://gitee.com/gudulubei/eyuo/issues/IFZAZL
https://gitee.com/gudulubei/eyuo/issues/IFZAZK
https://gitee.com/gudulubei/eyuo/issues/IFZAZJ
https://gitee.com/gudulubei/eyuo/issues/IFZAZI
https://gitee.com/gudulubei/eyuo/issues/IFZAZH
https://gitee.com/gudulubei/eyuo/issues/IFZAZF
https://gitee.com/gudulubei/eyuo/issues/IFZAZE
https://gitee.com/gudulubei/eyuo/issues/IFZAZD
https://gitee.com/gudulubei/eyuo/issues/IFZAZC
https://gitee.com/gudulubei/eyuo/issues/IFZAZB
https://gitee.com/gudulubei/eyuo/issues/IFZAZA
https://gitee.com/gudulubei/eyuo/issues/IFZAZ9
https://gitee.com/gudulubei/eyuo/issues/IFZAZ8
https://gitee.com/gudulubei/eyuo/issues/IFZAZ7
https://gitee.com/gudulubei/eyuo/issues/IFZAZ6
https://gitee.com/gudulubei/eyuo/issues/IFZAZ5
https://gitee.com/gudulubei/eyuo/issues/IFZAZ4
https://gitee.com/gudulubei/eyuo/issues/IFZAZ3
https://gitee.com/gudulubei/eyuo/issues/IFZAZ2
https://gitee.com/gudulubei/eyuo/issues/IFZAZ1
https://gitee.com/gudulubei/eyuo/issues/IFZAZ0
https://gitee.com/gudulubei/eyuo/issues/IFZAYY
https://gitee.com/gudulubei/eyuo/issues/IFZAYX
https://gitee.com/gudulubei/eyuo/issues/IFZAYW
https://gitee.com/gudulubei/eyuo/issues/IFZAYV
https://gitee.com/gudulubei/eyuo/issues/IFZAYU
https://gitee.com/gudulubei/eyuo/issues/IFZAYS
https://gitee.com/gudulubei/eyuo/issues/IFZAYR
https://gitee.com/gudulubei/eyuo/issues/IFZAYQ
https://gitee.com/gudulubei/eyuo/issues/IFZAYP
https://gitee.com/gudulubei/eyuo/issues/IFZAYO
https://gitee.com/gudulubei/eyuo/issues/IFZAYN
https://gitee.com/gudulubei/eyuo/issues/IFZAYM
https://gitee.com/gudulubei/eyuo/issues/IFZAYL
https://gitee.com/gudulubei/eyuo/issues/IFZAYK
https://gitee.com/gudulubei/eyuo/issues/IFZAYJ
https://gitee.com/gudulubei/eyuo/issues/IFZAYI
https://gitee.com/gudulubei/eyuo/issues/IFZAYH
https://gitee.com/gudulubei/eyuo/issues/IFZAYG
https://gitee.com/gudulubei/eyuo/issues/IFZAYE
https://gitee.com/gudulubei/eyuo/issues/IFZAYD
https://gitee.com/gudulubei/eyuo/issues/IFZAYC
https://gitee.com/gudulubei/eyuo/issues/IFZAYB
https://gitee.com/gudulubei/eyuo/issues/IFZAYA
https://gitee.com/gudulubei/eyuo/issues/IFZAY9
https://gitee.com/gudulubei/eyuo/issues/IFZAY8
https://gitee.com/gudulubei/eyuo/issues/IFZAY7
https://gitee.com/gudulubei/eyuo/issues/IFZAY6
https://gitee.com/gudulubei/eyuo/issues/IFZAY5
https://gitee.com/gudulubei/eyuo/issues/IFZAY4
https://gitee.com/gudulubei/eyuo/issues/IFZAY3
https://gitee.com/gudulubei/eyuo/issues/IFZAY2
https://gitee.com/gudulubei/eyuo/issues/IFZAY1
https://gitee.com/gudulubei/eyuo/issues/IFZAY0
https://gitee.com/gudulubei/eyuo/issues/IFZAXZ
https://gitee.com/gudulubei/eyuo/issues/IFZAXY
https://gitee.com/gudulubei/eyuo/issues/IFZAXX
https://gitee.com/gudulubei/eyuo/issues/IFZAXV
https://gitee.com/gudulubei/eyuo/issues/IFZAXU
https://gitee.com/gudulubei/eyuo/issues/IFZAXT
https://gitee.com/gudulubei/eyuo/issues/IFZAXS
https://gitee.com/gudulubei/eyuo/issues/IFZAXR
https://gitee.com/gudulubei/eyuo/issues/IFZAXQ
https://gitee.com/gudulubei/eyuo/issues/IFZAXP
https://gitee.com/gudulubei/eyuo/issues/IFZAXO
https://gitee.com/gudulubei/eyuo/issues/IFZAXN
https://gitee.com/gudulubei/eyuo/issues/IFZAXM
https://gitee.com/gudulubei/eyuo/issues/IFZAXL
https://gitee.com/gudulubei/eyuo/issues/IFZAXK
https://gitee.com/gudulubei/eyuo/issues/IFZAXJ
https://gitee.com/gudulubei/eyuo/issues/IFZAXI
https://gitee.com/gudulubei/eyuo/issues/IFZAXH
https://gitee.com/gudulubei/eyuo/issues/IFZAXF
https://gitee.com/gudulubei/eyuo/issues/IFZAXE
https://gitee.com/gudulubei/eyuo/issues/IFZAXD
https://gitee.com/gudulubei/eyuo/issues/IFZAXC
https://gitee.com/gudulubei/eyuo/issues/IFZAXB
https://gitee.com/gudulubei/eyuo/issues/IFZAX9
https://gitee.com/gudulubei/eyuo/issues/IFZAX8
https://gitee.com/gudulubei/eyuo/issues/IFZAX7
https://gitee.com/gudulubei/eyuo/issues/IFZAX6
https://gitee.com/gudulubei/eyuo/issues/IFZAX5
https://gitee.com/gudulubei/eyuo/issues/IFZAX4
https://gitee.com/gudulubei/eyuo/issues/IFZAX3
https://gitee.com/gudulubei/eyuo/issues/IFZAX2
https://gitee.com/gudulubei/eyuo/issues/IFZAX1
https://gitee.com/gudulubei/eyuo/issues/IFZAX0
https://gitee.com/gudulubei/eyuo/issues/IFZAWZ
https://gitee.com/gudulubei/eyuo/issues/IFZAWY
https://gitee.com/gudulubei/eyuo/issues/IFZAWX
https://gitee.com/gudulubei/eyuo/issues/IFZAWW
https://gitee.com/gudulubei/eyuo/issues/IFZAWV
https://gitee.com/gudulubei/eyuo/issues/IFZAWU
https://gitee.com/gudulubei/eyuo/issues/IFZAWT
https://gitee.com/gudulubei/eyuo/issues/IFZAWR
https://gitee.com/gudulubei/eyuo/issues/IFZAWQ
https://gitee.com/gudulubei/eyuo/issues/IFZAWP
https://gitee.com/gudulubei/eyuo/issues/IFZAWO
https://gitee.com/gudulubei/eyuo/issues/IFZAWN
https://gitee.com/gudulubei/eyuo/issues/IFZAWM
https://gitee.com/gudulubei/eyuo/issues/IFZAWL
https://gitee.com/gudulubei/eyuo/issues/IFZAWK
https://gitee.com/gudulubei/eyuo/issues/IFZAWJ
https://gitee.com/gudulubei/eyuo/issues/IFZAWI
https://gitee.com/gudulubei/eyuo/issues/IFZAWH
https://gitee.com/gudulubei/eyuo/issues/IFZAWG
https://gitee.com/gudulubei/eyuo/issues/IFZAWF
https://gitee.com/gudulubei/eyuo/issues/IFZAWE
https://gitee.com/gudulubei/eyuo/issues/IFZAWD
https://gitee.com/gudulubei/eyuo/issues/IFZAWC
https://gitee.com/gudulubei/eyuo/issues/IFZAWB
https://gitee.com/gudulubei/eyuo/issues/IFZAWA
https://gitee.com/gudulubei/eyuo/issues/IFZAW9
https://gitee.com/gudulubei/eyuo/issues/IFZAW8
https://gitee.com/gudulubei/eyuo/issues/IFZAW6
https://gitee.com/gudulubei/eyuo/issues/IFZAW5
https://gitee.com/gudulubei/eyuo/issues/IFZAW4
https://gitee.com/gudulubei/eyuo/issues/IFZAW3
https://gitee.com/gudulubei/eyuo/issues/IFZAW2
https://gitee.com/gudulubei/eyuo/issues/IFZAW0
https://gitee.com/gudulubei/eyuo/issues/IFZAVZ
https://gitee.com/gudulubei/eyuo/issues/IFZAVY
https://gitee.com/gudulubei/eyuo/issues/IFZAVX
https://gitee.com/gudulubei/eyuo/issues/IFZAVW
https://gitee.com/gudulubei/eyuo/issues/IFZAVV
https://gitee.com/gudulubei/eyuo/issues/IFZAVU
https://gitee.com/gudulubei/eyuo/issues/IFZAVT
https://gitee.com/gudulubei/eyuo/issues/IFZAVS
https://gitee.com/gudulubei/eyuo/issues/IFZAVR
https://gitee.com/gudulubei/eyuo/issues/IFZAVQ
https://gitee.com/gudulubei/eyuo/issues/IFZAVP
https://gitee.com/gudulubei/eyuo/issues/IFZAVO
https://gitee.com/gudulubei/eyuo/issues/IFZAVM
https://gitee.com/gudulubei/eyuo/issues/IFZAVL
https://gitee.com/gudulubei/eyuo/issues/IFZAVK
https://gitee.com/gudulubei/eyuo/issues/IFZAVJ
https://gitee.com/gudulubei/eyuo/issues/IFZAVI
https://gitee.com/gudulubei/eyuo/issues/IFZAVH
https://gitee.com/gudulubei/eyuo/issues/IFZAVG
https://gitee.com/gudulubei/eyuo/issues/IFZAVF
https://gitee.com/gudulubei/eyuo/issues/IFZAVE
https://gitee.com/gudulubei/eyuo/issues/IFZAVD
https://gitee.com/gudulubei/eyuo/issues/IFZAVC
https://gitee.com/gudulubei/eyuo/issues/IFZAVB
https://gitee.com/gudulubei/eyuo/issues/IFZAVA
https://gitee.com/gudulubei/eyuo/issues/IFZAV9
https://gitee.com/gudulubei/eyuo/issues/IFZAV8
https://gitee.com/gudulubei/eyuo/issues/IFZAV7
https://gitee.com/gudulubei/eyuo/issues/IFZAV6
https://gitee.com/gudulubei/eyuo/issues/IFZAV5
https://gitee.com/gudulubei/eyuo/issues/IFZAV4
https://gitee.com/gudulubei/eyuo/issues/IFZAV3
https://gitee.com/gudulubei/eyuo/issues/IFZAV2
https://gitee.com/gudulubei/eyuo/issues/IFZAV1
https://gitee.com/gudulubei/eyuo/issues/IFZAV0
https://gitee.com/gudulubei/eyuo/issues/IFZAUZ
https://gitee.com/gudulubei/eyuo/issues/IFZAUY
https://gitee.com/gudulubei/eyuo/issues/IFZAUX
https://gitee.com/gudulubei/eyuo/issues/IFZAUW
https://gitee.com/gudulubei/eyuo/issues/IFZAUV
https://gitee.com/gudulubei/eyuo/issues/IFZAUU
https://gitee.com/gudulubei/eyuo/issues/IFZAUT
https://gitee.com/gudulubei/eyuo/issues/IFZAUS
https://gitee.com/gudulubei/eyuo/issues/IFZAUR
https://gitee.com/gudulubei/eyuo/issues/IFZAUQ
https://gitee.com/gudulubei/eyuo/issues/IFZAUP
https://gitee.com/gudulubei/eyuo/issues/IFZAUO
https://gitee.com/gudulubei/eyuo/issues/IFZAUN
https://gitee.com/gudulubei/eyuo/issues/IFZAUL
https://gitee.com/gudulubei/eyuo/issues/IFZAUK
https://gitee.com/gudulubei/eyuo/issues/IFZAUI
https://gitee.com/gudulubei/eyuo/issues/IFZAUH
https://gitee.com/gudulubei/eyuo/issues/IFZAUG
https://gitee.com/gudulubei/eyuo/issues/IFZAUF
https://gitee.com/gudulubei/eyuo/issues/IFZAUE
https://gitee.com/gudulubei/eyuo/issues/IFZAUD
https://gitee.com/gudulubei/eyuo/issues/IFZAUC
https://gitee.com/gudulubei/eyuo/issues/IFZAUB
https://gitee.com/gudulubei/eyuo/issues/IFZAUA
https://gitee.com/gudulubei/eyuo/issues/IFZAU9
https://gitee.com/gudulubei/eyuo/issues/IFZAU8
https://gitee.com/gudulubei/eyuo/issues/IFZAU7
https://gitee.com/gudulubei/eyuo/issues/IFZAU6
https://gitee.com/gudulubei/eyuo/issues/IFZAU5
https://gitee.com/gudulubei/eyuo/issues/IFZAU4
https://gitee.com/gudulubei/eyuo/issues/IFZAU3
https://gitee.com/gudulubei/eyuo/issues/IFZAU2
https://gitee.com/gudulubei/eyuo/issues/IFZAU1
https://gitee.com/gudulubei/eyuo/issues/IFZAU0
https://gitee.com/gudulubei/eyuo/issues/IFZATY
https://gitee.com/gudulubei/eyuo/issues/IFZATX
https://gitee.com/gudulubei/eyuo/issues/IFZATW
https://gitee.com/gudulubei/eyuo/issues/IFZATV
https://gitee.com/gudulubei/eyuo/issues/IFZATU
https://gitee.com/gudulubei/eyuo/issues/IFZATT
https://gitee.com/gudulubei/eyuo/issues/IFZATS
https://gitee.com/gudulubei/eyuo/issues/IFZATR
https://gitee.com/gudulubei/eyuo/issues/IFZATQ
https://gitee.com/gudulubei/eyuo/issues/IFZATP
https://gitee.com/gudulubei/eyuo/issues/IFZATO
https://gitee.com/gudulubei/eyuo/issues/IFZATN
https://gitee.com/gudulubei/eyuo/issues/IFZATM
https://gitee.com/gudulubei/eyuo/issues/IFZATL
https://gitee.com/gudulubei/eyuo/issues/IFZATK
https://gitee.com/gudulubei/eyuo/issues/IFZATJ
https://gitee.com/gudulubei/eyuo/issues/IFZATI
https://gitee.com/gudulubei/eyuo/issues/IFZATG
https://gitee.com/gudulubei/eyuo/issues/IFZATF
https://gitee.com/gudulubei/eyuo/issues/IFZATE
https://gitee.com/gudulubei/eyuo/issues/IFZATD
https://gitee.com/gudulubei/eyuo/issues/IFZATC
https://gitee.com/gudulubei/eyuo/issues/IFZATB
https://gitee.com/gudulubei/eyuo/issues/IFZATA
https://gitee.com/gudulubei/eyuo/issues/IFZAT9
https://gitee.com/gudulubei/eyuo/issues/IFZAT8
https://gitee.com/gudulubei/eyuo/issues/IFZAT7
https://gitee.com/gudulubei/eyuo/issues/IFZAT6
https://gitee.com/gudulubei/eyuo/issues/IFZAT5
https://gitee.com/gudulubei/eyuo/issues/IFZAT4
https://gitee.com/gudulubei/eyuo/issues/IFZAT2
https://gitee.com/gudulubei/eyuo/issues/IFZAT1
https://gitee.com/gudulubei/eyuo/issues/IFZAT0
https://gitee.com/gudulubei/eyuo/issues/IFZASZ
https://gitee.com/gudulubei/eyuo/issues/IFZASY
https://gitee.com/gudulubei/eyuo/issues/IFZASW
https://gitee.com/gudulubei/eyuo/issues/IFZASV
https://gitee.com/gudulubei/eyuo/issues/IFZASU
https://gitee.com/gudulubei/eyuo/issues/IFZAST
https://gitee.com/gudulubei/eyuo/issues/IFZASS
https://gitee.com/gudulubei/eyuo/issues/IFZASR
https://gitee.com/gudulubei/eyuo/issues/IFZASQ
https://gitee.com/gudulubei/eyuo/issues/IFZASP
https://gitee.com/gudulubei/eyuo/issues/IFZASO
https://gitee.com/gudulubei/eyuo/issues/IFZASN
https://gitee.com/gudulubei/eyuo/issues/IFZASM
https://gitee.com/gudulubei/eyuo/issues/IFZASL
https://gitee.com/gudulubei/eyuo/issues/IFZASK
https://gitee.com/gudulubei/eyuo/issues/IFZASJ
https://gitee.com/gudulubei/eyuo/issues/IFZASI
https://gitee.com/gudulubei/eyuo/issues/IFZASH
https://gitee.com/gudulubei/eyuo/issues/IFZASG
https://gitee.com/gudulubei/eyuo/issues/IFZASE
https://gitee.com/gudulubei/eyuo/issues/IFZASD
https://gitee.com/gudulubei/eyuo/issues/IFZASC
https://gitee.com/gudulubei/eyuo/issues/IFZASB
https://gitee.com/gudulubei/eyuo/issues/IFZASA
https://gitee.com/gudulubei/eyuo/issues/IFZAS9
https://gitee.com/gudulubei/eyuo/issues/IFZAS8
https://gitee.com/gudulubei/eyuo/issues/IFZAS7
https://gitee.com/gudulubei/eyuo/issues/IFZAS6
https://gitee.com/gudulubei/eyuo/issues/IFZAS5
https://gitee.com/gudulubei/eyuo/issues/IFZAS4
https://gitee.com/gudulubei/eyuo/issues/IFZAS3
https://gitee.com/gudulubei/eyuo/issues/IFZAS2
https://gitee.com/gudulubei/eyuo/issues/IFZAS1
https://gitee.com/gudulubei/eyuo/issues/IFZAS0
https://gitee.com/gudulubei/eyuo/issues/IFZARZ
https://gitee.com/gudulubei/eyuo/issues/IFZARY
https://gitee.com/gudulubei/eyuo/issues/IFZARX
https://gitee.com/gudulubei/eyuo/issues/IFZARW
https://gitee.com/gudulubei/eyuo/issues/IFZARU
https://gitee.com/gudulubei/eyuo/issues/IFZART
https://gitee.com/gudulubei/eyuo/issues/IFZARS
https://gitee.com/gudulubei/eyuo/issues/IFZARR
https://gitee.com/gudulubei/eyuo/issues/IFZARP
https://gitee.com/gudulubei/eyuo/issues/IFZARO
https://gitee.com/gudulubei/eyuo/issues/IFZARN
https://gitee.com/gudulubei/eyuo/issues/IFZARM
https://gitee.com/gudulubei/eyuo/issues/IFZARL
https://gitee.com/gudulubei/eyuo/issues/IFZARK
https://gitee.com/gudulubei/eyuo/issues/IFZARJ
https://gitee.com/gudulubei/eyuo/issues/IFZARI
https://gitee.com/gudulubei/eyuo/issues/IFZARH
https://gitee.com/gudulubei/eyuo/issues/IFZARG
https://gitee.com/gudulubei/eyuo/issues/IFZARF
https://gitee.com/gudulubei/eyuo/issues/IFZARE
https://gitee.com/gudulubei/eyuo/issues/IFZARD
https://gitee.com/gudulubei/eyuo/issues/IFZARC
https://gitee.com/gudulubei/eyuo/issues/IFZARA
https://gitee.com/gudulubei/eyuo/issues/IFZAR9
https://gitee.com/gudulubei/eyuo/issues/IFZAR8
https://gitee.com/gudulubei/eyuo/issues/IFZAR7
https://gitee.com/gudulubei/eyuo/issues/IFZAR6
https://gitee.com/gudulubei/eyuo/issues/IFZAR5
https://gitee.com/gudulubei/eyuo/issues/IFZAR4
https://gitee.com/gudulubei/eyuo/issues/IFZAR3
https://gitee.com/gudulubei/eyuo/issues/IFZAR2
https://gitee.com/gudulubei/eyuo/issues/IFZAR1
https://gitee.com/gudulubei/eyuo/issues/IFZAR0
https://gitee.com/gudulubei/eyuo/issues/IFZAQZ
https://gitee.com/gudulubei/eyuo/issues/IFZAQY
https://gitee.com/gudulubei/eyuo/issues/IFZAQX
https://gitee.com/gudulubei/eyuo/issues/IFZAQW
https://gitee.com/gudulubei/eyuo/issues/IFZAQV
https://gitee.com/gudulubei/eyuo/issues/IFZAQU
https://gitee.com/gudulubei/eyuo/issues/IFZAQT
https://gitee.com/gudulubei/eyuo/issues/IFZAQS
https://gitee.com/gudulubei/eyuo/issues/IFZAQQ
https://gitee.com/gudulubei/eyuo/issues/IFZAQP
https://gitee.com/gudulubei/eyuo/issues/IFZAQO
https://gitee.com/gudulubei/eyuo/issues/IFZAQN
https://gitee.com/gudulubei/eyuo/issues/IFZAQM
https://gitee.com/gudulubei/eyuo/issues/IFZAQL
https://gitee.com/gudulubei/eyuo/issues/IFZAQK
https://gitee.com/gudulubei/eyuo/issues/IFZAQJ
https://gitee.com/gudulubei/eyuo/issues/IFZAQI
https://gitee.com/gudulubei/eyuo/issues/IFZAQH
https://gitee.com/gudulubei/eyuo/issues/IFZAQG
https://gitee.com/gudulubei/eyuo/issues/IFZAQF
https://gitee.com/gudulubei/eyuo/issues/IFZAQE
https://gitee.com/gudulubei/eyuo/issues/IFZAQD
https://gitee.com/gudulubei/eyuo/issues/IFZAQC
https://gitee.com/gudulubei/eyuo/issues/IFZAQA
https://gitee.com/gudulubei/eyuo/issues/IFZAQ9
https://gitee.com/gudulubei/eyuo/issues/IFZAQ8
https://gitee.com/gudulubei/eyuo/issues/IFZAQ6
https://gitee.com/gudulubei/eyuo/issues/IFZAQ5
https://gitee.com/gudulubei/eyuo/issues/IFZAQ4
https://gitee.com/gudulubei/eyuo/issues/IFZAQ3
https://gitee.com/gudulubei/eyuo/issues/IFZAQ2
https://gitee.com/gudulubei/eyuo/issues/IFZAQ1
https://gitee.com/gudulubei/eyuo/issues/IFZAQ0
https://gitee.com/gudulubei/eyuo/issues/IFZAPZ
https://gitee.com/gudulubei/eyuo/issues/IFZAPY
https://gitee.com/gudulubei/eyuo/issues/IFZAPX
https://gitee.com/gudulubei/eyuo/issues/IFZAPW
https://gitee.com/gudulubei/eyuo/issues/IFZAPV
https://gitee.com/gudulubei/eyuo/issues/IFZAPU
https://gitee.com/gudulubei/eyuo/issues/IFZAPT
https://gitee.com/gudulubei/eyuo/issues/IFZAPS
https://gitee.com/gudulubei/eyuo/issues/IFZAPR
https://gitee.com/gudulubei/eyuo/issues/IFZAPP
https://gitee.com/gudulubei/eyuo/issues/IFZAPO
https://gitee.com/gudulubei/eyuo/issues/IFZAPN
https://gitee.com/gudulubei/eyuo/issues/IFZAPM
https://gitee.com/gudulubei/eyuo/issues/IFZAPL
https://gitee.com/gudulubei/eyuo/issues/IFZAPK
https://gitee.com/gudulubei/eyuo/issues/IFZAPJ
https://gitee.com/gudulubei/eyuo/issues/IFZAPI
https://gitee.com/gudulubei/eyuo/issues/IFZAPH
https://gitee.com/gudulubei/eyuo/issues/IFZAPG
https://gitee.com/gudulubei/eyuo/issues/IFZAPF
https://gitee.com/gudulubei/eyuo/issues/IFZAPE
https://gitee.com/gudulubei/eyuo/issues/IFZAPD
https://gitee.com/gudulubei/eyuo/issues/IFZAPC
https://gitee.com/gudulubei/eyuo/issues/IFZAPB
https://gitee.com/gudulubei/eyuo/issues/IFZAPA
https://gitee.com/gudulubei/eyuo/issues/IFZAP9
https://gitee.com/gudulubei/eyuo/issues/IFZAP8
https://gitee.com/gudulubei/eyuo/issues/IFZAP6
https://gitee.com/gudulubei/eyuo/issues/IFZAP5
https://gitee.com/gudulubei/eyuo/issues/IFZAP4
https://gitee.com/gudulubei/eyuo/issues/IFZAP3
https://gitee.com/gudulubei/eyuo/issues/IFZAP2
https://gitee.com/gudulubei/eyuo/issues/IFZAP1
https://gitee.com/gudulubei/eyuo/issues/IFZAOZ
https://gitee.com/gudulubei/eyuo/issues/IFZAOY
https://gitee.com/gudulubei/eyuo/issues/IFZAOX
https://gitee.com/gudulubei/eyuo/issues/IFZAOW
https://gitee.com/gudulubei/eyuo/issues/IFZAOV
https://gitee.com/gudulubei/eyuo/issues/IFZAOU
https://gitee.com/gudulubei/eyuo/issues/IFZAOT
https://gitee.com/gudulubei/eyuo/issues/IFZAOS
https://gitee.com/gudulubei/eyuo/issues/IFZAOR
https://gitee.com/gudulubei/eyuo/issues/IFZAOQ
https://gitee.com/gudulubei/eyuo/issues/IFZAOP
https://gitee.com/gudulubei/eyuo/issues/IFZAOO
https://gitee.com/gudulubei/eyuo/issues/IFZAOM
https://gitee.com/gudulubei/eyuo/issues/IFZAOL
https://gitee.com/gudulubei/eyuo/issues/IFZAOK
https://gitee.com/gudulubei/eyuo/issues/IFZAOJ
https://gitee.com/gudulubei/eyuo/issues/IFZAOI
https://gitee.com/gudulubei/eyuo/issues/IFZAOH
https://gitee.com/gudulubei/eyuo/issues/IFZAOG
https://gitee.com/gudulubei/eyuo/issues/IFZAOF
https://gitee.com/gudulubei/eyuo/issues/IFZAOE
https://gitee.com/gudulubei/eyuo/issues/IFZAOD
https://gitee.com/gudulubei/eyuo/issues/IFZAOC
https://gitee.com/gudulubei/eyuo/issues/IFZAOB
https://gitee.com/gudulubei/eyuo/issues/IFZAOA
https://gitee.com/gudulubei/eyuo/issues/IFZAO9
https://gitee.com/gudulubei/eyuo/issues/IFZAO8
https://gitee.com/gudulubei/eyuo/issues/IFZAO7
https://gitee.com/gudulubei/eyuo/issues/IFZAO6
https://gitee.com/gudulubei/eyuo/issues/IFZAO5
https://gitee.com/gudulubei/eyuo/issues/IFZAO4
https://gitee.com/gudulubei/eyuo/issues/IFZAO2
https://gitee.com/gudulubei/eyuo/issues/IFZAO1
https://gitee.com/gudulubei/eyuo/issues/IFZAO0
https://gitee.com/gudulubei/eyuo/issues/IFZANZ
https://gitee.com/gudulubei/eyuo/issues/IFZANY
https://gitee.com/gudulubei/eyuo/issues/IFZANX
https://gitee.com/gudulubei/eyuo/issues/IFZANW
https://gitee.com/gudulubei/eyuo/issues/IFZANV
https://gitee.com/gudulubei/eyuo/issues/IFZANU
https://gitee.com/gudulubei/eyuo/issues/IFZANT
https://gitee.com/gudulubei/eyuo/issues/IFZANS
https://gitee.com/gudulubei/eyuo/issues/IFZANR
https://gitee.com/gudulubei/eyuo/issues/IFZANQ
https://gitee.com/gudulubei/eyuo/issues/IFZANP
https://gitee.com/gudulubei/eyuo/issues/IFZANO
https://gitee.com/gudulubei/eyuo/issues/IFZANN
https://gitee.com/gudulubei/eyuo/issues/IFZANM
https://gitee.com/gudulubei/eyuo/issues/IFZANL
https://gitee.com/gudulubei/eyuo/issues/IFZANJ
https://gitee.com/gudulubei/eyuo/issues/IFZANH
https://gitee.com/gudulubei/eyuo/issues/IFZANG
https://gitee.com/gudulubei/eyuo/issues/IFZANF
https://gitee.com/gudulubei/eyuo/issues/IFZANE
https://gitee.com/gudulubei/eyuo/issues/IFZAND
https://gitee.com/gudulubei/eyuo/issues/IFZANC
https://gitee.com/gudulubei/eyuo/issues/IFZANB
https://gitee.com/gudulubei/eyuo/issues/IFZANA
https://gitee.com/gudulubei/eyuo/issues/IFZAN9
https://gitee.com/gudulubei/eyuo/issues/IFZAN8
https://gitee.com/gudulubei/eyuo/issues/IFZAN7
https://gitee.com/gudulubei/eyuo/issues/IFZAN6
https://gitee.com/gudulubei/eyuo/issues/IFZAN5
https://gitee.com/gudulubei/eyuo/issues/IFZAN4
https://gitee.com/gudulubei/eyuo/issues/IFZAN3
https://gitee.com/gudulubei/eyuo/issues/IFZAN2
https://gitee.com/gudulubei/eyuo/issues/IFZAN1
https://gitee.com/gudulubei/eyuo/issues/IFZAN0
https://gitee.com/gudulubei/eyuo/issues/IFZAMZ
https://gitee.com/gudulubei/eyuo/issues/IFZAMY
https://gitee.com/gudulubei/eyuo/issues/IFZAMX
https://gitee.com/gudulubei/eyuo/issues/IFZAMW
https://gitee.com/gudulubei/eyuo/issues/IFZAMV
https://gitee.com/gudulubei/eyuo/issues/IFZAMU
https://gitee.com/gudulubei/eyuo/issues/IFZAMT
https://gitee.com/gudulubei/eyuo/issues/IFZAMS
https://gitee.com/gudulubei/eyuo/issues/IFZAMR
https://gitee.com/gudulubei/eyuo/issues/IFZAMQ
https://gitee.com/gudulubei/eyuo/issues/IFZAMP
https://gitee.com/gudulubei/eyuo/issues/IFZAMO
https://gitee.com/gudulubei/eyuo/issues/IFZAMN
https://gitee.com/gudulubei/eyuo/issues/IFZAMM
https://gitee.com/gudulubei/eyuo/issues/IFZAML
https://gitee.com/gudulubei/eyuo/issues/IFZAMK
https://gitee.com/gudulubei/eyuo/issues/IFZAMJ
https://gitee.com/gudulubei/eyuo/issues/IFZAMH
https://gitee.com/gudulubei/eyuo/issues/IFZAMG
https://gitee.com/gudulubei/eyuo/issues/IFZAMF
https://gitee.com/gudulubei/eyuo/issues/IFZAME
https://gitee.com/gudulubei/eyuo/issues/IFZAMD
https://gitee.com/gudulubei/eyuo/issues/IFZAMC
https://gitee.com/gudulubei/eyuo/issues/IFZAMB
https://gitee.com/gudulubei/eyuo/issues/IFZAMA
https://gitee.com/gudulubei/eyuo/issues/IFZAM9
https://gitee.com/gudulubei/eyuo/issues/IFZAM8
https://gitee.com/gudulubei/eyuo/issues/IFZAM7
https://gitee.com/gudulubei/eyuo/issues/IFZAM6
https://gitee.com/gudulubei/eyuo/issues/IFZAM5
https://gitee.com/gudulubei/eyuo/issues/IFZAM4
https://gitee.com/gudulubei/eyuo/issues/IFZAM3
https://gitee.com/gudulubei/eyuo/issues/IFZAM1
https://gitee.com/gudulubei/eyuo/issues/IFZAM0
https://gitee.com/gudulubei/eyuo/issues/IFZALZ
https://gitee.com/gudulubei/eyuo/issues/IFZALY
https://gitee.com/gudulubei/eyuo/issues/IFZALX
https://gitee.com/gudulubei/eyuo/issues/IFZALV
https://gitee.com/gudulubei/eyuo/issues/IFZALU
https://gitee.com/gudulubei/eyuo/issues/IFZALT
https://gitee.com/gudulubei/eyuo/issues/IFZALS
https://gitee.com/gudulubei/eyuo/issues/IFZALR
https://gitee.com/gudulubei/eyuo/issues/IFZALQ
https://gitee.com/gudulubei/eyuo/issues/IFZALP
https://gitee.com/gudulubei/eyuo/issues/IFZALO
https://gitee.com/gudulubei/eyuo/issues/IFZALN
https://gitee.com/gudulubei/eyuo/issues/IFZALM
https://gitee.com/gudulubei/eyuo/issues/IFZALL
https://gitee.com/gudulubei/eyuo/issues/IFZALK
https://gitee.com/gudulubei/eyuo/issues/IFZALJ
https://gitee.com/gudulubei/eyuo/issues/IFZALI
https://gitee.com/gudulubei/eyuo/issues/IFZALH
https://gitee.com/gudulubei/eyuo/issues/IFZALG
https://gitee.com/gudulubei/eyuo/issues/IFZALF
https://gitee.com/gudulubei/eyuo/issues/IFZALD
https://gitee.com/gudulubei/eyuo/issues/IFZALC
https://gitee.com/gudulubei/eyuo/issues/IFZALB
https://gitee.com/gudulubei/eyuo/issues/IFZALA
https://gitee.com/gudulubei/eyuo/issues/IFZAL9
https://gitee.com/gudulubei/eyuo/issues/IFZAL8
https://gitee.com/gudulubei/eyuo/issues/IFZAL7
https://gitee.com/gudulubei/eyuo/issues/IFZAL6
https://gitee.com/gudulubei/eyuo/issues/IFZAL5
https://gitee.com/gudulubei/eyuo/issues/IFZAL4
https://gitee.com/gudulubei/eyuo/issues/IFZAL3
https://gitee.com/gudulubei/eyuo/issues/IFZAL2
https://gitee.com/gudulubei/eyuo/issues/IFZAL1
https://gitee.com/gudulubei/eyuo/issues/IFZAL0
https://gitee.com/gudulubei/eyuo/issues/IFZAKZ
https://gitee.com/gudulubei/eyuo/issues/IFZAKY
https://gitee.com/gudulubei/eyuo/issues/IFZAKX
https://gitee.com/gudulubei/eyuo/issues/IFZAKW
https://gitee.com/gudulubei/eyuo/issues/IFZAKV
https://gitee.com/gudulubei/eyuo/issues/IFZAKU
https://gitee.com/gudulubei/eyuo/issues/IFZAKS
https://gitee.com/gudulubei/eyuo/issues/IFZAKR
https://gitee.com/gudulubei/eyuo/issues/IFZAKQ
https://gitee.com/gudulubei/eyuo/issues/IFZAKP
https://gitee.com/gudulubei/eyuo/issues/IFZAKO
https://gitee.com/gudulubei/eyuo/issues/IFZAKN
https://gitee.com/gudulubei/eyuo/issues/IFZAKM
https://gitee.com/gudulubei/eyuo/issues/IFZAKK
https://gitee.com/gudulubei/eyuo/issues/IFZAKJ
https://gitee.com/gudulubei/eyuo/issues/IFZAKI
https://gitee.com/gudulubei/eyuo/issues/IFZAKH
https://gitee.com/gudulubei/eyuo/issues/IFZAKG
https://gitee.com/gudulubei/eyuo/issues/IFZAKF
https://gitee.com/gudulubei/eyuo/issues/IFZAKE
https://gitee.com/gudulubei/eyuo/issues/IFZAKD
https://gitee.com/gudulubei/eyuo/issues/IFZAKC
https://gitee.com/gudulubei/eyuo/issues/IFZAKB
https://gitee.com/gudulubei/eyuo/issues/IFZAKA
https://gitee.com/gudulubei/eyuo/issues/IFZAK9
https://gitee.com/gudulubei/eyuo/issues/IFZAK7
https://gitee.com/gudulubei/eyuo/issues/IFZAK6
https://gitee.com/gudulubei/eyuo/issues/IFZAK5
https://gitee.com/gudulubei/eyuo/issues/IFZAK4
https://gitee.com/gudulubei/eyuo/issues/IFZAK3
https://gitee.com/gudulubei/eyuo/issues/IFZAK2
https://gitee.com/gudulubei/eyuo/issues/IFZAK1
https://gitee.com/gudulubei/eyuo/issues/IFZAK0
https://gitee.com/gudulubei/eyuo/issues/IFZAJZ
https://gitee.com/gudulubei/eyuo/issues/IFZAJY
https://gitee.com/gudulubei/eyuo/issues/IFZAJX
https://gitee.com/gudulubei/eyuo/issues/IFZAJW
https://gitee.com/gudulubei/eyuo/issues/IFZAJV
https://gitee.com/gudulubei/eyuo/issues/IFZAJU
https://gitee.com/gudulubei/eyuo/issues/IFZAJT
https://gitee.com/gudulubei/eyuo/issues/IFZAJS
https://gitee.com/gudulubei/eyuo/issues/IFZAJR
https://gitee.com/gudulubei/eyuo/issues/IFZAJQ
https://gitee.com/gudulubei/eyuo/issues/IFZAJP
https://gitee.com/gudulubei/eyuo/issues/IFZAJN
https://gitee.com/gudulubei/eyuo/issues/IFZAJM
https://gitee.com/gudulubei/eyuo/issues/IFZAJL
https://gitee.com/gudulubei/eyuo/issues/IFZAJK
https://gitee.com/gudulubei/eyuo/issues/IFZAJJ
https://gitee.com/gudulubei/eyuo/issues/IFZAJI
https://gitee.com/gudulubei/eyuo/issues/IFZAJH
https://gitee.com/gudulubei/eyuo/issues/IFZAJG
https://gitee.com/gudulubei/eyuo/issues/IFZAJF
https://gitee.com/gudulubei/eyuo/issues/IFZAJE
https://gitee.com/gudulubei/eyuo/issues/IFZAJD
https://gitee.com/gudulubei/eyuo/issues/IFZAJC
https://gitee.com/gudulubei/eyuo/issues/IFZAJB
https://gitee.com/gudulubei/eyuo/issues/IFZAJA
https://gitee.com/gudulubei/eyuo/issues/IFZAJ9
https://gitee.com/gudulubei/eyuo/issues/IFZAJ8
https://gitee.com/gudulubei/eyuo/issues/IFZAJ7
https://gitee.com/gudulubei/eyuo/issues/IFZAJ5
https://gitee.com/gudulubei/eyuo/issues/IFZAJ4
https://gitee.com/gudulubei/eyuo/issues/IFZAJ2
https://gitee.com/gudulubei/eyuo/issues/IFZAJ1
https://gitee.com/gudulubei/eyuo/issues/IFZAJ0
https://gitee.com/gudulubei/eyuo/issues/IFZAIZ
https://gitee.com/gudulubei/eyuo/issues/IFZAIY
https://gitee.com/gudulubei/eyuo/issues/IFZAIX
https://gitee.com/gudulubei/eyuo/issues/IFZAIW
https://gitee.com/gudulubei/eyuo/issues/IFZAIV
https://gitee.com/gudulubei/eyuo/issues/IFZAIU
https://gitee.com/gudulubei/eyuo/issues/IFZAIT
https://gitee.com/gudulubei/eyuo/issues/IFZAIS
https://gitee.com/gudulubei/eyuo/issues/IFZAIR
https://gitee.com/gudulubei/eyuo/issues/IFZAIQ
https://gitee.com/gudulubei/eyuo/issues/IFZAIP
https://gitee.com/gudulubei/eyuo/issues/IFZAIO
https://gitee.com/gudulubei/eyuo/issues/IFZAIN
https://gitee.com/gudulubei/eyuo/issues/IFZAIM
https://gitee.com/gudulubei/eyuo/issues/IFZAIL
https://gitee.com/gudulubei/eyuo/issues/IFZAIJ
https://gitee.com/gudulubei/eyuo/issues/IFZAII
https://gitee.com/gudulubei/eyuo/issues/IFZAIH
https://gitee.com/gudulubei/eyuo/issues/IFZAIG
https://gitee.com/gudulubei/eyuo/issues/IFZAIF
https://gitee.com/gudulubei/eyuo/issues/IFZAIE
https://gitee.com/gudulubei/eyuo/issues/IFZAID
https://gitee.com/gudulubei/eyuo/issues/IFZAIC
https://gitee.com/gudulubei/eyuo/issues/IFZAIB
https://gitee.com/gudulubei/eyuo/issues/IFZAIA
https://gitee.com/gudulubei/eyuo/issues/IFZAI9
https://gitee.com/gudulubei/eyuo/issues/IFZAI8
https://gitee.com/gudulubei/eyuo/issues/IFZAI7
https://gitee.com/gudulubei/eyuo/issues/IFZAI6
https://gitee.com/gudulubei/eyuo/issues/IFZAI5
https://gitee.com/gudulubei/eyuo/issues/IFZAI4
https://gitee.com/gudulubei/eyuo/issues/IFZAI3
https://gitee.com/gudulubei/eyuo/issues/IFZAI2
https://gitee.com/gudulubei/eyuo/issues/IFZAI1
https://gitee.com/gudulubei/eyuo/issues/IFZAI0
https://gitee.com/gudulubei/eyuo/issues/IFZAHY
https://gitee.com/gudulubei/eyuo/issues/IFZAHX
https://gitee.com/gudulubei/eyuo/issues/IFZAHW
https://gitee.com/gudulubei/eyuo/issues/IFZAHV
https://gitee.com/gudulubei/eyuo/issues/IFZAHU
https://gitee.com/gudulubei/eyuo/issues/IFZAHS
https://gitee.com/gudulubei/eyuo/issues/IFZAHR
https://gitee.com/gudulubei/eyuo/issues/IFZAHQ
https://gitee.com/gudulubei/eyuo/issues/IFZAHP
https://gitee.com/gudulubei/eyuo/issues/IFZAHO
https://gitee.com/gudulubei/eyuo/issues/IFZAHN
https://gitee.com/gudulubei/eyuo/issues/IFZAHM
https://gitee.com/gudulubei/eyuo/issues/IFZAHL
https://gitee.com/gudulubei/eyuo/issues/IFZAHK
https://gitee.com/gudulubei/eyuo/issues/IFZAHJ
https://gitee.com/gudulubei/eyuo/issues/IFZAHI
https://gitee.com/gudulubei/eyuo/issues/IFZAHH
https://gitee.com/gudulubei/eyuo/issues/IFZAHG
分段回归是建模趋势变化的可解释框架;网格搜索虽然朴素,但在估计变化点位置上行之有效;BIC 等惩罚准则在拟合优度与模型复杂度之间做出了取舍,抑制了过拟合倾向;搜索空间约束——边缘缓冲区、最小分段长度、最大节点数——进一步稳定了模型并降低了计算开销。
网格搜索在计算效率上确实算不上最优解,但它的透明度是一大优势,作为基线方法和实际工程中的可用方案都没有问题。面对更复杂的场景,可以在此框架基础上引入高级优化策略或贝叶斯变化点检测方法。下一篇教程将讨论如何把这套方法应用到更复杂的实际场景中。
AtomGit 是由开放原子开源基金会联合 CSDN 等生态伙伴共同推出的新一代开源与人工智能协作平台。平台坚持“开放、中立、公益”的理念,把代码托管、模型共享、数据集托管、智能体开发体验和算力服务整合在一起,为开发者提供从开发、训练到部署的一站式体验。
更多推荐


所有评论(0)