hwj35
2025-06-09 e885ba3a68cfe48a16f592d5edbd259b1135efd4
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
OrderInfo    AppId    PayRMBNum    CTGID    GiftbagID    CoinExp    UsdMoney
cw.liboa.bj    btmdbaq    30    101    0    300    30
cw.cz.1    btmdbaq    6    102    0    60    6
cw.cz.2    btmdbaq    30    103    0    300    30
cw.cz.3    btmdbaq    68    104    0    680    68
cw.cz.4    btmdbaq    98    105    0    980    98
cw.cz.5    btmdbaq    128    106    0    1280    128
cw.cz.6    btmdbaq    198    107    0    1980    198
cw.cz.7    btmdbaq    328    108    0    3280    328
cw.cz.8    btmdbaq    648    109    0    6480    648
cw.libao.xs1    btmdbaq    6    0    1    60    6
cw.libao.xs2    btmdbaq    12    0    2    120    12
cw.libao.xs3    btmdbaq    18    0    3    180    18
cw.libao.xs4    btmdbaq    30    0    4    300    30
cw.libao.xs5    btmdbaq    68    0    5    680    68
cw.libao.xs6    btmdbaq    98    0    6    980    98
cw.libao.xs7    btmdbaq    128    0    7    1280    128
cw.libao.xs8    btmdbaq    198    0    8    1980    198
cw.libao.xs9    btmdbaq    328    0    9    3280    328
cw.yk.yk    btmdbaq    198    115    0    1980    198
cw.yk.zzyk    btmdbaq    328    116    0    3280    328
cw.yk.xxzl    btmdbaq    128    117    0    1280    128
cw.libao.mr1    btmdbaq    18    0    101    180    18
cw.libao.mr2    btmdbaq    30    0    102    300    30
cw.libao.mr3    btmdbaq    98    0    103    980    98
cw.libao.mr4    btmdbaq    198    0    104    1980    198
cw.libao.mr5    btmdbaq    328    0    105    3280    328
cw.zl.lb1    btmdbaq    6    200    0    60    6
cw.zl.lb2    btmdbaq    12    201    0    120    12
cw.zl.lb3    btmdbaq    18    202    0    180    18
cw.zl.lb4    btmdbaq    30    203    0    300    30
cw.zl.lb5    btmdbaq    68    204    0    680    68
cw.zl.lb6    btmdbaq    68    205    0    680    68
cw.zl.lb7    btmdbaq    68    206    0    680    68
cw.zl.lb8    btmdbaq    68    207    0    680    68
cw.zl.lb9    btmdbaq    128    208    0    1280    128
cw.zl.lb10    btmdbaq    68    209    0    680    68
cw.zl.lb11    btmdbaq    128    210    0    1280    128
cw.zl.lb12    btmdbaq    198    211    0    1980    198
cw.zl.lb13    btmdbaq    328    212    0    3280    328
cw.zl.lb14    btmdbaq    128    213    0    1280    128
cw.zl.lb15    btmdbaq    98    214    0    980    98
cw.zl.lb16    btmdbaq    198    215    0    1980    198
cw.zl.lb17    btmdbaq    198    216    0    1980    198
cw.zl.lb18    btmdbaq    198    217    0    1980    198
cw.zl.lb19    btmdbaq    198    218    0    1980    198
cw.zl.lb20    btmdbaq    198    219    0    1980    198
cw.zl.lb21    btmdbaq    198    220    0    1980    198
cw.zl.lb22    btmdbaq    128    221    0    1280    128
cw.zl.lb23    btmdbaq    198    222    0    1980    198
cw.zl.lb24    btmdbaq    648    223    0    6480    648
cw.zl.lb25    btmdbaq    328    224    0    3280    328
cw.zl.lb26    btmdbaq    198    225    0    1980    198
cw.zl.lb27    btmdbaq    328    226    0    3280    328
cw.zl.lb28    btmdbaq    198    227    0    1980    198
cw.zl.lb29    btmdbaq    198    228    0    1980    198
cw.zl.lb30    btmdbaq    328    229    0    3280    328
cw.zl.lb31    btmdbaq    648    230    0    6480    648
cw.cz.cjth1    btmdbaq    18    61    0    180    18
cw.cz.cjth2    btmdbaq    18    62    0    180    18
cw.cz.cjth3    btmdbaq    18    63    0    180    18
cw.cz.sth1    btmdbaq    68    64    0    680    68
cw.cz.sth2    btmdbaq    68    65    0    680    68
cw.cz.sth3    btmdbaq    68    66    0    680    68
cw.libao.jr1    btmdbaq    98    0    203    980    98
cw.libao.jr2    btmdbaq    128    0    204    1280    128
cw.libao.jr3    btmdbaq    198    0    205    1980    198
cw.libao.jr4    btmdbaq    328    0    206    3280    328
cw.libao.jr5    btmdbaq    648    0    207    6480    648
cw.libao.jr6    btmdbaq    1000    0    208    10000    1000
cw.libao.jr7    btmdbaq    2000    0    209    20000    2000
cw.libao.jr8    btmdbaq    3000    0    210    30000    3000
cw.tz.dj    btmdbaq    128    124    0    1280    128
cw.tz.boss    btmdbaq    648    125    0    6480    648
cw.zxth.1    btmdbaq    30    74    0    300    30
cw.zxth.2    btmdbaq    648    75    0    6480    648
cw.libao.hf1    btmdbaq    68    0    300    680    68
cw.libao.hf2    btmdbaq    198    0    301    1980    198
cw.libao.hf3    btmdbaq    328    0    302    3280    328
cw.libao.hf4    btmdbaq    648    0    303    6480    648
cw.tql.zk1    btmdbaq    12    142    0    120    12
cw.tql.1    btmdbaq    30    143    0    300    30
cw.tql.3    btmdbaq    128    144    0    1280    128
cw.tql.15    btmdbaq    328    145    0    3280    328
cw.mai1song5.51    btmdbaq    68    10    0    680    68
cw.mai1song5.52    btmdbaq    198    11    0    1980    198
cw.mai1song5.53    btmdbaq    328    12    0    3280    328
cw.mai1song5.54    btmdbaq    648    13    0    6480    648
cw.libao.mz1    btmdbaq    68    271    0    680    68
cw.libao.mz2    btmdbaq    128    272    0    1280    128
cw.libao.mz3    btmdbaq    198    273    0    1980    198
cw.libao.mz4    btmdbaq    328    274    0    3280    328
cw.libao.mz5    btmdbaq    648    275    0    6480    648
cw.libao.my1    btmdbaq    68    276    0    680    68
cw.libao.my2    btmdbaq    128    277    0    1280    128
cw.libao.my3    btmdbaq    198    278    0    1980    198
cw.libao.my4    btmdbaq    328    279    0    3280    328
cw.libao.my5    btmdbaq    648    280    0    6480    648
cw.sc.1    btmdbaq    6    118    0    60    6
cw.xinshou.1    btmdbaq    6    30    0    60    6
cw.cz.10    btmdbaq    1298    31    0    12980    1298
cw.cz.12    btmdbaq    2648    32    0    26480    2648
cw.cz.13    btmdbaq    5000    33    0    50000    5000
cw.cz.14    btmdbaq    10000    34    0    100000    10000
cw.jj.1    btmdbaq    18    119    0    180    18
cw.jj.2    btmdbaq    328    120    0    3280    328
cw.jj.3    btmdbaq    128    121    0    1280    128
cw.jj.4    btmdbaq    648    122    0    6480    648
cw.mrth.1    btmdbaq    18    146    0    180    18
cw.mrth.2    btmdbaq    18    147    0    180    18
cw.mrth.3    btmdbaq    30    148    0    300    30
cw.mrth.dz    btmdbaq    648    149    0    6480    648
cw.ttl.1    btmdbaq    328    123    0    3280    328
cw.xshl.qh1    btmdbaq    6    15    0    60    6
cw.xshl.qh2    btmdbaq    30    16    0    300    30
cw.xshl.qh3    btmdbaq    68    17    0    680    68
cw.xshl.qh4    btmdbaq    128    18    0    1280    128
cw.xshl.qh5    btmdbaq    328    19    0    3280    328
cw.xshl.lgd1    btmdbaq    6    237    0    60    6
cw.xshl.lgd2    btmdbaq    30    238    0    300    30
cw.xshl.lgd3    btmdbaq    68    239    0    680    68
cw.xshl.lgd4    btmdbaq    128    240    0    1280    128
cw.xshl.lgd5    btmdbaq    328    241    0    3280    328
cw.xshl.zqxy1    btmdbaq    6    242    0    60    6
cw.xshl.zqxy2    btmdbaq    30    243    0    300    30
cw.xshl.zqxy3    btmdbaq    68    244    0    680    68
cw.xshl.zqxy4    btmdbaq    128    39    0    1280    128
cw.xshl.zqxy5    btmdbaq    328    40    0    3280    328
cw.xshl.zbsx1    btmdbaq    6    41    0    60    6
cw.xshl.zbsx2    btmdbaq    30    42    0    300    30
cw.xshl.zbsx3    btmdbaq    68    43    0    680    68
cw.xshl.zbsx4    btmdbaq    128    44    0    1280    128
cw.xshl.zbsx5    btmdbaq    328    45    0    3280    328
cw.xshl.gbsj1    btmdbaq    18    46    0    180    18
cw.xshl.gbsj2    btmdbaq    30    47    0    300    30
cw.xshl.gbsj3    btmdbaq    68    48    0    680    68
cw.xshl.gbsj4    btmdbaq    128    49    0    1280    128
cw.xshl.gbsj5    btmdbaq    328    50    0    3280    328
cw.xshl.jnsj1    btmdbaq    18    51    0    180    18
cw.xshl.jnsj2    btmdbaq    30    52    0    300    30
cw.xshl.jnsj3    btmdbaq    68    53    0    680    68
cw.xshl.jnsj4    btmdbaq    128    54    0    1280    128
cw.xshl.jnsj5    btmdbaq    328    55    0    3280    328
cw.xshl.lcsj1    btmdbaq    18    56    0    180    18
cw.xshl.lcsj2    btmdbaq    30    57    0    300    30
cw.xshl.lcsj3    btmdbaq    68    58    0    680    68
cw.xshl.lcsj4    btmdbaq    128    59    0    1280    128
cw.xshl.lcsj5    btmdbaq    328    60    0    3280    328
cw.xshl.zbbs1    btmdbaq    18    70    0    180    18
cw.xshl.zbbs2    btmdbaq    30    71    0    300    30
cw.xshl.zbbs3    btmdbaq    68    72    0    680    68
cw.xshl.zbbs4    btmdbaq    128    73    0    1280    128
cw.xshl.zbbs5    btmdbaq    328    9    0    3280    328
cw.xshl.sbsj1    btmdbaq    18    76    0    180    18
cw.xshl.sbsj2    btmdbaq    30    77    0    300    30
cw.xshl.sbsj3    btmdbaq    68    78    0    680    68
cw.xshl.sbsj4    btmdbaq    128    79    0    1280    128
cw.xshl.sbsj5    btmdbaq    328    80    0    3280    328
cw.xshl.zqpy1    btmdbaq    18    81    0    180    18
cw.xshl.zqpy2    btmdbaq    30    82    0    300    30
cw.xshl.zqpy3    btmdbaq    68    83    0    680    68
cw.xshl.zqpy4    btmdbaq    128    84    0    1280    128
cw.xshl.zqpy5    btmdbaq    328    85    0    3280    328
cw.xshl.lcpy1    btmdbaq    18    86    0    180    18
cw.xshl.lcpy2    btmdbaq    30    87    0    300    30
cw.xshl.lcpy3    btmdbaq    68    88    0    680    68
cw.xshl.lcpy4    btmdbaq    128    89    0    1280    128
cw.xshl.lcpy5    btmdbaq    328    90    0    3280    328
cw.xshl.mlsj1    btmdbaq    18    91    0    180    18
cw.xshl.mlsj2    btmdbaq    30    92    0    300    30
cw.xshl.mlsj3    btmdbaq    68    93    0    680    68
cw.xshl.mlsj4    btmdbaq    128    94    0    1280    128
cw.xshl.mlsj5    btmdbaq    328    95    0    3280    328
cw.xshl.qjsj1    btmdbaq    18    96    0    180    18
cw.xshl.qjsj2    btmdbaq    30    97    0    300    30
cw.xshl.qjsj3    btmdbaq    68    98    0    680    68
cw.xshl.qjsj4    btmdbaq    128    99    0    1280    128
cw.xshl.qjsj5    btmdbaq    328    100    0    3280    328
cw.xshl.zbjj1    btmdbaq    18    126    0    180    18
cw.xshl.zbjj2    btmdbaq    30    127    0    300    30
cw.xshl.zbjj3    btmdbaq    68    128    0    680    68
cw.xshl.zbjj4    btmdbaq    128    129    0    1280    128
cw.xshl.zbjj5    btmdbaq    328    130    0    3280    328
cw.xshl.fqsj1    btmdbaq    18    131    0    180    18
cw.xshl.fqsj2    btmdbaq    30    132    0    300    30
cw.xshl.fqsj3    btmdbaq    68    133    0    680    68
cw.xshl.fqsj4    btmdbaq    128    134    0    1280    128
cw.xshl.fqsj5    btmdbaq    328    135    0    3280    328
cw.xshl.zbxl1    btmdbaq    18    136    0    180    18
cw.xshl.zbxl2    btmdbaq    30    137    0    300    30
cw.xshl.zbxl3    btmdbaq    68    138    0    680    68
cw.xshl.zbxl4    btmdbaq    128    139    0    1280    128
cw.xshl.zbxl5    btmdbaq    328    140    0    3280    328
cw.xshl.stsj1    btmdbaq    18    150    0    180    18
cw.xshl.stsj2    btmdbaq    30    151    0    300    30
cw.xshl.stsj3    btmdbaq    68    152    0    680    68
cw.xshl.stsj4    btmdbaq    128    153    0    1280    128
cw.xshl.stsj5    btmdbaq    328    154    0    3280    328
cw.xshl.shpy1    btmdbaq    18    155    0    180    18
cw.xshl.shpy2    btmdbaq    30    156    0    300    30
cw.xshl.shpy3    btmdbaq    68    157    0    680    68
cw.xshl.shpy4    btmdbaq    128    158    0    1280    128
cw.xshl.shpy5    btmdbaq    328    159    0    3280    328
cw.xshl.fysj1    btmdbaq    18    160    0    180    18
cw.xshl.fysj2    btmdbaq    30    161    0    300    30
cw.xshl.fysj3    btmdbaq    68    162    0    680    68
cw.xshl.fysj4    btmdbaq    128    163    0    1280    128
cw.xshl.fysj5    btmdbaq    328    164    0    3280    328
cw.xshl.xd1    btmdbaq    18    165    0    180    18
cw.xshl.xd2    btmdbaq    30    166    0    300    30
cw.xshl.xd3    btmdbaq    68    167    0    680    68
cw.xshl.xd4    btmdbaq    128    168    0    1280    128
cw.xshl.xd5    btmdbaq    328    169    0    3280    328
cw.xshl.gbsx1    btmdbaq    30    170    0    300    30
cw.xshl.gbsx2    btmdbaq    98    171    0    980    98
cw.xshl.gbsx3    btmdbaq    198    172    0    1980    198
cw.xshl.gbsx4    btmdbaq    328    173    0    3280    328
cw.xshl.gbsx5    btmdbaq    648    174    0    6480    648
cw.xshl.jjsj1    btmdbaq    18    175    0    180    18
cw.xshl.jjsj2    btmdbaq    30    176    0    300    30
cw.xshl.jjsj3    btmdbaq    68    177    0    680    68
cw.xshl.jjsj4    btmdbaq    128    178    0    1280    128
cw.xshl.jjsj5    btmdbaq    328    179    0    3280    328
cw.xshl.sszb1    btmdbaq    18    180    0    180    18
cw.xshl.sszb2    btmdbaq    30    181    0    300    30
cw.xshl.sszb3    btmdbaq    68    182    0    680    68
cw.xshl.sszb4    btmdbaq    128    183    0    1280    128
cw.xshl.sszb5    btmdbaq    328    184    0    3280    328
cw.xshl.cppy1    btmdbaq    18    185    0    180    18
cw.xshl.cppy2    btmdbaq    30    186    0    300    30
cw.xshl.cppy3    btmdbaq    68    187    0    680    68
cw.xshl.cppy4    btmdbaq    128    188    0    1280    128
cw.xshl.cppy5    btmdbaq    328    189    0    3280    328
cw.xshl.mspy1    btmdbaq    18    190    0    180    18
cw.xshl.mspy2    btmdbaq    30    191    0    300    30
cw.xshl.mspy3    btmdbaq    68    192    0    680    68
cw.xshl.mspy4    btmdbaq    128    193    0    1280    128
cw.xshl.mspy5    btmdbaq    328    194    0    3280    328
cw.xshl.sspy1    btmdbaq    18    195    0    180    18
cw.xshl.sspy2    btmdbaq    30    196    0    300    30
cw.xshl.sspy3    btmdbaq    68    197    0    680    68
cw.xshl.sspy4    btmdbaq    128    198    0    1280    128
cw.xshl.sspy5    btmdbaq    328    199    0    3280    328
cw.xshl.mhsj1    btmdbaq    68    232    0    680    68
cw.xshl.mhsj2    btmdbaq    128    233    0    1280    128
cw.xshl.mhsj3    btmdbaq    198    234    0    1980    198
cw.xshl.mhsj4    btmdbaq    328    235    0    3280    328
cw.xshl.mhsj5    btmdbaq    648    236    0    6480    648
cw.zl.lb32    btmdbaq    30    261    0    400    30
cw.zl.lb33    btmdbaq    6    262    0    200    6
cw.libao.mr6    btmdbaq    648    0    106    150    648
cw.libao.mr7    btmdbaq    1298    0    107    450    1298
cw.libao.mr8    btmdbaq    2648    0    108    100    2648
cw.yk.zsk    btmdbaq    328    263    0    3280    328
cw.bosspz.1    btmdbaq    98    264    0    980    98
cw.bosspz.2    btmdbaq    128    265    0    1280    128
cw.bosspz.3    btmdbaq    198    266    0    1980    198
cw.bosspz.4    btmdbaq    328    267    0    3280    328
cw.bosspz.5    btmdbaq    648    268    0    6480    648
cw.fd.1    btmdbaq    30    269    0    300    30
cw.fd.2    btmdbaq    198    270    0    1980    198
cw.xshl.fd1    btmdbaq    18    281    0    180    18
cw.xshl.fd2    btmdbaq    30    282    0    300    30
cw.xshl.fd3    btmdbaq    68    283    0    680    68
cw.xshl.fd4    btmdbaq    128    284    0    1280    128
cw.xshl.fd5    btmdbaq    328    285    0    3280    328
cw.libao.hf5    btmdbaq    1998    0    304    19980    1998
cw.libao.hf6    btmdbaq    2648    0    305    26480    2648
cw.xshl.zqxy6    btmdbaq    648    286    0    6480    648
cw.xshl.zqxy7    btmdbaq    1998    287    0    19980    1998
cw.xshl.zbsx6    btmdbaq    648    288    0    6480    648
cw.xshl.zbsx7    btmdbaq    1298    289    0    12980    1298
cw.xshl.gbsj6    btmdbaq    648    290    0    6480    648
cw.xshl.gbsj7    btmdbaq    1998    291    0    19980    1998
cw.xshl.jnsj6    btmdbaq    648    292    0    6480    648
cw.xshl.jnsj7    btmdbaq    1998    293    0    19980    1998
cw.xshl.lcsj6    btmdbaq    648    294    0    6480    648
cw.xshl.lcsj7    btmdbaq    1998    295    0    19980    1998
cw.xshl.zbbs6    btmdbaq    648    296    0    6480    648
cw.xshl.zbbs7    btmdbaq    1998    297    0    19980    1998
cw.xshl.sbsj6    btmdbaq    648    298    0    6480    648
cw.xshl.sbsj7    btmdbaq    1998    299    0    19980    1998
cw.xshl.zqpy6    btmdbaq    648    300    0    6480    648
cw.xshl.zqpy7    btmdbaq    1998    301    0    19980    1998
cw.xshl.lcpy6    btmdbaq    648    302    0    6480    648
cw.xshl.lcpy7    btmdbaq    1998    303    0    19980    1998
cw.xshl.mlsj6    btmdbaq    648    304    0    6480    648
cw.xshl.mlsj7    btmdbaq    1998    305    0    19980    1998
cw.xshl.qjsj6    btmdbaq    648    306    0    6480    648
cw.xshl.qjsj7    btmdbaq    1998    307    0    19980    1998
cw.xshl.zbxl6    btmdbaq    648    308    0    6480    648
cw.xshl.zbxl7    btmdbaq    1298    309    0    12980    1298
cw.xshl.fqsj6    btmdbaq    648    310    0    6480    648
cw.xshl.fqsj7    btmdbaq    1998    311    0    19980    1998
cw.xshl.shpy6    btmdbaq    648    312    0    6480    648
cw.xshl.shpy7    btmdbaq    1998    313    0    19980    1998
cw.xshl.stsj6    btmdbaq    648    314    0    6480    648
cw.xshl.stsj7    btmdbaq    1998    315    0    19980    1998
cw.xshl.jjsj6    btmdbaq    648    316    0    6480    648
cw.xshl.jjsj7    btmdbaq    1298    317    0    12980    1298
cw.xshl.fysj6    btmdbaq    648    318    0    6480    648
cw.xshl.fysj7    btmdbaq    1998    319    0    19980    1998
cw.xshl.cppy6    btmdbaq    648    320    0    6480    648
cw.xshl.cppy7    btmdbaq    1998    321    0    19980    1998
cw.xshl.gbsx6    btmdbaq    1298    322    0    12980    1298
cw.xshl.gbsx7    btmdbaq    2648    323    0    26480    2648
cw.xshl.sspy6    btmdbaq    648    324    0    6480    648
cw.xshl.sspy7    btmdbaq    1998    325    0    19980    1998
cw.xshl.mspy6    btmdbaq    648    326    0    6480    648
cw.xshl.mspy7    btmdbaq    1998    327    0    19980    1998
cw.xshl.fd6    btmdbaq    648    328    0    6480    648
cw.xshl.fd7    btmdbaq    1298    329    0    12980    1298
cw.xshl.mhsj6    btmdbaq    1298    330    0    12980    1298
cw.xshl.mhsj7    btmdbaq    2648    331    0    26480    2648
cw.libao.my8    btmdbaq    1298    380    0    12980    1298
cw.libao.my9    btmdbaq    1998    381    0    19980    1998
cw.bosspz.6    btmdbaq    1298    383    0    12980    1298
cw.bosspz.7    btmdbaq    1998    384    0    19980    1998
cw.xshl.zqby    btmdbaq    198    332    0    1980    198
cw.xshl.zqhj    btmdbaq    328    333    0    3280    328
cw.xshl.zqzs    btmdbaq    1298    334    0    12980    1298
cw.xshl.gbby    btmdbaq    198    335    0    1980    198
cw.xshl.gbhj    btmdbaq    328    336    0    3280    328
cw.xshl.gbzs    btmdbaq    1298    337    0    12980    1298
cw.xshl.jnby    btmdbaq    198    338    0    1980    198
cw.xshl.jnhj    btmdbaq    328    339    0    3280    328
cw.xshl.jnzs    btmdbaq    1298    340    0    12980    1298
cw.xshl.lcby    btmdbaq    198    341    0    1980    198
cw.xshl.lchj    btmdbaq    328    342    0    3280    328
cw.xshl.lczs    btmdbaq    1298    343    0    12980    1298
cw.xshl.bsby    btmdbaq    198    344    0    1980    198
cw.xshl.bshj    btmdbaq    328    345    0    3280    328
cw.xshl.bszs    btmdbaq    1298    346    0    12980    1298
cw.xshl.sbby    btmdbaq    198    347    0    1980    198
cw.xshl.sbhj    btmdbaq    328    348    0    3280    328
cw.xshl.sbzs    btmdbaq    1298    349    0    12980    1298
cw.xshl.zqpyby    btmdbaq    198    350    0    1980    198
cw.xshl.zqpyhj    btmdbaq    328    351    0    3280    328
cw.xshl.zqpyzs    btmdbaq    1298    352    0    12980    1298
cw.xshl.lcpyby    btmdbaq    198    353    0    1980    198
cw.xshl.lcpyhj    btmdbaq    328    354    0    3280    328
cw.xshl.lcpyzs    btmdbaq    1298    355    0    12980    1298
cw.xshl.mlby    btmdbaq    198    356    0    1980    198
cw.xshl.mlhj    btmdbaq    328    357    0    3280    328
cw.xshl.mlzs    btmdbaq    1298    358    0    12980    1298
cw.xshl.qjby    btmdbaq    198    359    0    1980    198
cw.xshl.qjhj    btmdbaq    328    360    0    3280    328
cw.xshl.qjzs    btmdbaq    1298    361    0    12980    1298
cw.xshl.fqby    btmdbaq    198    362    0    1980    198
cw.xshl.fqhj    btmdbaq    328    363    0    3280    328
cw.xshl.fqzs    btmdbaq    1298    364    0    12980    1298
cw.xshl.shpyby    btmdbaq    198    365    0    1980    198
cw.xshl.shpyhj    btmdbaq    328    366    0    3280    328
cw.xshl.shpyzs    btmdbaq    1298    367    0    12980    1298
cw.xshl.stby    btmdbaq    198    368    0    1980    198
cw.xshl.sthj    btmdbaq    328    369    0    3280    328
cw.xshl.stzs    btmdbaq    1298    370    0    12980    1298
cw.xshl.jjhj    btmdbaq    328    371    0    3280    328
cw.xshl.fyby    btmdbaq    198    372    0    1980    198
cw.xshl.fyhj    btmdbaq    328    373    0    3280    328
cw.xshl.fyzs    btmdbaq    1298    374    0    12980    1298
cw.xshl.cbpyby    btmdbaq    198    375    0    1980    198
cw.xshl.cbpyhj    btmdbaq    328    376    0    3280    328
cw.xshl.cbpyzs    btmdbaq    1298    377    0    12980    1298
cw.xshl.hgby    btmdbaq    198    378    0    1980    198
cw.xshl.hghj    btmdbaq    648    379    0    6480    648
cw.xshl.hgzs    btmdbaq    1998    385    0    19980    1998
cw.xshl.sspyby    btmdbaq    198    386    0    1980    198
cw.xshl.sspyhj    btmdbaq    328    387    0    3280    328
cw.xshl.sspyzs    btmdbaq    1298    388    0    12980    1298
cw.xshl.mspyby    btmdbaq    198    389    0    1980    198
cw.xshl.mspyhj    btmdbaq    328    390    0    3280    328
cw.xshl.mspyzs    btmdbaq    1298    391    0    12980    1298
cw.xshl.fdhj    btmdbaq    328    392    0    3280    328
cw.xshl.mhby    btmdbaq    198    393    0    1980    198
cw.xshl.mhhj    btmdbaq    648    394    0    6480    648
cw.xshl.mhzs    btmdbaq    1998    395    0    19980    1998
cw.bosspz.8    btmdbaq    2648    396    0    26480    2648
cw.zxlb.1    btmdbaq    30    397    0    300    30
cw.zxlb.2    btmdbaq    128    398    0    1280    128
cw.zxlb.3    btmdbaq    328    399    0    3280    328
cw.zxlb.4    btmdbaq    648    400    0    6480    648
cw.zxlb.5    btmdbaq    1998    401    0    19980    1998
cw.zsfl.1    btmdbaq    6    402    0    60    6
cw.jj.5    btmdbaq    2648    403    0    26480    2648
cw.jhjj.1    btmdbaq    198    404    0    1980    198
cw.jhjj.2    btmdbaq    1998    405    0    19980    1998
cw.xshl.juhun1    btmdbaq    128    406    0    1280    128
cw.xshl.juhun2    btmdbaq    328    407    0    3280    328
cw.xshl.juhun3    btmdbaq    648    408    0    6480    648
cw.xshl.juhun4    btmdbaq    1298    409    0    12980    1298
cw.xshl.juhun5    btmdbaq    2648    410    0    26480    2648
cw.zl.lb34    btmdbaq    1298    411    0    12980    1298
cw.mjxb.1    btmdbaq    12    412    0    120    12
cw.mjxb.2    btmdbaq    18    413    0    180    18
cw.mjxb.3    btmdbaq    30    414    0    300    30
cw.mjxb.4    btmdbaq    68    415    0    680    68
cw.bosspz.9    btmdbaq    12    416    0    120    12
cw.bosspz.10    btmdbaq    18    417    0    180    18
cw.bosspz.11    btmdbaq    30    418    0    300    30
cw.bosspz.12    btmdbaq    68    419    0    680    68
cw.qcyc.1    btmdbaq    12    420    0    120    12
cw.qcyc.2    btmdbaq    18    421    0    180    18
cw.qcyc.3    btmdbaq    30    422    0    300    30
cw.qcyc.4    btmdbaq    68    423    0    680    68
cw.qcyc.5    btmdbaq    98    424    0    980    98
cw.qcyc.6    btmdbaq    128    425    0    1280    128
cw.qcyc.7    btmdbaq    198    426    0    1980    198
cw.qcyc.8    btmdbaq    328    427    0    3280    328
cw.qcyc.9    btmdbaq    648    428    0    6480    648
cw.qcyc.10    btmdbaq    1298    429    0    12980    1298
cw.qcyc.11    btmdbaq    1998    430    0    19980    1998
cw.qcyc.12    btmdbaq    2648    431    0    26480    2648
cw.qcyc.jj1    btmdbaq    198    432    0    1980    198
cw.qcyc.jj2    btmdbaq    1298    433    0    12980    1298
cw.libao.jr9    btmdbaq    6    0    200    60    6
cw.libao.jr10    btmdbaq    30    0    201    300    30
cw.libao.jr11    btmdbaq    68    0    202    680    68
cw.libao.jr12    btmdbaq    5000    0    211    50000    5000
cw.sc.2    btmdbaq    198    434    0    1980    198
cw.libao.kf1    btmdbaq    6    0    400    60    6
cw.libao.kf2    btmdbaq    12    0    401    120    12
cw.libao.kf3    btmdbaq    18    0    402    180    18
cw.libao.kf4    btmdbaq    30    0    403    300    30
cw.libao.kf5    btmdbaq    68    0    404    680    68
cw.libao.kf6    btmdbaq    98    0    405    980    98
cw.libao.kf7    btmdbaq    128    0    406    1280    128
cw.libao.kf8    btmdbaq    198    0    407    1980    198
cw.libao.kf9    btmdbaq    328    0    408    3280    328
cw.libao.kf10    btmdbaq    648    0    409    6480    648
cw.libao.kf11    btmdbaq    1298    0    410    12980    1298
cw.libao.kf12    btmdbaq    1998    0    411    19980    1998
cw.libao.kf13    btmdbaq    2648    0    412    26480    2648
cw.libao.kfmr1    btmdbaq    6    0    120    60    6
cw.libao.kfmr2    btmdbaq    12    0    121    120    12
cw.libao.kfmr3    btmdbaq    18    0    122    180    18
cw.libao.kfmr4    btmdbaq    30    0    123    300    30
cw.libao.kfmr5    btmdbaq    68    0    124    680    68
cw.libao.kfmr6    btmdbaq    98    0    125    980    98
cw.libao.kfmr7    btmdbaq    128    0    126    1280    128
cw.libao.kfmr8    btmdbaq    198    0    127    1980    198
cw.libao.kfmr9    btmdbaq    328    0    128    3280    328
cw.libao.kfmr10    btmdbaq    648    0    129    6480    648
cw.libao.kfmr11    btmdbaq    1298    0    130    12980    1298
cw.libao.kfmr12    btmdbaq    1998    0    131    19980    1998
cw.libao.kfmr13    btmdbaq    2648    0    132    26480    2648
cw.sc.3    btmdbaq    68    435    0    680    68
cw.mjxb.5    btmdbaq    98    436    0    980    98
cw.mjxb.6    btmdbaq    128    437    0    1280    128
cw.mjxb.7    btmdbaq    198    438    0    1980    198
cw.mjxb.8    btmdbaq    328    439    0    3280    328
cw.mjxb.9    btmdbaq    648    440    0    6480    648
cw.mjxb.10    btmdbaq    1298    441    0    12980    1298
cw.mjxb.11    btmdbaq    1998    442    0    19980    1998
cw.mjxb.12    btmdbaq    2648    443    0    26480    2648
cw.gbyc.1    btmdbaq    12    444    0    120    12
cw.gbyc.2    btmdbaq    18    445    0    180    18
cw.gbyc.3    btmdbaq    30    446    0    300    30
cw.gbyc.4    btmdbaq    68    447    0    680    68
cw.gbyc.5    btmdbaq    98    448    0    980    98
cw.gbyc.6    btmdbaq    128    449    0    1280    128
cw.gbyc.7    btmdbaq    198    450    0    1980    198
cw.gbyc.8    btmdbaq    328    451    0    3280    328
cw.gbyc.9    btmdbaq    648    452    0    6480    648
cw.gbyc.10    btmdbaq    1298    453    0    12980    1298
cw.gbyc.11    btmdbaq    1998    454    0    19980    1998
cw.gbyc.12    btmdbaq    2648    455    0    26480    2648
cw.gbyc.jj1    btmdbaq    198    456    0    1980    198
cw.gbyc.jj2    btmdbaq    1298    457    0    12980    1298
cw.jj.6    btmdbaq    648    458    0    6480    648
cw.tjb.1    btmdbaq    30    459    0    300    30
cw.jj.7    btmdbaq    68    460    0    680    68
cw.jj.8    btmdbaq    648    461    0    6480    648
cw.mai1song5.kf1    btmdbaq    68    464    0    680    68
cw.mai1song5.kf2    btmdbaq    198    465    0    1980    198
cw.mai1song5.kf3    btmdbaq    328    466    0    3280    328
cw.mai1song5.kf4    btmdbaq    1298    467    0    12980    1298
cw.mai1song5.kf5    btmdbaq    68    468    0    680    68
cw.mai1song5.kf6    btmdbaq    328    469    0    3280    328
cw.mai1song5.kf7    btmdbaq    648    470    0    6480    648
cw.mai1song5.kf8    btmdbaq    1998    471    0    19980    1998
cw.mai1song5.kf9    btmdbaq    198    472    0    1980    198
cw.mai1song5.kf10    btmdbaq    648    473    0    6480    648
cw.mai1song5.kf11    btmdbaq    1998    474    0    19980    1998
cw.mai1song5.kf12    btmdbaq    2648    475    0    26480    2648
cw.xyjj.jj1    btmdbaq    68    462    0    680    68
cw.xyjj.fl2    btmdbaq    6    463    0    60    6
cw.xyjj.18    btmdbaq    18    476    0    180    18
cw.xyjj.68    btmdbaq    68    477    0    680    68
cw.libao.mr9    btmdbaq    68    0    109    680    68
cw.lhd.zqopen6    btmdbaq    6    478    0    60    6
cw.lhd.zqopen30    btmdbaq    30    479    0    300    30
cw.lhd.zqopen68    btmdbaq    68    480    0    680    68
cw.lhd.zqopen128    btmdbaq    128    481    0    1280    128
cw.lhd.zqopen198    btmdbaq    198    482    0    1980    198
cw.lhd.zqopen328    btmdbaq    328    483    0    3280    328
cw.lhd.zqopen648    btmdbaq    648    484    0    6480    648
cw.lhd.gb6    btmdbaq    6    485    0    60    6
cw.lhd.gb30    btmdbaq    30    486    0    300    30
cw.lhd.gb68    btmdbaq    68    487    0    680    68
cw.lhd.gb128    btmdbaq    128    488    0    1280    128
cw.lhd.gb198    btmdbaq    198    489    0    1980    198
cw.lhd.gb328    btmdbaq    328    490    0    3280    328
cw.lhd.gb648    btmdbaq    648    491    0    6480    648
cw.lhd.zq6    btmdbaq    6    492    0    60    6
cw.lhd.zq30    btmdbaq    30    493    0    300    30
cw.lhd.zq68    btmdbaq    68    494    0    680    68
cw.lhd.zq128    btmdbaq    128    495    0    1280    128
cw.lhd.zq198    btmdbaq    198    496    0    1980    198
cw.lhd.zq328    btmdbaq    328    497    0    3280    328
cw.lhd.zq648    btmdbaq    648    498    0    6480    648
cw.lhd.lc6    btmdbaq    6    499    0    60    6
cw.lhd.lc30    btmdbaq    30    500    0    300    30
cw.lhd.lc68    btmdbaq    68    501    0    680    68
cw.lhd.lc128    btmdbaq    128    502    0    1280    128
cw.lhd.lc198    btmdbaq    198    503    0    1980    198
cw.lhd.lc328    btmdbaq    328    504    0    3280    328
cw.lhd.lc648    btmdbaq    648    505    0    6480    648
cw.lhd.sl6    btmdbaq    6    506    0    60    6
cw.lhd.sl30    btmdbaq    30    507    0    300    30
cw.lhd.sl68    btmdbaq    68    508    0    680    68
cw.lhd.sl128    btmdbaq    128    509    0    1280    128
cw.lhd.sl198    btmdbaq    198    510    0    1980    198
cw.lhd.sl328    btmdbaq    328    511    0    3280    328
cw.lhd.sl648    btmdbaq    648    512    0    6480    648
cw.djq.1    btmdbaq    6    245    0    0    6
cw.djq.2    btmdbaq    18    246    0    0    18
cw.djq.3    btmdbaq    30    247    0    0    30
cw.djq.4    btmdbaq    68    248    0    0    68
cw.djq.5    btmdbaq    128    249    0    0    128
cw.djq.6    btmdbaq    198    250    0    0    198
cw.djq.7    btmdbaq    328    251    0    0    328
cw.djq.8    btmdbaq    648    252    0    0    648
cw.ys.zqopen6    btmdbaq    6    520    0    60    6
cw.ys.zqopen30    btmdbaq    30    521    0    300    30
cw.ys.zqopen68    btmdbaq    68    522    0    680    68
cw.ys.zqopen128    btmdbaq    128    523    0    1280    128
cw.ys.zqopen198    btmdbaq    198    524    0    1980    198
cw.ys.zqopen328    btmdbaq    328    525    0    3280    328
cw.ys.zqopen648    btmdbaq    648    526    0    6480    648
cw.ys.lcopen6    btmdbaq    6    527    0    60    6
cw.ys.lcopen30    btmdbaq    30    528    0    300    30
cw.ys.lcopen68    btmdbaq    68    529    0    680    68
cw.ys.lcopen128    btmdbaq    128    530    0    1280    128
cw.ys.lcopen198    btmdbaq    198    531    0    1980    198
cw.ys.lcopen328    btmdbaq    328    532    0    3280    328
cw.ys.lcopen648    btmdbaq    648    533    0    6480    648
cw.ys.gb6    btmdbaq    6    534    0    60    6
cw.ys.gb30    btmdbaq    30    535    0    300    30
cw.ys.gb68    btmdbaq    68    536    0    680    68
cw.ys.gb128    btmdbaq    128    537    0    1280    128
cw.ys.gb198    btmdbaq    198    538    0    1980    198
cw.ys.gb328    btmdbaq    328    539    0    3280    328
cw.ys.gb648    btmdbaq    648    540    0    6480    648
cw.ys.lc6    btmdbaq    6    541    0    60    6
cw.ys.lc30    btmdbaq    30    542    0    300    30
cw.ys.lc68    btmdbaq    68    543    0    680    68
cw.ys.lc128    btmdbaq    128    544    0    1280    128
cw.ys.lc198    btmdbaq    198    545    0    1980    198
cw.ys.lc328    btmdbaq    328    546    0    3280    328
cw.ys.lc648    btmdbaq    648    547    0    6480    648
cw.ys.zq6    btmdbaq    6    548    0    60    6
cw.ys.zq30    btmdbaq    30    549    0    300    30
cw.ys.zq68    btmdbaq    68    550    0    680    68
cw.ys.zq128    btmdbaq    128    551    0    1280    128
cw.ys.zq198    btmdbaq    198    552    0    1980    198
cw.ys.zq328    btmdbaq    328    553    0    3280    328
cw.ys.zq648    btmdbaq    648    554    0    6480    648
cw.ys.sl6    btmdbaq    6    555    0    60    6
cw.ys.sl30    btmdbaq    30    556    0    300    30
cw.ys.sl68    btmdbaq    68    557    0    680    68
cw.ys.sl128    btmdbaq    128    558    0    1280    128
cw.ys.sl198    btmdbaq    198    559    0    1980    198
cw.ys.sl328    btmdbaq    328    560    0    3280    328
cw.ys.sl648    btmdbaq    648    561    0    6480    648
cw.bbcz.1    btmdbaq    1    513    0    10    1
cw.djq.9    btmdbaq    5000    253    0    0    5000
cw.djq.10    btmdbaq    10000    254    0    0    10000
cw.djq.11    btmdbaq    50000    255    0    0    50000
cw.djq.12    btmdbaq    100000    256    0    0    100000
cw.xjdh.1    btmdbaq    6    562    0    60    6
cw.xjdh.2    btmdbaq    30    563    0    300    30
cw.xjdh.3    btmdbaq    30    564    0    300    30
cw.xjdh.4    btmdbaq    128    565    0    1280    128
cw.xjdh.5    btmdbaq    30    566    0    300    30
cw.xjdh.6    btmdbaq    30    567    0    300    30
cw.xjdh.7    btmdbaq    68    568    0    680    68
cw.xjdh.8    btmdbaq    128    569    0    1280    128
cw.xjdh.9    btmdbaq    128    570    0    1280    128
cw.xjdh.10    btmdbaq    198    571    0    1980    198
cw.xjdh.jj30    btmdbaq    30    572    0    300    30
cw.xjdh.jj128    btmdbaq    128    573    0    1280    128
cw.auto.week    btmdbaq    6    574    0    60    6
cw.auto.month    btmdbaq    18    575    0    180    18
cw.mai1song5.11    btmdbaq    68    1    0    680    68
cw.mai1song5.12    btmdbaq    198    2    0    1980    198
cw.mai1song5.13    btmdbaq    328    3    0    3280    328
cw.mai1song5.14    btmdbaq    648    4    0    6480    648
cw.mai1song5.31    btmdbaq    68    5    0    680    68
cw.mai1song5.32    btmdbaq    198    6    0    1980    198
cw.mai1song5.33    btmdbaq    328    7    0    3280    328
cw.mai1song5.34    btmdbaq    1298    8    0    12980    1298
cw.mai1song5.71    btmdbaq    68    576    0    680    68
cw.mai1song5.72    btmdbaq    198    577    0    1980    198
cw.mai1song5.73    btmdbaq    328    578    0    3280    328
cw.mai1song5.74    btmdbaq    1298    579    0    12980    1298
cw.libao.xs10    btmdbaq    648    0    10    6480    648
cw.libao.xs11    btmdbaq    1298    0    11    12980    1298
cw.libao.xs12    btmdbaq    1998    0    12    19980    1998
cw.libao.xs13    btmdbaq    2648    0    13    26480    2648
cw.xmgcz.lb1    btmdbaq    6    580    0    60    6
cw.xmgcz.lb2    btmdbaq    30    581    0    300    30
cw.xmgcz.lb3    btmdbaq    68    582    0    680    68
cw.xmgcz.lb4    btmdbaq    128    583    0    1280    128
cw.xmgcz.lb5    btmdbaq    198    584    0    1980    198
cw.xmgcz.lb6    btmdbaq    328    585    0    3280    328
cw.xmgcz.lb7    btmdbaq    648    586    0    6480    648
cw.xmgcz.lb8    btmdbaq    648    587    0    6480    648
test.liboa.bj    test    30    101    0    300    30
test.cz.1    test    6    102    0    60    6
test.cz.2    test    30    103    0    300    30
test.cz.3    test    68    104    0    680    68
test.cz.4    test    98    105    0    980    98
test.cz.5    test    128    106    0    1280    128
test.cz.6    test    198    107    0    1980    198
test.cz.7    test    328    108    0    3280    328
test.cz.8    test    648    109    0    6480    648
test.libao.xs1    test    6    0    1    60    6
test.libao.xs2    test    12    0    2    120    12
test.libao.xs3    test    18    0    3    180    18
test.libao.xs4    test    30    0    4    300    30
test.libao.xs5    test    68    0    5    680    68
test.libao.xs6    test    98    0    6    980    98
test.libao.xs7    test    128    0    7    1280    128
test.libao.xs8    test    198    0    8    1980    198
test.libao.xs9    test    328    0    9    3280    328
test.yk.yk    test    198    115    0    1980    198
test.yk.zzyk    test    328    116    0    3280    328
test.yk.xxzl    test    128    117    0    1280    128
test.libao.mr1    test    18    0    101    180    18
test.libao.mr2    test    30    0    102    300    30
test.libao.mr3    test    98    0    103    980    98
test.libao.mr4    test    198    0    104    1980    198
test.libao.mr5    test    328    0    105    3280    328
test.zl.lb1    test    6    200    0    60    6
test.zl.lb2    test    12    201    0    120    12
test.zl.lb3    test    18    202    0    180    18
test.zl.lb4    test    30    203    0    300    30
test.zl.lb5    test    68    204    0    680    68
test.zl.lb6    test    68    205    0    680    68
test.zl.lb7    test    68    206    0    680    68
test.zl.lb8    test    68    207    0    680    68
test.zl.lb9    test    128    208    0    1280    128
test.zl.lb10    test    68    209    0    680    68
test.zl.lb11    test    128    210    0    1280    128
test.zl.lb12    test    198    211    0    1980    198
test.zl.lb13    test    328    212    0    3280    328
test.zl.lb14    test    128    213    0    1280    128
test.zl.lb15    test    98    214    0    980    98
test.zl.lb16    test    198    215    0    1980    198
test.zl.lb17    test    198    216    0    1980    198
test.zl.lb18    test    198    217    0    1980    198
test.zl.lb19    test    198    218    0    1980    198
test.zl.lb20    test    198    219    0    1980    198
test.zl.lb21    test    198    220    0    1980    198
test.zl.lb22    test    128    221    0    1280    128
test.zl.lb23    test    198    222    0    1980    198
test.zl.lb24    test    648    223    0    6480    648
test.zl.lb25    test    328    224    0    3280    328
test.zl.lb26    test    198    225    0    1980    198
test.zl.lb27    test    328    226    0    3280    328
test.zl.lb28    test    198    227    0    1980    198
test.zl.lb29    test    198    228    0    1980    198
test.zl.lb30    test    328    229    0    3280    328
test.zl.lb31    test    648    230    0    6480    648
test.cz.cjth1    test    18    61    0    180    18
test.cz.cjth2    test    18    62    0    180    18
test.cz.cjth3    test    18    63    0    180    18
test.cz.sth1    test    68    64    0    680    68
test.cz.sth2    test    68    65    0    680    68
test.cz.sth3    test    68    66    0    680    68
test.libao.jr1    test    98    0    203    980    98
test.libao.jr2    test    128    0    204    1280    128
test.libao.jr3    test    198    0    205    1980    198
test.libao.jr4    test    328    0    206    3280    328
test.libao.jr5    test    648    0    207    6480    648
test.libao.jr6    test    1000    0    208    10000    1000
test.libao.jr7    test    2000    0    209    20000    2000
test.libao.jr8    test    3000    0    210    30000    3000
test.tz.dj    test    128    124    0    1280    128
test.tz.boss    test    648    125    0    6480    648
test.zxth.1    test    30    74    0    300    30
test.zxth.2    test    648    75    0    6480    648
test.libao.hf1    test    68    0    300    680    68
test.libao.hf2    test    198    0    301    1980    198
test.libao.hf3    test    328    0    302    3280    328
test.libao.hf4    test    648    0    303    6480    648
test.tql.zk1    test    12    142    0    120    12
test.tql.1    test    30    143    0    300    30
test.tql.3    test    128    144    0    1280    128
test.tql.15    test    328    145    0    3280    328
test.mai1song5.51    test    68    10    0    680    68
test.mai1song5.52    test    198    11    0    1980    198
test.mai1song5.53    test    328    12    0    3280    328
test.mai1song5.54    test    648    13    0    6480    648
test.libao.mz1    test    68    271    0    680    68
test.libao.mz2    test    128    272    0    1280    128
test.libao.mz3    test    198    273    0    1980    198
test.libao.mz4    test    328    274    0    3280    328
test.libao.mz5    test    648    275    0    6480    648
test.libao.my1    test    68    276    0    680    68
test.libao.my2    test    128    277    0    1280    128
test.libao.my3    test    198    278    0    1980    198
test.libao.my4    test    328    279    0    3280    328
test.libao.my5    test    648    280    0    6480    648
test.sc.1    test    6    118    0    60    6
test.xinshou.1    test    6    30    0    60    6
test.cz.9    test    1298    31    0    12980    1298
test.cz.11    test    2648    32    0    26480    2648
test.cz.12    test    5000    33    0    50000    5000
test.cz.13    test    10000    34    0    100000    10000
test.jj.1    test    18    119    0    180    18
test.jj.2    test    328    120    0    3280    328
test.jj.3    test    128    121    0    1280    128
test.jj.4    test    648    122    0    6480    648
test.mrth.1    test    18    146    0    180    18
test.mrth.2    test    18    147    0    180    18
test.mrth.3    test    30    148    0    300    30
test.mrth.dz    test    648    149    0    6480    648
test.ttl.1    test    328    123    0    3280    328
test.xshl.qh1    test    6    15    0    60    6
test.xshl.qh2    test    30    16    0    300    30
test.xshl.qh3    test    68    17    0    680    68
test.xshl.qh4    test    128    18    0    1280    128
test.xshl.qh5    test    328    19    0    3280    328
test.xshl.lgd1    test    6    237    0    60    6
test.xshl.lgd2    test    30    238    0    300    30
test.xshl.lgd3    test    68    239    0    680    68
test.xshl.lgd4    test    128    240    0    1280    128
test.xshl.lgd5    test    328    241    0    3280    328
test.xshl.zqxy1    test    6    242    0    60    6
test.xshl.zqxy2    test    30    243    0    300    30
test.xshl.zqxy3    test    68    244    0    680    68
test.xshl.zqxy4    test    128    39    0    1280    128
test.xshl.zqxy5    test    328    40    0    3280    328
test.xshl.zbsx1    test    6    41    0    60    6
test.xshl.zbsx2    test    30    42    0    300    30
test.xshl.zbsx3    test    68    43    0    680    68
test.xshl.zbsx4    test    128    44    0    1280    128
test.xshl.zbsx5    test    328    45    0    3280    328
test.xshl.gbsj1    test    18    46    0    180    18
test.xshl.gbsj2    test    30    47    0    300    30
test.xshl.gbsj3    test    68    48    0    680    68
test.xshl.gbsj4    test    128    49    0    1280    128
test.xshl.gbsj5    test    328    50    0    3280    328
test.xshl.jnsj1    test    18    51    0    180    18
test.xshl.jnsj2    test    30    52    0    300    30
test.xshl.jnsj3    test    68    53    0    680    68
test.xshl.jnsj4    test    128    54    0    1280    128
test.xshl.jnsj5    test    328    55    0    3280    328
test.xshl.lcsj1    test    18    56    0    180    18
test.xshl.lcsj2    test    30    57    0    300    30
test.xshl.lcsj3    test    68    58    0    680    68
test.xshl.lcsj4    test    128    59    0    1280    128
test.xshl.lcsj5    test    328    60    0    3280    328
test.xshl.zbbs1    test    18    70    0    180    18
test.xshl.zbbs2    test    30    71    0    300    30
test.xshl.zbbs3    test    68    72    0    680    68
test.xshl.zbbs4    test    128    73    0    1280    128
test.xshl.zbbs5    test    328    9    0    3280    328
test.xshl.sbsj1    test    18    76    0    180    18
test.xshl.sbsj2    test    30    77    0    300    30
test.xshl.sbsj3    test    68    78    0    680    68
test.xshl.sbsj4    test    128    79    0    1280    128
test.xshl.sbsj5    test    328    80    0    3280    328
test.xshl.zqpy1    test    18    81    0    180    18
test.xshl.zqpy2    test    30    82    0    300    30
test.xshl.zqpy3    test    68    83    0    680    68
test.xshl.zqpy4    test    128    84    0    1280    128
test.xshl.zqpy5    test    328    85    0    3280    328
test.xshl.lcpy1    test    18    86    0    180    18
test.xshl.lcpy2    test    30    87    0    300    30
test.xshl.lcpy3    test    68    88    0    680    68
test.xshl.lcpy4    test    128    89    0    1280    128
test.xshl.lcpy5    test    328    90    0    3280    328
test.xshl.mlsj1    test    18    91    0    180    18
test.xshl.mlsj2    test    30    92    0    300    30
test.xshl.mlsj3    test    68    93    0    680    68
test.xshl.mlsj4    test    128    94    0    1280    128
test.xshl.mlsj5    test    328    95    0    3280    328
test.xshl.qjsj1    test    18    96    0    180    18
test.xshl.qjsj2    test    30    97    0    300    30
test.xshl.qjsj3    test    68    98    0    680    68
test.xshl.qjsj4    test    128    99    0    1280    128
test.xshl.qjsj5    test    328    100    0    3280    328
test.xshl.zbjj1    test    18    126    0    180    18
test.xshl.zbjj2    test    30    127    0    300    30
test.xshl.zbjj3    test    68    128    0    680    68
test.xshl.zbjj4    test    128    129    0    1280    128
test.xshl.zbjj5    test    328    130    0    3280    328
test.xshl.fqsj1    test    18    131    0    180    18
test.xshl.fqsj2    test    30    132    0    300    30
test.xshl.fqsj3    test    68    133    0    680    68
test.xshl.fqsj4    test    128    134    0    1280    128
test.xshl.fqsj5    test    328    135    0    3280    328
test.xshl.zbxl1    test    18    136    0    180    18
test.xshl.zbxl2    test    30    137    0    300    30
test.xshl.zbxl3    test    68    138    0    680    68
test.xshl.zbxl4    test    128    139    0    1280    128
test.xshl.zbxl5    test    328    140    0    3280    328
test.xshl.stsj1    test    18    150    0    180    18
test.xshl.stsj2    test    30    151    0    300    30
test.xshl.stsj3    test    68    152    0    680    68
test.xshl.stsj4    test    128    153    0    1280    128
test.xshl.stsj5    test    328    154    0    3280    328
test.xshl.shpy1    test    18    155    0    180    18
test.xshl.shpy2    test    30    156    0    300    30
test.xshl.shpy3    test    68    157    0    680    68
test.xshl.shpy4    test    128    158    0    1280    128
test.xshl.shpy5    test    328    159    0    3280    328
test.xshl.fysj1    test    18    160    0    180    18
test.xshl.fysj2    test    30    161    0    300    30
test.xshl.fysj3    test    68    162    0    680    68
test.xshl.fysj4    test    128    163    0    1280    128
test.xshl.fysj5    test    328    164    0    3280    328
test.xshl.xd1    test    18    165    0    180    18
test.xshl.xd2    test    30    166    0    300    30
test.xshl.xd3    test    68    167    0    680    68
test.xshl.xd4    test    128    168    0    1280    128
test.xshl.xd5    test    328    169    0    3280    328
test.xshl.gbsx1    test    30    170    0    300    30
test.xshl.gbsx2    test    98    171    0    980    98
test.xshl.gbsx3    test    198    172    0    1980    198
test.xshl.gbsx4    test    328    173    0    3280    328
test.xshl.gbsx5    test    648    174    0    6480    648
test.xshl.jjsj1    test    18    175    0    180    18
test.xshl.jjsj2    test    30    176    0    300    30
test.xshl.jjsj3    test    68    177    0    680    68
test.xshl.jjsj4    test    128    178    0    1280    128
test.xshl.jjsj5    test    328    179    0    3280    328
test.xshl.sszb1    test    18    180    0    180    18
test.xshl.sszb2    test    30    181    0    300    30
test.xshl.sszb3    test    68    182    0    680    68
test.xshl.sszb4    test    128    183    0    1280    128
test.xshl.sszb5    test    328    184    0    3280    328
test.xshl.cppy1    test    18    185    0    180    18
test.xshl.cppy2    test    30    186    0    300    30
test.xshl.cppy3    test    68    187    0    680    68
test.xshl.cppy4    test    128    188    0    1280    128
test.xshl.cppy5    test    328    189    0    3280    328
test.xshl.mspy1    test    18    190    0    180    18
test.xshl.mspy2    test    30    191    0    300    30
test.xshl.mspy3    test    68    192    0    680    68
test.xshl.mspy4    test    128    193    0    1280    128
test.xshl.mspy5    test    328    194    0    3280    328
test.xshl.sspy1    test    18    195    0    180    18
test.xshl.sspy2    test    30    196    0    300    30
test.xshl.sspy3    test    68    197    0    680    68
test.xshl.sspy4    test    128    198    0    1280    128
test.xshl.sspy5    test    328    199    0    3280    328
test.xshl.mhsj1    test    68    232    0    680    68
test.xshl.mhsj2    test    128    233    0    1280    128
test.xshl.mhsj3    test    198    234    0    1980    198
test.xshl.mhsj4    test    328    235    0    3280    328
test.xshl.mhsj5    test    648    236    0    6480    648
test.zl.lb32    test    30    261    0    400    30
test.zl.lb33    test    6    262    0    200    6
test.libao.mr6    test    648    0    106    150    648
test.libao.mr7    test    1298    0    107    450    1298
test.libao.mr8    test    2648    0    108    100    2648
test.yk.zsk    test    328    263    0    3280    328
test.bosspz.1    test    98    264    0    980    98
test.bosspz.2    test    128    265    0    1280    128
test.bosspz.3    test    198    266    0    1980    198
test.bosspz.4    test    328    267    0    3280    328
test.bosspz.5    test    648    268    0    6480    648
test.fd.1    test    30    269    0    300    30
test.fd.2    test    198    270    0    1980    198
test.xshl.fd1    test    18    281    0    180    18
test.xshl.fd2    test    30    282    0    300    30
test.xshl.fd3    test    68    283    0    680    68
test.xshl.fd4    test    128    284    0    1280    128
test.xshl.fd5    test    328    285    0    3280    328
test.libao.hf5    test    1998    0    304    19980    1998
test.libao.hf6    test    2648    0    305    26480    2648
test.xshl.zqxy6    test    648    286    0    6480    648
test.xshl.zqxy7    test    1998    287    0    19980    1998
test.xshl.zbsx6    test    648    288    0    6480    648
test.xshl.zbsx7    test    1298    289    0    12980    1298
test.xshl.gbsj6    test    648    290    0    6480    648
test.xshl.gbsj7    test    1998    291    0    19980    1998
test.xshl.jnsj6    test    648    292    0    6480    648
test.xshl.jnsj7    test    1998    293    0    19980    1998
test.xshl.lcsj6    test    648    294    0    6480    648
test.xshl.lcsj7    test    1998    295    0    19980    1998
test.xshl.zbbs6    test    648    296    0    6480    648
test.xshl.zbbs7    test    1998    297    0    19980    1998
test.xshl.sbsj6    test    648    298    0    6480    648
test.xshl.sbsj7    test    1998    299    0    19980    1998
test.xshl.zqpy6    test    648    300    0    6480    648
test.xshl.zqpy7    test    1998    301    0    19980    1998
test.xshl.lcpy6    test    648    302    0    6480    648
test.xshl.lcpy7    test    1998    303    0    19980    1998
test.xshl.mlsj6    test    648    304    0    6480    648
test.xshl.mlsj7    test    1998    305    0    19980    1998
test.xshl.qjsj6    test    648    306    0    6480    648
test.xshl.qjsj7    test    1998    307    0    19980    1998
test.xshl.zbxl6    test    648    308    0    6480    648
test.xshl.zbxl7    test    1298    309    0    12980    1298
test.xshl.fqsj6    test    648    310    0    6480    648
test.xshl.fqsj7    test    1998    311    0    19980    1998
test.xshl.shpy6    test    648    312    0    6480    648
test.xshl.shpy7    test    1998    313    0    19980    1998
test.xshl.stsj6    test    648    314    0    6480    648
test.xshl.stsj7    test    1998    315    0    19980    1998
test.xshl.jjsj6    test    648    316    0    6480    648
test.xshl.jjsj7    test    1298    317    0    12980    1298
test.xshl.fysj6    test    648    318    0    6480    648
test.xshl.fysj7    test    1998    319    0    19980    1998
test.xshl.cppy6    test    648    320    0    6480    648
test.xshl.cppy7    test    1998    321    0    19980    1998
test.xshl.gbsx6    test    1298    322    0    12980    1298
test.xshl.gbsx7    test    2648    323    0    26480    2648
test.xshl.sspy6    test    648    324    0    6480    648
test.xshl.sspy7    test    1998    325    0    19980    1998
test.xshl.mspy6    test    648    326    0    6480    648
test.xshl.mspy7    test    1998    327    0    19980    1998
test.xshl.fd6    test    648    328    0    6480    648
test.xshl.fd7    test    1298    329    0    12980    1298
test.xshl.mhsj6    test    1298    330    0    12980    1298
test.xshl.mhsj7    test    2648    331    0    26480    2648
test.libao.my8    test    1298    380    0    12980    1298
test.libao.my9    test    1998    381    0    19980    1998
test.bosspz.6    test    1298    383    0    12980    1298
test.bosspz.7    test    1998    384    0    19980    1998
test.xshl.zqby    test    198    332    0    1980    198
test.xshl.zqhj    test    328    333    0    3280    328
test.xshl.zqzs    test    1298    334    0    12980    1298
test.xshl.gbby    test    198    335    0    1980    198
test.xshl.gbhj    test    328    336    0    3280    328
test.xshl.gbzs    test    1298    337    0    12980    1298
test.xshl.jnby    test    198    338    0    1980    198
test.xshl.jnhj    test    328    339    0    3280    328
test.xshl.jnzs    test    1298    340    0    12980    1298
test.xshl.lcby    test    198    341    0    1980    198
test.xshl.lchj    test    328    342    0    3280    328
test.xshl.lczs    test    1298    343    0    12980    1298
test.xshl.bsby    test    198    344    0    1980    198
test.xshl.bshj    test    328    345    0    3280    328
test.xshl.bszs    test    1298    346    0    12980    1298
test.xshl.sbby    test    198    347    0    1980    198
test.xshl.sbhj    test    328    348    0    3280    328
test.xshl.sbzs    test    1298    349    0    12980    1298
test.xshl.zqpyby    test    198    350    0    1980    198
test.xshl.zqpyhj    test    328    351    0    3280    328
test.xshl.zqpyzs    test    1298    352    0    12980    1298
test.xshl.lcpyby    test    198    353    0    1980    198
test.xshl.lcpyhj    test    328    354    0    3280    328
test.xshl.lcpyzs    test    1298    355    0    12980    1298
test.xshl.mlby    test    198    356    0    1980    198
test.xshl.mlhj    test    328    357    0    3280    328
test.xshl.mlzs    test    1298    358    0    12980    1298
test.xshl.qjby    test    198    359    0    1980    198
test.xshl.qjhj    test    328    360    0    3280    328
test.xshl.qjzs    test    1298    361    0    12980    1298
test.xshl.fqby    test    198    362    0    1980    198
test.xshl.fqhj    test    328    363    0    3280    328
test.xshl.fqzs    test    1298    364    0    12980    1298
test.xshl.shpyby    test    198    365    0    1980    198
test.xshl.shpyhj    test    328    366    0    3280    328
test.xshl.shpyzs    test    1298    367    0    12980    1298
test.xshl.stby    test    198    368    0    1980    198
test.xshl.sthj    test    328    369    0    3280    328
test.xshl.stzs    test    1298    370    0    12980    1298
test.xshl.jjhj    test    328    371    0    3280    328
test.xshl.fyby    test    198    372    0    1980    198
test.xshl.fyhj    test    328    373    0    3280    328
test.xshl.fyzs    test    1298    374    0    12980    1298
test.xshl.cbpyby    test    198    375    0    1980    198
test.xshl.cbpyhj    test    328    376    0    3280    328
test.xshl.cbpyzs    test    1298    377    0    12980    1298
test.xshl.hgby    test    198    378    0    1980    198
test.xshl.hghj    test    648    379    0    6480    648
test.xshl.hgzs    test    1998    385    0    19980    1998
test.xshl.sspyby    test    198    386    0    1980    198
test.xshl.sspyhj    test    328    387    0    3280    328
test.xshl.sspyzs    test    1298    388    0    12980    1298
test.xshl.mspyby    test    198    389    0    1980    198
test.xshl.mspyhj    test    328    390    0    3280    328
test.xshl.mspyzs    test    1298    391    0    12980    1298
test.xshl.fdhj    test    328    392    0    3280    328
test.xshl.mhby    test    198    393    0    1980    198
test.xshl.mhhj    test    648    394    0    6480    648
test.xshl.mhzs    test    1998    395    0    19980    1998
test.bosspz.8    test    2648    396    0    26480    2648
test.zxlb.1    test    30    397    0    300    30
test.zxlb.2    test    128    398    0    1280    128
test.zxlb.3    test    328    399    0    3280    328
test.zxlb.4    test    648    400    0    6480    648
test.zxlb.5    test    1998    401    0    19980    1998
test.zsfl.1    test    6    402    0    60    6
test.jj.5    test    2648    403    0    26480    2648
test.jhjj.1    test    198    404    0    1980    198
test.jhjj.2    test    1998    405    0    19980    1998
test.xshl.juhun1    test    128    406    0    1280    128
test.xshl.juhun2    test    328    407    0    3280    328
test.xshl.juhun3    test    648    408    0    6480    648
test.xshl.juhun4    test    1298    409    0    12980    1298
test.xshl.juhun5    test    2648    410    0    26480    2648
test.zl.lb34    test    1298    411    0    12980    1298
text.mjxb.1    test    12    412    0    120    12
text.mjxb.2    test    18    413    0    180    18
text.mjxb.3    test    30    414    0    300    30
text.mjxb.4    test    68    415    0    680    68
test.bosspz.9    test    12    416    0    120    12
test.bosspz.10    test    18    417    0    180    18
test.bosspz.11    test    30    418    0    300    30
test.bosspz.12    test    68    419    0    680    68
test.qcyc.1    test    12    420    0    120    12
test.qcyc.2    test    18    421    0    180    18
test.qcyc.3    test    30    422    0    300    30
test.qcyc.4    test    68    423    0    680    68
test.qcyc.5    test    98    424    0    980    98
test.qcyc.6    test    128    425    0    1280    128
test.qcyc.7    test    198    426    0    1980    198
test.qcyc.8    test    328    427    0    3280    328
test.qcyc.9    test    648    428    0    6480    648
test.qcyc.10    test    1298    429    0    12980    1298
test.qcyc.11    test    1998    430    0    19980    1998
test.qcyc.12    test    2648    431    0    26480    2648
test.qcyc.jj1    test    198    432    0    1980    198
test.qcyc.jj2    test    1298    433    0    12980    1298
test.libao.jr9    test    6    0    200    60    6
test.libao.jr10    test    30    0    201    300    30
test.libao.jr11    test    68    0    202    680    68
test.libao.jr12    test    5000    0    211    50000    5000
test.sc.2    test    198    434    0    1980    198
test.libao.kf1    test    6    0    400    60    6
test.libao.kf2    test    12    0    401    120    12
test.libao.kf3    test    18    0    402    180    18
test.libao.kf4    test    30    0    403    300    30
test.libao.kf5    test    68    0    404    680    68
test.libao.kf6    test    98    0    405    980    98
test.libao.kf7    test    128    0    406    1280    128
test.libao.kf8    test    198    0    407    1980    198
test.libao.kf9    test    328    0    408    3280    328
test.libao.kf10    test    648    0    409    6480    648
test.libao.kf11    test    1298    0    410    12980    1298
test.libao.kf12    test    1998    0    411    19980    1998
test.libao.kf13    test    2648    0    412    26480    2648
test.libao.kfmr1    test    6    0    120    60    6
test.libao.kfmr2    test    12    0    121    120    12
test.libao.kfmr3    test    18    0    122    180    18
test.libao.kfmr4    test    30    0    123    300    30
test.libao.kfmr5    test    68    0    124    680    68
test.libao.kfmr6    test    98    0    125    980    98
test.libao.kfmr7    test    128    0    126    1280    128
test.libao.kfmr8    test    198    0    127    1980    198
test.libao.kfmr9    test    328    0    128    3280    328
test.libao.kfmr10    test    648    0    129    6480    648
test.libao.kfmr11    test    1298    0    130    12980    1298
test.libao.kfmr12    test    1998    0    131    19980    1998
test.libao.kfmr13    test    2648    0    132    26480    2648
test.sc.3    test    68    435    0    680    68
test.mjxb.5    test    98    436    0    980    98
test.mjxb.6    test    128    437    0    1280    128
test.mjxb.7    test    198    438    0    1980    198
test.mjxb.8    test    328    439    0    3280    328
test.mjxb.9    test    648    440    0    6480    648
test.mjxb.10    test    1298    441    0    12980    1298
test.mjxb.11    test    1998    442    0    19980    1998
test.mjxb.12    test    2648    443    0    26480    2648
test.gbyc.1    test    12    444    0    120    12
test.gbyc.2    test    18    445    0    180    18
test.gbyc.3    test    30    446    0    300    30
test.gbyc.4    test    68    447    0    680    68
test.gbyc.5    test    98    448    0    980    98
test.gbyc.6    test    128    449    0    1280    128
test.gbyc.7    test    198    450    0    1980    198
test.gbyc.8    test    328    451    0    3280    328
test.gbyc.9    test    648    452    0    6480    648
test.gbyc.10    test    1298    453    0    12980    1298
test.gbyc.11    test    1998    454    0    19980    1998
test.gbyc.12    test    2648    455    0    26480    2648
test.gbyc.jj1    test    198    456    0    1980    198
test.gbyc.jj2    test    1298    457    0    12980    1298
test.jj.6    test    648    458    0    6480    648
test.tjb.1    test    30    459    0    300    30
cw.jj.7    test    68    460    0    680    68
cw.jj.8    test    648    461    0    6480    648
test.xyjj.jj1    test    68    462    0    680    68
test.xyjj.jj2    test    6    463    0    60    6
test.mai1song5.kf1    test    68    464    0    680    68
test.mai1song5.kf2    test    198    465    0    1980    198
test.mai1song5.kf3    test    328    466    0    3280    328
test.mai1song5.kf4    test    1298    467    0    12980    1298
test.mai1song5.kf5    test    68    468    0    680    68
test.mai1song5.kf6    test    328    469    0    3280    328
test.mai1song5.kf7    test    648    470    0    6480    648
test.mai1song5.kf8    test    1998    471    0    19980    1998
test.mai1song5.kf9    test    198    472    0    1980    198
test.mai1song5.kf10    test    648    473    0    6480    648
test.mai1song5.kf11    test    1998    474    0    19980    1998
test.mai1song5.kf12    test    2648    475    0    26480    2648
test.xyjj.18    test    18    476    0    180    18
test.xyjj.68    test    68    477    0    680    68
test.libao.mr9    test    68    0    109    180    68
test.lhd.zqopen6    test    6    478    0    60    6
test.lhd.zqopen30    test    30    479    0    300    30
test.lhd.zqopen68    test    68    480    0    680    68
test.lhd.zqopen128    test    128    481    0    1280    128
test.lhd.zqopen198    test    198    482    0    1980    198
test.lhd.zqopen328    test    328    483    0    3280    328
test.lhd.zqopen648    test    648    484    0    6480    648
test.lhd.gb6    test    6    485    0    60    6
test.lhd.gb30    test    30    486    0    300    30
test.lhd.gb68    test    68    487    0    680    68
test.lhd.gb128    test    128    488    0    1280    128
test.lhd.gb198    test    198    489    0    1980    198
test.lhd.gb328    test    328    490    0    3280    328
test.lhd.gb648    test    648    491    0    6480    648
test.lhd.zq6    test    6    492    0    60    6
test.lhd.zq30    test    30    493    0    300    30
test.lhd.zq68    test    68    494    0    680    68
test.lhd.zq128    test    128    495    0    1280    128
test.lhd.zq198    test    198    496    0    1980    198
test.lhd.zq328    test    328    497    0    3280    328
test.lhd.zq648    test    648    498    0    6480    648
test.lhd.lc6    test    6    499    0    60    6
test.lhd.lc30    test    30    500    0    300    30
test.lhd.lc68    test    68    501    0    680    68
test.lhd.lc128    test    128    502    0    1280    128
test.lhd.lc198    test    198    503    0    1980    198
test.lhd.lc328    test    328    504    0    3280    328
test.lhd.lc648    test    648    505    0    6480    648
test.lhd.sl6    test    6    506    0    60    6
test.lhd.sl30    test    30    507    0    300    30
test.lhd.sl68    test    68    508    0    680    68
test.lhd.sl128    test    128    509    0    1280    128
test.lhd.sl198    test    198    510    0    1980    198
test.lhd.sl328    test    328    511    0    3280    328
test.lhd.sl648    test    648    512    0    6480    648
test.djq.1    test    6    245    0    0    6
test.djq.2    test    18    246    0    0    18
test.djq.3    test    30    247    0    0    30
test.djq.4    test    68    248    0    0    68
test.djq.5    test    128    249    0    0    128
test.djq.6    test    198    250    0    0    198
test.djq.7    test    328    251    0    0    328
test.djq.8    test    648    252    0    0    648
test.ys.zqopen6    test    6    520    0    60    6
test.ys.zqopen30    test    30    521    0    300    30
test.ys.zqopen68    test    68    522    0    680    68
test.ys.zqopen128    test    128    523    0    1280    128
test.ys.zqopen198    test    198    524    0    1980    198
test.ys.zqopen328    test    328    525    0    3280    328
test.ys.zqopen648    test    648    526    0    6480    648
test.ys.lcopen6    test    6    527    0    60    6
test.ys.lcopen30    test    30    528    0    300    30
test.ys.lcopen68    test    68    529    0    680    68
test.ys.lcopen128    test    128    530    0    1280    128
test.ys.lcopen198    test    198    531    0    1980    198
test.ys.lcopen328    test    328    532    0    3280    328
test.ys.lcopen648    test    648    533    0    6480    648
test.ys.gb6    test    6    534    0    60    6
test.ys.gb30    test    30    535    0    300    30
test.ys.gb68    test    68    536    0    680    68
test.ys.gb128    test    128    537    0    1280    128
test.ys.gb198    test    198    538    0    1980    198
test.ys.gb328    test    328    539    0    3280    328
test.ys.gb648    test    648    540    0    6480    648
test.ys.lc6    test    6    541    0    60    6
test.ys.lc30    test    30    542    0    300    30
test.ys.lc68    test    68    543    0    680    68
test.ys.lc128    test    128    544    0    1280    128
test.ys.lc198    test    198    545    0    1980    198
test.ys.lc328    test    328    546    0    3280    328
test.ys.lc648    test    648    547    0    6480    648
test.ys.zq6    test    6    548    0    60    6
test.ys.zq30    test    30    549    0    300    30
test.ys.zq68    test    68    550    0    680    68
test.ys.zq128    test    128    551    0    1280    128
test.ys.zq198    test    198    552    0    1980    198
test.ys.zq328    test    328    553    0    3280    328
test.ys.zq648    test    648    554    0    6480    648
test.ys.sl6    test    6    555    0    60    6
test.ys.sl30    test    30    556    0    300    30
test.ys.sl68    test    68    557    0    680    68
test.ys.sl128    test    128    558    0    1280    128
test.ys.sl198    test    198    559    0    1980    198
test.ys.sl328    test    328    560    0    3280    328
test.ys.sl648    test    648    561    0    6480    648
test.bbcz.1    test    1    513    0    10    1
test.djq.9    test    5000    253    0    0    5000
test.djq.10    test    10000    254    0    0    10000
test.djq.11    test    50000    255    0    0    50000
test.djq.12    test    100000    256    0    0    100000
test.xjdh.1    test    6    562    0    60    6
test.xjdh.2    test    30    563    0    300    30
test.xjdh.3    test    30    564    0    300    30
test.xjdh.4    test    128    565    0    1280    128
test.xjdh.5    test    30    566    0    300    30
test.xjdh.6    test    30    567    0    300    30
test.xjdh.7    test    68    568    0    680    68
test.xjdh.8    test    128    569    0    1280    128
test.xjdh.9    test    128    570    0    1280    128
test.xjdh.10    test    198    571    0    1980    198
test.xjdh.jj30    test    30    572    0    300    30
test.xjdh.jj128    test    128    573    0    1280    128
test.auto.week    test    6    574    0    60    6
test.auto.month    test    18    575    0    180    18
test.mai1song5.11    test    68    1    0    680    68
test.mai1song5.12    test    198    2    0    1980    198
test.mai1song5.13    test    328    3    0    3280    328
test.mai1song5.14    test    648    4    0    6480    648
test.mai1song5.31    test    68    5    0    680    68
test.mai1song5.32    test    198    6    0    1980    198
test.mai1song5.33    test    328    7    0    3280    328
test.mai1song5.34    test    1298    8    0    12980    1298
test.mai1song5.71    test    68    576    0    680    68
test.mai1song5.72    test    198    577    0    1980    198
test.mai1song5.73    test    328    578    0    3280    328
test.mai1song5.74    test    1298    579    0    12980    1298
test.libao.xs10    test    648    0    10    6480    648
test.libao.xs11    test    1298    0    11    12980    1298
test.libao.xs12    test    1998    0    12    19980    1998
test.libao.xs13    test    2648    0    13    26480    2648
test.xmgcz.lb1    test    6    580    0    60    6
test.xmgcz.lb2    test    30    581    0    300    30
test.xmgcz.lb3    test    68    582    0    680    68
test.xmgcz.lb4    test    128    583    0    1280    128
test.xmgcz.lb5    test    198    584    0    1980    198
test.xmgcz.lb6    test    328    585    0    3280    328
test.xmgcz.lb7    test    648    586    0    6480    648
test.xmgcz.lb8    test    648    587    0    6480    648