-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUC.json
1279 lines (1272 loc) · 29.8 KB
/
UC.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"share_index": "UC音乐",
"share_name": "柏林之声",
"share_id": "169fb8c3df7e4"
},
{
"share_index": "UC",
"share_name": "总资源",
"share_id": "f4782ecce4eb4"
},
{
"share_index": "UC",
"share_name": "合集",
"share_id": "6ef760613aab4"
},
{
"share_index": "UC",
"share_name": "网络资源合集",
"share_id": "13a3cab489884"
},
{
"share_index": "UC",
"share_name": "⭐4K高品质国外电影大合集",
"share_id": "66c8aa3237cf4"
},
{
"share_index": "UC",
"share_name": "🦑海贼王 更1115",
"share_id": "6535f6eb40cb4"
},
{
"share_index": "UC",
"share_name": "🤖名侦探柯南 更1189",
"share_id": "3a6b0b0bfc254"
},
{
"share_index": "UC",
"share_name": "布达拉宫 纪录片 更3",
"share_id": "fc9cd15da5674"
},
{
"share_index": "UC",
"share_name": "边水往事 更4",
"share_id": "980a50c6d46d4"
},
{
"share_index": "UC",
"share_name": "法证先锋6 港剧 4K高码60帧 更15",
"share_id": "93aa1cf3468d4"
},
{
"share_index": "UC",
"share_name": "柳舟记 4K 更12",
"share_id": "daed4eb023d94"
},
{
"share_index": "UC",
"share_name": "四海重明 4K 更26",
"share_id": "14c5df5aabb84"
},
{
"share_index": "UC",
"share_name": "九部的检察官 更8",
"share_id": "40fcc41284eb4"
},
{
"share_index": "UC",
"share_name": "孤舟 4K 更21",
"share_id": "d75864ff21994"
},
{
"share_index": "UC",
"share_name": "幸福草 更16",
"share_id": "efb4d04728304"
},
{
"share_index": "UC",
"share_name": "私藏浪漫 32集全",
"share_id": "ca871fe9586f4"
},
{
"share_index": "UC",
"share_name": "小夫妻 36集全",
"share_id": "f897de55463e4"
},
{
"share_index": "UC",
"share_name": "她和她的他们 20集全",
"share_id": "d02564bc3a2b4"
},
{
"share_index": "UC",
"share_name": "少年白马醉春风 40集全",
"share_id": "16bb55f21eb04"
},
{
"share_index": "UC",
"share_name": "燃!沙排少女 36集全",
"share_id": "48cb4adf55f04"
},
{
"share_index": "UC",
"share_name": "拂玉鞍 24集全",
"share_id": "2e95665d3a654"
},
{
"share_index": "UC",
"share_name": "梦想城 39集全",
"share_id": "9ae647c4f0074"
},
{
"share_index": "UC",
"share_name": "冰雪谣 24集全",
"share_id": "5ca2cb7f245b4"
},
{
"share_index": "UC",
"share_name": "恋爱麻烦,但是甜 24集全",
"share_id": "b5910ea6f0464"
},
{
"share_index": "UC",
"share_name": "塑胶花 台剧 10集全",
"share_id": "f1827811c37d4"
},
{
"share_index": "UC",
"share_name": "唐朝诡事录之西行 40集全",
"share_id": "eafa330f52bd4"
},
{
"share_index": "UC",
"share_name": "遇见你的那天 14集全",
"share_id": "bcbe6927582d4"
},
{
"share_index": "UC",
"share_name": "拜托了,身体里的她 24集全",
"share_id": "28178f8c3aee4"
},
{
"share_index": "UC",
"share_name": "赤热 34集全",
"share_id": "74125ba541584"
},
{
"share_index": "UC",
"share_name": "沸腾的群山 28集全",
"share_id": "5c1026de1e6e4"
},
{
"share_index": "UC",
"share_name": "孤战迷城 40集全",
"share_id": "9716d4f0514b4"
},
{
"share_index": "UC",
"share_name": "你比星光美丽 40集全",
"share_id": "14756a3d8a544"
},
{
"share_index": "UC",
"share_name": "长相思第二季 23集全",
"share_id": "ab1d4cdc46354"
},
{
"share_index": "UC",
"share_name": "上有老下有小 40集全",
"share_id": "3c6a9b0a08734"
},
{
"share_index": "UC",
"share_name": "芥子时光 32集全",
"share_id": "2cf6e1dafb2e4"
},
{
"share_index": "UC",
"share_name": "第二次初见 36集全",
"share_id": "cd4cc247b1a04"
},
{
"share_index": "UC",
"share_name": "错位 15集全",
"share_id": "6e72cfda7eec4"
},
{
"share_index": "UC",
"share_name": "珠玉在侧 24集全",
"share_id": "a5c34e83ea7d4"
},
{
"share_index": "UC",
"share_name": "度华年 40集全",
"share_id": "747d9d0165c44"
},
{
"share_index": "UC",
"share_name": "我的盲盒恋人 24集全",
"share_id": "631bcae409ca4"
},
{
"share_index": "UC",
"share_name": "消失的大象 12集全",
"share_id": "5d8e234305ec4"
},
{
"share_index": "UC",
"share_name": "执行法官 40集全",
"share_id": "3b4442042fa54"
},
{
"share_index": "UC",
"share_name": "时光代理人 24集全",
"share_id": "af6b3cebe12c4"
},
{
"share_index": "UC",
"share_name": "侯门夫人不好当 更20",
"share_id": "a835e44ab22b4"
},
{
"share_index": "UC",
"share_name": "江城诡事 更12",
"share_id": "fe756be64a664"
},
{
"share_index": "UC",
"share_name": "良辰好景再逢君 更23",
"share_id": "ab79c1309fbe4"
},
{
"share_index": "UC",
"share_name": "锦医风华 更20",
"share_id": "dd0ab85c24624"
},
{
"share_index": "UC",
"share_name": "无主之花 更21",
"share_id": "917aac17d0df4"
},
{
"share_index": "UC",
"share_name": "我们在黑夜中相拥 24集全",
"share_id": "3a88140af5794"
},
{
"share_index": "UC",
"share_name": "公主请回家 20集全",
"share_id": "2409ccc0d0b64"
},
{
"share_index": "UC",
"share_name": "仙帝归来当赘婿 22集全",
"share_id": "99d13f927f864"
},
{
"share_index": "UC",
"share_name": "都市惧集(台湾)34集全",
"share_id": "1b7539c55bc14"
},
{
"share_index": "UC",
"share_name": "颜无双 24集全",
"share_id": "aefe0c25cf104"
},
{
"share_index": "UC",
"share_name": "有花在洲 28集全",
"share_id": "a73018b8f4b34"
},
{
"share_index": "UC",
"share_name": "赵小姐的日记 12集全",
"share_id": "0e2af7f4974f4"
},
{
"share_index": "UC",
"share_name": "情难自禁 20集全",
"share_id": "dc9b7d635e4b4"
},
{
"share_index": "UC",
"share_name": "1818编辑部 18集全",
"share_id": ""
},
{
"share_index": "UC",
"share_name": "1045a55462a84",
"share_id": ""
},
{
"share_index": "UC",
"share_name": "初嫁 24集全",
"share_id": "d802865eab0a4"
},
{
"share_index": "UC",
"share_name": "唐朝异闻录 20集全",
"share_id": "82f8985f5c5f4"
},
{
"share_index": "UC",
"share_name": "全资进组2 24集全",
"share_id": "9dd949f0d2394"
},
{
"share_index": "UC",
"share_name": "双生神捕之墙头马上 24集全",
"share_id": "00d425ff028d4"
},
{
"share_index": "UC",
"share_name": "陆地键仙 更39(周一周四)",
"share_id": "a36ac3273ced4"
},
{
"share_index": "UC",
"share_name": "灵武大陆 更10(周一周五)",
"share_id": "c04704ed399e4"
},
{
"share_index": "UC",
"share_name": "独步万古 更86 (周二周五)",
"share_id": "fbb4fbb0f61d4"
},
{
"share_index": "UC",
"share_name": "丹道至尊 更69 (周二周五)",
"share_id": "a5625963e16d4"
},
{
"share_index": "UC",
"share_name": "百炼飞升录 更82 (周二周五)",
"share_id": "c8f8d01dfa4d4"
},
{
"share_index": "UC",
"share_name": "我的微信通龙宫 更5 (周二周五)",
"share_id": "5a73e58a232c4"
},
{
"share_index": "UC",
"share_name": "绝世战魂 更35 (周二周六)",
"share_id": "b757ae9d60c04"
},
{
"share_index": "UC",
"share_name": "炼气十万年 更157 (周二周六)",
"share_id": "6d1fc60bda464"
},
{
"share_index": "UC",
"share_name": "隐世宗门掌教 更46(周三周六)",
"share_id": "c0291f09b9d74"
},
{
"share_index": "UC",
"share_name": "剑道第一仙 更41 (周三周日)",
"share_id": "bf271004ea0d4"
},
{
"share_index": "UC",
"share_name": "仙逆 更49",
"share_id": "73c885f5e32e4"
},
{
"share_index": "UC",
"share_name": "金蚕往事 更11",
"share_id": "af78afd432f34"
},
{
"share_index": "UC",
"share_name": "散修之王 更23",
"share_id": "7dac3c7f0d5d4"
},
{
"share_index": "UC",
"share_name": "怪想售 更3",
"share_id": "53c3e66e52ce4"
},
{
"share_index": "UC",
"share_name": "吞噬星空 更132",
"share_id": "56882e84c9494"
},
{
"share_index": "UC",
"share_name": "笼中人 更3",
"share_id": "167ca5e15cdf4"
},
{
"share_index": "UC",
"share_name": "斩神之凡尘神域 更4",
"share_id": "9c3b936ca40e4"
},
{
"share_index": "UC",
"share_name": "念无双 更4",
"share_id": "7db4ac7175ea4"
},
{
"share_index": "UC",
"share_name": "遮天 更70",
"share_id": "265ae0ba84c14"
},
{
"share_index": "UC",
"share_name": "一念永恒第三季 更10",
"share_id": "e787d2e93d1d4"
},
{
"share_index": "UC",
"share_name": "少年白马醉春风2 更6 (含第1季)",
"share_id": "ba2c7dc5d42a4"
},
{
"share_index": "UC",
"share_name": "天庭板砖侠 更12",
"share_id": "acf0843f7cbc4"
},
{
"share_index": "UC",
"share_name": "风灵玉秀 更26特别篇",
"share_id": "da7e9fefab4a4"
},
{
"share_index": "UC",
"share_name": "今天的晚餐就是你 更12",
"share_id": "8e5b3ccbde084"
},
{
"share_index": "UC",
"share_name": "剑来 更3",
"share_id": "fb56519ed9ad4"
},
{
"share_index": "UC",
"share_name": "神印王座 更120",
"share_id": "23fbd1f239174"
},
{
"share_index": "UC",
"share_name": "元尊 更15",
"share_id": "f2c6a1bdb2004"
},
{
"share_index": "UC",
"share_name": "师兄啊师兄 更50",
"share_id": "6547fea6915e4"
},
{
"share_index": "UC",
"share_name": "民调局异闻录第2季/白发沈辣 更7(含第1季)",
"share_id": "ce303906ab294"
},
{
"share_index": "UC",
"share_name": "邂逅她的少女时代 更14",
"share_id": "ed7f5544dc834"
},
{
"share_index": "UC",
"share_name": "是王者啊? 更38",
"share_id": "efb2be2e2d694"
},
{
"share_index": "UC",
"share_name": "全职法师 特别篇 神秘委托 更1 (含1-6季)",
"share_id": "63784f97d8cc4"
},
{
"share_index": "UC",
"share_name": "完美世界 更176",
"share_id": "3a0256e336da4"
},
{
"share_index": "UC",
"share_name": "全职高手第三季 更13",
"share_id": "039e3b1ddca84"
},
{
"share_index": "UC",
"share_name": "永生 更44 海噬仙灵 (含前3篇章)",
"share_id": "902bb67313064"
},
{
"share_index": "UC",
"share_name": "百炼成神 更90",
"share_id": "d3b46985b0b34"
},
{
"share_index": "UC",
"share_name": "风云变 更15",
"share_id": "a4c933c3bd914"
},
{
"share_index": "UC",
"share_name": "成何体统 更14",
"share_id": "c115bfdbf1cb4"
},
{
"share_index": "UC",
"share_name": "有兽焉 更39",
"share_id": "4590bf90b0914"
},
{
"share_index": "UC",
"share_name": "无聊就完结 更9",
"share_id": "8014dab04f4d4"
},
{
"share_index": "UC",
"share_name": "神墓第二季 更3(含第1季)",
"share_id": "66e1c872a4894"
},
{
"share_index": "UC",
"share_name": "凡人修仙传 更114",
"share_id": "329ae03f81504"
},
{
"share_index": "UC",
"share_name": "斗罗大陆2 更62 (含第1季)",
"share_id": "edcc0cb2f4fc4"
},
{
"share_index": "UC",
"share_name": "狐妖小红娘12 镜花缘篇 更4 (含前11季)",
"share_id": "c3c5eeb7bb4b4"
},
{
"share_index": "UC",
"share_name": "神武天尊 更5",
"share_id": "d948147aa1704"
},
{
"share_index": "UC",
"share_name": "白色闪电 更6",
"share_id": "f9aef9b928094"
},
{
"share_index": "UC",
"share_name": "从姑获鸟开始之龙城风云 更11",
"share_id": "9874ba1ad1364"
},
{
"share_index": "UC",
"share_name": "斗破苍穹年番 更107",
"share_id": "d6b4c7e316764"
},
{
"share_index": "UC",
"share_name": "仙武传 更74",
"share_id": "9bf8c10957464"
},
{
"share_index": "UC",
"share_name": "赘婿第二季 更4 (含第1季)",
"share_id": "6a5ac5fdb22d4"
},
{
"share_index": "UC",
"share_name": "幻宠师 更13",
"share_id": "aed6804c87794"
},
{
"share_index": "UC",
"share_name": "我的三体第四季 更6 (含前3季)",
"share_id": "5d9a9bea2e6a4"
},
{
"share_index": "UC",
"share_name": "小兵传奇 更17",
"share_id": "24bbd6ce3d544"
},
{
"share_index": "UC",
"share_name": "金吾卫之风起金陵 16集全",
"share_id": "ee25d8febdfe4"
},
{
"share_index": "UC",
"share_name": "回铭之烽火三月 16集全",
"share_id": "d23a7f50e7d94"
},
{
"share_index": "UC",
"share_name": "诛仙 52集完结",
"share_id": "bd020aee83424"
},
{
"share_index": "UC",
"share_name": "冰火魔厨 156集全",
"share_id": "cec8bfc7ac0f4"
},
{
"share_index": "UC",
"share_name": "沧元图东宁府番外篇 4集全 (含第1季)",
"share_id": "f80d7f3123f64"
},
{
"share_index": "UC",
"share_name": "眷思量第二季 15集全 (含第1季)",
"share_id": "53f491fad0ae4"
},
{
"share_index": "UC",
"share_name": "三国杀:太平天书 12集全",
"share_id": "d97d7e0591df4"
},
{
"share_index": "UC",
"share_name": "茶啊二中第五季 8集全 (含前4季+大电影)",
"share_id": "f187403a0d894"
},
{
"share_index": "UC",
"share_name": "反派初始化 16集全",
"share_id": "80afdd83d8184"
},
{
"share_index": "UC",
"share_name": "开局一座山2 24集全(含第1季)",
"share_id": "b8c9b10b94e94"
},
{
"share_index": "UC",
"share_name": "暗河传 26集全",
"share_id": "7f809a0215d54"
},
{
"share_index": "UC",
"share_name": "瑞克和莫蒂:日漫版 更1",
"share_id": "9e4fd05c33b14"
},
{
"share_index": "UC",
"share_name": "间谍过家家 代号:白 剧场版 蓝光原盘REMUX",
"share_id": "2d0b5d1094174"
},
{
"share_index": "UC",
"share_name": "你的名字 4KHDR高码 多音轨",
"share_id": "af6b2a0f7f084"
},
{
"share_index": "UC",
"share_name": "夏目友人帐 1-6季+剧场版+OVA",
"share_id": "83fa0f23f1bf4"
},
{
"share_index": "UC",
"share_name": "外星也难民1-5季",
"share_id": "c419aea932dd4"
},
{
"share_index": "UC",
"share_name": "瑞克和莫蒂1-7季",
"share_id": "59c3df814cc54"
},
{
"share_index": "UC",
"share_name": "烈焰追击 4K EDR 高码率",
"share_id": "f2d90b7bf2514"
},
{
"share_index": "UC",
"share_name": "同盟",
"share_id": "7fd0cb1540074"
},
{
"share_index": "UC",
"share_name": "因果报应 4KSDR60帧",
"share_id": "6389141c27444"
},
{
"share_index": "UC",
"share_name": "生死试炼 4KSDR60帧",
"share_id": "ca4a82ab34694"
},
{
"share_index": "UC",
"share_name": "欢迎来到我身边 4KSDR60帧",
"share_id": "c3a92329cb564"
},
{
"share_index": "UC",
"share_name": "死亡大乐透 4K",
"share_id": "3619c5e018114"
},
{
"share_index": "UC",
"share_name": "重见天日4KEDR高码",
"share_id": "ea59160018ec4"
},
{
"share_index": "UC",
"share_name": "云边有个小卖部 4K高码+1080P",
"share_id": "3700ef8579ff4"
},
{
"share_index": "UC",
"share_name": "神偷奶爸4 4K杜比视界HDR10+",
"share_id": "a07f0a52d3ac4"
},
{
"share_index": "UC",
"share_name": "疯狂的麦克斯:狂暴女神 4KHDR杜比视界",
"share_id": "4dcedf40ecea4"
},
{
"share_index": "UC",
"share_name": "登月大计划 4KHDR高码",
"share_id": "dc0067db012d4"
},
{
"share_index": "UC",
"share_name": "阴阳守山人 4K EDR高码",
"share_id": "734e36df14684"
},
{
"share_index": "UC",
"share_name": "龙卷风 4KHDR",
"share_id": "222bf82811ec4"
},
{
"share_index": "UC",
"share_name": "穿过月亮的旅行 4K SDR60帧高码",
"share_id": "da4af4ff988a4"
},
{
"share_index": "UC",
"share_name": "海关战线 4K SDR 60帧高码",
"share_id": "e4924a954e3d4"
},
{
"share_index": "UC",
"share_name": "闹事之徒 4K HDR",
"share_id": "44939f815af84"
},
{
"share_index": "UC",
"share_name": "热血杀手 4K高码",
"share_id": "0e8d6ceb9bec4"
},
{
"share_index": "UC",
"share_name": "二郎神之深海蛟龙 4KSDR60帧",
"share_id": "66995901f4584"
},
{
"share_index": "UC",
"share_name": "狄仁杰之天宫蜃楼 4KSDR60帧",
"share_id": "c868e969814c4"
},
{
"share_index": "UC",
"share_name": "醉后一拳 4K",
"share_id": "917fe74f73154"
},
{
"share_index": "UC",
"share_name": "错过你的那些年",
"share_id": "da48f67bc6444"
},
{
"share_index": "UC",
"share_name": "玛克辛",
"share_id": "0a12eff9d29a4"
},
{
"share_index": "UC",
"share_name": "鬼天厦",
"share_id": "bc3fe3aad6134"
},
{
"share_index": "UC",
"share_name": "车顶上的玄天上帝",
"share_id": "b0b86863435f4"
},
{
"share_index": "UC",
"share_name": "珊迪大电影:拯救比奇堡",
"share_id": "f6c8919ed7a04"
},
{
"share_index": "UC",
"share_name": "苍狼之浴血绝杀 4KSDR60帧",
"share_id": "896cacca79804"
},
{
"share_index": "UC",
"share_name": "出门在外 4KSDR60帧/120帧高码",
"share_id": "de1f61de2f8d4"
},
{
"share_index": "UC",
"share_name": "殊死一搏 4K高码",
"share_id": "bfa1d1bdd4484"
},
{
"share_index": "UC",
"share_name": "死侍与金刚狼 4K",
"share_id": "2550bdc15b064"
},
{
"share_index": "UC",
"share_name": "哪吒·魔童归来 4KSDR60帧高码",
"share_id": "4bcde2381ecc4"
},
{
"share_index": "UC",
"share_name": "破墓 蓝光原盘 REMUX",
"share_id": "02351e9b72a14"
},
{
"share_index": "UC",
"share_name": "龙拳小子2",
"share_id": "41b0f0058eb14"
},
{
"share_index": "UC",
"share_name": "沙漏",
"share_id": "50a7c4943c004"
},
{
"share_index": "UC",
"share_name": "梦境 1080p 内封简中 韩英双语",
"share_id": "aabd10db93cd4"
},
{
"share_index": "UC",
"share_name": "狄仁杰之亢龙有悔 4KEDR高码",
"share_id": "f0d294a4db2e4"
},
{
"share_index": "UC",
"share_name": "来福大酒店 4KSDR60帧/120帧高码",
"share_id": "bd1642aad9a14"
},
{
"share_index": "UC",
"share_name": "我的间谍2:永恒之城",
"share_id": "c93d50ed45b44"
},
{
"share_index": "UC",
"share_name": "黑夜谜踪",
"share_id": "69a68a607d1c4"
},
{
"share_index": "UC",
"share_name": "寂静之地:入侵日",
"share_id": "865ad06eaec24"
},
{
"share_index": "UC",
"share_name": "黄河水怪 4KEDR",
"share_id": "18624b5640c14"
},
{
"share_index": "UC",
"share_name": "东哥闯东北 4KSDR60帧高码",
"share_id": "8df5c5f0c1944"
},
{
"share_index": "UC",
"share_name": "替身纸人2 4K60帧",
"share_id": "43c3e67a21074"
},
{
"share_index": "UC",
"share_name": "恶魔犬",
"share_id": "1cfe48c3a8b84"
},
{
"share_index": "UC",
"share_name": "无名之火 4K60帧高码",
"share_id": "7319d762ee9d4"
},
{
"share_index": "UC",
"share_name": "寻龙迷棺 4K高码",
"share_id": "20dc6ce28fe94"
},
{
"share_index": "UC",
"share_name": "绝地战警:生死与共 4K高码",
"share_id": "3d794b4908304"
},
{
"share_index": "UC",
"share_name": "泳者之心 4KHDR",
"share_id": "bacf43eafc3f4"
},
{
"share_index": "UC",
"share_name": "阴山守陵人 4K60帧",
"share_id": "01c3560959004"
},
{
"share_index": "UC",
"share_name": "谈判专家 4KHDR60帧",
"share_id": "a40740c318d74"
},
{
"share_index": "UC",
"share_name": "朱同在三年级丢失了超能力 4KHDR60帧",
"share_id": "29d17b26f09d4"
},
{
"share_index": "UC",
"share_name": "狄仁杰·通天人偶 4K60帧",
"share_id": "0a37811f4a704"
},
{
"share_index": "UC",
"share_name": "我才不要和你做朋友呢",
"share_id": "c426894b521b4"
},
{
"share_index": "UC",
"share_name": "走走停停",
"share_id": "4704873d09b14"
},
{
"share_index": "UC",
"share_name": "加菲猫家族",
"share_id": "68aff7b240164"
},
{
"share_index": "UC",
"share_name": "她死了",
"share_id": "b5c4a823df8b4"
},
{
"share_index": "UC",
"share_name": "犯罪都市4",
"share_id": "53662bf4de664"
},
{
"share_index": "UC",
"share_name": "猩球崛起:新世界",
"share_id": "7d4b13aab7e24"
},
{
"share_index": "UC",
"share_name": "好搭档 更6",
"share_id": "786b437959b84"
},
{
"share_index": "UC",
"share_name": "完美家庭 更1",
"share_id": "894757804cdc4"
},
{
"share_index": "UC",
"share_name": "法官大人 更2",
"share_id": "2e17170d12874"
},
{
"share_index": "UC",
"share_name": "浪漫这一家 更2",
"share_id": "9b1c53849bfc4"
},
{
"share_index": "UC",
"share_name": "坏记忆橡皮擦 更4",
"share_id": "5c547cd70a754"
},
{
"share_index": "UC",
"share_name": "无路可走:轮盘赌 更6",
"share_id": "7c32ce88ef824"
},
{
"share_index": "UC",
"share_name": "暴君 4集全",
"share_id": "81eb99bcbab44"
},
{
"share_index": "UC",
"share_name": "是偶然吗? 8集全",
"share_id": "2a36d98e90754"
},
{
"share_index": "UC",
"share_name": "监查 12集全",
"share_id": "88744aa357644"
},
{
"share_index": "UC",
"share_name": "塔罗牌 7集全",
"share_id": "aa3d7b0ff03b4"
},
{
"share_index": "UC",
"share_name": "她的日与夜 16集全",
"share_id": "6e1bb8e87ea14"