-
Notifications
You must be signed in to change notification settings - Fork 17
/
coverage.txt
1250 lines (1250 loc) · 107 KB
/
coverage.txt
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
mode: set
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:19.46,20.59 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:28.2,28.48 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:36.2,36.31 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:20.59,23.17 3 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:26.3,26.26 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:23.17,25.4 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:28.48,31.17 3 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:34.3,34.26 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:31.17,33.4 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:47.56,49.53 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:54.2,55.45 2 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:59.2,59.55 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:64.2,65.16 2 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:68.2,69.63 2 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:72.2,72.48 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:49.53,51.3 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:55.45,57.3 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:59.55,61.3 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:65.16,67.3 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:69.63,71.3 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:79.79,83.16 4 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:86.2,86.29 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:83.16,85.3 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:93.78,96.45 3 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:99.2,101.16 3 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:104.2,104.21 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:96.45,98.3 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:101.16,103.3 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:111.82,114.45 3 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:117.2,118.16 2 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:121.2,121.21 1 1
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:114.45,116.3 1 0
github.com/filecoin-project/go-data-transfer/encoding/encoding.go:118.16,120.3 1 0
github.com/filecoin-project/go-data-transfer/registry/registry.go:33.30,37.2 1 1
github.com/filecoin-project/go-data-transfer/registry/registry.go:40.89,43.16 3 1
github.com/filecoin-project/go-data-transfer/registry/registry.go:46.2,48.40 3 1
github.com/filecoin-project/go-data-transfer/registry/registry.go:51.2,52.12 2 1
github.com/filecoin-project/go-data-transfer/registry/registry.go:43.16,45.3 1 1
github.com/filecoin-project/go-data-transfer/registry/registry.go:48.40,50.3 1 1
github.com/filecoin-project/go-data-transfer/registry/registry.go:56.93,61.2 4 1
github.com/filecoin-project/go-data-transfer/registry/registry.go:64.88,69.2 4 1
github.com/filecoin-project/go-data-transfer/registry/registry.go:72.109,75.43 3 0
github.com/filecoin-project/go-data-transfer/registry/registry.go:81.2,81.12 1 0
github.com/filecoin-project/go-data-transfer/registry/registry.go:75.43,77.17 2 0
github.com/filecoin-project/go-data-transfer/registry/registry.go:77.17,79.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:20.63,21.14 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:25.2,25.66 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:29.2,32.40 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:36.2,36.111 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:39.2,39.68 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:45.2,45.106 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:50.2,50.38 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:54.2,54.109 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:57.2,57.66 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:62.2,62.38 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:66.2,66.109 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:69.2,69.66 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:75.2,75.63 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:80.2,80.50 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:85.2,85.35 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:89.2,89.106 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:92.2,92.63 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:97.2,97.38 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:101.2,101.109 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:104.2,104.66 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:110.2,110.105 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:116.2,116.102 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:122.2,122.100 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:128.2,128.104 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:133.2,133.36 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:137.2,137.107 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:140.2,140.64 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:145.2,145.37 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:149.2,149.103 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:152.2,152.31 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:159.2,159.43 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:163.2,163.109 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:166.2,166.37 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:173.2,173.41 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:177.2,177.107 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:180.2,180.35 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:185.2,185.12 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:21.14,24.3 2 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:25.66,27.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:32.40,34.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:36.111,38.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:39.68,41.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:45.106,47.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:50.38,52.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:54.109,56.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:57.66,59.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:62.38,64.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:66.109,68.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:69.66,71.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:75.63,77.3 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:80.50,82.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:85.35,87.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:89.106,91.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:92.63,94.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:97.38,99.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:101.109,103.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:104.66,106.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:110.105,112.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:116.102,118.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:122.100,124.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:128.104,130.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:133.36,135.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:137.107,139.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:140.64,142.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:145.37,147.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:149.103,151.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:152.31,153.42 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:153.42,155.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:159.43,161.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:163.109,165.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:166.37,167.42 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:167.42,169.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:173.41,175.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:177.107,179.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:180.35,181.56 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:181.56,183.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:188.65,195.16 5 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:198.2,198.25 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:202.2,202.17 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:360.2,361.16 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:365.2,365.27 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:369.2,369.25 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:373.2,373.15 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:377.2,377.34 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:389.2,390.16 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:394.2,394.27 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:398.2,398.25 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:402.2,402.15 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:406.2,406.34 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:418.2,419.16 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:423.2,423.27 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:427.2,427.25 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:431.2,431.15 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:435.2,435.34 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:444.2,444.12 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:195.16,197.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:198.25,200.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:202.17,204.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:208.2,210.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:214.3,214.32 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:210.17,212.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:218.2,221.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:224.3,224.32 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:227.3,227.48 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:221.17,223.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:224.32,226.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:232.2,234.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:238.3,238.30 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:234.17,236.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:242.2,244.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:248.3,248.30 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:244.17,246.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:252.2,255.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:259.3,259.16 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:255.17,257.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:264.2,268.54 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:268.54,270.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:274.2,276.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:280.3,280.27 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:276.17,278.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:284.2,286.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:290.3,290.30 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:286.17,288.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:294.2,297.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:300.3,300.32 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:303.3,303.30 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:297.17,299.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:300.32,302.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:308.2,311.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:314.3,314.32 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:317.3,317.40 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:311.17,313.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:314.32,316.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:322.2,325.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:328.3,328.32 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:331.3,331.25 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:325.17,327.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:328.32,330.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:336.2,339.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:342.3,342.32 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:345.3,345.29 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:339.17,341.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:342.32,344.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:350.2,352.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:356.3,356.27 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:352.17,354.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:361.16,363.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:365.27,367.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:369.25,371.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:373.15,375.3 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:377.34,380.45 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:384.3,384.20 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:380.45,382.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:390.16,392.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:394.27,396.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:398.25,400.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:402.15,404.3 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:406.34,409.45 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:413.3,413.26 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:409.45,411.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:419.16,421.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:423.27,425.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:427.25,429.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:431.15,433.3 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:435.34,438.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:441.3,441.24 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:438.17,440.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:449.57,450.14 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:454.2,454.60 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:458.2,461.33 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:465.2,465.104 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:468.2,468.61 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:473.2,473.49 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:476.2,476.12 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:450.14,453.3 2 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:454.60,456.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:461.33,463.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:465.104,467.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:468.61,470.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:473.49,475.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:479.59,486.16 5 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:489.2,489.25 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:493.2,493.16 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:517.2,517.12 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:486.16,488.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:489.25,491.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:493.16,495.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:499.2,501.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:505.3,505.45 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:501.17,503.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:509.2,513.53 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:513.53,515.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:522.63,523.14 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:527.2,527.66 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:531.2,534.33 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:538.2,538.104 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:541.2,541.61 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:546.2,546.55 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:549.2,549.12 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:523.14,526.3 2 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:527.66,529.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:534.33,536.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:538.104,540.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:541.61,543.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:546.55,548.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:552.65,559.16 5 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:562.2,562.25 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:566.2,566.16 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:590.2,590.12 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:559.16,561.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:562.25,564.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:566.16,568.3 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:572.2,574.17 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:578.3,578.45 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:574.17,576.4 1 0
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:582.2,586.59 2 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel_cbor_gen.go:586.59,588.4 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:56.52,56.71 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:59.37,59.54 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:62.41,62.62 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:65.60,65.83 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:68.41,68.61 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:72.44,76.16 4 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:79.2,79.24 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:76.16,78.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:83.54,87.2 3 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:90.48,92.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:95.40,95.59 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:98.43,98.65 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:101.42,101.64 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:104.37,106.2 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:108.58,109.14 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:109.14,111.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:111.8,113.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:116.40,118.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:120.57,122.37 2 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:127.2,127.17 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:122.37,126.3 3 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:130.58,134.2 3 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:136.70,140.2 3 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:142.69,144.43 2 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:149.2,149.23 1 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:144.43,148.3 3 1
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:152.61,153.27 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:156.2,156.17 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:153.27,155.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channel_state.go:159.45,161.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:51.45,66.16 3 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:69.2,70.15 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:66.16,68.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:73.77,75.9 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:78.2,79.9 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:82.2,88.87 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:75.9,77.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:79.9,81.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:93.224,95.29 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:100.2,102.16 3 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:105.2,106.16 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:109.2,129.16 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:132.2,132.60 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:95.29,97.3 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:97.8,99.3 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:102.16,104.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:106.16,108.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:129.16,131.3 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:136.95,139.16 3 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:142.2,143.51 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:147.2,147.22 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:139.16,141.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:143.51,146.3 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:152.113,155.16 3 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:158.2,158.86 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:155.16,157.3 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:162.62,164.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:167.63,169.2 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:171.91,173.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:175.95,177.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:180.70,182.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:185.70,187.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:190.71,192.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:195.71,197.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:200.96,202.16 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:205.2,205.76 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:202.16,204.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:209.114,211.16 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:214.2,214.94 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:211.16,213.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:218.64,220.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:223.70,225.2 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:228.74,230.2 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:233.83,235.2 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:238.71,240.2 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:243.62,245.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:248.72,250.2 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:253.74,255.2 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:257.110,259.16 2 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:262.2,262.10 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:265.2,265.50 1 1
github.com/filecoin-project/go-data-transfer/channels/channels.go:259.16,261.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels.go:262.10,264.3 1 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:30.121,34.3 3 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:43.121,46.3 2 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:48.124,51.3 2 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:53.105,56.4 2 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:58.111,62.4 2 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:112.101,114.28 2 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:117.2,119.50 3 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:114.28,116.3 1 0
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:130.55,131.42 1 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:137.2,137.14 1 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:131.42,132.14 1 1
github.com/filecoin-project/go-data-transfer/channels/channels_fsm.go:132.14,134.4 1 1
github.com/filecoin-project/go-data-transfer/channels/internalchannel.go:61.146,82.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message.go:20.45,22.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message.go:25.65,26.20 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message.go:29.2,29.33 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message.go:26.20,28.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message.go:34.53,36.2 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:17.58,18.14 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:22.2,22.61 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:27.2,27.49 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:32.2,32.49 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:37.2,37.50 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:40.2,40.12 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:18.14,21.3 2 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:22.61,24.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:27.49,29.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:32.49,34.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:37.50,39.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:43.60,50.16 5 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:53.2,53.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:57.2,57.16 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:63.2,64.16 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:67.2,67.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:70.2,70.15 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:116.2,116.12 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:50.16,52.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:53.25,55.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:57.16,59.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:64.16,66.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:67.25,69.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:71.10,72.17 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:73.10,74.16 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:75.10,76.88 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:80.2,83.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:86.3,86.27 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:83.17,85.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:86.27,87.42 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:90.4,91.54 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:87.42,89.5 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:91.54,93.5 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:99.2,102.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:105.3,105.27 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:102.17,104.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:105.27,106.42 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:109.4,110.55 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:106.42,108.5 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_message_cbor_gen.go:110.55,112.5 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:37.46,39.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:41.46,43.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:45.68,47.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:49.80,50.44 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:53.2,53.32 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:50.44,52.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:56.42,58.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:60.45,62.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:64.46,66.2 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:68.45,70.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:72.66,74.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:78.43,80.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:83.71,85.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:88.91,89.22 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:92.2,92.46 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:89.22,91.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:95.49,97.2 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:100.47,101.21 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:104.2,104.18 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:101.21,103.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:108.59,109.21 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:112.2,115.16 4 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:118.2,118.29 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:109.21,111.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:115.16,117.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:122.45,124.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:127.46,129.2 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request.go:133.54,140.2 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:18.58,19.14 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:23.2,23.61 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:27.2,31.19 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:43.2,43.100 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:48.2,48.49 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:53.2,53.49 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:58.2,58.49 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:63.2,63.46 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:68.2,68.47 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:73.2,73.33 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:77.2,77.104 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:80.2,80.61 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:86.2,86.102 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:91.2,91.56 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:94.2,94.12 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:19.14,22.3 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:23.61,25.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:31.19,32.50 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:32.50,34.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:35.8,36.62 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:36.62,38.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:43.100,45.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:48.49,50.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:53.49,55.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:58.49,60.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:63.46,65.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:68.47,70.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:73.33,75.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:77.104,79.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:80.61,82.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:86.102,88.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:91.56,93.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:97.60,104.16 5 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:107.2,107.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:111.2,111.17 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:153.2,154.16 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:157.2,157.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:160.2,160.15 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:170.2,171.16 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:174.2,174.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:177.2,177.15 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:187.2,188.16 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:191.2,191.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:194.2,194.15 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:255.2,255.12 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:104.16,106.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:107.25,109.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:111.17,113.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:117.2,120.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:123.3,123.27 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:120.17,122.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:123.27,124.42 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:128.4,129.18 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:133.4,133.15 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:124.42,126.5 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:129.18,131.5 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:139.2,142.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:145.3,145.32 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:148.3,148.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:142.17,144.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:145.32,147.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:154.16,156.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:157.25,159.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:161.10,162.17 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:163.10,164.16 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:165.10,166.88 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:171.16,173.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:174.25,176.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:178.10,179.17 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:180.10,181.16 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:182.10,183.88 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:188.16,190.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:191.25,193.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:195.10,196.17 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:197.10,198.16 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:199.10,200.88 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:204.2,208.50 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:208.50,210.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:214.2,218.51 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:218.51,220.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:224.2,226.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:230.3,230.45 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:226.17,228.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:234.2,237.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:240.3,240.32 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:243.3,243.27 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:237.17,239.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:240.32,242.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:248.2,250.60 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_request_cbor_gen.go:250.60,252.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:25.68,27.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:30.48,32.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:35.44,37.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:40.47,42.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:45.47,47.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:50.47,52.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:55.49,57.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:59.54,62.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:65.47,67.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:69.79,71.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:73.99,74.22 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:77.2,77.46 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:74.22,76.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:80.47,82.2 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:84.57,86.2 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response.go:90.56,97.2 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:18.59,19.14 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:23.2,23.62 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:27.2,31.100 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:36.2,36.49 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:41.2,41.49 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:47.2,47.102 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:52.2,52.46 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:57.2,57.33 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:61.2,61.104 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:64.2,64.61 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:67.2,67.12 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:19.14,22.3 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:23.62,25.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:31.100,33.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:36.49,38.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:41.49,43.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:47.102,49.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:52.46,54.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:57.33,59.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:61.104,63.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:64.61,66.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:70.61,77.16 5 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:80.2,80.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:84.2,84.16 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:104.2,105.16 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:108.2,108.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:111.2,111.15 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:121.2,122.16 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:125.2,125.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:128.2,128.15 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:170.2,170.12 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:77.16,79.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:80.25,82.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:84.16,86.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:90.2,93.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:96.3,96.32 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:99.3,99.25 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:93.17,95.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:96.32,98.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:105.16,107.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:108.25,110.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:112.10,113.17 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:114.10,115.16 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:116.10,117.88 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:122.16,124.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:125.25,127.3 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:129.10,130.17 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:131.10,132.16 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:133.10,134.88 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:138.2,141.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:144.3,144.32 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:147.3,147.27 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:141.17,143.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:144.32,146.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:152.2,156.50 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:156.50,158.4 1 0
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:162.2,164.17 2 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:168.3,168.45 1 1
github.com/filecoin-project/go-data-transfer/message/transfer_response_cbor_gen.go:164.17,166.4 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:29.204,31.16 2 1
github.com/filecoin-project/go-data-transfer/message/message.go:34.2,34.26 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:37.2,38.16 2 1
github.com/filecoin-project/go-data-transfer/message/message.go:42.2,43.15 2 1
github.com/filecoin-project/go-data-transfer/message/message.go:49.2,57.8 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:31.16,33.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:34.26,36.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:38.16,40.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:43.15,45.3 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:45.8,47.3 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:61.91,65.2 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:68.69,73.2 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:76.84,82.2 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:85.142,87.16 2 0
github.com/filecoin-project/go-data-transfer/message/message.go:90.2,95.8 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:87.16,89.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:99.192,101.16 2 0
github.com/filecoin-project/go-data-transfer/message/message.go:104.2,111.8 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:101.16,103.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:115.188,117.16 2 1
github.com/filecoin-project/go-data-transfer/message/message.go:120.2,127.8 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:117.16,119.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:131.198,133.16 2 0
github.com/filecoin-project/go-data-transfer/message/message.go:136.2,143.8 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:133.16,135.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:147.86,153.2 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:156.71,161.2 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:164.195,166.16 2 1
github.com/filecoin-project/go-data-transfer/message/message.go:169.2,176.8 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:166.16,168.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:180.57,183.16 3 1
github.com/filecoin-project/go-data-transfer/message/message.go:186.2,186.23 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:189.2,189.28 1 1
github.com/filecoin-project/go-data-transfer/message/message.go:183.16,185.3 1 0
github.com/filecoin-project/go-data-transfer/message/message.go:186.23,188.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:52.74,65.2 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:78.34,79.21 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:82.2,83.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:86.2,90.54 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:93.2,98.29 5 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:111.2,114.12 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:79.21,81.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:83.16,85.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:90.54,92.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:98.29,100.35 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:103.3,104.17 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:107.3,109.36 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:100.35,102.4 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:104.17,106.4 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:117.87,119.6 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:119.6,120.10 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:121.21,122.30 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:123.29,124.11 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:127.4,127.19 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:124.11,126.5 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:132.115,135.67 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:143.2,143.61 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:135.67,137.63 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:140.3,140.9 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:137.63,139.4 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:143.61,145.23 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:148.3,149.17 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:145.23,147.4 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:149.17,151.4 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:155.112,156.6 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:156.6,159.9 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:163.3,165.18 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:168.3,168.10 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:159.9,162.4 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:165.18,167.4 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:169.21,170.58 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:171.18,171.18 0 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:179.9,180.21 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:183.2,184.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:187.2,187.25 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:191.2,193.48 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:196.2,196.53 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:180.21,182.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:184.16,186.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:187.25,189.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:193.48,195.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:203.9,204.21 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:207.2,208.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:211.2,212.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:219.2,219.25 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:222.2,225.48 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:230.2,230.70 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:204.21,206.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:208.16,210.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:212.16,214.17 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:217.3,217.42 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:214.17,216.4 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:219.25,221.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:225.48,229.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:234.90,235.21 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:238.2,239.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:242.2,242.25 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:252.2,253.48 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:256.2,257.54 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:235.21,237.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:239.16,241.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:242.25,246.10 4 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:249.3,250.13 2 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:246.10,248.4 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:253.48,255.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:262.65,265.8 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:268.2,268.21 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:265.8,267.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:272.78,273.21 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:276.2,285.12 10 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:273.21,275.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:289.110,291.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:294.2,297.12 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:291.16,293.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:300.135,304.20 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:308.2,310.25 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:317.2,321.16 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:325.2,326.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:330.2,331.8 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:334.2,334.21 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:304.20,306.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:310.25,313.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:313.8,316.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:321.16,324.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:326.16,329.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:331.8,333.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:337.160,342.9 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:346.2,347.48 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:352.2,352.34 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:342.9,344.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:347.48,350.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:352.34,354.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:357.158,360.9 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:364.2,367.38 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:370.2,373.48 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:378.2,378.34 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:382.2,382.16 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:360.9,363.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:367.38,369.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:373.48,376.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:378.34,380.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:382.16,384.17 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:388.3,388.43 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:384.17,387.4 2 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:394.127,398.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:404.2,404.16 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:408.2,410.21 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:422.2,422.28 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:431.2,431.48 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:436.2,436.34 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:440.2,442.48 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:450.2,453.21 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:458.2,459.8 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:462.2,463.31 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:398.16,401.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:404.16,406.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:410.21,415.3 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:415.8,420.3 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:422.28,424.26 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:428.3,428.43 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:424.26,427.4 2 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:431.48,434.3 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:436.34,438.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:442.48,446.34 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:446.34,448.4 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:453.21,455.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:455.8,457.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:459.8,461.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:468.128,473.9 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:477.2,477.42 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:473.9,475.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:477.42,480.17 3 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:480.17,482.4 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:486.85,495.8 9 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:501.2,501.24 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:495.8,497.17 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:497.17,499.4 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:504.163,509.9 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:513.2,515.28 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:524.2,524.48 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:509.9,511.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:515.28,517.26 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:521.3,521.43 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:517.26,520.4 2 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:524.48,526.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:531.139,537.9 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:541.2,543.28 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:552.2,552.16 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:537.9,539.3 1 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:543.28,545.26 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:549.3,549.53 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:545.26,548.4 2 0
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:552.16,554.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:557.136,561.16 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:566.2,566.16 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:570.2,570.21 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:581.2,581.95 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:585.2,586.59 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:561.16,563.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:566.16,568.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:570.21,573.96 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:576.3,577.53 2 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:573.96,575.4 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:581.95,583.3 1 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:589.92,594.8 4 1
github.com/filecoin-project/go-data-transfer/transport/graphsync/graphsync.go:594.8,596.3 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:24.60,30.2 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:40.113,42.2 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:47.39,50.16 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:54.2,54.53 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:63.2,64.18 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:50.16,52.3 1 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:54.53,55.37 1 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:59.3,59.13 1 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:55.37,58.4 2 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:68.65,71.2 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:73.89,75.2 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:78.75,81.27 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:86.2,86.6 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:81.27,84.3 2 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:86.6,88.17 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:97.3,101.27 4 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:88.17,89.21 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:94.4,94.10 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:89.21,93.5 3 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:101.27,103.10 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:103.10,104.58 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:104.58,106.6 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:106.11,108.6 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:110.9,112.10 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:112.10,114.5 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:119.54,121.2 1 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:123.73,125.2 1 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:127.80,129.2 1 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:131.89,132.21 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:136.2,137.34 2 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:140.2,140.53 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:144.2,144.22 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:154.2,154.56 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:157.2,157.12 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:132.21,134.3 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:137.34,139.3 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:140.53,142.3 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:145.28,146.38 1 1
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:150.10,151.73 1 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:146.38,149.4 2 0
github.com/filecoin-project/go-data-transfer/network/libp2p_impl.go:154.56,156.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:18.70,20.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:23.2,23.10 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:26.2,26.12 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:20.16,22.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:23.10,25.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:29.98,31.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:34.2,34.32 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:52.2,52.12 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:31.16,33.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:34.32,37.119 3 1
github.com/filecoin-project/go-data-transfer/impl/events.go:42.3,42.34 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:37.119,41.4 3 1
github.com/filecoin-project/go-data-transfer/impl/events.go:42.34,44.18 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:49.4,49.14 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:44.18,45.98 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:45.98,47.6 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:55.118,57.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:60.2,60.32 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:72.2,72.17 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:57.16,59.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:60.32,63.119 3 1
github.com/filecoin-project/go-data-transfer/impl/events.go:68.3,68.34 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:63.119,67.4 3 1
github.com/filecoin-project/go-data-transfer/impl/events.go:68.34,70.4 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:75.127,76.25 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:80.2,80.21 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:83.2,83.24 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:87.2,87.25 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:90.2,90.24 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:93.2,94.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:97.2,98.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:101.2,102.53 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:105.2,105.17 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:76.25,78.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:80.21,82.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:83.24,86.3 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:87.25,89.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:90.24,92.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:94.16,96.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:98.16,100.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:102.53,104.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:108.105,109.25 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:112.2,112.32 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:140.2,140.50 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:149.2,149.25 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:152.2,152.28 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:109.25,111.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:112.32,113.37 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:123.3,123.27 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:126.3,126.23 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:133.3,133.27 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:113.37,115.18 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:118.4,119.18 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:115.18,117.5 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:119.18,121.5 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:123.27,125.4 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:126.23,128.18 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:128.18,130.5 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:133.27,135.18 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:135.18,137.5 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:140.50,141.27 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:144.3,145.17 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:141.27,143.4 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:145.17,147.4 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:149.25,151.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:155.72,160.2 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:162.87,163.13 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:185.2,185.66 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:163.13,164.33 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:183.3,183.41 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:164.33,166.18 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:169.4,169.18 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:175.4,175.22 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:181.4,181.38 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:166.18,168.5 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:169.18,170.98 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:170.98,173.6 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:175.22,176.23 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:179.5,179.37 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:176.23,178.6 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:188.132,191.19 3 1
github.com/filecoin-project/go-data-transfer/impl/events.go:194.2,194.17 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:191.19,193.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:199.64,202.19 3 1
github.com/filecoin-project/go-data-transfer/impl/events.go:205.2,205.17 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:202.19,204.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:209.69,212.27 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:216.2,216.98 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:220.2,221.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:225.2,226.48 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:229.2,231.19 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:237.2,237.49 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:240.2,241.9 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:245.2,246.41 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:252.2,252.27 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:212.27,214.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:216.98,218.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:221.16,223.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:226.48,228.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:231.19,233.17 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:233.17,235.4 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:237.49,239.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:241.9,244.3 2 0
github.com/filecoin-project/go-data-transfer/impl/events.go:246.41,248.17 2 0
github.com/filecoin-project/go-data-transfer/impl/events.go:248.17,250.4 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:257.69,260.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:264.2,265.48 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:268.2,271.23 3 1
github.com/filecoin-project/go-data-transfer/impl/events.go:279.2,280.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:283.2,283.19 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:289.2,289.48 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:292.2,293.9 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:297.2,298.41 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:304.2,304.27 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:260.16,262.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:265.48,267.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:271.23,274.3 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:274.8,277.3 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:280.16,282.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:283.19,285.17 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:285.17,287.4 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:289.48,291.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:293.9,296.3 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:298.41,300.17 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:300.17,302.4 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:317.76,319.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:322.2,325.12 4 1
github.com/filecoin-project/go-data-transfer/impl/events.go:331.2,332.27 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:319.16,321.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:325.12,327.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:327.8,329.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:342.91,344.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:347.2,351.27 4 1
github.com/filecoin-project/go-data-transfer/impl/events.go:344.16,346.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:354.130,356.18 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:362.2,362.62 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:356.18,358.17 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:358.17,360.4 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:365.152,367.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:370.2,370.46 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:373.2,373.61 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:367.16,369.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:370.46,372.3 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:376.157,379.16 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:382.2,382.19 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:388.2,388.40 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:396.2,396.22 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:403.2,403.31 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:379.16,381.3 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:382.19,384.17 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:384.17,386.4 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:388.40,390.17 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:393.3,393.44 1 1
github.com/filecoin-project/go-data-transfer/impl/events.go:390.17,392.4 1 0
github.com/filecoin-project/go-data-transfer/impl/events.go:396.22,398.17 2 1
github.com/filecoin-project/go-data-transfer/impl/events.go:401.3,401.45 1 1