-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdebug_board.json
More file actions
2978 lines (2978 loc) · 136 KB
/
debug_board.json
File metadata and controls
2978 lines (2978 loc) · 136 KB
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
{
"bus": { "stops": {} },
"subway": {
"northbound": [
{
"stationId": "chambers_n_2_3__Chambers St__northbound__1",
"key": "chambers_n_2_3__Chambers St__northbound__1",
"name": "CHAMBERS ST",
"baseName": "Chambers St",
"direction": "northbound",
"lines": ["1"],
"arrivals": [
{ "line": "1", "destination": "", "minutes": 5 },
{ "line": "1", "destination": "", "minutes": 11 },
{ "line": "1", "destination": "", "minutes": 17 },
{ "line": "1", "destination": "", "minutes": 23 },
{ "line": "1", "destination": "", "minutes": 29 },
{ "line": "1", "destination": "", "minutes": 35 }
],
"_debugStops": ["137N"]
},
{
"stationId": "chambers_n_2_3__Chambers St__northbound__2,3",
"key": "chambers_n_2_3__Chambers St__northbound__2,3",
"name": "CHAMBERS ST",
"baseName": "Chambers St",
"direction": "northbound",
"lines": ["2", "3"],
"arrivals": [
{ "line": "2", "destination": "", "minutes": 17 },
{ "line": "3", "destination": "", "minutes": 18 },
{ "line": "2", "destination": "", "minutes": 26 },
{ "line": "3", "destination": "", "minutes": 28 },
{ "line": "2", "destination": "", "minutes": 38 },
{ "line": "3", "destination": "", "minutes": 40 },
{ "line": "2", "destination": "", "minutes": 49 },
{ "line": "3", "destination": "", "minutes": 53 },
{ "line": "2", "destination": "", "minutes": 63 },
{ "line": "3", "destination": "", "minutes": 64 },
{ "line": "2", "destination": "", "minutes": 101 }
],
"_debugStops": ["137N"]
},
{
"stationId": "chambers_wtc_n_a_c__Chambers St - WTC__northbound__A,C",
"key": "chambers_wtc_n_a_c__Chambers St - WTC__northbound__A,C",
"name": "CHAMBERS ST-WTC",
"baseName": "Chambers St - WTC",
"direction": "northbound",
"lines": ["A", "C"],
"arrivals": [
{ "line": "A", "destination": "", "minutes": 1 },
{ "line": "C", "destination": "", "minutes": 4 },
{ "line": "A", "destination": "", "minutes": 6 },
{ "line": "C", "destination": "", "minutes": 14 },
{ "line": "A", "destination": "", "minutes": 15 },
{ "line": "C", "destination": "", "minutes": 27 },
{ "line": "A", "destination": "", "minutes": 28 },
{ "line": "A", "destination": "", "minutes": 33 },
{ "line": "A", "destination": "", "minutes": 42 },
{ "line": "C", "destination": "", "minutes": 43 },
{ "line": "A", "destination": "", "minutes": 54 },
{ "line": "C", "destination": "", "minutes": 61 },
{ "line": "A", "destination": "", "minutes": 63 },
{ "line": "C", "destination": "", "minutes": 71 },
{ "line": "A", "destination": "", "minutes": 74 },
{ "line": "C", "destination": "", "minutes": 83 },
{ "line": "A", "destination": "", "minutes": 86 },
{ "line": "A", "destination": "", "minutes": 93 },
{ "line": "A", "destination": "", "minutes": 102 }
],
"_debugStops": ["A36N"]
},
{
"stationId": "chambers_wtc_n_e__Chambers St - WTC__northbound__E",
"key": "chambers_wtc_n_e__Chambers St - WTC__northbound__E",
"name": "CHAMBERS ST-WTC",
"baseName": "Chambers St - WTC",
"direction": "northbound",
"lines": ["E"],
"arrivals": [
{ "line": "A", "destination": "", "minutes": 1 },
{ "line": "C", "destination": "", "minutes": 4 },
{ "line": "A", "destination": "", "minutes": 6 },
{ "line": "C", "destination": "", "minutes": 14 },
{ "line": "A", "destination": "", "minutes": 15 },
{ "line": "C", "destination": "", "minutes": 27 },
{ "line": "A", "destination": "", "minutes": 28 },
{ "line": "A", "destination": "", "minutes": 33 },
{ "line": "A", "destination": "", "minutes": 42 },
{ "line": "C", "destination": "", "minutes": 43 },
{ "line": "A", "destination": "", "minutes": 54 },
{ "line": "C", "destination": "", "minutes": 61 },
{ "line": "A", "destination": "", "minutes": 63 },
{ "line": "C", "destination": "", "minutes": 71 },
{ "line": "A", "destination": "", "minutes": 74 },
{ "line": "C", "destination": "", "minutes": 83 },
{ "line": "A", "destination": "", "minutes": 86 },
{ "line": "A", "destination": "", "minutes": 93 },
{ "line": "A", "destination": "", "minutes": 102 }
],
"_debugStops": ["A36N"]
}
],
"southbound": [
{
"stationId": "chambers_s_1__Chambers St__southbound__1",
"key": "chambers_s_1__Chambers St__southbound__1",
"name": "CHAMBERS ST",
"baseName": "Chambers St",
"direction": "southbound",
"lines": ["1"],
"arrivals": [
{ "line": "1", "destination": "", "minutes": 1 },
{ "line": "1", "destination": "", "minutes": 8 },
{ "line": "1", "destination": "", "minutes": 11 },
{ "line": "1", "destination": "", "minutes": 13 },
{ "line": "1", "destination": "", "minutes": 19 },
{ "line": "1", "destination": "", "minutes": 32 },
{ "line": "1", "destination": "", "minutes": 40 },
{ "line": "1", "destination": "", "minutes": 43 },
{ "line": "1", "destination": "", "minutes": 49 },
{ "line": "1", "destination": "", "minutes": 55 },
{ "line": "1", "destination": "", "minutes": 62 },
{ "line": "1", "destination": "", "minutes": 69 },
{ "line": "1", "destination": "", "minutes": 76 },
{ "line": "1", "destination": "", "minutes": 83 }
],
"_debugStops": ["137S"]
},
{
"stationId": "chambers_s_2_3__Chambers St__southbound__2,3",
"key": "chambers_s_2_3__Chambers St__southbound__2,3",
"name": "CHAMBERS ST",
"baseName": "Chambers St",
"direction": "southbound",
"lines": ["2", "3"],
"arrivals": [
{ "line": "3", "destination": "", "minutes": 7 },
{ "line": "2", "destination": "", "minutes": 8 },
{ "line": "2", "destination": "", "minutes": 14 },
{ "line": "3", "destination": "", "minutes": 18 },
{ "line": "2", "destination": "", "minutes": 25 },
{ "line": "3", "destination": "", "minutes": 29 },
{ "line": "2", "destination": "", "minutes": 35 },
{ "line": "3", "destination": "", "minutes": 41 },
{ "line": "2", "destination": "", "minutes": 48 },
{ "line": "3", "destination": "", "minutes": 53 },
{ "line": "2", "destination": "", "minutes": 61 },
{ "line": "2", "destination": "", "minutes": 72 },
{ "line": "2", "destination": "", "minutes": 84 }
],
"_debugStops": ["137S"]
},
{
"stationId": "chambers_wtc_s_a_c_e__Chambers St - WTC__southbound__A,C",
"key": "chambers_wtc_s_a_c_e__Chambers St - WTC__southbound__A,C",
"name": "CHAMBERS ST-WTC",
"baseName": "Chambers St - WTC",
"direction": "southbound",
"lines": ["A", "C"],
"arrivals": [
{ "line": "C", "destination": "", "minutes": 1 },
{ "line": "A", "destination": "", "minutes": 3 },
{ "line": "C", "destination": "", "minutes": 12 },
{ "line": "A", "destination": "", "minutes": 14 },
{ "line": "A", "destination": "", "minutes": 19 },
{ "line": "C", "destination": "", "minutes": 23 },
{ "line": "A", "destination": "", "minutes": 32 },
{ "line": "C", "destination": "", "minutes": 34 },
{ "line": "A", "destination": "", "minutes": 45 },
{ "line": "C", "destination": "", "minutes": 47 },
{ "line": "A", "destination": "", "minutes": 55 },
{ "line": "C", "destination": "", "minutes": 58 },
{ "line": "A", "destination": "", "minutes": 65 },
{ "line": "C", "destination": "", "minutes": 70 },
{ "line": "A", "destination": "", "minutes": 75 },
{ "line": "A", "destination": "", "minutes": 80 },
{ "line": "C", "destination": "", "minutes": 82 },
{ "line": "A", "destination": "", "minutes": 92 }
],
"_debugStops": ["A36S"]
},
{
"stationId": "chambers_wtc_s_a_c__Chambers St - WTC__southbound__E",
"key": "chambers_wtc_s_a_c__Chambers St - WTC__southbound__E",
"name": "CHAMBERS ST-WTC",
"baseName": "Chambers St - WTC",
"direction": "southbound",
"lines": ["E"],
"arrivals": [
{ "line": "C", "destination": "", "minutes": 1 },
{ "line": "A", "destination": "", "minutes": 3 },
{ "line": "C", "destination": "", "minutes": 12 },
{ "line": "A", "destination": "", "minutes": 14 },
{ "line": "A", "destination": "", "minutes": 19 },
{ "line": "C", "destination": "", "minutes": 23 },
{ "line": "A", "destination": "", "minutes": 32 },
{ "line": "C", "destination": "", "minutes": 34 },
{ "line": "A", "destination": "", "minutes": 45 },
{ "line": "C", "destination": "", "minutes": 47 },
{ "line": "A", "destination": "", "minutes": 55 },
{ "line": "C", "destination": "", "minutes": 58 },
{ "line": "A", "destination": "", "minutes": 65 },
{ "line": "C", "destination": "", "minutes": 70 },
{ "line": "A", "destination": "", "minutes": 75 },
{ "line": "A", "destination": "", "minutes": 80 },
{ "line": "C", "destination": "", "minutes": 82 },
{ "line": "A", "destination": "", "minutes": 92 }
],
"_debugStops": ["A36S"]
}
],
"status": "ok"
},
"generatedAt": "2025-11-30T21:40:36.277Z",
"refreshMs": 7000,
"alerts": {
"count": 19,
"lines": [
"1",
"2",
"3",
"4",
"5",
"6",
"7",
"A",
"B",
"C",
"D",
"E",
"F",
"N",
"Q",
"R",
"SIR",
"W",
"Z"
],
"details": [
{
"lines": ["D", "R"],
"alert_type": "Delays",
"sort_order": 26,
"header": "Uptown [D] trains are delayed.\nUptown [N][Q] trains are running via the [R] from DeKalb Av to Canal St.",
"description": "What's Happening?\nFDNY is responding to a track fire near DeKalb Av.\n\nExpect uptown [R] delays while they share tracks with rerouted trains.",
"feed_entity_id": "lmm:alert:486975",
"selectors": [
{
"raw": "MTASBWY:D:26",
"parsed_priority": 26,
"selector": { "sort_order": "MTASBWY:D:26" }
},
{
"raw": "MTASBWY:R:26",
"parsed_priority": 26,
"selector": { "sort_order": "MTASBWY:R:26" }
}
],
"informed_entities": [
{ "route_id": "D" },
{ "route_id": "R" },
{ "stop_id": "R30", "stop_name": "DeKalb Av" },
{ "stop_id": "Q01", "stop_name": "Canal St" }
],
"display_before_seconds": 0,
"active_periods": [{ "start": 1764537946 }]
},
{
"lines": ["N", "Q"],
"alert_type": "Reroute",
"sort_order": 32,
"header": "Uptown [D] trains are delayed.\nUptown [N][Q] trains are running via the [R] from DeKalb Av to Canal St.",
"description": "What's Happening?\nFDNY is responding to a track fire near DeKalb Av.\n\nExpect uptown [R] delays while they share tracks with rerouted trains.",
"feed_entity_id": "lmm:alert:486976",
"selectors": [
{
"raw": "MTASBWY:N:32",
"parsed_priority": 32,
"selector": { "sort_order": "MTASBWY:N:32" }
},
{
"raw": "MTASBWY:Q:32",
"parsed_priority": 32,
"selector": { "sort_order": "MTASBWY:Q:32" }
}
],
"informed_entities": [
{ "route_id": "N" },
{ "route_id": "Q" },
{ "stop_id": "R30", "stop_name": "DeKalb Av" },
{ "stop_id": "Q01", "stop_name": "Canal St" }
],
"display_before_seconds": 0,
"active_periods": [{ "start": 1764537946 }]
},
{
"lines": ["SIR"],
"alert_type": "Boarding Change",
"sort_order": 10,
"header": "All [SIR] trains from Prince's Bay to Arthur Kill board from the St George-bound platform",
"description": "Boarding change affects Prince's Bay, Pleasant Plains, Richmond Valley and Arthur Kill stations.\nWhat's happening?\nScheduled maintenance",
"feed_entity_id": "lmm:planned_work:28944",
"selectors": [
{
"raw": "MTASBWY:SI:10",
"parsed_priority": 10,
"selector": { "sort_order": "MTASBWY:SI:10" }
}
],
"informed_entities": [
{ "route_id": "SI" },
{ "stop_id": "S11", "stop_name": "Arthur Kill" },
{ "stop_id": "S15", "stop_name": "Prince's Bay" },
{ "stop_id": "S31", "stop_name": "St George" }
],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1764504000, "end": 1764547200 }]
},
{
"lines": ["R", "W"],
"alert_type": "Station Notice",
"sort_order": 3,
"header": "Canal St [R][W] Station - no transfer to [J][Z][N][Q][6] from the uptown platform during stair repairs",
"description": "Alternatives during closure:\nFor [N][Q][6], take any uptown train to 14 St-Union Sq. For [J][Z], take any downtown train from 14 St to this station.\nFor Spring St, Bleecker St, and Astor Pl [6] stations, take any uptown train to Prince St or 8 St-NYU [R][W] stations.\nOvernight, when the [R][W] do not serve this station, take the [N] instead.\nSpecial Note: If you start your trip at City Hall, Cortlandt St, Rector St, Whitehall St-South Ferry, Borough Hall, Jay St-MetroTech, and DeKalb Av, you can still receive a free transfer (out-of-system, across fare control area) during construction. Here's how:\n1. When you arrive at the Canal St uptown platform, exit turnstiles, and go across fare control area.\n2. Re-enter at no additional charge by using the same phone, bank card, OMNY Card, or MetroCard used at the start of your trip from the stations listed above.\n\nWhat's happening?\nWe're making stairway improvements",
"feed_entity_id": "lmm:planned_work:28661",
"selectors": [
{
"raw": "MTASBWY:R:3",
"parsed_priority": 3,
"selector": { "sort_order": "MTASBWY:R:3" }
},
{
"raw": "MTASBWY:W:3",
"parsed_priority": 3,
"selector": { "sort_order": "MTASBWY:W:3" }
}
],
"informed_entities": [{ "route_id": "R" }, { "route_id": "W" }],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1759755600, "end": 1769421600 }]
},
{
"lines": ["1"],
"alert_type": "Planned - Stops Skipped",
"sort_order": 16,
"header": "In Upper Manhattan, downtown [1] skips 125 St, 116 St-Columbia University, Cathedral Pkwy (110 St) and 103 St",
"description": "For service to these stations, take the [1] to 96 St and transfer to an uptown [1].\n\nFor service from these stations, take the [1] to 168 St-Washington Hts and transfer to a downtown [1].\n\nTravel tip:\nTransfer between uptown and downtown trains with Unlimited Ride MetroCard or fare-capped OMNY at 137 St-City College.\n\nWhat's happening?\nWe're making electrical improvements",
"feed_entity_id": "lmm:planned_work:28401",
"selectors": [
{
"raw": "MTASBWY:1:16",
"parsed_priority": 16,
"selector": { "sort_order": "MTASBWY:1:16" }
}
],
"informed_entities": [
{ "route_id": "1" },
{ "stop_id": "116", "stop_name": "125 St" },
{ "stop_id": "117", "stop_name": "116 St-Columbia University" },
{ "stop_id": "118", "stop_name": "Cathedral Pkwy (110 St)" },
{ "stop_id": "119", "stop_name": "103 St" }
],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1764391500, "end": 1764583200 }]
},
{
"lines": ["C"],
"alert_type": "Planned - Stops Skipped",
"sort_order": 16,
"header": "In Manhattan, uptown [C] skips Spring St, 23 St and 50 St",
"description": "For service to Spring St, take the [C] to W 4 St-Wash Sq and transfer to a downtown [C].\n\nFor service from Spring St, take the [C] to Canal St and transfer to an uptown [C].\n\nFor service to 23 St and 50 St, take the [E] via transfer at 14 St or 42 St-Port Authority.\n\nFor service from 23 St, take the [E] to 42 St-Port Authority and transfer to an uptown [C] (across the platform).\n\nFor service from 50 St, take the [C] or [E] to 42 St-Port Authority and transfer to an uptown [C].\n\nSchedule reminder: [C] does not operate overnight.\n\nNote: No [E] between W 4 St-Wash Sq and World Trade Center during this time.\n\nWhat's happening?\nWe're making electrical improvements",
"feed_entity_id": "lmm:planned_work:28391",
"selectors": [
{
"raw": "MTASBWY:C:16",
"parsed_priority": 16,
"selector": { "sort_order": "MTASBWY:C:16" }
}
],
"informed_entities": [
{ "route_id": "C" },
{ "stop_id": "A25", "stop_name": "50 St" },
{ "stop_id": "A30", "stop_name": "23 St" },
{ "stop_id": "A33", "stop_name": "Spring St" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764384300, "end": 1764388800 },
{ "start": 1764414900, "end": 1764476100 },
{ "start": 1764506700, "end": 1764561600 }
]
},
{
"lines": ["E"],
"alert_type": "Planned - Part Suspended",
"sort_order": 20,
"header": "In Manhattan, no [E] between W 4 St-Wash Sq and World Trade Center",
"description": "[E] runs between Jamaica Center-Parsons/Archer and W 4 St-Wash Sq, then via the [F] to/from 2 Av, the last stop.\n\nFor Spring St (downtown service only), Canal St and World Trade Center/Chambers St, take the [A] or [C] instead.\nTransfer between trains at W 4 St-Wash Sq.\nWhat's happening?\nWe're making electrical improvements",
"feed_entity_id": "lmm:planned_work:28387",
"selectors": [
{
"raw": "MTASBWY:E:20",
"parsed_priority": 20,
"selector": { "sort_order": "MTASBWY:E:20" }
}
],
"informed_entities": [
{ "route_id": "E" },
{ "stop_id": "A32", "stop_name": "W 4 St-Wash Sq" },
{ "stop_id": "E01", "stop_name": "World Trade Center" }
],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1764384300, "end": 1764583200 }]
},
{
"lines": ["7"],
"alert_type": "Reduced Service",
"sort_order": 13,
"header": "[7] runs every 8 minutes",
"description": "[7] service operates on a modified schedule because of track work between Mets-Willets Point and 74 St-Broadway.\n\nWhat's happening?\nWe're replacing tracks",
"feed_entity_id": "lmm:planned_work:28380",
"selectors": [
{
"raw": "MTASBWY:7:13",
"parsed_priority": 13,
"selector": { "sort_order": "MTASBWY:7:13" }
}
],
"informed_entities": [{ "route_id": "7" }],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764414900, "end": 1764468000 },
{ "start": 1764506700, "end": 1764551700 },
{ "start": 1765019700, "end": 1765072800 },
{ "start": 1765111500, "end": 1765156500 },
{ "start": 1765624500, "end": 1765677600 },
{ "start": 1765716300, "end": 1765761300 },
{ "start": 1766229300, "end": 1766282400 },
{ "start": 1766321100, "end": 1766366100 }
]
},
{
"lines": ["E", "F"],
"alert_type": "Planned - Express to Local",
"sort_order": 14,
"header": "In Queens, Jamaica-bound [E][F] stops at Elmhurst Av, Grand Av-Newtown, Woodhaven Blvd, 63 Dr-Rego Park and 67 Av",
"description": "Schedule reminder: [E][F] also make these local stops overnight.\n\nWhat's happening?\nStation maintenance",
"feed_entity_id": "lmm:planned_work:28364",
"selectors": [
{
"raw": "MTASBWY:E:14",
"parsed_priority": 14,
"selector": { "sort_order": "MTASBWY:E:14" }
},
{
"raw": "MTASBWY:F:14",
"parsed_priority": 14,
"selector": { "sort_order": "MTASBWY:F:14" }
}
],
"informed_entities": [
{ "route_id": "E" },
{ "route_id": "F" },
{ "stop_id": "G09", "stop_name": "67 Av" },
{ "stop_id": "G10", "stop_name": "63 Dr-Rego Park" },
{ "stop_id": "G11", "stop_name": "Woodhaven Blvd" },
{ "stop_id": "G12", "stop_name": "Grand Av-Newtown" },
{ "stop_id": "G13", "stop_name": "Elmhurst Av" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764415800, "end": 1764472500 },
{ "start": 1764502200, "end": 1764558900 }
]
},
{
"lines": ["A"],
"alert_type": "Planned - Express to Local",
"sort_order": 14,
"header": "In Brooklyn, Manhattan-bound [A] stops at Shepherd Av, Van Siclen Av and Liberty Av",
"description": "Schedule reminder: Late night [A] also stops at these stations.\n\nWhat's happening?\nStructural maintenance",
"feed_entity_id": "lmm:planned_work:28362",
"selectors": [
{
"raw": "MTASBWY:A:14",
"parsed_priority": 14,
"selector": { "sort_order": "MTASBWY:A:14" }
}
],
"informed_entities": [
{ "route_id": "A" },
{ "stop_id": "A52", "stop_name": "Liberty Av" },
{ "stop_id": "A53", "stop_name": "Van Siclen Av" },
{ "stop_id": "A54", "stop_name": "Shepherd Av" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764413100, "end": 1764473400 },
{ "start": 1764504000, "end": 1764559800 }
]
},
{
"lines": ["A"],
"alert_type": "Planned - Express to Local",
"sort_order": 14,
"header": "In Brooklyn, Queens-bound [A] stops at Ralph Av and Rockaway Av",
"description": "Schedule reminder: Late night [A] also stops at these stations.\n\nWhat's happening?\nStructural maintenance",
"feed_entity_id": "lmm:planned_work:28361",
"selectors": [
{
"raw": "MTASBWY:A:14",
"parsed_priority": 14,
"selector": { "sort_order": "MTASBWY:A:14" }
}
],
"informed_entities": [
{ "route_id": "A" },
{ "stop_id": "A49", "stop_name": "Ralph Av" },
{ "stop_id": "A50", "stop_name": "Rockaway Av" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764415800, "end": 1764475200 },
{ "start": 1764506700, "end": 1764561600 }
]
},
{
"lines": ["N"],
"alert_type": "Planned - Reroute",
"sort_order": 18,
"header": "In Brooklyn, Manhattan-bound [N] runs via the [D] from Coney Island-Stillwell Av to 36 St, Brooklyn",
"description": "Trains stop at 62 St/New Utrecht Av.\n\nFor service to 86 St, Avenue U, Kings Hwy, Bay Pkwy, 20 Av and 18 Av, take the [N] to 62 St/New Utrecht Av [accessibility icon] and transfer to a Coney Island-bound [N].\n\nFor service to Fort Hamilton Pkwy and 8 Av, take the [N] to 36 St and transfer to a Coney Island-bound [N].\n\nFor service from these stations, take the [N] to New Utrecht Av/62 St [accessibility icon] or Coney Island-Stillwell Av and transfer to a Manhattan-bound [N].\n\nFor 59 St, 53 St and 45 St, take the [R] or Coney Island-bound [N] via transfer at 36 St.\n\nWhat's happening?\nTrack maintenance\n\n[accessibility icon] This service change affects one or more ADA accessible stations and these travel alternatives may not be fully accessible. Please contact 511 to plan your trip.",
"feed_entity_id": "lmm:planned_work:28356",
"selectors": [
{
"raw": "MTASBWY:N:18",
"parsed_priority": 18,
"selector": { "sort_order": "MTASBWY:N:18" }
}
],
"informed_entities": [
{ "route_id": "N" },
{ "stop_id": "D43", "stop_name": "Coney Island-Stillwell Av" },
{ "stop_id": "R36", "stop_name": "36 St" }
],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1764405900, "end": 1764558000 }]
},
{
"lines": ["6"],
"alert_type": "Planned - Stops Skipped",
"sort_order": 16,
"header": "In the Bronx, Manhattan-bound [6] skips Longwood Av, E 149 St, E 143 St, Cypress Av and Brook Av\nAll trains board from the uptown platform at 3 Av-138 St",
"description": "For service to these stations, take the [6] to 3 Av-138 St and transfer to a Pelham Bay Park-bound [6].\n\nFor service from these stations, take the [6] to Hunts Point Av [accessibility icon] and transfer to a Manhattan-bound [6].\n\nWhat's happening?\nWe're making electrical improvements\n\n[accessibility icon] This service change affects one or more ADA accessible stations and these travel alternatives may not be fully accessible. Please contact 511 to plan your trip.",
"feed_entity_id": "lmm:planned_work:28306",
"selectors": [
{
"raw": "MTASBWY:6:16",
"parsed_priority": 16,
"selector": { "sort_order": "MTASBWY:6:16" }
}
],
"informed_entities": [
{ "route_id": "6" },
{ "stop_id": "614", "stop_name": "Longwood Av" },
{ "stop_id": "615", "stop_name": "E 149 St" },
{ "stop_id": "617", "stop_name": "Cypress Av" },
{ "stop_id": "618", "stop_name": "Brook Av" }
],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1764391500, "end": 1764583200 }]
},
{
"lines": ["2"],
"alert_type": "Reduced Service",
"sort_order": 13,
"header": "[2] runs every 12 minutes",
"description": "What's happening?\nWe're replacing tracks",
"feed_entity_id": "lmm:planned_work:28258",
"selectors": [
{
"raw": "MTASBWY:2:13",
"parsed_priority": 13,
"selector": { "sort_order": "MTASBWY:2:13" }
}
],
"informed_entities": [{ "route_id": "2" }],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764413100, "end": 1764464400 },
{ "start": 1764513000, "end": 1764545400 },
{ "start": 1765017900, "end": 1765069200 },
{ "start": 1765117800, "end": 1765150200 }
]
},
{
"lines": ["3"],
"alert_type": "Reduced Service",
"sort_order": 13,
"header": "[3] runs every 12 minutes",
"description": "What's happening?\nWe're replacing tracks",
"feed_entity_id": "lmm:planned_work:28257",
"selectors": [
{
"raw": "MTASBWY:3:13",
"parsed_priority": 13,
"selector": { "sort_order": "MTASBWY:3:13" }
}
],
"informed_entities": [{ "route_id": "3" }],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764424800, "end": 1764468000 },
{ "start": 1764512100, "end": 1764557100 },
{ "start": 1765029600, "end": 1765072800 },
{ "start": 1765116900, "end": 1765161900 },
{ "start": 1765634400, "end": 1765677600 },
{ "start": 1765721700, "end": 1765766700 }
]
},
{
"lines": ["4"],
"alert_type": "Planned - Express to Local",
"sort_order": 14,
"header": "In Manhattan, uptown [4] runs local from Grand Central-42 St to 125 St",
"description": "Schedule reminder: Late night local trains also serve these stations.\n\nWhat's happening?\nWe're making electrical improvements",
"feed_entity_id": "lmm:planned_work:28243",
"selectors": [
{
"raw": "MTASBWY:4:14",
"parsed_priority": 14,
"selector": { "sort_order": "MTASBWY:4:14" }
}
],
"informed_entities": [
{ "route_id": "4" },
{ "stop_id": "621", "stop_name": "125 St" },
{ "stop_id": "631", "stop_name": "Grand Central-42 St" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764391500, "end": 1764397800 },
{ "start": 1764414000, "end": 1764484200 },
{ "start": 1764503100, "end": 1764570600 }
]
},
{
"lines": ["5"],
"alert_type": "Planned - Express to Local",
"sort_order": 14,
"header": "In Manhattan, uptown [5] runs local from Grand Central-42 St to 125 St",
"description": "Schedule reminder: Overnight [5] service runs only in the Bronx between E 180 St and Eastchester-Dyre Av.\n\nWhat's happening?\nWe're making electrical improvements",
"feed_entity_id": "lmm:planned_work:28242",
"selectors": [
{
"raw": "MTASBWY:5:14",
"parsed_priority": 14,
"selector": { "sort_order": "MTASBWY:5:14" }
}
],
"informed_entities": [
{ "route_id": "5" },
{ "stop_id": "621", "stop_name": "125 St" },
{ "stop_id": "631", "stop_name": "Grand Central-42 St" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764417600, "end": 1764475200 },
{ "start": 1764506700, "end": 1764561600 }
]
},
{
"lines": ["6"],
"alert_type": "Planned - Extra Transfer",
"sort_order": 15,
"header": "[6] service operates in two sections:\n1. Between Brooklyn Bridge-City Hall and 125 St \n2. Between 125 St and Pelham Bay Park",
"description": "Transfer at 125 St [accessibility icon] to continue your trip.\nNote: Trains in Manhattan operate to/from 149 St-Grand Concourse [4] station, skipping 138 St-Grand Concourse uptown.\nTrains run every 8 minutes (days/evenings) in Manhattan, and every 12 minutes (days/evenings) between Pelham Bay Park and 125 St.\n\nWhat's happening?\nWe're making electrical improvements",
"feed_entity_id": "lmm:planned_work:28241",
"selectors": [
{
"raw": "MTASBWY:6:15",
"parsed_priority": 15,
"selector": { "sort_order": "MTASBWY:6:15" }
}
],
"informed_entities": [
{ "route_id": "6" },
{ "stop_id": "601", "stop_name": "Pelham Bay Park" },
{ "stop_id": "621", "stop_name": "125 St" },
{ "stop_id": "640", "stop_name": "Brooklyn Bridge-City Hall" }
],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1764392460, "end": 1764583200 }]
},
{
"lines": ["3"],
"alert_type": "Planned - Stops Skipped",
"sort_order": 16,
"header": "In Brooklyn, Manhattan-bound [3] skips Eastern Pkwy-Brooklyn Museum, Grand Army Plaza and Bergen St",
"description": "For service to these stations, take the [3] to Atlantic Av-Barclays Ctr and transfer to a Flatbush Av-bound [2] or New Lots Av-bound [3].\n\nFor service from these stations, take the [2] or [3] to Franklin Av-Medgar Evers College and transfer to a Manhattan-bound [3].\n\nNote: Late night [3] service in Manhattan runs between Harlem-148 St and 34 St-Penn Station.\n\nWhat's happening?\nWe're replacing tracks\n\n[accessibility icon] This service change affects one or more ADA accessible stations and these travel alternatives may not be fully accessible. Please contact 511 to plan your trip.",
"feed_entity_id": "lmm:planned_work:28236",
"selectors": [
{
"raw": "MTASBWY:3:16",
"parsed_priority": 16,
"selector": { "sort_order": "MTASBWY:3:16" }
}
],
"informed_entities": [
{ "route_id": "3" },
{ "stop_id": "236", "stop_name": "Bergen St" },
{ "stop_id": "237", "stop_name": "Grand Army Plaza" },
{ "stop_id": "238", "stop_name": "Eastern Pkwy-Brooklyn Museum" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764384300, "end": 1764388800 },
{ "start": 1764414000, "end": 1764478740 },
{ "start": 1764508500, "end": 1764565140 },
{ "start": 1764989100, "end": 1764993600 },
{ "start": 1765018800, "end": 1765083540 },
{ "start": 1765113300, "end": 1765169940 },
{ "start": 1765593900, "end": 1765598400 },
{ "start": 1765623600, "end": 1765688340 },
{ "start": 1765718100, "end": 1765774740 }
]
},
{
"lines": ["2"],
"alert_type": "Planned - Stops Skipped",
"sort_order": 16,
"header": "In Brooklyn, Manhattan-bound [2] skips Eastern Pkwy-Brooklyn Museum, Grand Army Plaza and Bergen St",
"description": "For service to these stations, take the [2] to Atlantic Av-Barclays Ctr and transfer to a Flatbush Av-bound [2] or New Lots Av-bound [3] or [4] local.\n\nFor service from these stations, take the [2][3] or [4] to Franklin Av-Medgar Evers College and transfer to a Manhattan-bound [2].\n\nWhat's happening?\nWe're replacing tracks\n\n[accessibility icon] This service change affects one or more ADA accessible stations and these travel alternatives may not be fully accessible. Please contact 511 to plan your trip.",
"feed_entity_id": "lmm:planned_work:28235",
"selectors": [
{
"raw": "MTASBWY:2:16",
"parsed_priority": 16,
"selector": { "sort_order": "MTASBWY:2:16" }
}
],
"informed_entities": [
{ "route_id": "2" },
{ "stop_id": "236", "stop_name": "Bergen St" },
{ "stop_id": "237", "stop_name": "Grand Army Plaza" },
{ "stop_id": "238", "stop_name": "Eastern Pkwy-Brooklyn Museum" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764384300, "end": 1764583200 },
{ "start": 1764989100, "end": 1765188000 },
{ "start": 1765593900, "end": 1765792800 }
]
},
{
"lines": ["5"],
"alert_type": "Reduced Service",
"sort_order": 13,
"header": "[5] runs every 20 minutes",
"description": "[5] service operates on a modified schedule because [4][5] and [6] trains are sharing a track in Manhattan.\n\nWhat's happening?\nWe're making electrical improvements",
"feed_entity_id": "lmm:planned_work:28232",
"selectors": [
{
"raw": "MTASBWY:5:13",
"parsed_priority": 13,
"selector": { "sort_order": "MTASBWY:5:13" }
}
],
"informed_entities": [{ "route_id": "5" }],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764413100, "end": 1764474300 },
{ "start": 1764505800, "end": 1764560700 }
]
},
{
"lines": ["Q"],
"alert_type": "Planned - Part Suspended",
"sort_order": 20,
"header": "In Brooklyn, no [Q] between Prospect Park and Coney Island-Stillwell Av",
"description": "[Q] runs between 96 St and Prospect Park, the last stop.\n\n[shuttle bus icon] Free shuttle buses run along two routes:\n1. Local, all stops between Prospect Park and Kings Hwy\n2. Nonstop, between Prospect Park and Kings Hwy, and making all local stops to/from Coney Island-Stillwell Av\n\nFor direct service between Manhattan/Downtown Brooklyn and Coney Island, take the [D][F] or [N].\n\nTransfer at the following stations:\n34 St-Herald Sq [accessibility icon] | [D][F][N][Q]\nAtlantic Av-Barclays Ctr [accessibility icon] | [D][N][Q]\nProspect Park [accessibility icon] | [Q] [shuttle bus icon]\nKings Hwy [shuttle bus icon] local and nonstop shuttle buses\nConey Island-Stillwell Av [accessibility icon] (F, N) | [D][F][N] [shuttle bus icon]\nTravel tip:\nB68 bus service is also available along Coney Island Ave between Parkside Av and Coney Island-Stillwell Av.\n\nWhat's happening?\nWe're replacing tracks",
"feed_entity_id": "lmm:planned_work:28027",
"selectors": [
{
"raw": "MTASBWY:Q:20",
"parsed_priority": 20,
"selector": { "sort_order": "MTASBWY:Q:20" }
}
],
"informed_entities": [
{ "route_id": "Q" },
{ "stop_id": "D26", "stop_name": "Prospect Park" },
{ "stop_id": "D43", "stop_name": "Coney Island-Stillwell Av" }
],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1764390600, "end": 1764583200 }]
},
{
"lines": ["R"],
"alert_type": "Planned - Reroute",
"sort_order": 18,
"header": "In Lower Manhattan and Brooklyn, Bay Ridge-bound [R] runs via the [Q] from Canal St to DeKalb Av",
"description": "In Manhattan, use nearby [4][5] or [J] stations for City Hall, Cortlandt St, Rector St and Whitehall St-South Ferry.\n\nIn Brooklyn, use nearby Borough Hall [2][3][4] for Court St and Jay St-MetroTech.\n\nTransfer at:\n14 St-Union Sq [R][4][5]\nCanal St [R][J]\nAtlantic Av-Barclays Ctr [accessibility icon] (R) | [R][2][3][4]\nNote: At Canal St, downtown [R] stops at the [Q] platform during this time.\n\nWhat's happening?\nWe're replacing tracks\n\n[accessibility icon] This service change affects one or more ADA accessible stations and these travel alternatives may not be fully accessible. Please contact 511 to plan your trip.",
"feed_entity_id": "lmm:planned_work:27907",
"selectors": [
{
"raw": "MTASBWY:R:18",
"parsed_priority": 18,
"selector": { "sort_order": "MTASBWY:R:18" }
}
],
"informed_entities": [
{ "route_id": "R" },
{ "stop_id": "R23", "stop_name": "Canal St" },
{ "stop_id": "R30", "stop_name": "DeKalb Av" }
],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764413100, "end": 1764477900 },
{ "start": 1764499500, "end": 1764564300 },
{ "start": 1765017900, "end": 1765082700 },
{ "start": 1765104300, "end": 1765169100 },
{ "start": 1765622700, "end": 1765687500 },
{ "start": 1765709100, "end": 1765773900 }
]
},
{
"lines": ["Q"],
"alert_type": "Reduced Service",
"sort_order": 13,
"header": "[Q] runs every 10 minutes",
"description": "What's happening?\nWe're replacing tracks",
"feed_entity_id": "lmm:planned_work:27766",
"selectors": [
{
"raw": "MTASBWY:Q:13",
"parsed_priority": 13,
"selector": { "sort_order": "MTASBWY:Q:13" }
}
],
"informed_entities": [{ "route_id": "Q" }],
"display_before_seconds": 3600,
"active_periods": [
{ "start": 1764430200, "end": 1764469800 },
{ "start": 1764516600, "end": 1764549900 }
]
},
{
"lines": ["SIR"],
"alert_type": "Expect Delays",
"sort_order": 12,
"header": "Fallen leaves may slow [SIR] service",
"description": "When crushed by train wheels, fallen leaves leave a slippery residue on the rails. To ensure a safe operation, trains may run at a reduced speed or run slower than usual while entering or leaving stations, resulting in a longer ride; please allow additional travel time.",
"feed_entity_id": "lmm:planned_work:27700",
"selectors": [
{
"raw": "MTASBWY:SI:12",
"parsed_priority": 12,
"selector": { "sort_order": "MTASBWY:SI:12" }
}
],
"informed_entities": [{ "route_id": "SI" }],
"display_before_seconds": 3600,
"active_periods": [{ "start": 1758772800, "end": 1765861140 }]
},
{
"lines": ["7"],
"alert_type": "Station Notice",
"sort_order": 3,
"header": "In Queens, Manhattan-bound [7] skips 69 St and 52 St\nAll trains at 61 St-Woodside board from the Flushing-bound platform",
"description": "Use nearby 74 St-Broadway, 61 St-Woodside or 46 St-Bliss St stations.\n\nAdditional travel alternatives:\nFor service to 69 St, take the [7] to 61 St-Woodside and transfer to a Flushing-bound [7].\n\nFor service to 52 St, take the [7] to 46 St-Bliss St and transfer to a Flushing-bound [7].\n\nFor service from these stations, take the [7] to 61 St-Woodside or 74 St-Broadway and transfer to a Manhattan-bound [7].\n\nNote: There will be temporary platforms located at 46 St-Bliss St, 40 St-Lowery St and 33 St-Rawson St.\n\nWhat's happening?\nWe're making structural improvements",
"feed_entity_id": "lmm:planned_work:24850",
"selectors": [
{
"raw": "MTASBWY:7:3",
"parsed_priority": 3,
"selector": { "sort_order": "MTASBWY:7:3" }
}
],
"informed_entities": [
{ "route_id": "7" },
{ "stop_id": "711", "stop_name": "69 St" },
{ "stop_id": "712", "stop_name": "61 St-Woodside" },
{ "stop_id": "713", "stop_name": "52 St" }
],
"display_before_seconds": 0,
"active_periods": [
{ "start": 1750662060, "end": 1760758200 },
{ "start": 1760945400, "end": 1765859400 },
{ "start": 1765879200, "end": 1765945800 },
{ "start": 1765965600, "end": 1775015940 }
]
},
{
"lines": ["7"],
"alert_type": "Station Notice",
"sort_order": 3,
"header": "In Queens, Flushing-bound [7] skips 103 St-Corona Plaza",
"description": "Use nearby Junction Blvd or 111 St stations.\n\nAdditional travel alternatives:\nFor service to this station, take the [7] to 111 St and transfer to a Manhattan-bound train.\n\nFor service from this station, take the [7] to Junction Blvd and transfer to a Flushing-bound train.\n\nWhat's happening?\nWe're making station improvements",
"feed_entity_id": "lmm:planned_work:23514",
"selectors": [
{
"raw": "MTASBWY:7:3",
"parsed_priority": 3,
"selector": { "sort_order": "MTASBWY:7:3" }
}
],
"informed_entities": [
{ "route_id": "7" },
{ "stop_id": "706", "stop_name": "103 St-Corona Plaza" }
],
"display_before_seconds": 0,
"active_periods": [
{ "start": 1746428460, "end": 1747453500 },
{ "start": 1747638000, "end": 1750081500 },
{ "start": 1750100400, "end": 1750167900 },
{ "start": 1750186800, "end": 1750254300 },
{ "start": 1750273200, "end": 1750340700 },
{ "start": 1750359600, "end": 1750427100 },
{ "start": 1750446000, "end": 1752306300 },
{ "start": 1752440400, "end": 1755935100 },
{ "start": 1756000800, "end": 1759549500 },
{ "start": 1759734000, "end": 1760758200 },
{ "start": 1760945400, "end": 1764391500 },
{ "start": 1764496800, "end": 1764688500 },
{ "start": 1764705600, "end": 1764774900 },
{ "start": 1764792000, "end": 1764861300 },
{ "start": 1764878400, "end": 1764947700 },
{ "start": 1764964800, "end": 1764996300 },
{ "start": 1765180800, "end": 1765601100 },
{ "start": 1765785600, "end": 1767107700 },
{ "start": 1767124800, "end": 1767194100 },
{ "start": 1767211200, "end": 1767243540 }
]
},
{
"lines": ["B"],
"alert_type": "No Scheduled Service",
"sort_order": 1,
"header": "Take the [A][C][D][Q] instead",
"description": "[B] service operates weekday rush hours, middays and evenings\n\nPlan your trip at mta.info or download the MTA app for iOS or Android.",
"feed_entity_id": "lmm:planned_work:20534",
"selectors": [
{
"raw": "MTASBWY:B:1",
"parsed_priority": 1,
"selector": { "sort_order": "MTASBWY:B:1" }
}
],
"informed_entities": [{ "route_id": "B" }],
"display_before_seconds": 0,
"active_periods": [
{ "start": 1728354600, "end": 1728378900 },
{ "start": 1728959400, "end": 1728983700 },
{ "start": 1729564200, "end": 1729588500 },
{ "start": 1730169000, "end": 1730193300 },
{ "start": 1730777400, "end": 1730801700 },
{ "start": 1731382200, "end": 1731406500 },
{ "start": 1731987000, "end": 1732011300 },
{ "start": 1732591800, "end": 1732616100 },
{ "start": 1733196600, "end": 1733220900 },
{ "start": 1733801400, "end": 1733825700 },
{ "start": 1734406200, "end": 1734430500 },
{ "start": 1735011000, "end": 1735035300 },
{ "start": 1735615800, "end": 1735640100 },
{ "start": 1736220600, "end": 1736244900 },
{ "start": 1736825400, "end": 1736849700 },
{ "start": 1737430200, "end": 1737454500 },
{ "start": 1738035000, "end": 1738059300 },
{ "start": 1738639800, "end": 1738664100 },
{ "start": 1739244600, "end": 1739268900 },
{ "start": 1739854860, "end": 1739873700 },
{ "start": 1740454200, "end": 1740478500 },
{ "start": 1741059000, "end": 1741083300 },
{ "start": 1741660200, "end": 1741684500 },
{ "start": 1742265000, "end": 1742289300 },
{ "start": 1742869800, "end": 1742894100 },
{ "start": 1743474600, "end": 1743498900 },
{ "start": 1744079400, "end": 1744103700 },
{ "start": 1744684200, "end": 1744708500 },
{ "start": 1745289000, "end": 1745313300 },
{ "start": 1745893800, "end": 1745918100 },
{ "start": 1746498600, "end": 1746522900 },
{ "start": 1747103400, "end": 1747127700 },
{ "start": 1747708200, "end": 1747732500 },
{ "start": 1748318460, "end": 1748337300 },
{ "start": 1748917800, "end": 1748942100 },
{ "start": 1749522600, "end": 1749546900 },
{ "start": 1750127400, "end": 1750151700 },
{ "start": 1750732200, "end": 1750756500 },
{ "start": 1751337000, "end": 1751361300 },
{ "start": 1751941800, "end": 1751966100 },
{ "start": 1752546600, "end": 1752570900 },
{ "start": 1753151400, "end": 1753175700 },
{ "start": 1753756200, "end": 1753780500 },
{ "start": 1754361000, "end": 1754385300 },
{ "start": 1754965800, "end": 1754990100 },
{ "start": 1755570600, "end": 1755594900 },