forked from banzaicloud/pipeline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.wollemi.json
1427 lines (1427 loc) · 158 KB
/
.wollemi.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"known_dependency": {
"cloud.google.com/go/compute/metadata": "//third_party/go:cloud.google.com__go__compute__metadata",
"cloud.google.com/go/iam": "//third_party/go:cloud.google.com__go__iam",
"cloud.google.com/go/iam/credentials/apiv1": "//third_party/go:cloud.google.com__go__iam__credentials__apiv1",
"cloud.google.com/go/internal": "//third_party/go:cloud.google.com__go__internal",
"cloud.google.com/go/internal/optional": "//third_party/go:cloud.google.com__go__internal__optional",
"cloud.google.com/go/internal/trace": "//third_party/go:cloud.google.com__go__internal__trace",
"cloud.google.com/go/internal/version": "//third_party/go:cloud.google.com__go__internal__version",
"cloud.google.com/go/storage": "//third_party/go:cloud.google.com__go__storage",
"emperror.dev/emperror": "//third_party/go:emperror.dev__emperror",
"emperror.dev/errors": "//third_party/go:emperror.dev__errors",
"emperror.dev/errors/match": "//third_party/go:emperror.dev__errors__match",
"emperror.dev/errors/utils/keyval": "//third_party/go:emperror.dev__errors__utils__keyval",
"emperror.dev/handler/logur": "//third_party/go:emperror.dev__handler__logur",
"github.com/Azure/azure-pipeline-go/pipeline": "//third_party/go:github.com__Azure__azure-pipeline-go__pipeline",
"github.com/Azure/azure-sdk-for-go/profiles/latest/authorization/mgmt/authorization": "//third_party/go:github.com__Azure__azure-sdk-for-go__profiles__latest__authorization__mgmt__authorization",
"github.com/Azure/azure-sdk-for-go/services/authorization/mgmt/2015-07-01/authorization": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__authorization__mgmt__2015-07-01__authorization",
"github.com/Azure/azure-sdk-for-go/services/compute/mgmt/2018-10-01/compute": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__compute__mgmt__2018-10-01__compute",
"github.com/Azure/azure-sdk-for-go/services/containerservice/mgmt/2020-02-01/containerservice": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__containerservice__mgmt__2020-02-01__containerservice",
"github.com/Azure/azure-sdk-for-go/services/network/mgmt/2018-10-01/network": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__network__mgmt__2018-10-01__network",
"github.com/Azure/azure-sdk-for-go/services/preview/monitor/mgmt/2018-09-01/insights": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__preview__monitor__mgmt__2018-09-01__insights",
"github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2016-06-01/subscriptions": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__resources__mgmt__2016-06-01__subscriptions",
"github.com/Azure/azure-sdk-for-go/services/resources/mgmt/2018-02-01/resources": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__resources__mgmt__2018-02-01__resources",
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2017-10-01/storage": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__storage__mgmt__2017-10-01__storage",
"github.com/Azure/azure-sdk-for-go/services/storage/mgmt/2019-06-01/storage": "//third_party/go:github.com__Azure__azure-sdk-for-go__services__storage__mgmt__2019-06-01__storage",
"github.com/Azure/azure-sdk-for-go/version": "//third_party/go:github.com__Azure__azure-sdk-for-go__version",
"github.com/Azure/azure-storage-blob-go/azblob": "//third_party/go:github.com__Azure__azure-storage-blob-go__azblob",
"github.com/Azure/go-autorest/autorest": "//third_party/go:github.com__Azure__go-autorest__autorest",
"github.com/Azure/go-autorest/autorest/adal": "//third_party/go:github.com__Azure__go-autorest__autorest__adal",
"github.com/Azure/go-autorest/autorest/azure": "//third_party/go:github.com__Azure__go-autorest__autorest__azure",
"github.com/Azure/go-autorest/autorest/azure/auth": "//third_party/go:github.com__Azure__go-autorest__autorest__azure__auth",
"github.com/Azure/go-autorest/autorest/azure/cli": "//third_party/go:github.com__Azure__go-autorest__autorest__azure__cli",
"github.com/Azure/go-autorest/autorest/date": "//third_party/go:github.com__Azure__go-autorest__autorest__date",
"github.com/Azure/go-autorest/autorest/to": "//third_party/go:github.com__Azure__go-autorest__autorest__to",
"github.com/Azure/go-autorest/autorest/validation": "//third_party/go:github.com__Azure__go-autorest__autorest__validation",
"github.com/Azure/go-autorest/logger": "//third_party/go:github.com__Azure__go-autorest__logger",
"github.com/Azure/go-autorest/tracing": "//third_party/go:github.com__Azure__go-autorest__tracing",
"github.com/BurntSushi/toml": "//third_party/go:github.com__BurntSushi__toml",
"github.com/MakeNowJust/heredoc": "//third_party/go:github.com__MakeNowJust__heredoc",
"github.com/Masterminds/goutils": "//third_party/go:github.com__Masterminds__goutils",
"github.com/Masterminds/semver/v3": "//third_party/go:github.com__Masterminds__semver__v3",
"github.com/Masterminds/sprig/v3": "//third_party/go:github.com__Masterminds__sprig__v3",
"github.com/Masterminds/squirrel": "//third_party/go:github.com__Masterminds__squirrel",
"github.com/PuerkitoBio/purell": "//third_party/go:github.com__PuerkitoBio__purell",
"github.com/PuerkitoBio/urlesc": "//third_party/go:github.com__PuerkitoBio__urlesc",
"github.com/ThreeDotsLabs/watermill": "//third_party/go:github.com__ThreeDotsLabs__watermill",
"github.com/ThreeDotsLabs/watermill/components/cqrs": "//third_party/go:github.com__ThreeDotsLabs__watermill__components__cqrs",
"github.com/ThreeDotsLabs/watermill/internal": "//third_party/go:github.com__ThreeDotsLabs__watermill__internal",
"github.com/ThreeDotsLabs/watermill/message": "//third_party/go:github.com__ThreeDotsLabs__watermill__message",
"github.com/ThreeDotsLabs/watermill/message/router/middleware": "//third_party/go:github.com__ThreeDotsLabs__watermill__message__router__middleware",
"github.com/ThreeDotsLabs/watermill/message/subscriber": "//third_party/go:github.com__ThreeDotsLabs__watermill__message__subscriber",
"github.com/ThreeDotsLabs/watermill/pubsub/gochannel": "//third_party/go:github.com__ThreeDotsLabs__watermill__pubsub__gochannel",
"github.com/ThreeDotsLabs/watermill/pubsub/sync": "//third_party/go:github.com__ThreeDotsLabs__watermill__pubsub__sync",
"github.com/aokoli/goutils": "//third_party/go:github.com__aokoli__goutils",
"github.com/apache/thrift/lib/go/thrift": "//third_party/go:github.com__apache__thrift__lib__go__thrift",
"github.com/asaskevich/EventBus": "//third_party/go:github.com__asaskevich__EventBus",
"github.com/asaskevich/govalidator": "//third_party/go:github.com__asaskevich__govalidator",
"github.com/aws/aws-sdk-go/aws": "//third_party/go:github.com__aws__aws-sdk-go__aws",
"github.com/aws/aws-sdk-go/aws/arn": "//third_party/go:github.com__aws__aws-sdk-go__aws__arn",
"github.com/aws/aws-sdk-go/aws/awserr": "//third_party/go:github.com__aws__aws-sdk-go__aws__awserr",
"github.com/aws/aws-sdk-go/aws/awsutil": "//third_party/go:github.com__aws__aws-sdk-go__aws__awsutil",
"github.com/aws/aws-sdk-go/aws/client": "//third_party/go:github.com__aws__aws-sdk-go__aws__client",
"github.com/aws/aws-sdk-go/aws/client/metadata": "//third_party/go:github.com__aws__aws-sdk-go__aws__client__metadata",
"github.com/aws/aws-sdk-go/aws/corehandlers": "//third_party/go:github.com__aws__aws-sdk-go__aws__corehandlers",
"github.com/aws/aws-sdk-go/aws/credentials": "//third_party/go:github.com__aws__aws-sdk-go__aws__credentials",
"github.com/aws/aws-sdk-go/aws/credentials/ec2rolecreds": "//third_party/go:github.com__aws__aws-sdk-go__aws__credentials__ec2rolecreds",
"github.com/aws/aws-sdk-go/aws/credentials/endpointcreds": "//third_party/go:github.com__aws__aws-sdk-go__aws__credentials__endpointcreds",
"github.com/aws/aws-sdk-go/aws/credentials/processcreds": "//third_party/go:github.com__aws__aws-sdk-go__aws__credentials__processcreds",
"github.com/aws/aws-sdk-go/aws/credentials/ssocreds": "//third_party/go:github.com__aws__aws-sdk-go__aws__credentials__ssocreds",
"github.com/aws/aws-sdk-go/aws/credentials/stscreds": "//third_party/go:github.com__aws__aws-sdk-go__aws__credentials__stscreds",
"github.com/aws/aws-sdk-go/aws/csm": "//third_party/go:github.com__aws__aws-sdk-go__aws__csm",
"github.com/aws/aws-sdk-go/aws/defaults": "//third_party/go:github.com__aws__aws-sdk-go__aws__defaults",
"github.com/aws/aws-sdk-go/aws/ec2metadata": "//third_party/go:github.com__aws__aws-sdk-go__aws__ec2metadata",
"github.com/aws/aws-sdk-go/aws/endpoints": "//third_party/go:github.com__aws__aws-sdk-go__aws__endpoints",
"github.com/aws/aws-sdk-go/aws/request": "//third_party/go:github.com__aws__aws-sdk-go__aws__request",
"github.com/aws/aws-sdk-go/aws/session": "//third_party/go:github.com__aws__aws-sdk-go__aws__session",
"github.com/aws/aws-sdk-go/aws/signer/v4": "//third_party/go:github.com__aws__aws-sdk-go__aws__signer__v4",
"github.com/aws/aws-sdk-go/internal/ini": "//third_party/go:github.com__aws__aws-sdk-go__internal__ini",
"github.com/aws/aws-sdk-go/internal/s3shared": "//third_party/go:github.com__aws__aws-sdk-go__internal__s3shared",
"github.com/aws/aws-sdk-go/internal/s3shared/arn": "//third_party/go:github.com__aws__aws-sdk-go__internal__s3shared__arn",
"github.com/aws/aws-sdk-go/internal/s3shared/s3err": "//third_party/go:github.com__aws__aws-sdk-go__internal__s3shared__s3err",
"github.com/aws/aws-sdk-go/internal/sdkio": "//third_party/go:github.com__aws__aws-sdk-go__internal__sdkio",
"github.com/aws/aws-sdk-go/internal/sdkmath": "//third_party/go:github.com__aws__aws-sdk-go__internal__sdkmath",
"github.com/aws/aws-sdk-go/internal/sdkrand": "//third_party/go:github.com__aws__aws-sdk-go__internal__sdkrand",
"github.com/aws/aws-sdk-go/internal/sdkuri": "//third_party/go:github.com__aws__aws-sdk-go__internal__sdkuri",
"github.com/aws/aws-sdk-go/internal/shareddefaults": "//third_party/go:github.com__aws__aws-sdk-go__internal__shareddefaults",
"github.com/aws/aws-sdk-go/internal/strings": "//third_party/go:github.com__aws__aws-sdk-go__internal__strings",
"github.com/aws/aws-sdk-go/internal/sync/singleflight": "//third_party/go:github.com__aws__aws-sdk-go__internal__sync__singleflight",
"github.com/aws/aws-sdk-go/private/checksum": "//third_party/go:github.com__aws__aws-sdk-go__private__checksum",
"github.com/aws/aws-sdk-go/private/protocol": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol",
"github.com/aws/aws-sdk-go/private/protocol/ec2query": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__ec2query",
"github.com/aws/aws-sdk-go/private/protocol/eventstream": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__eventstream",
"github.com/aws/aws-sdk-go/private/protocol/eventstream/eventstreamapi": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__eventstream__eventstreamapi",
"github.com/aws/aws-sdk-go/private/protocol/json/jsonutil": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__json__jsonutil",
"github.com/aws/aws-sdk-go/private/protocol/jsonrpc": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__jsonrpc",
"github.com/aws/aws-sdk-go/private/protocol/query": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__query",
"github.com/aws/aws-sdk-go/private/protocol/query/queryutil": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__query__queryutil",
"github.com/aws/aws-sdk-go/private/protocol/rest": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__rest",
"github.com/aws/aws-sdk-go/private/protocol/restjson": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__restjson",
"github.com/aws/aws-sdk-go/private/protocol/restxml": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__restxml",
"github.com/aws/aws-sdk-go/private/protocol/xml/xmlutil": "//third_party/go:github.com__aws__aws-sdk-go__private__protocol__xml__xmlutil",
"github.com/aws/aws-sdk-go/service/autoscaling": "//third_party/go:github.com__aws__aws-sdk-go__service__autoscaling",
"github.com/aws/aws-sdk-go/service/cloudformation": "//third_party/go:github.com__aws__aws-sdk-go__service__cloudformation",
"github.com/aws/aws-sdk-go/service/cloudformation/cloudformationiface": "//third_party/go:github.com__aws__aws-sdk-go__service__cloudformation__cloudformationiface",
"github.com/aws/aws-sdk-go/service/ec2": "//third_party/go:github.com__aws__aws-sdk-go__service__ec2",
"github.com/aws/aws-sdk-go/service/ec2/ec2iface": "//third_party/go:github.com__aws__aws-sdk-go__service__ec2__ec2iface",
"github.com/aws/aws-sdk-go/service/eks": "//third_party/go:github.com__aws__aws-sdk-go__service__eks",
"github.com/aws/aws-sdk-go/service/eks/eksiface": "//third_party/go:github.com__aws__aws-sdk-go__service__eks__eksiface",
"github.com/aws/aws-sdk-go/service/elb": "//third_party/go:github.com__aws__aws-sdk-go__service__elb",
"github.com/aws/aws-sdk-go/service/elbv2": "//third_party/go:github.com__aws__aws-sdk-go__service__elbv2",
"github.com/aws/aws-sdk-go/service/elbv2/elbv2iface": "//third_party/go:github.com__aws__aws-sdk-go__service__elbv2__elbv2iface",
"github.com/aws/aws-sdk-go/service/iam": "//third_party/go:github.com__aws__aws-sdk-go__service__iam",
"github.com/aws/aws-sdk-go/service/iam/iamiface": "//third_party/go:github.com__aws__aws-sdk-go__service__iam__iamiface",
"github.com/aws/aws-sdk-go/service/route53": "//third_party/go:github.com__aws__aws-sdk-go__service__route53",
"github.com/aws/aws-sdk-go/service/route53/route53iface": "//third_party/go:github.com__aws__aws-sdk-go__service__route53__route53iface",
"github.com/aws/aws-sdk-go/service/s3": "//third_party/go:github.com__aws__aws-sdk-go__service__s3",
"github.com/aws/aws-sdk-go/service/s3/s3iface": "//third_party/go:github.com__aws__aws-sdk-go__service__s3__s3iface",
"github.com/aws/aws-sdk-go/service/s3/s3manager": "//third_party/go:github.com__aws__aws-sdk-go__service__s3__s3manager",
"github.com/aws/aws-sdk-go/service/sso": "//third_party/go:github.com__aws__aws-sdk-go__service__sso",
"github.com/aws/aws-sdk-go/service/sso/ssoiface": "//third_party/go:github.com__aws__aws-sdk-go__service__sso__ssoiface",
"github.com/aws/aws-sdk-go/service/sts": "//third_party/go:github.com__aws__aws-sdk-go__service__sts",
"github.com/aws/aws-sdk-go/service/sts/stsiface": "//third_party/go:github.com__aws__aws-sdk-go__service__sts__stsiface",
"github.com/aymerick/douceur/css": "//third_party/go:github.com__aymerick__douceur__css",
"github.com/aymerick/douceur/parser": "//third_party/go:github.com__aymerick__douceur__parser",
"github.com/banzaicloud/anchore-image-validator/pkg/apis/security/v1alpha1": "//third_party/go:github.com__banzaicloud__anchore-image-validator__pkg__apis__security__v1alpha1",
"github.com/banzaicloud/bank-vaults/pkg/sdk/auth": "//third_party/go:github.com__banzaicloud__bank-vaults__pkg__sdk__auth",
"github.com/banzaicloud/bank-vaults/pkg/sdk/db": "//third_party/go:github.com__banzaicloud__bank-vaults__pkg__sdk__db",
"github.com/banzaicloud/bank-vaults/pkg/sdk/tls": "//third_party/go:github.com__banzaicloud__bank-vaults__pkg__sdk__tls",
"github.com/banzaicloud/bank-vaults/pkg/sdk/vault": "//third_party/go:github.com__banzaicloud__bank-vaults__pkg__sdk__vault",
"github.com/banzaicloud/cadence-aws-sdk/activities/ec2": "//third_party/go:github.com__banzaicloud__cadence-aws-sdk__activities__ec2",
"github.com/banzaicloud/cadence-aws-sdk/clients": "//third_party/go:github.com__banzaicloud__cadence-aws-sdk__clients",
"github.com/banzaicloud/cadence-aws-sdk/clients/ec2stub": "//third_party/go:github.com__banzaicloud__cadence-aws-sdk__clients__ec2stub",
"github.com/banzaicloud/cadence-aws-sdk/internal": "//third_party/go:github.com__banzaicloud__cadence-aws-sdk__internal",
"github.com/banzaicloud/gin-utilz/auth": "//third_party/go:github.com__banzaicloud__gin-utilz__auth",
"github.com/banzaicloud/go-gin-prometheus": "//third_party/go:github.com__banzaicloud__go-gin-prometheus",
"github.com/banzaicloud/integrated-service-sdk/api/v1alpha1": "//third_party/go:github.com__banzaicloud__integrated-service-sdk__api__v1alpha1",
"github.com/banzaicloud/integrated-service-sdk/api/v1alpha1/backup": "//third_party/go:github.com__banzaicloud__integrated-service-sdk__api__v1alpha1__backup",
"github.com/banzaicloud/integrated-service-sdk/api/v1alpha1/dns": "//third_party/go:github.com__banzaicloud__integrated-service-sdk__api__v1alpha1__dns",
"github.com/banzaicloud/k8s-objectmatcher/patch": "//third_party/go:github.com__banzaicloud__k8s-objectmatcher__patch",
"github.com/banzaicloud/logging-operator/pkg/sdk/logging/api/v1beta1": "//third_party/go:github.com__banzaicloud__logging-operator__pkg__sdk__logging__api__v1beta1",
"github.com/banzaicloud/logging-operator/pkg/sdk/logging/maps/mapstrstr": "//third_party/go:github.com__banzaicloud__logging-operator__pkg__sdk__logging__maps__mapstrstr",
"github.com/banzaicloud/logging-operator/pkg/sdk/logging/model/common": "//third_party/go:github.com__banzaicloud__logging-operator__pkg__sdk__logging__model__common",
"github.com/banzaicloud/logging-operator/pkg/sdk/logging/model/filter": "//third_party/go:github.com__banzaicloud__logging-operator__pkg__sdk__logging__model__filter",
"github.com/banzaicloud/logging-operator/pkg/sdk/logging/model/input": "//third_party/go:github.com__banzaicloud__logging-operator__pkg__sdk__logging__model__input",
"github.com/banzaicloud/logging-operator/pkg/sdk/logging/model/output": "//third_party/go:github.com__banzaicloud__logging-operator__pkg__sdk__logging__model__output",
"github.com/banzaicloud/logging-operator/pkg/sdk/logging/model/types": "//third_party/go:github.com__banzaicloud__logging-operator__pkg__sdk__logging__model__types",
"github.com/banzaicloud/logrus-runtime-formatter": "//third_party/go:github.com__banzaicloud__logrus-runtime-formatter",
"github.com/banzaicloud/operator-tools/pkg/logger": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__logger",
"github.com/banzaicloud/operator-tools/pkg/reconciler": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__reconciler",
"github.com/banzaicloud/operator-tools/pkg/resources": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__resources",
"github.com/banzaicloud/operator-tools/pkg/secret": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__secret",
"github.com/banzaicloud/operator-tools/pkg/typeoverride": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__typeoverride",
"github.com/banzaicloud/operator-tools/pkg/types": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__types",
"github.com/banzaicloud/operator-tools/pkg/utils": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__utils",
"github.com/banzaicloud/operator-tools/pkg/volume": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__volume",
"github.com/banzaicloud/operator-tools/pkg/wait": "//third_party/go:github.com__banzaicloud__operator-tools__pkg__wait",
"github.com/beorn7/perks/quantile": "//third_party/go:github.com__beorn7__perks__quantile",
"github.com/briandowns/spinner": "//third_party/go:github.com__briandowns__spinner",
"github.com/cenkalti/backoff/v3": "//third_party/go:github.com__cenkalti__backoff__v3",
"github.com/cespare/xxhash/v2": "//third_party/go:github.com__cespare__xxhash__v2",
"github.com/containerd/containerd/archive/compression": "//third_party/go:github.com__containerd__containerd__archive__compression",
"github.com/containerd/containerd/content": "//third_party/go:github.com__containerd__containerd__content",
"github.com/containerd/containerd/content/local": "//third_party/go:github.com__containerd__containerd__content__local",
"github.com/containerd/containerd/errdefs": "//third_party/go:github.com__containerd__containerd__errdefs",
"github.com/containerd/containerd/filters": "//third_party/go:github.com__containerd__containerd__filters",
"github.com/containerd/containerd/images": "//third_party/go:github.com__containerd__containerd__images",
"github.com/containerd/containerd/labels": "//third_party/go:github.com__containerd__containerd__labels",
"github.com/containerd/containerd/log": "//third_party/go:github.com__containerd__containerd__log",
"github.com/containerd/containerd/platforms": "//third_party/go:github.com__containerd__containerd__platforms",
"github.com/containerd/containerd/reference": "//third_party/go:github.com__containerd__containerd__reference",
"github.com/containerd/containerd/remotes": "//third_party/go:github.com__containerd__containerd__remotes",
"github.com/containerd/containerd/remotes/docker": "//third_party/go:github.com__containerd__containerd__remotes__docker",
"github.com/containerd/containerd/remotes/docker/schema1": "//third_party/go:github.com__containerd__containerd__remotes__docker__schema1",
"github.com/containerd/containerd/sys": "//third_party/go:github.com__containerd__containerd__sys",
"github.com/containerd/containerd/version": "//third_party/go:github.com__containerd__containerd__version",
"github.com/coreos/go-oidc": "//third_party/go:github.com__coreos__go-oidc",
"github.com/cppforlife/go-patch/patch": "//third_party/go:github.com__cppforlife__go-patch__patch",
"github.com/cristalhq/jwt/v3": "//third_party/go:github.com__cristalhq__jwt__v3",
"github.com/cyphar/filepath-securejoin": "//third_party/go:github.com__cyphar__filepath-securejoin",
"github.com/davecgh/go-spew/spew": "//third_party/go:github.com__davecgh__go-spew__spew",
"github.com/deislabs/oras/pkg/artifact": "//third_party/go:github.com__deislabs__oras__pkg__artifact",
"github.com/deislabs/oras/pkg/auth": "//third_party/go:github.com__deislabs__oras__pkg__auth",
"github.com/deislabs/oras/pkg/auth/docker": "//third_party/go:github.com__deislabs__oras__pkg__auth__docker",
"github.com/deislabs/oras/pkg/content": "//third_party/go:github.com__deislabs__oras__pkg__content",
"github.com/deislabs/oras/pkg/context": "//third_party/go:github.com__deislabs__oras__pkg__context",
"github.com/deislabs/oras/pkg/oras": "//third_party/go:github.com__deislabs__oras__pkg__oras",
"github.com/dexidp/dex/api/v2": "//third_party/go:github.com__dexidp__dex__api__v2",
"github.com/dimchansky/utfbom": "//third_party/go:github.com__dimchansky__utfbom",
"github.com/docker/cli/cli/config": "//third_party/go:github.com__docker__cli__cli__config",
"github.com/docker/cli/cli/config/configfile": "//third_party/go:github.com__docker__cli__cli__config__configfile",
"github.com/docker/cli/cli/config/credentials": "//third_party/go:github.com__docker__cli__cli__config__credentials",
"github.com/docker/cli/cli/config/types": "//third_party/go:github.com__docker__cli__cli__config__types",
"github.com/docker/distribution": "//third_party/go:github.com__docker__distribution",
"github.com/docker/distribution/digestset": "//third_party/go:github.com__docker__distribution__digestset",
"github.com/docker/distribution/metrics": "//third_party/go:github.com__docker__distribution__metrics",
"github.com/docker/distribution/reference": "//third_party/go:github.com__docker__distribution__reference",
"github.com/docker/distribution/registry/api/errcode": "//third_party/go:github.com__docker__distribution__registry__api__errcode",
"github.com/docker/distribution/registry/api/v2": "//third_party/go:github.com__docker__distribution__registry__api__v2",
"github.com/docker/distribution/registry/client": "//third_party/go:github.com__docker__distribution__registry__client",
"github.com/docker/distribution/registry/client/auth": "//third_party/go:github.com__docker__distribution__registry__client__auth",
"github.com/docker/distribution/registry/client/auth/challenge": "//third_party/go:github.com__docker__distribution__registry__client__auth__challenge",
"github.com/docker/distribution/registry/client/transport": "//third_party/go:github.com__docker__distribution__registry__client__transport",
"github.com/docker/distribution/registry/storage/cache": "//third_party/go:github.com__docker__distribution__registry__storage__cache",
"github.com/docker/distribution/registry/storage/cache/memory": "//third_party/go:github.com__docker__distribution__registry__storage__cache__memory",
"github.com/docker/docker-credential-helpers/client": "//third_party/go:github.com__docker__docker-credential-helpers__client",
"github.com/docker/docker-credential-helpers/credentials": "//third_party/go:github.com__docker__docker-credential-helpers__credentials",
"github.com/docker/docker/api/types": "//third_party/go:github.com__docker__docker__api__types",
"github.com/docker/docker/api/types/blkiodev": "//third_party/go:github.com__docker__docker__api__types__blkiodev",
"github.com/docker/docker/api/types/container": "//third_party/go:github.com__docker__docker__api__types__container",
"github.com/docker/docker/api/types/filters": "//third_party/go:github.com__docker__docker__api__types__filters",
"github.com/docker/docker/api/types/mount": "//third_party/go:github.com__docker__docker__api__types__mount",
"github.com/docker/docker/api/types/network": "//third_party/go:github.com__docker__docker__api__types__network",
"github.com/docker/docker/api/types/registry": "//third_party/go:github.com__docker__docker__api__types__registry",
"github.com/docker/docker/api/types/strslice": "//third_party/go:github.com__docker__docker__api__types__strslice",
"github.com/docker/docker/api/types/swarm": "//third_party/go:github.com__docker__docker__api__types__swarm",
"github.com/docker/docker/api/types/swarm/runtime": "//third_party/go:github.com__docker__docker__api__types__swarm__runtime",
"github.com/docker/docker/api/types/versions": "//third_party/go:github.com__docker__docker__api__types__versions",
"github.com/docker/docker/errdefs": "//third_party/go:github.com__docker__docker__errdefs",
"github.com/docker/docker/pkg/homedir": "//third_party/go:github.com__docker__docker__pkg__homedir",
"github.com/docker/docker/pkg/ioutils": "//third_party/go:github.com__docker__docker__pkg__ioutils",
"github.com/docker/docker/pkg/jsonmessage": "//third_party/go:github.com__docker__docker__pkg__jsonmessage",
"github.com/docker/docker/pkg/stringid": "//third_party/go:github.com__docker__docker__pkg__stringid",
"github.com/docker/docker/pkg/tarsum": "//third_party/go:github.com__docker__docker__pkg__tarsum",
"github.com/docker/docker/pkg/term": "//third_party/go:github.com__docker__docker__pkg__term",
"github.com/docker/docker/registry": "//third_party/go:github.com__docker__docker__registry",
"github.com/docker/docker/registry/resumable": "//third_party/go:github.com__docker__docker__registry__resumable",
"github.com/docker/docker/rootless": "//third_party/go:github.com__docker__docker__rootless",
"github.com/docker/go-connections/nat": "//third_party/go:github.com__docker__go-connections__nat",
"github.com/docker/go-connections/tlsconfig": "//third_party/go:github.com__docker__go-connections__tlsconfig",
"github.com/docker/go-metrics": "//third_party/go:github.com__docker__go-metrics",
"github.com/docker/go-units": "//third_party/go:github.com__docker__go-units",
"github.com/evanphx/json-patch": "//third_party/go:github.com__evanphx__json-patch",
"github.com/exponent-io/jsonpath": "//third_party/go:github.com__exponent-io__jsonpath",
"github.com/facebookgo/clock": "//third_party/go:github.com__facebookgo__clock",
"github.com/fatih/color": "//third_party/go:github.com__fatih__color",
"github.com/form3tech-oss/jwt-go": "//third_party/go:github.com__form3tech-oss__jwt-go",
"github.com/fsnotify/fsnotify": "//third_party/go:github.com__fsnotify__fsnotify",
"github.com/ghodss/yaml": "//third_party/go:github.com__ghodss__yaml",
"github.com/gin-contrib/cors": "//third_party/go:github.com__gin-contrib__cors",
"github.com/gin-contrib/sse": "//third_party/go:github.com__gin-contrib__sse",
"github.com/gin-gonic/gin": "//third_party/go:github.com__gin-gonic__gin",
"github.com/gin-gonic/gin/binding": "//third_party/go:github.com__gin-gonic__gin__binding",
"github.com/gin-gonic/gin/internal/bytesconv": "//third_party/go:github.com__gin-gonic__gin__internal__bytesconv",
"github.com/gin-gonic/gin/internal/json": "//third_party/go:github.com__gin-gonic__gin__internal__json",
"github.com/gin-gonic/gin/render": "//third_party/go:github.com__gin-gonic__gin__render",
"github.com/go-errors/errors": "//third_party/go:github.com__go-errors__errors",
"github.com/go-kit/kit/endpoint": "//third_party/go:github.com__go-kit__kit__endpoint",
"github.com/go-kit/kit/log": "//third_party/go:github.com__go-kit__kit__log",
"github.com/go-kit/kit/sd": "//third_party/go:github.com__go-kit__kit__sd",
"github.com/go-kit/kit/sd/lb": "//third_party/go:github.com__go-kit__kit__sd__lb",
"github.com/go-kit/kit/tracing/opencensus": "//third_party/go:github.com__go-kit__kit__tracing__opencensus",
"github.com/go-kit/kit/transport": "//third_party/go:github.com__go-kit__kit__transport",
"github.com/go-kit/kit/transport/grpc": "//third_party/go:github.com__go-kit__kit__transport__grpc",
"github.com/go-kit/kit/transport/http": "//third_party/go:github.com__go-kit__kit__transport__http",
"github.com/go-logfmt/logfmt": "//third_party/go:github.com__go-logfmt__logfmt",
"github.com/go-logr/logr": "//third_party/go:github.com__go-logr__logr",
"github.com/go-openapi/jsonpointer": "//third_party/go:github.com__go-openapi__jsonpointer",
"github.com/go-openapi/jsonreference": "//third_party/go:github.com__go-openapi__jsonreference",
"github.com/go-openapi/spec": "//third_party/go:github.com__go-openapi__spec",
"github.com/go-openapi/swag": "//third_party/go:github.com__go-openapi__swag",
"github.com/go-playground/locales": "//third_party/go:github.com__go-playground__locales",
"github.com/go-playground/locales/currency": "//third_party/go:github.com__go-playground__locales__currency",
"github.com/go-playground/universal-translator": "//third_party/go:github.com__go-playground__universal-translator",
"github.com/go-playground/validator/v10": "//third_party/go:github.com__go-playground__validator__v10",
"github.com/go-sql-driver/mysql": "//third_party/go:github.com__go-sql-driver__mysql",
"github.com/gobwas/glob": "//third_party/go:github.com__gobwas__glob",
"github.com/gobwas/glob/compiler": "//third_party/go:github.com__gobwas__glob__compiler",
"github.com/gobwas/glob/match": "//third_party/go:github.com__gobwas__glob__match",
"github.com/gobwas/glob/syntax": "//third_party/go:github.com__gobwas__glob__syntax",
"github.com/gobwas/glob/syntax/ast": "//third_party/go:github.com__gobwas__glob__syntax__ast",
"github.com/gobwas/glob/syntax/lexer": "//third_party/go:github.com__gobwas__glob__syntax__lexer",
"github.com/gobwas/glob/util/runes": "//third_party/go:github.com__gobwas__glob__util__runes",
"github.com/gobwas/glob/util/strings": "//third_party/go:github.com__gobwas__glob__util__strings",
"github.com/gofrs/flock": "//third_party/go:github.com__gofrs__flock",
"github.com/gofrs/uuid": "//third_party/go:github.com__gofrs__uuid",
"github.com/gogo/protobuf/proto": "//third_party/go:github.com__gogo__protobuf__proto",
"github.com/gogo/protobuf/sortkeys": "//third_party/go:github.com__gogo__protobuf__sortkeys",
"github.com/golang/groupcache/lru": "//third_party/go:github.com__golang__groupcache__lru",
"github.com/golang/mock/gomock": "//third_party/go:github.com__golang__mock__gomock",
"github.com/golang/protobuf/proto": "//third_party/go:github.com__golang__protobuf__proto",
"github.com/golang/protobuf/ptypes": "//third_party/go:github.com__golang__protobuf__ptypes",
"github.com/golang/protobuf/ptypes/any": "//third_party/go:github.com__golang__protobuf__ptypes__any",
"github.com/golang/protobuf/ptypes/duration": "//third_party/go:github.com__golang__protobuf__ptypes__duration",
"github.com/golang/protobuf/ptypes/timestamp": "//third_party/go:github.com__golang__protobuf__ptypes__timestamp",
"github.com/golang/snappy": "//third_party/go:github.com__golang__snappy",
"github.com/google/btree": "//third_party/go:github.com__google__btree",
"github.com/google/go-cmp/cmp": "//third_party/go:github.com__google__go-cmp__cmp",
"github.com/google/go-cmp/cmp/cmpopts": "//third_party/go:github.com__google__go-cmp__cmp__cmpopts",
"github.com/google/go-cmp/cmp/internal/diff": "//third_party/go:github.com__google__go-cmp__cmp__internal__diff",
"github.com/google/go-cmp/cmp/internal/flags": "//third_party/go:github.com__google__go-cmp__cmp__internal__flags",
"github.com/google/go-cmp/cmp/internal/function": "//third_party/go:github.com__google__go-cmp__cmp__internal__function",
"github.com/google/go-cmp/cmp/internal/value": "//third_party/go:github.com__google__go-cmp__cmp__internal__value",
"github.com/google/gofuzz": "//third_party/go:github.com__google__gofuzz",
"github.com/google/shlex": "//third_party/go:github.com__google__shlex",
"github.com/google/uuid": "//third_party/go:github.com__google__uuid",
"github.com/googleapis/gax-go/v2": "//third_party/go:github.com__googleapis__gax-go__v2",
"github.com/googleapis/gnostic/compiler": "//third_party/go:github.com__googleapis__gnostic__compiler",
"github.com/googleapis/gnostic/extensions": "//third_party/go:github.com__googleapis__gnostic__extensions",
"github.com/googleapis/gnostic/jsonschema": "//third_party/go:github.com__googleapis__gnostic__jsonschema",
"github.com/googleapis/gnostic/openapiv2": "//third_party/go:github.com__googleapis__gnostic__openapiv2",
"github.com/gorilla/css/scanner": "//third_party/go:github.com__gorilla__css__scanner",
"github.com/gorilla/mux": "//third_party/go:github.com__gorilla__mux",
"github.com/gorilla/securecookie": "//third_party/go:github.com__gorilla__securecookie",
"github.com/gorilla/sessions": "//third_party/go:github.com__gorilla__sessions",
"github.com/gosuri/uitable": "//third_party/go:github.com__gosuri__uitable",
"github.com/gosuri/uitable/util/strutil": "//third_party/go:github.com__gosuri__uitable__util__strutil",
"github.com/gosuri/uitable/util/wordwrap": "//third_party/go:github.com__gosuri__uitable__util__wordwrap",
"github.com/gregjones/httpcache": "//third_party/go:github.com__gregjones__httpcache",
"github.com/gregjones/httpcache/diskcache": "//third_party/go:github.com__gregjones__httpcache__diskcache",
"github.com/hashicorp/errwrap": "//third_party/go:github.com__hashicorp__errwrap",
"github.com/hashicorp/go-cleanhttp": "//third_party/go:github.com__hashicorp__go-cleanhttp",
"github.com/hashicorp/go-hclog": "//third_party/go:github.com__hashicorp__go-hclog",
"github.com/hashicorp/go-multierror": "//third_party/go:github.com__hashicorp__go-multierror",
"github.com/hashicorp/go-plugin": "//third_party/go:github.com__hashicorp__go-plugin",
"github.com/hashicorp/go-plugin/internal/plugin": "//third_party/go:github.com__hashicorp__go-plugin__internal__plugin",
"github.com/hashicorp/go-retryablehttp": "//third_party/go:github.com__hashicorp__go-retryablehttp",
"github.com/hashicorp/go-rootcerts": "//third_party/go:github.com__hashicorp__go-rootcerts",
"github.com/hashicorp/go-sockaddr": "//third_party/go:github.com__hashicorp__go-sockaddr",
"github.com/hashicorp/golang-lru": "//third_party/go:github.com__hashicorp__golang-lru",
"github.com/hashicorp/golang-lru/simplelru": "//third_party/go:github.com__hashicorp__golang-lru__simplelru",
"github.com/hashicorp/hcl": "//third_party/go:github.com__hashicorp__hcl",
"github.com/hashicorp/hcl/hcl/ast": "//third_party/go:github.com__hashicorp__hcl__hcl__ast",
"github.com/hashicorp/hcl/hcl/parser": "//third_party/go:github.com__hashicorp__hcl__hcl__parser",
"github.com/hashicorp/hcl/hcl/printer": "//third_party/go:github.com__hashicorp__hcl__hcl__printer",
"github.com/hashicorp/hcl/hcl/scanner": "//third_party/go:github.com__hashicorp__hcl__hcl__scanner",
"github.com/hashicorp/hcl/hcl/strconv": "//third_party/go:github.com__hashicorp__hcl__hcl__strconv",
"github.com/hashicorp/hcl/hcl/token": "//third_party/go:github.com__hashicorp__hcl__hcl__token",
"github.com/hashicorp/hcl/json/parser": "//third_party/go:github.com__hashicorp__hcl__json__parser",
"github.com/hashicorp/hcl/json/scanner": "//third_party/go:github.com__hashicorp__hcl__json__scanner",
"github.com/hashicorp/hcl/json/token": "//third_party/go:github.com__hashicorp__hcl__json__token",
"github.com/hashicorp/vault/api": "//third_party/go:github.com__hashicorp__vault__api",
"github.com/hashicorp/vault/sdk/helper/compressutil": "//third_party/go:github.com__hashicorp__vault__sdk__helper__compressutil",
"github.com/hashicorp/vault/sdk/helper/consts": "//third_party/go:github.com__hashicorp__vault__sdk__helper__consts",
"github.com/hashicorp/vault/sdk/helper/hclutil": "//third_party/go:github.com__hashicorp__vault__sdk__helper__hclutil",
"github.com/hashicorp/vault/sdk/helper/jsonutil": "//third_party/go:github.com__hashicorp__vault__sdk__helper__jsonutil",
"github.com/hashicorp/vault/sdk/helper/parseutil": "//third_party/go:github.com__hashicorp__vault__sdk__helper__parseutil",
"github.com/hashicorp/vault/sdk/helper/strutil": "//third_party/go:github.com__hashicorp__vault__sdk__helper__strutil",
"github.com/hashicorp/yamux": "//third_party/go:github.com__hashicorp__yamux",
"github.com/huandu/xstrings": "//third_party/go:github.com__huandu__xstrings",
"github.com/iancoleman/orderedmap": "//third_party/go:github.com__iancoleman__orderedmap",
"github.com/imdario/mergo": "//third_party/go:github.com__imdario__mergo",
"github.com/jinzhu/copier": "//third_party/go:github.com__jinzhu__copier",
"github.com/jinzhu/gorm": "//third_party/go:github.com__jinzhu__gorm",
"github.com/jinzhu/gorm/dialects/mysql": "//third_party/go:github.com__jinzhu__gorm__dialects__mysql",
"github.com/jinzhu/gorm/dialects/postgres": "//third_party/go:github.com__jinzhu__gorm__dialects__postgres",
"github.com/jinzhu/gorm/dialects/sqlite": "//third_party/go:github.com__jinzhu__gorm__dialects__sqlite",
"github.com/jinzhu/inflection": "//third_party/go:github.com__jinzhu__inflection",
"github.com/jinzhu/now": "//third_party/go:github.com__jinzhu__now",
"github.com/jmespath/go-jmespath": "//third_party/go:github.com__jmespath__go-jmespath",
"github.com/jmoiron/sqlx": "//third_party/go:github.com__jmoiron__sqlx",
"github.com/jmoiron/sqlx/reflectx": "//third_party/go:github.com__jmoiron__sqlx__reflectx",
"github.com/joho/godotenv": "//third_party/go:github.com__joho__godotenv",
"github.com/jonboulle/clockwork": "//third_party/go:github.com__jonboulle__clockwork",
"github.com/json-iterator/go": "//third_party/go:github.com__json-iterator__go",
"github.com/kubernetes-csi/external-snapshotter/v2/pkg/apis/volumesnapshot/v1beta1": "//third_party/go:github.com__kubernetes-csi__external-snapshotter__v2__pkg__apis__volumesnapshot__v1beta1",
"github.com/lann/builder": "//third_party/go:github.com__lann__builder",
"github.com/lann/ps": "//third_party/go:github.com__lann__ps",
"github.com/leodido/go-urn": "//third_party/go:github.com__leodido__go-urn",
"github.com/lestrrat-go/backoff": "//third_party/go:github.com__lestrrat-go__backoff",
"github.com/lib/pq": "//third_party/go:github.com__lib__pq",
"github.com/lib/pq/hstore": "//third_party/go:github.com__lib__pq__hstore",
"github.com/lib/pq/oid": "//third_party/go:github.com__lib__pq__oid",
"github.com/lib/pq/scram": "//third_party/go:github.com__lib__pq__scram",
"github.com/liggitt/tabwriter": "//third_party/go:github.com__liggitt__tabwriter",
"github.com/lithammer/shortuuid/v3": "//third_party/go:github.com__lithammer__shortuuid__v3",
"github.com/magiconair/properties": "//third_party/go:github.com__magiconair__properties",
"github.com/mailru/easyjson/buffer": "//third_party/go:github.com__mailru__easyjson__buffer",
"github.com/mailru/easyjson/jlexer": "//third_party/go:github.com__mailru__easyjson__jlexer",
"github.com/mailru/easyjson/jwriter": "//third_party/go:github.com__mailru__easyjson__jwriter",
"github.com/mattn/go-colorable": "//third_party/go:github.com__mattn__go-colorable",
"github.com/mattn/go-ieproxy": "//third_party/go:github.com__mattn__go-ieproxy",
"github.com/mattn/go-isatty": "//third_party/go:github.com__mattn__go-isatty",
"github.com/mattn/go-runewidth": "//third_party/go:github.com__mattn__go-runewidth",
"github.com/mattn/go-sqlite3": "//third_party/go:github.com__mattn__go-sqlite3",
"github.com/matttproud/golang_protobuf_extensions/pbutil": "//third_party/go:github.com__matttproud__golang_protobuf_extensions__pbutil",
"github.com/microcosm-cc/bluemonday": "//third_party/go:github.com__microcosm-cc__bluemonday",
"github.com/microcosm-cc/bluemonday/css": "//third_party/go:github.com__microcosm-cc__bluemonday__css",
"github.com/mitchellh/copystructure": "//third_party/go:github.com__mitchellh__copystructure",
"github.com/mitchellh/go-homedir": "//third_party/go:github.com__mitchellh__go-homedir",
"github.com/mitchellh/go-testing-interface": "//third_party/go:github.com__mitchellh__go-testing-interface",
"github.com/mitchellh/go-wordwrap": "//third_party/go:github.com__mitchellh__go-wordwrap",
"github.com/mitchellh/mapstructure": "//third_party/go:github.com__mitchellh__mapstructure",
"github.com/mitchellh/reflectwalk": "//third_party/go:github.com__mitchellh__reflectwalk",
"github.com/moby/spdystream": "//third_party/go:github.com__moby__spdystream",
"github.com/moby/spdystream/spdy": "//third_party/go:github.com__moby__spdystream__spdy",
"github.com/moby/term": "//third_party/go:github.com__moby__term",
"github.com/modern-go/concurrent": "//third_party/go:github.com__modern-go__concurrent",
"github.com/modern-go/reflect2": "//third_party/go:github.com__modern-go__reflect2",
"github.com/monochromegane/go-gitignore": "//third_party/go:github.com__monochromegane__go-gitignore",
"github.com/moogar0880/problems": "//third_party/go:github.com__moogar0880__problems",
"github.com/morikuni/aec": "//third_party/go:github.com__morikuni__aec",
"github.com/mxk/go-flowrate/flowrate": "//third_party/go:github.com__mxk__go-flowrate__flowrate",
"github.com/oklog/run": "//third_party/go:github.com__oklog__run",
"github.com/oklog/ulid": "//third_party/go:github.com__oklog__ulid",
"github.com/onsi/gomega": "//third_party/go:github.com__onsi__gomega",
"github.com/onsi/gomega/format": "//third_party/go:github.com__onsi__gomega__format",
"github.com/onsi/gomega/gbytes": "//third_party/go:github.com__onsi__gomega__gbytes",
"github.com/onsi/gomega/gexec": "//third_party/go:github.com__onsi__gomega__gexec",
"github.com/onsi/gomega/internal/assertion": "//third_party/go:github.com__onsi__gomega__internal__assertion",
"github.com/onsi/gomega/internal/asyncassertion": "//third_party/go:github.com__onsi__gomega__internal__asyncassertion",
"github.com/onsi/gomega/internal/defaults": "//third_party/go:github.com__onsi__gomega__internal__defaults",
"github.com/onsi/gomega/internal/oraclematcher": "//third_party/go:github.com__onsi__gomega__internal__oraclematcher",
"github.com/onsi/gomega/internal/testingtsupport": "//third_party/go:github.com__onsi__gomega__internal__testingtsupport",
"github.com/onsi/gomega/matchers": "//third_party/go:github.com__onsi__gomega__matchers",
"github.com/onsi/gomega/matchers/support/goraph/bipartitegraph": "//third_party/go:github.com__onsi__gomega__matchers__support__goraph__bipartitegraph",
"github.com/onsi/gomega/matchers/support/goraph/edge": "//third_party/go:github.com__onsi__gomega__matchers__support__goraph__edge",
"github.com/onsi/gomega/matchers/support/goraph/node": "//third_party/go:github.com__onsi__gomega__matchers__support__goraph__node",
"github.com/onsi/gomega/matchers/support/goraph/util": "//third_party/go:github.com__onsi__gomega__matchers__support__goraph__util",
"github.com/onsi/gomega/types": "//third_party/go:github.com__onsi__gomega__types",
"github.com/opencontainers/go-digest": "//third_party/go:github.com__opencontainers__go-digest",
"github.com/opencontainers/image-spec/specs-go": "//third_party/go:github.com__opencontainers__image-spec__specs-go",
"github.com/opencontainers/image-spec/specs-go/v1": "//third_party/go:github.com__opencontainers__image-spec__specs-go__v1",
"github.com/opentracing/opentracing-go": "//third_party/go:github.com__opentracing__opentracing-go",
"github.com/opentracing/opentracing-go/ext": "//third_party/go:github.com__opentracing__opentracing-go__ext",
"github.com/opentracing/opentracing-go/log": "//third_party/go:github.com__opentracing__opentracing-go__log",
"github.com/patrickmn/go-cache": "//third_party/go:github.com__patrickmn__go-cache",
"github.com/pborman/uuid": "//third_party/go:github.com__pborman__uuid",
"github.com/pelletier/go-toml": "//third_party/go:github.com__pelletier__go-toml",
"github.com/peterbourgon/diskv": "//third_party/go:github.com__peterbourgon__diskv",
"github.com/pierrec/lz4": "//third_party/go:github.com__pierrec__lz4",
"github.com/pierrec/lz4/internal/xxh32": "//third_party/go:github.com__pierrec__lz4__internal__xxh32",
"github.com/pkg/errors": "//third_party/go:github.com__pkg__errors",
"github.com/pmezard/go-difflib/difflib": "//third_party/go:github.com__pmezard__go-difflib__difflib",
"github.com/pquerna/cachecontrol": "//third_party/go:github.com__pquerna__cachecontrol",
"github.com/pquerna/cachecontrol/cacheobject": "//third_party/go:github.com__pquerna__cachecontrol__cacheobject",
"github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring": "//third_party/go:github.com__prometheus-operator__prometheus-operator__pkg__apis__monitoring",
"github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring/v1": "//third_party/go:github.com__prometheus-operator__prometheus-operator__pkg__apis__monitoring__v1",
"github.com/prometheus/client_golang/prometheus": "//third_party/go:github.com__prometheus__client_golang__prometheus",
"github.com/prometheus/client_golang/prometheus/collectors": "//third_party/go:github.com__prometheus__client_golang__prometheus__collectors",
"github.com/prometheus/client_golang/prometheus/internal": "//third_party/go:github.com__prometheus__client_golang__prometheus__internal",
"github.com/prometheus/client_golang/prometheus/promhttp": "//third_party/go:github.com__prometheus__client_golang__prometheus__promhttp",
"github.com/prometheus/client_model/go": "//third_party/go:github.com__prometheus__client_model__go",
"github.com/prometheus/common/expfmt": "//third_party/go:github.com__prometheus__common__expfmt",
"github.com/prometheus/common/internal/bitbucket.org/ww/goautoneg": "//third_party/go:github.com__prometheus__common__internal__bitbucket.org__ww__goautoneg",
"github.com/prometheus/common/model": "//third_party/go:github.com__prometheus__common__model",
"github.com/prometheus/procfs": "//third_party/go:github.com__prometheus__procfs",
"github.com/prometheus/procfs/internal/fs": "//third_party/go:github.com__prometheus__procfs__internal__fs",
"github.com/prometheus/procfs/internal/util": "//third_party/go:github.com__prometheus__procfs__internal__util",
"github.com/prometheus/prom2json": "//third_party/go:github.com__prometheus__prom2json",
"github.com/robfig/cron": "//third_party/go:github.com__robfig__cron",
"github.com/rubenv/sql-migrate": "//third_party/go:github.com__rubenv__sql-migrate",
"github.com/rubenv/sql-migrate/sqlparse": "//third_party/go:github.com__rubenv__sql-migrate__sqlparse",
"github.com/russross/blackfriday": "//third_party/go:github.com__russross__blackfriday",
"github.com/ryanuber/go-glob": "//third_party/go:github.com__ryanuber__go-glob",
"github.com/sagikazarmark/appkit/endpoint": "//third_party/go:github.com__sagikazarmark__appkit__endpoint",
"github.com/sagikazarmark/appkit/errors": "//third_party/go:github.com__sagikazarmark__appkit__errors",
"github.com/sagikazarmark/appkit/run": "//third_party/go:github.com__sagikazarmark__appkit__run",
"github.com/sagikazarmark/appkit/transport/http": "//third_party/go:github.com__sagikazarmark__appkit__transport__http",
"github.com/sagikazarmark/kitx/correlation": "//third_party/go:github.com__sagikazarmark__kitx__correlation",
"github.com/sagikazarmark/kitx/endpoint": "//third_party/go:github.com__sagikazarmark__kitx__endpoint",
"github.com/sagikazarmark/kitx/transport": "//third_party/go:github.com__sagikazarmark__kitx__transport",
"github.com/sagikazarmark/kitx/transport/http": "//third_party/go:github.com__sagikazarmark__kitx__transport__http",
"github.com/sagikazarmark/ocmux": "//third_party/go:github.com__sagikazarmark__ocmux",
"github.com/shopspring/decimal": "//third_party/go:github.com__shopspring__decimal",
"github.com/sirupsen/logrus": "//third_party/go:github.com__sirupsen__logrus",
"github.com/spf13/afero": "//third_party/go:github.com__spf13__afero",
"github.com/spf13/afero/mem": "//third_party/go:github.com__spf13__afero__mem",
"github.com/spf13/cast": "//third_party/go:github.com__spf13__cast",
"github.com/spf13/cobra": "//third_party/go:github.com__spf13__cobra",
"github.com/spf13/jwalterweatherman": "//third_party/go:github.com__spf13__jwalterweatherman",
"github.com/spf13/pflag": "//third_party/go:github.com__spf13__pflag",
"github.com/spf13/viper": "//third_party/go:github.com__spf13__viper",
"github.com/stretchr/objx": "//third_party/go:github.com__stretchr__objx",
"github.com/stretchr/testify/assert": "//third_party/go:github.com__stretchr__testify__assert",
"github.com/stretchr/testify/mock": "//third_party/go:github.com__stretchr__testify__mock",
"github.com/stretchr/testify/require": "//third_party/go:github.com__stretchr__testify__require",
"github.com/stretchr/testify/suite": "//third_party/go:github.com__stretchr__testify__suite",
"github.com/subosito/gotenv": "//third_party/go:github.com__subosito__gotenv",
"github.com/technosophos/moniker": "//third_party/go:github.com__technosophos__moniker",
"github.com/uber-go/mapdecode": "//third_party/go:github.com__uber-go__mapdecode",
"github.com/uber-go/mapdecode/internal/mapstructure": "//third_party/go:github.com__uber-go__mapdecode__internal__mapstructure",
"github.com/uber-go/tally": "//third_party/go:github.com__uber-go__tally",
"github.com/uber/tchannel-go": "//third_party/go:github.com__uber__tchannel-go",
"github.com/uber/tchannel-go/internal/argreader": "//third_party/go:github.com__uber__tchannel-go__internal__argreader",
"github.com/uber/tchannel-go/relay": "//third_party/go:github.com__uber__tchannel-go__relay",
"github.com/uber/tchannel-go/thrift/arg2": "//third_party/go:github.com__uber__tchannel-go__thrift__arg2",
"github.com/uber/tchannel-go/tnet": "//third_party/go:github.com__uber__tchannel-go__tnet",
"github.com/uber/tchannel-go/tos": "//third_party/go:github.com__uber__tchannel-go__tos",
"github.com/uber/tchannel-go/trand": "//third_party/go:github.com__uber__tchannel-go__trand",
"github.com/uber/tchannel-go/typed": "//third_party/go:github.com__uber__tchannel-go__typed",
"github.com/ugorji/go/codec": "//third_party/go:github.com__ugorji__go__codec",
"github.com/vmware-tanzu/velero/internal/hook": "//third_party/go:github.com__vmware-tanzu__velero__internal__hook",
"github.com/vmware-tanzu/velero/pkg/apis/velero/v1": "//third_party/go:github.com__vmware-tanzu__velero__pkg__apis__velero__v1",
"github.com/vmware-tanzu/velero/pkg/archive": "//third_party/go:github.com__vmware-tanzu__velero__pkg__archive",
"github.com/vmware-tanzu/velero/pkg/builder": "//third_party/go:github.com__vmware-tanzu__velero__pkg__builder",
"github.com/vmware-tanzu/velero/pkg/buildinfo": "//third_party/go:github.com__vmware-tanzu__velero__pkg__buildinfo",
"github.com/vmware-tanzu/velero/pkg/client": "//third_party/go:github.com__vmware-tanzu__velero__pkg__client",
"github.com/vmware-tanzu/velero/pkg/cmd/util/flag": "//third_party/go:github.com__vmware-tanzu__velero__pkg__cmd__util__flag",
"github.com/vmware-tanzu/velero/pkg/discovery": "//third_party/go:github.com__vmware-tanzu__velero__pkg__discovery",
"github.com/vmware-tanzu/velero/pkg/features": "//third_party/go:github.com__vmware-tanzu__velero__pkg__features",
"github.com/vmware-tanzu/velero/pkg/generated/clientset/versioned": "//third_party/go:github.com__vmware-tanzu__velero__pkg__generated__clientset__versioned",
"github.com/vmware-tanzu/velero/pkg/generated/clientset/versioned/scheme": "//third_party/go:github.com__vmware-tanzu__velero__pkg__generated__clientset__versioned__scheme",
"github.com/vmware-tanzu/velero/pkg/generated/clientset/versioned/typed/velero/v1": "//third_party/go:github.com__vmware-tanzu__velero__pkg__generated__clientset__versioned__typed__velero__v1",
"github.com/vmware-tanzu/velero/pkg/generated/informers/externalversions/internalinterfaces": "//third_party/go:github.com__vmware-tanzu__velero__pkg__generated__informers__externalversions__internalinterfaces",
"github.com/vmware-tanzu/velero/pkg/generated/informers/externalversions/velero/v1": "//third_party/go:github.com__vmware-tanzu__velero__pkg__generated__informers__externalversions__velero__v1",
"github.com/vmware-tanzu/velero/pkg/generated/listers/velero/v1": "//third_party/go:github.com__vmware-tanzu__velero__pkg__generated__listers__velero__v1",
"github.com/vmware-tanzu/velero/pkg/kuberesource": "//third_party/go:github.com__vmware-tanzu__velero__pkg__kuberesource",
"github.com/vmware-tanzu/velero/pkg/label": "//third_party/go:github.com__vmware-tanzu__velero__pkg__label",
"github.com/vmware-tanzu/velero/pkg/persistence": "//third_party/go:github.com__vmware-tanzu__velero__pkg__persistence",
"github.com/vmware-tanzu/velero/pkg/plugin/framework": "//third_party/go:github.com__vmware-tanzu__velero__pkg__plugin__framework",
"github.com/vmware-tanzu/velero/pkg/plugin/generated": "//third_party/go:github.com__vmware-tanzu__velero__pkg__plugin__generated",
"github.com/vmware-tanzu/velero/pkg/plugin/velero": "//third_party/go:github.com__vmware-tanzu__velero__pkg__plugin__velero",
"github.com/vmware-tanzu/velero/pkg/podexec": "//third_party/go:github.com__vmware-tanzu__velero__pkg__podexec",
"github.com/vmware-tanzu/velero/pkg/restic": "//third_party/go:github.com__vmware-tanzu__velero__pkg__restic",
"github.com/vmware-tanzu/velero/pkg/restore": "//third_party/go:github.com__vmware-tanzu__velero__pkg__restore",
"github.com/vmware-tanzu/velero/pkg/util/boolptr": "//third_party/go:github.com__vmware-tanzu__velero__pkg__util__boolptr",
"github.com/vmware-tanzu/velero/pkg/util/collections": "//third_party/go:github.com__vmware-tanzu__velero__pkg__util__collections",
"github.com/vmware-tanzu/velero/pkg/util/exec": "//third_party/go:github.com__vmware-tanzu__velero__pkg__util__exec",
"github.com/vmware-tanzu/velero/pkg/util/filesystem": "//third_party/go:github.com__vmware-tanzu__velero__pkg__util__filesystem",
"github.com/vmware-tanzu/velero/pkg/util/kube": "//third_party/go:github.com__vmware-tanzu__velero__pkg__util__kube",
"github.com/vmware-tanzu/velero/pkg/util/logging": "//third_party/go:github.com__vmware-tanzu__velero__pkg__util__logging",
"github.com/vmware-tanzu/velero/pkg/volume": "//third_party/go:github.com__vmware-tanzu__velero__pkg__volume",
"github.com/vmware-tanzu/velero/third_party/kubernetes/pkg/kubectl/cmd/util": "//third_party/go:github.com__vmware-tanzu__velero__third_party__kubernetes__pkg__kubectl__cmd__util",
"github.com/vmware/govmomi": "//third_party/go:github.com__vmware__govmomi",
"github.com/vmware/govmomi/find": "//third_party/go:github.com__vmware__govmomi__find",
"github.com/vmware/govmomi/list": "//third_party/go:github.com__vmware__govmomi__list",
"github.com/vmware/govmomi/nfc": "//third_party/go:github.com__vmware__govmomi__nfc",
"github.com/vmware/govmomi/object": "//third_party/go:github.com__vmware__govmomi__object",
"github.com/vmware/govmomi/property": "//third_party/go:github.com__vmware__govmomi__property",
"github.com/vmware/govmomi/session": "//third_party/go:github.com__vmware__govmomi__session",
"github.com/vmware/govmomi/task": "//third_party/go:github.com__vmware__govmomi__task",
"github.com/vmware/govmomi/vim25": "//third_party/go:github.com__vmware__govmomi__vim25",
"github.com/vmware/govmomi/vim25/debug": "//third_party/go:github.com__vmware__govmomi__vim25__debug",
"github.com/vmware/govmomi/vim25/methods": "//third_party/go:github.com__vmware__govmomi__vim25__methods",
"github.com/vmware/govmomi/vim25/mo": "//third_party/go:github.com__vmware__govmomi__vim25__mo",
"github.com/vmware/govmomi/vim25/progress": "//third_party/go:github.com__vmware__govmomi__vim25__progress",
"github.com/vmware/govmomi/vim25/soap": "//third_party/go:github.com__vmware__govmomi__vim25__soap",
"github.com/vmware/govmomi/vim25/types": "//third_party/go:github.com__vmware__govmomi__vim25__types",
"github.com/vmware/govmomi/vim25/xml": "//third_party/go:github.com__vmware__govmomi__vim25__xml",
"github.com/wayneashleyberry/terminal-dimensions": "//third_party/go:github.com__wayneashleyberry__terminal-dimensions",
"github.com/xeipuuv/gojsonpointer": "//third_party/go:github.com__xeipuuv__gojsonpointer",
"github.com/xeipuuv/gojsonreference": "//third_party/go:github.com__xeipuuv__gojsonreference",
"github.com/xeipuuv/gojsonschema": "//third_party/go:github.com__xeipuuv__gojsonschema",
"github.com/xlab/treeprint": "//third_party/go:github.com__xlab__treeprint",
"go.opencensus.io": "//third_party/go:go.opencensus.io",
"go.opencensus.io/internal": "//third_party/go:go.opencensus.io__internal",
"go.opencensus.io/internal/tagencoding": "//third_party/go:go.opencensus.io__internal__tagencoding",
"go.opencensus.io/metric/metricdata": "//third_party/go:go.opencensus.io__metric__metricdata",
"go.opencensus.io/metric/metricproducer": "//third_party/go:go.opencensus.io__metric__metricproducer",
"go.opencensus.io/plugin/ocgrpc": "//third_party/go:go.opencensus.io__plugin__ocgrpc",
"go.opencensus.io/plugin/ochttp": "//third_party/go:go.opencensus.io__plugin__ochttp",
"go.opencensus.io/plugin/ochttp/propagation/b3": "//third_party/go:go.opencensus.io__plugin__ochttp__propagation__b3",
"go.opencensus.io/resource": "//third_party/go:go.opencensus.io__resource",
"go.opencensus.io/stats": "//third_party/go:go.opencensus.io__stats",
"go.opencensus.io/stats/internal": "//third_party/go:go.opencensus.io__stats__internal",
"go.opencensus.io/stats/view": "//third_party/go:go.opencensus.io__stats__view",
"go.opencensus.io/tag": "//third_party/go:go.opencensus.io__tag",
"go.opencensus.io/trace": "//third_party/go:go.opencensus.io__trace",
"go.opencensus.io/trace/internal": "//third_party/go:go.opencensus.io__trace__internal",
"go.opencensus.io/trace/propagation": "//third_party/go:go.opencensus.io__trace__propagation",
"go.opencensus.io/trace/tracestate": "//third_party/go:go.opencensus.io__trace__tracestate",
"go.starlark.net/internal/compile": "//third_party/go:go.starlark.net__internal__compile",
"go.starlark.net/internal/spell": "//third_party/go:go.starlark.net__internal__spell",
"go.starlark.net/resolve": "//third_party/go:go.starlark.net__resolve",
"go.starlark.net/starlark": "//third_party/go:go.starlark.net__starlark",
"go.starlark.net/starlarkstruct": "//third_party/go:go.starlark.net__starlarkstruct",
"go.starlark.net/syntax": "//third_party/go:go.starlark.net__syntax",
"go.uber.org/atomic": "//third_party/go:go.uber.org__atomic",
"go.uber.org/cadence": "//third_party/go:go.uber.org__cadence",
"go.uber.org/cadence/.gen/go/cadence": "//third_party/go:go.uber.org__cadence__.gen__go__cadence",
"go.uber.org/cadence/.gen/go/cadence/workflowserviceclient": "//third_party/go:go.uber.org__cadence__.gen__go__cadence__workflowserviceclient",
"go.uber.org/cadence/.gen/go/cadence/workflowservicetest": "//third_party/go:go.uber.org__cadence__.gen__go__cadence__workflowservicetest",
"go.uber.org/cadence/.gen/go/shadower": "//third_party/go:go.uber.org__cadence__.gen__go__shadower",
"go.uber.org/cadence/.gen/go/shared": "//third_party/go:go.uber.org__cadence__.gen__go__shared",
"go.uber.org/cadence/activity": "//third_party/go:go.uber.org__cadence__activity",
"go.uber.org/cadence/client": "//third_party/go:go.uber.org__cadence__client",
"go.uber.org/cadence/encoded": "//third_party/go:go.uber.org__cadence__encoded",
"go.uber.org/cadence/internal": "//third_party/go:go.uber.org__cadence__internal",
"go.uber.org/cadence/internal/common": "//third_party/go:go.uber.org__cadence__internal__common",
"go.uber.org/cadence/internal/common/auth": "//third_party/go:go.uber.org__cadence__internal__common__auth",
"go.uber.org/cadence/internal/common/backoff": "//third_party/go:go.uber.org__cadence__internal__common__backoff",
"go.uber.org/cadence/internal/common/cache": "//third_party/go:go.uber.org__cadence__internal__common__cache",
"go.uber.org/cadence/internal/common/metrics": "//third_party/go:go.uber.org__cadence__internal__common__metrics",
"go.uber.org/cadence/internal/common/serializer": "//third_party/go:go.uber.org__cadence__internal__common__serializer",
"go.uber.org/cadence/internal/common/util": "//third_party/go:go.uber.org__cadence__internal__common__util",
"go.uber.org/cadence/mocks": "//third_party/go:go.uber.org__cadence__mocks",
"go.uber.org/cadence/testsuite": "//third_party/go:go.uber.org__cadence__testsuite",
"go.uber.org/cadence/worker": "//third_party/go:go.uber.org__cadence__worker",
"go.uber.org/cadence/workflow": "//third_party/go:go.uber.org__cadence__workflow",
"go.uber.org/multierr": "//third_party/go:go.uber.org__multierr",
"go.uber.org/net/metrics": "//third_party/go:go.uber.org__net__metrics",
"go.uber.org/net/metrics/bucket": "//third_party/go:go.uber.org__net__metrics__bucket",
"go.uber.org/net/metrics/push": "//third_party/go:go.uber.org__net__metrics__push",
"go.uber.org/net/metrics/tallypush": "//third_party/go:go.uber.org__net__metrics__tallypush",
"go.uber.org/thriftrw/envelope": "//third_party/go:go.uber.org__thriftrw__envelope",
"go.uber.org/thriftrw/internal/envelope/exception": "//third_party/go:go.uber.org__thriftrw__internal__envelope__exception",
"go.uber.org/thriftrw/protocol": "//third_party/go:go.uber.org__thriftrw__protocol",
"go.uber.org/thriftrw/protocol/binary": "//third_party/go:go.uber.org__thriftrw__protocol__binary",
"go.uber.org/thriftrw/ptr": "//third_party/go:go.uber.org__thriftrw__ptr",
"go.uber.org/thriftrw/thriftreflect": "//third_party/go:go.uber.org__thriftrw__thriftreflect",
"go.uber.org/thriftrw/version": "//third_party/go:go.uber.org__thriftrw__version",
"go.uber.org/thriftrw/wire": "//third_party/go:go.uber.org__thriftrw__wire",
"go.uber.org/yarpc": "//third_party/go:go.uber.org__yarpc",
"go.uber.org/yarpc/api/backoff": "//third_party/go:go.uber.org__yarpc__api__backoff",
"go.uber.org/yarpc/api/encoding": "//third_party/go:go.uber.org__yarpc__api__encoding",
"go.uber.org/yarpc/api/middleware": "//third_party/go:go.uber.org__yarpc__api__middleware",
"go.uber.org/yarpc/api/peer": "//third_party/go:go.uber.org__yarpc__api__peer",
"go.uber.org/yarpc/api/transport": "//third_party/go:go.uber.org__yarpc__api__transport",
"go.uber.org/yarpc/api/x/introspection": "//third_party/go:go.uber.org__yarpc__api__x__introspection",
"go.uber.org/yarpc/encoding/thrift": "//third_party/go:go.uber.org__yarpc__encoding__thrift",
"go.uber.org/yarpc/encoding/thrift/internal": "//third_party/go:go.uber.org__yarpc__encoding__thrift__internal",
"go.uber.org/yarpc/internal": "//third_party/go:go.uber.org__yarpc__internal",
"go.uber.org/yarpc/internal/backoff": "//third_party/go:go.uber.org__yarpc__internal__backoff",
"go.uber.org/yarpc/internal/bufferpool": "//third_party/go:go.uber.org__yarpc__internal__bufferpool",
"go.uber.org/yarpc/internal/config": "//third_party/go:go.uber.org__yarpc__internal__config",
"go.uber.org/yarpc/internal/digester": "//third_party/go:go.uber.org__yarpc__internal__digester",
"go.uber.org/yarpc/internal/errorsync": "//third_party/go:go.uber.org__yarpc__internal__errorsync",
"go.uber.org/yarpc/internal/firstoutboundmiddleware": "//third_party/go:go.uber.org__yarpc__internal__firstoutboundmiddleware",
"go.uber.org/yarpc/internal/humanize": "//third_party/go:go.uber.org__yarpc__internal__humanize",
"go.uber.org/yarpc/internal/inboundcall": "//third_party/go:go.uber.org__yarpc__internal__inboundcall",
"go.uber.org/yarpc/internal/inboundmiddleware": "//third_party/go:go.uber.org__yarpc__internal__inboundmiddleware",
"go.uber.org/yarpc/internal/interpolate": "//third_party/go:go.uber.org__yarpc__internal__interpolate",
"go.uber.org/yarpc/internal/introspection": "//third_party/go:go.uber.org__yarpc__internal__introspection",
"go.uber.org/yarpc/internal/iopool": "//third_party/go:go.uber.org__yarpc__internal__iopool",
"go.uber.org/yarpc/internal/observability": "//third_party/go:go.uber.org__yarpc__internal__observability",
"go.uber.org/yarpc/internal/outboundmiddleware": "//third_party/go:go.uber.org__yarpc__internal__outboundmiddleware",
"go.uber.org/yarpc/internal/request": "//third_party/go:go.uber.org__yarpc__internal__request",
"go.uber.org/yarpc/internal/yarpcerrors": "//third_party/go:go.uber.org__yarpc__internal__yarpcerrors",
"go.uber.org/yarpc/peer": "//third_party/go:go.uber.org__yarpc__peer",
"go.uber.org/yarpc/peer/abstractpeer": "//third_party/go:go.uber.org__yarpc__peer__abstractpeer",
"go.uber.org/yarpc/peer/hostport": "//third_party/go:go.uber.org__yarpc__peer__hostport",
"go.uber.org/yarpc/pkg/encoding": "//third_party/go:go.uber.org__yarpc__pkg__encoding",
"go.uber.org/yarpc/pkg/errors": "//third_party/go:go.uber.org__yarpc__pkg__errors",
"go.uber.org/yarpc/pkg/lifecycle": "//third_party/go:go.uber.org__yarpc__pkg__lifecycle",
"go.uber.org/yarpc/pkg/procedure": "//third_party/go:go.uber.org__yarpc__pkg__procedure",
"go.uber.org/yarpc/transport/tchannel": "//third_party/go:go.uber.org__yarpc__transport__tchannel",
"go.uber.org/yarpc/transport/tchannel/internal": "//third_party/go:go.uber.org__yarpc__transport__tchannel__internal",
"go.uber.org/yarpc/yarpcconfig": "//third_party/go:go.uber.org__yarpc__yarpcconfig",
"go.uber.org/yarpc/yarpcerrors": "//third_party/go:go.uber.org__yarpc__yarpcerrors",
"go.uber.org/zap": "//third_party/go:go.uber.org__zap",
"go.uber.org/zap/buffer": "//third_party/go:go.uber.org__zap__buffer",
"go.uber.org/zap/internal/bufferpool": "//third_party/go:go.uber.org__zap__internal__bufferpool",
"go.uber.org/zap/internal/color": "//third_party/go:go.uber.org__zap__internal__color",
"go.uber.org/zap/internal/exit": "//third_party/go:go.uber.org__zap__internal__exit",
"go.uber.org/zap/zapcore": "//third_party/go:go.uber.org__zap__zapcore",
"golang.org/x/crypto/bcrypt": "//third_party/go:golang.org__x__crypto__bcrypt",
"golang.org/x/crypto/blowfish": "//third_party/go:golang.org__x__crypto__blowfish",
"golang.org/x/crypto/cast5": "//third_party/go:golang.org__x__crypto__cast5",
"golang.org/x/crypto/chacha20": "//third_party/go:golang.org__x__crypto__chacha20",
"golang.org/x/crypto/curve25519": "//third_party/go:golang.org__x__crypto__curve25519",
"golang.org/x/crypto/ed25519": "//third_party/go:golang.org__x__crypto__ed25519",
"golang.org/x/crypto/internal/subtle": "//third_party/go:golang.org__x__crypto__internal__subtle",
"golang.org/x/crypto/openpgp": "//third_party/go:golang.org__x__crypto__openpgp",
"golang.org/x/crypto/openpgp/armor": "//third_party/go:golang.org__x__crypto__openpgp__armor",
"golang.org/x/crypto/openpgp/clearsign": "//third_party/go:golang.org__x__crypto__openpgp__clearsign",
"golang.org/x/crypto/openpgp/elgamal": "//third_party/go:golang.org__x__crypto__openpgp__elgamal",
"golang.org/x/crypto/openpgp/errors": "//third_party/go:golang.org__x__crypto__openpgp__errors",
"golang.org/x/crypto/openpgp/packet": "//third_party/go:golang.org__x__crypto__openpgp__packet",
"golang.org/x/crypto/openpgp/s2k": "//third_party/go:golang.org__x__crypto__openpgp__s2k",
"golang.org/x/crypto/pbkdf2": "//third_party/go:golang.org__x__crypto__pbkdf2",
"golang.org/x/crypto/pkcs12": "//third_party/go:golang.org__x__crypto__pkcs12",
"golang.org/x/crypto/pkcs12/internal/rc2": "//third_party/go:golang.org__x__crypto__pkcs12__internal__rc2",
"golang.org/x/crypto/poly1305": "//third_party/go:golang.org__x__crypto__poly1305",
"golang.org/x/crypto/scrypt": "//third_party/go:golang.org__x__crypto__scrypt",
"golang.org/x/crypto/ssh": "//third_party/go:golang.org__x__crypto__ssh",
"golang.org/x/crypto/ssh/internal/bcrypt_pbkdf": "//third_party/go:golang.org__x__crypto__ssh__internal__bcrypt_pbkdf",
"golang.org/x/net/bpf": "//third_party/go:golang.org__x__net__bpf",
"golang.org/x/net/context": "//third_party/go:golang.org__x__net__context",
"golang.org/x/net/context/ctxhttp": "//third_party/go:golang.org__x__net__context__ctxhttp",
"golang.org/x/net/html": "//third_party/go:golang.org__x__net__html",
"golang.org/x/net/html/atom": "//third_party/go:golang.org__x__net__html__atom",
"golang.org/x/net/html/charset": "//third_party/go:golang.org__x__net__html__charset",
"golang.org/x/net/http/httpguts": "//third_party/go:golang.org__x__net__http__httpguts",
"golang.org/x/net/http2": "//third_party/go:golang.org__x__net__http2",
"golang.org/x/net/http2/hpack": "//third_party/go:golang.org__x__net__http2__hpack",
"golang.org/x/net/idna": "//third_party/go:golang.org__x__net__idna",
"golang.org/x/net/internal/iana": "//third_party/go:golang.org__x__net__internal__iana",
"golang.org/x/net/internal/socket": "//third_party/go:golang.org__x__net__internal__socket",
"golang.org/x/net/internal/timeseries": "//third_party/go:golang.org__x__net__internal__timeseries",
"golang.org/x/net/ipv4": "//third_party/go:golang.org__x__net__ipv4",
"golang.org/x/net/ipv6": "//third_party/go:golang.org__x__net__ipv6",
"golang.org/x/net/publicsuffix": "//third_party/go:golang.org__x__net__publicsuffix",
"golang.org/x/net/trace": "//third_party/go:golang.org__x__net__trace",
"golang.org/x/oauth2": "//third_party/go:golang.org__x__oauth2",
"golang.org/x/oauth2/google": "//third_party/go:golang.org__x__oauth2__google",
"golang.org/x/oauth2/google/internal/externalaccount": "//third_party/go:golang.org__x__oauth2__google__internal__externalaccount",
"golang.org/x/oauth2/internal": "//third_party/go:golang.org__x__oauth2__internal",
"golang.org/x/oauth2/jws": "//third_party/go:golang.org__x__oauth2__jws",
"golang.org/x/oauth2/jwt": "//third_party/go:golang.org__x__oauth2__jwt",
"golang.org/x/sync/errgroup": "//third_party/go:golang.org__x__sync__errgroup",
"golang.org/x/sync/semaphore": "//third_party/go:golang.org__x__sync__semaphore",
"golang.org/x/sys/execabs": "//third_party/go:golang.org__x__sys__execabs",
"golang.org/x/sys/internal/unsafeheader": "//third_party/go:golang.org__x__sys__internal__unsafeheader",
"golang.org/x/sys/unix": "//third_party/go:golang.org__x__sys__unix",
"golang.org/x/term": "//third_party/go:golang.org__x__term",
"golang.org/x/text/encoding": "//third_party/go:golang.org__x__text__encoding",
"golang.org/x/text/encoding/charmap": "//third_party/go:golang.org__x__text__encoding__charmap",
"golang.org/x/text/encoding/htmlindex": "//third_party/go:golang.org__x__text__encoding__htmlindex",
"golang.org/x/text/encoding/internal": "//third_party/go:golang.org__x__text__encoding__internal",
"golang.org/x/text/encoding/internal/identifier": "//third_party/go:golang.org__x__text__encoding__internal__identifier",
"golang.org/x/text/encoding/japanese": "//third_party/go:golang.org__x__text__encoding__japanese",
"golang.org/x/text/encoding/korean": "//third_party/go:golang.org__x__text__encoding__korean",
"golang.org/x/text/encoding/simplifiedchinese": "//third_party/go:golang.org__x__text__encoding__simplifiedchinese",
"golang.org/x/text/encoding/traditionalchinese": "//third_party/go:golang.org__x__text__encoding__traditionalchinese",
"golang.org/x/text/encoding/unicode": "//third_party/go:golang.org__x__text__encoding__unicode",
"golang.org/x/text/internal/language": "//third_party/go:golang.org__x__text__internal__language",
"golang.org/x/text/internal/language/compact": "//third_party/go:golang.org__x__text__internal__language__compact",
"golang.org/x/text/internal/tag": "//third_party/go:golang.org__x__text__internal__tag",
"golang.org/x/text/internal/utf8internal": "//third_party/go:golang.org__x__text__internal__utf8internal",
"golang.org/x/text/language": "//third_party/go:golang.org__x__text__language",
"golang.org/x/text/runes": "//third_party/go:golang.org__x__text__runes",
"golang.org/x/text/secure/bidirule": "//third_party/go:golang.org__x__text__secure__bidirule",
"golang.org/x/text/transform": "//third_party/go:golang.org__x__text__transform",
"golang.org/x/text/unicode/bidi": "//third_party/go:golang.org__x__text__unicode__bidi",
"golang.org/x/text/unicode/norm": "//third_party/go:golang.org__x__text__unicode__norm",
"golang.org/x/text/width": "//third_party/go:golang.org__x__text__width",
"golang.org/x/time/rate": "//third_party/go:golang.org__x__time__rate",
"gomodules.xyz/jsonpatch/v2": "//third_party/go:gomodules.xyz__jsonpatch__v2",
"google.golang.org/api/cloudresourcemanager/v1": "//third_party/go:google.golang.org__api__cloudresourcemanager__v1",
"google.golang.org/api/compute/v1": "//third_party/go:google.golang.org__api__compute__v1",
"google.golang.org/api/container/v1": "//third_party/go:google.golang.org__api__container__v1",
"google.golang.org/api/googleapi": "//third_party/go:google.golang.org__api__googleapi",
"google.golang.org/api/googleapi/transport": "//third_party/go:google.golang.org__api__googleapi__transport",
"google.golang.org/api/internal": "//third_party/go:google.golang.org__api__internal",
"google.golang.org/api/internal/gensupport": "//third_party/go:google.golang.org__api__internal__gensupport",
"google.golang.org/api/internal/impersonate": "//third_party/go:google.golang.org__api__internal__impersonate",
"google.golang.org/api/internal/third_party/uritemplates": "//third_party/go:google.golang.org__api__internal__third_party__uritemplates",
"google.golang.org/api/iterator": "//third_party/go:google.golang.org__api__iterator",
"google.golang.org/api/option": "//third_party/go:google.golang.org__api__option",
"google.golang.org/api/option/internaloption": "//third_party/go:google.golang.org__api__option__internaloption",
"google.golang.org/api/serviceusage/v1": "//third_party/go:google.golang.org__api__serviceusage__v1",
"google.golang.org/api/storage/v1": "//third_party/go:google.golang.org__api__storage__v1",
"google.golang.org/api/transport/cert": "//third_party/go:google.golang.org__api__transport__cert",
"google.golang.org/api/transport/grpc": "//third_party/go:google.golang.org__api__transport__grpc",
"google.golang.org/api/transport/http": "//third_party/go:google.golang.org__api__transport__http",
"google.golang.org/api/transport/http/internal/propagation": "//third_party/go:google.golang.org__api__transport__http__internal__propagation",
"google.golang.org/api/transport/internal/dca": "//third_party/go:google.golang.org__api__transport__internal__dca",
"google.golang.org/genproto/googleapis/api/annotations": "//third_party/go:google.golang.org__genproto__googleapis__api__annotations",
"google.golang.org/genproto/googleapis/iam/credentials/v1": "//third_party/go:google.golang.org__genproto__googleapis__iam__credentials__v1",
"google.golang.org/genproto/googleapis/iam/v1": "//third_party/go:google.golang.org__genproto__googleapis__iam__v1",
"google.golang.org/genproto/googleapis/rpc/code": "//third_party/go:google.golang.org__genproto__googleapis__rpc__code",
"google.golang.org/genproto/googleapis/rpc/status": "//third_party/go:google.golang.org__genproto__googleapis__rpc__status",
"google.golang.org/genproto/googleapis/type/expr": "//third_party/go:google.golang.org__genproto__googleapis__type__expr",
"google.golang.org/grpc": "//third_party/go:google.golang.org__grpc",
"google.golang.org/grpc/attributes": "//third_party/go:google.golang.org__grpc__attributes",
"google.golang.org/grpc/backoff": "//third_party/go:google.golang.org__grpc__backoff",
"google.golang.org/grpc/balancer": "//third_party/go:google.golang.org__grpc__balancer",
"google.golang.org/grpc/balancer/base": "//third_party/go:google.golang.org__grpc__balancer__base",
"google.golang.org/grpc/balancer/grpclb": "//third_party/go:google.golang.org__grpc__balancer__grpclb",
"google.golang.org/grpc/balancer/grpclb/grpc_lb_v1": "//third_party/go:google.golang.org__grpc__balancer__grpclb__grpc_lb_v1",
"google.golang.org/grpc/balancer/roundrobin": "//third_party/go:google.golang.org__grpc__balancer__roundrobin",
"google.golang.org/grpc/binarylog/grpc_binarylog_v1": "//third_party/go:google.golang.org__grpc__binarylog__grpc_binarylog_v1",
"google.golang.org/grpc/codes": "//third_party/go:google.golang.org__grpc__codes",
"google.golang.org/grpc/connectivity": "//third_party/go:google.golang.org__grpc__connectivity",
"google.golang.org/grpc/credentials": "//third_party/go:google.golang.org__grpc__credentials",
"google.golang.org/grpc/credentials/alts": "//third_party/go:google.golang.org__grpc__credentials__alts",
"google.golang.org/grpc/credentials/alts/internal": "//third_party/go:google.golang.org__grpc__credentials__alts__internal",
"google.golang.org/grpc/credentials/alts/internal/authinfo": "//third_party/go:google.golang.org__grpc__credentials__alts__internal__authinfo",
"google.golang.org/grpc/credentials/alts/internal/conn": "//third_party/go:google.golang.org__grpc__credentials__alts__internal__conn",
"google.golang.org/grpc/credentials/alts/internal/handshaker": "//third_party/go:google.golang.org__grpc__credentials__alts__internal__handshaker",
"google.golang.org/grpc/credentials/alts/internal/handshaker/service": "//third_party/go:google.golang.org__grpc__credentials__alts__internal__handshaker__service",
"google.golang.org/grpc/credentials/alts/internal/proto/grpc_gcp": "//third_party/go:google.golang.org__grpc__credentials__alts__internal__proto__grpc_gcp",
"google.golang.org/grpc/credentials/google": "//third_party/go:google.golang.org__grpc__credentials__google",
"google.golang.org/grpc/credentials/internal": "//third_party/go:google.golang.org__grpc__credentials__internal",
"google.golang.org/grpc/credentials/oauth": "//third_party/go:google.golang.org__grpc__credentials__oauth",
"google.golang.org/grpc/encoding": "//third_party/go:google.golang.org__grpc__encoding",
"google.golang.org/grpc/encoding/proto": "//third_party/go:google.golang.org__grpc__encoding__proto",
"google.golang.org/grpc/grpclog": "//third_party/go:google.golang.org__grpc__grpclog",
"google.golang.org/grpc/health": "//third_party/go:google.golang.org__grpc__health",
"google.golang.org/grpc/health/grpc_health_v1": "//third_party/go:google.golang.org__grpc__health__grpc_health_v1",
"google.golang.org/grpc/internal": "//third_party/go:google.golang.org__grpc__internal",
"google.golang.org/grpc/internal/backoff": "//third_party/go:google.golang.org__grpc__internal__backoff",
"google.golang.org/grpc/internal/balancerload": "//third_party/go:google.golang.org__grpc__internal__balancerload",
"google.golang.org/grpc/internal/binarylog": "//third_party/go:google.golang.org__grpc__internal__binarylog",
"google.golang.org/grpc/internal/buffer": "//third_party/go:google.golang.org__grpc__internal__buffer",
"google.golang.org/grpc/internal/channelz": "//third_party/go:google.golang.org__grpc__internal__channelz",
"google.golang.org/grpc/internal/envconfig": "//third_party/go:google.golang.org__grpc__internal__envconfig",
"google.golang.org/grpc/internal/grpcrand": "//third_party/go:google.golang.org__grpc__internal__grpcrand",
"google.golang.org/grpc/internal/grpcsync": "//third_party/go:google.golang.org__grpc__internal__grpcsync",
"google.golang.org/grpc/internal/resolver/dns": "//third_party/go:google.golang.org__grpc__internal__resolver__dns",
"google.golang.org/grpc/internal/resolver/passthrough": "//third_party/go:google.golang.org__grpc__internal__resolver__passthrough",
"google.golang.org/grpc/internal/syscall": "//third_party/go:google.golang.org__grpc__internal__syscall",
"google.golang.org/grpc/internal/transport": "//third_party/go:google.golang.org__grpc__internal__transport",
"google.golang.org/grpc/keepalive": "//third_party/go:google.golang.org__grpc__keepalive",
"google.golang.org/grpc/metadata": "//third_party/go:google.golang.org__grpc__metadata",
"google.golang.org/grpc/naming": "//third_party/go:google.golang.org__grpc__naming",
"google.golang.org/grpc/peer": "//third_party/go:google.golang.org__grpc__peer",
"google.golang.org/grpc/resolver": "//third_party/go:google.golang.org__grpc__resolver",
"google.golang.org/grpc/serviceconfig": "//third_party/go:google.golang.org__grpc__serviceconfig",
"google.golang.org/grpc/stats": "//third_party/go:google.golang.org__grpc__stats",
"google.golang.org/grpc/status": "//third_party/go:google.golang.org__grpc__status",
"google.golang.org/grpc/tap": "//third_party/go:google.golang.org__grpc__tap",
"google.golang.org/protobuf/encoding/prototext": "//third_party/go:google.golang.org__protobuf__encoding__prototext",
"google.golang.org/protobuf/encoding/protowire": "//third_party/go:google.golang.org__protobuf__encoding__protowire",
"google.golang.org/protobuf/internal/descfmt": "//third_party/go:google.golang.org__protobuf__internal__descfmt",
"google.golang.org/protobuf/internal/descopts": "//third_party/go:google.golang.org__protobuf__internal__descopts",
"google.golang.org/protobuf/internal/detrand": "//third_party/go:google.golang.org__protobuf__internal__detrand",
"google.golang.org/protobuf/internal/encoding/defval": "//third_party/go:google.golang.org__protobuf__internal__encoding__defval",
"google.golang.org/protobuf/internal/encoding/messageset": "//third_party/go:google.golang.org__protobuf__internal__encoding__messageset",
"google.golang.org/protobuf/internal/encoding/tag": "//third_party/go:google.golang.org__protobuf__internal__encoding__tag",
"google.golang.org/protobuf/internal/encoding/text": "//third_party/go:google.golang.org__protobuf__internal__encoding__text",
"google.golang.org/protobuf/internal/errors": "//third_party/go:google.golang.org__protobuf__internal__errors",
"google.golang.org/protobuf/internal/filedesc": "//third_party/go:google.golang.org__protobuf__internal__filedesc",
"google.golang.org/protobuf/internal/filetype": "//third_party/go:google.golang.org__protobuf__internal__filetype",
"google.golang.org/protobuf/internal/flags": "//third_party/go:google.golang.org__protobuf__internal__flags",
"google.golang.org/protobuf/internal/genid": "//third_party/go:google.golang.org__protobuf__internal__genid",
"google.golang.org/protobuf/internal/impl": "//third_party/go:google.golang.org__protobuf__internal__impl",
"google.golang.org/protobuf/internal/order": "//third_party/go:google.golang.org__protobuf__internal__order",
"google.golang.org/protobuf/internal/pragma": "//third_party/go:google.golang.org__protobuf__internal__pragma",
"google.golang.org/protobuf/internal/set": "//third_party/go:google.golang.org__protobuf__internal__set",
"google.golang.org/protobuf/internal/strs": "//third_party/go:google.golang.org__protobuf__internal__strs",
"google.golang.org/protobuf/internal/version": "//third_party/go:google.golang.org__protobuf__internal__version",
"google.golang.org/protobuf/proto": "//third_party/go:google.golang.org__protobuf__proto",
"google.golang.org/protobuf/reflect/protodesc": "//third_party/go:google.golang.org__protobuf__reflect__protodesc",
"google.golang.org/protobuf/reflect/protoreflect": "//third_party/go:google.golang.org__protobuf__reflect__protoreflect",
"google.golang.org/protobuf/reflect/protoregistry": "//third_party/go:google.golang.org__protobuf__reflect__protoregistry",
"google.golang.org/protobuf/runtime/protoiface": "//third_party/go:google.golang.org__protobuf__runtime__protoiface",
"google.golang.org/protobuf/runtime/protoimpl": "//third_party/go:google.golang.org__protobuf__runtime__protoimpl",
"google.golang.org/protobuf/types/descriptorpb": "//third_party/go:google.golang.org__protobuf__types__descriptorpb",
"google.golang.org/protobuf/types/known/anypb": "//third_party/go:google.golang.org__protobuf__types__known__anypb",
"google.golang.org/protobuf/types/known/durationpb": "//third_party/go:google.golang.org__protobuf__types__known__durationpb",
"google.golang.org/protobuf/types/known/timestamppb": "//third_party/go:google.golang.org__protobuf__types__known__timestamppb",
"gopkg.in/gorp.v1": "//third_party/go:gopkg.in__gorp.v1",
"gopkg.in/inf.v0": "//third_party/go:gopkg.in__inf.v0",
"gopkg.in/ini.v1": "//third_party/go:gopkg.in__ini.v1",
"gopkg.in/resty.v1": "//third_party/go:gopkg.in__resty.v1",
"gopkg.in/square/go-jose.v2": "//third_party/go:gopkg.in__square__go-jose.v2",
"gopkg.in/square/go-jose.v2/cipher": "//third_party/go:gopkg.in__square__go-jose.v2__cipher",
"gopkg.in/square/go-jose.v2/json": "//third_party/go:gopkg.in__square__go-jose.v2__json",
"gopkg.in/square/go-jose.v2/jwt": "//third_party/go:gopkg.in__square__go-jose.v2__jwt",
"gopkg.in/yaml.v2": "//third_party/go:gopkg.in__yaml.v2",
"gopkg.in/yaml.v3": "//third_party/go:gopkg.in__yaml.v3",
"helm.sh/helm/v3/internal/experimental/registry": "//third_party/go:helm.sh__helm__v3__internal__experimental__registry",
"helm.sh/helm/v3/internal/fileutil": "//third_party/go:helm.sh__helm__v3__internal__fileutil",
"helm.sh/helm/v3/internal/ignore": "//third_party/go:helm.sh__helm__v3__internal__ignore",
"helm.sh/helm/v3/internal/resolver": "//third_party/go:helm.sh__helm__v3__internal__resolver",
"helm.sh/helm/v3/internal/sympath": "//third_party/go:helm.sh__helm__v3__internal__sympath",
"helm.sh/helm/v3/internal/third_party/dep/fs": "//third_party/go:helm.sh__helm__v3__internal__third_party__dep__fs",
"helm.sh/helm/v3/internal/third_party/k8s.io/kubernetes/deployment/util": "//third_party/go:helm.sh__helm__v3__internal__third_party__k8s.io__kubernetes__deployment__util",
"helm.sh/helm/v3/internal/tlsutil": "//third_party/go:helm.sh__helm__v3__internal__tlsutil",
"helm.sh/helm/v3/internal/urlutil": "//third_party/go:helm.sh__helm__v3__internal__urlutil",
"helm.sh/helm/v3/internal/version": "//third_party/go:helm.sh__helm__v3__internal__version",
"helm.sh/helm/v3/pkg/action": "//third_party/go:helm.sh__helm__v3__pkg__action",
"helm.sh/helm/v3/pkg/chart": "//third_party/go:helm.sh__helm__v3__pkg__chart",
"helm.sh/helm/v3/pkg/chart/loader": "//third_party/go:helm.sh__helm__v3__pkg__chart__loader",
"helm.sh/helm/v3/pkg/chartutil": "//third_party/go:helm.sh__helm__v3__pkg__chartutil",
"helm.sh/helm/v3/pkg/cli": "//third_party/go:helm.sh__helm__v3__pkg__cli",
"helm.sh/helm/v3/pkg/cli/values": "//third_party/go:helm.sh__helm__v3__pkg__cli__values",
"helm.sh/helm/v3/pkg/downloader": "//third_party/go:helm.sh__helm__v3__pkg__downloader",
"helm.sh/helm/v3/pkg/engine": "//third_party/go:helm.sh__helm__v3__pkg__engine",
"helm.sh/helm/v3/pkg/gates": "//third_party/go:helm.sh__helm__v3__pkg__gates",
"helm.sh/helm/v3/pkg/getter": "//third_party/go:helm.sh__helm__v3__pkg__getter",
"helm.sh/helm/v3/pkg/helmpath": "//third_party/go:helm.sh__helm__v3__pkg__helmpath",
"helm.sh/helm/v3/pkg/helmpath/xdg": "//third_party/go:helm.sh__helm__v3__pkg__helmpath__xdg",
"helm.sh/helm/v3/pkg/kube": "//third_party/go:helm.sh__helm__v3__pkg__kube",
"helm.sh/helm/v3/pkg/kube/fake": "//third_party/go:helm.sh__helm__v3__pkg__kube__fake",
"helm.sh/helm/v3/pkg/lint": "//third_party/go:helm.sh__helm__v3__pkg__lint",
"helm.sh/helm/v3/pkg/lint/rules": "//third_party/go:helm.sh__helm__v3__pkg__lint__rules",
"helm.sh/helm/v3/pkg/lint/support": "//third_party/go:helm.sh__helm__v3__pkg__lint__support",
"helm.sh/helm/v3/pkg/plugin": "//third_party/go:helm.sh__helm__v3__pkg__plugin",
"helm.sh/helm/v3/pkg/postrender": "//third_party/go:helm.sh__helm__v3__pkg__postrender",
"helm.sh/helm/v3/pkg/provenance": "//third_party/go:helm.sh__helm__v3__pkg__provenance",
"helm.sh/helm/v3/pkg/release": "//third_party/go:helm.sh__helm__v3__pkg__release",
"helm.sh/helm/v3/pkg/releaseutil": "//third_party/go:helm.sh__helm__v3__pkg__releaseutil",
"helm.sh/helm/v3/pkg/repo": "//third_party/go:helm.sh__helm__v3__pkg__repo",
"helm.sh/helm/v3/pkg/storage": "//third_party/go:helm.sh__helm__v3__pkg__storage",
"helm.sh/helm/v3/pkg/storage/driver": "//third_party/go:helm.sh__helm__v3__pkg__storage__driver",
"helm.sh/helm/v3/pkg/strvals": "//third_party/go:helm.sh__helm__v3__pkg__strvals",
"helm.sh/helm/v3/pkg/time": "//third_party/go:helm.sh__helm__v3__pkg__time",
"k8s.io/api/admission/v1": "//third_party/go:k8s.io__api__admission__v1",
"k8s.io/api/admission/v1beta1": "//third_party/go:k8s.io__api__admission__v1beta1",
"k8s.io/api/admissionregistration/v1": "//third_party/go:k8s.io__api__admissionregistration__v1",
"k8s.io/api/admissionregistration/v1beta1": "//third_party/go:k8s.io__api__admissionregistration__v1beta1",
"k8s.io/api/apiserverinternal/v1alpha1": "//third_party/go:k8s.io__api__apiserverinternal__v1alpha1",
"k8s.io/api/apps/v1": "//third_party/go:k8s.io__api__apps__v1",
"k8s.io/api/apps/v1beta1": "//third_party/go:k8s.io__api__apps__v1beta1",
"k8s.io/api/apps/v1beta2": "//third_party/go:k8s.io__api__apps__v1beta2",
"k8s.io/api/authentication/v1": "//third_party/go:k8s.io__api__authentication__v1",
"k8s.io/api/authentication/v1beta1": "//third_party/go:k8s.io__api__authentication__v1beta1",
"k8s.io/api/authorization/v1": "//third_party/go:k8s.io__api__authorization__v1",
"k8s.io/api/authorization/v1beta1": "//third_party/go:k8s.io__api__authorization__v1beta1",
"k8s.io/api/autoscaling/v1": "//third_party/go:k8s.io__api__autoscaling__v1",
"k8s.io/api/autoscaling/v2beta1": "//third_party/go:k8s.io__api__autoscaling__v2beta1",
"k8s.io/api/autoscaling/v2beta2": "//third_party/go:k8s.io__api__autoscaling__v2beta2",
"k8s.io/api/batch/v1": "//third_party/go:k8s.io__api__batch__v1",
"k8s.io/api/batch/v1beta1": "//third_party/go:k8s.io__api__batch__v1beta1",
"k8s.io/api/certificates/v1": "//third_party/go:k8s.io__api__certificates__v1",
"k8s.io/api/certificates/v1beta1": "//third_party/go:k8s.io__api__certificates__v1beta1",
"k8s.io/api/coordination/v1": "//third_party/go:k8s.io__api__coordination__v1",
"k8s.io/api/coordination/v1beta1": "//third_party/go:k8s.io__api__coordination__v1beta1",
"k8s.io/api/core/v1": "//third_party/go:k8s.io__api__core__v1",
"k8s.io/api/discovery/v1": "//third_party/go:k8s.io__api__discovery__v1",
"k8s.io/api/discovery/v1beta1": "//third_party/go:k8s.io__api__discovery__v1beta1",
"k8s.io/api/events/v1": "//third_party/go:k8s.io__api__events__v1",
"k8s.io/api/events/v1beta1": "//third_party/go:k8s.io__api__events__v1beta1",
"k8s.io/api/extensions/v1beta1": "//third_party/go:k8s.io__api__extensions__v1beta1",
"k8s.io/api/flowcontrol/v1alpha1": "//third_party/go:k8s.io__api__flowcontrol__v1alpha1",
"k8s.io/api/flowcontrol/v1beta1": "//third_party/go:k8s.io__api__flowcontrol__v1beta1",
"k8s.io/api/imagepolicy/v1alpha1": "//third_party/go:k8s.io__api__imagepolicy__v1alpha1",
"k8s.io/api/networking/v1": "//third_party/go:k8s.io__api__networking__v1",
"k8s.io/api/networking/v1beta1": "//third_party/go:k8s.io__api__networking__v1beta1",
"k8s.io/api/node/v1": "//third_party/go:k8s.io__api__node__v1",
"k8s.io/api/node/v1alpha1": "//third_party/go:k8s.io__api__node__v1alpha1",
"k8s.io/api/node/v1beta1": "//third_party/go:k8s.io__api__node__v1beta1",
"k8s.io/api/policy/v1": "//third_party/go:k8s.io__api__policy__v1",
"k8s.io/api/policy/v1beta1": "//third_party/go:k8s.io__api__policy__v1beta1",
"k8s.io/api/rbac/v1": "//third_party/go:k8s.io__api__rbac__v1",
"k8s.io/api/rbac/v1alpha1": "//third_party/go:k8s.io__api__rbac__v1alpha1",
"k8s.io/api/rbac/v1beta1": "//third_party/go:k8s.io__api__rbac__v1beta1",
"k8s.io/api/scheduling/v1": "//third_party/go:k8s.io__api__scheduling__v1",
"k8s.io/api/scheduling/v1alpha1": "//third_party/go:k8s.io__api__scheduling__v1alpha1",
"k8s.io/api/scheduling/v1beta1": "//third_party/go:k8s.io__api__scheduling__v1beta1",
"k8s.io/api/storage/v1": "//third_party/go:k8s.io__api__storage__v1",
"k8s.io/api/storage/v1alpha1": "//third_party/go:k8s.io__api__storage__v1alpha1",
"k8s.io/api/storage/v1beta1": "//third_party/go:k8s.io__api__storage__v1beta1",
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions": "//third_party/go:k8s.io__apiextensions-apiserver__pkg__apis__apiextensions",
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1": "//third_party/go:k8s.io__apiextensions-apiserver__pkg__apis__apiextensions__v1",
"k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1": "//third_party/go:k8s.io__apiextensions-apiserver__pkg__apis__apiextensions__v1beta1",
"k8s.io/apimachinery/pkg/api/equality": "//third_party/go:k8s.io__apimachinery__pkg__api__equality",
"k8s.io/apimachinery/pkg/api/errors": "//third_party/go:k8s.io__apimachinery__pkg__api__errors",
"k8s.io/apimachinery/pkg/api/meta": "//third_party/go:k8s.io__apimachinery__pkg__api__meta",
"k8s.io/apimachinery/pkg/api/resource": "//third_party/go:k8s.io__apimachinery__pkg__api__resource",
"k8s.io/apimachinery/pkg/api/validation": "//third_party/go:k8s.io__apimachinery__pkg__api__validation",
"k8s.io/apimachinery/pkg/api/validation/path": "//third_party/go:k8s.io__apimachinery__pkg__api__validation__path",
"k8s.io/apimachinery/pkg/apis/meta/internalversion": "//third_party/go:k8s.io__apimachinery__pkg__apis__meta__internalversion",
"k8s.io/apimachinery/pkg/apis/meta/internalversion/scheme": "//third_party/go:k8s.io__apimachinery__pkg__apis__meta__internalversion__scheme",
"k8s.io/apimachinery/pkg/apis/meta/v1": "//third_party/go:k8s.io__apimachinery__pkg__apis__meta__v1",
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured": "//third_party/go:k8s.io__apimachinery__pkg__apis__meta__v1__unstructured",
"k8s.io/apimachinery/pkg/apis/meta/v1/unstructured/unstructuredscheme": "//third_party/go:k8s.io__apimachinery__pkg__apis__meta__v1__unstructured__unstructuredscheme",
"k8s.io/apimachinery/pkg/apis/meta/v1/validation": "//third_party/go:k8s.io__apimachinery__pkg__apis__meta__v1__validation",
"k8s.io/apimachinery/pkg/apis/meta/v1beta1": "//third_party/go:k8s.io__apimachinery__pkg__apis__meta__v1beta1",
"k8s.io/apimachinery/pkg/conversion": "//third_party/go:k8s.io__apimachinery__pkg__conversion",
"k8s.io/apimachinery/pkg/conversion/queryparams": "//third_party/go:k8s.io__apimachinery__pkg__conversion__queryparams",
"k8s.io/apimachinery/pkg/fields": "//third_party/go:k8s.io__apimachinery__pkg__fields",
"k8s.io/apimachinery/pkg/labels": "//third_party/go:k8s.io__apimachinery__pkg__labels",
"k8s.io/apimachinery/pkg/runtime": "//third_party/go:k8s.io__apimachinery__pkg__runtime",
"k8s.io/apimachinery/pkg/runtime/schema": "//third_party/go:k8s.io__apimachinery__pkg__runtime__schema",
"k8s.io/apimachinery/pkg/runtime/serializer": "//third_party/go:k8s.io__apimachinery__pkg__runtime__serializer",
"k8s.io/apimachinery/pkg/runtime/serializer/json": "//third_party/go:k8s.io__apimachinery__pkg__runtime__serializer__json",
"k8s.io/apimachinery/pkg/runtime/serializer/protobuf": "//third_party/go:k8s.io__apimachinery__pkg__runtime__serializer__protobuf",
"k8s.io/apimachinery/pkg/runtime/serializer/recognizer": "//third_party/go:k8s.io__apimachinery__pkg__runtime__serializer__recognizer",
"k8s.io/apimachinery/pkg/runtime/serializer/streaming": "//third_party/go:k8s.io__apimachinery__pkg__runtime__serializer__streaming",
"k8s.io/apimachinery/pkg/runtime/serializer/versioning": "//third_party/go:k8s.io__apimachinery__pkg__runtime__serializer__versioning",
"k8s.io/apimachinery/pkg/selection": "//third_party/go:k8s.io__apimachinery__pkg__selection",
"k8s.io/apimachinery/pkg/types": "//third_party/go:k8s.io__apimachinery__pkg__types",
"k8s.io/apimachinery/pkg/util/cache": "//third_party/go:k8s.io__apimachinery__pkg__util__cache",
"k8s.io/apimachinery/pkg/util/clock": "//third_party/go:k8s.io__apimachinery__pkg__util__clock",
"k8s.io/apimachinery/pkg/util/diff": "//third_party/go:k8s.io__apimachinery__pkg__util__diff",
"k8s.io/apimachinery/pkg/util/duration": "//third_party/go:k8s.io__apimachinery__pkg__util__duration",
"k8s.io/apimachinery/pkg/util/errors": "//third_party/go:k8s.io__apimachinery__pkg__util__errors",
"k8s.io/apimachinery/pkg/util/framer": "//third_party/go:k8s.io__apimachinery__pkg__util__framer",
"k8s.io/apimachinery/pkg/util/httpstream": "//third_party/go:k8s.io__apimachinery__pkg__util__httpstream",
"k8s.io/apimachinery/pkg/util/httpstream/spdy": "//third_party/go:k8s.io__apimachinery__pkg__util__httpstream__spdy",
"k8s.io/apimachinery/pkg/util/intstr": "//third_party/go:k8s.io__apimachinery__pkg__util__intstr",
"k8s.io/apimachinery/pkg/util/json": "//third_party/go:k8s.io__apimachinery__pkg__util__json",
"k8s.io/apimachinery/pkg/util/jsonmergepatch": "//third_party/go:k8s.io__apimachinery__pkg__util__jsonmergepatch",
"k8s.io/apimachinery/pkg/util/managedfields": "//third_party/go:k8s.io__apimachinery__pkg__util__managedfields",
"k8s.io/apimachinery/pkg/util/mergepatch": "//third_party/go:k8s.io__apimachinery__pkg__util__mergepatch",
"k8s.io/apimachinery/pkg/util/naming": "//third_party/go:k8s.io__apimachinery__pkg__util__naming",
"k8s.io/apimachinery/pkg/util/net": "//third_party/go:k8s.io__apimachinery__pkg__util__net",
"k8s.io/apimachinery/pkg/util/proxy": "//third_party/go:k8s.io__apimachinery__pkg__util__proxy",
"k8s.io/apimachinery/pkg/util/remotecommand": "//third_party/go:k8s.io__apimachinery__pkg__util__remotecommand",
"k8s.io/apimachinery/pkg/util/runtime": "//third_party/go:k8s.io__apimachinery__pkg__util__runtime",
"k8s.io/apimachinery/pkg/util/sets": "//third_party/go:k8s.io__apimachinery__pkg__util__sets",
"k8s.io/apimachinery/pkg/util/strategicpatch": "//third_party/go:k8s.io__apimachinery__pkg__util__strategicpatch",
"k8s.io/apimachinery/pkg/util/uuid": "//third_party/go:k8s.io__apimachinery__pkg__util__uuid",
"k8s.io/apimachinery/pkg/util/validation": "//third_party/go:k8s.io__apimachinery__pkg__util__validation",
"k8s.io/apimachinery/pkg/util/validation/field": "//third_party/go:k8s.io__apimachinery__pkg__util__validation__field",
"k8s.io/apimachinery/pkg/util/version": "//third_party/go:k8s.io__apimachinery__pkg__util__version",
"k8s.io/apimachinery/pkg/util/wait": "//third_party/go:k8s.io__apimachinery__pkg__util__wait",
"k8s.io/apimachinery/pkg/util/yaml": "//third_party/go:k8s.io__apimachinery__pkg__util__yaml",
"k8s.io/apimachinery/pkg/version": "//third_party/go:k8s.io__apimachinery__pkg__version",
"k8s.io/apimachinery/pkg/watch": "//third_party/go:k8s.io__apimachinery__pkg__watch",
"k8s.io/apimachinery/third_party/forked/golang/json": "//third_party/go:k8s.io__apimachinery__third_party__forked__golang__json",
"k8s.io/apimachinery/third_party/forked/golang/netutil": "//third_party/go:k8s.io__apimachinery__third_party__forked__golang__netutil",
"k8s.io/apimachinery/third_party/forked/golang/reflect": "//third_party/go:k8s.io__apimachinery__third_party__forked__golang__reflect",
"k8s.io/apiserver/pkg/endpoints/deprecation": "//third_party/go:k8s.io__apiserver__pkg__endpoints__deprecation",
"k8s.io/apiserver/pkg/features": "//third_party/go:k8s.io__apiserver__pkg__features",
"k8s.io/apiserver/pkg/util/feature": "//third_party/go:k8s.io__apiserver__pkg__util__feature",
"k8s.io/cli-runtime/pkg/genericclioptions": "//third_party/go:k8s.io__cli-runtime__pkg__genericclioptions",
"k8s.io/cli-runtime/pkg/printers": "//third_party/go:k8s.io__cli-runtime__pkg__printers",
"k8s.io/cli-runtime/pkg/resource": "//third_party/go:k8s.io__cli-runtime__pkg__resource",
"k8s.io/client-go/applyconfigurations/admissionregistration/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__admissionregistration__v1",
"k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__admissionregistration__v1beta1",
"k8s.io/client-go/applyconfigurations/apiserverinternal/v1alpha1": "//third_party/go:k8s.io__client-go__applyconfigurations__apiserverinternal__v1alpha1",
"k8s.io/client-go/applyconfigurations/apps/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__apps__v1",
"k8s.io/client-go/applyconfigurations/apps/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__apps__v1beta1",
"k8s.io/client-go/applyconfigurations/apps/v1beta2": "//third_party/go:k8s.io__client-go__applyconfigurations__apps__v1beta2",
"k8s.io/client-go/applyconfigurations/autoscaling/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__autoscaling__v1",
"k8s.io/client-go/applyconfigurations/autoscaling/v2beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__autoscaling__v2beta1",
"k8s.io/client-go/applyconfigurations/autoscaling/v2beta2": "//third_party/go:k8s.io__client-go__applyconfigurations__autoscaling__v2beta2",
"k8s.io/client-go/applyconfigurations/batch/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__batch__v1",
"k8s.io/client-go/applyconfigurations/batch/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__batch__v1beta1",
"k8s.io/client-go/applyconfigurations/certificates/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__certificates__v1",
"k8s.io/client-go/applyconfigurations/certificates/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__certificates__v1beta1",
"k8s.io/client-go/applyconfigurations/coordination/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__coordination__v1",
"k8s.io/client-go/applyconfigurations/coordination/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__coordination__v1beta1",
"k8s.io/client-go/applyconfigurations/core/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__core__v1",
"k8s.io/client-go/applyconfigurations/discovery/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__discovery__v1",
"k8s.io/client-go/applyconfigurations/discovery/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__discovery__v1beta1",
"k8s.io/client-go/applyconfigurations/events/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__events__v1",
"k8s.io/client-go/applyconfigurations/events/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__events__v1beta1",
"k8s.io/client-go/applyconfigurations/extensions/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__extensions__v1beta1",
"k8s.io/client-go/applyconfigurations/flowcontrol/v1alpha1": "//third_party/go:k8s.io__client-go__applyconfigurations__flowcontrol__v1alpha1",
"k8s.io/client-go/applyconfigurations/flowcontrol/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__flowcontrol__v1beta1",
"k8s.io/client-go/applyconfigurations/internal": "//third_party/go:k8s.io__client-go__applyconfigurations__internal",
"k8s.io/client-go/applyconfigurations/meta/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__meta__v1",
"k8s.io/client-go/applyconfigurations/networking/v1": "//third_party/go:k8s.io__client-go__applyconfigurations__networking__v1",
"k8s.io/client-go/applyconfigurations/networking/v1beta1": "//third_party/go:k8s.io__client-go__applyconfigurations__networking__v1beta1",