hyb
2025-12-31 6cdcd01f77e11b72c323603e27ebdb85b15223c9
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
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
Ë
nñúh#kãóB—ddlmZddlmZmZmZddlmZmZmZddl    Z    ddl
Z ddl m Z ddlmZmZddlmZmZmZmZmZmZmZmZmZmZmZmZmZmZm Z m!Z!m"Z"m#Z#m$Z$ddl%m&Z&dd    l'm(Z(dd
l)m*Z*dd l+m,Z,dd l-m.Z.m/Z/m0Z0m1Z1m2Z2m3Z3dd l4m5Z5m6Z6m7Z7ddl8m9Z9ddl:m;Z<ddl=m>Z>ddl?m@cmAZBddlCmDZDddlEmFZFmGZGer&ddlHmIZIddlJmKZKmLZLmMZMmNZNmOZOmPZPmQZQmRZRddlSmTZTddl:mUZUdZVed,d-d„«ZWed,d.d„«ZW    d/                    d0d„ZWd1d2d„ZXGd„de<j²e<j´«Z[ddddddd œ                                                    d3d!„Z\                                        d4d"„Z]                d5                                    d6d#„Z^d1d7d$„Z_d8d%„Z`d&„Za    d9                    d:d'„Zb                                d;d(„Zc                        d<d)„Zd                d=d*„Ze                                        d>d+„Zfy)?é)Ú annotations)ÚdatetimeÚ    timedeltaÚtzinfo)Ú TYPE_CHECKINGÚcastÚoverloadN)Úusing_string_dtype)ÚlibÚtslib)Ú
BaseOffsetÚNaTÚNaTTypeÚ
ResolutionÚ    TimestampÚastype_overflowsafeÚfieldsÚget_resolutionÚget_supported_dtypeÚget_unit_from_dtypeÚints_to_pydatetimeÚis_date_array_normalizedÚis_supported_dtypeÚ is_unitlessÚnormalize_i8_timestampsÚ    timezonesÚ    to_offsetÚtz_convert_from_utcÚ tzconversion)Úabbrev_to_npy_unit)ÚPerformanceWarning)Úfind_stack_level)Úvalidate_inclusive)Ú DT64NS_DTYPEÚ INT64_DTYPEÚ is_bool_dtypeÚis_float_dtypeÚis_string_dtypeÚ pandas_dtype)ÚDatetimeTZDtypeÚExtensionDtypeÚ PeriodDtype)Úisna)Ú datetimelike)Úgenerate_regular_range)Úget_period_alias)ÚDayÚTick)ÚIterator)Ú    ArrayLikeÚDateTimeErrorChoicesÚDtypeObjÚIntervalClosedTypeÚSelfÚ TimeAmbiguousÚTimeNonexistentÚnpt©Ú    DataFrame©Ú PeriodArrayi'có—y©N©©ÚtzÚunits  úOH:\Change_password\venv_build\Lib\site-packages\pandas/core/arrays/datetimes.pyÚ tz_to_dtyperG_ó€àócó—yrArBrCs  rFrGrGdrHrIcóR—|€tjd|›d«St||¬«S)zÚ
    Return a datetime64[ns] dtype appropriate for the given timezone.
 
    Parameters
    ----------
    tz : tzinfo or None
    unit : str, default "ns"
 
    Returns
    -------
    np.dtype or Datetime64TZDType
    úM8[ú]rC)ÚnpÚdtyper*rCs  rFrGrGis-€ð
€z܏x‰x˜#˜d˜V 1˜ Ó&Ð&ä "¨4Ô0Ð0rIcó@‡—ˆfd„}||_||_t|«S)Nc󀕗|j«}‰|jvr£‰jd«rn|j}d}|r.|j}|j d|j dd««}t j|‰|j||j¬«}|St j|‰|j¬«}|S‰|jvr7t j|‰|j¬«}|j|d¬«}|St j|‰|j¬«}|j|dd¬«}|S)    N)ÚstartÚendé Ú startingMonthÚmonth©Úreso©Ú
fill_valueÚfloat64)rZÚconvert)Ú_local_timestampsÚ    _bool_opsÚendswithÚfreqÚkwdsÚgetrÚget_start_end_fieldÚfreqstrÚ_cresoÚget_date_fieldÚ _object_opsÚget_date_name_fieldÚ_maybe_mask_results)ÚselfÚvaluesr`Úmonth_kwraÚresultÚfields      €rFÚfz_field_accessor.<locals>.fs+ø€Ø×'Ñ'Ó)ˆà D—N‘NÑ "ð~‰~Ð.Ô/Ø—y‘yØÙØŸ9™9DØ#Ÿx™x¨¸¿¹À'È2Ó9NÓOHä×3Ñ3ؘE 4§<¡<°ÀÇ Á ôðˆMô ×.Ñ.¨v°uÀ4Ç;Á;ÔOðˆMà D×$Ñ$Ñ $Ü×/Ñ/°¸ÀDÇKÁKÔPˆFØ×-Ñ-¨fÀÐ-ÓFˆFðˆ ô ×*Ñ*¨6°5¸t¿{¹{ÔKˆFØ×-Ñ-Ø 4°ð.óˆFðˆ rI)Ú__name__Ú__doc__Úproperty)ÚnamernÚ    docstringros `  rFÚ_field_accessorru~s#ø€ô ðD€A„JØ€A„IÜ A‹;ÐrIc    ó‡—eZdZUdZdZej dd«Zeej fZ    d„Z
dZ e dzd„«Z gd¢Zd    ed
<d d gZd    ed <gd¢Zd    ed<gd¢Zd    ed<eezezezdgzZd    ed<gd¢Zd    ed<dZded<dZded<eZed{d„«Zed„«Zedef                            d|ˆfd„ «Zeddd œd}d!„«Zeddej>ej>ddd"d#œ                                            d~d$„«Z e                    ddd%œ                                                    d€d&„«Z!dd'„Z"d‚d(„Z#dƒd)„Z$d„d*„Z%e d…d+„«Z&e d†d,„«Z'e'jPd-„«Z'e d†d.„«Z)e d‡d/„«Z*e dˆd0„«Z+d‰dŠˆfd1„ Z,d‹d2„Z-dŒd}ˆfd3„ Z.ddd4œ            dd5„Z/d‡d6„Z0dƒd7„Z1dŽd8„Z2dd9„Z3dd:„Z4e5jl        d‘                    d’d;„«Z7d“d<„Z8dd=„Z9d”d•d>„Z:d”d“d?„Z;d”d“d@„Z<e d“dA„«Z=e d“dB„«Z>e d“dC„«Z?d–dD„Z@eAdEdFdG«ZBeAdHdIdJ«ZCeAdKdLdM«ZDeAdNdOdP«ZEeAdQdRdS«ZFeAdTdUdV«ZGeAdWdXdY«ZHeAdZdd[«ZId\ZJeAd]d^eJ«ZKeKZLeKZMeAd_d`da«ZNeNZOeAdbdcdd«ZPeAdedfdg«ZQeQZRdhZSeAdidieSj©dj¬k««ZUeAdldleSj©dm¬k««ZVeAdndndo«ZWeAdpdpdq«ZXeAdrdrds«ZYeAdtdtdu«ZZeAdvdvdw«Z[d—dx„Z\                        d˜                    d™dy„Z]ˆxZ^S)šÚ DatetimeArraya{
    Pandas ExtensionArray for tz-naive or tz-aware datetime data.
 
    .. warning::
 
       DatetimeArray is currently experimental, and its API may change
       without warning. In particular, :attr:`DatetimeArray.dtype` is
       expected to change to always be an instance of an ``ExtensionDtype``
       subclass.
 
    Parameters
    ----------
    values : Series, Index, DatetimeArray, ndarray
        The datetime data.
 
        For DatetimeArray `values` (or a Series or Index boxing one),
        `dtype` and `freq` will be extracted from `values`.
 
    dtype : numpy.dtype or DatetimeTZDtype
        Note that the only NumPy dtype allowed is 'datetime64[ns]'.
    freq : str or Offset, optional
        The frequency.
    copy : bool, default False
        Whether to copy the underlying array of values.
 
    Attributes
    ----------
    None
 
    Methods
    -------
    None
 
    Examples
    --------
    >>> pd.arrays.DatetimeArray._from_sequence(
    ...    pd.DatetimeIndex(['2023-01-01', '2023-01-02'], freq='D'))
    <DatetimeArray>
    ['2023-01-01 00:00:00', '2023-01-02 00:00:00']
    Length: 2, dtype: datetime64[ns]
    Ú datetimearrayrÚnscóR—tj|d«xst|t«S©NÚM)r Ú is_np_dtypeÚ
isinstancer*)Úxs rFú<lambda>zDatetimeArray.<lambda>Ös#€¤S§_¡_°Q¸Ó%<ò&Ä
Ø    Œ?óA€rI)rÚ
datetime64Údatecó—tSrA)r©rjs rFÚ _scalar_typezDatetimeArray._scalar_typeÛs€äÐrI)Úis_month_startÚ is_month_endÚis_quarter_startÚis_quarter_endÚ is_year_startÚ is_year_endÚ is_leap_yearz    list[str]r^r`rDrg)ÚyearrVÚdayÚhourÚminuteÚsecondÚweekdayÚ    dayofweekÚ day_of_weekÚ    dayofyearÚ day_of_yearÚquarterÚ days_in_monthÚ daysinmonthÚ microsecondÚ
nanosecondÚ
_field_ops)r‚ÚtimeÚtimetzÚ
_other_opsrEÚ_datetimelike_ops) Ú    to_periodÚ tz_localizeÚ
tz_convertÚ    normalizeÚstrftimeÚroundÚfloorÚceilÚ
month_nameÚday_nameÚas_unitÚ_datetimelike_methodsièú)np.dtype[np.datetime64] | DatetimeTZDtypeÚ_dtypeNúBaseOffset | NoneÚ_freqcóf—tj|d¬«dvrt‚|j||¬«S)NT©Úskipna)rr©rO)r Ú infer_dtypeÚ
ValueErrorÚ_from_sequence)ÚclsÚscalarsrOs   rFÚ _from_scalarszDatetimeArray._from_scalarss4€ä ?‰?˜7¨4Ô 0Ð8RÑ RôÐ Ø×!Ñ! '°Ð!Ó7Ð7rIcó*—t|«}t|j«t|tj«r|j|k7r t    d«‚|Stj
|j«d}||j k7r t    d«‚|S)Nz'Values resolution does not match dtype.r)Ú_validate_dt64_dtyperOr~rNr¶Ú datetime_datarE)r¸rkrOÚvunits    rFÚ_validate_dtypezDatetimeArray._validate_dtype#s€ô% UÓ+ˆÜ˜VŸ\™\Ô*Ü eœRŸX™XÔ &؏|‰|˜uÒ$Ü Ð!JÓKÐKð
ˆ ô×$Ñ$ V§\¡\Ó2°1Ñ5ˆEؘŸ
™
Ò"Ü Ð!JÓKÐK؈ rIcóH•—t|tj«sJ‚|jdk(sJ‚t|tj«r||jk(sJ‚t |«r&J‚|j t|j«k(sJ‚t‰|%||«}||_
|Sr{) r~rNÚndarrayÚkindrOrrerÚsuperÚ _simple_newr°)r¸rkr`rOrmÚ    __class__s     €rFrÄzDatetimeArray._simple_new2s”ø€ô˜&¤"§*¡*Ô-Ð-Ð-؏z‰z˜SÒ Ð Ð Ü eœRŸX™XÔ &ؘFŸL™LÒ(Ð (Ð(Ü" 5Ô)Ð )Ð)ð—<‘<Ô#6°v·|±|Ó#DÒDÐ DÐDä‘Ñ$ V¨UÓ3ˆØˆŒ ؈ rIF©rOÚcopycó*—|j|||¬«S©NrÆ)Ú_from_sequence_not_strict)r¸r¹rOrÇs    rFr·zDatetimeArray._from_sequenceGs€à×,Ñ,¨W¸EÈÐ,ÓMÐMrIÚraise)rOrÇrDr`ÚdayfirstÚ    yearfirstÚ    ambiguousc    óŒ—|du}    |tjurd}ntj|«}t    |«}t |||    «}d}
|t j|«}
t j||d¬«\}}d} t|t«r |j} t|||||||
¬«\} }t |||    «| |    r td«‚tj| j «d} t#|| «}|j%| | |¬«}|
 |
|j&k7r|j)|
«}d|i}|j+||«|S)    z\
        A non-strict version of _from_sequence, called from DatetimeIndex.__new__.
        Nrw)Úcls_name©rÇrDrÌrÍrÎÚout_unitz^Passed data is timezone-aware, incompatible with 'tz=None'. Use obj.tz_localize(None) instead.r©r`rOrÎ)r Ú
no_defaultrÚ maybe_get_tzr¼Ú_validate_tz_from_dtypeÚdtlÚ dtype_to_unitÚ!ensure_arraylike_for_datetimeliker~rwr`Ú_sequence_to_dt64r¶rNr½rOrGrÄrEr«Ú_maybe_pin_freq)r¸ÚdatarOrÇrDr`rÌrÍrÎÚexplicit_tz_nonerEÚ inferred_freqÚsubarrÚ    data_unitÚ
data_dtypermÚ validate_kwdss                 rFrÊz'DatetimeArray._from_sequence_not_strictKs]€ð& ˜:ÐØ ”—‘Ñ Ø‰Bä×'Ñ'¨Ó+ˆBä$ UÓ+ˆä $ U¨BÐ0@Ó AˆàˆØ Ð Ü×$Ñ$ UÓ+ˆDä×:Ñ:Ø $ ô
‰
ˆˆdðˆ Ü dœMÔ *Ø ŸI™IˆMä&Ø ØØØØØØô
‰
ˆô       rÐ+;Ô<Ø ˆ>Ñ.Üð5óð ô
×$Ñ$ V§\¡\Ó2°1Ñ5ˆ    Ü   YÓ/ˆ
Ø—‘ ¨mÀ:ÓNˆØ Ð  ¨¯ © Ò 3à—^‘^ DÓ)ˆFà$ iÐ0ˆ Ø×јt ]Ô3؈ rI©rEc
óÒ—tj|«}|€ td„|||fD««r td«‚t    j
||||«dk7r td«‚t |«}| t|«}| t|«}|tus|tur td«‚|
|
dvr td«‚d}
||j|
d    ¬
«}||j|
d    ¬
«}t|    «\} } t|||«\}}t|||«}|t|||||«}t|||||«}|'t|t«r&||j!d«}||j!d«}t|t"«rt%|||||
¬ «} nMt'|||||
¬ «}t)j*|Dcgc]}|j,‘Œc}t(j.¬ «} | |j0n |j0}|Ô|€Òt3j4|«s%t7|
«}t9j:| ||||¬«} ||j!|||«}||j!|||«}nmt=t>|«}t)j@d|j,|j,z
|d¬ «|j,z} | jBdk7r| jEd«} ||k(r
| sj| sh| dd} nbt|«j,}t|«j,}| r| s4| stG| «r | d|k(r| dd} | stG| «r | d|k(r| dd} | jId|
›d«}tK||
¬ «}|jM|||¬«Scc}w)Nc3ó$K—|]}|du–—Œ
y­wrArB)Ú.0rs  rFú    <genexpr>z0DatetimeArray._generate_range.<locals>.<genexpr>Ÿsèø€ÒI¨a  T¤    ÑIùs‚z1Must provide freq argument if no data is suppliedézVOf the four parameters: start, end, periods, and freq, exactly three must be specifiedz$Neither `start` nor `end` can be NaT)ÚsÚmsÚusryz+'unit' must be one of 's', 'ms', 'us', 'ns'ryF)Úround_okrã)rRrSÚperiodsÚoffsetrEr´©rÎÚ nonexistentÚcresorÚint64Úi8ééÿÿÿÿz datetime64[rMrÓ)'r×Úvalidate_periodsÚanyr¶ÚcomÚcount_not_nonerrrr«r#Ú_maybe_normalize_endpointsÚ_infer_tz_from_endpointsÚ_maybe_localize_pointr~r1r¢r2r/Ú_generate_rangerNÚarrayÚ_valueròrDrÚis_utcr rÚtz_localize_to_utcrÚintÚlinspacerOÚastypeÚlenÚviewrGrÄ)r¸rRrSrír`rDr¤rÎrðÚ    inclusiverEÚleft_inclusiveÚright_inclusiveÚi8valuesÚxdrrÚ endpoint_tzrñÚstart_i8Úend_i8Ú dt64_valuesrOs                      rFrýzDatetimeArray._generate_ranges|€ô×&Ñ& wÓ/ˆØ ˆ<œCÑI°G¸UÀCÐ3HÔIÔIÜÐPÓQÐ Qä × Ñ ˜e S¨'°4Ó 8¸AÒ =Üð<óð ô˜‹ˆà РܘeÓ$ˆEà ˆ?ܘC“.ˆCà ”C‰<˜3¤#™:ÜÐCÓDÐ Dà Ð ØÐ2Ñ2Ü Ð!NÓOÐOàˆDà Ð Ø—M‘M $°MÓ7ˆEØ ˆ?Ø—+‘+˜d¨U+Ó3ˆCä*<¸YÓ*GÑ'ˆ˜Ü/°°s¸IÓF‰
ˆˆsÜ % e¨S°"Ó 5ˆà ˆ>ä)¨%°°r¸9ÀkÓRˆEÜ'¨¨T°2°yÀ+ÓNˆCà Ñ ô˜$¤Ô$ØÐ$Ø!×-Ñ-¨dÓ3Eؐ?ØŸ/™/¨$Ó/Cä˜$¤Ô%Ü1°%¸¸gÀtÐRVÔW‘ä%Ø S°'À$ÈTôôŸ8™8°sÖ$;°! Q§X£XÒ$;Ä2Ç8Á8ÔLà&+Ð&7˜%Ÿ(š(¸S¿V¹VˆKàˆ~ +Ð"5Ü ×'Ñ'¨Ô+ô/¨tÓ4EÜ+×>Ñ>Ø ØØ"+Ø$/Ø#ô  HðÐ$Ø!×-Ñ-¨b°)¸[ÓIEؐ?ØŸ/™/¨"¨i¸ÓE‘Cô œ3 Ó(ˆGä— ‘ ˜A˜sŸz™z¨E¯L©LÑ8¸'ÈÔQØ—,‘,ñð ð~‰~ Ò%ð$Ÿ?™?¨4Ó0à CŠ<Ù!©/Ø# A b˜>‘ä  Ó'×.Ñ.ˆHܘs“^×*Ñ*ˆFÙ!©Ù%¬#¨h¬-¸HÀQ¹KÈ8Ò<SØ'¨¨˜|HÙ&¬3¨x¬=¸XÀb¹\ÈVÒ=SØ'¨¨˜}Hà—m‘m k°$°°qÐ$9Ó:ˆ ܘB TÔ*ˆØ‰˜{°¸UˆÓCÐCùòi%<sÆ#M$có$—t||j«s|tur td«‚|j    |«|tur*t j |j|j«S|j|j«jS)Nz'value' should be a Timestamp.) r~r…rr¶Ú_check_compatible_withrNrrÿrEr«Úasm8©rjÚvalues  rFÚ _unbox_scalarzDatetimeArray._unbox_scalarsl€Ü˜% ×!2Ñ!2Ô3¸ÄSÑ8HÜÐ=Ó>Ð >Ø ×#Ñ# EÔ*Ø ”C‰<Ü—=‘= §¡¨t¯y©yÓ9Ð 9à—=‘= §¡Ó+×0Ñ0Ð 0rIcó0—t||j¬«S)N©rD)rrDrs  rFÚ_scalar_from_stringz!DatetimeArray._scalar_from_strings€Ü˜ 4§7¡7Ô+Ð+rIcó8—|tury|j|«yrA)rÚ_assert_tzawareness_compat)rjÚothers  rFrz$DatetimeArray._check_compatible_withs€Ø ”C‰<Ø Ø ×'Ñ'¨Õ.rIcó€—|jd«}tj||j|j¬«}|S)Nró)rXrD)rrÚ_from_value_and_resorerD)rjrrÚtss    rFÚ    _box_funczDatetimeArray._box_func#s0€à—‘t“ ˆÜ × +Ñ +¨E¸¿ ¹ ÈÏÉÔ PˆØˆ    rIcó—|jS)a%
        The dtype for the DatetimeArray.
 
        .. warning::
 
           A future version of pandas will change dtype to never be a
           ``numpy.dtype``. Instead, :attr:`DatetimeArray.dtype` will
           always be an instance of an ``ExtensionDtype`` subclass.
 
        Returns
        -------
        numpy.dtype or DatetimeTZDtype
            If the values are tz-naive, then ``np.dtype('datetime64[ns]')``
            is returned.
 
            If the values are tz-aware, then the ``DatetimeTZDtype``
            is returned.
        )r®r„s rFrOzDatetimeArray.dtype)s€ð.{‰{ÐrIcó0—t|jdd«S)aô
        Return the timezone.
 
        Returns
        -------
        datetime.tzinfo, pytz.tzinfo.BaseTZInfo, dateutil.tz.tz.tzfile, or None
            Returns None when the array is tz-naive.
 
        Examples
        --------
        For Series:
 
        >>> s = pd.Series(["1/1/2020 10:00:00+00:00", "2/1/2020 11:00:00+00:00"])
        >>> s = pd.to_datetime(s)
        >>> s
        0   2020-01-01 10:00:00+00:00
        1   2020-02-01 11:00:00+00:00
        dtype: datetime64[ns, UTC]
        >>> s.dt.tz
        datetime.timezone.utc
 
        For DatetimeIndex:
 
        >>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00",
        ...                         "2/1/2020 11:00:00+00:00"])
        >>> idx.tz
        datetime.timezone.utc
        rDN)ÚgetattrrOr„s rFrDzDatetimeArray.tzBs€ô>t—z‘z 4¨Ó.Ð.rIcó—td«‚)NzNCannot directly set timezone. Use tz_localize() or tz_convert() as appropriate)ÚAttributeErrorrs  rFrDzDatetimeArray.tzcs€ôð -ó
ð    
rIcó—|jS)z(
        Alias for tz attribute
        rr„s rFrzDatetimeArray.tzinfoks €ð
w‰wˆrIcóZ—t|j|j|j¬«S)zN
        Returns True if all of the dates are at midnight ("no time")
        rW)rÚasi8rDrer„s rFÚ is_normalizedzDatetimeArray.is_normalizedrs€ô
(¨¯    ©    °4·7±7ÀÇÁÔMÐMrIcóZ—t|j|j|j¬«S)NrW)rr'rDrer„s rFÚ_resolution_objzDatetimeArray._resolution_objys€ä˜dŸi™i¨¯©°t·{±{ÔCÐCrIcóN•—|€|jrt}t‰| ||¬«SrÉ)rDÚobjectrÃÚ    __array__)rjrOrÇrÅs   €rFr-zDatetimeArray.__array__€s(ø€Ø ˆ=˜TŸWšWäˆEä‰wÑ  u°4РÓ8Ð8rIc#óhK—|jdkDr!tt|««D]    }||–—Œ y|j}t|«}t}||zdz}t|«D]I}||z}t |dz|z|«}t ||||jd|j¬«}|Ed{–—†ŒKy7Œ­w)zt
        Return an iterator over the boxed values
 
        Yields
        ------
        tstamp : Timestamp
        rôÚ    timestamp)rDÚboxrXN)    ÚndimÚrangerr'Ú_ITER_CHUNKSIZEÚminrrDre)    rjÚirÜÚlengthÚ    chunksizeÚchunksÚstart_iÚend_iÚ    converteds             rFÚ__iter__zDatetimeArray.__iter__‡sÂèø€ð 9‰9qŠ=Üœ3˜t›9Ó%ò Ø˜1‘g“ ñ ð—9‘9ˆDܘ“YˆFÜ'ˆIØ     Ñ)¨QÑ.ˆFä˜6“]ò     %Ø˜i™-Ü˜Q ™U iÑ/°Ó8Ü.ؘ Ð'Ø—w‘wØ#ØŸ™ô        ð %×$Ñ$ñ     %ð%ús‚B&B2Â(B0Â)B2có•—t|«}||jk(r|r|j«S|St|t«r–t|t
«st ‰|||¬«S|j€ td«‚tj|j«}t|j||¬«}t|«j|||j ¬«S|j€jt#j$|d«rTt'|«sIt)|«r>t|j|d¬«}t|«j||j¬«S|j!t#j$|d«r td«‚|j€;t#j$|d«r%||jk7rt'|«r td«‚t|t*«r|j-|j ¬    «St.j0j|||«S)
N©rÇzCannot use .astype to convert from timezone-naive dtype to timezone-aware dtype. Use obj.tz_localize instead or series.dt.tz_localize instead©rOr`r|Tr´zžCannot use .astype to convert from timezone-aware dtype to timezone-naive dtype. Use obj.tz_localize(None) or obj.tz_convert('UTC').tz_localize(None) instead.z]Casting to unit-less dtype 'datetime64' is not supported. Pass e.g. 'datetime64[ns]' instead.)r`)r)rOrÇr~r+r*rÃrrDÚ    TypeErrorrNÚstrrÚ_ndarrayÚtyperÄr`r r}rrr,r¡r×ÚDatetimeLikeArrayMixin)rjrOrÇÚnp_dtypeÚ
res_valuesrÅs     €rFrzDatetimeArray.astype¤s¿ø€ô
˜UÓ#ˆà D—J‘JÒ ÙØ—y‘y“{Ð"؈Kä ˜œ~Ô .ܘe¤_Ô5ä‘w‘~ e°$~Ó7Ð7Ø—‘ô ð4óðôŸ8™8 E§I¡IÓ.Ü0°·±ÀÈtÔT
ܘD“z×-Ñ-¨jÀÈDÏIÉIÐ-ÓVÐVð G‰GˆOÜ—‘  sÔ+Ü Ô&Ü" 5Ô)ô-¨T¯]©]¸EÈÔMˆJܘ“:×)Ñ)¨*¸J×<LÑ<LÐ)ÓMÐ MðW‰WÐ  ¤S§_¡_°U¸CÔ%@ôðCóð ð G‰GˆOÜ—‘  sÔ+ؘŸ™Ò#ܘEÔ"äð6óð ô
˜œ{Ô +Ø—>‘> u§z¡z>Ó2Ð 2Ü×)Ñ)×0Ñ0°°u¸dÓCÐCrI)Úna_repÚ date_formatc ó’—|€|jrd}tj|j|j|||j
¬«S)Nz%Y-%m-%d)rDÚformatrGrX)Ú_is_dates_onlyr Úformat_array_from_datetimer'rDre)rjrGrHÚkwargss    rFÚ_format_native_typesz"DatetimeArray._format_native_typesêsA€ð Ð  4×#6Ò#6à$ˆKä×/Ñ/Ø I‰I˜$Ÿ'™'¨+¸fÈ4Ï;É;ô
ð    
rIcó¾—t|tj«r t|«}t    |d«sy|j
}t j|j
|«S)NrF)r~rNrrÚhasattrrrÚ
tz_compare)rjrÚother_tzs   rFÚ _has_same_tzzDatetimeArray._has_same_tzøsG€ä eœRŸ]™]Ô +ä˜eÓ$ˆEäu˜hÔ'ØØ—<‘<ˆÜ×#Ñ# D§K¡K°Ó:Ð:rIcóä—t|dd«}t|dd«}t|t«r|jj}|t
ury|j€| t d«‚y|€ t d«‚y)NrrOz;Cannot compare tz-naive and tz-aware datetime-like objects.z:Cannot compare tz-naive and tz-aware datetime-like objects)r"r~r*rOrDrr@)rjrrRÚ other_dtypes    rFrz(DatetimeArray._assert_tzawareness_compats€€ä˜5 (¨DÓ1ˆÜ˜e W¨dÓ3ˆ ä k¤?Ô 3à—{‘{—~‘~ˆHØ ”C‰<à Ø W‰Wˆ_ØÐ#ÜØQóðð$ðÐ ÜØLóð ðrIcó0—t|t«rJ‚|j|jd«}n|}    |j    |j
«}|j jdk(r|j|j «}t|«j||j ¬«}|jr|j«}d|_ |j|j|j«}|S#t$r—tjdt t#«¬«|j%d«|z}t|«j'|«j)|j*«}t-|«s|j|j«cYSY|SwxYw)Nr5r´zCNon-vectorized DateOffset being applied to Series or DatetimeIndex.©Ú
stacklevelÚO)r~r2rDr¢Ú _apply_arrayrBrOrÂrrCrÄr¤r°ÚNotImplementedErrorÚwarningsÚwarnr!r"rr·r«rEr)rjrîrkrFrms     rFÚ _add_offsetzDatetimeArray._add_offsets]€Ü˜f¤dÔ+Ð+Ð+à 7‰7Ð Ø×%Ñ% dÓ+‰FàˆFð    5Ø×,Ñ,¨V¯_©_Ó=ˆJØ×Ñ×$Ñ$¨Ò+ð(Ÿ_™_¨V¯\©\Ó:
ô˜$“Z×+Ñ+¨J¸j×>NÑ>NÐ+ÓOˆFØ×ÒØ×)Ñ)Ó+Ø#” àw‰wÐ"Ø×+Ñ+¨D¯G©GÓ4àˆ øô-#ò     3Ü M‰MØUÜ"Ü+Ó-õ ð
Ÿ™ SÓ)¨FÑ2ˆJä˜$“Z×.Ñ.¨zÓ:×BÑBÀ4Ç9Á9ÓMˆFܐt”9à×)Ñ)¨$¯'©'Ó2Ò2ððˆ ð-     3ús´AC5Ã5BFÆFcóȗ|jtj|j«r |jSt    |j|j|j
¬«S)zú
        Convert to an i8 (unix-like nanosecond timestamp) representation
        while keeping the local timezone and not using UTC.
        This is used to calculate time-of-day information as if the timestamps
        were timezone-naive.
        rW)rDrrr'rrer„s rFr]zDatetimeArray._local_timestampsEsC€ð 7‰7ˆ?œi×.Ñ.¨t¯w©wÔ7à—9‘9Ð Ü" 4§9¡9¨d¯g©g¸D¿K¹KÔHÐHrIcóؗtj|«}|j€ td«‚t    ||j
¬«}|j |j||j¬«S)a    
        Convert tz-aware Datetime Array/Index from one time zone to another.
 
        Parameters
        ----------
        tz : str, pytz.timezone, dateutil.tz.tzfile, datetime.tzinfo or None
            Time zone for time. Corresponding timestamps would be converted
            to this time zone of the Datetime Array/Index. A `tz` of None will
            convert to UTC and remove the timezone information.
 
        Returns
        -------
        Array or Index
 
        Raises
        ------
        TypeError
            If Datetime Array/Index is tz-naive.
 
        See Also
        --------
        DatetimeIndex.tz : A timezone that has a variable offset from UTC.
        DatetimeIndex.tz_localize : Localize tz-naive DatetimeIndex to a
            given time zone, or remove timezone from a tz-aware DatetimeIndex.
 
        Examples
        --------
        With the `tz` parameter, we can change the DatetimeIndex
        to other time zones:
 
        >>> dti = pd.date_range(start='2014-08-01 09:00',
        ...                     freq='h', periods=3, tz='Europe/Berlin')
 
        >>> dti
        DatetimeIndex(['2014-08-01 09:00:00+02:00',
                       '2014-08-01 10:00:00+02:00',
                       '2014-08-01 11:00:00+02:00'],
                      dtype='datetime64[ns, Europe/Berlin]', freq='h')
 
        >>> dti.tz_convert('US/Central')
        DatetimeIndex(['2014-08-01 02:00:00-05:00',
                       '2014-08-01 03:00:00-05:00',
                       '2014-08-01 04:00:00-05:00'],
                      dtype='datetime64[ns, US/Central]', freq='h')
 
        With the ``tz=None``, we can remove the timezone (after converting
        to UTC if necessary):
 
        >>> dti = pd.date_range(start='2014-08-01 09:00', freq='h',
        ...                     periods=3, tz='Europe/Berlin')
 
        >>> dti
        DatetimeIndex(['2014-08-01 09:00:00+02:00',
                       '2014-08-01 10:00:00+02:00',
                       '2014-08-01 11:00:00+02:00'],
                        dtype='datetime64[ns, Europe/Berlin]', freq='h')
 
        >>> dti.tz_convert(None)
        DatetimeIndex(['2014-08-01 07:00:00',
                       '2014-08-01 08:00:00',
                       '2014-08-01 09:00:00'],
                        dtype='datetime64[ns]', freq='h')
        z?Cannot convert tz-naive timestamps, use tz_localize to localizerãr?)    rrÕrDr@rGrErÄrBr`)rjrDrOs   rFr£zDatetimeArray.tz_convertQs`€ô@× #Ñ # BÓ 'ˆà 7‰7ˆ?äØQóð ô
˜B T§Y¡YÔ/ˆØ×Ñ § ¡ °UÀÇÁÐÓKÐKrIcóž—d}||vrt|t«s td«‚|j:|€-t    |j
|j|j ¬«}nNtd«‚tj|«}tj|j
||||j ¬«}|jd|j›d«}t||j¬    «}d}tj|«st!|«d
k(rt#|d «s |j$}n|€|j€ |j$}|j'|||¬ «S) aÌ
        Localize tz-naive Datetime Array/Index to tz-aware Datetime Array/Index.
 
        This method takes a time zone (tz) naive Datetime Array/Index object
        and makes this time zone aware. It does not move the time to another
        time zone.
 
        This method can also be used to do the inverse -- to create a time
        zone unaware object from an aware object. To that end, pass `tz=None`.
 
        Parameters
        ----------
        tz : str, pytz.timezone, dateutil.tz.tzfile, datetime.tzinfo or None
            Time zone to convert timestamps to. Passing ``None`` will
            remove the time zone information preserving local time.
        ambiguous : 'infer', 'NaT', bool array, default 'raise'
            When clocks moved backward due to DST, ambiguous times may arise.
            For example in Central European Time (UTC+01), when going from
            03:00 DST to 02:00 non-DST, 02:30:00 local time occurs both at
            00:30:00 UTC and at 01:30:00 UTC. In such a situation, the
            `ambiguous` parameter dictates how ambiguous times should be
            handled.
 
            - 'infer' will attempt to infer fall dst-transition hours based on
              order
            - bool-ndarray where True signifies a DST time, False signifies a
              non-DST time (note that this flag is only applicable for
              ambiguous times)
            - 'NaT' will return NaT where there are ambiguous times
            - 'raise' will raise an AmbiguousTimeError if there are ambiguous
              times.
 
        nonexistent : 'shift_forward', 'shift_backward, 'NaT', timedelta, default 'raise'
            A nonexistent time does not exist in a particular timezone
            where clocks moved forward due to DST.
 
            - 'shift_forward' will shift the nonexistent time forward to the
              closest existing time
            - 'shift_backward' will shift the nonexistent time backward to the
              closest existing time
            - 'NaT' will return NaT where there are nonexistent times
            - timedelta objects will shift nonexistent times by the timedelta
            - 'raise' will raise an NonExistentTimeError if there are
              nonexistent times.
 
        Returns
        -------
        Same type as self
            Array/Index converted to the specified time zone.
 
        Raises
        ------
        TypeError
            If the Datetime Array/Index is tz-aware and tz is not None.
 
        See Also
        --------
        DatetimeIndex.tz_convert : Convert tz-aware DatetimeIndex from
            one time zone to another.
 
        Examples
        --------
        >>> tz_naive = pd.date_range('2018-03-01 09:00', periods=3)
        >>> tz_naive
        DatetimeIndex(['2018-03-01 09:00:00', '2018-03-02 09:00:00',
                       '2018-03-03 09:00:00'],
                      dtype='datetime64[ns]', freq='D')
 
        Localize DatetimeIndex in US/Eastern time zone:
 
        >>> tz_aware = tz_naive.tz_localize(tz='US/Eastern')
        >>> tz_aware
        DatetimeIndex(['2018-03-01 09:00:00-05:00',
                       '2018-03-02 09:00:00-05:00',
                       '2018-03-03 09:00:00-05:00'],
                      dtype='datetime64[ns, US/Eastern]', freq=None)
 
        With the ``tz=None``, we can remove the time zone information
        while keeping the local time (not converted to UTC):
 
        >>> tz_aware.tz_localize(None)
        DatetimeIndex(['2018-03-01 09:00:00', '2018-03-02 09:00:00',
                       '2018-03-03 09:00:00'],
                      dtype='datetime64[ns]', freq=None)
 
        Be careful with DST changes. When there is sequential data, pandas can
        infer the DST time:
 
        >>> s = pd.to_datetime(pd.Series(['2018-10-28 01:30:00',
        ...                               '2018-10-28 02:00:00',
        ...                               '2018-10-28 02:30:00',
        ...                               '2018-10-28 02:00:00',
        ...                               '2018-10-28 02:30:00',
        ...                               '2018-10-28 03:00:00',
        ...                               '2018-10-28 03:30:00']))
        >>> s.dt.tz_localize('CET', ambiguous='infer')
        0   2018-10-28 01:30:00+02:00
        1   2018-10-28 02:00:00+02:00
        2   2018-10-28 02:30:00+02:00
        3   2018-10-28 02:00:00+01:00
        4   2018-10-28 02:30:00+01:00
        5   2018-10-28 03:00:00+01:00
        6   2018-10-28 03:30:00+01:00
        dtype: datetime64[ns, CET]
 
        In some cases, inferring the DST is impossible. In such cases, you can
        pass an ndarray to the ambiguous parameter to set the DST explicitly
 
        >>> s = pd.to_datetime(pd.Series(['2018-10-28 01:20:00',
        ...                               '2018-10-28 02:36:00',
        ...                               '2018-10-28 03:46:00']))
        >>> s.dt.tz_localize('CET', ambiguous=np.array([True, True, False]))
        0   2018-10-28 01:20:00+02:00
        1   2018-10-28 02:36:00+02:00
        2   2018-10-28 03:46:00+01:00
        dtype: datetime64[ns, CET]
 
        If the DST transition causes nonexistent times, you can shift these
        dates forward or backwards with a timedelta object or `'shift_forward'`
        or `'shift_backwards'`.
 
        >>> s = pd.to_datetime(pd.Series(['2015-03-29 02:30:00',
        ...                               '2015-03-29 03:30:00']))
        >>> s.dt.tz_localize('Europe/Warsaw', nonexistent='shift_forward')
        0   2015-03-29 03:00:00+02:00
        1   2015-03-29 03:30:00+02:00
        dtype: datetime64[ns, Europe/Warsaw]
 
        >>> s.dt.tz_localize('Europe/Warsaw', nonexistent='shift_backward')
        0   2015-03-29 01:59:59.999999999+01:00
        1   2015-03-29 03:30:00+02:00
        dtype: datetime64[ns, Europe/Warsaw]
 
        >>> s.dt.tz_localize('Europe/Warsaw', nonexistent=pd.Timedelta('1h'))
        0   2015-03-29 03:30:00+02:00
        1   2015-03-29 03:30:00+02:00
        dtype: datetime64[ns, Europe/Warsaw]
        )rËrÚ shift_forwardÚshift_backwardzoThe nonexistent argument must be one of 'raise', 'NaT', 'shift_forward', 'shift_backward' or a timedelta objectNrWz,Already tz-aware, use tz_convert to convert.rïrLrMrãrôrr?)r~rr¶rDrr'rer@rrÕrrrrErGrrr-r`rÄ)    rjrDrÎrðÚnonexistent_optionsÚ    new_datesÚnew_dates_dt64rOr`s             rFr¢zDatetimeArray.tz_localizes4€ðdRÐØ Ð1Ñ 1¼*Ø œô;
ôð%óð ð 7‰7Р؈zÜ/°·    ±    ¸4¿7¹7ÈÏÉÔU‘    äРNÓOÐOä×'Ñ'¨Ó+ˆBô%×7Ñ7Ø—    ‘    ØØ#Ø'Ø—k‘kô ˆIð#Ÿ™¨#¨d¯i©i¨[¸Ð(:Ó;ˆÜ˜B T§Y¡YÔ/ˆàˆÜ × Ñ ˜BÔ ¤C¨£I°¢N¼4ÀÈqÑ@QÔ;Rð—9‘9‰DØ ˆZ˜DŸG™G˜Oà—9‘9ˆDØ×Ñ °eÀ$ÐÓGÐGrIcóZ—t|j|j|j¬«S)a¥
        Return an ndarray of ``datetime.datetime`` objects.
 
        Returns
        -------
        numpy.ndarray
 
        Examples
        --------
        >>> idx = pd.date_range('2018-02-27', periods=3)
        >>> idx.to_pydatetime()
        array([datetime.datetime(2018, 2, 27, 0, 0),
               datetime.datetime(2018, 2, 28, 0, 0),
               datetime.datetime(2018, 3, 1, 0, 0)], dtype=object)
        )rDrX©rr'rDrer„s rFÚ to_pydatetimezDatetimeArray.to_pydatetimeYs€ô " $§)¡)°·±¸d¿k¹kÔJÐJrIcód—t|j|j|j¬«}|j    |j
j «}t|«j||j ¬«}|jd«}|j|j|j«}|S)aÔ
        Convert times to midnight.
 
        The time component of the date-time is converted to midnight i.e.
        00:00:00. This is useful in cases, when the time does not matter.
        Length is unaltered. The timezones are unaffected.
 
        This method is available on Series with datetime values under
        the ``.dt`` accessor, and directly on Datetime Array/Index.
 
        Returns
        -------
        DatetimeArray, DatetimeIndex or Series
            The same type as the original data. Series will have the same
            name and index. DatetimeIndex will have the same name.
 
        See Also
        --------
        floor : Floor the datetimes to the specified freq.
        ceil : Ceil the datetimes to the specified freq.
        round : Round the datetimes to the specified freq.
 
        Examples
        --------
        >>> idx = pd.date_range(start='2014-08-01 10:00', freq='h',
        ...                     periods=3, tz='Asia/Calcutta')
        >>> idx
        DatetimeIndex(['2014-08-01 10:00:00+05:30',
                       '2014-08-01 11:00:00+05:30',
                       '2014-08-01 12:00:00+05:30'],
                        dtype='datetime64[ns, Asia/Calcutta]', freq='h')
        >>> idx.normalize()
        DatetimeIndex(['2014-08-01 00:00:00+05:30',
                       '2014-08-01 00:00:00+05:30',
                       '2014-08-01 00:00:00+05:30'],
                       dtype='datetime64[ns, Asia/Calcutta]', freq=None)
        rWr´Úinfer) rr'rDrerrBrOrCrÄÚ
_with_freqr¢)rjÚ
new_valuesrÚdtas    rFr¤zDatetimeArray.normalizeks…€ôL-¨T¯Y©Y¸¿¹ÀdÇkÁkÔRˆ
Ø —o‘o d§m¡m×&9Ñ&9Ó:ˆ ä4‹j×$Ñ$ [¸ ×8IÑ8IÐ$ÓJˆØn‰n˜WÓ%ˆØ 7‰7Ð Ø—/‘/ $§'¡'Ó*ˆC؈
rIcóÒ—ddlm}|j$tjdt
t «¬«|€‡|jxs |j}t|jt«r5t|jd«rt|j«j}|€ td«‚t!|«}|€|}|}|j"|j$||j¬«S)aŠ
        Cast to PeriodArray/PeriodIndex at a particular frequency.
 
        Converts DatetimeArray/Index to PeriodArray/PeriodIndex.
 
        Parameters
        ----------
        freq : str or Period, optional
            One of pandas' :ref:`period aliases <timeseries.period_aliases>`
            or an Period object. Will be inferred by default.
 
        Returns
        -------
        PeriodArray/PeriodIndex
 
        Raises
        ------
        ValueError
            When converting a DatetimeArray/Index with non-regular values,
            so that a frequency cannot be inferred.
 
        See Also
        --------
        PeriodIndex: Immutable ndarray holding ordinal values.
        DatetimeIndex.to_pydatetime: Return DatetimeIndex as object.
 
        Examples
        --------
        >>> df = pd.DataFrame({"y": [1, 2, 3]},
        ...                   index=pd.to_datetime(["2000-03-31 00:00:00",
        ...                                         "2000-05-31 00:00:00",
        ...                                         "2000-08-31 00:00:00"]))
        >>> df.index.to_period("M")
        PeriodIndex(['2000-03', '2000-05', '2000-08'],
                    dtype='period[M]')
 
        Infer the daily frequency
 
        >>> idx = pd.date_range("2017-01-01", periods=2)
        >>> idx.to_period()
        PeriodIndex(['2017-01-01', '2017-01-02'],
                    dtype='period[D]')
        rr>zNConverting to PeriodArray/Index representation will drop timezone information.rWÚ_period_dtype_codez8You must pass a freq argument as current index has none.r)Úpandas.core.arraysr?rDr\r]Ú UserWarningr"rdrÞr~r`r rPr,Ú_freqstrr¶r0Ú_from_datetime64rB)rjr`r?Úress    rFr¡zDatetimeArray.to_periodšs̀õX    3à 7‰7Ð Ü M‰Mð2äÜ+Ó-õ     ð ˆ<Ø—<‘<Ò5 4×#5Ñ#5ˆDܘ$Ÿ)™)¤ZÔ0´WØ—    ‘    Ð/ô6ô# 4§9¡9Ó-×6Ñ6àˆ|Ü ØNóðô# 4Ó(ˆCðˆ{ؐàˆDØ+ˆ{×+Ñ+¨D¯M©M¸4ÀDÇGÁGÔLÐLrIcóô—|j«}tj|d||j¬«}|j    |d¬«}t «r'ddlm}m}|||tj¬«¬«S|S)    už
        Return the month names with specified locale.
 
        Parameters
        ----------
        locale : str, optional
            Locale determining the language in which to return the month name.
            Default is English locale (``'en_US.utf8'``). Use the command
            ``locale -a`` on your terminal on Unix systems to find your locale
            language code.
 
        Returns
        -------
        Series or Index
            Series or Index of month names.
 
        Examples
        --------
        >>> s = pd.Series(pd.date_range(start='2018-01', freq='ME', periods=3))
        >>> s
        0   2018-01-31
        1   2018-02-28
        2   2018-03-31
        dtype: datetime64[ns]
        >>> s.dt.month_name()
        0     January
        1    February
        2       March
        dtype: object
 
        >>> idx = pd.date_range(start='2018-01', freq='ME', periods=3)
        >>> idx
        DatetimeIndex(['2018-01-31', '2018-02-28', '2018-03-31'],
                      dtype='datetime64[ns]', freq='ME')
        >>> idx.month_name()
        Index(['January', 'February', 'March'], dtype='object')
 
        Using the ``locale`` parameter you can set a different locale language,
        for example: ``idx.month_name(locale='pt_BR.utf8')`` will return month
        names in Brazilian Portuguese language.
 
        >>> idx = pd.date_range(start='2018-01', freq='ME', periods=3)
        >>> idx
        DatetimeIndex(['2018-01-31', '2018-02-28', '2018-03-31'],
                      dtype='datetime64[ns]', freq='ME')
        >>> idx.month_name(locale='pt_BR.utf8')  # doctest: +SKIP
        Index(['Janeiro', 'Fevereiro', 'Março'], dtype='object')
        r©©ÚlocalerXNrYr©Ú StringDtyperþ©Úna_valuer´© r]rrhrerir
ÚpandasrzrþrNÚnan©rjrxrkrmrzÚpd_arrays      rFr©zDatetimeArray.month_nameèso€ðb×'Ñ'Ó)ˆä×+Ñ+Ø L¨°d·k±kô
ˆð×)Ñ)¨&¸TÐ)ÓBˆÜ Ô ÷ ñ
˜F©+¼r¿v¹vÔ*FÔGÐ G؈ rIcóô—|j«}tj|d||j¬«}|j    |d¬«}t «r'ddlm}m}|||tj¬«¬«S|S)    u“
        Return the day names with specified locale.
 
        Parameters
        ----------
        locale : str, optional
            Locale determining the language in which to return the day name.
            Default is English locale (``'en_US.utf8'``). Use the command
            ``locale -a`` on your terminal on Unix systems to find your locale
            language code.
 
        Returns
        -------
        Series or Index
            Series or Index of day names.
 
        Examples
        --------
        >>> s = pd.Series(pd.date_range(start='2018-01-01', freq='D', periods=3))
        >>> s
        0   2018-01-01
        1   2018-01-02
        2   2018-01-03
        dtype: datetime64[ns]
        >>> s.dt.day_name()
        0       Monday
        1      Tuesday
        2    Wednesday
        dtype: object
 
        >>> idx = pd.date_range(start='2018-01-01', freq='D', periods=3)
        >>> idx
        DatetimeIndex(['2018-01-01', '2018-01-02', '2018-01-03'],
                      dtype='datetime64[ns]', freq='D')
        >>> idx.day_name()
        Index(['Monday', 'Tuesday', 'Wednesday'], dtype='object')
 
        Using the ``locale`` parameter you can set a different locale language,
        for example: ``idx.day_name(locale='pt_BR.utf8')`` will return day
        names in Brazilian Portuguese language.
 
        >>> idx = pd.date_range(start='2018-01-01', freq='D', periods=3)
        >>> idx
        DatetimeIndex(['2018-01-01', '2018-01-02', '2018-01-03'],
                      dtype='datetime64[ns]', freq='D')
        >>> idx.day_name(locale='pt_BR.utf8') # doctest: +SKIP
        Index(['Segunda', 'Terça', 'Quarta'], dtype='object')
        rªrwNrYrryr{r´r}r€s      rFrªzDatetimeArray.day_name(so€ðb×'Ñ'Ó)ˆä×+Ñ+Ø J v°D·K±Kô
ˆð×)Ñ)¨&¸TÐ)ÓBˆÜ Ô ÷ ñ
˜F©+¼r¿v¹vÔ*FÔGÐ G؈ rIcóR—|j«}t|d|j¬«S)aî
        Returns numpy array of :class:`datetime.time` objects.
 
        The time part of the Timestamps.
 
        Examples
        --------
        For Series:
 
        >>> s = pd.Series(["1/1/2020 10:00:00+00:00", "2/1/2020 11:00:00+00:00"])
        >>> s = pd.to_datetime(s)
        >>> s
        0   2020-01-01 10:00:00+00:00
        1   2020-02-01 11:00:00+00:00
        dtype: datetime64[ns, UTC]
        >>> s.dt.time
        0    10:00:00
        1    11:00:00
        dtype: object
 
        For DatetimeIndex:
 
        >>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00",
        ...                         "2/1/2020 11:00:00+00:00"])
        >>> idx.time
        array([datetime.time(10, 0), datetime.time(11, 0)], dtype=object)
        r©r0rX©r]rre©rjÚ
timestampss  rFrzDatetimeArray.timeis&€ð@×+Ñ+Ó-ˆ
ä! *°&¸t¿{¹{ÔKÐKrIcó\—t|j|jd|j¬«S)aQ
        Returns numpy array of :class:`datetime.time` objects with timezones.
 
        The time part of the Timestamps.
 
        Examples
        --------
        For Series:
 
        >>> s = pd.Series(["1/1/2020 10:00:00+00:00", "2/1/2020 11:00:00+00:00"])
        >>> s = pd.to_datetime(s)
        >>> s
        0   2020-01-01 10:00:00+00:00
        1   2020-02-01 11:00:00+00:00
        dtype: datetime64[ns, UTC]
        >>> s.dt.timetz
        0    10:00:00+00:00
        1    11:00:00+00:00
        dtype: object
 
        For DatetimeIndex:
 
        >>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00",
        ...                         "2/1/2020 11:00:00+00:00"])
        >>> idx.timetz
        array([datetime.time(10, 0, tzinfo=datetime.timezone.utc),
        datetime.time(11, 0, tzinfo=datetime.timezone.utc)], dtype=object)
        rr„rhr„s rFržzDatetimeArray.timetzs!€ô<" $§)¡)¨T¯W©W¸&ÀtÇ{Á{ÔSÐSrIcóR—|j«}t|d|j¬«S)a5
        Returns numpy array of python :class:`datetime.date` objects.
 
        Namely, the date part of Timestamps without time and
        timezone information.
 
        Examples
        --------
        For Series:
 
        >>> s = pd.Series(["1/1/2020 10:00:00+00:00", "2/1/2020 11:00:00+00:00"])
        >>> s = pd.to_datetime(s)
        >>> s
        0   2020-01-01 10:00:00+00:00
        1   2020-02-01 11:00:00+00:00
        dtype: datetime64[ns, UTC]
        >>> s.dt.date
        0    2020-01-01
        1    2020-02-01
        dtype: object
 
        For DatetimeIndex:
 
        >>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00",
        ...                         "2/1/2020 11:00:00+00:00"])
        >>> idx.date
        array([datetime.date(2020, 1, 1), datetime.date(2020, 2, 1)], dtype=object)
        r‚r„r…r†s  rFr‚zDatetimeArray.date­s&€ðB×+Ñ+Ó-ˆ
ä! *°&¸t¿{¹{ÔKÐKrIcóؗddlm}|j«}tj||j
¬«}||gd¢d¬«}|j rd|j|j<|S)aÕ
        Calculate year, week, and day according to the ISO 8601 standard.
 
        Returns
        -------
        DataFrame
            With columns year, week and day.
 
        See Also
        --------
        Timestamp.isocalendar : Function return a 3-tuple containing ISO year,
            week number, and weekday for the given Timestamp object.
        datetime.date.isocalendar : Return a named tuple object with
            three components: year, week and weekday.
 
        Examples
        --------
        >>> idx = pd.date_range(start='2019-12-29', freq='D', periods=4)
        >>> idx.isocalendar()
                    year  week  day
        2019-12-29  2019    52    7
        2019-12-30  2020     1    1
        2019-12-31  2020     1    2
        2020-01-01  2020     1    3
        >>> idx.isocalendar().week
        2019-12-29    52
        2019-12-30     1
        2019-12-31     1
        2020-01-01     1
        Freq: D, Name: week, dtype: UInt32
        rr<rW)rÚweekrŽÚUInt32)ÚcolumnsrON)    r~r=r]rÚbuild_isocalendar_sarrayreÚ_hasnaÚilocÚ_isnan)rjr=rkÚsarrayÚiso_calendar_dfs     rFÚ isocalendarzDatetimeArray.isocalendarÒsa€õ@    %à×'Ñ'Ó)ˆÜ×0Ñ0°¸d¿k¹kÔJˆÙ#Ø Ò3¸8ô
ˆð ;Š;Ø04ˆO×  Ñ   §¡Ñ -ØÐrIrÚYaµ
        The year of the datetime.
 
        Examples
        --------
        >>> datetime_series = pd.Series(
        ...     pd.date_range("2000-01-01", periods=3, freq="YE")
        ... )
        >>> datetime_series
        0   2000-12-31
        1   2001-12-31
        2   2002-12-31
        dtype: datetime64[ns]
        >>> datetime_series.dt.year
        0    2000
        1    2001
        2    2002
        dtype: int32
        rVr|a¸
        The month as January=1, December=12.
 
        Examples
        --------
        >>> datetime_series = pd.Series(
        ...     pd.date_range("2000-01-01", periods=3, freq="ME")
        ... )
        >>> datetime_series
        0   2000-01-31
        1   2000-02-29
        2   2000-03-31
        dtype: datetime64[ns]
        >>> datetime_series.dt.month
        0    1
        1    2
        2    3
        dtype: int32
        rŽÚDa©
        The day of the datetime.
 
        Examples
        --------
        >>> datetime_series = pd.Series(
        ...     pd.date_range("2000-01-01", periods=3, freq="D")
        ... )
        >>> datetime_series
        0   2000-01-01
        1   2000-01-02
        2   2000-01-03
        dtype: datetime64[ns]
        >>> datetime_series.dt.day
        0    1
        1    2
        2    3
        dtype: int32
        rÚhaÇ
        The hours of the datetime.
 
        Examples
        --------
        >>> datetime_series = pd.Series(
        ...     pd.date_range("2000-01-01", periods=3, freq="h")
        ... )
        >>> datetime_series
        0   2000-01-01 00:00:00
        1   2000-01-01 01:00:00
        2   2000-01-01 02:00:00
        dtype: datetime64[ns]
        >>> datetime_series.dt.hour
        0    0
        1    1
        2    2
        dtype: int32
        rÚmaÍ
        The minutes of the datetime.
 
        Examples
        --------
        >>> datetime_series = pd.Series(
        ...     pd.date_range("2000-01-01", periods=3, freq="min")
        ... )
        >>> datetime_series
        0   2000-01-01 00:00:00
        1   2000-01-01 00:01:00
        2   2000-01-01 00:02:00
        dtype: datetime64[ns]
        >>> datetime_series.dt.minute
        0    0
        1    1
        2    2
        dtype: int32
        r‘réaË
        The seconds of the datetime.
 
        Examples
        --------
        >>> datetime_series = pd.Series(
        ...     pd.date_range("2000-01-01", periods=3, freq="s")
        ... )
        >>> datetime_series
        0   2000-01-01 00:00:00
        1   2000-01-01 00:00:01
        2   2000-01-01 00:00:02
        dtype: datetime64[ns]
        >>> datetime_series.dt.second
        0    0
        1    1
        2    2
        dtype: int32
        ršrëaô
        The microseconds of the datetime.
 
        Examples
        --------
        >>> datetime_series = pd.Series(
        ...     pd.date_range("2000-01-01", periods=3, freq="us")
        ... )
        >>> datetime_series
        0   2000-01-01 00:00:00.000000
        1   2000-01-01 00:00:00.000001
        2   2000-01-01 00:00:00.000002
        dtype: datetime64[ns]
        >>> datetime_series.dt.microsecond
        0       0
        1       1
        2       2
        dtype: int32
        r›aû
        The nanoseconds of the datetime.
 
        Examples
        --------
        >>> datetime_series = pd.Series(
        ...     pd.date_range("2000-01-01", periods=3, freq="ns")
        ... )
        >>> datetime_series
        0   2000-01-01 00:00:00.000000000
        1   2000-01-01 00:00:00.000000001
        2   2000-01-01 00:00:00.000000002
        dtype: datetime64[ns]
        >>> datetime_series.dt.nanosecond
        0       0
        1       1
        2       2
        dtype: int32
        a‚
    The day of the week with Monday=0, Sunday=6.
 
    Return the day of the week. It is assumed the week starts on
    Monday, which is denoted by 0 and ends on Sunday which is denoted
    by 6. This method is available on both Series with datetime
    values (using the `dt` accessor) or DatetimeIndex.
 
    Returns
    -------
    Series or Index
        Containing integers indicating the day number.
 
    See Also
    --------
    Series.dt.dayofweek : Alias.
    Series.dt.weekday : Alias.
    Series.dt.day_name : Returns the name of the day of the week.
 
    Examples
    --------
    >>> s = pd.date_range('2016-12-31', '2017-01-08', freq='D').to_series()
    >>> s.dt.dayofweek
    2016-12-31    5
    2017-01-01    6
    2017-01-02    0
    2017-01-03    1
    2017-01-04    2
    2017-01-05    3
    2017-01-06    4
    2017-01-07    5
    2017-01-08    6
    Freq: D, dtype: int32
    r”Údowr•Údoya
        The ordinal day of the year.
 
        Examples
        --------
        For Series:
 
        >>> s = pd.Series(["1/1/2020 10:00:00+00:00", "2/1/2020 11:00:00+00:00"])
        >>> s = pd.to_datetime(s)
        >>> s
        0   2020-01-01 10:00:00+00:00
        1   2020-02-01 11:00:00+00:00
        dtype: datetime64[ns, UTC]
        >>> s.dt.dayofyear
        0    1
        1   32
        dtype: int32
 
        For DatetimeIndex:
 
        >>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00",
        ...                         "2/1/2020 11:00:00+00:00"])
        >>> idx.dayofyear
        Index([1, 32], dtype='int32')
        r—Úqax
        The quarter of the date.
 
        Examples
        --------
        For Series:
 
        >>> s = pd.Series(["1/1/2020 10:00:00+00:00", "4/1/2020 11:00:00+00:00"])
        >>> s = pd.to_datetime(s)
        >>> s
        0   2020-01-01 10:00:00+00:00
        1   2020-04-01 11:00:00+00:00
        dtype: datetime64[ns, UTC]
        >>> s.dt.quarter
        0    1
        1    2
        dtype: int32
 
        For DatetimeIndex:
 
        >>> idx = pd.DatetimeIndex(["1/1/2020 10:00:00+00:00",
        ...                         "2/1/2020 11:00:00+00:00"])
        >>> idx.quarter
        Index([1, 1], dtype='int32')
        r˜Údima˜
        The number of days in the month.
 
        Examples
        --------
        >>> s = pd.Series(["1/1/2020 10:00:00+00:00", "2/1/2020 11:00:00+00:00"])
        >>> s = pd.to_datetime(s)
        >>> s
        0   2020-01-01 10:00:00+00:00
        1   2020-02-01 11:00:00+00:00
        dtype: datetime64[ns, UTC]
        >>> s.dt.daysinmonth
        0    31
        1    29
        dtype: int32
        að
        Indicates whether the date is the {first_or_last} day of the month.
 
        Returns
        -------
        Series or array
            For Series, returns a Series with boolean values.
            For DatetimeIndex, returns a boolean array.
 
        See Also
        --------
        is_month_start : Return a boolean indicating whether the date
            is the first day of the month.
        is_month_end : Return a boolean indicating whether the date
            is the last day of the month.
 
        Examples
        --------
        This method is available on Series with datetime values under
        the ``.dt`` accessor, and directly on DatetimeIndex.
 
        >>> s = pd.Series(pd.date_range("2018-02-27", periods=3))
        >>> s
        0   2018-02-27
        1   2018-02-28
        2   2018-03-01
        dtype: datetime64[ns]
        >>> s.dt.is_month_start
        0    False
        1    False
        2    True
        dtype: bool
        >>> s.dt.is_month_end
        0    False
        1    True
        2    False
        dtype: bool
 
        >>> idx = pd.date_range("2018-02-27", periods=3)
        >>> idx.is_month_start
        array([False, False, True])
        >>> idx.is_month_end
        array([False, True, False])
    r†Úfirst)Ú first_or_lastr‡Úlastrˆa
        Indicator for whether the date is the first day of a quarter.
 
        Returns
        -------
        is_quarter_start : Series or DatetimeIndex
            The same type as the original data with boolean values. Series will
            have the same name and index. DatetimeIndex will have the same
            name.
 
        See Also
        --------
        quarter : Return the quarter of the date.
        is_quarter_end : Similar property for indicating the quarter end.
 
        Examples
        --------
        This method is available on Series with datetime values under
        the ``.dt`` accessor, and directly on DatetimeIndex.
 
        >>> df = pd.DataFrame({'dates': pd.date_range("2017-03-30",
        ...                   periods=4)})
        >>> df.assign(quarter=df.dates.dt.quarter,
        ...           is_quarter_start=df.dates.dt.is_quarter_start)
               dates  quarter  is_quarter_start
        0 2017-03-30        1             False
        1 2017-03-31        1             False
        2 2017-04-01        2              True
        3 2017-04-02        2             False
 
        >>> idx = pd.date_range('2017-03-30', periods=4)
        >>> idx
        DatetimeIndex(['2017-03-30', '2017-03-31', '2017-04-01', '2017-04-02'],
                      dtype='datetime64[ns]', freq='D')
 
        >>> idx.is_quarter_start
        array([False, False,  True, False])
        r‰a…
        Indicator for whether the date is the last day of a quarter.
 
        Returns
        -------
        is_quarter_end : Series or DatetimeIndex
            The same type as the original data with boolean values. Series will
            have the same name and index. DatetimeIndex will have the same
            name.
 
        See Also
        --------
        quarter : Return the quarter of the date.
        is_quarter_start : Similar property indicating the quarter start.
 
        Examples
        --------
        This method is available on Series with datetime values under
        the ``.dt`` accessor, and directly on DatetimeIndex.
 
        >>> df = pd.DataFrame({'dates': pd.date_range("2017-03-30",
        ...                    periods=4)})
        >>> df.assign(quarter=df.dates.dt.quarter,
        ...           is_quarter_end=df.dates.dt.is_quarter_end)
               dates  quarter    is_quarter_end
        0 2017-03-30        1             False
        1 2017-03-31        1              True
        2 2017-04-01        2             False
        3 2017-04-02        2             False
 
        >>> idx = pd.date_range('2017-03-30', periods=4)
        >>> idx
        DatetimeIndex(['2017-03-30', '2017-03-31', '2017-04-01', '2017-04-02'],
                      dtype='datetime64[ns]', freq='D')
 
        >>> idx.is_quarter_end
        array([False,  True, False, False])
        rŠa~
        Indicate whether the date is the first day of a year.
 
        Returns
        -------
        Series or DatetimeIndex
            The same type as the original data with boolean values. Series will
            have the same name and index. DatetimeIndex will have the same
            name.
 
        See Also
        --------
        is_year_end : Similar property indicating the last day of the year.
 
        Examples
        --------
        This method is available on Series with datetime values under
        the ``.dt`` accessor, and directly on DatetimeIndex.
 
        >>> dates = pd.Series(pd.date_range("2017-12-30", periods=3))
        >>> dates
        0   2017-12-30
        1   2017-12-31
        2   2018-01-01
        dtype: datetime64[ns]
 
        >>> dates.dt.is_year_start
        0    False
        1    False
        2    True
        dtype: bool
 
        >>> idx = pd.date_range("2017-12-30", periods=3)
        >>> idx
        DatetimeIndex(['2017-12-30', '2017-12-31', '2018-01-01'],
                      dtype='datetime64[ns]', freq='D')
 
        >>> idx.is_year_start
        array([False, False,  True])
        r‹a{
        Indicate whether the date is the last day of the year.
 
        Returns
        -------
        Series or DatetimeIndex
            The same type as the original data with boolean values. Series will
            have the same name and index. DatetimeIndex will have the same
            name.
 
        See Also
        --------
        is_year_start : Similar property indicating the start of the year.
 
        Examples
        --------
        This method is available on Series with datetime values under
        the ``.dt`` accessor, and directly on DatetimeIndex.
 
        >>> dates = pd.Series(pd.date_range("2017-12-30", periods=3))
        >>> dates
        0   2017-12-30
        1   2017-12-31
        2   2018-01-01
        dtype: datetime64[ns]
 
        >>> dates.dt.is_year_end
        0    False
        1     True
        2    False
        dtype: bool
 
        >>> idx = pd.date_range("2017-12-30", periods=3)
        >>> idx
        DatetimeIndex(['2017-12-30', '2017-12-31', '2018-01-01'],
                      dtype='datetime64[ns]', freq='D')
 
        >>> idx.is_year_end
        array([False,  True, False])
        rŒa›
        Boolean indicator if the date belongs to a leap year.
 
        A leap year is a year, which has 366 days (instead of 365) including
        29th of February as an intercalary day.
        Leap years are years which are multiples of four with the exception
        of years divisible by 100 but not by 400.
 
        Returns
        -------
        Series or ndarray
             Booleans indicating if dates belong to a leap year.
 
        Examples
        --------
        This method is available on Series with datetime values under
        the ``.dt`` accessor, and directly on DatetimeIndex.
 
        >>> idx = pd.date_range("2012-01-01", "2015-01-01", freq="YE")
        >>> idx
        DatetimeIndex(['2012-12-31', '2013-12-31', '2014-12-31'],
                      dtype='datetime64[ns]', freq='YE-DEC')
        >>> idx.is_leap_year
        array([ True, False, False])
 
        >>> dates_series = pd.Series(idx)
        >>> dates_series
        0   2012-12-31
        1   2013-12-31
        2   2014-12-31
        dtype: datetime64[ns]
        >>> dates_series.dt.is_leap_year
        0     True
        1    False
        2    False
        dtype: bool
        có—tj|j«}tj|j«}tj|j«}|dk}||xxdzcc<||xxdz cc<|tj
d|zdz
dz «zd|zztj |dz «ztj |d    z «z
tj |d
z «zd z|j|jd z z|jd z z|jd z dz z|jd z dz zdz zS)z¯
        Convert Datetime Array to float64 ndarray of Julian Dates.
        0 Julian date is noon January 1, 4713 BC.
        https://en.wikipedia.org/wiki/Julian_day
        rèrôrTé™iÉéiméédig€C:Aé<ii@Biʚ;é) rNÚasarrayrrVrŽÚfixr§rrr‘ršr›)rjrrVrŽÚtestarrs     rFÚto_julian_datezDatetimeArray.to_julian_date5sM€ôz‰z˜$Ÿ)™)Ó$ˆÜ—
‘
˜4Ÿ:™:Ó&ˆÜj‰j˜Ÿ™Ó"ˆØ˜!‘)ˆØ ˆW‹ ˜Ñ‹ Ø ˆg‹˜"Ñ‹à ܏f‰fc˜E‘k CÑ'¨1Ñ,Ó-ñ .àD‰jñ ôh‰ht˜a‘xÓ ñ !ôh‰ht˜c‘zÓ"ñ     #ô
h‰ht˜c‘zÓ"ñ  #ð ñ  ð—    ‘    Ø—+‘+ Ñ"ñ#à—+‘+ Ñ$ñ%ð×"Ñ" TÑ)¨EÑ1ñ2ð—/‘/ DÑ(¨5Ñ0ñ    1ð ññ ð    
rIcó—ddlm}|jjjj dd«}t j|«}|j|jj|«|¬«}    |    j|||||¬«S)a
        Return sample standard deviation over requested axis.
 
        Normalized by `N-1` by default. This can be changed using ``ddof``.
 
        Parameters
        ----------
        axis : int, optional
            Axis for the function to be applied on. For :class:`pandas.Series`
            this parameter is unused and defaults to ``None``.
        ddof : int, default 1
            Degrees of Freedom. The divisor used in calculations is `N - ddof`,
            where `N` represents the number of elements.
        skipna : bool, default True
            Exclude NA/null values. If an entire row/column is ``NA``, the result
            will be ``NA``.
 
        Returns
        -------
        Timedelta
 
        See Also
        --------
        numpy.ndarray.std : Returns the standard deviation of the array elements
            along given axis.
        Series.std : Return sample standard deviation over requested axis.
 
        Examples
        --------
        For :class:`pandas.DatetimeIndex`:
 
        >>> idx = pd.date_range('2001-01-01 00:00', periods=3)
        >>> idx
        DatetimeIndex(['2001-01-01', '2001-01-02', '2001-01-03'],
                      dtype='datetime64[ns]', freq='D')
        >>> idx.std()
        Timedelta('1 days 00:00:00')
        r)ÚTimedeltaArrayrÚ timedelta64r´)ÚaxisÚoutÚddofÚkeepdimsr³)
rqr¬rBrOrsÚreplacerNrÄrÚstd)
rjr®rOr¯r°r±r³r¬Ú    dtype_strÚtdas
          rFr³zDatetimeArray.stdXsx€õd    6ð—M‘M×'Ñ'×,Ñ,×4Ñ4°\À=ÓQˆ    Ü—‘˜Ó#ˆà×(Ñ(¨¯©×);Ñ);¸EÓ)BÈ%Ð(ÓPˆàw‰w˜D c°¸xÐPVˆwÓWÐWrI)Úreturnztype[Timestamp])rOr6r¶r8)rkznpt.NDArray[np.datetime64]r`r¯rOr­r¶r8)rÇÚbool) rÇr·r`z'str | BaseOffset | lib.NoDefault | NonerÌr·rÍr·rÎr9r¶r8)NFrËrËÚboth)ríú
int | Noner¤r·rÎr9rðr:rr7rEú
str | Noner¶r8)r¶ú np.datetime64)r¶úTimestamp | NaTType)r¶ÚNone)rr»r¶r¼)r¶r­)r¶ú tzinfo | None)r¶r·)r¶r)NN)r¶ú
np.ndarray)r¶r3)T)rGz str | floatr¶únpt.NDArray[np.object_])rîr r¶r8)r¶znpt.NDArray[np.int64])r¶r8)rËrË)rÎr9rðr:r¶r8)r¶rÀrA)r¶r?)r¶r=)r¶znpt.NDArray[np.float64])NNNrôFT)r°rr±r·r³r·)_rpÚ
__module__Ú __qualname__rqÚ_typrNrÚ_internal_fill_valuerÚ_recognized_scalarsÚ_is_recognized_dtypeÚ_infer_matchesrrr…r^Ú__annotations__rgrœrŸr r¬Ú__array_priority__r°r$Ú_default_dtypeÚ classmethodrºr¿rÄr·r rÔrÊrýrrrrrOrDÚsetterrr(r*r-r<rrNrSrr^r]r£r×Ú ravel_compatr¢rir¤r¡r©rªrržr‚r”rurrVrŽrrr‘ršr›Ú_dayofweek_docr”r“r’r–r•r—r˜r™Ú _is_month_docrJr†r‡rˆr‰rŠr‹rŒrªr³Ú __classcell__)rÅs@rFrwrw¨s(ø…ñ(ðT €DØ(˜2Ÿ=™=¨°Ó5ÐØ# R§]¡]Ð3ÐñÐð8€Nà òóðò€Iˆyóð% d˜^€KÓ+ò€J    óò$7€J    Ó6à[Ñ  9Ñ,¨zÑ9¸V¸HÑDðyóò (И9ó ð$Ðð
6Ó5Ø#€EÐ Ó#Ø!€Nàò8óð8ðñ óð ðð#'Ø;Gð    à*ðð ðð9ð    ð
 
ô óðð(Ø.2ÀôNóðNðð
ØØ >‰>Ø8;¿¹ØØØ#*ñAð
ð Að6ðAððAððAð!ðAð
òAóðAðFð ØØ#*Ø'.Ø(.ðzDð ñzDðð    zDððzDð!ðzDð%ðzDð&ðzDððzDð
òzDóðzDó~1ó,ó/óð òó    ðð*ò/óð/ð@‡YYñ
óð
ðòóðð òNóðNð òDóðDö 9ó%ö:ADðN(-¸$ñ    
Ø$ð    
à     ó    
ó    ;óó0%óT
IóJLðX    ×Ñð$+Ø'.ð    vHð!ðvHð%ð    vHð
 
ò vHóðvHóvKó$-ô^IMô\>ô@?ðBò!Lóð!LðFòTóðTð>ò"Lóð"LóH)ñV ØØ ð     ó €Dñ. ØØ ð     ó €Eñ. Ø Ø ð     ó €Cñ. ØØ ð     ó €Dñ.ØØ ð     ó€Fñ.ØØ ð     ó€Fñ."ØØ ð     ó€Kñ.!ØØ ð     ó€Jð.!€NñD" -°¸ÓG€KØ€IØ€Gá!ØØ ð     ó€Kð:€IÙØØ ð     ó€Gñ:$ØØ ð     ó€Mð( €Kð+€MñX%ØÐ*¨M×,@Ñ,@ÈwÐ,@Ó,Wó€Nñ#ؘ¨ ×(<Ñ(<È6Ð(<Ó(Ró€Lñ'ØØð%     ó)ÐñT%ØØð%     ó)€NñT$ØØð'     ó+€MñX"ØØð'     ó+€KñX#ØØð$     ó(€LóT
ðJØØ ØØØð:Xð
ð :Xð ð :Xð÷:XrIrwFrËrÑc    óˆ—t|||¬«\}}t|dd«}|€d}tjd|›d«}|tk(s t |«rît tj|«}d}tj|d¬«d    k(r |jtj«}nŒ|G|d
k(rBtj|t¬ «}    tj|    |||t|«¬ «}
|
|fSt!|||d|xsd¬ «\} } d}|r| r| }
|
|fS| r| }| }
|
|fSt#| |||¬«\}
} |
|fS|j}t%|t&«r3t t(|«}t+||j,«}|j.}
nÀtj0|d«rIt%|t(«r |j.}t tj|«}t#||||¬«\}
}na|jt2k7r#|jtjd¬«}d}t tj|«}|j5|«}
|r|
j7«}
t%|
tj«sJt9|
««‚|
jj:dk(sJ‚|
jdk7sJ‚t=|
j«sJ‚|
|fS)aQ
    Parameters
    ----------
    data : np.ndarray or ExtensionArray
        dtl.ensure_arraylike_for_datetimelike has already been called.
    copy : bool, default False
    tz : tzinfo or None, default None
    dayfirst : bool, default False
    yearfirst : bool, default False
    ambiguous : str, bool, or arraylike, default 'raise'
        See pandas._libs.tslibs.tzconversion.tz_localize_to_utc.
    out_unit : str or None, default None
        Desired output resolution.
 
    Returns
    -------
    result : numpy.ndarray
        The sequence converted to a numpy array with dtype ``datetime64[unit]``.
        Where `unit` is "ns" unless specified otherwise by `out_unit`.
    tz : tzinfo or None
        Either the user-provided tzinfo or one inferred from the data.
 
    Raises
    ------
    TypeError : PeriodDType data is passed
    rrONryrLrMFr²ÚintegerrËr´)rDrÌrÍrñ)rÌrÍÚ allow_objectrÒ)rDrÇrÎr|r>ÚM8)Úmaybe_convert_dtyper"rNrOr,r(rrÁr rµrròr§r Úarray_to_datetime_with_tzr Úobjects_to_datetime64Ú_construct_from_dt64_naiver~r*rwÚ_maybe_infer_tzrDrBr}r%rrÇrCrÂr)rÜrÇrDrÌrÍrÎrÒráÚ    out_dtypeÚobj_datarmr;Ú inferred_tzÚ_s              rFrÚrڙsš€ôL% T¨4°BÔ7J€Dˆ$ܘ˜w¨Ó-€JàÐØˆÜ—‘˜3˜x˜j¨Ð*Ó+€Ià”VÒœ¨zÔ:ô”B—J‘J Ó%ˆØˆÜ ?‰?˜4¨Ô .°)Ò ;à—;‘;œrŸx™xÓ(‰DØ ˆ^     ¨WÒ 4Ü—z‘z $¬fÔ5ˆHÜ×4Ñ4ØØØ!Ø#Ü(¨Ó2ô ˆFð˜2:Ð ä%:ØØ!Ø#Ø"Ø!Ò) Tô &Ñ "ˆI{ðˆDÙ‘kð#ð˜2:Ð ñØ Ø"ð ˜2:Ð ô7Ø "¨4¸9ô‘    ˜ð˜2:Ð à—Z‘Zˆ
ô*œoÔ.ä”M 4Ó(ˆÜ ˜R §¡Ó )ˆØ—‘‰ä     ‰˜ SÔ    )ä dœMÔ *Ø—=‘=ˆDä”B—J‘J Ó%ˆÜ1Ø R˜d¨iô
‰ ˆ‘ð :‰:œÒ $Ø—;‘;œrŸx™x¨e;Ó4ˆD؈DÜ”B—J‘J Ó%ˆØ—‘˜9Ó%ˆá Ø—‘“ˆä fœbŸj™jÔ )Ð7¬4°«<Ó7Ð )Ø <‰<× Ñ  Ò #Ð#Ð #Ø <‰<˜4Ò ÐÐ Ü ˜fŸl™lÔ +Ð+Ð +Ø 2ˆ:ÐrIcóX—|j}t|«st|«}t||d¬«}d}|jjdk(r8|j |jj d««}|j}d}|€|j}|jdkDr|j«}t|«}tj|jd«|||¬«}|j|«}|j|«}|j|k(sJ|j«‚|}||fS)zP
    Convert datetime64 data to a supported dtype, localizing if necessary.
    FrÆú>ú<rôró)rÎrñ)rOrrrÚ    byteorderrÚ newbyteorderÚshaper1ÚravelrrrrÚreshape)rÜrDrÇrÎÚ    new_dtyperãràrms        rFrØrØ    s
€ð—
‘
€IÜ ˜iÔ (ä'¨    Ó2ˆ    Ü" 4¨y¸uÔEˆØˆà ‡zz×јsÒ"ð{‰{˜4Ÿ:™:×2Ñ2°3Ó7Ó8ˆØ—J‘Jˆ    Øˆà    €~ð—
‘
ˆØ 9‰9qŠ=Ø—:‘:“<ˆDä'¨    Ó2ˆ    Ü×.Ñ.Ø I‰Id‹O˜R¨9¸Iô
ˆðy‰y˜Ó#ˆØ|‰|˜EÓ"ˆà :‰:˜Ò "Ð. D§J¡JÓ.Ð "Ø €Fà 4ˆ<ÐrIc
óJ—|dvsJ‚tj|tj¬«}tj|||||t |«¬«\}}|||fS|j jdk(r||fS|j tk(r|r||fStd«‚t|«‚)a|
    Convert data to array of timestamps.
 
    Parameters
    ----------
    data : np.ndarray[object]
    dayfirst : bool
    yearfirst : bool
    utc : bool, default False
        Whether to convert/localize timestamps to UTC.
    errors : {'raise', 'ignore', 'coerce'}
    allow_object : bool
        Whether to return an object-dtype ndarray instead of raising if the
        data contains more than one timezone.
    out_unit : str, default "ns"
 
    Returns
    -------
    result : ndarray
        np.datetime64[out_unit] if returned values represent wall times or UTC
        timestamps.
        object if mixed timezones
    inferred_tz : tzinfo or None
        If not None, then the datetime64 values in `result` denote UTC timestamps.
 
    Raises
    ------
    ValueError : if data cannot be converted to datetimes
    TypeError  : When a type cannot be converted to datetime
    )rËÚignoreÚcoercer´)ÚerrorsÚutcrÌrÍrñr|z!DatetimeIndex has mixed timezones)
rNr§Úobject_r Úarray_to_datetimer rOrÂr,r@)    rÜrÌrÍrërêrÓrÒrmÚ    tz_parseds             rFr×r×C    s½€ðN Ð2Ñ 2Ð2Ð 2ô :‰:d¤"§*¡*Ô -€Dä×/Ñ/Ø ØØ ØØÜ  Ó*ô Ñ€FˆIðÐðyРРؠ   ‰×    Ñ    ˜cÒ    !ؐyРРؠ   ‰œÒ    ñ ؘ9Ð$Ð $ÜÐ;Ó<Ð<ô˜ÓÐrIcóD—t|d«s||fSt|j«r*|jt«j d«}d}||fSt j|jd«st|j«rtd|j›d«‚t|jt«r td«‚t|jt«rAt|jt«s'tj|tj ¬«}d}||fS)    a\
    Convert data based on dtype conventions, issuing
    errors where appropriate.
 
    Parameters
    ----------
    data : np.ndarray or pd.Index
    copy : bool
    tz : tzinfo or None, default None
 
    Returns
    -------
    data : np.ndarray or pd.Index
    copy : bool
 
    Raises
    ------
    TypeError : PeriodDType data is passed
    rOróFr˜zdtype z& cannot be converted to datetime64[ns]zFPassing PeriodDtype data is invalid. Use `data.to_timestamp()` insteadr´)rPr'rOrr$rr r}r&r@r~r,r+r*rNrþrì)rÜrÇrDs   rFrÕrՍ    sí€ô( 4˜Ô !àTˆzÐäd—j‘jÔ!ð
{‰{œ<Ó(×-Ñ-¨dÓ3ˆØˆð& ˆ:Ðô#
‰˜Ÿ™ SÔ    )¬]¸4¿:¹:Ô-Fä˜& §¡  Ð,RÐSÓTÐTÜ    D—J‘J¤ Ô    ,ôØ Tó
ð    
ô
D—J‘J¤Ô    /¼
Ø 
‰
”Oô9ôx‰x˜¤B§J¡JÔ/ˆØˆà ˆ:ÐrIcój—|€|}|S|€    |Stj||«std|›d|›«‚|S)aV
    If a timezone is inferred from data, check that it is compatible with
    the user-provided timezone, if any.
 
    Parameters
    ----------
    tz : tzinfo or None
    inferred_tz : tzinfo or None
 
    Returns
    -------
    tz : tzinfo or None
 
    Raises
    ------
    TypeError : if both timezones are present but do not match
    zdata is already tz-aware z, unable to set specified tz: )rrQr@)rDrÜs  rFrÙrÙÅ    sc€ð$
€zØ ˆð €Ið
Р   Ø ð €Iô × !Ñ ! " kÔ 2ÜØ'¨  }ð5!Ø!# ð &ó
ð    
ð €IrIcóÒ—|ät|«}|tjd«k(r d}t|«‚t    |tj«r|j
dk7s+t |«r t    |tjtf«std|›d«‚t|dd«rDtt|«}t|jtj|j«¬«}|S)    a£
    Check that a dtype, if passed, represents either a numpy datetime64[ns]
    dtype or a pandas DatetimeTZDtype.
 
    Parameters
    ----------
    dtype : object
 
    Returns
    -------
    dtype : None, numpy.dtype, or DatetimeTZDtype
 
    Raises
    ------
    ValueError : invalid dtype
 
    Notes
    -----
    Unlike _validate_tz_from_dtype, this does _not_ allow non-existent
    tz errors to go through
    NrÔzhPassing in 'datetime64' dtype with no precision is not allowed. Please pass in 'datetime64[ns]' instead.r|zUnexpected value for 'dtype': 'ze'. Must be 'datetime64[s]', 'datetime64[ms]', 'datetime64[us]', 'datetime64[ns]' or DatetimeTZDtype'.rD)rErD)r)rNrOr¶r~rÂrr*r"rrErÚtz_standardizerD)rOÚmsgs  rFr¼r¼ã    sԀð, ÐܘUÓ#ˆØ ”B—H‘H˜T“NÒ "ð;ð ô˜S“/Ð !ô uœbŸh™hÔ 'Ø—‘˜sÒ"Ô*<¸UÔ*CܘE¤B§H¡H¬oÐ#>Ô?ÜØ1°%°ð98ð8óð ô 5˜$ Ô %ô œ¨%Ó0ˆEÜ#Ø—Z‘Z¤I×$<Ñ$<¸U¿X¹XÓ$FôˆEð €LrIcól—|¢t|t«r    tj|«}t |dd«}|2|!t j||«s td«‚|r td«‚|}|9tj|d«r#|!t j||«s td«‚|S#t$rYŒ‰wxYw)aÍ
    If the given dtype is a DatetimeTZDtype, extract the implied
    tzinfo object from it and check that it does not conflict with the given
    tz.
 
    Parameters
    ----------
    dtype : dtype, str
    tz : None, tzinfo
    explicit_tz_none : bool, default False
        Whether tz=None was passed explicitly, as opposed to lib.no_default.
 
    Returns
    -------
    tz : consensus tzinfo
 
    Raises
    ------
    ValueError : on tzinfo mismatch
    NrDz-cannot supply both a tz and a dtype with a tzz3Cannot pass both a timezone-aware dtype and tz=Noner|zHcannot supply both a tz and a timezone-naive dtype (i.e. datetime64[ns])) r~rAr*Úconstruct_from_stringr@r"rrQr¶r r})rOrDrÝÚdtzs    rFrÖrÖ
sʀð. ÐÜ eœSÔ !ð Ü'×=Ñ=¸eÓDôe˜T 4Ó(ˆØ ˆ?؈~¤i×&:Ñ&:¸2¸sÔ&CÜ Ð!PÓQÐQÙÜ Ð!VÓWÐW؈Bà ˆ>œcŸo™o¨e°SÔ9ðˆ~¤i×&:Ñ&:¸2¸sÔ&CÜ ðAóðð
€Iøô/ò ñ
ð  ús”B'Â'    B3Â2B3có—    tj||«}tj|«}tj|«}|%|#tj
||«s td«‚|S||}|S#t$r}td«|‚d}~wwxYw)a·
    If a timezone is not explicitly given via `tz`, see if one can
    be inferred from the `start` and `end` endpoints.  If more than one
    of these inputs provides a timezone, require that they all agree.
 
    Parameters
    ----------
    start : Timestamp
    end : Timestamp
    tz : tzinfo or None
 
    Returns
    -------
    tz : tzinfo or None
 
    Raises
    ------
    TypeError : if start and end timezones do not agree
    z>Start and end cannot both be tz-aware with different timezonesNz0Inferred time zone not equal to passed time zone)rÚ infer_tzinfoÚAssertionErrorr@rÕrQ)rRrSrDrÜÚerrs     rFrûrûP
sŸ€ð,Ü×,Ñ,¨U°CÓ8ˆ ô×(Ñ(¨Ó5€KÜ    ×    Ñ     Ó    #€Bà    €~˜+Ð1Ü×#Ñ# K°Ô4Ü Ð!SÓTÐ Tð
€Ið
Р    Ø ˆà €Iøô! òäØ Ló
àð    ûðús‚A/Á/    B    Á8 BÂB    cóV—|r$||j«}||j«}||fSrA)r¤)rRrSr¤s   rFrúrú{
s3€ñØ Ð Ø—O‘OÓ%ˆEà ˆ?Ø—-‘-“/ˆCà #ˆ:ÐrIcó’—|D|j€8|dk7r|nd}||ddœ}t|t«s|€||d<|jdi|¤Ž}|S)a¹
    Localize a start or end Timestamp to the timezone of the corresponding
    start or end Timestamp
 
    Parameters
    ----------
    ts : start or end Timestamp to potentially localize
    freq : Tick, DateOffset, or None
    tz : str, timezone object or None
    ambiguous: str, localization behavior for ambiguous times
    nonexistent: str, localization behavior for nonexistent times
 
    Returns
    -------
    ts : Timestamp
    NrkF)rÎrðrDrDrB)rr~r2r¢)rr`rDrÎrðÚ localize_argss      rFrürüˆ
s_€ð,
€~˜"Ÿ)™)Ð+ð"+¨gÒ!5‘I¸5ˆ    Ø&/À ÐSWÑXˆ Ü dœDÔ ! T \Ø"$ˆM˜$Ñ Ø ˆR^‰^Ñ ,˜mÑ ,ˆØ €IrIc#óTK—t|«}t|«}|tur|j|«}nd}t|«}|tur|j|«}nd}|r#|j    |«s|j |«}n$|r"|j    |«s|j |«}|€||kr|jdk\rd}d}|€ ||dz
|zz}|€ ||dz
|zz
}tt|«}tt|«}|}|jdk\rO||krI|–—||k(ry|j|«}|j|«}||krtd|›d«‚|}||krŒHyy||k\rI|–—||k(ry|j|«}|j|«}||k\rtd|›d«‚|}||k\rŒHyy­w)aŠ
    Generates a sequence of dates corresponding to the specified time
    offset. Similar to dateutil.rrule except uses pandas DateOffset
    objects to represent time increments.
 
    Parameters
    ----------
    start : Timestamp or None
    end : Timestamp or None
    periods : int or None
    offset : DateOffset
    unit : str
 
    Notes
    -----
    * This method is faster for generating weekdays than dateutil.rrule
    * At least two of (start, end, periods) must be specified.
    * If both start and end are specified, the returned dates will
    satisfy start <= date <= end.
 
    Returns
    -------
    dates : generator object
    NrrôzOffset z did not increment datez did not decrement date) rrrr«Ú is_on_offsetÚ rollforwardÚrollbackÚnrÚ_applyr¶)rRrSrírîrEÚcurÚ    next_dates       rFrýrý©
sæèø€ô@vÓ €Fô eÓ €EØ ”CÑØ— ‘ ˜dÓ#‰àˆô C‹.€CØ
”#~؏k‰k˜$Ó‰àˆá V×(Ñ(¨Ô/ð×"Ñ" 5Ó)‰á     V×(Ñ(¨Ô-ðo‰o˜cÓ"ˆð€˜3 š;¨6¯8©8°qª=؈؈à
€{ðw ‘{ fÑ,Ñ,ˆà €}ðw ‘{ fÑ,Ñ,ˆä ”˜EÓ "€EÜ
Œy˜#Ó
€Cà
€CØ ‡xx1‚}ؐSŠjØŠIàcŠzð🠙  cÓ*ˆIØ!×)Ñ)¨$Ó/ˆIؘCÒÜ  7¨6¨(Ð2IÐ!JÓKÐK؈CðSjðSŠjØŠIàcŠzð🠙  cÓ*ˆIØ!×)Ñ)¨$Ó/ˆIؘCÒÜ  7¨6¨(Ð2IÐ!JÓKÐK؈CðSjùs‚EF(ÅAF(Æ&F().)rDrrErAr¶r*)rDr½rErAr¶znp.dtype[np.datetime64])ry)rDr¾rErAr¶r­rA)rsrArnrArtrº)rÜr4rÇr·rDr¾rÌr·rÍr·rÎr9rÒrº)
rÜr¿rDr¾rÇr·rÎr9r¶ztuple[np.ndarray, bool])FrËFry)
rÜr¿rër·rêr5rÓr·rÒrA)rÇr·rDr¾)rDr¾rÜr¾r¶r¾)F)rDr¾rÝr·r¶r¾)rRrrSrrDr¾r¶r¾)rRúTimestamp | NonerSrr¤r·)rrr¶r)
rRrrSrrír¹rîr rErA)gÚ
__future__rrrrÚtypingrrr    r\ÚnumpyrNÚpandas._configr
Ú pandas._libsr r Úpandas._libs.tslibsr rrrrrrrrrrrrrrrrrrÚpandas._libs.tslibs.dtypesr Ú pandas.errorsr!Úpandas.util._exceptionsr"Úpandas.util._validatorsr#Úpandas.core.dtypes.commonr$r%r&r'r(r)Úpandas.core.dtypes.dtypesr*r+r,Úpandas.core.dtypes.missingr-rqr.r×Úpandas.core.arrays._rangesr/Úpandas.core.commonÚcoreÚcommonrøÚpandas.tseries.frequenciesr0Úpandas.tseries.offsetsr1r2Úcollections.abcr3Úpandas._typingr4r5r6r7r8r9r:r;r~r=r?r3rGruÚ TimelikeOpsÚ DatelikeOpsrwrÚrØr×rÕrÙr¼rÖrûrúrürýrBrIrFú<module>rsºðÝ"÷ñ÷
ñó
ãå-÷÷÷÷÷÷ñõ*:Ý,Ý4Ý6÷÷÷ñõ
,å2Ý=ߠРå7÷ñ
Ý(÷    ÷    ó    õ!Ý.ð€ð
óó
ðð
óó
ðð
$(ð1Øð1Ø ð1à.ó1ô*%ôTjXC—O‘O S§_¡_ôjXðh?ØØØØ&Øñ{Ø
ð{ð ð{ð    ð    {ð
ð {ð ð {ðð{ðó{ð|)Ø
ð)Ø*ð)Ø26ð)ØCPð)àó)ð`Ø#*ØØðG Ø
ðG ð
ð    G ð
!ð G ð ð G ðóG ôT1ópò<5ðr8=ð2Øð2Ø04ð2àó2ðj(Ø ð(Ø$ð(Ø*7ð(àó(ðV
Ø ð
Ø"2ð
Ø?Có
ðØðàóðBlØ ðlà    ðlððlð ð    lð ô lrI