一、本篇前置衔接
第九十二篇我们完成Redisson源码拆解、手写复刻、底层内核穿透,彻底明白分布式锁代码层、脚本层、线程层原理。到此为止,代码、源码、坑点、运维、监控、面试全部讲透。但很多开发最大的困惑依旧存在:不同体量公司为什么锁架构完全不一样?小公司单体锁够用,大厂为什么要分片、双锁、红锁、异地多活?架构到底如何迭代、如何选型、如何平滑升级?第九十二篇,专门复盘互联网大厂分布式锁完整演进路线,从零架构到金融级架构,层层拆解每一代架构优缺点、适用人群、踩坑记录,给不同规模企业一套永久通用的分级落地标准。
二、第一代架构:原始单机锁(初创公司最简版)
架构形态:单Redis节点、String结构、原生SETNX、无集群、无主从、无过期优化。
适用场景:初创项目、内部后台、低并发管理系统、日活一万以内小型业务。业务简单、无秒杀、无大额资金流转。
核心痛点:宕机直接丢锁、无主从备份、无原子判断、极易误删、无续期机制。线上故障频发,只能勉强维持简单互斥,完全不具备生产稳定性。
淘汰原因:流量稍微上涨、服务器意外重启、网络波动,直接出现超卖、重复提交、数据错乱。无任何容错能力,现在正规企业基本全部淘汰。
三、第二代架构:标准主从锁(中小企业通用版)
架构形态:一主一从/一主两从、哨兵模式、Redisson基础可重入锁、开启看门狗、Lua原子脚本、自动主从切换。
适用场景:中小企业、普通电商、常规交易、日活十万以内、无超大流量爆款。追求稳定、开发成本低、运维简单。
架构优势:主从备份防止单节点宕机、哨兵自动故障转移、看门狗保障业务抖动不丢锁、Lua杜绝并发漏洞、代码规范简单易维护。
遗留短板:主从异步复制存在极小概率丢锁、热点Key无法承载超大流量、单节点CPU上限固定、无法支撑大促脉冲流量。
四、第三代架构:虚拟分片锁(中大型电商爆款版)
架构形态:Cluster集群、虚拟分片打散热点、本地+分布式双层锁、网关前置削峰、库存异步对账。
适用场景:中型电商、活动频繁、秒杀爆款、日活几十万、频繁大促、瞬时脉冲流量高。
解决痛点:解决单Key热点打爆、单机CPU瓶颈、锁排队拥堵、线程堆积、大促流量雪崩。把一把热点锁拆分为几十把普通锁,流量均匀打散,吞吐量提升数倍。
架构代价:拆分后数据割裂、对账难度上升、开发复杂度提高、必须配套异步对账纠偏、分片倾斜监控。
五、第四代架构:红锁强一致架构(金融资金级)
架构形态:多独立物理节点、无主从、过半写入、RedLock红锁、无异步复制、强制强一致。
适用场景:银行、支付、账务、清算、大额扣款、资金结算、零容忍数据错乱核心链路。
核心优势:彻底根治主从切换丢锁、集群脑裂、异步延迟问题,是Redis锁体系内一致性最高的架构。
架构代价:性能暴跌、RT翻倍、运维繁重、硬件成本高、不适合高并发秒杀、节点宕机修复困难。
六、第五代架构:异地多活全域锁(大厂顶级架构)
架构形态:同城双机房+异地灾备、本地就近抢锁、全域中台仲裁、跨区状态同步、故障一键切流。
适用场景:头部互联网大厂、全国性业务、金融支付、需要全年99.999%可用性、禁止全域宕机。
解决痛点:单机房断电、光缆断裂、区域性网络瘫痪、极端灾难导致业务停摆。做到一地故障、多地承接、用户无感知、业务不中断。
架构代价:架构复杂度天花板、研发成本极高、运维门槛极高、普通中小企业完全无法复刻。
七、企业分级选型黄金标准(直接照搬、永久通用)
1、初创团队(0~10万日活):哨兵主从 + 普通可重入锁,不做多余架构,够用、简单、易维护。禁止过度架构、禁止盲目分片。
2、成长型企业(10~50万日活):Cluster集群 + 常规分片 + 基础监控,优化热点、抗流量波动,保证活动不崩盘。
3、电商活动型业务(50~200万日活):双层锁 + 虚拟分片 + 网关削峰 + 异步对账,专门抗秒杀、抗脉冲流量。
4、资金金融业务(不限流量):独立集群 + 红锁强一致,放弃性能、死守数据,资金链路绝不妥协。
5、头部大厂全域业务:多机房异地多活 + 全域锁中台,做到灾难级容灾、全年无宕机。
八、架构避坑:90%企业踩过的四大架构误区
误区一:小项目盲目上集群分片。业务量极小强行拆分分片,代码复杂度翻倍、BUG变多、维护困难,属于典型过度架构。
误区二:非资金业务乱用红锁。普通秒杀业务强行使用红锁,吞吐量暴跌、集群卡顿,没必要追求极致一致性。
误区三:混用不同架构锁。项目内同时存在原生锁、手写锁、分片锁、红锁,架构混乱、排查困难、后期无法维护。
误区四:只升级架构不升级监控。集群越复杂、监控越重要,无监控复杂集群等于定时炸弹,分片倾斜、锁残留无法及时发现。
九、本篇小结
技术不分好坏,适配才是王道。第九十二篇完整复盘分布式锁五代架构演进,从最简单单机锁到顶级异地多活锁,清晰拆解每一代架构的优缺点、适用人群、落地代价。第九十二篇学会怎么用、怎么排错、怎么看懂源码,本篇学会怎么选、怎么迭代、怎么贴合公司体量做架构。看懂本篇,不再盲目跟风架构、不再胡乱选型,能够根据业务流量、资金等级、运维能力定制最合适的分布式锁方案。下一篇第三十四篇,专项拆解线上最难排查、最诡异、复现概率极低的隐性格级故障,做全系列最终隐患清零。
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/38267262.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/20546873.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/27173532.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/98946350.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/37961262.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/65278635.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/46783773.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/56412687.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/37111840.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/57395944.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/57228598.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/49565633.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/20501761.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/54261576.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/55672864.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/45078878.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/36142356.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/01621128.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/71201120.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/97823507.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/27419797.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/46006752.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/70983114.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/21902646.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/49416556.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/74290070.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/17114323.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/31916049.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/13453888.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/91875445.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/59472051.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/19901285.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/68082206.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/75678056.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/44894078.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/68631279.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/70211394.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/83459826.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/31294808.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/68094284.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/68665389.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/94242248.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/09860282.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/80797313.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/67506776.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/52794593.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/94646059.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/24515431.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/51616908.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/64279069.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/59261470.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/86424283.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/06732256.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/75011467.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/27302365.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/50144664.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/27976417.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/52380256.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/81237402.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/68646869.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/18752887.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/91511262.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/89848076.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/08087357.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/65126935.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/27267896.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/46098640.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/61430913.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/64891908.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/54266847.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/05338593.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/02807730.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/49499897.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/21846896.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/57934047.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/64964176.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/97512264.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/94295997.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/18986134.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/02740218.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/88290568.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/13850769.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/50167519.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/94711263.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/59167958.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/16487591.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/89486480.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/54731780.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/69378416.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/46364350.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/91160257.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/23156739.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/85607614.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/76949449.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/72651319.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/08018093.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/86423624.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/53505713.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/91808242.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/42618475.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/54170372.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/02116412.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/12481212.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/60471497.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/32370739.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/24954769.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/68987665.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/01159903.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/38926987.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/29009544.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/75254125.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/61024231.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/61361873.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/05088308.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/01984965.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/67569493.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/50391963.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/57806924.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/45054544.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/53031780.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/64730066.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/80231398.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/91937643.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/18907743.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/83638074.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/69616789.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/31529755.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/97967638.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/83282427.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/50830170.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/53179490.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/26724032.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/77722171.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/54229340.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/15497244.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/74168853.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/43021618.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/02064938.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/50301983.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/13607143.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/25339434.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/18177890.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/98290030.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/83857395.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/57776438.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/56312407.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/85526423.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/32795948.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/07316817.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/32011584.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/21342002.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/26408049.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/83408280.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/27913144.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/53224181.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/08720450.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/45086521.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/61970316.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/02661766.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/97868958.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/03081011.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/07646755.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/25216619.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/10671993.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/13257567.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/68844714.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/81944620.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/38913264.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/76318423.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/65573395.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/35606523.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/16434762.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/90830960.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/62472374.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/47512560.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/00587152.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/86840667.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/12153859.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/25682732.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/68538780.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/64659028.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/40745076.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/54578204.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/36152847.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/93804380.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/76305545.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/35972213.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/16893101.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/50737023.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/28054698.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/38787425.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/49859109.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/49140999.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/66101976.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/79456083.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/46433197.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/23889507.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/94887074.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/38686227.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/43416351.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/08109725.md/
https://gitee.com/seflhyhlamgu/hgmfdn/blob/master/02230782.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/38744762.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/73262008.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/42303974.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/10946303.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/24131612.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/94593413.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/56867821.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/64907298.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/01108761.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/39450366.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/42608951.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/95919296.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/35149497.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/58944316.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/42709339.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/32902334.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/95193519.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/38089840.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/01083090.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/41305156.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/16595136.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/75064728.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/78946754.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/99128926.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/27509041.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/67081411.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/89625372.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/67969499.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/10295505.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/11905282.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/74908471.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/46702888.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/19494283.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/87150572.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/38608524.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/02071972.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/91839966.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/71967956.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/08040891.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/57432107.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/46178752.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/80521559.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/09754375.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/22345644.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/15599295.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/44553108.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/80543978.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/16577626.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/23992175.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/54240370.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/69356816.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/78819938.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/92674768.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/50273927.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/64287981.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/44114881.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/71650942.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/84569010.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/34485468.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/76620356.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/75717230.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/51239270.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/55695656.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/73083378.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/89794097.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/12160658.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/36534414.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/84212419.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/62011540.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/81689757.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/36109654.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/40896984.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/61666651.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/45408196.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/78215120.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/20827237.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/91286562.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/35837161.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/66688266.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/87179323.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/08315651.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/72485297.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/09650109.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/05623853.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/72204862.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/73499270.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/68044282.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/24408001.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/61508210.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/68348821.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/00889004.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/42023482.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/02714549.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/68651297.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/20063119.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/03070356.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/42374813.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/08771697.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/05601757.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/96287169.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/49820490.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/37238365.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/19742785.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/42746102.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/86028581.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/75325372.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/20738430.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/94131104.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/67540154.md/
https://gitee.com/melhzvc31vx2/nicnlq/blob/master/46727802.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/83169290.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/65321040.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/06169425.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/43480180.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/05784707.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/83808607.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/94295352.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/73499383.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/43516077.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/74205297.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/16774779.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/94207792.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/99775195.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/51895022.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/95598973.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/50234639.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/79354393.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/46756254.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/54889544.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/76569018.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/50423385.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/06050048.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/74095171.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/57255853.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/16601333.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/90813983.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/33210234.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/54378320.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/56031426.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/63158078.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/98122271.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/43742325.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/87917503.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/98833358.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/48433819.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/13343651.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/16464737.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/88931254.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/38341178.md/
https://gitee.com/kowisb8ejdb3/rpxwof/blob/master/36432378.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/79088471.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/53060556.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/10816423.md/
https://gitee.com/anjyfrtsu7r5/qslqus/blob/master/31863179.md/
https://gitee.com/dcugrjjbeq0t/vfldnl/blob/master/56275176.md/
https://gitee.com/kiobywbnw54h/rqmphy/blob/master/93414988.md/


