-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path2218883.json
1476 lines (1476 loc) · 53.1 KB
/
2218883.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"ott_launch_date": null,
"auth_expiration_date": 1750737540,
"tms_id": "EP022022090002",
"description": "Hanging out by the river, no one would suspect Mamimi is a girl with a dark past. She's been obsessed with a videogame. There's been a string of fires around town. If that's not enough, there's something growing inside Naota's head.",
"title_suggest": {
"input": [
"Fire Starter",
"Starter"
]
},
"expiration_date": 1692676740,
"type": "episode",
"title": "Fire Starter",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1382.87,
"episode_number": "2",
"original_air_date": 1060142400,
"auth_launch_date": 1719374400,
"clip_order": null,
"media_id": "1150063065b5e06ceeaf9890d11c942fd9246fdc",
"modified": 1719371058,
"airing_id": "RADS1006262400076948",
"slug": "fire-starter",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15241720969659.jpg",
"created": 1523886696,
"season_number": "1",
"title_id": "446614",
"tv_rating": "tv-14-ds",
"blacklist": [],
"ott_expiration_date": null,
"published": 1719371058,
"tags": [],
"collection_title": "FLCL",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1555340400,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15241720969659.jpg",
"id": "AWLOuaasTdxzjxdClb9j",
"auth": true
},
{
"ott_launch_date": null,
"auth_expiration_date": 1751342340,
"tms_id": "EP022022090003",
"description": "With a robot and an alien at home, Naota tries to at least have a normal school life. The class is putting on a play, and Naota is playing a cat. He's sprouted cat ears from his head. Class president Ninamori's been chosen to play the lead.",
"title_suggest": {
"input": [
"Marquis de Carabas",
"de Carabas",
"Carabas"
]
},
"expiration_date": 1692676740,
"type": "episode",
"title": "Marquis de Carabas",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1384.57,
"episode_number": "3",
"original_air_date": 1060228800,
"auth_launch_date": 1719979200,
"clip_order": null,
"media_id": "94ccd5812479d0d13d611eb288801834b74bd850",
"modified": 1719936359,
"airing_id": "RADS1007022400078436",
"slug": "marquis-de-carabas",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-152510046842215.png",
"created": 1523886729,
"season_number": "1",
"title_id": "446615",
"tv_rating": "tv-14",
"blacklist": [],
"ott_expiration_date": null,
"published": 1719936359,
"tags": [],
"collection_title": "FLCL",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1555340400,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-152510046842215.png",
"id": "AWLOuiiSHAeP4-pUPecK",
"auth": true
},
{
"ott_launch_date": null,
"auth_expiration_date": 1751947140,
"tms_id": "EP022022090004",
"description": "Though he's carried around his brother's bat, Naota has never hit anything. Now his brother's gone, it's Naota's turn to prove his worth. The baseball team doesn't seem to be doing so well. What is Haruko doing playing for the other team?",
"title_suggest": {
"input": [
"Full Swing",
"Swing"
]
},
"expiration_date": 1692676740,
"type": "episode",
"title": "Full Swing",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1474.2,
"episode_number": "4",
"original_air_date": 1060315200,
"auth_launch_date": 1720584000,
"clip_order": null,
"media_id": "76fa8a9ad2e63bb24be924dd3ffdfeab045bb845",
"modified": 1720539102,
"airing_id": "RADS1007092400079796",
"slug": "full-swing",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15252862166493.jpg",
"created": 1523886751,
"season_number": "1",
"title_id": "446616",
"tv_rating": "tv-14-dsv",
"blacklist": [],
"ott_expiration_date": null,
"published": 1720539102,
"tags": [],
"collection_title": "FLCL",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1542690000,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15252862166493.jpg",
"id": "AWLOun5ETdxzjxdClb9o",
"auth": true
},
{
"ott_launch_date": null,
"auth_expiration_date": 1752551940,
"tms_id": "EP022022090005",
"description": "Mabase is safe for now, but there's a new kind of danger. Naota finds himself in the midst of a survival game, with Haruko on his team. With weapons blazing, it looks like Kitsurubami has joined the fray. Amarao is getting his hair dyed?",
"title_suggest": {
"input": [
"Brittle Bullet",
"Bullet"
]
},
"expiration_date": 1692676740,
"type": "episode",
"title": "Brittle Bullet",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1390.23,
"episode_number": "5",
"original_air_date": 1060660800,
"auth_launch_date": 1721188800,
"clip_order": null,
"media_id": "2e09ee1486140bf21f12bf58a3bbf066970c10ac",
"modified": 1721162676,
"airing_id": "RADS1007162400081242",
"slug": "brittle-bullet",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15263152262855.jpg",
"created": 1523886769,
"season_number": "1",
"title_id": "446617",
"tv_rating": "tv-14-dsv",
"blacklist": [],
"ott_expiration_date": null,
"published": 1721162676,
"tags": [],
"collection_title": "FLCL",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1555340400,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15263152262855.jpg",
"id": "AWLOusc7TdxzjxdClb9p",
"auth": true
},
{
"ott_launch_date": null,
"auth_expiration_date": 1753156740,
"tms_id": "EP022022090006",
"description": "The end is near with both Haruko and Canti at large. Medical Mechanica is preparing to move. Before Amarao can do anything to stop it, he needs to find the terminal core. Mamimi has found new friends with an appetite for the mechanical.",
"title_suggest": {
"input": [
"FLCLimax"
]
},
"expiration_date": 1692676740,
"type": "episode",
"title": "FLCLimax",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1865.63,
"episode_number": "6",
"original_air_date": 1060747200,
"auth_launch_date": 1721793600,
"clip_order": null,
"media_id": "0e74b5c6968b5640c9d30a3d79f7ccec574b1860",
"modified": 1721761555,
"airing_id": "RADS1007232400082013",
"slug": "flc-limax",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15266552355338.jpg",
"created": 1523886795,
"season_number": "1",
"title_id": "446618",
"tv_rating": "tv-14-s",
"blacklist": [],
"ott_expiration_date": null,
"published": 1721761555,
"tags": [],
"collection_title": "FLCL",
"disable_ads": false,
"modified_by": "ODT Listener",
"launch_date": 1555340400,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15266552355338.jpg",
"id": "AWLOuylJHAeP4-pUPecL",
"auth": true
},
{
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "The creative team share their thoughts on FLCL, from its inception to the upcoming revival.",
"title_suggest": {
"input": [
"FLCL: Behind the Scenes - Meet the Creators",
"Behind the Scenes - Meet the Creators",
"the Scenes - Meet the Creators",
"Scenes - Meet the Creators",
"- Meet the Creators",
"Meet the Creators",
"the Creators",
"Creators"
]
},
"expiration_date": null,
"type": "clip",
"title": "FLCL: Behind the Scenes - Meet the Creators",
"platforms": [
"android",
"fire-tv",
"ios",
"online-exclusive",
"roku"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 696.25,
"original_air_date": null,
"auth_launch_date": null,
"clip_order": null,
"media_id": "mec873651b525ed7e87c178a19edeffb9604b73b6e",
"modified": 1598470977,
"airing_id": "",
"slug": "flcl-behind-the-scenes-meet-the-creators",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15248673306603.jpg",
"created": 1524867339,
"season_number": "",
"title_id": "",
"tv_rating": "",
"blacklist": [],
"ott_expiration_date": null,
"published": 1598470977,
"tags": [
"FLCL",
"behind the scenes",
"meet the creators",
"progressive",
"alternative",
"fooly cooly",
"toonami",
"anime",
"adult swim",
"action",
"video"
],
"collection_title": "FLCL",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1525060800,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15248673306603.jpg",
"id": "AWMJLRNLHAeP4-pUPexi",
"auth": false
},
{
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "",
"title_suggest": {
"input": [
"FLCL Spotlight",
"Spotlight"
]
},
"expiration_date": null,
"type": "clip",
"title": "FLCL Spotlight",
"platforms": [
"android",
"fire-tv",
"ios",
"online-exclusive",
"roku"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 15.67,
"original_air_date": null,
"auth_launch_date": null,
"clip_order": null,
"media_id": "me71df2659f4121f9fc6068ec3a3fb52c9d08f5423",
"modified": 1537310444,
"slug": "flcl-spotlight",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15252946635223.jpg",
"created": 1525294716,
"season_number": "",
"title_id": "",
"tv_rating": "",
"blacklist": [],
"ott_expiration_date": null,
"published": 1537310444,
"tags": [],
"collection_title": "FLCL",
"modified_by": "Andrew Livingston",
"launch_date": 1525233600,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15252946635223.jpg",
"id": "AWMiplgdHAeP4-pUPe0r",
"auth": false
},
{
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "",
"title_suggest": {
"input": [
"FLCL Revolutions",
"Revolutions"
]
},
"expiration_date": null,
"type": "clip",
"title": "FLCL Revolutions",
"platforms": [
"android",
"fire-tv",
"ios",
"online-exclusive",
"roku"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 15.63,
"original_air_date": null,
"auth_launch_date": null,
"clip_order": null,
"media_id": "me2fbee41ee1051a12a47ae69dd77804654ea80a01",
"modified": 1537305768,
"slug": "flcl-revolutions",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-152529473590114.jpg",
"created": 1525294762,
"season_number": "",
"title_id": "",
"tv_rating": "",
"blacklist": [],
"ott_expiration_date": null,
"published": 1537305768,
"tags": [],
"collection_title": "FLCL",
"modified_by": "Andrew Livingston",
"launch_date": 1525233600,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-152529473590114.jpg",
"id": "AWMipwjeTdxzjxdCltwQ",
"auth": false
},
{
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "Check out this interview with the creators of FLCL: Progressive and FLCL: Alternative as they discuss music, production, and animation!",
"title_suggest": {
"input": [
"FLCL: Behind the Scenes - Production",
"Behind the Scenes - Production",
"the Scenes - Production",
"Scenes - Production",
"- Production",
"Production"
]
},
"expiration_date": null,
"type": "clip",
"title": "FLCL: Behind the Scenes - Production",
"platforms": [
"android",
"fire-tv",
"ios",
"online-exclusive",
"roku"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 338.42,
"original_air_date": null,
"auth_launch_date": null,
"clip_order": null,
"media_id": "med4be86a80b8aaa277e713a836ce4983d501cb3df",
"modified": 1598471062,
"airing_id": "",
"slug": "flcl-behind-the-scenes-production",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-152544966860620.jpg",
"created": 1525449672,
"season_number": "",
"title_id": "",
"tv_rating": "",
"blacklist": [],
"ott_expiration_date": null,
"published": 1598471062,
"tags": [
"FLCL",
"behind the scenes",
"production",
"progressive",
"alternative",
"fooly cooly",
"toonami",
"anime",
"adult swim",
"action",
"video"
],
"collection_title": "FLCL",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1525665600,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-152544966860620.jpg",
"id": "AWMr4sdLTdxzjxdClvvj",
"auth": false
},
{
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "Step into the voiceover booth with the English voice actors behind your favorite FLCL characters!",
"title_suggest": {
"input": [
"FLCL: Behind The Scenes - English Voice Actors",
"Behind The Scenes - English Voice Actors",
"The Scenes - English Voice Actors",
"Scenes - English Voice Actors",
"- English Voice Actors",
"English Voice Actors",
"Voice Actors",
"Actors"
]
},
"expiration_date": null,
"type": "clip",
"title": "FLCL: Behind The Scenes - English Voice Actors",
"platforms": [
"android",
"fire-tv",
"ios",
"online-exclusive",
"roku"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 327.7,
"original_air_date": null,
"auth_launch_date": null,
"clip_order": null,
"media_id": "me5ebcad7ee278d35b31cb87f51ded7e2cc1d506f1",
"modified": 1598470927,
"airing_id": "",
"slug": "flcl-behind-the-scenes-english-voice-actors",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15259752785913.jpg",
"created": 1525975201,
"season_number": "",
"title_id": "",
"tv_rating": "",
"blacklist": [],
"ott_expiration_date": null,
"published": 1598470927,
"tags": [
"FLCL",
"fooly cooly",
"Kari wahlgren",
"behind the scenes",
"English dub",
"toonami",
"Adult Swim",
"promo",
"anime",
"video"
],
"collection_title": "FLCL",
"disable_ads": false,
"modified_by": "Duke Nguyen",
"launch_date": 1526270400,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15259752785913.jpg",
"id": "AWNLNbfCTdxzjxdCl2Mo",
"auth": false
},
{
"ott_launch_date": null,
"auth": false,
"auth_expiration_date": null,
"tms_id": "EP029755320001",
"description": "Hidomi's Dream - white ash covers the entire ruins, behind which a row of humongous irons comes thundering after Hidomi who is now a zombie.",
"title_suggest": {
"input": [
"RE: Start",
"Start"
]
},
"expiration_date": 2085368400,
"type": "episode",
"title": "RE: Start",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1363.8,
"episode_number": "1",
"original_air_date": 1527998400,
"auth_launch_date": null,
"clip_order": null,
"media_id": "a331262ab16fdb8a3174bf457b6bf2176f1a6057",
"modified": 1605637570,
"airing_id": "RADS1011131800044926",
"id": "AWO4GnU0HAeP4-pUPfhP",
"slug": "re-start",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15278824396654.jpg",
"created": 1527802131,
"season_number": "2",
"title_id": "2085359",
"tv_rating": "tv-14-dlv",
"blacklist": [],
"ott_expiration_date": null,
"published": 1605637570,
"tags": [],
"collection_title": "FLCL",
"modified_by": "ODT Listener",
"launch_date": 1542690000,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15278824396654.jpg"
},
{
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "The band behind FLCL's music talks about their journey with the show.",
"title_suggest": {
"input": [
"FLCL Behind The Scenes: The Pillows (Extended)",
"Behind The Scenes: The Pillows (Extended)",
"The Scenes: The Pillows (Extended)",
"Scenes: The Pillows (Extended)",
"The Pillows (Extended)",
"Pillows (Extended)",
"(Extended)"
]
},
"expiration_date": null,
"type": "clip",
"title": "FLCL Behind The Scenes: The Pillows (Extended)",
"platforms": [
"android",
"fire-tv",
"ios",
"online-exclusive",
"roku"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 312.4,
"original_air_date": null,
"auth_launch_date": null,
"clip_order": null,
"media_id": "meeffb1190a2b321e64f64a857a9f4f485aacd292a",
"modified": 1598383872,
"slug": "flcl-behind-the-scenes-the-pillows-extended",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15271765047842.jpg",
"created": 1527176508,
"season_number": "",
"title_id": "",
"tv_rating": "",
"blacklist": [],
"ott_expiration_date": null,
"published": 1598383872,
"tags": [
"flcl",
"fooly cooly",
"the pillows",
"music",
"adult swim",
"behind the scenes",
"promo"
],
"collection_title": "FLCL",
"modified_by": "Zeus Listener",
"launch_date": 1598382003,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15271765047842.jpg",
"id": "AWOS0DN1TdxzjxdCmEwe",
"auth": false
},
{
"ott_launch_date": null,
"auth": false,
"auth_expiration_date": null,
"tms_id": "EP029755320002",
"description": "Hidomi wakes up from yet another dream of her becoming a Zombie. At school, Raharu gives her a handout to bring over to Ide, who didn't show up to class.",
"title_suggest": {
"input": [
"Freebie Honey",
"Honey"
]
},
"expiration_date": 2085368400,
"type": "episode",
"title": "Freebie Honey",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1395.5,
"episode_number": "2",
"original_air_date": 1528603200,
"auth_launch_date": null,
"clip_order": null,
"media_id": "8056a2e0a0fa12a69184f39dc1c764202641b081",
"modified": 1605637564,
"airing_id": "RADS1011131800044927",
"id": "AWPaiP5iTdxzjxdCmTgF",
"slug": "freebie-honey",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15284811544468.jpg",
"created": 1528379801,
"season_number": "2",
"title_id": "2085360",
"tv_rating": "tv-14-dlsv",
"blacklist": [],
"ott_expiration_date": null,
"published": 1605637564,
"tags": [],
"collection_title": "FLCL",
"modified_by": "ODT Listener",
"launch_date": 1542690000,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15284811544468.jpg"
},
{
"ott_launch_date": null,
"auth": false,
"auth_expiration_date": null,
"tms_id": "EP029755320003",
"description": "Crazy things happen during Hidomi's NO activation, and she is now left with a cheerful and happy personality, which is the total opposite of her real self. The only way to bring her back to normal is to destroy the cables of the giant iron.",
"title_suggest": {
"input": [
"Stone Skipping",
"Skipping"
]
},
"expiration_date": 2085368400,
"type": "episode",
"title": "Stone Skipping",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1395.1,
"episode_number": "3",
"original_air_date": 1529208000,
"auth_launch_date": null,
"clip_order": null,
"media_id": "d4428e305c5fd5a207fde94eddad92d41259ace7",
"modified": 1605637567,
"airing_id": "RADS1011131800044928",
"id": "AWPaiWbxTdxzjxdCmTgJ",
"slug": "stone-skipping",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15289972327372.jpg",
"created": 1528379827,
"season_number": "2",
"title_id": "2085361",
"tv_rating": "tv-14-lv",
"blacklist": [],
"ott_expiration_date": null,
"published": 1605637567,
"tags": [],
"collection_title": "FLCL",
"modified_by": "ODT Listener",
"launch_date": 1542690000,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15289972327372.jpg"
},
{
"ott_launch_date": null,
"auth": false,
"auth_expiration_date": null,
"tms_id": "EP029755320004",
"description": "Marco is the only one that seems to think that happy Hidomi is attractive. While he's aware that Ide is in love with her, he works part time to buy her a charm. Meanwhile, Jinyu and Raharu scheme to go up to the plant in her Bel Aire.",
"title_suggest": {
"input": [
"LooPQR"
]
},
"expiration_date": 2085368400,
"type": "episode",
"title": "LooPQR",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1389.53,
"episode_number": "4",
"original_air_date": 1529812800,
"auth_launch_date": null,
"clip_order": null,
"media_id": "4baf32b1a05b41b2b9457399432a9f7a6ec3bff6",
"modified": 1668641733,
"airing_id": "RADS1011131800044929",
"id": "AWPaiqF1qBveI_0AhKb0",
"slug": "loo-pqr",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15294241628707.jpg",
"created": 1528379908,
"season_number": "2",
"title_id": "2085362",
"tv_rating": "tv-14-lv",
"blacklist": [],
"ott_expiration_date": null,
"published": 1668641733,
"tags": [],
"collection_title": "FLCL",
"modified_by": "ODT Listener",
"launch_date": 1542690000,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15294241628707.jpg"
},
{
"ott_launch_date": null,
"auth": false,
"auth_expiration_date": null,
"tms_id": "EP029755320005",
"description": "Having made damage to the plant, the iron now stands up straight. Raharu tells the class that she's happily married and now pregnant. The only way to become happy is to go to the amusement park (run by Tonkichi).",
"title_suggest": {
"input": [
"Fool on the Planet",
"on the Planet",
"the Planet",
"Planet"
]
},
"expiration_date": 2085368400,
"type": "episode",
"title": "Fool on the Planet",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1362.13,
"episode_number": "5",
"original_air_date": 1530415800,
"auth_launch_date": null,
"clip_order": null,
"media_id": "5bbd31b69a25e062b904ece64153ab571a65e230",
"modified": 1605637566,
"airing_id": "RADS1011131800044930",
"id": "AWRB8ouhTdxzjxdCmo02",
"slug": "fool-on-the-planet",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15302205069298.jpg",
"created": 1530114771,
"season_number": "2",
"title_id": "2085363",
"tv_rating": "tv-14-d",
"blacklist": [],
"ott_expiration_date": null,
"published": 1605637566,
"tags": [],
"collection_title": "FLCL",
"modified_by": "ODT Listener",
"launch_date": 1542690000,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15302205069298.jpg"
},
{
"ott_launch_date": null,
"auth": false,
"auth_expiration_date": null,
"tms_id": "EP029755320006",
"description": "Trying to get Ide back, Hidomi attacks Raharu physically first then verbally. She tells Raharu that she is acting immature because she knows that she is using Hidomi because Raharu is in love with Atomsk.",
"title_suggest": {
"input": [
"Our Running",
"Running"
]
},
"expiration_date": 2085368400,
"type": "episode",
"title": "Our Running",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1394.83,
"episode_number": "6",
"original_air_date": 1531020600,
"auth_launch_date": null,
"clip_order": null,
"media_id": "6141936bb2f9c4b6cdc3809df1f6f3c7faf2b15a",
"modified": 1605637570,
"airing_id": "RADS1011131800044931",
"id": "AWRhj2JsTdxzjxdCmvRo",
"slug": "our-running",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-153080394607111.jpg",
"created": 1530645144,
"season_number": "2",
"title_id": "2085364",
"tv_rating": "tv-ma-l",
"blacklist": [],
"ott_expiration_date": null,
"published": 1605637570,
"tags": [],
"collection_title": "FLCL",
"modified_by": "ODT Listener",
"launch_date": 1542690000,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-153080394607111.jpg"
},
{
"ott_launch_date": null,
"auth_expiration_date": null,
"tms_id": "",
"description": "FLCL: 8-Bit Run",
"title_suggest": {
"input": [
"FLCL: 8-Bit Run",
"8-Bit Run",
"Run"
]
},
"expiration_date": null,
"type": "clip",
"title": "FLCL: 8-Bit Run",
"platforms": [
"android",
"fire-tv",
"ios",
"online-exclusive",
"roku"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 14.93,
"original_air_date": null,
"auth_launch_date": null,
"clip_order": null,
"media_id": "me4d06ddb3a4b5663336b46e88f279cd1946feaa52",
"modified": 1542130440,
"slug": "flcl-8-bit-run",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15353820472626.jpg",
"created": 1535382057,
"season_number": "",
"title_id": "",
"tv_rating": "",
"blacklist": [],
"ott_expiration_date": null,
"published": 1542130440,
"tags": [],
"collection_title": "FLCL",
"modified_by": "Jared Marquez",
"launch_date": 1535342400,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15353820472626.jpg",
"id": "AWV75vLGh5enQuYyHtru",
"auth": false
},
{
"ott_launch_date": null,
"auth": false,
"auth_expiration_date": null,
"tms_id": "EP029387180001",
"description": "Kana Koumoto - a cheerful 17 year old who can often be a klutz and nosey. One day, while hanging out with her besties (Pets, Mossan and Hijiri), Mossan starts making a rocket using empty soda bottles.",
"title_suggest": {
"input": [
"Flying Memory",
"Memory"
]
},
"expiration_date": 2085368400,
"type": "episode",
"title": "Flying Memory",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1392.53,
"episode_number": "1",
"original_air_date": 1522555200,
"auth_launch_date": null,
"clip_order": null,
"media_id": "6560b2f679649c3d690ff423c190f708b88eab0c",
"modified": 1605539171,
"airing_id": "RADS1011131800044964",
"id": "AWVeM3Yrh5enQuYyHhJG",
"slug": "flying-memory",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-15363328101789.jpg",
"created": 1534883755,
"season_number": "3",
"title_id": "2085365",
"tv_rating": "tv-14-lv",
"blacklist": [],
"ott_expiration_date": null,
"published": 1605539171,
"tags": [],
"collection_title": "FLCL",
"modified_by": "ODT Listener",
"launch_date": 1542690000,
"poster": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-2_image-15363328101789.jpg"
},
{
"ott_launch_date": null,
"auth": false,
"auth_expiration_date": null,
"tms_id": "EP029387180002",
"description": "One morning, Kana and her besties witness Hijiri kissing a college student Toshio inside his car. Acting more mature than any of her classmates, Hijiri suggests Kana and her besties to do a photo shoot with Toshio.",
"title_suggest": {
"input": [
"Grown-Up Wannabe",
"Wannabe"
]
},
"expiration_date": 2085368400,
"type": "episode",
"title": "Grown-Up Wannabe",
"platforms": [
"android",
"ios",
"roku",
"fire-tv"
],
"collection_id": "AWH9BNOjNWyh42wYnlM8",
"duration": 1393.47,
"episode_number": "2",
"original_air_date": 1537068600,
"auth_launch_date": null,
"clip_order": null,
"media_id": "fbe29a858a6ae441862d4806b9518195b7778b39",
"modified": 1605539155,
"airing_id": "RADS1011131800044963",
"id": "AWVeNA1Yh5enQuYyHhJL",
"slug": "grown-up-wannabe",
"exclude_from_search": false,
"thumbnail": "https://i.cdn.turner.com/adultswim/big/image-upload/thumbnails/thumb-1_image-153685835004316.jpg",
"created": 1534883794,
"season_number": "3",