-
Notifications
You must be signed in to change notification settings - Fork 0
/
coverage.txt
1045 lines (1014 loc) · 46.8 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
Compiling 40 files with 0.8.25
Solc 0.8.25 finished in 6.35s
Compiler run successful with warnings:
Warning (6321): Unnamed return variable can remain unassigned. Add an explicit return with value to all non-reverting code paths or name the variable.
--> src/Raffle.sol:92:37:
|
92 | returns (bool upkeepNeeded, bytes memory /*performData*/ )
| ^^^^^^^^^^^^
Warning (5667): Unused function parameter. Remove or comment out the variable name to silence this warning.
--> src/Raffle.sol:111:33:
|
111 | function fulfillRandomWords(uint256 _requestId, uint256[] memory _randomWords) internal override {
| ^^^^^^^^^^^^^^^^^^
Analysing contracts...
Running tests...
Uncovered for script/DeployRaffle.s.sol:
- Branch (branch: 0, path: 0) (location: source ID 35, line 23, chars 861-1303, hits: 0)
Uncovered for script/HelperConfig.s.sol:
- Function "" (location: source ID 36, line 22, chars 639-851, hits: 0)
- Line (location: source ID 36, line 23, chars 668-693, hits: 0)
- Statement (location: source ID 36, line 23, chars 668-693, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 36, line 23, chars 664-765, hits: 0)
- Branch (branch: 0, path: 1) (location: source ID 36, line 23, chars 664-765, hits: 0)
- Line (location: source ID 36, line 24, chars 710-753, hits: 0)
- Statement (location: source ID 36, line 24, chars 710-753, hits: 0)
- Line (location: source ID 36, line 26, chars 786-832, hits: 0)
- Statement (location: source ID 36, line 26, chars 786-832, hits: 0)
- Function "getEthSepoliaConfig" (location: source ID 36, line 30, chars 859-1368, hits: 0)
- Line (location: source ID 36, line 31, chars 944-1360, hits: 0)
- Statement (location: source ID 36, line 31, chars 944-1360, hits: 0)
- Statement (location: source ID 36, line 31, chars 951-1360, hits: 0)
- Function "getOrCreateAnvilConfig" (location: source ID 36, line 42, chars 1376-2284, hits: 0)
- Line (location: source ID 36, line 43, chars 1463-1511, hits: 0)
- Statement (location: source ID 36, line 43, chars 1463-1511, hits: 0)
- Statement (location: source ID 36, line 43, chars 1501-1511, hits: 0)
- Branch (branch: 1, path: 0) (location: source ID 36, line 43, chars 1459-1566, hits: 0)
- Branch (branch: 1, path: 1) (location: source ID 36, line 43, chars 1459-1566, hits: 0)
- Line (location: source ID 36, line 44, chars 1528-1554, hits: 0)
- Statement (location: source ID 36, line 44, chars 1528-1554, hits: 0)
- Line (location: source ID 36, line 46, chars 1576-1603, hits: 0)
- Statement (location: source ID 36, line 46, chars 1576-1603, hits: 0)
- Line (location: source ID 36, line 47, chars 1628-1652, hits: 0)
- Statement (location: source ID 36, line 47, chars 1628-1652, hits: 0)
- Line (location: source ID 36, line 48, chars 1681-1700, hits: 0)
- Statement (location: source ID 36, line 48, chars 1681-1700, hits: 0)
- Line (location: source ID 36, line 49, chars 1711-1760, hits: 0)
- Statement (location: source ID 36, line 49, chars 1711-1760, hits: 0)
- Statement (location: source ID 36, line 49, chars 1741-1760, hits: 0)
- Line (location: source ID 36, line 50, chars 1771-1857, hits: 0)
- Statement (location: source ID 36, line 50, chars 1771-1857, hits: 0)
- Statement (location: source ID 36, line 50, chars 1811-1857, hits: 0)
- Line (location: source ID 36, line 51, chars 1868-1886, hits: 0)
- Statement (location: source ID 36, line 51, chars 1868-1886, hits: 0)
- Line (location: source ID 36, line 52, chars 1897-2276, hits: 0)
- Statement (location: source ID 36, line 52, chars 1897-2276, hits: 0)
- Statement (location: source ID 36, line 52, chars 1904-2276, hits: 0)
Uncovered for script/interactions.s.sol:
- Function "addConsumerUsingConfig" (location: source ID 37, line 63, chars 2475-2758, hits: 0)
- Line (location: source ID 37, line 64, chars 2541-2587, hits: 0)
- Statement (location: source ID 37, line 64, chars 2541-2587, hits: 0)
- Statement (location: source ID 37, line 64, chars 2569-2587, hits: 0)
- Line (location: source ID 37, line 65, chars 2598-2688, hits: 0)
- Statement (location: source ID 37, line 65, chars 2598-2688, hits: 0)
- Statement (location: source ID 37, line 65, chars 2654-2688, hits: 0)
- Line (location: source ID 37, line 66, chars 2699-2750, hits: 0)
- Statement (location: source ID 37, line 66, chars 2699-2750, hits: 0)
- Function "run" (location: source ID 37, line 75, chars 3013-3177, hits: 0)
- Line (location: source ID 37, line 76, chars 3048-3128, hits: 0)
- Statement (location: source ID 37, line 76, chars 3048-3128, hits: 0)
- Statement (location: source ID 37, line 76, chars 3065-3128, hits: 0)
- Line (location: source ID 37, line 77, chars 3139-3169, hits: 0)
- Statement (location: source ID 37, line 77, chars 3139-3169, hits: 0)
- Function "fundSubscriptionUsingConfig" (location: source ID 37, line 35, chars 1309-1636, hits: 0)
- Line (location: source ID 37, line 36, chars 1366-1412, hits: 0)
- Statement (location: source ID 37, line 36, chars 1366-1412, hits: 0)
- Statement (location: source ID 37, line 36, chars 1394-1412, hits: 0)
- Line (location: source ID 37, line 37, chars 1423-1551, hits: 0)
- Statement (location: source ID 37, line 37, chars 1423-1551, hits: 0)
- Line (location: source ID 37, line 38, chars 1517-1551, hits: 0)
- Statement (location: source ID 37, line 38, chars 1517-1551, hits: 0)
- Line (location: source ID 37, line 39, chars 1562-1628, hits: 0)
- Statement (location: source ID 37, line 39, chars 1562-1628, hits: 0)
- Branch (branch: 0, path: 0) (location: source ID 37, line 46, chars 1935-2139, hits: 0)
- Line (location: source ID 37, line 51, chars 2160-2179, hits: 0)
- Statement (location: source ID 37, line 51, chars 2160-2179, hits: 0)
- Line (location: source ID 37, line 52, chars 2194-2298, hits: 0)
- Statement (location: source ID 37, line 52, chars 2194-2298, hits: 0)
- Line (location: source ID 37, line 53, chars 2313-2331, hits: 0)
- Statement (location: source ID 37, line 53, chars 2313-2331, hits: 0)
- Function "run" (location: source ID 37, line 57, chars 2358-2430, hits: 0)
- Line (location: source ID 37, line 58, chars 2393-2422, hits: 0)
- Statement (location: source ID 37, line 58, chars 2393-2422, hits: 0)
- Function "createSubscriptionUsingConfig" (location: source ID 37, line 12, chars 464-725, hits: 0)
- Line (location: source ID 37, line 13, chars 540-586, hits: 0)
- Statement (location: source ID 37, line 13, chars 540-586, hits: 0)
- Statement (location: source ID 37, line 13, chars 568-586, hits: 0)
- Line (location: source ID 37, line 14, chars 597-665, hits: 0)
- Statement (location: source ID 37, line 14, chars 597-665, hits: 0)
- Statement (location: source ID 37, line 14, chars 631-665, hits: 0)
- Line (location: source ID 37, line 15, chars 676-717, hits: 0)
- Statement (location: source ID 37, line 15, chars 676-717, hits: 0)
- Statement (location: source ID 37, line 15, chars 683-717, hits: 0)
- Function "run" (location: source ID 37, line 27, chars 1108-1206, hits: 0)
- Line (location: source ID 37, line 28, chars 1160-1198, hits: 0)
- Statement (location: source ID 37, line 28, chars 1160-1198, hits: 0)
- Statement (location: source ID 37, line 28, chars 1167-1198, hits: 0)
Uncovered for src/Raffle.sol:
- Function "" (location: source ID 38, line 51, chars 1636-2229, hits: 0)
- Line (location: source ID 38, line 59, chars 1882-1909, hits: 0)
- Statement (location: source ID 38, line 59, chars 1882-1909, hits: 0)
- Line (location: source ID 38, line 60, chars 1920-1953, hits: 0)
- Statement (location: source ID 38, line 60, chars 1920-1953, hits: 0)
- Line (location: source ID 38, line 61, chars 1964-1985, hits: 0)
- Statement (location: source ID 38, line 61, chars 1964-1985, hits: 0)
- Line (location: source ID 38, line 62, chars 1996-2056, hits: 0)
- Statement (location: source ID 38, line 62, chars 1996-2056, hits: 0)
- Line (location: source ID 38, line 63, chars 2067-2086, hits: 0)
- Statement (location: source ID 38, line 63, chars 2067-2086, hits: 0)
- Line (location: source ID 38, line 64, chars 2097-2130, hits: 0)
- Statement (location: source ID 38, line 64, chars 2097-2130, hits: 0)
- Line (location: source ID 38, line 65, chars 2141-2178, hits: 0)
- Statement (location: source ID 38, line 65, chars 2141-2178, hits: 0)
- Line (location: source ID 38, line 66, chars 2189-2221, hits: 0)
- Statement (location: source ID 38, line 66, chars 2189-2221, hits: 0)
- Branch (branch: 2, path: 0) (location: source ID 38, line 100, chars 3371-3510, hits: 0)
- Branch (branch: 3, path: 0) (location: source ID 38, line 119, chars 4330-4402, hits: 0)
- Line (location: source ID 38, line 120, chars 4359-4390, hits: 0)
- Statement (location: source ID 38, line 120, chars 4359-4390, hits: 0)
- Function "getEntranceFee" (location: source ID 38, line 126, chars 4483-4580, hits: 0)
- Line (location: source ID 38, line 127, chars 4552-4572, hits: 0)
- Statement (location: source ID 38, line 127, chars 4552-4572, hits: 0)
Anchors for Contract "FundSubscription" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 37):
- IC 547 -> Item 134
- Creation code
- Refers to item: Line (location: source ID 37, line 45, chars 1884-1924, hits: 14)
- IC 132 -> Item 152
- Creation code
- Refers to item: Function "run" (location: source ID 37, line 57, chars 2358-2430, hits: 0)
- IC 1039 -> Item 147
- Creation code
- Refers to item: Statement (location: source ID 37, line 51, chars 2160-2179, hits: 0)
- IC 1039 -> Item 146
- Creation code
- Refers to item: Line (location: source ID 37, line 51, chars 2160-2179, hits: 0)
- IC 384 -> Item 127
- Creation code
- Refers to item: Line (location: source ID 37, line 39, chars 1562-1628, hits: 0)
- IC 1338 -> Item 151
- Creation code
- Refers to item: Statement (location: source ID 37, line 53, chars 2313-2331, hits: 0)
- IC 1134 -> Item 148
- Creation code
- Refers to item: Line (location: source ID 37, line 52, chars 2194-2298, hits: 0)
- IC 903 -> Item 145
- Creation code
- Refers to item: Statement (location: source ID 37, line 49, chars 2109-2127, hits: 14)
- IC 401 -> Item 153
- Creation code
- Refers to item: Line (location: source ID 37, line 58, chars 2393-2422, hits: 0)
- IC 655 -> Item 140
- Creation code
- Refers to item: Line (location: source ID 37, line 47, chars 1978-1997, hits: 14)
- IC 258 -> Item 124
- Creation code
- Refers to item: Statement (location: source ID 37, line 37, chars 1423-1551, hits: 0)
- IC 215 -> Item 122
- Creation code
- Refers to item: Statement (location: source ID 37, line 36, chars 1394-1412, hits: 0)
- IC 411 -> Item 130
- Creation code
- Refers to item: Line (location: source ID 37, line 43, chars 1761-1812, hits: 14)
- IC 547 -> Item 135
- Creation code
- Refers to item: Statement (location: source ID 37, line 45, chars 1884-1924, hits: 14)
- IC 1134 -> Item 149
- Creation code
- Refers to item: Statement (location: source ID 37, line 52, chars 2194-2298, hits: 0)
- IC 1338 -> Item 150
- Creation code
- Refers to item: Line (location: source ID 37, line 53, chars 2313-2331, hits: 0)
- IC 984 -> Item 138
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 37, line 46, chars 1935-2139, hits: 0)
- IC 610 -> Item 136
- Creation code
- Refers to item: Line (location: source ID 37, line 46, chars 1939-1961, hits: 14)
- IC 655 -> Item 141
- Creation code
- Refers to item: Statement (location: source ID 37, line 47, chars 1978-1997, hits: 14)
- IC 484 -> Item 132
- Creation code
- Refers to item: Line (location: source ID 37, line 44, chars 1823-1873, hits: 14)
- IC 993 -> Item 139
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 37, line 46, chars 1935-2139, hits: 14)
- IC 142 -> Item 129
- Creation code
- Refers to item: Function "fundSubscription" (location: source ID 37, line 42, chars 1644-2350, hits: 14)
- IC 411 -> Item 131
- Creation code
- Refers to item: Statement (location: source ID 37, line 43, chars 1761-1812, hits: 14)
- IC 401 -> Item 154
- Creation code
- Refers to item: Statement (location: source ID 37, line 58, chars 2393-2422, hits: 0)
- IC 213 -> Item 121
- Creation code
- Refers to item: Statement (location: source ID 37, line 36, chars 1366-1412, hits: 0)
- IC 263 -> Item 126
- Creation code
- Refers to item: Statement (location: source ID 37, line 38, chars 1517-1551, hits: 0)
- IC 903 -> Item 144
- Creation code
- Refers to item: Line (location: source ID 37, line 49, chars 2109-2127, hits: 14)
- IC 122 -> Item 119
- Creation code
- Refers to item: Function "fundSubscriptionUsingConfig" (location: source ID 37, line 35, chars 1309-1636, hits: 0)
- IC 384 -> Item 128
- Creation code
- Refers to item: Statement (location: source ID 37, line 39, chars 1562-1628, hits: 0)
- IC 263 -> Item 125
- Creation code
- Refers to item: Line (location: source ID 37, line 38, chars 1517-1551, hits: 0)
- IC 484 -> Item 133
- Creation code
- Refers to item: Statement (location: source ID 37, line 44, chars 1823-1873, hits: 14)
- IC 258 -> Item 123
- Creation code
- Refers to item: Line (location: source ID 37, line 37, chars 1423-1551, hits: 0)
- IC 750 -> Item 143
- Creation code
- Refers to item: Statement (location: source ID 37, line 48, chars 2012-2094, hits: 14)
- IC 213 -> Item 120
- Creation code
- Refers to item: Line (location: source ID 37, line 36, chars 1366-1412, hits: 0)
- IC 750 -> Item 142
- Creation code
- Refers to item: Line (location: source ID 37, line 48, chars 2012-2094, hits: 14)
- IC 610 -> Item 137
- Creation code
- Refers to item: Statement (location: source ID 37, line 46, chars 1939-1961, hits: 14)
Anchors for Contract "stdJson" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 16):
Anchors for Contract "Raffle" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 38):
- IC 121 -> Item 28
- Runtime code
- Refers to item: Statement (location: source ID 38, line 61, chars 1964-1985, hits: 0)
- IC 121 -> Item 27
- Runtime code
- Refers to item: Line (location: source ID 38, line 61, chars 1964-1985, hits: 0)
- IC 114 -> Item 25
- Runtime code
- Refers to item: Line (location: source ID 38, line 60, chars 1920-1953, hits: 0)
- IC 129 -> Item 30
- Runtime code
- Refers to item: Statement (location: source ID 38, line 62, chars 1996-2056, hits: 0)
- IC 6 -> Item 22
- Runtime code
- Refers to item: Function "" (location: source ID 38, line 51, chars 1636-2229, hits: 0)
- IC 106 -> Item 24
- Runtime code
- Refers to item: Statement (location: source ID 38, line 59, chars 1882-1909, hits: 0)
- IC 114 -> Item 26
- Runtime code
- Refers to item: Statement (location: source ID 38, line 60, chars 1920-1953, hits: 0)
- IC 219 -> Item 35
- Runtime code
- Refers to item: Line (location: source ID 38, line 65, chars 2141-2178, hits: 0)
- IC 129 -> Item 29
- Runtime code
- Refers to item: Line (location: source ID 38, line 62, chars 1996-2056, hits: 0)
- IC 240 -> Item 37
- Runtime code
- Refers to item: Line (location: source ID 38, line 66, chars 2189-2221, hits: 0)
- IC 219 -> Item 36
- Runtime code
- Refers to item: Statement (location: source ID 38, line 65, chars 2141-2178, hits: 0)
- IC 106 -> Item 23
- Runtime code
- Refers to item: Line (location: source ID 38, line 59, chars 1882-1909, hits: 0)
- IC 181 -> Item 32
- Runtime code
- Refers to item: Statement (location: source ID 38, line 63, chars 2067-2086, hits: 0)
- IC 190 -> Item 33
- Runtime code
- Refers to item: Line (location: source ID 38, line 64, chars 2097-2130, hits: 0)
- IC 240 -> Item 38
- Runtime code
- Refers to item: Statement (location: source ID 38, line 66, chars 2189-2221, hits: 0)
- IC 181 -> Item 31
- Runtime code
- Refers to item: Line (location: source ID 38, line 63, chars 2067-2086, hits: 0)
- IC 190 -> Item 34
- Runtime code
- Refers to item: Statement (location: source ID 38, line 64, chars 2097-2130, hits: 0)
- IC 565 -> Item 103
- Creation code
- Refers to item: Statement (location: source ID 38, line 127, chars 4552-4572, hits: 0)
- IC 2016 -> Item 81
- Creation code
- Refers to item: Statement (location: source ID 38, line 113, chars 4012-4065, hits: 1)
- IC 496 -> Item 59
- Creation code
- Refers to item: Function "performUpkeep" (location: source ID 38, line 98, chars 3281-3788, hits: 6)
- IC 2296 -> Item 92
- Creation code
- Refers to item: Statement (location: source ID 38, line 118, chars 4268-4319, hits: 1)
- IC 980 -> Item 47
- Creation code
- Refers to item: Statement (location: source ID 38, line 73, chars 2397-2430, hits: 271)
- IC 1466 -> Item 62
- Creation code
- Refers to item: Statement (location: source ID 38, line 99, chars 3345-3360, hits: 6)
- IC 1646 -> Item 73
- Creation code
- Refers to item: Statement (location: source ID 38, line 104, chars 3590-3732, hits: 5)
- IC 930 -> Item 42
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 38, line 70, chars 2288-2383, hits: 1)
- IC 1961 -> Item 117
- Creation code
- Refers to item: Line (location: source ID 38, line 147, chars 5102-5124, hits: 2)
- IC 2407 -> Item 97
- Creation code
- Refers to item: Line (location: source ID 38, line 120, chars 4359-4390, hits: 0)
- IC 979 -> Item 43
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 38, line 70, chars 2288-2383, hits: 271)
- IC 890 -> Item 40
- Creation code
- Refers to item: Line (location: source ID 38, line 70, chars 2292-2317, hits: 272)
- IC 1039 -> Item 51
- Creation code
- Refers to item: Statement (location: source ID 38, line 74, chars 2447-2471, hits: 1)
- IC 1493 -> Item 63
- Creation code
- Refers to item: Line (location: source ID 38, line 100, chars 3375-3386, hits: 6)
- IC 2148 -> Item 84
- Creation code
- Refers to item: Line (location: source ID 38, line 115, chars 4116-4148, hits: 1)
- IC 2402 -> Item 93
- Creation code
- Refers to item: Line (location: source ID 38, line 119, chars 4334-4342, hits: 1)
- IC 1259 -> Item 108
- Creation code
- Refers to item: Line (location: source ID 38, line 135, chars 4767-4790, hits: 2)
- IC 1530 -> Item 65
- Creation code
- Refers to item: Branch (branch: 2, path: 0) (location: source ID 38, line 100, chars 3371-3510, hits: 0)
- IC 2287 -> Item 89
- Creation code
- Refers to item: Statement (location: source ID 38, line 117, chars 4206-4239, hits: 1)
- IC 605 -> Item 112
- Creation code
- Refers to item: Statement (location: source ID 38, line 139, chars 4889-4912, hits: 1)
- IC 391 -> Item 113
- Creation code
- Refers to item: Function "getRecentWinner" (location: source ID 38, line 142, chars 4928-5025, hits: 3)
- IC 1316 -> Item 58
- Creation code
- Refers to item: Statement (location: source ID 38, line 94, chars 3096-3265, hits: 10)
- IC 1538 -> Item 66
- Creation code
- Refers to item: Branch (branch: 2, path: 1) (location: source ID 38, line 100, chars 3371-3510, hits: 1)
- IC 2294 -> Item 91
- Creation code
- Refers to item: Statement (location: source ID 38, line 118, chars 4250-4319, hits: 1)
- IC 2191 -> Item 86
- Creation code
- Refers to item: Line (location: source ID 38, line 116, chars 4159-4195, hits: 1)
- IC 2148 -> Item 85
- Creation code
- Refers to item: Statement (location: source ID 38, line 115, chars 4116-4148, hits: 1)
- IC 890 -> Item 41
- Creation code
- Refers to item: Statement (location: source ID 38, line 70, chars 2292-2317, hits: 272)
- IC 565 -> Item 102
- Creation code
- Refers to item: Line (location: source ID 38, line 127, chars 4552-4572, hits: 0)
- IC 2294 -> Item 90
- Creation code
- Refers to item: Line (location: source ID 38, line 118, chars 4250-4319, hits: 1)
- IC 1967 -> Item 76
- Creation code
- Refers to item: Function "fulfillRandomWords" (location: source ID 38, line 111, chars 3837-4451, hits: 1)
- IC 1498 -> Item 67
- Creation code
- Refers to item: Line (location: source ID 38, line 101, chars 3403-3498, hits: 1)
- IC 1039 -> Item 50
- Creation code
- Refers to item: Line (location: source ID 38, line 74, chars 2447-2471, hits: 1)
- IC 1039 -> Item 48
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 38, line 73, chars 2393-2483, hits: 1)
- IC 1088 -> Item 49
- Creation code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 38, line 73, chars 2393-2483, hits: 270)
- IC 1498 -> Item 68
- Creation code
- Refers to item: Statement (location: source ID 38, line 101, chars 3403-3498, hits: 1)
- IC 338 -> Item 39
- Creation code
- Refers to item: Function "enterRaffle" (location: source ID 38, line 69, chars 2237-2577, hits: 272)
- IC 1188 -> Item 55
- Creation code
- Refers to item: Statement (location: source ID 38, line 77, chars 2539-2569, hits: 270)
- IC 1464 -> Item 61
- Creation code
- Refers to item: Statement (location: source ID 38, line 99, chars 3324-3360, hits: 6)
- IC 605 -> Item 111
- Creation code
- Refers to item: Line (location: source ID 38, line 139, chars 4889-4912, hits: 1)
- IC 1970 -> Item 79
- Creation code
- Refers to item: Statement (location: source ID 38, line 112, chars 3967-4001, hits: 1)
- IC 1968 -> Item 78
- Creation code
- Refers to item: Statement (location: source ID 38, line 112, chars 3945-4001, hits: 1)
- IC 1089 -> Item 53
- Creation code
- Refers to item: Statement (location: source ID 38, line 76, chars 2493-2528, hits: 270)
- IC 2191 -> Item 87
- Creation code
- Refers to item: Statement (location: source ID 38, line 116, chars 4159-4195, hits: 1)
- IC 1910 -> Item 75
- Creation code
- Refers to item: Statement (location: source ID 38, line 107, chars 3743-3780, hits: 5)
- IC 2402 -> Item 94
- Creation code
- Refers to item: Statement (location: source ID 38, line 119, chars 4334-4342, hits: 1)
- IC 193 -> Item 110
- Creation code
- Refers to item: Function "getRafflePlayer" (location: source ID 38, line 138, chars 4806-4920, hits: 1)
- IC 434 -> Item 56
- Creation code
- Refers to item: Function "checkUpkeep" (location: source ID 38, line 89, chars 2932-3273, hits: 4)
- IC 1644 -> Item 71
- Creation code
- Refers to item: Line (location: source ID 38, line 104, chars 3570-3732, hits: 5)
- IC 2016 -> Item 80
- Creation code
- Refers to item: Line (location: source ID 38, line 113, chars 4012-4065, hits: 1)
- IC 2083 -> Item 82
- Creation code
- Refers to item: Line (location: source ID 38, line 114, chars 4076-4105, hits: 1)
- IC 2287 -> Item 88
- Creation code
- Refers to item: Line (location: source ID 38, line 117, chars 4206-4239, hits: 1)
- IC 150 -> Item 101
- Creation code
- Refers to item: Function "getEntranceFee" (location: source ID 38, line 126, chars 4483-4580, hits: 0)
- IC 1272 -> Item 115
- Creation code
- Refers to item: Statement (location: source ID 38, line 143, chars 4996-5017, hits: 3)
- IC 519 -> Item 116
- Creation code
- Refers to item: Function "getLastTimeStamp" (location: source ID 38, line 146, chars 5033-5132, hits: 2)
- IC 2083 -> Item 83
- Creation code
- Refers to item: Statement (location: source ID 38, line 114, chars 4076-4105, hits: 1)
- IC 1464 -> Item 60
- Creation code
- Refers to item: Line (location: source ID 38, line 99, chars 3324-3360, hits: 6)
- IC 2457 -> Item 100
- Creation code
- Refers to item: Statement (location: source ID 38, line 122, chars 4412-4443, hits: 1)
- IC 930 -> Item 45
- Creation code
- Refers to item: Statement (location: source ID 38, line 71, chars 2334-2371, hits: 1)
- IC 677 -> Item 105
- Creation code
- Refers to item: Line (location: source ID 38, line 131, chars 4661-4681, hits: 3)
- IC 677 -> Item 106
- Creation code
- Refers to item: Statement (location: source ID 38, line 131, chars 4661-4681, hits: 3)
- IC 1316 -> Item 57
- Creation code
- Refers to item: Line (location: source ID 38, line 94, chars 3096-3265, hits: 10)
- IC 1259 -> Item 109
- Creation code
- Refers to item: Statement (location: source ID 38, line 135, chars 4767-4790, hits: 2)
- IC 254 -> Item 104
- Creation code
- Refers to item: Function "getRaffleState" (location: source ID 38, line 130, chars 4588-4689, hits: 3)
- IC 980 -> Item 46
- Creation code
- Refers to item: Line (location: source ID 38, line 73, chars 2397-2430, hits: 271)
- IC 1968 -> Item 77
- Creation code
- Refers to item: Line (location: source ID 38, line 112, chars 3945-4001, hits: 1)
- IC 2407 -> Item 98
- Creation code
- Refers to item: Statement (location: source ID 38, line 120, chars 4359-4390, hits: 0)
- IC 1272 -> Item 114
- Creation code
- Refers to item: Line (location: source ID 38, line 143, chars 4996-5017, hits: 3)
- IC 2456 -> Item 96
- Creation code
- Refers to item: Branch (branch: 3, path: 1) (location: source ID 38, line 119, chars 4330-4402, hits: 1)
- IC 348 -> Item 107
- Creation code
- Refers to item: Function "getTotalPlayers" (location: source ID 38, line 134, chars 4697-4798, hits: 2)
- IC 1644 -> Item 72
- Creation code
- Refers to item: Statement (location: source ID 38, line 104, chars 3570-3732, hits: 5)
- IC 1601 -> Item 70
- Creation code
- Refers to item: Statement (location: source ID 38, line 103, chars 3520-3559, hits: 5)
- IC 930 -> Item 44
- Creation code
- Refers to item: Line (location: source ID 38, line 71, chars 2334-2371, hits: 1)
- IC 1089 -> Item 52
- Creation code
- Refers to item: Line (location: source ID 38, line 76, chars 2493-2528, hits: 270)
- IC 1188 -> Item 54
- Creation code
- Refers to item: Line (location: source ID 38, line 77, chars 2539-2569, hits: 270)
- IC 1961 -> Item 118
- Creation code
- Refers to item: Statement (location: source ID 38, line 147, chars 5102-5124, hits: 2)
- IC 1493 -> Item 64
- Creation code
- Refers to item: Statement (location: source ID 38, line 100, chars 3375-3386, hits: 6)
- IC 2407 -> Item 95
- Creation code
- Refers to item: Branch (branch: 3, path: 0) (location: source ID 38, line 119, chars 4330-4402, hits: 0)
- IC 2457 -> Item 99
- Creation code
- Refers to item: Line (location: source ID 38, line 122, chars 4412-4443, hits: 1)
- IC 1601 -> Item 69
- Creation code
- Refers to item: Line (location: source ID 38, line 103, chars 3520-3559, hits: 5)
- IC 1910 -> Item 74
- Creation code
- Refers to item: Line (location: source ID 38, line 107, chars 3743-3780, hits: 5)
Anchors for Contract "stdToml" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 20):
Anchors for Contract "stdError" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 14):
Anchors for Contract "CreateSubscription" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 37):
- IC 222 -> Item 182
- Creation code
- Refers to item: Statement (location: source ID 37, line 28, chars 1167-1198, hits: 0)
- IC 519 -> Item 169
- Creation code
- Refers to item: Statement (location: source ID 37, line 20, chars 892-911, hits: 14)
- IC 862 -> Item 176
- Creation code
- Refers to item: Statement (location: source ID 37, line 23, chars 1034-1069, hits: 14)
- IC 614 -> Item 171
- Creation code
- Refers to item: Statement (location: source ID 37, line 21, chars 922-994, hits: 14)
- IC 111 -> Item 155
- Creation code
- Refers to item: Function "createSubscriptionUsingConfig" (location: source ID 37, line 12, chars 464-725, hits: 0)
- IC 420 -> Item 166
- Creation code
- Refers to item: Line (location: source ID 37, line 19, chars 820-881, hits: 14)
- IC 402 -> Item 163
- Creation code
- Refers to item: Statement (location: source ID 37, line 15, chars 676-717, hits: 0)
- IC 616 -> Item 172
- Creation code
- Refers to item: Statement (location: source ID 37, line 21, chars 937-994, hits: 14)
- IC 222 -> Item 180
- Creation code
- Refers to item: Line (location: source ID 37, line 28, chars 1160-1198, hits: 0)
- IC 283 -> Item 161
- Creation code
- Refers to item: Statement (location: source ID 37, line 14, chars 631-665, hits: 0)
- IC 402 -> Item 164
- Creation code
- Refers to item: Statement (location: source ID 37, line 15, chars 683-717, hits: 0)
- IC 222 -> Item 181
- Creation code
- Refers to item: Statement (location: source ID 37, line 28, chars 1160-1198, hits: 0)
- IC 81 -> Item 179
- Creation code
- Refers to item: Function "run" (location: source ID 37, line 27, chars 1108-1206, hits: 0)
- IC 281 -> Item 160
- Creation code
- Refers to item: Statement (location: source ID 37, line 14, chars 597-665, hits: 0)
- IC 767 -> Item 173
- Creation code
- Refers to item: Line (location: source ID 37, line 22, chars 1005-1023, hits: 14)
- IC 862 -> Item 175
- Creation code
- Refers to item: Line (location: source ID 37, line 23, chars 1034-1069, hits: 14)
- IC 402 -> Item 162
- Creation code
- Refers to item: Line (location: source ID 37, line 15, chars 676-717, hits: 0)
- IC 281 -> Item 159
- Creation code
- Refers to item: Line (location: source ID 37, line 14, chars 597-665, hits: 0)
- IC 935 -> Item 178
- Creation code
- Refers to item: Statement (location: source ID 37, line 24, chars 1080-1092, hits: 14)
- IC 420 -> Item 167
- Creation code
- Refers to item: Statement (location: source ID 37, line 19, chars 820-881, hits: 14)
- IC 935 -> Item 177
- Creation code
- Refers to item: Line (location: source ID 37, line 24, chars 1080-1092, hits: 14)
- IC 237 -> Item 156
- Creation code
- Refers to item: Line (location: source ID 37, line 13, chars 540-586, hits: 0)
- IC 237 -> Item 157
- Creation code
- Refers to item: Statement (location: source ID 37, line 13, chars 540-586, hits: 0)
- IC 141 -> Item 165
- Creation code
- Refers to item: Function "createSubscription" (location: source ID 37, line 18, chars 733-1100, hits: 14)
- IC 238 -> Item 158
- Creation code
- Refers to item: Statement (location: source ID 37, line 13, chars 568-586, hits: 0)
- IC 519 -> Item 168
- Creation code
- Refers to item: Line (location: source ID 37, line 20, chars 892-911, hits: 14)
- IC 767 -> Item 174
- Creation code
- Refers to item: Statement (location: source ID 37, line 22, chars 1005-1023, hits: 14)
- IC 614 -> Item 170
- Creation code
- Refers to item: Line (location: source ID 37, line 21, chars 922-994, hits: 14)
Anchors for Contract "StringUtils" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 34):
Anchors for Contract "stdStorageSafe" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 18):
Anchors for Contract "HelperConfig" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 36):
- IC 363 -> Item 187
- Runtime code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 36, line 23, chars 664-765, hits: 0)
- IC 1465 -> Item 215
- Runtime code
- Refers to item: Statement (location: source ID 36, line 50, chars 1811-1857, hits: 0)
- IC 1557 -> Item 216
- Runtime code
- Refers to item: Line (location: source ID 36, line 51, chars 1868-1886, hits: 0)
- IC 1557 -> Item 217
- Runtime code
- Refers to item: Statement (location: source ID 36, line 51, chars 1868-1886, hits: 0)
- IC 72 -> Item 184
- Runtime code
- Refers to item: Line (location: source ID 36, line 23, chars 668-693, hits: 0)
- IC 955 -> Item 203
- Runtime code
- Refers to item: Statement (location: source ID 36, line 44, chars 1528-1554, hits: 0)
- IC 1420 -> Item 212
- Runtime code
- Refers to item: Statement (location: source ID 36, line 49, chars 1741-1760, hits: 0)
- IC 1652 -> Item 220
- Runtime code
- Refers to item: Statement (location: source ID 36, line 52, chars 1904-2276, hits: 0)
- IC 82 -> Item 186
- Runtime code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 36, line 23, chars 664-765, hits: 0)
- IC 1652 -> Item 219
- Runtime code
- Refers to item: Statement (location: source ID 36, line 52, chars 1897-2276, hits: 0)
- IC 1652 -> Item 218
- Runtime code
- Refers to item: Line (location: source ID 36, line 52, chars 1897-2276, hits: 0)
- IC 1418 -> Item 210
- Runtime code
- Refers to item: Line (location: source ID 36, line 49, chars 1711-1760, hits: 0)
- IC 866 -> Item 197
- Runtime code
- Refers to item: Line (location: source ID 36, line 43, chars 1463-1511, hits: 0)
- IC 655 -> Item 194
- Runtime code
- Refers to item: Statement (location: source ID 36, line 31, chars 944-1360, hits: 0)
- IC 72 -> Item 185
- Runtime code
- Refers to item: Statement (location: source ID 36, line 23, chars 668-693, hits: 0)
- IC 866 -> Item 199
- Runtime code
- Refers to item: Statement (location: source ID 36, line 43, chars 1501-1511, hits: 0)
- IC 955 -> Item 202
- Runtime code
- Refers to item: Line (location: source ID 36, line 44, chars 1528-1554, hits: 0)
- IC 857 -> Item 196
- Runtime code
- Refers to item: Function "getOrCreateAnvilConfig" (location: source ID 36, line 42, chars 1376-2284, hits: 0)
- IC 82 -> Item 188
- Runtime code
- Refers to item: Line (location: source ID 36, line 24, chars 710-753, hits: 0)
- IC 655 -> Item 195
- Runtime code
- Refers to item: Statement (location: source ID 36, line 31, chars 951-1360, hits: 0)
- IC 955 -> Item 200
- Runtime code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 36, line 43, chars 1459-1566, hits: 0)
- IC 59 -> Item 183
- Runtime code
- Refers to item: Function "" (location: source ID 36, line 22, chars 639-851, hits: 0)
- IC 866 -> Item 198
- Runtime code
- Refers to item: Statement (location: source ID 36, line 43, chars 1463-1511, hits: 0)
- IC 646 -> Item 192
- Runtime code
- Refers to item: Function "getEthSepoliaConfig" (location: source ID 36, line 30, chars 859-1368, hits: 0)
- IC 1264 -> Item 201
- Runtime code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 36, line 43, chars 1459-1566, hits: 0)
- IC 1265 -> Item 204
- Runtime code
- Refers to item: Line (location: source ID 36, line 46, chars 1576-1603, hits: 0)
- IC 82 -> Item 189
- Runtime code
- Refers to item: Statement (location: source ID 36, line 24, chars 710-753, hits: 0)
- IC 1265 -> Item 205
- Runtime code
- Refers to item: Statement (location: source ID 36, line 46, chars 1576-1603, hits: 0)
- IC 1278 -> Item 207
- Runtime code
- Refers to item: Statement (location: source ID 36, line 47, chars 1628-1652, hits: 0)
- IC 1323 -> Item 208
- Runtime code
- Refers to item: Line (location: source ID 36, line 48, chars 1681-1700, hits: 0)
- IC 1323 -> Item 209
- Runtime code
- Refers to item: Statement (location: source ID 36, line 48, chars 1681-1700, hits: 0)
- IC 1463 -> Item 213
- Runtime code
- Refers to item: Line (location: source ID 36, line 50, chars 1771-1857, hits: 0)
- IC 1418 -> Item 211
- Runtime code
- Refers to item: Statement (location: source ID 36, line 49, chars 1711-1760, hits: 0)
- IC 1463 -> Item 214
- Runtime code
- Refers to item: Statement (location: source ID 36, line 50, chars 1771-1857, hits: 0)
- IC 655 -> Item 193
- Runtime code
- Refers to item: Line (location: source ID 36, line 31, chars 944-1360, hits: 0)
- IC 364 -> Item 191
- Runtime code
- Refers to item: Statement (location: source ID 36, line 26, chars 786-832, hits: 0)
- IC 1278 -> Item 206
- Runtime code
- Refers to item: Line (location: source ID 36, line 47, chars 1628-1652, hits: 0)
- IC 364 -> Item 190
- Runtime code
- Refers to item: Line (location: source ID 36, line 26, chars 786-832, hits: 0)
- IC 305 -> Item 203
- Creation code
- Refers to item: Statement (location: source ID 36, line 44, chars 1528-1554, hits: 0)
- IC 615 -> Item 205
- Creation code
- Refers to item: Statement (location: source ID 36, line 46, chars 1576-1603, hits: 0)
- IC 1178 -> Item 193
- Creation code
- Refers to item: Line (location: source ID 36, line 31, chars 944-1360, hits: 0)
- IC 216 -> Item 197
- Creation code
- Refers to item: Line (location: source ID 36, line 43, chars 1463-1511, hits: 0)
- IC 216 -> Item 198
- Creation code
- Refers to item: Statement (location: source ID 36, line 43, chars 1463-1511, hits: 0)
- IC 216 -> Item 199
- Creation code
- Refers to item: Statement (location: source ID 36, line 43, chars 1501-1511, hits: 0)
- IC 770 -> Item 212
- Creation code
- Refers to item: Statement (location: source ID 36, line 49, chars 1741-1760, hits: 0)
- IC 768 -> Item 211
- Creation code
- Refers to item: Statement (location: source ID 36, line 49, chars 1711-1760, hits: 0)
- IC 1002 -> Item 218
- Creation code
- Refers to item: Line (location: source ID 36, line 52, chars 1897-2276, hits: 0)
- IC 305 -> Item 200
- Creation code
- Refers to item: Branch (branch: 1, path: 0) (location: source ID 36, line 43, chars 1459-1566, hits: 0)
- IC 628 -> Item 206
- Creation code
- Refers to item: Line (location: source ID 36, line 47, chars 1628-1652, hits: 0)
- IC 1178 -> Item 194
- Creation code
- Refers to item: Statement (location: source ID 36, line 31, chars 944-1360, hits: 0)
- IC 1002 -> Item 220
- Creation code
- Refers to item: Statement (location: source ID 36, line 52, chars 1904-2276, hits: 0)
- IC 1178 -> Item 195
- Creation code
- Refers to item: Statement (location: source ID 36, line 31, chars 951-1360, hits: 0)
- IC 81 -> Item 196
- Creation code
- Refers to item: Function "getOrCreateAnvilConfig" (location: source ID 36, line 42, chars 1376-2284, hits: 0)
- IC 813 -> Item 213
- Creation code
- Refers to item: Line (location: source ID 36, line 50, chars 1771-1857, hits: 0)
- IC 813 -> Item 214
- Creation code
- Refers to item: Statement (location: source ID 36, line 50, chars 1771-1857, hits: 0)
- IC 673 -> Item 208
- Creation code
- Refers to item: Line (location: source ID 36, line 48, chars 1681-1700, hits: 0)
- IC 305 -> Item 202
- Creation code
- Refers to item: Line (location: source ID 36, line 44, chars 1528-1554, hits: 0)
- IC 815 -> Item 215
- Creation code
- Refers to item: Statement (location: source ID 36, line 50, chars 1811-1857, hits: 0)
- IC 907 -> Item 216
- Creation code
- Refers to item: Line (location: source ID 36, line 51, chars 1868-1886, hits: 0)
- IC 1002 -> Item 219
- Creation code
- Refers to item: Statement (location: source ID 36, line 52, chars 1897-2276, hits: 0)
- IC 673 -> Item 209
- Creation code
- Refers to item: Statement (location: source ID 36, line 48, chars 1681-1700, hits: 0)
- IC 615 -> Item 204
- Creation code
- Refers to item: Line (location: source ID 36, line 46, chars 1576-1603, hits: 0)
- IC 111 -> Item 192
- Creation code
- Refers to item: Function "getEthSepoliaConfig" (location: source ID 36, line 30, chars 859-1368, hits: 0)
- IC 628 -> Item 207
- Creation code
- Refers to item: Statement (location: source ID 36, line 47, chars 1628-1652, hits: 0)
- IC 907 -> Item 217
- Creation code
- Refers to item: Statement (location: source ID 36, line 51, chars 1868-1886, hits: 0)
- IC 768 -> Item 210
- Creation code
- Refers to item: Line (location: source ID 36, line 49, chars 1711-1760, hits: 0)
- IC 614 -> Item 201
- Creation code
- Refers to item: Branch (branch: 1, path: 1) (location: source ID 36, line 43, chars 1459-1566, hits: 0)
Anchors for Contract "VRFCoordinatorV2Mock" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 2):
Anchors for Contract "safeconsole" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 32):
Anchors for Contract "console" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 24):
Anchors for Contract "ConfirmedOwnerWithProposal" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 4):
Anchors for Contract "RaffleTest" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 39):
Anchors for Contract "DeployRaffle" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 35):
- IC 786 -> Item 247
- Creation code
- Refers to item: Statement (location: source ID 35, line 33, chars 1359-1451, hits: 14)
- IC 539 -> Item 241
- Creation code
- Refers to item: Line (location: source ID 35, line 30, chars 1208-1291, hits: 14)
- IC 689 -> Item 243
- Creation code
- Refers to item: Line (location: source ID 35, line 32, chars 1313-1332, hits: 14)
- IC 1026 -> Item 253
- Creation code
- Refers to item: Line (location: source ID 35, line 37, chars 1569-1641, hits: 14)
- IC 645 -> Item 232
- Creation code
- Refers to item: Branch (branch: 0, path: 1) (location: source ID 35, line 23, chars 861-1303, hits: 14)
- IC 323 -> Item 233
- Creation code
- Refers to item: Line (location: source ID 35, line 25, chars 936-1000, hits: 14)
- IC 886 -> Item 248
- Creation code
- Refers to item: Line (location: source ID 35, line 34, chars 1462-1480, hits: 14)
- IC 124 -> Item 222
- Creation code
- Refers to item: Line (location: source ID 35, line 13, chars 500-546, hits: 14)
- IC 981 -> Item 250
- Creation code
- Refers to item: Line (location: source ID 35, line 36, chars 1515-1558, hits: 14)
- IC 169 -> Item 225
- Creation code
- Refers to item: Line (location: source ID 35, line 14, chars 557-850, hits: 14)
- IC 981 -> Item 251
- Creation code
- Refers to item: Statement (location: source ID 35, line 36, chars 1515-1558, hits: 14)
- IC 1137 -> Item 256
- Creation code
- Refers to item: Statement (location: source ID 35, line 38, chars 1652-1681, hits: 14)
- IC 494 -> Item 239
- Creation code
- Refers to item: Statement (location: source ID 35, line 29, chars 1135-1193, hits: 14)
- IC 983 -> Item 252
- Creation code
- Refers to item: Statement (location: source ID 35, line 36, chars 1541-1558, hits: 14)
- IC 180 -> Item 227
- Creation code
- Refers to item: Line (location: source ID 35, line 22, chars 816-850, hits: 14)
- IC 323 -> Item 234
- Creation code
- Refers to item: Statement (location: source ID 35, line 25, chars 936-1000, hits: 14)
- IC 494 -> Item 238
- Creation code
- Refers to item: Line (location: source ID 35, line 29, chars 1135-1193, hits: 14)
- IC 305 -> Item 229
- Creation code
- Refers to item: Line (location: source ID 35, line 23, chars 865-884, hits: 14)
- IC 325 -> Item 235
- Creation code
- Refers to item: Statement (location: source ID 35, line 25, chars 976-1000, hits: 14)
- IC 59 -> Item 221
- Creation code
- Refers to item: Function "run" (location: source ID 35, line 12, chars 434-1689, hits: 14)
- IC 1137 -> Item 255
- Creation code
- Refers to item: Line (location: source ID 35, line 38, chars 1652-1681, hits: 14)
- IC 784 -> Item 245
- Creation code
- Refers to item: Line (location: source ID 35, line 33, chars 1343-1451, hits: 14)
- IC 784 -> Item 246
- Creation code
- Refers to item: Statement (location: source ID 35, line 33, chars 1343-1451, hits: 14)
- IC 126 -> Item 224
- Creation code
- Refers to item: Statement (location: source ID 35, line 13, chars 528-546, hits: 14)
- IC 368 -> Item 236
- Creation code
- Refers to item: Line (location: source ID 35, line 26, chars 1015-1085, hits: 14)
- IC 368 -> Item 237
- Creation code
- Refers to item: Statement (location: source ID 35, line 26, chars 1015-1085, hits: 14)
- IC 1026 -> Item 254
- Creation code
- Refers to item: Statement (location: source ID 35, line 37, chars 1569-1641, hits: 14)
- IC 636 -> Item 231
- Creation code
- Refers to item: Branch (branch: 0, path: 0) (location: source ID 35, line 23, chars 861-1303, hits: 0)
- IC 496 -> Item 240
- Creation code
- Refers to item: Statement (location: source ID 35, line 29, chars 1171-1193, hits: 14)
- IC 539 -> Item 242
- Creation code
- Refers to item: Statement (location: source ID 35, line 30, chars 1208-1291, hits: 14)
- IC 180 -> Item 228
- Creation code
- Refers to item: Statement (location: source ID 35, line 22, chars 816-850, hits: 14)
- IC 124 -> Item 223
- Creation code
- Refers to item: Statement (location: source ID 35, line 13, chars 500-546, hits: 14)
- IC 169 -> Item 226
- Creation code
- Refers to item: Statement (location: source ID 35, line 14, chars 557-850, hits: 14)
- IC 305 -> Item 230
- Creation code
- Refers to item: Statement (location: source ID 35, line 23, chars 865-884, hits: 14)
- IC 689 -> Item 244
- Creation code
- Refers to item: Statement (location: source ID 35, line 32, chars 1313-1332, hits: 14)
- IC 886 -> Item 249
- Creation code
- Refers to item: Statement (location: source ID 35, line 34, chars 1462-1480, hits: 14)
Anchors for Contract "StdStyle" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 19):
Anchors for Contract "ConfirmedOwner" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 3):
Anchors for Contract "MockERC20" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 30):
Anchors for Contract "AddConsumer" (solc 0.8.25+commit.b61c2a91.Windows.msvc, source ID 37):
- IC 741 -> Item 19
- Creation code
- Refers to item: Statement (location: source ID 37, line 76, chars 3065-3128, hits: 0)
- IC 109 -> Item 0
- Creation code
- Refers to item: Function "addConsumerUsingConfig" (location: source ID 37, line 63, chars 2475-2758, hits: 0)
- IC 556 -> Item 3
- Creation code
- Refers to item: Statement (location: source ID 37, line 64, chars 2569-2587, hits: 0)
- IC 554 -> Item 2
- Creation code
- Refers to item: Statement (location: source ID 37, line 64, chars 2541-2587, hits: 0)
- IC 806 -> Item 21
- Creation code
- Refers to item: Statement (location: source ID 37, line 77, chars 3139-3169, hits: 0)
- IC 599 -> Item 5
- Creation code
- Refers to item: Statement (location: source ID 37, line 65, chars 2598-2688, hits: 0)
- IC 722 -> Item 7
- Creation code
- Refers to item: Line (location: source ID 37, line 66, chars 2699-2750, hits: 0)
- IC 454 -> Item 14
- Creation code
- Refers to item: Line (location: source ID 37, line 72, chars 2979-2997, hits: 14)
- IC 309 -> Item 12
- Creation code
- Refers to item: Line (location: source ID 37, line 71, chars 2897-2968, hits: 14)
- IC 554 -> Item 1
- Creation code
- Refers to item: Line (location: source ID 37, line 64, chars 2541-2587, hits: 0)
- IC 137 -> Item 16
- Creation code
- Refers to item: Function "run" (location: source ID 37, line 75, chars 3013-3177, hits: 0)
- IC 722 -> Item 8