hyb
2025-11-04 668edf874b4f77214a8ff4513e60e3c1a973f532
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
Ë
ñúh#æã    óÊ—UdZddlmZddlZejdkred«‚ddlZddlZddlZddl    Z    ddl
Z
ddl m Z m Z mZmZmZmZmZmZmZmZmZmZmZmZmZmZddlZddlZddlZddlZddl Z ddl!Z!ddl"Z"ddl#Z#ddl$Z$ddl%Z%ddl&Z'ddl(Z(ddl)Z)ddl*Z*ddl+Z+ddl,Z,ddl-Z-ddl.Z.ddl/Z.ddl0Z.ddl!m1Z1ddl2Z2ddlm3Z3dd    lm4Z5dd
l6m7Z7m8Z8    dd lm9Z9m:Z:m;Z;d Z<ddl>m?Z?m@Z@mAZAddlBmCZDddlBmEZFddlBmGZHddlBmIZJddlKmLZMerddlNmOZOmPZPmQZQddlRmSZSed«ZTedd¬«ZUeeVeeeVedffZWedgdfZXedgedfZYeeVdfZZedeZfZ[edZ\e Z]e Z^ee_e
jÀfZaee gdfZbeeTeVecgedfZdeeTeVeVe
jÀgeeVdffZeedede ebeee «ZfGd „d!e«ZgGd"„d#e«Zhe    jÒd$e    jÔ«ZkGd%„d&el«ZmeJjÜZoiZpd'eqd(<dËd)„ZrdÌd*„ZsdÍd+„Ztd,„Zud-„Zvd.„Zwd/„Zxd0„xZyZzd1„Z{gd2¢Z|Gd3„d4e}«Z~Gd5„d6e~«ZGd7„d8e«Z€Gd9„d:e~«ZGd;„d<e~«Z‚iZƒd=eqd><d?jejŽZ…d@Z†dAZ‡dBZˆdZ‰dCZŠ                dÎdD„Z‹edÏdE„«ZŒedÐdF„«ZŒdÑdG„ZŒe jd¬H«dI„«ZŽdJ„ZdK„Ze    jÒdL«Z‘e    jÒdM«Z’eZ“dÒdN„Z”edÓdO„«Z•edÔdP„«Z•dÕdQ„Z•dÖdR„Z–e    d×                    dØdS„«Z—edÙdT„«Z—d×dÚdU„Z—dÛdV„Z˜GdW„dXe«Z™GdY„de™e«ZšGdZ„d[«Z›Gd\„d]edeeVd^ff«ZœGd_„d`«ZeZžGda„dbe«ZŸGdc„dd«Z dÜde„Z¡dÝdf„Z¢dÞdg„Z£dh„Z¤di„Z¥dßdj„Z¦dÝdk„Z§dàdl„Z¨d×dádm„Z©Gdn„do«Zªe‹e_eª«dp„Z«Gdq„dreª«Z¬Gds„dte¬«Z­e­j]«Gdu„dveª«Z¯e¯«Z°Gdw„dxeeVdyf«Z±Gdz„d{e±«Z²Gd|„d}e¬«Z³e‹ejhe³«Gd~„de¯«ZµGd€„de­«Z¶Gd‚„dƒe³«Z·erd„d…i«Z¸d†eqd…<dâd‡„Z¹dãdädˆ„Zº    dã                            dåd‰„Z»e¹ejhe»«    dã                    dædŠ„Z¼e¹e_e¼«dãdçd‹„Z½dŒ„Z¾Gd„dŽ«Z¿dèd„ZÀdéd„ZÁd‘„ZÂd’„ZÃeÄe!d“«re¹e!jŠe½«e¹e.jŒjŽe½«erd„d”i«ZÈd•eqd”<erd„d–i«ZÉd—eqd–<                dêd˜„ZÊd™„ZËdëdš„ZÌdìd›„ZÍd×dídœ„ZΠ                               dîd„ZÏeÄe!d“«reÊe!jŠeÏ«eÊejheÏ«eÊe.jŒjŽeÏ«                                dïdž„ZÐeÊe_eЫedðdŸ„«ZÑedñd „«ZÑdòd¡„ZÑdòd¢„ZÒeredðd£„«ZÓedñd¤„«ZÓdód¥„ZÓne jd¬H«d¦„«ZÓd§„ZÔd¨„ZÕd©„ZÖdª„Z×e    jÒd««j°ZÙe    jÒd¬e    j´e    j¶z«j°ZÜGd­„d®«ZÝd¯„ZÞGd°„d«ZßGd±„d²eß«ZàGd³„d´eß«ZáeßeàeádµœZâd¶„Zãdôd·„ZäGd¸„d¹eFjÊ«ZæGdº„deFjΫZçd»„Zèdõd¼„Zédèd½„Zêd¾„Zëdöd¿„ZìdÀ„ZíejÜdÁemd ¬Â«GdÄdÄeï«ZðejdÅk\rdÆndZñeñfd÷dDŽZòdȄZóeóeô«fdɄ«Zõeódʄ«Zöer¸e «Z÷e÷jðZøe÷jòZùe÷jôZúe÷jöZûe÷jøZüe÷júZýe÷jüZþe÷jþZÿe›«ZejZejZejZej
ZeZyy#e=$rd Z<YŒ    wxYw)øaá
Package resource API
--------------------
 
A resource is a logical file contained within a package, or a logical
subdirectory thereof.  The package resource API expects resource names
to have their path parts separated with ``/``, *not* whatever the local
path separator is.  Do not use os.path operations to manipulate resource
names being passed into the API.
 
The package resource API is designed to work with normal filesystem packages,
.egg files, and unpacked .egg files.  It can also work in a limited way with
.zip files and with custom PEP 302 loaders that support the ``get_data()``
method.
 
This module is deprecated. Users are directed to :mod:`importlib.resources`,
:mod:`importlib.metadata` and :pypi:`packaging` instead.
é)Ú annotationsN)éézPython 3.8 or later is required)ÚAnyÚLiteralÚDictÚIteratorÚMappingÚMutableSequenceÚ
NamedTupleÚNoReturnÚTupleÚUnionÚ TYPE_CHECKINGÚProtocolÚCallableÚIterableÚTypeVarÚoverload)Ú get_importer)Úutime)Úopen)ÚisdirÚsplit)ÚmkdirÚrenameÚunlinkTF)Ú yield_linesÚ drop_commentÚjoin_continuation)Úmarkers)Ú requirements)Úutils©Úversion)Úuser_cache_dir)Ú    BytesPathÚStrPathÚStrOrBytesPath)ÚSelfÚ_TÚ_DistributionTÚ Distribution)ÚboundÚ
_NestedStrÚ Requirement)r-N)ÚIResourceProviderNr1Ú    _AdapterTcó—eZdZdd„Zy)Ú_LoaderProtocolcó—y©N©)ÚselfÚfullnames  úUH:\Change_password\venv_build\Lib\site-packages\pip/_vendor/pkg_resources/__init__.pyÚ load_modulez_LoaderProtocol.load_moduleˆóóN)r9ÚstrÚreturnútypes.ModuleType)Ú__name__Ú
__module__Ú __qualname__r;r7r=r:r4r4‡s„ÜDr=r4có—eZdZUded<y)Ú_ZipLoaderModuleúzipimport.zipimporterÚ
__loader__N©rArBrCÚ__annotations__r7r=r:rErE‹s…Ø%Ô%r=rEz,^v?(?P<safe>(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)có—eZdZdZy)Ú PEP440Warningza
    Used when there is an issue with a version or specifier not complying with
    PEP 440.
    N©rArBrCÚ__doc__r7r=r:rKrK’s„òr=rKzdict[str, str]Ú _state_varscó—|t|<|Sr6)rN)ÚvartypeÚvarnameÚ initial_values   r:Ú_declare_staterSŸs€Ø"„KÑØ Ðr=có~—i}t«}tj«D]\}}|d|z||«||<Œ|S)NÚ_sget_)ÚglobalsrNÚitems©ÚstateÚgÚkÚvs    r:Ú __getstate__r]¤sK€Ø €EÜ‹    €AÜ×!Ñ!Ó#ò)‰ˆˆ1Ø"1X ‘\‘? 1 Q¡4Ó(ˆˆaŠð)à €Lr=có~—t«}|j«D]\}}|dt|z||||«Œ!|S)NÚ_sset_)rVrWrNrXs    r:Ú __setstate__r`¬sG€Ü‹    €AØ— ‘ “ ò1‰ˆˆ1Ø$ˆˆ(”[ ‘^Ñ
#Ñ$ Q¨¨!©¨aÕ0ð1à €Lr=có"—|j«Sr6)Úcopy©Úvals r:Ú
_sget_dictre³s€Ø 8‰8‹:Ðr=cóF—|j«|j|«yr6)ÚclearÚupdate©ÚkeyÚobrYs   r:Ú
_sset_dictrl·s€Ø‡HH„J؇IIˆeÕr=có"—|j«Sr6)r]rcs r:Ú _sget_objectrn¼s€Ø × Ñ Ó Ðr=có&—|j|«yr6)r`ris   r:Ú _sset_objectrpÀs€Ø‡OOEÕr=có—yr6r7©Úargss r:ú<lambda>rtÄr<r=cóô—t«}tj|«}|Ftjdk(r3ddj t «dd«›d|jd«›}|S|S#t$rY|SwxYw)aQReturn this platform's maximum compatible version.
 
    distutils.util.get_platform() normally reports the minimum version
    of macOS that would be required to *use* extensions produced by
    distutils.  But what we want when checking compatibility is to know the
    version of macOS that we are *running*.  To allow usage of packages that
    explicitly require a newer version of macOS, we must also know the
    current version of the OS.
 
    If this condition occurs for any other platform with a version in its
    platform strings, this function should be extended accordingly.
    NÚdarwinúmacosx-ú.éú-r)    Úget_build_platformÚmacosVersionStringÚmatchÚsysÚplatformÚjoinÚ _macos_versÚgroupÚ
ValueError)ÚplatÚms  r:Úget_supported_platformr†Çsy€ô Ó €DÜ× Ñ  Ó&€AØ€}œŸ™¨Ò1ð    Ø%(§X¡X¬k«m¸B¸QÐ.?Õ%@À!Ç'Á'È!Ä*ÐMˆDð €Kˆ4€Køôò    à Ø €Kð    úsµ1A*Á*    A7Á6A7)GÚrequireÚ
run_scriptÚ get_providerÚget_distributionÚload_entry_pointÚ get_entry_mapÚget_entry_infoÚiter_entry_pointsÚresource_stringÚresource_streamÚresource_filenameÚresource_listdirÚresource_existsÚresource_isdirÚdeclare_namespaceÚ working_setÚadd_activation_listenerÚfind_distributionsÚset_extraction_pathÚcleanup_resourcesÚget_default_cacheÚ EnvironmentÚ
WorkingSetÚResourceManagerr-r0Ú
EntryPointÚResolutionErrorÚVersionConflictÚDistributionNotFoundÚ UnknownExtraÚExtractionErrorrKÚparse_requirementsÚ parse_versionÚ    safe_nameÚ safe_versionÚ get_platformÚcompatible_platformsrÚsplit_sectionsÚ
safe_extraÚ to_filenameÚinvalid_markerÚevaluate_markerÚensure_directoryÚnormalize_pathÚEGG_DISTÚ BINARY_DISTÚ SOURCE_DISTÚ CHECKOUT_DISTÚ DEVELOP_DISTÚIMetadataProviderr1Ú FileMetadataÚ PathMetadataÚ EggMetadataÚ EmptyProviderÚempty_providerÚ NullProviderÚ EggProviderÚDefaultProviderÚ ZipProviderÚregister_finderÚregister_namespace_handlerÚregister_loader_typeÚfixup_namespace_packagesrÚPkgResourcesDeprecationWarningÚrun_mainÚAvailableDistributionscó—eZdZdZd„Zy)r z.Abstract base for dependency resolution errorscóZ—|jjt|j«zSr6)Ú    __class__rAÚreprrs©r8s r:Ú__repr__zResolutionError.__repr__8s€Ø~‰~×&Ñ&¬¨d¯i©i«Ñ8Ð8r=N)rArBrCrMrÍr7r=r:r r 5s
„Ù8ó9r=r cóF—eZdZdZdZedd„«Zed    d„«Zd„Zd
d„Z    y) r¡zª
    An already-installed version conflicts with the requested version.
 
    Should be initialized with the installed Distribution and the requested
    Requirement.
    z3{self.dist} is installed but {self.req} is requiredcó —|jdS©NrrrrÌs r:ÚdistzVersionConflict.distFó€ày‰y˜‰|Ðr=có —|jdS©NérrrÌs r:ÚreqzVersionConflict.reqJrÒr=cóJ—|jjdit«¤ŽS©Nr7©Ú    _templateÚformatÚlocalsrÌs r:ÚreportzVersionConflict.reportNó€Ø$ˆt~‰~×$Ñ$Ñ0¤v£xÑ0Ð0r=có:—|s|S|j|fz}t|ŽS)zt
        If required_by is non-empty, return a version of self that is a
        ContextualVersionConflict.
        )rsÚContextualVersionConflict)r8Ú required_byrss   r:Ú with_contextzVersionConflict.with_contextQs'€ñ
؈K؏y‰y˜K˜>Ñ)ˆÜ(¨$Ð/Ð/r=N©r?r-©r?r0)rázset[Distribution | str])
rArBrCrMrÚÚpropertyrÑrÖrÝrâr7r=r:r¡r¡<s?„ñðF€Ià òóððòóðò1ô0r=r¡có@—eZdZdZej
dzZedd„«Zy)ràz…
    A VersionConflict that accepts a third parameter, the set of the
    requirements that required the installed Distribution.
    z by {self.required_by}có —|jdS)NryrrrÌs r:ráz%ContextualVersionConflict.required_bydrÒr=N)r?zset[str])rArBrCrMr¡rÚrårár7r=r:ràrà\s,„ñð
 ×)Ñ)Ð,DÑD€Ià òóñr=ràcóT—eZdZdZdZed    d„«Zed
d„«Zed„«Zd„Z    d„Z
y) r¢z&A requested distribution was not foundzSThe '{self.req}' distribution was not found and is required by {self.requirers_str}có —|jdSrÐrrrÌs r:rÖzDistributionNotFound.reqqrÒr=có —|jdSrÔrrrÌs r:Ú    requirerszDistributionNotFound.requirersurÒr=cóR—|jsydj|j«S)Nzthe applicationz, )rër€rÌs r:Ú requirers_strz"DistributionNotFound.requirers_strys€à~Š~Ø$؏y‰y˜Ÿ™Ó(Ð(r=cóJ—|jjdit«¤ŽSrØrÙrÌs r:rÝzDistributionNotFound.reportrÞr=có"—|j«Sr6)rÝrÌs r:Ú__str__zDistributionNotFound.__str__‚s€Ø{‰{‹}Ðr=Nrä)r?zset[str] | None) rArBrCrMrÚrårÖrërírÝrðr7r=r:r¢r¢isU„Ù0ð    2ðð
òóððòóððñ)óð)ò
1ór=r¢có—eZdZdZy)r£z>Distribution doesn't have an "extra feature" of the given nameNrLr7r=r:r£r£†s„ÚHr=r£z-dict[type[_ModuleLike], _ProviderFactoryType]Ú_provider_factoriesz{}.{}rryrÕéÿÿÿÿcó—|t|<y)aRegister `provider_factory` to make providers for `loader_type`
 
    `loader_type` is the type or class of a PEP 302 ``module.__loader__``,
    and `provider_factory` is a function that, passed a *module* object,
    returns an ``IResourceProvider`` for that module.
    N)rò)Ú loader_typeÚprovider_factorys  r:rÃrÔs€ð(8Ô˜ Ò$r=có—yr6r7©Ú moduleOrReqs r:r‰r‰ ó€Ø9<r=có—yr6r7røs r:r‰r‰¢s€Ø<?r=cóF—t|t«r.tj|«xst    t |««dS    t j|}t|dd«}tt|«|«S#t$r!t|«t j|}YŒLwxYw)z?Return an IResourceProvider for the named module or requirementrrGN) Ú
isinstancer0r–Úfindr‡r>r~ÚmodulesÚKeyErrorÚ
__import__ÚgetattrÚ _find_adapterrò)rùÚmoduleÚloaders   r:r‰r‰¤s€ä+œ{Ô+Ü×Ñ  Ó,ÒL´¼¸KÓ8HÓ0IÈ!Ñ0LÐLð*Ü—‘˜[Ñ)ˆôV˜\¨4Ó 0€FØ 5Œ=Ô,¨fÓ 5°fÓ =Ð=øô     ò*ܐ;ÔÜ—‘˜[Ñ)Šð*úsÁA6Á6'B ÂB )Úmaxsizecó—tj«d}|dk(rTd}tjj    |«r3t |d«5}t j|«}ddd«dvr|d}|jd«S#1swYŒ#xYw)NrÚz0/System/Library/CoreServices/SystemVersion.plistÚrbÚProductVersionrx)    rÚmac_verÚosÚpathÚexistsrÚplistlibÚloadr)r%ÚplistÚfhÚ plist_contents    r:rr±s‚€ä×ÑÓ  Ñ#€Gà"‚}ØBˆÜ 7‰7>‰>˜%Ô  Üe˜TÓ"ð 2 bÜ (§ ¡ ¨bÓ 1 ÷ 2à =Ñ0Ø'Ð(8Ñ9Ø =‰=˜Ó Ð÷     2ð 2ús Á
BÂB có,—dddœj||«S)NÚppc)ÚPowerPCÚPower_Macintosh)Úget)Úmachines r:Ú _macos_archr¿s€Ø°Ñ 7× ;Ñ ;¸GÀWÓ MÐMr=có>—ddlm}|«}tjdk(rl|j    d«s[    t «}t j«djdd«}dt|d«t|d    «t|«fzS|S#t$rY|SwxYw)
zÁReturn this platform's string for platform-specific distributions
 
    XXX Currently this is the same as ``distutils.util.get_platform()``, but it
    needs some hacks for Linux and macOS.
    r)r©rvrwéú Ú_zmacosx-%d.%d-%srÕ) Ú    sysconfigr©r~rÚ
startswithrr ÚunameÚreplaceÚintrrƒ)r©r„r%rs    r:r{r{ÃsŸ€õ 'á ‹>€DÜ
‡||xÒ¨¯©¸    Ô(Bð     Ü!“mˆGÜ—h‘h“j ‘m×+Ñ+¨C°Ó5ˆGØ$ܐG˜A‘J“ܐG˜A‘J“ܘGÓ$ð(ñð ð €Køô    ò    ð Ø €Kð        ús³AB    BÂBzmacosx-(\d+)\.(\d+)-(.*)zdarwin-(\d+)\.(\d+)\.(\d+)-(.*)cóJ—||||k(rytj|«}|rtj|«}|sltj|«}|rTt|j    d««}|j    d«›d|j    d«›}|dk(r|dk\s
|dk(r|dk\ryy    |j    d«|j    d«k7s#|j    d
«|j    d
«k7ry    t|j    d««t|j    d««kDry    yy    ) zÛCan code for the `provided` platform run on the `required` platform?
 
    Returns true if either platform is ``None``, or the platforms are equal.
 
    XXX Needs compatibility checks for Linux and other unixy OSes.
    TrÕrxryéz10.3rz10.4Fr)r|r}ÚdarwinVersionStringr#r‚)ÚprovidedÚrequiredÚreqMacÚprovMacÚ
provDarwinÚdversionÚ macosversions       r:rªrªâs€ðИ8Ð+¨x¸8Ò/Càô × %Ñ % hÓ /€FÚ Ü$×*Ñ*¨8Ó4ˆñô-×2Ñ2°8Ó<ˆJÙܘz×/Ñ/°Ó2Ó3Ø*0¯,©,°q­/¸6¿<¹<ȼ?ÐK à ’MØ$¨Ò.Ø 1’}Ø$¨Ò.ààð =‰=˜Ó ˜vŸ|™|¨A›Ò .°'·-±-ÀÓ2BÀfÇlÁlÐSTÃoÒ2UØô ˆw}‰}˜QÓÓ  ¤3 v§|¡|°A£Ó#7Ò 7Øàð r=có—yr6r7©rÑs r:rŠrŠs€Ø>Ar=có—yr6r7r/s r:rŠrŠrúr=có¾—t|t«rtj|«}t|t«r t    |«}t|t
«s t d|«‚|S)z@Return a current distribution object for a Requirement or stringz*Expected str, Requirement, or Distribution)rýr>r0Úparser‰r-Ú    TypeErrorr/s r:rŠrŠsM€ä$œÔÜ× Ñ  Ó&ˆÜ$œ Ô$ä˜DÓ!ˆÜ dœLÔ )ÜÐDÀdÓKÐKØ €Kr=có8—t|«j||«S)zDReturn `name` entry point of `group` for `dist` or raise ImportError)rŠr‹©rÑr‚Únames   r:r‹r‹#s€ä ˜DÓ !× 2Ñ 2°5¸$Ó ?Ð?r=có—yr6r7©rÑr‚s  r:rŒrŒ(s€ð(+r=có—yr6r7r8s  r:rŒrŒ,s€ØKNr=có6—t|«j|«S)ú=Return the entry point map for `group`, or the full entry map)rŠrŒr8s  r:rŒrŒ.s€ä ˜DÓ !× /Ñ /°Ó 6Ð6r=có8—t|«j||«S©z<Return the EntryPoint object for `group`+`name`, or ``None``)rŠrr5s   r:rr3s€ä ˜DÓ !× 0Ñ 0°¸Ó =Ð=r=có<—eZdZdd„Zd    d„Zd
d„Zdd„Zd d„Zd d„Zy) r·có—y)z;Does the package's distribution contain the named metadata?Nr7©r8r6s  r:Ú has_metadatazIMetadataProvider.has_metadata9r<r=có—y)z'The named metadata resource as a stringNr7r@s  r:Ú get_metadatazIMetadataProvider.get_metadata<r<r=có—y)zÔYield named metadata resource as list of non-blank non-comment lines
 
        Leading and trailing whitespace is stripped from each line, and lines
        with ``#`` as the first non-blank character are omitted.Nr7r@s  r:Úget_metadata_linesz$IMetadataProvider.get_metadata_lines?r<r=có—y)z>Is the named metadata a directory?  (like ``os.path.isdir()``)Nr7r@s  r:Úmetadata_isdirz IMetadataProvider.metadata_isdirEr<r=có—y)z?List of metadata names in the directory (like ``os.listdir()``)Nr7r@s  r:Úmetadata_listdirz"IMetadataProvider.metadata_listdirHr<r=có—y)z=Execute the named script in the supplied namespace dictionaryNr7)r8Ú script_nameÚ    namespaces   r:rˆzIMetadataProvider.run_scriptKr<r=N©r6r>r?Úbool)r6r>r?r>©r6r>r?ú Iterator[str]©r6r>r?ú    list[str])rKr>rLúdict[str, Any]r?ÚNone)    rArBrCrArCrErGrIrˆr7r=r:r·r·8s%„óJó6óDó MóNôLr=r·cód—eZdZdZ                        d    d„Z                        d
d„Z                        d d„Zd d„Zd d„Zd d„Z    y)r1z3An object that provides access to package resourcescó—y)zbReturn a true filesystem path for `resource_name`
 
        `manager` must be a ``ResourceManager``Nr7©r8ÚmanagerÚ resource_names   r:Úget_resource_filenamez'IResourceProvider.get_resource_filenameRr<r=có—y)zgReturn a readable file-like object for `resource_name`
 
        `manager` must be a ``ResourceManager``Nr7rWs   r:Úget_resource_streamz%IResourceProvider.get_resource_streamYr<r=có—y)zgReturn the contents of `resource_name` as :obj:`bytes`
 
        `manager` must be a ``ResourceManager``Nr7rWs   r:Úget_resource_stringz%IResourceProvider.get_resource_string`r<r=có—y)z,Does the package contain the named resource?Nr7©r8rYs  r:Ú has_resourcezIResourceProvider.has_resourcegr<r=có—y)z>Is the named resource a directory?  (like ``os.path.isdir()``)Nr7r`s  r:r”z IResourceProvider.resource_isdirjr<r=có—y)z?List of resource names in the directory (like ``os.listdir()``)Nr7r`s  r:r’z"IResourceProvider.resource_listdirmr<r=N)rXržrYr>r?r>)rXržrYr>r?Ú_ResourceStream©rXržrYr>r?Úbytes)rYr>r?rN)rYr>r?rR)
rArBrCrMrZr\r^rar”r’r7r=r:r1r1Osm„Ù=ð3Ø&ð3Ø7:ð3à     ó3ð3Ø&ð3Ø7:ð3à    ó3ð3Ø&ð3Ø7:ð3à    ó3ó;óMôNr=có"—eZdZdZdd d„Zed„«Zed„«Zd!d„Zd"d„Z    d#d„Z
dd$d    „Z d%d
„Z d&d „Z             d'                            d(d„Ze        d)                                            d*d„«Ze    dd ddœ                                            d*d„«Ze                d+                                            d,d„«Z                d+                                            d-d„Z        d.d„Ze    d/                                    d0d„«Ze    dd dœ                                    d0d„«Ze            d1                                    d2d„«Z            d1                                    d3d„Zd4d„Z    d/            d5d„Zd„Zd„Zd„Zy)6rzDA collection of active distributions on sys.path (or a similar list)Ncóž—g|_i|_i|_i|_g|_|€t
j }|D]}|j|«Œy)z?Create working set from list of path entries (default=sys.path)N)ÚentriesÚ
entry_keysÚby_keyÚnormalized_to_canonical_keysÚ    callbacksr~r Ú    add_entry)r8riÚentrys   r:Ú__init__zWorkingSet.__init__tsO€à"$ˆŒ ؈ŒØˆŒ Ø,.ˆÔ)؈Œà ˆ?Ü—h‘hˆGàò    "ˆEØ N‰N˜5Õ !ñ    "r=có¨—|«}    ddlm}    |j|«|S#t$r|cYSwxYw#t$r|j |«cYSwxYw)z1
        Prepare the master working set.
        r)Ú __requires__)Ú__main__rrÚ ImportErrorr‡r¡Ú_build_from_requirements)ÚclsÚwsrrs   r:Ú _build_masterzWorkingSet._build_master‚sb€ñ
‹Uˆð    Ý -ð     >Ø J‰J|Ô $ðˆ    øôò    àŠIð    ûôò    >Ø×/Ñ/° Ó=Ò =ð    >ús‰#4£ 1°1´AÁAcó4—|g«}t|«}|j|t««}|D]}|j|«Œtj
D]"}||j vsŒ|j|«Œ$|j tj
dd|S)zQ
        Build a working set from a requirement spec. Rewrites sys.path.
        N)r¥ÚresolverœÚaddr~r rirn)rvÚreq_specrwÚreqsÚdistsrÑros       r:ruz#WorkingSet._build_from_requirements–sˆ€ñ‹WˆÜ! (Ó+ˆØ—
‘
˜4¤£Ó/ˆØò    ˆDØ F‰F4Lð    ô—X‘Xò    $ˆEؘBŸJ™JÒ&Ø— ‘ ˜UÕ#ð    $ð
—j‘jŒ‰‘ˆ ؈    r=cóº—|jj|g«|jj|«t    |d«D]}|j ||d«Œy)aÝAdd a path item to ``.entries``, finding any distributions on it
 
        ``find_distributions(entry, True)`` is used to find distributions
        corresponding to the path entry, and they are added.  `entry` is
        always appended to ``.entries``, even if it is already present.
        (This is because ``sys.path`` can contain the same value more than
        once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
        equal ``sys.path``.)
        TFN)rjÚ
setdefaultriÚappendr˜r{)r8rorÑs   r:rnzWorkingSet.add_entry¬sP€ð     ‰×"Ñ" 5¨"Ô-Ø  ‰ ×јEÔ"Ü& u¨dÓ3ò    )ˆDØ H‰HT˜5 %Õ (ñ    )r=cóR—|jj|j«|k(S)z9True if `dist` is the active distribution for its project)rkrrj©r8rÑs  r:Ú __contains__zWorkingSet.__contains__»s€à{‰{‰˜tŸx™xÓ(¨DÑ0Ð0r=có
—|jj|j«}|€I|jj|j«}|"||_|jj|«}|||vr t    ||«‚|S)aÐFind a distribution matching requirement `req`
 
        If there is an active distribution for the requested project, this
        returns it as long as it meets the version requirement specified by
        `req`.  But, if there is an active distribution for the project and it
        does *not* meet the `req` requirement, ``VersionConflict`` is raised.
        If there is no active distribution for the requested project, ``None``
        is returned.
        )rkrrjrlr¡)r8rÖrÑÚ canonical_keys    r:rþzWorkingSet.find¿sv€ð{‰{‰˜sŸw™wÓ'ˆà ˆ<Ø ×=Ñ=×AÑAÀ#Ç'Á'ÓJˆMàÐ(Ø'”Ø—{‘{—‘ }Ó5à Ð  ¨C¡ä! $¨Ó,Ð ,؈ r=c󇇗ˆˆfd„|D«S)aYield entry point objects from `group` matching `name`
 
        If `name` is None, yields all entry points in `group` from all
        distributions in the working set, otherwise only ones matching
        both `group` and `name` are yielded (in distribution order).
        c3óŒ•K—|];}|j‰«j«D]}‰‰|jk(r|–—ŒŒ=y­wr6)rŒÚvaluesr6)Ú.0rÑror‚r6s   €€r:ú    <genexpr>z/WorkingSet.iter_entry_points.<locals>.<genexpr>ÞsRøèø€ò
àØ×+Ñ+¨EÓ2×9Ñ9Ó;ò
ð؈|˜t u§z¡zÒ1ô ð
Ø ñ
ùsƒAAr7©r8r‚r6s ``r:rŽzWorkingSet.iter_entry_points×sù€ô
àô
ð    
r=có¾—tjd«j}|d}|j«||d<|j    |«dj ||«y)z?Locate distribution for `requires` and run `script_name` scriptrÕrArN)r~Ú    _getframeÚ    f_globalsrgr‡rˆ)r8ÚrequiresrKÚnsr6s     r:rˆzWorkingSet.run_scriptåsO€ä ]‰]˜1Ó × 'Ñ 'ˆØ*‰~ˆØ
‰Œ
؈ˆ:‰Ø  ‰ XÓ˜qÑ!×,Ñ,¨[¸"Õ=r=c#óÖK—t«}|jD]L}||jvrŒ|j|D])}||vsŒ|j|«|j|–—Œ+ŒNy­w)z¸Yield distributions for non-duplicate projects in the working set
 
        The yield order is the order in which the items' path entries were
        added to the working set.
        N)Úsetrirjr{rk)r8ÚseenÚitemrjs    r:Ú__iter__zWorkingSet.__iter__ísjèø€ô ‹uˆØ—L‘Lò    +ˆDؘ4Ÿ?™?Ñ*àà—‘ tÑ,ò +Ø˜d’?Ø—H‘H˜S”MØŸ+™+ cÑ*Ó*ñ +ñ     +ùs ‚?A)Á'A)TFcó‚—|r|j|j||¬«|€ |j}|jj    |g«}|jj    |jg«}|s|j
|j vry||j |j
<tj|j
«}|j
|j|<|j
|vr|j|j
«|j
|vr|j|j
«|j|«y)aAdd `dist` to working set, associated with `entry`
 
        If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
        On exit from this routine, `entry` is added to the end of the working
        set's ``.entries`` (if it wasn't already present).
 
        `dist` is only added to the working set if it's for a project that
        doesn't already have a distribution in the set, unless `replace=True`.
        If it's added, any callbacks registered with the ``subscribe()`` method
        will be called.
        ©r"N) Ú    insert_onriÚlocationrjr€rjrkÚ_packaging_utilsÚcanonicalize_namerlrÚ
_added_new)r8rÑroÚinsertr"ÚkeysÚkeys2Únormalized_names        r:r{zWorkingSet.addþsî€ñ$ Ø N‰N˜4Ÿ<™<¨¸ˆNÔ @à ˆ=Ø—M‘MˆE؏‰×)Ñ)¨%°Ó4ˆØ—‘×*Ñ*¨4¯=©=¸"Ó=ˆÙ˜4Ÿ8™8 t§{¡{Ñ2à à $ˆ ‰ D—H‘HÑÜ*×<Ñ<¸T¿X¹XÓFˆØ=A¿X¹Xˆ×)Ñ)¨/Ñ:Ø 8‰8˜4Ñ Ø K‰K˜Ÿ™Ô !Ø 8‰8˜5Ñ  Ø L‰L˜Ÿ™Ô "Ø ‰˜Õr=có—yr6r7©r8r"ÚenvÚ    installerÚreplace_conflictingÚextrass      r:rzzWorkingSet.resolve$s€ð #r=)r¦r§có—yr6r7r£s      r:rzzWorkingSet.resolve-s€ð #r=có—yr6r7r£s      r:rzzWorkingSet.resolve7s€ð!r=c    ó—t|«ddd…}t«}i}g}t«}    tjt«}
|rº|j d«} | |vrŒ|    j | |«sŒ+|j| |||||
|«} | j| j«ddd…} |j| «| D]/}|
|j| j«| j|    |<Œ1|j| «|rŒº|S)aÎList all distributions needed to (recursively) meet `requirements`
 
        `requirements` must be a sequence of ``Requirement`` objects.  `env`,
        if supplied, should be an ``Environment`` instance.  If
        not supplied, it defaults to all distributions available within any
        entry or distribution in the working set.  `installer`, if supplied,
        will be invoked with each requirement that cannot be met by an
        already-installed distribution; it should return a ``Distribution`` or
        ``None``.
 
        Unless `replace_conflicting=True`, raises a VersionConflict exception
        if
        any requirements are found on the path that have the correct name but
        the wrong version.  Otherwise, if an `installer` is supplied it will be
        invoked to obtain the correct version of the requirement and activate
        it.
 
        `extras` is a list of the extras to be used with these requirements.
        This is important because extra requirements may look like `my_req;
        extra = "my_extra"`, which would otherwise be interpreted as a purely
        optional requirement.  Instead, we want to be able to assert that these
        requirements are truly required.
        Nrór) Úlistr“Ú
_ReqExtrasÚ collectionsÚ defaultdictÚpopÚ markers_passÚ _resolve_distrr§Úextendr{Ú project_name)r8r"r¤r¥r¦r§Ú    processedÚbestÚ to_activateÚ
req_extrasrárÖrÑÚnew_requirementsÚnew_requirements               r:rzzWorkingSet.resolve@s€ôB˜LÓ)©$¨B¨$Ñ/ˆ ä“Eˆ    àˆØˆ ä“\ˆ
ô"×-Ñ-¬cÓ2ˆ áà×"Ñ" 1Ó%ˆCؐiÑàà×*Ñ*¨3°Ô7Øà×%Ñ%ؐTÐ.°°YÀ È[óˆDð
 $Ÿ}™}¨S¯Z©ZÓ8¹¸2¸Ñ>Ð Ø × Ñ Р0Ô 1ð$4ò 9Ø˜OÑ,×0Ñ0°×1AÑ1AÔBØ.1¯j©j
˜?Ò+ð 9ð M‰M˜#Ô ò/ð4Ðr=cóð—|j|j«}|€´|jj|j«}|||vrx|rv|}    |€.|€t|j«}ntg«}t g«}    |j ||    ||¬«x}||j<|€|j|d«}
t||
«‚|j|«||vr ||} t||«j| «‚|S)N)r¦) rrjrkrœrirÚ
best_matchr¢rr¡râ) r8rÖrµr¦r¤r¥rár¶rÑrwrëÚ dependent_reqs             r:r±zWorkingSet._resolve_distŠsü€ðx‰x˜Ÿ™Ó ˆØ ˆ<à—;‘;—?‘? 3§7¡7Ó+ˆD؈| ¨C¡Ñ4Gؐؐ;ؐ|Ü)¨$¯,©,Ó7™ô
*¨"›o˜Ü'¨›^˜Ø'*§~¡~ؘ˜YÐ<Oð(6ó(ðt˜CŸG™G‘}ð<Ø +§¡°°TÓ :IÜ.¨s°IÓ>Ð>Ø × Ñ ˜tÔ $Ø s‰?à'¨Ñ,ˆMÜ! $¨Ó,×9Ñ9¸-ÓHÐ H؈ r=có—yr6r7©r8Ú
plugin_envÚfull_envr¥Úfallbacks     r:Ú find_pluginszWorkingSet.find_plugins©s    €ðFIr=)rÁcó—yr6r7r¾s     r:rÂzWorkingSet.find_plugins±s    €ðFIr=có—yr6r7r¾s     r:rÂzWorkingSet.find_pluginsºs    €ðDGr=có\—t|«}|j«i}i}|€t|j«}||z }n||z}|j    g«}    tt |    j |««|D]u}
||
D]k} | j«g}     |    j| ||«} tt |    j | ««|jtj| ««ŒuŒwt|«}|j«||fS#t$r}||| <|rYd}~Œ¤Yd}~Œ²d}~wwxYw)asFind all activatable distributions in `plugin_env`
 
        Example usage::
 
            distributions, errors = working_set.find_plugins(
                Environment(plugin_dirlist)
            )
            # add plugins+libs to sys.path
            map(working_set.add, distributions)
            # display errors
            print('Could not load', errors)
 
        The `plugin_env` should be an ``Environment`` instance that contains
        only distributions that are in the project's "plugin directory" or
        directories. The `full_env`, if supplied, should be an ``Environment``
        contains all currently-available distributions.  If `full_env` is not
        supplied, one is created automatically from the ``WorkingSet`` this
        method is called on, which will typically mean that every directory on
        ``sys.path`` will be scanned for distributions.
 
        `installer` is a standard installer callback as used by the
        ``resolve()`` method. The `fallback` flag indicates whether we should
        attempt to resolve older versions of a plugin if the newest version
        cannot be resolved.
 
        This method returns a 2-tuple: (`distributions`, `error_info`), where
        `distributions` is a list of the distributions found in `plugin_env`
        that were loadable, along with any other distributions that are needed
        to resolve their dependencies.  `error_info` is a dictionary mapping
        unloadable plugin distributions to an exception instance describing the
        error that occurred. Usually this will be a ``DistributionNotFound`` or
        ``VersionConflict`` instance.
        N) r«ÚsortrœrirÊÚmapr{Úas_requirementrzrhÚdictÚfromkeysr )r8r¿rÀr¥rÁÚplugin_projectsÚ
error_infoÚ distributionsr¤Ú
shadow_setr³rÑrÖÚ    resolveesr\Úsorted_distributionss                r:rÂzWorkingSet.find_pluginsÂs7€ôX˜zÓ*ˆà×ÑÔà46ˆ
Ø>@ˆ à РܘdŸl™lÓ+ˆCØ :Ñ ‰Cà˜ZÑ'ˆCà—^‘^ BÓ'ˆ
ä ŒS—‘ Ó &Ô'à+ò    ˆLØ" <Ñ0ò Ø×*Ñ*Ó,Ð-ðØ *× 2Ñ 2°3¸¸YÓ GIôœ˜ZŸ^™^¨YÓ7Ô8Ø!×(Ñ(¬¯©°yÓ)AÔBññ+ ð    ô0 $ MÓ2ÐØ×!Ñ!Ô#à# ZÐ/Ð/øô)'òà'(J˜tÑ$Ùä õûðúsÂD Ä     D+ÄD&Ä&D+cój—|jt|««}|D]}|j|«Œ|S)a¾Ensure that distributions matching `requirements` are activated
 
        `requirements` must be a string or a (possibly-nested) sequence
        thereof, specifying the distributions and versions required.  The
        return value is a sequence of the distributions that needed to be
        activated to fulfill the requirements; all relevant distributions are
        included, even if they were already activated in this working set.
        )rzr¥r{)r8r"ÚneededrÑs    r:r‡zWorkingSet.requires9€ð—‘Ô0°Ó>Ó?ˆàò    ˆDØ H‰HTNð    ðˆ r=có|—||jvry|jj|«|sy|D]
}||«Œ y)zƒInvoke `callback` for all distributions
 
        If `existing=True` (default),
        call on all existing ones, as well.
        N)rmr)r8ÚcallbackÚexistingrÑs    r:Ú    subscribezWorkingSet.subscribe,sA€ð t—~‘~Ñ %Ø Ø ‰×јhÔ'ÙØ Øò    ˆDÙ TNñ    r=có6—|jD]
}||«Œ yr6)rm)r8rÑrÔs   r:rzWorkingSet._added_new<s€ØŸ™ò    ˆHÙ TNñ    r=cóԗ|jdd|jj«|jj«|jj«|j
ddfSr6)rirjrbrkrlrmrÌs r:r]zWorkingSet.__getstate__@sU€à L‰L™ˆOØ O‰O×  Ñ  Ó "Ø K‰K× Ñ Ó Ø × -Ñ -× 2Ñ 2Ó 4Ø N‰N™1Ð ð 
ð    
r=cóº—|\}}}}}|dd|_|j«|_|j«|_|j«|_|dd|_yr6)rirbrjrkrlrm)r8Ú    e_k_b_n_crirŸrkrlrms       r:r`zWorkingSet.__setstate__IsT€ØIRÑFˆvÐ;¸YØ™qzˆŒ ØŸ)™)›+ˆŒØ—k‘k“mˆŒ Ø,H×,MÑ,MÓ,OˆÔ)Ø"¡1˜ˆr=r6)riúIterable[str] | None)ror>)rÑr-r?rN)rÖr0r?úDistribution | None)r‚r>r6ú
str | None)rr>rKr>)r?úIterator[Distribution])NTF)rÑr-rorÝržrNr"rN)FN) r"úIterable[Requirement]r¤úEnvironment | Noner¥ú_InstallerTypeT[_DistributionT]r¦rNr§útuple[str, ...] | Noner?zlist[_DistributionT])NNFN) r"rßr¤ràr¥ú_InstallerType | Noner¦rNr§râr?úlist[Distribution]) r"rßr¤ràr¥ú7_InstallerType | None | _InstallerTypeT[_DistributionT]r¦rNr§râr?z)list[Distribution] | list[_DistributionT]rã©T)
r¿rœrÀràr¥rárÁrNr?z:tuple[list[_DistributionT], dict[Distribution, Exception]])NNT)
r¿rœrÀràr¥rãrÁrNr?z8tuple[list[Distribution], dict[Distribution, Exception]])
r¿rœrÀràr¥rårÁrNr?zOtuple[list[Distribution] | list[_DistributionT], dict[Distribution, Exception]])r"r/)rÔz Callable[[Distribution], object]rÕrN)rArBrCrMrpÚ classmethodrxrurnr„rþrŽrˆr–r{rrzr±rÂr‡rÖrr]r`r7r=r:rrqsx„ÙNô "ðñóðð&ñóðó* )ó1óô0 
ó>ó+ð(!ØØð $àð$ðð$ðð    $ð
ó $ðLð %*Ø)-ð #à+ð#ð ð#ð3ð    #ð
"ð #ð 'ð #ð
ò#óð#ðð#'ð#ð %*Ø)-ñ#à+ð#ð ð#ð
3ð #ð "ð #ð'ð#ð
ò#óð#ðð#'Ø+/Ø$)Ø)-ð !à+ð!ð ð!ð)ð    !ð
"ð !ð 'ð !ð
ò!óð!ð#'ØMQØ$)Ø)-ð Hà+ðHð ðHðKð    Hð
"ð Hð 'ð Hð
3óHðTà    óð>ð ð IàðIð%ðIð3ð    Ið
ð Ið
Dò IóðIðð(,ðIð ñ IàðIð%ðIð
3ð Ið ð Ið
DòIóðIðð(,Ø+/Øð GàðGð%ðGð)ð    Gð
ð Gð
Bò GóðGð(,ØMQØð X0àðX0ð%ðX0ðKð    X0ð
ð X0ð 
ó X0ótð"LPðØ8ðØDHóò ò
ó&r=rcó—eZdZdZddd„Zy)r¬z>
    Map each requirement to the extras that demanded it.
    Ncó|‡—ˆfd„|j‰d«|xsdzD«}‰j xs t|«S)z»
        Evaluate markers for req against each extra that
        demanded it.
 
        Return False if the req has a marker and fails
        evaluation. Otherwise, return True.
        c3óX•K—|]!}‰jjd|i«–—Œ#y­w)ÚextraN©ÚmarkerÚevaluate)rŠrërÖs  €r:r‹z*_ReqExtras.markers_pass.<locals>.<genexpr>_s-øèø€ò
àð J‰J× Ñ  ¨%Р0× 1ñ
ùsƒ'*r7r6)rríÚany)r8rÖr§Ú extra_evalss `  r:r°z_ReqExtras.markers_passWs?ø€ó
àŸ™ # rÓ*¨fÒ.?¸Ñ@ô
ˆ ð—:‘:ˆ~Ò1¤ [Ó!1Ð1r=r6)rÖr0r§râ)rArBrCrMr°r7r=r:r¬r¬Rs „ñõ 2r=r¬.có\—eZdZdZde«ef                    dd„Zdd„Zdd„Zddd„Z    dd„Z
dd„Z e     d                                    dd    „«Z e         d                                    dd
„«Z         d                                    dd „Z e                         dd „«Ze     d                    dd „«Ze     d                    dd„«Z    d                    d d„Zd!d„Zd"d„Zd"d„Zy)#rœz5Searchable snapshot of distributions on a search pathNcóP—i|_||_||_|j|«y)a!Snapshot distributions available on a search path
 
        Any distributions found on `search_path` are added to the environment.
        `search_path` should be a sequence of ``sys.path`` items.  If not
        supplied, ``sys.path`` is used.
 
        `platform` is an optional string specifying the name of the platform
        that platform-specific distributions must be compatible with.  If
        unspecified, it defaults to the current platform.  `python` is an
        optional string naming the desired version of Python (e.g. ``'3.6'``);
        it defaults to the current version.
 
        You may explicitly set `platform` (and/or `python`) to ``None`` if you
        wish to map *all* distributions, not just those compatible with the
        running platform or Python version.
        N)Ú_distmaprÚpythonÚscan)r8Ú search_pathrrôs    r:rpzEnvironment.__init__is%€ð,ˆŒ Ø ˆŒ ؈Œ Ø     ‰    +Õr=có¼—|jduxs)|jduxs|j|jk(}|xr t|j|j«S)zåIs distribution `dist` acceptable for this environment?
 
        The distribution must match the platform and python version
        requirements specified when this environment was created, or False
        is returned.
        N)rôÚ
py_versionrªr)r8rÑÚ    py_compats   r:Úcan_addzEnvironment.can_add„sX€ð K‰K˜4Ð ò .؏‰ $Ð&ò .à‰ $§+¡+Ñ-ð    ð
ÒOÔ1°$·-±-ÀÇÁÓOÐOr=cóT—|j|jj|«y)z"Remove `dist` from the environmentN)rórjÚremoverƒs  r:rüzEnvironment.remove’s€à  ‰ d—h‘hÑ×&Ñ& tÕ,r=cóx—|€tj}|D]#}t|«D]}|j|«ŒŒ%y)adScan `search_path` for distributions usable in this environment
 
        Any distributions found are added to the environment.
        `search_path` should be a sequence of ``sys.path`` items.  If not
        supplied, ``sys.path`` is used.  Only distributions conforming to
        the platform/python version defined at initialization are added.
        N)r~r r˜r{)r8rör•rÑs    r:rõzEnvironment.scan–sA€ð Ð ÜŸ(™(ˆKàò    ˆDÜ*¨4Ó0ò Ø—‘˜•ñ ñ    r=cóZ—|j«}|jj|g«S)aReturn a newest-to-oldest list of distributions for `project_name`
 
        Uses case-insensitive `project_name` comparison, assuming all the
        project's distributions use their project's name converted to all
        lowercase as their key.
 
        )Úlowerrór)r8r³Údistribution_keys   r:Ú __getitem__zEnvironment.__getitem__¥s+€ð(×-Ñ-Ó/ÐØ}‰}× Ñ Ð!1°2Ó6Ð6r=có—|j|«rt|j«rc|jj|jg«}||vr8|j |«|j tjd«d¬«yyyy)zCAdd `dist` if we ``can_add()`` it and it has not already been addedÚhashcmpT)rjÚreverseN)    rúÚ has_versionrór€rjrrÆÚoperatorÚ
attrgetter)r8rÑr~s   r:r{zEnvironment.add°so€à <‰<˜Ô  $×"2Ñ"2Ô"4Ø—M‘M×,Ñ,¨T¯X©X°rÓ:ˆEؘ5Ñ Ø— ‘ ˜TÔ"Ø—
‘
œx×2Ñ2°9Ó=Àt
ÕLð!ð#5Ð r=có—yr6r7©r8rÖr–r¥r¦s     r:r»zEnvironment.best_match¸s€ðr=có—yr6r7r    s     r:r»zEnvironment.best_matchÀs€ð"r=c󲗠   |j|«}||S||jD]
}||vsŒ|cS|j||«S#t$r|s‚d}YŒBwxYw)a¸Find distribution best matching `req` and usable on `working_set`
 
        This calls the ``find(req)`` method of the `working_set` to see if a
        suitable distribution is already active.  (This may raise
        ``VersionConflict`` if an unsuitable version of the project is already
        active in the specified `working_set`.)  If a suitable distribution
        isn't active, this method returns the newest distribution in the
        environment that meets the ``Requirement`` in `req`.  If no suitable
        distribution is found, and `installer` is supplied, then the result of
        calling the environment's ``obtain(req, installer)`` method will be
        returned.
        N)rþr¡rjÚobtain)r8rÖr–r¥r¦rÑs      r:r»zEnvironment.best_matchÈsv€ð&    Ø×#Ñ# CÓ(ˆDð
Р؈KؘŸ™‘Mò    ˆDؐsŠ{Ø’ ð    ð{‰{˜3     Ó*Ð*øôò    Ù&ØØŠDð    ús‚AÁAÁAcó—yr6r7©r8Ú requirementr¥s   r:r zEnvironment.obtainés€ð
r=có—yr6r7rs   r:r zEnvironment.obtainïs€ð
r=có—yr6r7rs   r:r zEnvironment.obtainõs€ð
"r=có—|r||«SdS)aÞObtain a distribution matching `requirement` (e.g. via download)
 
        Obtain a distro that matches requirement (e.g. via download).  In the
        base ``Environment`` class, this routine just returns
        ``installer(requirement)``, unless `installer` is None, in which case
        None is returned instead.  This method is a hook that allows subclasses
        to attempt other ways of obtaining a distribution before falling back
        to the `installer` argument.Nr7rs   r:r zEnvironment.obtainûs€ñ *3‰y˜Ó%Ð<¸Ð<r=c#ó^K—|jj«D] }||sŒ    |–—Œy­w)z=Yield the unique project names of the available distributionsN)rórŸ©r8rjs  r:r–zEnvironment.__iter__ s.èø€à—=‘=×%Ñ%Ó'ò    ˆCؐC‹yØ“    ñ    ùs‚#-¦-cóΗt|t«r|j|«|St|t«r$|D]}||D]}|j|«ŒŒ|St    d|›d«‚)z2In-place addition of a distribution or environmentz
Can't add z to environment)rýr-r{rœr3)r8ÚotherÚprojectrÑs    r:Ú__iadd__zEnvironment.__iadd__sn€ä eœ\Ô *Ø H‰HUŒOðˆ ô ˜œ{Ô +Ø ò #Ø! '™Nò#DØ—H‘H˜T•Nñ#ð #ð
ˆ õºUÐDÓEÐ Er=cóJ—|jgdd¬«}||fD]}||z }Œ    |S)z4Add an environment or distribution to an environmentN)rrô©rÊ)r8rÚnewr¤s    r:Ú__add__zEnvironment.__add__s7€àn‰n˜R¨$°tˆnÓ<ˆØ˜;ò    ˆCØ 3‰J‰Cð    àˆ
r=)rörÛrrÝrôrÝ)rÑr-r6)rörÛ)r³r>r?rä©F)
rÖr0r–rr¥rár¦rNr?r,©NF)
rÖr0r–rr¥rãr¦rNr?rÜ)
rÖr0r–rr¥rår¦rNr?rÜ)rr0r¥rár?r,)rr0r¥z$Callable[[Requirement], None] | Noner?rT)rr0r¥rãr?rÜ)rr0r¥zWCallable[[Requirement], None] | _InstallerType | None | _InstallerTypeT[_DistributionT]r?rÜ)r?rP)rzDistribution | Environment)rArBrCrMr†ÚPY_MAJORrprúrürõrr{rr»r r–rrr7r=r:rœrœfsô„Ù?ð-1Ù5Ó7Ø%ð    à)ððððó    ó6 Pó-ô ó    7óMðð %*ð à ðð ðð3ð    ð
"ð ð
ò óððð
,0Ø$)ð "à ð"ð ð"ð)ð    "ð
"ð "ð
ò "óð"ðNRØ$)ð +à ð+ð ð+ðKð    +ð
"ð +ð
ó +ðBðà ðð3ðð
ò    óðð
ð;?ðà ðð8ðð
ò    óðð
ð,0ð"à ð"ð)ð"ð
ò    "óð"ð-1ð =à ð=ð*ð=ð
ó=ó$ó
ôr=rœcó0—eZdZUdZded<ded<ded<y)    r¤aTAn error occurred extracting a resource
 
    The following attributes are available from instances of this exception:
 
    manager
        The resource manager that raised this exception
 
    cache_path
        The base directory for resource extraction
 
    original_error
        The exception instance that caused extraction to fail
    ržrXr>Ú
cache_pathzBaseException | NoneÚoriginal_errorN)rArBrCrMrIr7r=r:r¤r¤+s…ñ ðÓØƒOØ(Ô(r=r¤có¦—eZdZUdZdZded<d„Zdd„Zdd„Z                dd„Z    dd    „Z
                        dd
„Z dd „Z dd „Z ddd „Zed„«Zdd„Zdd„Zddd„Zy)ržz'Manage resource extraction and packagesNrÝÚextraction_pathcó—i|_yr6)Ú cached_filesrÌs r:rpzResourceManager.__init__Ds
€ØˆÕr=có6—t|«j|«S)zDoes the named resource exist?)r‰ra©r8Úpackage_or_requirementrYs   r:r“zResourceManager.resource_existsGs€äÐ2Ó3×@Ñ@ÀÓOÐOr=có6—t|«j|«S)z,Is the named resource an existing directory?)r‰r”r(s   r:r”zResourceManager.resource_isdirKs€äÐ2Ó3×BÑBÀ=ÓQÐQr=có8—t|«j||«S)z4Return a true filesystem path for specified resource)r‰rZr(s   r:r‘z!ResourceManager.resource_filenameOs"€ôÐ2Ó3×IÑIØ -ó
ð    
r=có8—t|«j||«S)z9Return a readable file-like object for specified resource)r‰r\r(s   r:rzResourceManager.resource_streamWs €äÐ2Ó3×GÑGØ -ó
ð    
r=có8—t|«j||«S)z)Return specified resource as :obj:`bytes`)r‰r^r(s   r:rzResourceManager.resource_string]s"€ôÐ2Ó3×GÑGØ -ó
ð    
r=có6—t|«j|«S)z1List the contents of the named resource directory)r‰r’r(s   r:r’z ResourceManager.resource_listdires€äÐ2Ó3×DÑDÀ]ÓSÐSr=có—tj«d}|jxs
t«}t    j
d«j «}t|jdit«¤Ž«}||_
||_ ||_ |‚)z5Give an error message for problems extracting file(s)rÕa
            Can't extract file(s) to egg cache
 
            The following error occurred while trying to extract file(s)
            to the Python egg cache:
 
              {old_exc}
 
            The Python egg cache directory is currently set to:
 
              {cache_path}
 
            Perhaps your account does not have write access to this directory?
            You can change the cache directory by setting the PYTHON_EGG_CACHE
            environment variable to point to an accessible directory.
            r7) r~Úexc_infor$r›ÚtextwrapÚdedentÚlstripr¤rÛrÜrXr!r")r8Úold_excr!ÚtmplÚerrs     r:Úextraction_errorz ResourceManager.extraction_erroris~€ô—,‘,“. Ñ#ˆØ×)Ñ)Ò@Ô->Ó-@ˆ
䏉ð ó
÷" ‰&‹(ð#     ô$˜k˜dŸk™kÑ5¬F«HÑ5Ó6ˆØˆŒ Ø#ˆŒØ$ˆÔ؈    r=có—|jxs
t«}tjj||dzg|¢­Ž}    t |«|j|«d|j|<|S#t $r|j«YŒ=wxYw)a®Return absolute location in cache for `archive_name` and `names`
 
        The parent directory of the resulting path will be created if it does
        not already exist.  `archive_name` should be the base filename of the
        enclosing egg (which may not be the name of the enclosing zipfile!),
        including its ".egg" extension.  `names`, if provided, should be a
        sequence of path name parts "under" the egg's extraction location.
 
        This method should only be called by resource providers that need to
        obtain an extraction location, and only for names they intend to
        extract, as it tracks the generated names for possible cleanup later.
        z-tmpT)
r$r›r r r€Ú_bypass_ensure_directoryÚ    Exceptionr7Ú_warn_unsafe_extraction_pathr&)r8Ú archive_nameÚnamesÚ extract_pathÚ target_paths     r:Úget_cache_pathzResourceManager.get_cache_path‡s†€ð×+Ñ+ÒBÔ/@Ó/Bˆ Ü—g‘g—l‘l <°ÀÑ1FÐOÈÒOˆ ð    $Ü $ [Ô 1ð     ×)Ñ)¨,Ô7à)-ˆ×ј+Ñ&ØÐøô ò    $Ø × !Ñ !Ö #ð    $ús¾ A+Á+BÂBcód—tjdk(r#|jtjd«sytj|«j
}|tj zs|tjzr5djdit«¤Ž}tj|t«yy)aN
        If the default extraction path is overridden and set to an insecure
        location, such as /tmp, it opens up an opportunity for an attacker to
        replace an extracted file with an unauthorized payload. Warn the user
        if a known insecure location is used.
 
        See Distribute #375 for more details.
        ÚntÚwindirNzáExtraction path is writable by group/others and vulnerable to attack when used with get_resource_filename ({path}). Consider a more secure location (set with .set_extraction_path or the PYTHON_EGG_CACHE environment variable).r7) r r6r ÚenvironÚstatÚst_modeÚS_IWOTHÚS_IWGRPrÛrÜÚwarningsÚwarnÚ UserWarning)r ÚmodeÚmsgs   r:r;z,ResourceManager._warn_unsafe_extraction_path s‹€ô 7‰7dŠ? 4§?¡?´2·:±:¸hÑ3GÔ#Hð ܏w‰wt‹}×$Ñ$ˆØ ”$—,‘,Ò  $¬¯©Ò"5ðð:÷ ‰fñ!ô“xñ!ˆCô M‰M˜#œ{Õ +ð#6r=có¢—tjdk(r<tj|«jdzdz}tj||«yy)a4Perform any platform-specific postprocessing of `tempname`
 
        This is where Mac header rewrites should be done; other platforms don't
        have anything special they should do.
 
        Resource providers should call this method ONLY after successfully
        extracting a compressed resource.  They must NOT call it on resources
        that are already in the filesystem.
 
        `tempname` is the current (temporary) name of the file, and `filename`
        is the name it will be renamed to by the caller after this routine
        returns.
        ÚposiximiÿN)r r6rErFÚchmod)r8ÚtempnameÚfilenamerLs    r:Ú postprocesszResourceManager.postprocess»sA€ô 7‰7gÒ ä—W‘W˜XÓ&×.Ñ.°%Ñ7¸6ÑAˆDÜ H‰HX˜tÕ $ð r=có@—|jr td«‚||_y)aÒSet the base path where resources will be extracted to, if needed.
 
        If you do not call this routine before any extractions take place, the
        path defaults to the return value of ``get_default_cache()``.  (Which
        is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
        platform-specific fallbacks.  See that routine's documentation for more
        details.)
 
        Resources are extracted to subdirectories of this path based upon
        information given by the ``IResourceProvider``.  You may set this to a
        temporary directory, but then you must call ``cleanup_resources()`` to
        delete the extracted files when done.  There is no guarantee that
        ``cleanup_resources()`` will be able to remove all extracted files.
 
        (Note: you may not change the extraction path for a given resource
        manager once resources have been extracted, unless you first call
        ``cleanup_resources()``.)
        z5Can't change extraction path, files already extractedN)r&rƒr$©r8r s  r:r™z#ResourceManager.set_extraction_pathÏs!€ð& × Ò ÜÐTÓUÐ Uà#ˆÕr=có—gS)aB
        Delete all extracted resource files and directories, returning a list
        of the file and directory names that could not be successfully removed.
        This function does not have any concurrency protection, so it should
        generally only be called when the extraction path is a temporary
        directory exclusive to a single process.  This method is not
        automatically called; you must call it explicitly or register it as an
        ``atexit`` function if you wish to ensure cleanup of a temporary
        directory used for extractions.
        r7)r8Úforces  r:ršz!ResourceManager.cleanup_resourcesçs    €ðˆ    r=)r)Ú _PkgReqTyperYr>)r)rXrYr>r?rf)r?r ©r7)r<r>r=zIterable[StrPath])rQr)rRr)©r r>r)rWrNr?rR)rArBrCrMr$rIrpr“r”r‘rrr’r7r@Ú staticmethodr;rSr™ršr7r=r:ržrž?sŠ…Ù1à"&€OZÓ&òóPóRð
Ø&1ð
ØBEó
ó
ð 
Ø&1ð
ØBEð
à    ó
óTóô<ð2ñ,óð,ó4%ó($õ0 r=ržcó\—tjjd«xs td¬«S)zŒ
    Return the ``PYTHON_EGG_CACHE`` environment variable
    or a platform-relevant user cache dir for an app
    named "Python-Eggs".
    ÚPYTHON_EGG_CACHEz Python-Eggs)Úappname)r rDrÚ_user_cache_dirr7r=r:r›r›ös"€ô :‰:>‰>Ð,Ó -Ò W´ÈÔ1WÐWr=có0—tjdd|«S)zConvert an arbitrary string to a standard distribution name
 
    Any runs of non-alphanumeric/. characters are replaced with a single '-'.
    ú[^A-Za-z0-9.]+rz)ÚreÚsub©r6s r:r§r§ÿs€ô
6‰6Ð" C¨Ó .Ð.r=cóė    ttj|««S#tj$r,|j    dd«}t j dd|«cYSwxYw)zB
    Convert an arbitrary string to a standard version string
    rrxrarz)r>Ú_packaging_versionÚVersionÚInvalidVersionr"rbrcr$s r:r¨r¨sW€ð6äÔ%×-Ñ-¨gÓ6Ó7Ð7øÜ × ,Ñ ,ò6Ø—/‘/ # sÓ+ˆÜv‰vÐ&¨¨WÓ5Ò5ð6ús‚  <AÁAcó̗|jdd«}tj|«}|r|d}|t|«d}nd}|}dt    |«›j d«}|›d|›S)aFallback when ``safe_version`` is not safe enough
    >>> parse_version(_forgiving_version('0.23ubuntu1'))
    <Version('0.23.dev0+sanitized.ubuntu1')>
    >>> parse_version(_forgiving_version('0.23-'))
    <Version('0.23.dev0+sanitized')>
    >>> parse_version(_forgiving_version('0.-_'))
    <Version('0.dev0+sanitized')>
    >>> parse_version(_forgiving_version('42.+?1'))
    <Version('42.dev0+sanitized.1')>
    >>> parse_version(_forgiving_version('hello world'))
    <Version('0.dev0+sanitized.hello.world')>
    rrxÚsafeNÚ0z
sanitized.z.dev0+)r"Ú_PEP440_FALLBACKÚsearchÚlenÚ _safe_segmentÚstrip)r%r}rjÚrestÚlocals     r:Ú_forgiving_versionrssx€ðo‰o˜c 3Ó'€GÜ × #Ñ # GÓ ,€E٠ؐV‰}ˆØ”s˜4“y{Ð#‰àˆØˆØœ tÓ,Ð-Ð .× 4Ñ 4°SÓ 9€E؈V6˜%˜Ð !Ð!r=cóª—tjdd|«}tjdd|«}tjdd|«jd«S)z/Convert an arbitrary string into a safe segmentrarzz-[^A-Za-z0-9]+z\.[^A-Za-z0-9]+rxz.-)rbrcrp)Úsegments r:roro,sG€äf‰fÐ% s¨GÓ4€G܏f‰fÐ% s¨GÓ4€GÜ 6‰6Ð$ c¨7Ó 3× 9Ñ 9¸$Ó ?Ð?r=cóL—tjdd|«j«S)z±Convert an arbitrary string to a standard 'extra' name
 
    Any runs of non-alphanumeric characters are replaced with a single '_',
    and the result is always lowercased.
    z[^A-Za-z0-9.-]+r)rbrcrÿ)rës r:r¬r¬3s!€ô 6‰6Ð# S¨%Ó 0× 6Ñ 6Ó 8Ð8r=có&—|jdd«S)z|Convert a project or version name to its filename-escaped form
 
    Any '-' characters are currently replaced with '_'.
    rzrr˜rds r:r­r­<s€ð
<‰<˜˜SÓ !Ð!r=cóh—    t|«y#t$r}d|_d|_|cYd}~Sd}~wwxYw)zo
    Validate text as a PEP 508 environment marker; return an exception
    if invalid or False otherwise.
    NF)r¯Ú SyntaxErrorrRÚlineno)ÚtextÚes  r:r®r®Ds9€ð
ܘÔð
øô     ò؈Œ
؈ŒØûðús‚ Ž    1—,¦1¬1c󜗠   tj|«}|j«S#tj$r}t    |«|‚d}~wwxYw)zÙ
    Evaluate a PEP 508 environment marker.
    Return a boolean indicating the marker result in this environment.
    Raise SyntaxError if marker is invalid.
 
    This implementation uses the 'pyparsing' module.
    N)Ú_packaging_markersÚMarkerrîÚ InvalidMarkerry)r{rërír|s    r:r¯r¯RsF€ð$Ü#×*Ñ*¨4Ó0ˆØ‰Ó Ð øÜ × +Ñ +ò$ܘ!‹n !Ð#ûð$ús‚$'§A º AÁA cóî—eZdZUdZdZded<dZded<dZded<dd„Zdd    „Z    dd
„Z
                        dd „Z dd „Z d „Z d d„Zd!d„Zd"d„Zdd„Zd d„Zdd„Zd#d„Zd$d„Zd%d„Zd%d„Zd&d„Zd'd„Zed„«Zd(d„Zy))r½zETry to implement resources and metadata for arbitrary PEP 302 loadersNrÝÚegg_nameÚegg_infoz_LoaderProtocol | Nonercó†—t|dd«|_tjj    t|dd««|_y)NrGÚ__file__r)rrr r ÚdirnameÚ module_path)r8rs  r:rpzNullProvider.__init__hs0€Ü˜f l°DÓ9ˆŒ ÜŸ7™7Ÿ?™?¬7°6¸:ÀrÓ+JÓKˆÕr=có:—|j|j|«Sr6)Ú_fnr‡rWs   r:rZz"NullProvider.get_resource_filenamels€Øx‰x˜×(Ñ(¨-Ó8Ð8r=cóL—tj|j||««Sr6)ÚioÚBytesIOr^rWs   r:r\z NullProvider.get_resource_streamos€Üz‰z˜$×2Ñ2°7¸MÓJÓKÐKr=cóX—|j|j|j|««Sr6)Ú_getr‰r‡rWs   r:r^z NullProvider.get_resource_stringrs$€ðy‰y˜Ÿ™ $×"2Ñ"2°MÓBÓCÐCr=cóX—|j|j|j|««Sr6)Ú_hasr‰r‡r`s  r:razNullProvider.has_resourcews"€Øy‰y˜Ÿ™ $×"2Ñ"2°MÓBÓCÐCr=có:—|j|j|«Sr6)r‰rƒr@s  r:Ú_get_metadata_pathzNullProvider._get_metadata_pathzs€Øx‰x˜Ÿ ™  tÓ,Ð,r=có`—|jsy|j|«}|j|«Sr)rƒr’r©r8r6r s   r:rAzNullProvider.has_metadata}s*€Ø}Š}Øà×&Ñ& tÓ,ˆØy‰y˜‹Ðr=cóò—|jsy|j|«}|j|«}    |jd«S#t$r+}|xj
dj ||«z c_‚d}~wwxYw)Nrúutf-8z in {} file at path: {})rƒr’rŽÚdecodeÚUnicodeDecodeErrorÚreasonrÛ)r8r6r ÚvalueÚexcs     r:rCzNullProvider.get_metadata„sn€Ø}Š}ØØ×&Ñ& tÓ,ˆØ—    ‘    ˜$“ˆð    Ø—<‘< Ó(Ð (øÜ!ò    ð JŠJÐ3×:Ñ:¸4ÀÓFÑ FJØ ûð        ús±AÁ    A6Á &A1Á1A6có6—t|j|««Sr6©rrCr@s  r:rEzNullProvider.get_metadata_lines‘ó€Ü˜4×,Ñ,¨TÓ2Ó3Ð3r=cóX—|j|j|j|««Sr6)Ú_isdirr‰r‡r`s  r:r”zNullProvider.resource_isdir”s"€Ø{‰{˜4Ÿ8™8 D×$4Ñ$4°mÓDÓEÐEr=có†—t|jxr+|j|j|j|«««Sr6)rNrƒr r‰r@s  r:rGzNullProvider.metadata_isdir—s.€ÜD—M‘MÒP d§k¡k°$·(±(¸4¿=¹=È$Ó2OÓ&PÓQÐQr=cóX—|j|j|j|««Sr6)Ú_listdirr‰r‡r`s  r:r’zNullProvider.resource_listdiršs"€Ø}‰}˜TŸX™X d×&6Ñ&6¸ ÓFÓGÐGr=cót—|jr+|j|j|j|««SgSr6)rƒr£r‰r@s  r:rIzNullProvider.metadata_listdirs,€Ø =Š=Ø—=‘= §¡¨$¯-©-¸Ó!>Ó?Ð ?؈    r=có*—d|z}|j|«s#tdjd
it«¤Ž«‚|j    |«j dd«}|j dd«}|j |j|«}||d<tjj|«r&t|«}t||d«}t|||«ydd    lm}t!|«d|j#d«|f||<t||d«}    t|    ||«y) Nzscripts/z<Script {script!r} not found in metadata at {self.egg_info!r}z
ú
ú r…Úexecr)Úcacher7)rAr rÛrÜrCr"r‰rƒr r rÚ_read_utf8_with_fallbackÚcompiler¨Ú    linecacher©rnr)
r8rKrLÚscriptÚ script_textÚscript_filenameÚsourceÚcoder©Ú script_codes
          r:rˆzNullProvider.run_script¢s€Ø˜kÑ)ˆØ× Ñ  Ô(Ü!ØUÐN×UÑUñÜ“hñóð ð ×'Ñ'¨Ó/×7Ñ7¸ÀÓEˆ Ø!×)Ñ)¨$°Ó5ˆ ØŸ(™( 4§=¡=°&Ó9ˆØ /ˆ    *ÑÜ 7‰7>‰>˜/Ô *Ü-¨oÓ>ˆFܘ6 ?°FÓ;ˆDÜ y )Õ ,å 'ôKÓ ØØ×!Ñ! $Ó'Øð    &ˆE/Ñ "ô " +¨ÀÓGˆKÜ ˜i¨Õ 3r=có—td«‚©Nz9Can't perform this operation for unregistered loader type©ÚNotImplementedErrorrUs  r:rzNullProvider._has¿ó€Ü!Ø Gó
ð    
r=có—td«‚r´rµrUs  r:r zNullProvider._isdirÄr·r=có—td«‚r´rµrUs  r:r£zNullProvider._listdirÉr·r=có¤—|€ td«‚|j|«|r/tjj|g|j d«¢­ŽS|S)Nz^`base` parameter in `_fn` is `None`. Either override this method or check the parameter first.ú/)r3Ú_validate_resource_pathr r r€r)r8ÚbaserYs   r:r‰zNullProvider._fnÎsR€Ø ˆ<ÜØpóð ð     ×$Ñ$ ]Ô3Ù Ü—7‘7—<‘< Ð@ }×':Ñ':¸3Ó'?Ò@Ð @؈ r=cóº—tjj|jtj
«vxs?t    j |«xs(tj |«xs|jd«}|syd}|jd«stj |«r t    j |«s t|«‚t|dddzt«y)aH
        Validate the resource paths according to the docs.
        https://setuptools.pypa.io/en/latest/pkg_resources.html#basic-resource-access
 
        >>> warned = getfixture('recwarn')
        >>> warnings.simplefilter('always')
        >>> vrp = NullProvider._validate_resource_path
        >>> vrp('foo/bar.txt')
        >>> bool(warned)
        False
        >>> vrp('../foo/bar.txt')
        >>> bool(warned)
        True
        >>> warned.clear()
        >>> vrp('/foo/bar.txt')
        >>> bool(warned)
        True
        >>> vrp('foo/../../bar.txt')
        >>> bool(warned)
        True
        >>> warned.clear()
        >>> vrp('foo/f../bar.txt')
        >>> bool(warned)
        False
 
        Windows path separators are straight-up disallowed.
        >>> vrp(r'\foo/bar.txt')
        Traceback (most recent call last):
        ...
        ValueError: Use of .. or absolute path in a resource path is not allowed.
 
        >>> vrp(r'C:\foo/bar.txt')
        Traceback (most recent call last):
        ...
        ValueError: Use of .. or absolute path in a resource path is not allowed.
 
        Blank values are allowed
 
        >>> vrp('')
        >>> bool(warned)
        False
 
        Non-string values are not.
 
        >>> vrp(None)
        Traceback (most recent call last):
        ...
        AttributeError: ...
        ú\Nz=Use of .. or absolute path in a resource path is not allowed.róz/ and will raise exceptions in a future release.) r r ÚpardirrÚ    posixpathÚsepÚisabsÚntpathr rƒÚ issue_warningÚDeprecationWarning)r ÚinvalidrMs   r:r¼z$NullProvider._validate_resource_pathØs´€ôl G‰GN‰N˜dŸj™j¬¯©Ó7Ð 7ò %܏‰˜tÓ$ò %ä|‰|˜DÓ!ò %ð‰˜tÓ$ð        ñ Ø àMˆð O‰O˜DÔ !¤V§\¡\°$Ô%7ÄÇÁÐQUÔAVܘS“/Ð !ô    Ø ˆHÐHÑ HÜ õ    
r=có’—t|jd«r'|jr|jj|«Std«‚)NÚget_dataz=Can't perform this operation for loaders without 'get_data()')ÚhasattrrrÉr¶rUs  r:rŽzNullProvider._get#s;€Ü 4—;‘; 
Ô +°· ² à—;‘;×'Ñ'¨Ó-Ð -Ü!Ø Kó
ð    
r=©rÚ _ModuleLike©rXržrYr>re©rYr>rM©r6r>rOrQ)rKr>rLrS©r?rN)r?rR)r½rÝrYr>©r?rf)rArBrCrMr‚rIrƒrrprZr\r^rar’rArCrEr”rGr’rIrˆrr r£r‰r[r¼rŽr7r=r:r½r½as¼…ÙOà€HˆjÓØ€HˆjÓØ%)€FÐ "Ó)óLó9óLðDØ&ðDØ7:ðDà    óDó
Dò-óó ó4óFóRóHóó
4ó:
ó
 
ó
 
ó
ðñH
óðH
ôT
r=r½c#óxK—d}||k7r/|–—|}tjj|«\}}||k7rŒ.yy­w)z2
    yield all parents of path including path
    N)r r r)r Úlastrs   r:Ú_parentsrÔ/s=èø€ð €DØ
$Š,ØŠ
؈ܗ'‘'—-‘- Ó%‰ˆˆað $,ùs‚5:¸:có2‡—eZdZdZdˆfd„ Zd„Zdd„ZˆxZS)r¾z&Provider based on a virtual filesystemcóD•—t‰||«|j«yr6)ÚsuperrpÚ _setup_prefix©r8rrÊs  €r:rpzEggProvider.__init__=sø€Ü ‰Ñ˜Ô Ø ×ÑÕr=có—ttt|j««}t    |d«}|xr|j |«yyr6)ÚfilterÚ _is_egg_pathrÔr‡ÚnextÚ_set_egg)r8ÚeggsÚeggs   r:rØzEggProvider._setup_prefixAs;€ô”l¤H¨T×-=Ñ-=Ó$>Ó?ˆÜ4˜ÓˆØ Ò"— ‘ ˜cÕ"Ñ"r=có¤—tjj|«|_tjj    |d«|_||_y)NúEGG-INFO)r r Úbasenamer‚r€rƒÚegg_rootrUs  r:rÞzEggProvider._set_eggHs5€ÜŸ™×(Ñ(¨Ó.ˆŒ ÜŸ™Ÿ ™  T¨:Ó6ˆŒ ؈ r=rËrZ)rArBrCrMrprØrÞÚ __classcell__rs@r:r¾r¾:sø„Ù0õò#÷r=r¾cóF—eZdZdZd    d„Zd    d„Zd„Zd
d„Zd d„Ze    d„«Z
y) r¿z6Provides access to package resources in the filesystemcó@—tjj|«Sr6)r r rrUs  r:rzDefaultProvider._hasQs€Üw‰w~‰~˜dÓ#Ð#r=có@—tjj|«Sr6)r r rrUs  r:r zDefaultProvider._isdirTs€Üw‰w}‰}˜TÓ"Ð"r=có,—tj|«Sr6)r ÚlistdirrUs  r:r£zDefaultProvider._listdirWs€Üz‰z˜$ÓÐr=cóN—t|j|j|«d«S©Nr    )rr‰r‡rWs   r:r\z#DefaultProvider.get_resource_streamZs €ÜD—H‘H˜T×-Ñ-¨}Ó=¸tÓDÐDr=cóf—t|d«5}|j«cddd«S#1swYyxYwrì)rÚread)r8r Ústreams   r:rŽzDefaultProvider._get]s,€Ü $˜Ó ð    ! Ø—;‘;“=÷    !÷    !ò    !ús'§0cóv—d}|D]2}ttj|td««}t    ||«Œ4y)N)ÚSourceFileLoaderÚSourcelessFileLoader)rÚ    importlibÚ    machineryÚtyperÃ)rvÚ loader_namesr6Ú
loader_clss    r:Ú    _registerzDefaultProvider._registeras<€ð
ˆ ð!ò    2ˆDÜ ¤×!4Ñ!4°d¼DÀ»JÓGˆJÜ   ¨SÕ 1ñ    2r=NrÐ)rXÚobjectrYr>rÑ) rArBrCrMrr r£r\rŽrçrør7r=r:r¿r¿Ns3„Ù@ó$ó#ò óEó!ðñ2óñ2r=r¿có>—eZdZUdZdZded<d„xZZd    d„Zd„Z    d„Z
y)
r»z.Provider that returns nothing for all requestsNrÝr‡có—yrr7rUs  r:rtzEmptyProvider.<lambda>ur<r=có—y)Nr=r7rUs  r:rŽzEmptyProvider._getws€Ør=có—gSr6r7rUs  r:r£zEmptyProvider._listdirzs€Øˆ    r=có—yr6r7rÌs r:rpzEmptyProvider.__init__}s€Ø r=rÑ) rArBrCrMr‡rIr rrŽr£rpr7r=r:r»r»os*…Ù8ð#€KÓ"á,Ð,€FˆTóòó r=r»có&—eZdZdZedd„«ZeZy)Ú ZipManifestsz
    zip manifest builder
    c󢇗tj|«5Šˆfd„‰j«D«}t|«cddd«S#1swYyxYw)a
        Build a dictionary similar to the zipimport directory
        caches, except instead of tuples, store ZipInfo objects.
 
        Use a platform-specific path separator (os.sep) for the path keys
        for compatibility with pypy on Windows.
        c3ó€•K—|]5}|jdtj«‰j|«f–—Œ7y­w)r»N)r"r rÂÚgetinfo)rŠr6Úzfiles  €r:r‹z%ZipManifests.build.<locals>.<genexpr>”s;øèø€òð
ð—L‘L ¤b§f¡fÓ-Ø—M‘M $Ó'ôñùsƒ;>N)ÚzipfileÚZipFileÚnamelistrÉ)rvr rWrs   @r:ÚbuildzZipManifests.buildŠsIø€ô_‰_˜TÓ "ð     eóð
"ŸN™NÓ,ô ˆEô˜“;÷    ÷    ò    ús —$AÁANrZ)rArBrCrMrçrrr7r=r:rr„s"„ñð
òóðð$ Dr=rú!MemoizedZipManifests.manifest_modcó.—eZdZdZGd„de«Zdd„Zy)ÚMemoizedZipManifestsz%
    Memoized zipfile manifests.
    có"—eZdZUded<ded<y)r    údict[str, zipfile.ZipInfo]ÚmanifestÚfloatÚmtimeNrHr7r=r:Ú manifest_modz!MemoizedZipManifests.manifest_mod¥s …Ø,Ó,ØŒ r=rcó—tjj|«}tj|«j}||vs||j
|k7r&|j |«}|j||«||<||jS)zW
        Load a manifest at path or return a suitable manifest already loaded.
        )    r r ÚnormpathrEÚst_mtimerrrr)r8r rrs    r:rzMemoizedZipManifests.load©sx€ôw‰w×Ñ Ó%ˆÜ—‘˜“ ×&Ñ&ˆà tÑ ˜t D™z×/Ñ/°5Ò8Ø—z‘z $Ó'ˆHØ×*Ñ*¨8°UÓ;ˆD‰JàD‰z×"Ñ"Ð"r=N)r r>r?r )rArBrCrMr rrr7r=r:r r  s„ñôzôô #r=r cóÀ‡—eZdZUdZdZded<e«Zded<dˆfd„ Zd„Z    d    „Z
e d
„«Z dd „Z ed „«Zdd „Zd„Zd„Zd„Zdd„Zdd„Zd„Zdd„Zdd„ZˆxZS)rÀz"Resource support for zips and eggsNúlist[str] | NoneÚeagersrFrcó|•—t‰||«|jjtj
z|_yr6)r×rprÚarchiver rÂÚzip_prerÙs  €r:rpzZipProvider.__init__¿s*ø€Ü ‰Ñ˜Ô Ø—{‘{×*Ñ*¬R¯V©VÑ3ˆ r=có—|jtj«}||jjk(ry|j |j «r|t|j «dSt|›d|j ›«‚)Nrú is not a subpath of )    Úrstripr rÂrrr rrnÚAssertionError©r8Úfspaths  r:Ú _zipinfo_namezZipProvider._zipinfo_nameÃsh€ð—‘œrŸv™vÓ&ˆØ T—[‘[×(Ñ(Ò (ØØ × Ñ ˜TŸ\™\Ô *Øœ#˜dŸl™lÓ+Ð-Ð.Ð .ܺFÀDÇLÂLÐQÓRÐRr=có—|j|z}|j|jtjz«r8|t |j«dzdj tj«St|›d|j›«‚)NrÕr)rr rär rÂrnrr)r8Úzip_pathr s   r:Ú_partszZipProvider._partsÍsl€ð—‘ Ñ(ˆØ × Ñ ˜TŸ]™]¬R¯V©VÑ3Ô 4Øœ#˜dŸm™mÓ,¨qÑ0Ð2Ð3×9Ñ9¼"¿&¹&ÓAÐ AܺFÀDÇMÂMÐRÓSÐSr=có`—|jj|jj«Sr6)Ú_zip_manifestsrrrrÌs r:ÚzipinfozZipProvider.zipinfoÕs#€à×"Ñ"×'Ñ'¨¯ © ×(;Ñ(;Ó<Ð<r=có*—|js td«‚|j|«}|j«}dj    |j |««|vr(|D]#}|j ||j|««Œ%|j ||«S)Nz5resource_filename() only supported for .egg, not .zipr»)r‚r¶Ú_resource_to_zipÚ_get_eager_resourcesr€r$Ú_extract_resourceÚ _eager_to_zip)r8rXrYr#rr6s      r:rZz!ZipProvider.get_resource_filenameÙs’€Ø}Š}Ü%ØGóð ð×(Ñ(¨Ó7ˆØ×*Ñ*Ó,ˆØ 8‰8D—K‘K Ó)Ó *¨fÑ 4Øò JØ×&Ñ& w°×0BÑ0BÀ4Ó0HÕIð Jà×%Ñ% g¨xÓ8Ð8r=cój—|j}|jdz}tj|«}||fS)N)rrró)Ú    file_sizeÚ    date_timeÚtimeÚmktime)Úzip_statÚsizer/Ú    timestamps    r:Ú_get_date_and_sizezZipProvider._get_date_and_sizeæs5€à×!Ñ!ˆà×&Ñ&¨Ñ3ˆ    ä—K‘K     Ó*ˆ    Ø˜$ˆÐr=cóh—||j«vrg|j«|D]2}|j|tjj    ||««}Œ4tjj «S|j |j|«\}}ts td«‚    |js td«‚|j|j|j|««}|j||«r|Stdtjj |«¬«\}}    tj||j j#|««tj$|«t'|    ||f«|j)|    |«    t+|    |«|S#t$retjj-|«rD|j||«r|cYStj.dk(rt1|«t+|    |«|cYS‚wxYw#t$r|j3«YSwxYw)Nz>"os.rename" and "os.unlink" are not supported on this platformzT"egg_name" is empty. This likely means no egg could be found from the "module_path".z    .$extract)ÚdirrB)Ú_indexr+r r r€r†r5r'Ú WRITE_SUPPORTÚOSErrorr‚r@r$Ú _is_currentÚ_mkstempÚwriterrÉÚcloserrSrÚisfiler6rr7)
r8rXr#r6rÓr4r3Ú    real_pathÚoutfÚtmpnams
          r:r+zZipProvider._extract_resourceðsç€Ø t—{‘{“}Ñ $ØŸ ™ ›  hÑ/ò UØ×-Ñ-¨g´r·w±w·|±|ÀHÈdÓ7SÓT‘ð Uô—7‘7—?‘? 4Ó(Ð (à×1Ñ1°$·,±,¸xÑ2HÓI‰ˆ    4åÜØPóð ð%    'Ø—=’=ÜØjóðð ×.Ñ.¨t¯}©}¸d¿k¹kÈ(Ó>SÓTˆIà×Ñ     ¨8Ô4ؠРä#ØÜ—G‘G—O‘O IÓ.ô‰LˆD&ô H‰HT˜4Ÿ;™;×/Ñ/°Ó9Ô :Ü H‰HTŒNÜ &˜9 iÐ0Ô 1Ø × Ñ  ¨    Ô 2ð ܐv˜yÔ)ð&Ðøô#ò Ü—7‘7—>‘> )Ô,Ø×'Ñ'¨    °8Ô<ð )Ò(䟙 DšÜ˜yÔ)ܘv yÔ1Ø(Ò(Øð ûôò    'à × $Ñ $Õ &àÐð        'úsDÂ-AHÄBHÆ F#Æ#<HÇHÇ!,HÈ HÈHÈHÈH1È0H1có–—|j|j|«\}}tjj    |«sytj
|«}|j |k7s|j|k7ry|jj|«}t|d«5}|j«}ddd«||k(S#1swY|k(SxYw)zK
        Return True if the file_path is current for this zip_path
        Fr    N) r5r'r r r?rEÚst_sizerrrÉrrî)    r8Ú    file_pathr#r4r3rEÚ zip_contentsÚfÚ file_contentss             r:r;zZipProvider._is_current&s­€ð×1Ñ1°$·,±,¸xÑ2HÓI‰ˆ    4܏w‰w~‰~˜iÔ(ØÜw‰wyÓ!ˆØ <‰<˜4Ò  4§=¡=°IÒ#=Øà—{‘{×+Ñ+¨HÓ5ˆ Ü )˜TÓ "ð    % aØŸF™F›HˆM÷    %à˜}Ñ,Ð,÷    %à˜}Ñ,Ð,ús ÂB;Â;Ccó¶—|j€Bg}dD]4}|j|«sŒ|j|j|««Œ6||_|jS)N)znative_libs.txtzeager_resources.txt)rrAr²rE)r8rr6s   r:r*z ZipProvider._get_eager_resources6sZ€Ø ;‰;Р؈FØBò AØ×$Ñ$ TÕ*Ø—M‘M $×"9Ñ"9¸$Ó"?Õ@ð Að!ˆDŒK؏{‰{Ðr=có`—    |jS#t$r–i}|jD]y}|jtj
«}|sŒ%tj
j |dd«}||vr||j|d«Œc|j«g||<|rŒUŒ{||_|cYSwxYw)Nró)    Ú    _dirindexÚAttributeErrorr'rr rÂr€rr¯)r8Úindr ÚpartsÚparents     r:r8zZipProvider._index?s©€ð    Ø—>‘>Ð !øÜò     ØˆCØŸ ™ ò 4ØŸ
™
¤2§6¡6Ó*ÚÜŸV™VŸ[™[¨¨s°¨Ó4FØ ‘}ؘF™ ×*Ñ*¨5°©9Ô5Øà',§y¡y£{ m˜˜F™ ó ð 4ð!ˆDŒNØŠJð     ús‚ Ž;B-Á
AB- B-Â,B-cóh—|j|«}||jvxs||j«vSr6)r!r'r8)r8r r#s   r:rzZipProvider._hasPs1€Ø×%Ñ% fÓ-ˆØ˜4Ÿ<™<Ð'ÒD¨8°t·{±{³}Ð+DÐDr=cóD—|j|«|j«vSr6)r!r8rs  r:r zZipProvider._isdirTs€Ø×!Ñ! &Ó)¨T¯[©[«]Ð:Ð:r=cór—t|j«j|j|«d««SrØ)r«r8rr!rs  r:r£zZipProvider._listdirWs+€ÜD—K‘K“M×%Ñ% d×&8Ñ&8¸Ó&@À"ÓEÓFÐFr=cóX—|j|j|j|««Sr6)r!r‰rär`s  r:r,zZipProvider._eager_to_zipZs"€Ø×!Ñ! $§(¡(¨4¯=©=¸-Ó"HÓIÐIr=cóX—|j|j|j|««Sr6)r!r‰r‡r`s  r:r)zZipProvider._resource_to_zip]s$€Ø×!Ñ! $§(¡(¨4×+;Ñ+;¸]Ó"KÓLÐLr=)rrErÍ)rXržr?r>rÐrÎ)rArBrCrMrrIr r&rpr!r$rår'rZr[r5r+r;r*r8rr r£r,r)rårs@r:rÀrÀ·sø…Ù,à#€FÐ Ó#Ù)Ó+€Nà !Ó!õ4òSòTðñ=óð=ó 9ðñóðó4òl-ò òó"Eó;òGóJ÷Mr=rÀcó<—eZdZdZd    d„Zd„Zd
d„Zd d„Zd„Zd d„Z    y) r¸a*Metadata handler for standalone PKG-INFO files
 
    Usage::
 
        metadata = FileMetadata("/path/to/PKG-INFO")
 
    This provider rejects all data and metadata requests except for PKG-INFO,
    which is treated as existing, and will be the contents of the file at
    the provided location.
    có—||_yr6©r rUs  r:rpzFileMetadata.__init__ps    €Øˆ    r=có—|jSr6rWr@s  r:r’zFileMetadata._get_metadata_pathss €Øy‰yÐr=cób—|dk(xr)tjj|j«S)NúPKG-INFO)r r r?r@s  r:rAzFileMetadata.has_metadatavs#€ØzÑ!Ò?¤b§g¡g§n¡n°T·Y±YÓ&?Ð?r=có—|dk7r td«‚t|jdd¬«5}|j«}ddd«|j    «|S#1swYŒxYw)NrZz(No metadata except PKG-INFO is availabler–r")ÚencodingÚerrors)rrr rîÚ_warn_on_replacement)r8r6rGÚmetadatas    r:rCzFileMetadata.get_metadatays[€Ø :Ò ÜÐEÓFÐ Fä $—)‘) g°iÔ @ð     ÀAØ—v‘v“xˆH÷     à ×!Ñ! (Ô+؈÷     ð     ús ©AÁAcót—d}||vr2d}|jdit«¤Ž}tj|«yy)Nu�z2{self.path} could not be properly decoded in UTF-8r7)rÛrÜrIrJ)r8r_Úreplacement_charr5rMs     r:r^z!FileMetadata._warn_on_replacement‚s;€Ø ÐØ ˜xÑ 'ØGˆDؐ$—+‘+Ñ)¤£Ñ)ˆCÜ M‰M˜#Õ ð (r=có6—t|j|««Sr6rr@s  r:rEzFileMetadata.get_metadata_lines‰ržr=N)r r(rMrÏrO)
rArBrCrMrpr’rArCr^rEr7r=r:r¸r¸ds&„ñ    óòó@óòô4r=r¸có—eZdZdZdd„Zy)r¹asMetadata provider for egg directories
 
    Usage::
 
        # Development eggs:
 
        egg_info = "/path/to/PackageName.egg-info"
        base_dir = os.path.dirname(egg_info)
        metadata = PathMetadata(base_dir, egg_info)
        dist_name = os.path.splitext(os.path.basename(egg_info))[0]
        dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
 
        # Unpacked egg directories:
 
        egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
        metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
        dist = Distribution.from_filename(egg_path, metadata=metadata)
    có —||_||_yr6)r‡rƒ)r8r rƒs   r:rpzPathMetadata.__init__¡s€ØˆÔØ ˆ r=N)r r>rƒr>©rArBrCrMrpr7r=r:r¹r¹s „ñô&!r=r¹có—eZdZdZdd„Zy)rºz Metadata provider for .egg filescó$—|jtjz|_||_|j
r:tj j|j|j
«|_n|j|_|j«y)z-Create a metadata provider from a zipimporterN)
rr rÂrrÚprefixr r€r‡rØ)r8Úimporters  r:rpzEggMetadata.__init__©sc€ð ×'Ñ'¬"¯&©&Ñ0ˆŒ ؈Œ Ø ?Š?Ü!Ÿw™wŸ|™|¨H×,<Ñ,<¸h¿o¹oÓNˆDÕ à'×/Ñ/ˆDÔ Ø ×ÑÕr=N)rirFrer7r=r:rºrº¦s
„Ù*ô    r=rºrÉÚ_distribution_findersz dict[type, _DistFinderType[Any]]có—|t|<y)axRegister `distribution_finder` to find distributions in sys.path items
 
    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
    handler), and `distribution_finder` is a callable that, passed a path
    item and the importer instance, yields ``Distribution`` instances found on
    that path item.  See ``pkg_resources.find_on_path`` for an example.N)rj)Ú importer_typeÚdistribution_finders  r:rÁrÁºs€ð,?Ô˜-Ò(r=cóL—t|«}tt|«}||||«S)z.Yield distributions accessible via `path_item`)rrrj)Ú    path_itemÚonlyriÚfinders    r:r˜r˜Äs(€ä˜IÓ&€HÜ Ô0°(Ó ;€FÙ (˜I tÓ ,Ð,r=c#óŠK—|jjd«ryt|«}|jd«rtj ||¬«–—|ry|j d«D]Õ}t|«rJtjj||«}ttj|«|«}|Ed{–—†ŒX|j«jd«sŒxtjj||«}ttj|««}||_tj!|||«–—Œ×y7Œ†­w)z@
    Find eggs in zip files; possibly multiple nested eggs.
    z.whlNrZ©r_r)ú
.dist-infoú    .egg-info)rÚendswithrºrAr-Ú from_filenamer’rÜr r r€Úfind_eggs_in_zipÚ    zipimportÚ zipimporterrÿrƒÚ from_location)rirorpr_ÚsubitemÚsubpathr~Úsubmetas        r:rxrxËs èø€ð ×Ñ× Ñ  Ô(ð    Ü˜8Ó$€HØ×јZÔ(Ü×(Ñ(¨¸XÐ(ÓFÒFÙ àØ×,Ñ,¨RÓ0ò    JˆÜ ˜Ô  Ü—g‘g—l‘l 9¨gÓ6ˆGÜ$¤Y×%:Ñ%:¸7Ó%CÀWÓMˆEØ× Ñ Ø ]‰]‹_× %Ñ %Ð&AÕ BÜ—g‘g—l‘l 9¨gÓ6ˆGÜ!¤)×"7Ñ"7¸Ó"@ÓAˆGØ&ˆGÔ Ü×,Ñ,¨Y¸ÀÓIÓ Iñ    Jð ús‚B8EÂ:EÂ;$EàA"Ecó—yrØr7)rirorps   r:Ú find_nothingr€ês€ð r=c
#ó„‡K—t‰«Št‰«rBtj‰t    ‰t
j j‰d««¬«–—yˆfd„t‰«D«}t|«D]?}t
j j‰|«}t‰||«}||«Ed{–—†ŒAy7Œ­w)z6Yield distributions accessible on a sys.path directoryrârsNc3ó^•K—|]$}tjj‰|«–—Œ&y­wr6)r r r€)rŠÚchildros  €r:r‹zfind_on_path.<locals>.<genexpr>þs øèø€ÒS°%Œrw‰w|‰|˜I u×-ÑSùsƒ*-) Ú_normalize_cachedÚ_is_unpacked_eggr-rwr¹r r r€Ú safe_listdirÚsortedÚ dist_factory)rirorpriroÚfullpathÚfactorys `     r:Ú find_on_pathr‹ós«øèø€ä! )Ó,€I䘠   Ô"Ü×(Ñ(Ø Ü! )¬R¯W©W¯\©\¸)ÀZÓ-PÓQð)ó
ò    
ð    ãS¼<È    Ó;RÔS€Gô˜“ò%ˆÜ—7‘7—<‘<     ¨5Ó1ˆÜ˜y¨%°Ó6ˆÙ˜8Ó$×$Ñ$ñ%ð    %úsƒB3CÂ6B>Â7Ccól—|j«}|jd«}|jd«xr=tjj    tjj ||««}|xs|}|rt S|st|«rtS|s|jd«rtSt«S)z*Return a dist_factory for the given entry.rurtz    .egg-link) rÿrvr r rr€Údistributions_from_metadatarÜr˜Úresolve_egg_linkÚNoDists)rororprÿÚ is_egg_infoÚ is_dist_infoÚis_metas       r:rˆrˆ    s¦€à K‰K‹M€EØ—.‘. Ó-€KØ—>‘> ,Ó/ò´B·G±G·M±MÜ
‰ ‰ Y Ó&ó5€LðÒ)˜\€Gñ ô    $ðñœ  UÔ+ô ðñ ˜Ÿ™ {Ô3ôð ô‹Yðr=có—eZdZdZd„Zd„Zy)rzS
    >>> bool(NoDists())
    False
 
    >>> list(NoDists()('anything'))
    []
    có—yrr7rÌs r:Ú__bool__zNoDists.__bool__#    s€Ør=có—td«SrØ)Úiter)r8r‰s  r:Ú__call__zNoDists.__call__&    s €ÜB‹xˆr=N)rArBrCrMr•r˜r7r=r:rr    s„ñòór=rcóò—    tj|«S#ttf$rYyt$rF}|j
t
j t
jt
jfvr‚Yd}~yd}~wwxYw)zI
    Attempt to list contents of path, but suppress some exceptions.
    Nr7)    r rêÚPermissionErrorÚNotADirectoryErrorr:ÚerrnoÚENOTDIRÚEACCESÚENOENT)r r|s  r:r†r†*    sk€ð܏z‰z˜$ÓÐøÜ Ô/Ð 0ò Ø ð ô òð 7‰7œ5Ÿ=™=¬%¯,©,¼¿ ¹ ÐEÑ EØ ó Fà ûð ús‚—A6¨A6°<A1Á1A6c#óxK—tjj|«}tjj|«r/t    tj
|««dk(ryt ||«}n t|«}tjj|«}tj|||t¬«–—y­w)Nr)Ú
precedence) r r r†rrnrêr¹r¸rãr-r{r¶)r Úrootr_ros    r:rr:    sèø€Ü 7‰7?‰?˜4Ó  €DÜ    ‡ww‡}}TÔÜ Œrz‰z˜$ÓÓ   AÒ %à Ü".¨t°TÓ":‰ä Ó%ˆÜ G‰G× Ñ ˜TÓ "€EÜ
$Ø Ø ØÜð     %ó óùs‚B8B:c#óvK—t|«j«D]}|j«}|sŒ|–—Œy­w)z1
    Yield non-empty lines from file at path
    N)rªÚ
splitlinesrp)r Úlines  r:Únon_empty_linesr¦L    s8èø€ô)¨Ó.×9Ñ9Ó;òˆØz‰z‹|ˆÚ Ø‹Jñùs‚/9²9cóh‡—t‰«}ˆfd„|D«}tt|«}t|d«S)za
    Given a path to an .egg-link, resolve distributions
    present in the referenced path.
    c3ó˜•K—|]A}tjjtjj‰«|«–—ŒCy­wr6)r r r€r†)rŠÚrefr s  €r:r‹z#resolve_egg_link.<locals>.<genexpr>\    s2øèø€òØ58Œ‰ ‰ ”R—W‘W—_‘_ TÓ*¨C×0ñùsƒAA
r7)r¦rÇr˜rÝ)r Úreferenced_pathsÚresolved_pathsÚ dist_groupss`   r:rŽrŽV    s;ø€ô
' tÓ,ÐóØ<Lô€NôÔ(¨.Ó9€KÜ  ˜RÓ  Ð r=Ú ImpImporterÚ_namespace_handlerszdict[type, _NSHandlerType[Any]]Ú_namespace_packageszdict[str | None, list[str]]có—|t|<y)ašRegister `namespace_handler` to declare namespace packages
 
    `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
    handler), and `namespace_handler` is a callable like this::
 
        def namespace_handler(importer, path_entry, moduleName, module):
            # return a path_entry to use for child packages
 
    Namespace handlers are only called if the importer object has already
    agreed that it can handle the relevant path item, and they should only
    return a subpath if the module __path__ does not already contain an
    equivalent subpath.  For an example namespace handler, see
    ``pkg_resources.file_ns_handler``.
    N)r®)rlÚnamespace_handlers  r:rÂrÂp    s€ð"*;Ô˜ Ò&r=cóÌ—t|«}|€y    |j|«}|r |jnd}€ytjj|«}|€;tj|«x}tj|<g|_ t|«nt|d«s t!d|«‚t#t$|«}|||||«}|?|j}|j'|«t)j*|«t-|||«|S#t$rTt    j
«5t    j d«|j|«}ddd«n #1swYnxYwYŒ1wxYw)zEEnsure that named package includes a subpath of path_item (if needed)NÚignoreÚ__path__úNot a package:)rÚ    find_specrrLrIÚcatch_warningsÚ simplefilterÚ find_moduler~rÿrÚtypesÚ
ModuleTyper´Ú_set_parent_nsrÊr3rr®rróÚ import_moduleÚ_rebuild_mod_path)    Ú packageNameroriÚspecrrÚhandlerr}r s             r:Ú
_handle_nsr„    sF€ô˜IÓ&€HØÐØð/Ø×!Ñ! +Ó.ˆñ!%—’¨$ˆà €~ØÜ [‰[_‰_˜[Ó )€FØ €~Ü,1×,<Ñ,<¸[Ó,IÐIˆ”—‘˜[Ñ)؈ŒÜ{Õ#Ü V˜ZÔ (ÜÐ(¨+Ó6Ð6ÜÔ/°Ó:€Gِh     ¨;¸Ó?€GØÐ؏‰ˆØ  ‰ GÔÜ×Ñ  Ô,ܘ$  ¨VÔ4Ø €Nøô1 ò7ä × $Ñ $Ó &ñ    7Ü × !Ñ ! (Ô +Ø×)Ñ)¨+Ó6ˆF÷    7÷    7ñ    7ýð7ús)DÄE#Ä#'EÅ
    E#ÅE    ÅE#Å"E#có.‡‡‡—tjDcgc] }t|«‘Œc}Šˆfd„Šˆˆfd„}t||¬«}|Dcgc] }t|«‘Œ}}t    |j
t «r||j
ddy||_ycc}wcc}w)zq
    Rebuild module.__path__ ensuring that all entries are ordered
    corresponding to their sys.path order
    có\•—    ‰j|«S#t$rtd«cYSwxYw)z/
        Workaround for #520 and #513.
        Úinf)Úindexrƒr)roÚsys_paths €r:Úsafe_sys_path_indexz._rebuild_mod_path.<locals>.safe_sys_path_index°    s0ø€ð     Ø—>‘> %Ó(Ð (øÜò     Ü˜“<Ò ð     ús ƒ”+ª+cóҕ—|jtj«}‰jd«dz}|d| }‰t    tjj |«««S)zR
        Return the ordinal of the path based on its position in sys.path
        rxrÕN)rr rÂÚcountr„r€)r Ú
path_partsÚ module_partsrNÚ package_namerÈs    €€r:Úposition_in_sys_pathz/_rebuild_mod_path.<locals>.position_in_sys_path¹    sXø€ð—Z‘Z¤§¡Ó'ˆ
Ø#×)Ñ)¨#Ó.°Ñ2ˆ ؘ>˜\˜MÐ*ˆÙ"Ô#4´R·V±V·[±[ÀÓ5GÓ#HÓIÐIr=)rjN)r~r r„r‡rýr´r«)Ú    orig_pathrÍrÚprÎÚnew_pathrÈrÇs `    @@r:r¾r¾©    sú€ô
/2¯h©hÖ7¨Ô! !Õ$Ò7€Hô õJôiÐ%9Ô:€HØ.6Ö7¨Ô! !Õ$Ð7€HÐ7ä&—/‘/¤4Ô(Ø%ˆ‰™Ñà"ˆùò58ùò*8s –B ÁBcó°—d|›d}tj|td¬«tj«    |t
vr    tj «ytj}|jd«\}}}|r<t|«|t
vr t|«    tj|j}t
j!|xsdg«j#|«t
j!|g«|D]}t%||«Œ    tj «y#t$r}td|«|‚d}~wwxYw#tj «wxYw)z9Declare that package 'packageName' is a namespace packagez4Deprecated call to `pkg_resources.declare_namespace(zÖ)`.
Implementing implicit namespace packages (as specified in PEP 420) is preferred to `pkg_resources.declare_namespace`. See https://setuptools.pypa.io/en/latest/references/keywords.html#keyword-namespace-packagesry©Ú
stacklevelNrxrµ)rIrJrÆÚ_impÚ acquire_lockr¯Ú release_lockr~r Ú
rpartitionr•rrÿr´rLr3r€rrÂ)r¿rMr rOrr|ros       r:r•r•Ë    s=€ð ?¸{¸oðN3ð    3ðô ‡MM#Ô)°aÕ8ä×ÑÔðØ Ô-Ñ -Ø ô2     ×ÑÕô/&)§X¡XˆØ"×-Ñ-¨cÓ2‰ ˆ1á Ü ˜fÔ %ØÔ0Ñ0ܘ6Ô"ð AÜ—{‘{ 6Ñ*×3Ñ3ô     ×&Ñ& v¢~°°rÓ:×AÑAÀ+ÔNÜ×&Ñ& {°BÔ7àò    /ˆIô { IÕ .ñ    /ô      ×ÑÕøô"ò AÜР0°&Ó9¸qÐ@ûð Aûô     ×ÑÕús7¸D?ÁAD?ÂD!Â9AD?Ä!    D<Ä* D7Ä7D<Ä<D?Ä?Ecóö—tj«    tj|d«D]}t    ||«}|sŒt ||«Œ    tj «y#tj «wxYw)zDEnsure that previously-declared namespace packages include path_itemr7N)rÕrÖr¯rrÂrÄr×)rorOÚpackager}s    r:rÄrÄö    sc€ä×ÑÔðÜ*×.Ñ.¨v°rÓ:ò    ;ˆGÜ  ¨)Ó4ˆGÚÜ(¨°'Õ:ñ    ;ô
     ×ÑÕøŒ×ÑÕús–'A"¾A"Á"A8có—tjj||jd«d«}t    |«}|j
D]}t    |«|k(sŒy|S)zBCompute an ns-package subpath for a filesystem or zipfile importerrxróN)r r r€rr„r´)riror¿rr}Ú
normalizedr•s       r:Úfile_ns_handlerrÝ
s\€ôg‰gl‰l˜9 k×&7Ñ&7¸Ó&<¸RÑ&@ÓA€GÜ" 7Ó+€JØ—‘òˆÜ ˜TÓ " jÓ 0Ù ðð
ˆr=có—yr6r7)riror¿rs    r:Únull_ns_handlerrß
s€ð r=có—yr6r7©rRs r:r±r±'
s€Ø.1r=có—yr6r7rás r:r±r±)
s€Ø25r=c    óƗtjjtjjtjj    t |««««S)z1Normalize a file/dir name for comparison purposes)r r ÚnormcaseÚrealpathrÚ _cygwin_patchrás r:r±r±+
s:€ä 7‰7× Ñ œBŸG™G×,Ñ,¬R¯W©W×-=Ñ-=¼mÈHÓ>UÓ-VÓWÓ XÐXr=cój—tjdk(rtjj    |«S|S)a
    Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
    symlink components. Using
    os.path.abspath() works around this limitation. A fix in os.getcwd()
    would probably better, in Cygwin even more so, except
    that this seems to be by design...
    Úcygwin)r~rr r Úabspathrás r:ræræ0
s'€ô),¯ © ¸Ò(@Œ27‰7?‰?˜8Ó $ÐNÀhÐNr=có—yr6r7rás r:r„r„>
s€Ø58r=có—yr6r7rás r:r„r„@
rúr=có—yr6r7rás r:r„r„B
r<r=có—t|«Sr6)r±rás r:r„r„E
s €ä˜hÓ'Ð'r=có2—t|«xs t|«S)z7
    Determine if given path appears to be an egg.
    )Ú _is_zip_eggr…rWs r:rÜrÜJ
s€ô tÓ Ò 6Ô 0°Ó 6Ð6r=có°—|j«jd«xr6tjj    |«xrt j |«S)Nú.egg)rÿrvr r r?rÚ
is_zipfilerWs r:rïrïQ
sC€à 
‰
‹ ×јfÓ%ò    %Ü G‰GN‰N˜4Ó  ò    %ä × Ñ ˜tÓ $ðr=cóÀ—|j«jd«xr>tjj    tjj |dd««S)z@
    Determine if given path appears to be an unpacked egg.
    rñrârZ)rÿrvr r r?r€rWs r:r…r…Y
sE€ð :‰:‹<×  Ñ   Ó (ò ¬R¯W©W¯^©^Ü
‰ ‰ T˜: zÓ2ó.ðr=có̗|jd«}|j«}|rAdj|«}ttj
||tj
|«yy)Nrx)rr¯r€Úsetattrr~rÿ)r¿rNr6rOs    r:r¼r¼b
sP€Ø × Ñ ˜cÓ "€EØ 9‰9‹;€DÙ Ø—‘˜%“ˆÜ”— ‘ ˜FÑ# T¬3¯;©;°{Ñ+CÕDð r=z \w+(\.\w+)*$z–
    (?P<name>[^-]+) (
        -(?P<ver>[^-]+) (
            -py(?P<pyver>[^-]+) (
                -(?P<plat>.+)
            )?
        )?
    )?
    cóB—eZdZdZ            d                                    dd„Zd„Zd„Ze            d                            dd„«Ze                                dd„«Z    d                            dd„Zdd    „Z            d            dd
„Z
e jd «Z eddd „«Zed „«Ze    d                    dd„«Ze    d            dd„«Zy)rŸz3Object representing an advertised importable objectNcóœ—t|«s td|«‚||_||_t    |«|_t    |«|_||_y)NzInvalid module name)ÚMODULErƒr6Ú module_nameÚtupleÚattrsr§rÑ)r8r6rùrûr§rÑs      r:rpzEntryPoint.__init__|
sF€ôkÔ"ÜÐ2°KÓ@Ð @؈Œ    Ø&ˆÔܘ5“\ˆŒ
ܘF“mˆŒ ؈    r=cóð—|j›d|j›}|jr!|ddj|j«zz }|jr!|ddj|j«zz }|S)Nz = ú:rxz [%s]ú,)r6rùrûr€r§)r8Úss  r:rðzEntryPoint.__str__Œ
sa€ØŸ› D×$4Ò$4Ð 5ˆØ :Š:Ø s—x‘x §
¡
Ó+Ñ+Ñ +ˆAØ ;Š;Ø ˜3Ÿ8™8 D§K¡KÓ0Ñ0Ñ 0ˆA؈r=có—dt|«zS)NzEntryPoint.parse(%r)©r>rÌs r:rÍzEntryPoint.__repr__”
s€Ø%¬¨D«    Ñ1Ð1r=có—yr6r7)r8r‡r¤r¥s    r:rzEntryPoint.load—
ó€ð "r=có—yr6r7©r8r‡rsÚkwargss    r:rzEntryPoint.loadž
rr=cóŽ—|r|s|rtjdtd¬«|r|j|i|¤Ž|j    «S)zH
        Require packages for this EntryPoint, then resolve it.
        zJParameters to load are deprecated.  Call .resolve and .require separately.ryrÓ)rIrJrÅr‡rzrs    r:rzEntryPoint.load¥
sH€ñ™$¡&Ü M‰Mð'ä.Øõ     ñ ð ˆDL‰L˜$Ð ) &Ò )؏|‰|‹~Ðr=có̗t|jdgd¬«}    tjt|j
|«S#t $r}tt|««|‚d}~wwxYw)zD
        Resolve the entry point from its module and attrs.
        rAr)ÚfromlistÚlevelN)    rrùÚ    functoolsÚreducerrûrLrtr>)r8rr›s   r:rzzEntryPoint.resolve»
sY€ô˜D×,Ñ,¸
°|È1ÔMˆð    1Ü×#Ñ#¤G¨T¯Z©Z¸Ó@Ð @øÜò    1Üœc #›hÓ'¨SÐ 0ûð    1ús›$AÁ    A#Á    AÁA#có4—|js!|jrtnt}|d|«‚|jj    |j«}t
j ||||j¬«}ttt
j|««y)Nz&Can't require() without a distribution)r§)
rÑr§r£rLrr–rzr«rÇr{)r8r¤r¥Ú    error_clsr}rWs      r:r‡zEntryPoint.requireÅ
sp€ð
yŠyØ(,¯ ª  ¼ˆIÙÐDÀdÓKÐ Kðy‰y×!Ñ! $§+¡+Ó.ˆÜ×#Ñ# D¨#¨yÀÇÁÐ#ÓMˆÜ ŒS”—‘ %Ó (Õ)r=z]\s*(?P<name>.+?)\s*=\s*(?P<module>[\w.]+)\s*(:\s*(?P<attr>[\w.]+))?\s*(?P<extras>\[.*\])?\s*$cóú—|jj|«}|sd}t||«‚|j«}|j    |d«}|dr|dj d«nd}||d|d|||«S)aParse a single entry point from string `src`
 
        Entry point syntax follows the form::
 
            name = some.module:some.attr [extra1, extra2]
 
        The entry name and module name are required, but the ``:attrs`` and
        ``[extras]`` parts are optional
        z9EntryPoint must be in 'name=module:attrs [extras]' formatr§Úattrrxr7r6r)Úpatternr}rƒÚ    groupdictÚ _parse_extrasr)rvÚsrcrÑr…rMÚresr§rûs        r:r2zEntryPoint.parseà
sƒ€ð K‰K× Ñ ˜cÓ "ˆÙØMˆCܘS #Ó&Ð &؏k‰k‹mˆØ×"Ñ" 3 x¡=Ó1ˆØ*-¨fª+F‘ ×!Ñ! #Ô&¸2ˆÙ3v‘;  H¡ ¨u°f¸dÓCÐCr=cót—|sytjd|z«}|jrt‚|jS)Nr7Úx)r0r2Úspecsrƒr§)rvÚ extras_specrÖs   r:rzEntryPoint._parse_extrasô
s4€áØÜ×Ñ  kÑ 1Ó2ˆØ 9Š9ÜР؏z‰zÐr=cóä—t|«s td|«‚i}t|«D]H}|j||«}|j|vrtd||j«‚|||j<ŒJ|S)zParse an entry point groupzInvalid group namezDuplicate entry point)rørƒrr2r6)rvr‚ÚlinesrÑÚthisr¥Úeps       r:Ú parse_groupzEntryPoint.parse_groupý
su€ôeŒ}ÜÐ1°5Ó9Ð 9Ø "ˆÜ Ó&ò    ˆDØ—‘˜4 Ó&ˆB؏w‰w˜$‰Ü Ð!8¸%ÀÇÁÓIÐI؈D—‘ŠMð        ð
ˆ r=có—t|t«r|j«}n t|«}i}|D]K\}}|€|sŒ t    d«‚|j «}||vr t    d|«‚|j |||«||<ŒM|S)z!Parse a map of entry point groupsz%Entry points must be listed in groupszDuplicate group name)rýrÉrWr«rƒrpr)rvÚdatarÑÚ_dataÚmapsr‚rs       r:Ú    parse_mapzEntryPoint.parse_map s€ô dœDÔ !Ø—J‘J“L‰Eä" 4Ó(ˆEØ+-ˆØ!ò    >‰LˆE5؈}ÙØÜ Ð!HÓIÐIØ—K‘K“MˆEؘ‰}Ü Ð!7¸Ó?Ð?ØŸ/™/¨%°¸Ó=ˆDŠKð    >ðˆ r=)r7r7N)
r6r>rùr>rûú Iterable[str]r§r$rÑrÜ)TNN)r‡z Literal[True]r¤ràr¥rãr?Ú_ResolvedEntryPoint)r‡zLiteral[False]rsrrrr?r%ræ)r‡rNrsú#Environment | _InstallerType | Nonerr&r?r%)r?r%)NN)r¤ràr¥rãr6)rr>rÑrÜ)r‚r>rr/rÑrÜ)r z4str | Iterable[str] | dict[str, str | Iterable[str]]rÑrÜ)rArBrCrMrprðrÍrrrzr‡rbr«rrçr2rrr#r7r=r:rŸrŸy
sÄÙ=ð  "Ø "Ø$(ð àððððð    ð
ð ð "ó ò ò2ðð"&Ø"&Ø+/ð    "àð"ð ð"ð)ð    "ð
 
ò "óð"ð ð"àð"ðð"ðð    "ð
 
ò "óð"ððàðð3ðð6ð    ð
 
ó ó,1ð#'Ø+/ð*à ð*ð)ó*ð$ˆbj‰jð    #ó€GðóDóðDð&ñóððð
%)ð    àðððð"ò    óðð"ð%)ðàBðð"òóñr=rŸcó®—d„}t||«}tt|«d«}|jd«\}}}t    |j ««xsdS)z„
    Given an iterable of lines from a Metadata file, return
    the value of the Version field, if present, or None otherwise.
    có@—|j«jd«S)Nzversion:)rÿr )r¥s r:Úis_version_linez+_version_from_file.<locals>.is_version_line. s€Øz‰z‹|×&Ñ& zÓ2Ð2r=rrýN)rÛrÝr—Ú    partitionr¨rp)rr)Ú version_linesr¥rršs      r:Ú_version_from_filer,( sP€ò 3ô˜?¨EÓ2€MÜ ”]Ó# RÓ (€DØ—.‘. Ó%K€A€qˆ%Ü ˜Ÿ ™ › Ó &Ò .¨$Ð.r=có‡—eZdZdZdZddddedef                                                    d,d„Ze    d-                                    d.d„«Z    d„Z
e d„«Z d„Z d/d    „Zd/d
„Zd/d „Zd/d „Zd0d „Zd0d„Ze d„«Ze d„«Ze d„«Ze d„«Ze d„«Zed1d„«Zd„Zd2d3d„Zd„Zd„Zd„Zd4d5d„Z d„Z!d„Z"d„Z#d„Z$ˆfd„Z%e    d-                    d6d „«Z&d!„Z'd7d"„Z(e)d-d8d#„«Z*e)d9d$„«Z*d-d:d%„Z*d;d&„Z+        d4            d<d'„Z,d(„Z-d)„Z.d=d*„Z/e d+„«Z0ˆxZ1S)>r-z5Wrap an actual or potential sys.path entry w/metadatarZNcó¦—t|xsd«|_|t|«|_||_||_||_||_|xst|_    y)NÚUnknown)
r§r³r¨Ú_versionrørršr¡r¼Ú    _provider)r8ršr_r³r%rørr¡s        r:rpzDistribution.__init__< sP€ô& lÒ&?°iÓ@ˆÔØ Ð Ü(¨Ó1ˆDŒMØ$ˆŒØ ˆŒ Ø ˆŒ Ø$ˆŒØ!Ò3¤^ˆr=c ó<—dgdz\}}}}tjj|«\}}    |    j«tvr=t|    j«}t |«}
|
r|
j dddd«\}}}}|||f||||dœ|¤Žj«S)Nrr6ÚverÚpyverr„)r³r%rør)r r ÚsplitextrÿÚ_distributionImplÚEGG_NAMEr‚Ú_reload_version) rvršrãr_Úkwr³r%rørÚextr}s            r:r{zDistribution.from_locationO s¸€ð8<°f¸q±jÑ3ˆ g˜z¨8ÜŸ™×(Ñ(¨Ó2‰ ˆ#Ø 9‰9‹;Ô+Ñ +Ü# C§I¡I£KÑ0ˆCä˜XÓ&ˆEÙØ>C¿k¹kؘE 7¨Fó?Ñ; ˜g z°8ñØ Ø ð
ð&ØØ!Øñ 
ðñ
÷ ‰/Ó
ð    r=có—|Sr6r7rÌs r:r8zDistribution._reload_versionk s€Øˆ r=cóš—|j|j|j|j|jxsd|j
xsdfS)Nr)Ú_forgiving_parsed_versionr¡rjršrørrÌs r:rzDistribution.hashcmpn sD€ð × *Ñ *Ø O‰OØ H‰HØ M‰MØ O‰OÒ !˜rØ M‰MÒ ˜Rð 
ð    
r=có,—t|j«Sr6)ÚhashrrÌs r:Ú__hash__zDistribution.__hash__y s€ÜD—L‘LÓ!Ð!r=có4—|j|jkSr6©r©r8rs  r:Ú__lt__zDistribution.__lt__| ó€Ø|‰|˜eŸm™mÑ+Ð+r=có4—|j|jkSr6rBrCs  r:Ú__le__zDistribution.__le__ ó€Ø|‰|˜uŸ}™}Ñ,Ð,r=có4—|j|jkDSr6rBrCs  r:Ú__gt__zDistribution.__gt__‚ rEr=có4—|j|jk\Sr6rBrCs  r:Ú__ge__zDistribution.__ge__… rHr=cób—t||j«sy|j|jk(Sr)rýrÊrrCs  r:Ú__eq__zDistribution.__eq__ˆ s&€Ü˜% §¡Ô0àØ|‰|˜uŸ}™}Ñ,Ð,r=có—||k( Sr6r7rCs  r:Ú__ne__zDistribution.__ne__Ž ó€Ø˜5‘=РРr=c󀗠   |jS#t$r&|jj«x|_}|cYSwxYwr6)Ú_keyrLr³rÿrs  r:rjzDistribution.key• s@€ð    Ø—9‘9Ð øÜò    Ø"×/Ñ/×5Ñ5Ó7Ð 7ˆDŒI˜ØŠJð    ús ‚ Ž,=¼=cóZ—t|d«s'    t|j«|_|jS|jS#tj
$rW}d|j ›d}t|d«r|j|«‚t    j
t|«›d|›«d‚d}~wwxYw)NÚ_parsed_versionz
(package: ú)Úadd_noter)    rÊr¦r%rUrfrhr³rWr>)r8ÚexÚinfos   r:Úparsed_versionzDistribution.parsed_version s¨€ätÐ.Ô/ð WÜ'4°T·\±\Ó'BÔ$ð×#Ñ#Ð#ˆt×#Ñ#Ð#øô&×4Ñ4ò WØ# D×$5Ñ$5Ð#6°aÐ8Ü˜2˜zÔ*Ø—K‘K Ô%ØÜ(×7Ñ7¼3¸r»7¸)À1ÀTÀFÐ8KÓLÐRVÐVûð  WúsŽAÁB*ÁAB%Â%B*c
ó~—    |jS#tj$r›}tt    |j
««|_djt|dg««}dt|«›d|›d|j ›d|j›d    }tj|t«|j cYd}~Sd}~wwxYw)Nr¦Ú    __notes__zg!!
 
 
            *************************************************************************
            zl
 
            This is a long overdue deprecation.
            For the time being, `pkg_resources` will use `z¤`
            as a replacement to avoid breaking existing environments,
            but no future compatibility is guaranteed.
 
            If you maintain package zÚ you should implement
            the relevant changes to adequate the project to PEP 440 immediately.
            *************************************************************************
            
 
!!
            )rZrfrhr¦rsr%rUr€rr>r³rIrJrÆ)r8rXÚnotesrMs    r:r=z&Distribution._forgiving_parsed_version« s¼€ð    (Ø×&Ñ&Ð &øÜ!×0Ñ0ò    (Ü#0Ô1CÀDÇLÁLÓ1QÓ#RˆDÔ  à—I‘Iœg b¨+°rÓ:Ó;ˆEð ä ‹WˆIR˜wð;ð<@×;OÑ;OÐ:PðQ%ð&*×%6Ñ%6Ð$7ð8 ð ˆCô M‰M˜#Ô1Ô 2à×'Ñ'Õ 'ûð)    (ús‚ ŽB<¡BB7Â1B<Â7B<cóø—    |jS#t$rb}|j«}|€D|j|j«}dj |j|«}t ||«|‚|cYd}~Sd}~wwxYw)Nz4Missing 'Version:' header and/or {} file at path: {})r0rLÚ _get_versionÚ_get_metadata_path_for_displayÚPKG_INFOrÛrƒ)r8r|r%r rMs     r:r%zDistribution.versionÅ sw€ð     Ø—=‘=Ð  øÜò        Ø×'Ñ'Ó)ˆG؈Ø×:Ñ:¸4¿=¹=ÓIØM×UÑUØ—M‘M 4óô!  dÓ+°Ð2àNûð        ús‚ Ž    A9—AA4Á.A9Á4A9c󘗠   |jS#t$r2|j|j««|_Y|jSwxYw)z~
        A map of extra to its list of (direct) requirements
        for this distribution, including the null extra.
        )Ú_Distribution__dep_maprLÚ_filter_extrasÚ_build_dep_maprÌs r:Ú_dep_mapzDistribution._dep_mapÔ sH€ð     HØ—>‘>Ð !øÜò    HØ!×0Ñ0°×1DÑ1DÓ1FÓGˆDN؏~‰~Ðð    Hús‚ Ž-A    ÁA    có,—ttd|««D]{}|}|j|«}|jd«\}}}|xrt    |«xs t |« }|rg}t |«xsd}|j|g«j|«Œ}|S)z¤
        Given a mapping of extras to dependencies, strip off
        environment markers and filter out any dependencies
        not matching the markers.
        Nrý)    r«rÛr¯r*r®r¯r¬r€r²)ÚdmrëÚ    new_extrar}rríÚ fails_markers       r:rdzDistribution._filter_extrasà s¡€ôœ&  rÓ*Ó+ò     6ˆEØ$)ˆIØ—6‘6˜%“=ˆDØ#(§?¡?°3Ó#7Ñ  ˆIq˜&Ø!òܘvÓ&ÒE¬o¸fÓ.EÐ*Eð ñؐÜ" 9Ó-Ò5°ˆIà M‰M˜) RÓ (× /Ñ /°Õ 5ð     6ðˆ    r=có°—i}dD]N}t|j|««D]/\}}|j|g«jt    |««Œ1ŒP|S)N)z requires.txtz depends.txt)r«Ú _get_metadatar€r²r¥)r8rhr6rër}s     r:rezDistribution._build_dep_mapõ sc€Ø ˆØ1ò    JˆDÜ-¨d×.@Ñ.@ÀÓ.FÓGò J‘ tØ— ‘ ˜e RÓ(×/Ñ/Ô0BÀ4Ó0HÕIñ Jð    Jðˆ    r=cóò—|j}g}|j|jdd««|D] }    |j|t|««Œ"|S#t$r}t |›d|›«|‚d}~wwxYw)z@List of Requirements needed for this distro if `extras` are usedNr7z has no such extra feature )rfr²rr¬rr£)r8r§rhÚdepsr:r|s      r:rzDistribution.requiresü s€à ]‰]ˆØ"$ˆØ  ‰ B—F‘F˜4 Ó$Ô%Øò    ˆCð Ø— ‘ ˜Bœz¨#›Ñ/Õ0ð    ðˆ øô    ò Ü"Ú9=¹sÐCóàðûð ús¶AÁ    A6Á A1Á1A6có\—    |jj|«}|S#t$rYywxYw)zK
        Return the path to the given metadata file, if available.
        z[could not detect])r1r’r:r”s   r:r`z+Distribution._get_metadata_path_for_display
s8€ð        (ð—>‘>×4Ñ4°TÓ:ˆDðˆ øôò    (Ù'ð    (ús ‚Ÿ    +ª+c#ófK—|j|«r|j|«Ed{–—†yy7Œ­wr6)rArEr@s  r:rlzDistribution._get_metadata s0èø€Ø × Ñ ˜TÔ "Ø×.Ñ.¨tÓ4× 4Ñ 4ð #Ø 4ús ‚&1¨/©1cóN—|j|j«}t|«Sr6)rlrar,)r8rs  r:r_zDistribution._get_version s!€Ø×"Ñ" 4§=¡=Ó1ˆÜ! %Ó(Ð(r=có —|€tj}|j||¬«|tjurW|jJt    |j«|j d«D] }|tj vsŒt|«Œ"yyy)z>Ensure distribution is importable on `path` (default=sys.path)Nr˜únamespace_packages.txt)r~r r™ršrÄrlrÿr•)r8r r"Úpkgs    r:ÚactivatezDistribution.activate# sx€à ˆ<Ü—8‘8ˆDØ ‰t WˆÔ-Ø ”3—8‘8Ñ  § ¡ Р9Ü $ T§]¡]Ô 3Ø×)Ñ)Ð*BÓCò +Øœ#Ÿ+™+Ò%Ü% cÕ*ñ +ð!:Ð r=cóƗt|j«›dt|j«›d|jxst›}|j
r|d|j
zz }|S)z@Return what this distribution's standard .egg filename should berzz-py)r­r³r%rørr)r8rRs  r:r‚zDistribution.egg_name. sU€ô ˜×)Ñ)Õ *Ü ˜Ÿ ™ Õ %Ø O‰OÒ 'œxÐ 'ð
ˆð =Š=Ø ˜˜dŸm™mÑ+Ñ +ˆH؈r=cóT—|jr|›d|j›dSt|«S)Nz (rV)ršr>rÌs r:rÍzDistribution.__repr__: s"€Ø =Š=Ú $ d§m£mÐ4Ð 4ät“9Ð r=cón—    t|dd«}|xsd}|j›d|›S#t$rd}YŒ$wxYw)Nr%z[unknown version]r)rrƒr³)r8r%s  r:rðzDistribution.__str__@ sI€ð    Ü˜d I¨tÓ4ˆGðÒ0Ð0ˆØ×+Ó+©WÐ5Ð5øôò    ØŠGð    ús ‚ &¦ 4³4cóf—|jd«r t|«‚t|j|«S)zADelegate all unrecognized public attributes to .metadata providerr)r rLrr1)r8rs  r:Ú __getattr__zDistribution.__getattr__H s*€à ?‰?˜3Ô Ü  Ó&Ð &ܐt—~‘~ tÓ,Ð,r=cóš•—ttt‰| ««td„|jj«D««z«S)Nc3óDK—|]}|jd«rŒ|–—Œy­w©rN)r )rŠrs  r:r‹z'Distribution.__dir__.<locals>.<genexpr>Q sèø€ÒX˜4À4Ç?Á?ÐSVÕCW”$ÑXùs‚ ™ )r«r“r×Ú__dir__r1)r8rÊs €r:r~zDistribution.__dir__N s@ø€ÜÜ ”‘‘Ó!Ó "ÜÑX 4§>¡>×#9Ñ#9Ó#;ÔXÓXñ Yó
ð    
r=c óx—|jt|«tjj    |«|fi|¤ŽSr6)r{r„r r rã)rvrRr_r9s    r:rwzDistribution.from_filenameT s<€ð!ˆs× Ñ Ü ˜hÓ '¬¯©×)9Ñ)9¸(Ó)CÀXñ
ØQSñ
ð    
r=cóâ—t|jtj«r|j›d|j›}n|j›d|j›}t
j |«S)z?Return a ``Requirement`` that matches this distribution exactlyz==z===)rýrZrfrgr³r0r2)r8rÀs  r:rÈzDistribution.as_requirement_ sV€ä d×)Ñ)Ô+=×+EÑ+EÔ FØ#×0Ó0°$×2EÒ2EÐF‰Dà $× 1Ó 1°4×3FÒ3FÐGˆDä× Ñ  Ó&Ð&r=cól—|j||«}|€td||f›d«‚|j«S)z=Return the `name` entry point of `group` or raise ImportErrorz Entry point z
 not found)rrtr)r8r‚r6rs    r:r‹zDistribution.load_entry_pointh s7€à ×  Ñ   ¨Ó -ˆØ ˆ:ݸUÀDºMÐKÓLÐ L؏w‰w‹yÐr=có—yr6r7©r8r‚s  r:rŒzDistribution.get_entry_mapo s€ØUXr=có—yr6r7rƒs  r:rŒzDistribution.get_entry_mapq s€ØBEr=có—t|d«s*tj|jd«|«|_||jj |i«S|jS)r;Ú_ep_mapzentry_points.txt)rÊrŸr#rlr†rrƒs  r:rŒzDistribution.get_entry_maps sX€ät˜YÔ'Ü%×/Ñ/Ø×"Ñ"Ð#5Ó6¸óˆDŒLð Ð Ø—<‘<×#Ñ# E¨2Ó.Ð .؏|‰|Ðr=cóB—|j|«j|«Sr=)rŒrrŒs   r:rzDistribution.get_entry_info} s€à×!Ñ! %Ó(×,Ñ,¨TÓ2Ð2r=cóÊ—|xs |j}|syt|«}tjj    |«}|Dcgc]}|xr t|«xs|‘Œ}}t |«D]|\}}||k(r|rn¹y||k(sŒ|j tk(sŒ+|s    |||dvry|tjur|j«|j||«|j||«nJ|tjur|j«|r|jd|«y|j|«y        |j||dz«}    ||    =||    =|    }Œcc}w#t$rYywxYw)aäEnsure self.location is on path
 
        If replace=False (default):
            - If location is already in path anywhere, do nothing.
            - Else:
              - If it's an egg and its parent directory is on path,
                insert just ahead of the parent.
              - Else: add to the end of path.
        If replace=True:
            - If location is already on path anywhere (not eggs)
              or higher priority than its parent (eggs)
              do nothing.
            - Else:
              - If it's an egg and its parent directory is on path,
                insert just ahead of the parent,
                removing any lower-priority entries.
              - Else: add it to the front of path.
        NrrÕ)ršr„r r r†Ú    enumerater¡r²r~Úcheck_version_conflictržrrÆrƒ)
r8r Úlocr"ÚnlocÚbdirrÐÚnpathr•Únps
          r:r™zDistribution.insert_on‚ sz€ð2Ò"T—]‘]ˆÙØ ä  Ó%ˆÜw‰w‰˜tÓ$ˆØ<@ÖA°q!Ò,Ô)¨!Ó,Ò1°Ñ1ÐAˆÐAä  Ó'ò    ‰GˆAˆtؐtŠ|ÙÙñؘ“ $§/¡/´XÓ"=ñ  T¨U°1°2¨YÑ%6ÙØœ3Ÿ8™8Ñ#Ø×/Ñ/Ô1Ø— ‘ ˜A˜sÔ#Ø— ‘ ˜Q Ô%Ùð#    ð&”s—x‘xÑØ×+Ñ+Ô-ÙØ— ‘ ˜A˜sÔ#ð ð— ‘ ˜CÔ Ø ðð Ø—[‘[  q¨1¡uÓ-ð˜"I˜t B˜xàðùò=BøôBò Øð     ð úsÁEÄ3EÅ    E"Å!E"c
óô—|jdk(rytj|jd««}t    |j
«}|jd«D]›}|t jvs ||vs|tvrŒ"|dvrŒ'tt j|dd«}|r6t    |«j|«s|j|j
«rŒ}td|›d|›d|j
›d    «Œy)
setuptoolsrsz top_level.txt)Ú pkg_resourcesr‘Úsiter…zModule z was already imported from z, but z is being added to sys.path) rjrÉrÊrlr±ršr~rÿr¯rr rÅ)r8Únspr‹ÚmodnameÚfns     r:rŠz#Distribution.check_version_conflictË sÕ€Ø 8‰8|Ò #à äm‰m˜D×.Ñ.Ð/GÓHÓIˆÜ˜TŸ]™]Ó+ˆØ×)Ñ)¨/Ó:ò    ˆGàœsŸ{™{Ñ*ؘc‘>ØÔ1Ñ1àØÐAÑAØÜœŸ™ WÑ-¨z¸4Ó@ˆBÙܘrÓ"×-Ñ-¨cÔ2°b·m±mÀDÇMÁMÔ6RàÝ â")ª2¨t¯}«}ð>õ ñ    r=có~—    |jy#t$rtdt|«z«Yyt$rYywxYw)NzUnbuilt egg for FT)r%rƒrÅrËÚ SystemErrorrÌs r:rzDistribution.has_versionå sD€ð    Ø LŠLðøô ò    Ü Ð,¬t°D«zÑ9Ô :ÙÜò    áð    ús‚  <±<»<c     óƗd}|j«D]}|j|t||d««Œ!|jd|j«|jdi|¤ŽS)z@Copy this distribution, substituting in any changed keyword argsz<project_name version py_version platform location precedenceNr_r7)rr€rr1rÊ)r8r9r=rs    r:ÚclonezDistribution.cloneð sY€àNˆØ—K‘K“Mò    ;ˆDØ M‰M˜$¤¨¨d°DÓ 9Õ :ð    ;à
 ‰ j $§.¡.Ô1àˆt~‰~Ñ# Ñ#Ð#r=cóF—|jDcgc]}|sŒ|‘Œ    c}Scc}wr6)rf)r8Údeps  r:r§zDistribution.extrasù s€à#Ÿ}™}Ö4˜²’Ò4Ð4ùÒ4s—)ršrÝr_Ú _MetadataTyper³rÝr%rÝrørÝrrÝr¡r#r6)
ršr>rãr(r_rr9r#r?r-)rr-©rrù)rhú#dict[str | None, list[Requirement]]rY)r§r$r)r rr"rN)rRr(r_rr9r#)r‚r>r6r>r?r%)r‚rTr?ú dict[str, dict[str, EntryPoint]])r‚r>r?údict[str, EntryPoint])r‚rÝ)r‚r>r6r>)r rRr"rN)r9z$str | int | IResourceProvider | None)2rArBrCrMrarr²rprçr{r8rårr@rDrGrJrLrNrPrjrZr=r%rfr[rdrerr`rlr_rur‚rÍrðrzr~rwrÈr‹rrŒrr™rŠrršr§rårs@r:r-r-7 sLø„Ù?à€Hð $Ø"&Ø#'Ø"Ø!)Ø#Ø"ð4àð4ð ð4ð!ð    4ð
ð 4ð ð 4ðð4ðó4ð&ð
#'ð    àðððð ð    ð
ð ð
ò óðò6ðñ
óð
ò"ó,ó-ó,ó-ó-ó !ðñóððñ $óð $ðñ(óð(ð2ñ óð ðñ    óð    ðòóðò(ô òò"5ò)ô    +ò
òò 6ò-ô 
ð ð#'ð
àð
ð ð
ðò    
óð
ò'óðÛXóØXØ ÚEóØEôó3ð Øð    GàðGðó    GòRò4    ó$ðñ5óô5r=có—eZdZd„Zy)ÚEggInfoDistributioncó8—|j«}|r||_|S)añ
        Packages installed by distutils (e.g. numpy or scipy),
        which uses an old safe_version, and so
        their version numbers can get mangled when
        converted to filenames (e.g., 1.11.0.dev0+2329eae to
        1.11.0.dev0_2329eae). These distributions will not be
        parsed properly
        downstream by Distribution and safe_version, so
        take an extra step and try to get the version number from
        the metadata file itself instead of the filename.
        )r_r0)r8Ú
md_versions  r:r8z#EggInfoDistribution._reload_versionÿ s!€ð×&Ñ&Ó(ˆ
Ù Ø&ˆDŒM؈ r=N)rArBrCr8r7r=r:r£r£þ s„ór=r£có`—eZdZdZdZej d«Zed„«Z    ed„«Z
dd„Z y)    ÚDistInfoDistributionzV
    Wrap an actual or potential sys.path entry
    w/metadata, .dist-info style.
    ÚMETADATAz([\(,])\s*(\d.*?)\s*([,\)])có엠   |jS#t$r\|j|j«}tj
j «j|«|_|jcYSwxYw)zParse and cache metadata)Ú    _pkg_inforLrCraÚemailÚparserÚParserÚparsestr)r8r_s  r:Ú_parsed_pkg_infoz%DistInfoDistribution._parsed_pkg_info s]€ð    "Ø—>‘>Ð !øÜò    "Ø×(Ñ(¨¯©Ó7ˆHÜ"Ÿ\™\×0Ñ0Ó2×;Ñ;¸HÓEˆDŒNØ—>‘>Ò !ð    "ús‚ ŽA"A3Á2A3có|—    |jS#t$r$|j«|_|jcYSwxYwr6)Ú_DistInfoDistribution__dep_maprLÚ_compute_dependenciesrÌs r:rfzDistInfoDistribution._dep_map$ s:€ð    "Ø—>‘>Ð !øÜò    "Ø!×7Ñ7Ó9ˆDŒNØ—>‘>Ò !ð    "ús ‚ Ž*;º;có$‡—dgi|_gŠ|jjd«xsgD]}‰jt    |««Œˆfd„}t j tj|d«««}|jdj|«|jjd«xsgD]C}t|j««}||«Dcgc]    }||vsŒ|‘Œ c}|j|<ŒE|jScc}w)z+Recompute this distribution's dependencies.Nz Requires-Distc3óx•K—‰D]0}|jr|jjd|i«sŒ-|–—Œ2y­w)Nrërì)rërÖr}s  €r:Úreqs_for_extrazBDistInfoDistribution._compute_dependencies.<locals>.reqs_for_extra5 s8øèø€Øò Ø—z’z S§Z¡Z×%8Ñ%8¸'À5Ð9IÕ%JØ“Iñ ùsƒ/:³:zProvides-Extra) r±r¯Úget_allr²r¥rºÚMappingProxyTyperÉrÊr¬rp)r8rÖrµÚcommonrëÚs_extraÚrr}s       @r:r²z*DistInfoDistribution._compute_dependencies, söø€à?CÀR¸jˆŒà"$ˆà×(Ñ(×0Ñ0°ÓAÒGÀRò    1ˆCØ K‰KÔ*¨3Ó/Õ 0ð    1ô    ô
×'Ñ'¬¯ © ±nÀTÓ6JÓ(KÓLˆØ ‰tÑ×#Ñ# FÔ+à×*Ñ*×2Ñ2Ð3CÓDÒJÈò    ˆEÜ  §¡£Ó/ˆGá)¨%Ó0ö'ذA¸V²O’ò'ˆDN‰N˜7Ò #ð    ð ~‰~Ðùò    's Ã!    D Ã+D N)r?rŸ) rArBrCrMrarbr«ÚEQEQrår¯rfr²r7r=r:r§r§ sJ„ñð
€HØ ˆ2:‰:Ð4Ó 5€Dà ñ"óð"ðñ"óð"ôr=r§)rñrurtcó—d}t«}    tj|«j|ur'|dz }tj|«j|urŒ't j |d|dzi|¤Žy#t$rYŒ&wxYw)NrÕrÔ)rVr~rŽrrƒrIrJ)rsr9r
rZs    r:rÅrÅM s~€Ø €EÜ‹    €Að ôm‰m˜EÓ"×,Ñ,°Ñ1Ø Q‰JˆEôm‰m˜EÓ"×,Ñ,°Ò1ô ‡MM¨Ð4˜U Q™YÐ4°Ó4øô ò Ù ð úsŽAA1Á1    A=Á<A=c ób—tttttt    |««««S)z
    Yield ``Requirement`` objects for each specification in `strs`.
 
    `strs` must be a string, or a (possibly-nested) iterable thereof.
    )rÇr0r rr)Ústrss r:r¥r¥Z s#€ô Œ{Ô-¬c´,Ä ÈDÓ@QÓ.RÓSÓ TÐTr=có—eZdZdZy)ÚRequirementParseErrorz,Compatibility wrapper for InvalidRequirementNrLr7r=r:rÀrÀc s„Ú2r=rÀcóT‡—eZdZdˆfd„ Zd    d„Zd„Zd
d„Zd„Zd„Ze    d d„«Z
ˆxZ S) r0có^•—t‰||«|j|_t    |j«}||j «c|_|_|jDcgc]}|j|jf‘Œc}|_ ttt|j««|_|j|j |jt#|j«|j$rt'|j$«ndf|_t+|j(«|_ycc}w)z>DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!N)r×rpr6Ú unsafe_namer§rÿr³rjÚ    specifierrr%rrúrÇr¬r§ÚurlÚ    frozensetrír>ÚhashCmpr?Ú_Requirement__hash)r8Úrequirement_stringr³rÀrÊs    €r:rpzRequirement.__init__h sÕø€ä ‰ÑÐ+Ô,ØŸ9™9ˆÔÜ  §¡Ó+ˆ Ø&2°L×4FÑ4FÓ4HÐ#ˆÔ˜4œ8Ø@DÇÁÖO¸t—}‘} d§l¡lÒ3ÒOˆŒ
ä"'¬¬J¸¿ ¹ Ó(DÓ"EˆŒ à H‰HØ H‰HØ N‰NÜ d—k‘kÓ "Ø $§ ¢ ŒC— ‘ Ô °ð 
ˆŒ ô˜4Ÿ<™<Ó(ˆ ùòPsÁ"D*cóX—t|t«xr|j|jk(Sr6)rýr0rÇrCs  r:rNzRequirement.__eq__z s!€Ü˜%¤Ó-ÒO°$·,±,À%Ç-Á-Ñ2OÐOr=có—||k( Sr6r7rCs  r:rPzRequirement.__ne__} rQr=có¨—t|t«r&|j|jk7ry|j}|jj |d¬«S)NFT)Ú prereleases)rýr-rjr%rÄÚcontains)r8r•s  r:r„zRequirement.__contains__€ sD€Ü dœLÔ )؏x‰x˜4Ÿ8™8Ò#Øà—<‘<ˆDð
~‰~×&Ñ& t¸Ð&Ó>Ð>r=có—|jSr6)rÈrÌs r:r@zRequirement.__hash__Œ s €Ø{‰{Ðr=có—dt|«zS)NzRequirement.parse(%r)rrÌs r:rÍzRequirement.__repr__ s€Ø&¬¨T«Ñ2Ð2r=có —t|«\}|Sr6)r¥)rÿrÖs  r:r2zRequirement.parse’ s€ä# AÓ&‰ˆØˆ
r=)rÉr>rž)r•z$Distribution | str | tuple[str, ...]r?rN)rÿzstr | Iterable[str]) rArBrCrprNrPr„r@rÍr[r2rårs@r:r0r0g s6ø„õ)ó$Pò!ó
?òò3ðòóôr=có*—t|vr
|tfzS|S)zJ
    Ensure object appears in the mro even
    for old-style classes.
    )rù)Úclassess r:Ú_always_objectrÔ˜ s€ô
WÑØœ&˜Ñ"Ð"Ø €Nr=c ó¬—ttjt|dt    |««««}|D] }||vsŒ||cSt d|›d|›«‚)z2Return an adapter factory for `ob` from `registry`rÊzCould not find adapter for z and )rÔÚinspectÚgetmrorrõr3)ÚregistryrkrºÚts    r:rr¢ s]€ä œ7Ÿ>™>¬'°"°kÄ4ÈÃ8Ó*LÓMÓ N€EØ òˆØ Š=ؘA‘;Ò ðô
Ð1°(°¸5ÀÀÐEÓ
FÐFr=cóp—tjj|«}tj|d¬«y)z1Ensure that the parent directory of `path` existsT)Úexist_okN)r r r†Úmakedirs)r r†s  r:r°r°­ s"€äg‰go‰o˜dÓ#€G܇KK $Ö'r=có´—ts td«‚t|«\}}|r(|r%t|«st    |«    t |d«yyyy#t $rYywxYw)z/Sandbox-bypassing version of ensure_directory()z*"os.mkdir" not supported on this platform.iíN)r9r:rrr9rÚFileExistsError)r r†rRs   r:r9r9³ s^€å ÜÐBÓCÐCܘd› Ñ€GˆXÙ‘8¤E¨'¤NÜ  Ô)ð    Ü '˜5Õ !ð%38€wøôò    Ù ð    ús» A Á     AÁAc#óþK—d}g}t|«D]a}|jd«r=|jd«r |s|r||f–—|ddj«}g}ŒEt    d|«‚|j |«Œc||f–—y­w)asSplit a string or iterable thereof into (section, content) pairs
 
    Each ``section`` is a stripped version of the section header ("[section]")
    and each ``content`` is a list of stripped lines excluding blank lines and
    comment-only lines.  If there are any such lines before the first section
    header, they're returned in a first ``section`` of ``None``.
    Nú[ú]rÕrózInvalid section heading)rr rvrprƒr)rÿÚsectionÚcontentr¥s    r:r«r«À sèø€ð€GØ€GܘA“ò
!ˆØ ?‰?˜3Ô Ø}‰}˜SÔ!Ù™gØ! 7Ð*Ò*ؘq ˜*×*Ñ*Ó,Ø‘ä Ð!:¸DÓAÐAà N‰N˜4Õ  ð
!ð 7Ð
Óùs‚A;A=có¢—tj}    tt_tj|i|¤Ž|t_S#|t_wxYwr6)r rÚos_openÚtempfileÚmkstemp)rsr9Úold_opens   r:r<r<Ú s;€Üw‰w€Hð䌌Ü×Ñ Ð,¨Ñ,ðŒø(Œús ’#AÁ Ar³)Úcategoryrcó—eZdZdZy)rÅz«
    Base class for warning about deprecations in ``pkg_resources``
 
    This class is not derived from ``DeprecationWarning``, and as such is
    visible by default.
    NrLr7r=r:rÅrÅì s„òr=rÅ)ré
ÚlocalecóD—    t|dd¬«5}|j«cddd«S#1swYyxYw#t$r`d|›d|›d|›d}tj|t
d    ¬
«t|d|¬«5}|j«cddd«cYS#1swYYyxYwwxYw) z5See setuptools.unicode_utils._read_utf8_with_fallbackrºr–)r\Nz        ********************************************************************************
        `encoding="utf-8"` fails with z, trying `encoding=z¨`.
 
        This fallback behaviour is considered **deprecated** and future versions of
        `setuptools/pkg_resources` may not implement it.
 
        Please encode a° with "utf-8" to ensure future builds will succeed.
 
        If this file was produced by `setuptools` itself, cleaning up the cached files
        and re-building/re-installing the package with a newer version of `setuptools`
        (e.g. by updating `build-system.requires` in its `pyproject.toml`)
        might solve the problem.
        ********************************************************************************
        ryrÓ)rrîr˜rIrJrÅ)ÚfileÚfallback_encodingrGrMs    r:rªrªù s­€ðÜ $˜ gÔ .ð    °!Ø—6‘6“8÷    ÷    ò    ûä òð'à'+ hÐ.AÐBSÐAVðWð
hð    ð ˆô"     ‰ cÔ9ÀaÕHÜ $˜Ð&7Ô 8ð    ¸AØ—6‘6“8÷    ÷    õ    úð'ús;‚6*     6ª3¯6³6¶?BÁ5BÂ
BÂB    ÂBÂBcó—||i|¤Ž|Sr6r7)rGrsrs   r:Ú _call_asiderñs€Ù€tЈvÒØ €Hr=cój‡—t«Š‰|d<|jˆfd„t‰«D««y)z=Set up global resource manager (deliberately not state-saved)Ú_managerc3ó\•K—|]#}|jd«s|t‰|«f–—Œ%y­wr})r r)rŠr6rXs  €r:r‹z_initialize.<locals>.<genexpr> s1øèø€ò à Ø‰˜sÔ#ð
Œww Ó%Ô&ñ ùsƒ),N)ržrhr7)rZrXs @r:Ú _initializerõs3ø€ôÓ€GØ€A€jM؇HHó 䘓Lô õr=cóŠ—tddtj««}|j}|j}|j
}|j }|}td„|D««|d„d¬«g|_tt|jtj««t«jt!««y)aE
    Prepare the master working set and make the ``require()``
    API available.
 
    This function has explicit effects on the global state
    of pkg_resources. It is intended to be invoked once at
    the initialization of this module.
 
    Invocation by other packages is unsupported and done
    at their own risk.
    rùr–c3ó@K—|]}|jd¬«–—Œy­w)Fr˜N©ru)rŠrÑs  r:r‹z1_initialize_master_working_set.<locals>.<genexpr>@sèø€Ò    ?¨4ˆ$-‰- ˆ-×
&Ñ    ?ùs‚có&—|jd¬«S)NTr˜rør/s r:rtz0_initialize_master_working_set.<locals>.<lambda>Bs€T—]‘]¨4]Ó0€r=F)rÕN)rSrrxr‡rŽrÖrˆrúrir«rÇrnr~r rVrhrÜ)r–r‡rŽr—rˆrÆs      r:Ú_initialize_master_working_setrú's¡€ô! ¨=¼*×:RÑ:RÓ:TÓU€Kà×!Ñ!€GØ#×5Ñ5ÐØ)×3Ñ3ÐØ×'Ñ'€Jà€Hô
 
Ñ    ?°;Ô    ?Ô?ÙÙ0Øõð€KÔ䌈[× "Ñ "¤C§H¡HÓ    -Ô.Ü ƒI×Ñ”V“XÕr=)rPr>rQr>rRr+r?r+)r?rS)rYrSr?rS)rõztype[_ModuleLike]röÚ_ProviderFactoryType)rùr>r?r1)rùr0r?r-)rùzstr | Requirementr?z IResourceProvider | Distribution)r'rÝr(rÝ)rÑr,r?r,)rÑrXr?r-)rÑzDistribution | _PkgReqTyper?r-)rÑÚ _EPDistTyper‚r>r6r>r?r%r6)rÑrür‚rTr?r )rÑrür‚r>r?r¡)rÑrür‚rÝ)rÑrür‚r>r6r>)r?r>rÏ)r%r>)rër>)r{r>)r{r>rërÝr?rN)rlútype[_T]rmz_DistFinderType[_T]r)ror>rprN)rirFror>rprNr?rÞ)riú object | NonerorÝrpz bool | None)rirþ)r r)rZ)rlrýr±z_NSHandlerType[_T])rr@)r¿r>)ror>rOrÝ)rirùror(r¿r>rr@)rirùrorÝr¿rÝrz_ModuleLike | None)rRr(r?r>)rRr'r?rf)rRr))rRr)r?z str | bytes)r¾r/)rØzMapping[type, _AdapterT]rkrùr?r2)rÿr/r?z&Iterator[tuple[str | None, list[str]]])rîr>r?r>(rMÚ
__future__rr~Ú version_infoÚ RuntimeErrorr r‹r0rbrºÚtypingrrrr    r
r r r rrrrrrrrrryrIrEr Úpkgutilrrr­rÚ email.parserr«rœrær1rÖrÄrÁróÚ importlib.abcÚimportlib.machineryrrÕrrråÚos.pathrrrrrr9rtÚ pip._internal.utils._jaraco_textrrr Úpip._vendor.packagingr!r~r"Ú_packaging_requirementsr#r›r%rfÚpip._vendor.platformdirsr&r_Ú    _typeshedr'r(r)Útyping_extensionsr*r+r,r>r/Ú_InstallerTypeTÚ_InstallerTyperXrürr%rdrùr»rÌrûrNÚ_DistFinderTypeÚ_NSHandlerTyper2r4rEr«ÚIrlÚRuntimeWarningrKrgr¦rNrIrSr]r`rerlrnrpÚ
_sget_noneÚ
_sset_noner†Ú__all__r:r r¡ràr¢r£ròrÛrr²r³r´rµr¶rÃr‰Ú    lru_cacherrr{r|r&r©rªrŠr‹rŒrr·r1rr¬rœrÇr¤ržr›r§r¨rsror¬r­r®r¯r½rÔr¾r¿rør»r¼rr rÀrzr¸r¹rºrjrÁr˜rxr€r‹rˆrr†rr¦rŽrÊr­rôÚ
FileFinderr®r¯rÂrÂr¾r•rÄrÝrßr±rær„rÜrïr…r¼r}røÚVERBOSEÚ
IGNORECASEr7rŸr,r-r£r§r6rÅr¥ÚInvalidRequirementrÀr0rÔrr°r9r«r<ÚfilterwarningsÚWarningrÅÚ_LOCALE_ENCODINGrªrñrVrõrúÚ__resource_managerr“r”r‘rrr’r™ršr–r‡rŽrÖr—rˆrÆr7r=r:ú<module>r s
ðòõ&#ã
à×ѐfÒÙ
Ð8Ó
9Ð9ã    Û    Û Û    Û ÷÷÷÷óó$ÛÛÛ ÛÛÛÛÛÛÛÛ ÛÛÛÛ ÛÛÛÛÝ ã õÝß ðß(Ñ(à€M÷
ñõ
@ÝIÝ;Ý?ÝFáß<Ñ<Ý&ñ ˆTƒ]€ÙÐ)°Ô@€à 3˜  s¨H°\Ñ,BÐ'BÑ!CÑDÐDÑ E€
ؘM˜?Ð,<Ð<Ñ=€Ø˜=˜/¨5Ð1EÑ+FÐFÑG€ØC˜Ð&Ñ'€ ؐN KÐ/Ñ0€ ØÐ/Ñ0€ ØÐØ€àF˜E×,Ñ,Ð,Ñ-€ à  Ð':Р:Ñ;ÐØ˜B  T˜?¨H°^Ñ,DÐDÑE€Ø˜2˜s C¨×)9Ñ)9Ð:¸EÀ#ÀtÀ)Ñ<LÐLÑM€Ù ؐ Ñ%Ð';¸^ÈCÑ=Pó €    ô EhôEô&xô&ð2—:‘:ÐMÈrÏtÉtÓTÐôNôð#×*Ñ*€ ð!€ ˆ^Ó óó
óòòò
òñ-Ð,€
ˆZòò0S €ôl9iô9ô0oô0ô@
 ô
ô˜?ôô:I?ôIðFHÐÐBÓGà ˆ7>Š>˜3×+Ñ+Ð ,€Ø €Ø€ Ø€ Ø€ Ø€ ð    8Ø"ð    8Ø6Jó    8ð
Ú<ó
Ø<Ø    Ú?ó
Ø?ó
>ð€×Ò˜TÔ"ñ
ó#ð
òNòð2 R—Z‘ZР;Ó<ÐØ b—j‘jÐ!CÓDÐà!€ ó.ðb
ÚAó
ØAØ    Ú<ó
Ø<ó    ó@ð
 
à%)ð+Ø
ð+Ø"ð+à%ò+ó
ð+ð
ÚNó
ØNô7ó
>ô
L˜ôLô.NÐ)¨8ôN÷D^&ñ^&ôB2m U¨3°¨8¡_Ð4Ñ5ô2÷(~ñ~ðD%Ðô)lô)÷(tñtónXó/ó    6ò"ò2@ó9ó"ó ô $÷H
ñH
ñVV˜\Ô*ò&ô,ôô(2kô2ð<×ÒÔô Lô ñ$“€ô4˜Ð@Ð@ÑAôô8#˜<ô#ô.gM+ôgMñTY×*Ò*¨KÔ8ô&4=ô&4ôR!?ô!ô2 +ô ñ;IØ
Ð # Ró;ÐÐ7óó
?ô-ðCHðJØ#ðJØ03ðJØ;?ðJàóJñ8    ×%Ò%Ð'7Ô8ðINðØðØ(2ðØ:Eóñ ˜ Ô%ô%ò(÷& ñ ó  ó ò$ò
!ñ ˆ7MÔ"ِG×'Ò'¨Ô6ᐠ   ×#Ò#×.Ò.° Ô=á7EØ
Ð ! 2ó8ÐÐ4óñ4BØ
Ð ! 2ó4ÐÐ0óð
;Øð;Ø0Bó;ò("óJ#óD(ôV    ðØðàðððð ó    ñ$ ˆ7MÔ"Ù˜w×2Ò2°OÔDá˜9×0Ò0°/ÔBÙ˜9×.Ò.×9Ò9¸?ÔKðØðàðððð ó    ñ˜6 ?Ô3ð
Ú1ó
Ø1Ø    Ú5ó
Ø5óYó
OñðÚ8óØ8Ø Ú<óØ<ÜGð€Y×Ò Ô&ñ(ó'ð(ò7òòòEð
ˆ‰OÓ    $×    *Ò    *€Ø ˆ2:‰:ðð‡J‚J—’Ñó ÷‚%ð    ÷lñlò^ /÷D5ñD5ôN˜,ôô&2˜<ô2ðl Ø$Ø&ñÐò
5óUô3Ð3×FÒFô3ô.Ð)×5Ò5ô.òbóGó(ò
óò4ð€×Ò˜¨=ÀÕFô Wôð #×/Ñ/°7Ò:‘8ÀÐð;Kôò: ð
 Ù“)òó ðð ñ ó ð ñFá(Ó*ÐØ(×8Ò8€OØ'×6Ò6€NØ*×<Ò<ÐØ(×8Ò8€OØ(×8Ò8€OØ)×:Ò:ÐØ,×@Ò@ÐØ*×<Ò<Ðá“,KÙ×!Ò!GÙ#×5Ò5ÑÙ)×3Ò3ÑÙ×'Ò'JÙ‚Hð#øðkoòàƒMðúsà _ß_"ß!_"