-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresult.json
2909 lines (2909 loc) · 64.2 KB
/
result.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
{
"text": " Hello, my colleagues, I am Li Yongde. Today, we continue to talk about the issue of the epidemic. Have you heard of the epidemic? There are two small heads, a body accident, and then caught by police. Police are interested in two people, and they tell them the policy. If two people are fighting against the police, and the process and the crime, they can be guilty. Two people are all over the past three years. If one person is guilty, another person is not guilty, then one can be guilty. But the person who is guilty is always guilty. The skin and skin education is the one who is not guilty. The person who is not guilty is never guilty, and the person who is not guilty is never guilty. If two people are not guilty, then there is no way to be guilty. The person can only be sentenced for a year. We have written two people's opinions on the bottom. As for the crime is not good, so it is recommended to be guilty. When this happens, what will the two small heads do? First, we will consider the case of the case of the case of case A. A will think, how can I get more than the case? If I get white, then I will be sentenced to three years. If I get the case, then I will be sentenced to five years. To make my collection of accounts big, I should be sentenced to three years. If I get the case, then I will be sentenced to zero years. I will be sentenced to one year. Then I should be sentenced to three years. So, no matter what you do, A should be a punishment for the case. This is how A is the biggest. The same thing happens. No matter how you do it, you should be sentenced to three years. The most important thing is that the case is the biggest. In this case, the two people are sentenced to three years. And there is no one willing to change their decision by changing the case. Because if the exception can be changed in case there is a replacement decision will be deleted after it succeeds itself. The evidence of this pretent\uc544\uc694-telling is stipulated by Natalism Scutes. The two people are among the v\u1eadyemon4 Which have been appreciated all the time. Both times are over- detailing mixed multiple payment. Pre-ignition of most views drags is often seen as two. But Natalism Scutes really isn't at these foods. That suggests that during the arrest recently, there surely festival agendas worry about reading the list of cases and Zachai's numbers If everyone doesn't include Zachai is the biggest satir And the term of growth is not counted. But according to Natalism Scutes. No matter if it's a private investment, I can take a big one by myself. In the end, everyone will invest and invest. Anyway, no matter how much you invest, go fast. The economic level is the highest and the demand for the market is the average. And when the market is the price of the product, the net will be expected to increase the cost of the product. Why is this? In fact, it's also a trend. As a product of the product, it's a hundred yuan. Other manufacturers sell 150 yuan. Then we can make a total of 149 yuan. It's a force for me. But other manufacturers will think so. They will sell 148 yuan. So everyone will be willing to invest in the market. Each manufacturer can only get their own labor and rights. And no way can get a super power. Does there be any way that the most personal and most friendly and most friendly? There is a method called the attack mode. Two small heads can be said before doing it. If we go in, we will be afraid. If you dare to turn around this time, it will not be a rule. After coming out, the people on the street will be paid for you. If this small head still wants to continue doing it, he will definitely not dare to do it. He will not be able to do it. In many times, the process of the process is possible. But if this small head wants to finish this one step, then the process is not reliable. In the business field, you can also rely on the process to complete the price. For example, when the salesman is sharing the salesman, there may be the lowest price of the agreement, the price of the price of the price. But in this way, there is no way to stop sharing the salesman's salesman. At the same time, we will see some large-scale salesman have such a high-end. If you buy something in our salesman, it is more expensive than others. No price to withdraw. It looks like this is a good thing to give the salesman a deal. But in fact, this is in the news of other salesmen. Don't think about the price of the price of the price. I, if you dare to price, I also follow this. How much do you have? I also have so many, how much do you have? In this case, the company will not do such a useless, unwise thing. But it will be the same price of the sale of the sale of the sale of the price. This is how the salesman works. In the society, the salesman is a law-based process. Everyone's decision is the law of the salesman. If someone does not decide to do it, then it will be the law of the salesman. Through this method, it is to ensure the most excellent results from \ubd99ing the most excellent results from everyone. At the same time, the military points will be the best. The law does not often say that the law is not a law, not a law is not a law. The purpose is to make everyone succeed in the market for everyone to succeed. Let everyone know that if you don't do the rules, you can still get the short power, but in the long term, you will definitely receive the punishment. Only this way can be avoided, the unwise thing is the military points. Sometimes, you can catch a small piece of paper and it's much better than the small piece of paper. But why do we still have to catch it? Because if someone finds that the rules are not good, then the whole society will be divided into the same cases. We have to control too much current to ensure that we also have to keep an acclaimed class under the chain. In this time, you will see. This is very difficult. There are some interesting reasons to issue strategies.",
"segments": [
{
"id": 0,
"seek": 0,
"start": 0.0,
"end": 2.0,
"text": " Hello, my colleagues, I am Li Yongde.",
"tokens": [
2425,
11,
452,
7734,
11,
286,
669,
8349,
20085,
1479,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 1,
"seek": 0,
"start": 2.0,
"end": 4.4,
"text": " Today, we continue to talk about the issue of the epidemic.",
"tokens": [
2692,
11,
321,
2354,
281,
751,
466,
264,
2734,
295,
264,
20982,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 2,
"seek": 0,
"start": 4.4,
"end": 6.8,
"text": " Have you heard of the epidemic?",
"tokens": [
3560,
291,
2198,
295,
264,
20982,
30
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 3,
"seek": 0,
"start": 6.8,
"end": 10.4,
"text": " There are two small heads, a body accident, and then caught by police.",
"tokens": [
821,
366,
732,
1359,
8050,
11,
257,
1772,
6398,
11,
293,
550,
5415,
538,
3804,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 4,
"seek": 0,
"start": 10.4,
"end": 14.0,
"text": " Police are interested in two people, and they tell them the policy.",
"tokens": [
11882,
366,
3102,
294,
732,
561,
11,
293,
436,
980,
552,
264,
3897,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 5,
"seek": 0,
"start": 14.0,
"end": 17.400000000000002,
"text": " If two people are fighting against the police, and the process and the crime,",
"tokens": [
759,
732,
561,
366,
5237,
1970,
264,
3804,
11,
293,
264,
1399,
293,
264,
7206,
11
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 6,
"seek": 0,
"start": 17.400000000000002,
"end": 18.400000000000002,
"text": " they can be guilty.",
"tokens": [
436,
393,
312,
12341,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 7,
"seek": 0,
"start": 18.400000000000002,
"end": 20.400000000000002,
"text": " Two people are all over the past three years.",
"tokens": [
4453,
561,
366,
439,
670,
264,
1791,
1045,
924,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 8,
"seek": 0,
"start": 20.400000000000002,
"end": 22.8,
"text": " If one person is guilty, another person is not guilty,",
"tokens": [
759,
472,
954,
307,
12341,
11,
1071,
954,
307,
406,
12341,
11
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 9,
"seek": 0,
"start": 22.8,
"end": 24.2,
"text": " then one can be guilty.",
"tokens": [
550,
472,
393,
312,
12341,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 10,
"seek": 0,
"start": 24.2,
"end": 26.400000000000002,
"text": " But the person who is guilty is always guilty.",
"tokens": [
583,
264,
954,
567,
307,
12341,
307,
1009,
12341,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 11,
"seek": 0,
"start": 26.400000000000002,
"end": 28.0,
"text": " The skin and skin education is the one who is not guilty.",
"tokens": [
440,
3178,
293,
3178,
3309,
307,
264,
472,
567,
307,
406,
12341,
13
],
"temperature": 0.0,
"avg_logprob": -0.9279587463762775,
"compression_ratio": 1.9477124183006536,
"no_speech_prob": 0.009154966101050377
},
{
"id": 12,
"seek": 2800,
"start": 28.0,
"end": 30.8,
"text": " The person who is not guilty is never guilty, and the person who is not guilty is never guilty.",
"tokens": [
440,
954,
567,
307,
406,
12341,
307,
1128,
12341,
11,
293,
264,
954,
567,
307,
406,
12341,
307,
1128,
12341,
13
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 13,
"seek": 2800,
"start": 30.8,
"end": 33.4,
"text": " If two people are not guilty, then there is no way to be guilty.",
"tokens": [
759,
732,
561,
366,
406,
12341,
11,
550,
456,
307,
572,
636,
281,
312,
12341,
13
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 14,
"seek": 2800,
"start": 33.4,
"end": 35.4,
"text": " The person can only be sentenced for a year.",
"tokens": [
440,
954,
393,
787,
312,
30954,
337,
257,
1064,
13
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 15,
"seek": 2800,
"start": 35.4,
"end": 38.2,
"text": " We have written two people's opinions on the bottom.",
"tokens": [
492,
362,
3720,
732,
561,
311,
11819,
322,
264,
2767,
13
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 16,
"seek": 2800,
"start": 38.2,
"end": 41.8,
"text": " As for the crime is not good, so it is recommended to be guilty.",
"tokens": [
1018,
337,
264,
7206,
307,
406,
665,
11,
370,
309,
307,
9628,
281,
312,
12341,
13
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 17,
"seek": 2800,
"start": 41.8,
"end": 45.0,
"text": " When this happens, what will the two small heads do?",
"tokens": [
1133,
341,
2314,
11,
437,
486,
264,
732,
1359,
8050,
360,
30
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 18,
"seek": 2800,
"start": 45.0,
"end": 47.6,
"text": " First, we will consider the case of the case of the case of case A.",
"tokens": [
2386,
11,
321,
486,
1949,
264,
1389,
295,
264,
1389,
295,
264,
1389,
295,
1389,
316,
13
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 19,
"seek": 2800,
"start": 47.6,
"end": 51.0,
"text": " A will think, how can I get more than the case?",
"tokens": [
316,
486,
519,
11,
577,
393,
286,
483,
544,
813,
264,
1389,
30
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 20,
"seek": 2800,
"start": 51.0,
"end": 54.400000000000006,
"text": " If I get white, then I will be sentenced to three years.",
"tokens": [
759,
286,
483,
2418,
11,
550,
286,
486,
312,
30954,
281,
1045,
924,
13
],
"temperature": 0.0,
"avg_logprob": -0.7018069458007813,
"compression_ratio": 2.025830258302583,
"no_speech_prob": 1.580759635544382e-05
},
{
"id": 21,
"seek": 5440,
"start": 54.4,
"end": 58.199999999999996,
"text": " If I get the case, then I will be sentenced to five years.",
"tokens": [
759,
286,
483,
264,
1389,
11,
550,
286,
486,
312,
30954,
281,
1732,
924,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 22,
"seek": 5440,
"start": 58.199999999999996,
"end": 60.199999999999996,
"text": " To make my collection of accounts big, I should be sentenced to three years.",
"tokens": [
1407,
652,
452,
5765,
295,
9402,
955,
11,
286,
820,
312,
30954,
281,
1045,
924,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 23,
"seek": 5440,
"start": 60.199999999999996,
"end": 63.2,
"text": " If I get the case, then I will be sentenced to zero years.",
"tokens": [
759,
286,
483,
264,
1389,
11,
550,
286,
486,
312,
30954,
281,
4018,
924,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 24,
"seek": 5440,
"start": 63.2,
"end": 65.2,
"text": " I will be sentenced to one year.",
"tokens": [
286,
486,
312,
30954,
281,
472,
1064,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 25,
"seek": 5440,
"start": 65.2,
"end": 67.2,
"text": " Then I should be sentenced to three years.",
"tokens": [
1396,
286,
820,
312,
30954,
281,
1045,
924,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 26,
"seek": 5440,
"start": 67.2,
"end": 68.2,
"text": " So, no matter what you do,",
"tokens": [
407,
11,
572,
1871,
437,
291,
360,
11
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 27,
"seek": 5440,
"start": 68.2,
"end": 70.2,
"text": " A should be a punishment for the case.",
"tokens": [
316,
820,
312,
257,
14133,
337,
264,
1389,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 28,
"seek": 5440,
"start": 70.2,
"end": 72.2,
"text": " This is how A is the biggest.",
"tokens": [
639,
307,
577,
316,
307,
264,
3880,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 29,
"seek": 5440,
"start": 72.2,
"end": 74.2,
"text": " The same thing happens.",
"tokens": [
440,
912,
551,
2314,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 30,
"seek": 5440,
"start": 74.2,
"end": 77.2,
"text": " No matter how you do it, you should be sentenced to three years.",
"tokens": [
883,
1871,
577,
291,
360,
309,
11,
291,
820,
312,
30954,
281,
1045,
924,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 31,
"seek": 5440,
"start": 77.2,
"end": 80.2,
"text": " The most important thing is that the case is the biggest.",
"tokens": [
440,
881,
1021,
551,
307,
300,
264,
1389,
307,
264,
3880,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 32,
"seek": 5440,
"start": 80.2,
"end": 82.2,
"text": " In this case, the two people are sentenced to three years.",
"tokens": [
682,
341,
1389,
11,
264,
732,
561,
366,
30954,
281,
1045,
924,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 33,
"seek": 5440,
"start": 82.2,
"end": 84.2,
"text": " And there is no one willing to change their decision by changing the case.",
"tokens": [
400,
456,
307,
572,
472,
4950,
281,
1319,
641,
3537,
538,
4473,
264,
1389,
13
],
"temperature": 0.4,
"avg_logprob": -0.6105474558743563,
"compression_ratio": 2.36996336996337,
"no_speech_prob": 9.202312867273577e-06
},
{
"id": 34,
"seek": 8420,
"start": 84.2,
"end": 86.2,
"text": " Because if the exception can be changed in case there is a replacement decision",
"tokens": [
1436,
498,
264,
11183,
393,
312,
3105,
294,
1389,
456,
307,
257,
14419,
3537
],
"temperature": 1.0,
"avg_logprob": -3.3797468705610796,
"compression_ratio": 1.6603773584905661,
"no_speech_prob": 1.2811301530746277e-05
},
{
"id": 35,
"seek": 8420,
"start": 86.2,
"end": 88.2,
"text": " will be deleted after it succeeds itself.",
"tokens": [
486,
312,
22981,
934,
309,
49263,
2564,
13
],
"temperature": 1.0,
"avg_logprob": -3.3797468705610796,
"compression_ratio": 1.6603773584905661,
"no_speech_prob": 1.2811301530746277e-05
},
{
"id": 36,
"seek": 8420,
"start": 88.2,
"end": 91.8,
"text": " The evidence of this pretent\uc544\uc694-telling is stipulated by Natalism Scutes.",
"tokens": [
440,
4467,
295,
341,
1162,
317,
5601,
12,
83,
11073,
307,
37001,
6987,
538,
6821,
304,
1434,
2747,
1819,
13
],
"temperature": 1.0,
"avg_logprob": -3.3797468705610796,
"compression_ratio": 1.6603773584905661,
"no_speech_prob": 1.2811301530746277e-05
},
{
"id": 37,
"seek": 8420,
"start": 91.8,
"end": 94.4,
"text": " The two people are among the v\u1eadyemon4 Which have been appreciated all the time.",
"tokens": [
440,
732,
561,
366,
3654,
264,
29738,
36228,
19,
3013,
362,
668,
17169,
439,
264,
565,
13
],
"temperature": 1.0,
"avg_logprob": -3.3797468705610796,
"compression_ratio": 1.6603773584905661,
"no_speech_prob": 1.2811301530746277e-05
},
{
"id": 38,
"seek": 8420,
"start": 94.4,
"end": 96.2,
"text": " Both times are over- detailing mixed multiple payment.",
"tokens": [
6767,
1413,
366,
670,
12,
42459,
7467,
3866,
10224,
13
],
"temperature": 1.0,
"avg_logprob": -3.3797468705610796,
"compression_ratio": 1.6603773584905661,
"no_speech_prob": 1.2811301530746277e-05
},
{
"id": 39,
"seek": 8420,
"start": 96.2,
"end": 98.8,
"text": " Pre-ignition of most views drags is often seen as two.",
"tokens": [
6001,
12,
788,