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
|
<!DOCTYPE html>
<!--
"We keep moving forward, opening up new doors and
doing new things, because we're curious ...
and curiosity keeps leading us down new paths."
Walt Disney
-->
<html class="no-js" version="HTML+RDFa 1.1" lang="en">
<head prefix="og: http://ogp.me/ns#" dir="ltr">
<title>Go.com | The Walt Disney Company </title>
<link rel="preconnect" href="//static-mh.content.disney.io">
<link rel="preconnect" href="//lumiere-a.akamaihd.net">
<link rel="preconnect" href="//kaltura.akamaized.net">
<link rel="preconnect" href="//cdnapisec.kaltura.com">
<link rel="preconnect" href="//a.dilcdn.com">
<link rel="preconnect" href="//assets.adobedtm.com">
<link rel="preload" href="https://static-mh.content.disney.io/matterhorn/assets/matterhorn/sans/matterhorn-regular-eed88f0756d6.woff" as="font" type="font/woff" crossorigin="anonymous">
<link rel="preload" href="https://static-mh.content.disney.io/matterhorn/assets/application-f816804219ff.css" as="style" type="text/css" crossorigin="anonymous">
<link rel="preload" href="https://static-mh.content.disney.io/matterhorn/assets/matterhorn-v3-player-skin-8a3fa1ec337a.css" as="style" type="text/css" crossorigin="anonymous">
<link rel="preload" href="//global.go.com/stat/dolWebAnalytics.js" as="script" type="application/javascript" crossorigin="anonymous">
<link rel="stylesheet" href="https://static-mh.content.disney.io/matterhorn/assets/application-f816804219ff.css" type="text/css">
<link rel="stylesheet" href="https://static-mh.content.disney.io/matterhorn/assets/modules/background_styles-1903f7131478.css" type="text/css">
<link rel="stylesheet" href="https://static-mh.content.disney.io/matterhorn/assets/modules/hero_universal-2064acf15a0f.css" type="text/css">
<link rel="stylesheet" href="https://static-mh.content.disney.io/matterhorn/assets/modules/rich_image-d40ddd633e02.css" type="text/css">
<link rel="stylesheet" href="https://static-mh.content.disney.io/matterhorn/assets/modules/watch_playlist_2-d9aed831f3de.css" type="text/css">
<link rel="stylesheet" href="https://static-mh.content.disney.io/matterhorn/assets/modules/rich_text-d7caf3b19305.css" type="text/css">
<link rel="stylesheet" type="text/css" href="https://static-mh.content.disney.io/matterhorn/assets/goc/wide-40d23cedebc4.css"><link rel="stylesheet" type="text/css" href="https://static-mh.content.disney.io/matterhorn/assets/goc/wide-desktop-2a2fb49a6857.css" media="all and (min-width: 1025px)"><link rel="stylesheet" type="text/css" href="https://static-mh.content.disney.io/matterhorn/assets/goc/responsive-mobile-e3d7249fe388.css" media="only all and (max-width: 1024px)"><!--[if lt IE 9]><link rel="stylesheet" type="text/css" href="https://static-mh.content.disney.io/matterhorn/assets/goc/wide-desktop-2a2fb49a6857.css"><![endif]--><style type="text/css">.goc-icn-0{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_d635ec70.png) }
.goc-icn-1{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_cfa0b40f.png) }
.goc-icn-2{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_9fd9346e.png) }
.goc-icn-3{ background-image:url() }
.goc-icn-4{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_c51b6e80.png) }
.goc-icn-5{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_bf5869f0.png) }
.goc-icn-6{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_49108af9.png) }
.goc-icn-7{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/omd-icon_2e6c33bd.png?region=0%2C0%2C32%2C26) }
.goc-icn-8{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/style-icon_af9b55e9.png?region=0%2C0%2C32%2C26) }
.goc-icn-9{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_03465464.png) }
.goc-icn-10{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_270ececb.png) }
.goc-icn-11{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_9bcc8094.png) }
.goc-icn-12{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_97092abb.png) }
.goc-icn-13{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_d72a7d86.png) }
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
.goc-icn-0{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_54b3ecb6.png); background-size: 32px }
.goc-icn-1{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_8f1ed695.png); background-size: 32px }
.goc-icn-2{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_cf804e69.png); background-size: 32px }
.goc-icn-3{ background-image:url(); background-size: 32px }
.goc-icn-4{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_aac712c3.png); background-size: 32px }
.goc-icn-5{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_13574cbc.png); background-size: 32px }
.goc-icn-6{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_6ab3b605.png); background-size: 32px }
.goc-icn-7{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/omd-icon_2x_f522fa1c.png?region=0%2C0%2C60%2C54); background-size: 32px }
.goc-icn-8{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/disney-style-icon_2x_50acb7f5.png?region=0%2C0%2C60%2C54); background-size: 32px }
.goc-icn-9{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_6284015f.png); background-size: 32px }
.goc-icn-10{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_98cedce3.png); background-size: 32px }
.goc-icn-11{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_76e45e4f.png); background-size: 32px }
.goc-icn-12{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_92b28594.png); background-size: 32px }
.goc-icn-13{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/image_1ebf8a79.png); background-size: 32px }
} .goc-icn-login, .goc-icn-login-bar{ background-image:url(); background-size: 32px }
html.goc-no-data-uri .goc-icn-login, html.goc-no-data-uri .goc-icn-login-bar{ background-image:url() }
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
.goc-icn-login, .goc-icn-login-bar{ background-image:url(); }
}
.goc-left-1 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_dark_4fda9946.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-dark .goc-left-1 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_white_2c110392.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-blue .goc-left-1 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_white_2c110392.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-left-1.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_white_2c110392.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-blue .goc-left-1.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_dark_4fda9946.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-dark .goc-left-1.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_dark_4fda9946.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-left-2 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_dark_9d813eac.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-dark .goc-left-2 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_light_accef5dc.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-blue .goc-left-2 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_light_accef5dc.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-left-2.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_light_accef5dc.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-blue .goc-left-2.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_dark_9d813eac.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-dark .goc-left-2.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_dark_9d813eac.png);
background-size: 17px;
padding-left: 39px !important; }
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
.goc-left-1 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_dark_2_7b11d2ee.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-dark .goc-left-1 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_white_2_9fcd393a.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-blue .goc-left-1 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_white_2_9fcd393a.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-left-1.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_white_2_9fcd393a.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-blue .goc-left-1.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_dark_2_7b11d2ee.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-dark .goc-left-1.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/icon_dark_2_7b11d2ee.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-left-2 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_dark_2_33b3877c.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-dark .goc-left-2 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_light_2_894a7848.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-blue .goc-left-2 > a{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_light_2_894a7848.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-left-2.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_light_2_894a7848.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-blue .goc-left-2.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_dark_2_33b3877c.png);
background-size: 17px;
padding-left: 39px !important; }
.goc-bg-dark .goc-left-2.goc-top-dropdown:hover .goc-dropdown-link{ background-image:url(https://lumiere-a.akamaihd.net/v1/images/parks_dark_2_33b3877c.png);
background-size: 17px;
padding-left: 39px !important; }
}
.goc-thumb-dropdown .goc-thumb-link{ height: 200px; }
#goc-desktop-global .goc-desktop:hover .goc-thumb-dropdown{max-height: 232px;}
#goc-desktop-global .goc-desktop .goc-thumb-dropdown.focus{max-height: 232px;}
.dropdown-2 .goc-thumb-link:nth-child(1){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_01_disneyworld_402b8819.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(2){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_02_disneyland_0e7954c2.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(3){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_03_disneycruise_0b82ccd3.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(4){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_04_aulani_2_ed721906.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(5){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_06_adventures_7a02bd7e.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(6){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/s_parks_chrome_disneyvacationclub_4ab348e1.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
@media (-webkit-min-device-pixel-ratio: 1.5), (min-resolution: 144dpi) {
.dropdown-2 .goc-thumb-link:nth-child(1){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_01_disneyworld_402b8819.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(2){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_02_disneyland_0e7954c2.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(3){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_03_disneycruise_0b82ccd3.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(4){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_04_aulani_2_ed721906.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(5){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/flyout_06_adventures_7a02bd7e.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
.dropdown-2 .goc-thumb-link:nth-child(6){
background-image: url(https://lumiere-a.akamaihd.net/v1/images/s_parks_chrome_disneyvacationclub_4ab348e1.jpeg?region=0%2C0%2C416%2C416);
width: 200.0px;
}
}</style><script type="text/javascript">!function(e){"use strict";var t=e.GOC=e.GOC||{};t.queue=t.queue||[],t.opts=t.opts||{}}(this),GOC.load=function(e,t){"use strict";var n=document,i=n.getElementsByTagName("script")[0],r=n.createElement("script");r.type="text/javascript",r.async="async",r.onload=r.onreadystatechange=function(e,n){var i=this,r=i.readyState,a=i.parentNode;!a||!n&&r&&"complete"!==r&&"loaded"!==r||(a.removeChild(this),!n&&t&&t())},r.src=e,i.parentNode.insertBefore(r,i),r=n=i=null},function(e){"use strict";var t=e.encodeURIComponent;e.GOC.load("//a.dilcdn.com/g/domains/"+t(e.location.hostname)+".js")}(this),function(e){"use strict";var t=e.GOC,n=e.encodeURIComponent;t.defopts=function(e){0===Object.keys(t.opts).length&&(t.opts=e)},t.ao=function(e){var i=[],r=t.opts,a=r.footer;if(r.lang&&i.push("lang="+n(r.lang)),r.cds&&i.push("cds"),r.searchtype&&i.push("searchtype="+n(r.searchtype)),r.hide_desktop_menu&&i.push("hide_desktop_menu"),r.hide_search&&i.push("hide_search"),a)for(var s in a)if(a.hasOwnProperty(s))if("object"==typeof a[s])for(var o in a[s])a[s].hasOwnProperty(o)&&i.push("footer["+s+"]["+o+"]="+encodeURIComponent(a[s][o]));else i.push("footer["+encodeURIComponent(s)+"]="+encodeURIComponent(a[s]));return i.length&&(e+=(e.indexOf("?")<0?"?":"&")+i.join("&")),e}}(this),GOC.css=function(e){"use strict";var t=document,n=t.createElement("style"),i=t.getElementsByTagName("head")[0],r=(i||t).getElementsByTagName("script")[0];e&&(n.setAttribute("type","text/css"),r?r.parentNode.insertBefore(n,r):i.appendChild(n),n.styleSheet?n.styleSheet.cssText=e:n.appendChild(t.createTextNode(e)))},function(e,t){"use strict";var n=e.GOC,i=e.screen,r=e.document,a=r.documentElement,s=function(){var e,n,a,s,o,l=i&&i.fontSmoothingEnabled;if(l!==t)return l;try{for(e=r.createElement("canvas"),e.width=e.height=32,n=e.getContext("2d"),n.textBaseline="top",n.font="32px Arial",n.fillStyle=n.strokeStyle="black",n.fillText("O",0,0),a=0;a<32;a++)for(s=0;s<32;s++)if(o=n.getImageData(a,s,1,1).data[3],255!==o&&0!==o)return!0;return!1}catch(e){return t}},o=function(e){var t=r.createElement("div");t.innerHTML="M",t.style.fontFamily=e,a.insertBefore(t,a.firstChild),a.clientWidth,a.removeChild(t)};n.pf=function(e,t){s()===!0&&(n.css(e),o(t))}}(this);GOC.pf("@font-face{font-family:'Matterhorn';src:url(\"https://static-mh.content.disney.io/matterhorn/assets/m4-7e766c2825c7.eot#\") format(\"eot\"),url(\"https://static-mh.content.disney.io/matterhorn/assets/m4-b366701d6945.woff\") format(\"woff\"),url(\"https://static-mh.content.disney.io/matterhorn/assets/m4-ac909dff444f.ttf\") format(\"truetype\"),url(\"https://static-mh.content.disney.io/matterhorn/assets/m4-3d636e3b4270.svg#Matterhorn\") format(\"svg\");font-weight:400;font-style:normal}\n","Matterhorn");GOC.opts.cds=false;GOC.opts.bg="dark";GOC.opts.footer={"comscore":"","translations":{}};GOC.opts.hide_desktop_menu=false;GOC.opts.hide_search=false;GOC.opts.searchtype="is";GOC.load("https://static-mh.content.disney.io/matterhorn/assets/goc/wide-63a6c0651cc8.js");GOC.a="//a.dilcdn.com/g/us/home/sac/";GOC.cart="//a.dilcdn.com/g/us/cart/";GOC.is="//a.dilcdn.com/g/us/home/is/";</script>
<link rel="canonical" href="http://go.com">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<link rel="shortcut icon" href="https://static-mh.content.disney.io/matterhorn/assets/favicon-94e3862e7fb9.ico">
<link rel="apple-touch-icon" href="https://static-mh.content.disney.io/matterhorn/assets/apple-touch-icon-2747f4e2a5dd.png">
<meta name="msvalidate.01" content="8E102A636E3CD4571B8212130B2DE936">
<meta name="google-site-verification" content="hAYMLe4fRQ_eTU71OOmk6haHdewO9YERqvviWOHD-Qo">
<meta name="google-site-verification" content="AQosPDW8rRkiEuEDgL_JAbShYJYgDXDK22ZI82Kfdd4">
<meta name="description" content="Go.com is the top-level home on the Internet to the online properties of The Walt Disney Company.
">
<meta property="og:title" content="Go">
<meta property="og:description" content="Go is the top-level home on the Internet to the online properties of The Walt Disney Company.">
<meta property="og:type" content="website">
<meta property="og:site_name" content="Go">
<meta property="og:url" content="http://go.com/">
<meta property="og:image" content="https://lumiere-a.akamaihd.net/v1/images/image_9cbc603c.png">
<script type="text/javascript">this.Disney={"portal":"go.com","profileBase":null,"locales":["en"],"didOptions":{"responderPage":"https://secure.go.com/_did/","enableTop":false,"langPref":"en-US"},"browser_warning_versions":[],"dossierBase":null,"rtl":false,"env":"production","ctoOptions":null};</script>
<script src="https://static-mh.content.disney.io/matterhorn/assets/head-0ff69c6740d9.js" type="text/javascript"></script>
<script type="text/javascript">if (Disney && Disney.Sample(10)){
window.NREUM||(NREUM={});NREUM.info={"beacon":"bam.nr-data.net","errorBeacon":"bam.nr-data.net","licenseKey":"4934c5fb20","applicationID":"6683540","transactionName":"Jl9ZQRYNCQkDQkpmXgtRQ0cFTSgEEkQAR18KQlkPXjEAFxBVFxpwIGQXHw==","queueTime":0,"applicationTime":628,"agent":""};
(window.NREUM||(NREUM={})).loader_config={xpid:"Ug8BVFZTGwUGXFJXAwE="};window.NREUM||(NREUM={}),__nr_require=function(t,n,e){function r(e){if(!n[e]){var o=n[e]={exports:{}};t[e][0].call(o.exports,function(n){var o=t[e][1][n];return r(o||n)},o,o.exports)}return n[e].exports}if("function"==typeof __nr_require)return __nr_require;for(var o=0;o<e.length;o++)r(e[o]);return r}({1:[function(t,n,e){function r(t){try{s.console&&console.log(t)}catch(n){}}var o,i=t("ee"),a=t(18),s={};try{o=localStorage.getItem("__nr_flags").split(","),console&&"function"==typeof console.log&&(s.console=!0,o.indexOf("dev")!==-1&&(s.dev=!0),o.indexOf("nr_dev")!==-1&&(s.nrDev=!0))}catch(c){}s.nrDev&&i.on("internal-error",function(t){r(t.stack)}),s.dev&&i.on("fn-err",function(t,n,e){r(e.stack)}),s.dev&&(r("NR AGENT IN DEVELOPMENT MODE"),r("flags: "+a(s,function(t,n){return t}).join(", ")))},{}],2:[function(t,n,e){function r(t,n,e,r,s){try{p?p-=1:o(s||new UncaughtException(t,n,e),!0)}catch(f){try{i("ierr",[f,c.now(),!0])}catch(d){}}return"function"==typeof u&&u.apply(this,a(arguments))}function UncaughtException(t,n,e){this.message=t||"Uncaught error with no additional information",this.sourceURL=n,this.line=e}function o(t,n){var e=n?null:c.now();i("err",[t,e])}var i=t("handle"),a=t(19),s=t("ee"),c=t("loader"),f=t("gos"),u=window.onerror,d=!1,l="nr@seenError",p=0;c.features.err=!0,t(1),window.onerror=r;try{throw new Error}catch(h){"stack"in h&&(t(8),t(7),"addEventListener"in window&&t(5),c.xhrWrappable&&t(9),d=!0)}s.on("fn-start",function(t,n,e){d&&(p+=1)}),s.on("fn-err",function(t,n,e){d&&!e[l]&&(f(e,l,function(){return!0}),this.thrown=!0,o(e))}),s.on("fn-end",function(){d&&!this.thrown&&p>0&&(p-=1)}),s.on("internal-error",function(t){i("ierr",[t,c.now(),!0])})},{}],3:[function(t,n,e){t("loader").features.ins=!0},{}],4:[function(t,n,e){function r(t){}if(window.performance&&window.performance.timing&&window.performance.getEntriesByType){var o=t("ee"),i=t("handle"),a=t(8),s=t(7),c="learResourceTimings",f="addEventListener",u="resourcetimingbufferfull",d="bstResource",l="resource",p="-start",h="-end",m="fn"+p,w="fn"+h,v="bstTimer",y="pushState",g=t("loader");g.features.stn=!0,t(6);var x=NREUM.o.EV;o.on(m,function(t,n){var e=t[0];e instanceof x&&(this.bstStart=g.now())}),o.on(w,function(t,n){var e=t[0];e instanceof x&&i("bst",[e,n,this.bstStart,g.now()])}),a.on(m,function(t,n,e){this.bstStart=g.now(),this.bstType=e}),a.on(w,function(t,n){i(v,[n,this.bstStart,g.now(),this.bstType])}),s.on(m,function(){this.bstStart=g.now()}),s.on(w,function(t,n){i(v,[n,this.bstStart,g.now(),"requestAnimationFrame"])}),o.on(y+p,function(t){this.time=g.now(),this.startPath=location.pathname+location.hash}),o.on(y+h,function(t){i("bstHist",[location.pathname+location.hash,this.startPath,this.time])}),f in window.performance&&(window.performance["c"+c]?window.performance[f](u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["c"+c]()},!1):window.performance[f]("webkit"+u,function(t){i(d,[window.performance.getEntriesByType(l)]),window.performance["webkitC"+c]()},!1)),document[f]("scroll",r,{passive:!0}),document[f]("keypress",r,!1),document[f]("click",r,!1)}},{}],5:[function(t,n,e){function r(t){for(var n=t;n&&!n.hasOwnProperty(u);)n=Object.getPrototypeOf(n);n&&o(n)}function o(t){s.inPlace(t,[u,d],"-",i)}function i(t,n){return t[1]}var a=t("ee").get("events"),s=t(21)(a,!0),c=t("gos"),f=XMLHttpRequest,u="addEventListener",d="removeEventListener";n.exports=a,"getPrototypeOf"in Object?(r(document),r(window),r(f.prototype)):f.prototype.hasOwnProperty(u)&&(o(window),o(f.prototype)),a.on(u+"-start",function(t,n){var e=t[1],r=c(e,"nr@wrapped",function(){function t(){if("function"==typeof e.handleEvent)return e.handleEvent.apply(e,arguments)}var n={object:t,"function":e}[typeof e];return n?s(n,"fn-",null,n.name||"anonymous"):e});this.wrapped=t[1]=r}),a.on(d+"-start",function(t){t[1]=this.wrapped||t[1]})},{}],6:[function(t,n,e){var r=t("ee").get("history"),o=t(21)(r);n.exports=r;var i=window.history&&window.history.constructor&&window.history.constructor.prototype,a=window.history;i&&i.pushState&&i.replaceState&&(a=i),o.inPlace(a,["pushState","replaceState"],"-")},{}],7:[function(t,n,e){var r=t("ee").get("raf"),o=t(21)(r),i="equestAnimationFrame";n.exports=r,o.inPlace(window,["r"+i,"mozR"+i,"webkitR"+i,"msR"+i],"raf-"),r.on("raf-start",function(t){t[0]=o(t[0],"fn-")})},{}],8:[function(t,n,e){function r(t,n,e){t[0]=a(t[0],"fn-",null,e)}function o(t,n,e){this.method=e,this.timerDuration=isNaN(t[1])?0:+t[1],t[0]=a(t[0],"fn-",this,e)}var i=t("ee").get("timer"),a=t(21)(i),s="setTimeout",c="setInterval",f="clearTimeout",u="-start",d="-";n.exports=i,a.inPlace(window,[s,"setImmediate"],s+d),a.inPlace(window,[c],c+d),a.inPlace(window,[f,"clearImmediate"],f+d),i.on(c+u,r),i.on(s+u,o)},{}],9:[function(t,n,e){function r(t,n){d.inPlace(n,["onreadystatechange"],"fn-",s)}function o(){var t=this,n=u.context(t);t.readyState>3&&!n.resolved&&(n.resolved=!0,u.emit("xhr-resolved",[],t)),d.inPlace(t,y,"fn-",s)}function i(t){g.push(t),h&&(b?b.then(a):w?w(a):(E=-E,R.data=E))}function a(){for(var t=0;t<g.length;t++)r([],g[t]);g.length&&(g=[])}function s(t,n){return n}function c(t,n){for(var e in t)n[e]=t[e];return n}t(5);var f=t("ee"),u=f.get("xhr"),d=t(21)(u),l=NREUM.o,p=l.XHR,h=l.MO,m=l.PR,w=l.SI,v="readystatechange",y=["onload","onerror","onabort","onloadstart","onloadend","onprogress","ontimeout"],g=[];n.exports=u;var x=window.XMLHttpRequest=function(t){var n=new p(t);try{u.emit("new-xhr",[n],n),n.addEventListener(v,o,!1)}catch(e){try{u.emit("internal-error",[e])}catch(r){}}return n};if(c(p,x),x.prototype=p.prototype,d.inPlace(x.prototype,["open","send"],"-xhr-",s),u.on("send-xhr-start",function(t,n){r(t,n),i(n)}),u.on("open-xhr-start",r),h){var b=m&&m.resolve();if(!w&&!m){var E=1,R=document.createTextNode(E);new h(a).observe(R,{characterData:!0})}}else f.on("fn-end",function(t){t[0]&&t[0].type===v||a()})},{}],10:[function(t,n,e){function r(){var t=window.NREUM,n=t.info.accountID||null,e=t.info.agentID||null,r=t.info.trustKey||null,i="btoa"in window&&"function"==typeof window.btoa;if(!n||!e||!i)return null;var a={v:[0,1],d:{ty:"Browser",ac:n,ap:e,id:o.generateCatId(),tr:o.generateCatId(),ti:Date.now()}};return r&&n!==r&&(a.d.tk=r),btoa(JSON.stringify(a))}var o=t(16);n.exports={generateTraceHeader:r}},{}],11:[function(t,n,e){function r(t){var n=this.params,e=this.metrics;if(!this.ended){this.ended=!0;for(var r=0;r<p;r++)t.removeEventListener(l[r],this.listener,!1);n.aborted||(e.duration=s.now()-this.startTime,this.loadCaptureCalled||4!==t.readyState?null==n.status&&(n.status=0):a(this,t),e.cbTime=this.cbTime,d.emit("xhr-done",[t],t),c("xhr",[n,e,this.startTime]))}}function o(t,n){var e=t.responseType;if("json"===e&&null!==n)return n;var r="arraybuffer"===e||"blob"===e||"json"===e?t.response:t.responseText;return w(r)}function i(t,n){var e=f(n),r=t.params;r.host=e.hostname+":"+e.port,r.pathname=e.pathname,t.sameOrigin=e.sameOrigin}function a(t,n){t.params.status=n.status;var e=o(n,t.lastSize);if(e&&(t.metrics.rxSize=e),t.sameOrigin){var r=n.getResponseHeader("X-NewRelic-App-Data");r&&(t.params.cat=r.split(", ").pop())}t.loadCaptureCalled=!0}var s=t("loader");if(s.xhrWrappable){var c=t("handle"),f=t(12),u=t(10).generateTraceHeader,d=t("ee"),l=["load","error","abort","timeout"],p=l.length,h=t("id"),m=t(15),w=t(14),v=window.XMLHttpRequest;s.features.xhr=!0,t(9),d.on("new-xhr",function(t){var n=this;n.totalCbs=0,n.called=0,n.cbTime=0,n.end=r,n.ended=!1,n.xhrGuids={},n.lastSize=null,n.loadCaptureCalled=!1,t.addEventListener("load",function(e){a(n,t)},!1),m&&(m>34||m<10)||window.opera||t.addEventListener("progress",function(t){n.lastSize=t.loaded},!1)}),d.on("open-xhr-start",function(t){this.params={method:t[0]},i(this,t[1]),this.metrics={}}),d.on("open-xhr-end",function(t,n){"loader_config"in NREUM&&"xpid"in NREUM.loader_config&&this.sameOrigin&&n.setRequestHeader("X-NewRelic-ID",NREUM.loader_config.xpid);var e=!1;if("init"in NREUM&&"distributed_tracing"in NREUM.init&&(e=!!NREUM.init.distributed_tracing.enabled),e&&this.sameOrigin){var r=u();r&&n.setRequestHeader("newrelic",r)}}),d.on("send-xhr-start",function(t,n){var e=this.metrics,r=t[0],o=this;if(e&&r){var i=w(r);i&&(e.txSize=i)}this.startTime=s.now(),this.listener=function(t){try{"abort"!==t.type||o.loadCaptureCalled||(o.params.aborted=!0),("load"!==t.type||o.called===o.totalCbs&&(o.onloadCalled||"function"!=typeof n.onload))&&o.end(n)}catch(e){try{d.emit("internal-error",[e])}catch(r){}}};for(var a=0;a<p;a++)n.addEventListener(l[a],this.listener,!1)}),d.on("xhr-cb-time",function(t,n,e){this.cbTime+=t,n?this.onloadCalled=!0:this.called+=1,this.called!==this.totalCbs||!this.onloadCalled&&"function"==typeof e.onload||this.end(e)}),d.on("xhr-load-added",function(t,n){var e=""+h(t)+!!n;this.xhrGuids&&!this.xhrGuids[e]&&(this.xhrGuids[e]=!0,this.totalCbs+=1)}),d.on("xhr-load-removed",function(t,n){var e=""+h(t)+!!n;this.xhrGuids&&this.xhrGuids[e]&&(delete this.xhrGuids[e],this.totalCbs-=1)}),d.on("addEventListener-end",function(t,n){n instanceof v&&"load"===t[0]&&d.emit("xhr-load-added",[t[1],t[2]],n)}),d.on("removeEventListener-end",function(t,n){n instanceof v&&"load"===t[0]&&d.emit("xhr-load-removed",[t[1],t[2]],n)}),d.on("fn-start",function(t,n,e){n instanceof v&&("onload"===e&&(this.onload=!0),("load"===(t[0]&&t[0].type)||this.onload)&&(this.xhrCbStart=s.now()))}),d.on("fn-end",function(t,n){this.xhrCbStart&&d.emit("xhr-cb-time",[s.now()-this.xhrCbStart,this.onload,n],n)})}},{}],12:[function(t,n,e){n.exports=function(t){var n=document.createElement("a"),e=window.location,r={};n.href=t,r.port=n.port;var o=n.href.split("://");!r.port&&o[1]&&(r.port=o[1].split("/")[0].split("@").pop().split(":")[1]),r.port&&"0"!==r.port||(r.port="https"===o[0]?"443":"80"),r.hostname=n.hostname||e.hostname,r.pathname=n.pathname,r.protocol=o[0],"/"!==r.pathname.charAt(0)&&(r.pathname="/"+r.pathname);var i=!n.protocol||":"===n.protocol||n.protocol===e.protocol,a=n.hostname===document.domain&&n.port===e.port;return r.sameOrigin=i&&(!n.hostname||a),r}},{}],13:[function(t,n,e){function r(){}function o(t,n,e){return function(){return i(t,[f.now()].concat(s(arguments)),n?null:this,e),n?void 0:this}}var i=t("handle"),a=t(18),s=t(19),c=t("ee").get("tracer"),f=t("loader"),u=NREUM;"undefined"==typeof window.newrelic&&(newrelic=u);var d=["setPageViewName","setCustomAttribute","setErrorHandler","finished","addToTrace","inlineHit","addRelease"],l="api-",p=l+"ixn-";a(d,function(t,n){u[n]=o(l+n,!0,"api")}),u.addPageAction=o(l+"addPageAction",!0),u.setCurrentRouteName=o(l+"routeName",!0),n.exports=newrelic,u.interaction=function(){return(new r).get()};var h=r.prototype={createTracer:function(t,n){var e={},r=this,o="function"==typeof n;return i(p+"tracer",[f.now(),t,e],r),function(){if(c.emit((o?"":"no-")+"fn-start",[f.now(),r,o],e),o)try{return n.apply(this,arguments)}catch(t){throw c.emit("fn-err",[arguments,this,t],e),t}finally{c.emit("fn-end",[f.now()],e)}}}};a("actionText,setName,setAttribute,save,ignore,onEnd,getContext,end,get".split(","),function(t,n){h[n]=o(p+n)}),newrelic.noticeError=function(t,n){"string"==typeof t&&(t=new Error(t)),i("err",[t,f.now(),!1,n])}},{}],14:[function(t,n,e){n.exports=function(t){if("string"==typeof t&&t.length)return t.length;if("object"==typeof t){if("undefined"!=typeof ArrayBuffer&&t instanceof ArrayBuffer&&t.byteLength)return t.byteLength;if("undefined"!=typeof Blob&&t instanceof Blob&&t.size)return t.size;if(!("undefined"!=typeof FormData&&t instanceof FormData))try{return JSON.stringify(t).length}catch(n){return}}}},{}],15:[function(t,n,e){var r=0,o=navigator.userAgent.match(/Firefox[\/\s](\d+\.\d+)/);o&&(r=+o[1]),n.exports=r},{}],16:[function(t,n,e){function r(){function t(){return n?15&n[e++]:16*Math.random()|0}var n=null,e=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&(n=r.getRandomValues(new Uint8Array(31)));for(var o,i="xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx",a="",s=0;s<i.length;s++)o=i[s],"x"===o?a+=t().toString(16):"y"===o?(o=3&t()|8,a+=o.toString(16)):a+=o;return a}function o(){function t(){return n?15&n[e++]:16*Math.random()|0}var n=null,e=0,r=window.crypto||window.msCrypto;r&&r.getRandomValues&&Uint8Array&&(n=r.getRandomValues(new Uint8Array(31)));for(var o=[],i=0;i<16;i++)o.push(t().toString(16));return o.join("")}n.exports={generateUuid:r,generateCatId:o}},{}],17:[function(t,n,e){function r(t,n){if(!o)return!1;if(t!==o)return!1;if(!n)return!0;if(!i)return!1;for(var e=i.split("."),r=n.split("."),a=0;a<r.length;a++)if(r[a]!==e[a])return!1;return!0}var o=null,i=null,a=/Version\/(\S+)\s+Safari/;if(navigator.userAgent){var s=navigator.userAgent,c=s.match(a);c&&s.indexOf("Chrome")===-1&&s.indexOf("Chromium")===-1&&(o="Safari",i=c[1])}n.exports={agent:o,version:i,match:r}},{}],18:[function(t,n,e){function r(t,n){var e=[],r="",i=0;for(r in t)o.call(t,r)&&(e[i]=n(r,t[r]),i+=1);return e}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],19:[function(t,n,e){function r(t,n,e){n||(n=0),"undefined"==typeof e&&(e=t?t.length:0);for(var r=-1,o=e-n||0,i=Array(o<0?0:o);++r<o;)i[r]=t[n+r];return i}n.exports=r},{}],20:[function(t,n,e){n.exports={exists:"undefined"!=typeof window.performance&&window.performance.timing&&"undefined"!=typeof window.performance.timing.navigationStart}},{}],21:[function(t,n,e){function r(t){return!(t&&t instanceof Function&&t.apply&&!t[a])}var o=t("ee"),i=t(19),a="nr@original",s=Object.prototype.hasOwnProperty,c=!1;n.exports=function(t,n){function e(t,n,e,o){function nrWrapper(){var r,a,s,c;try{a=this,r=i(arguments),s="function"==typeof e?e(r,a):e||{}}catch(f){l([f,"",[r,a,o],s])}u(n+"start",[r,a,o],s);try{return c=t.apply(a,r)}catch(d){throw u(n+"err",[r,a,d],s),d}finally{u(n+"end",[r,a,c],s)}}return r(t)?t:(n||(n=""),nrWrapper[a]=t,d(t,nrWrapper),nrWrapper)}function f(t,n,o,i){o||(o="");var a,s,c,f="-"===o.charAt(0);for(c=0;c<n.length;c++)s=n[c],a=t[s],r(a)||(t[s]=e(a,f?s+o:o,i,s))}function u(e,r,o){if(!c||n){var i=c;c=!0;try{t.emit(e,r,o,n)}catch(a){l([a,e,r,o])}c=i}}function d(t,n){if(Object.defineProperty&&Object.keys)try{var e=Object.keys(t);return e.forEach(function(e){Object.defineProperty(n,e,{get:function(){return t[e]},set:function(n){return t[e]=n,n}})}),n}catch(r){l([r])}for(var o in t)s.call(t,o)&&(n[o]=t[o]);return n}function l(n){try{t.emit("internal-error",n)}catch(e){}}return t||(t=o),e.inPlace=f,e.flag=a,e}},{}],ee:[function(t,n,e){function r(){}function o(t){function n(t){return t&&t instanceof r?t:t?c(t,s,i):i()}function e(e,r,o,i){if(!l.aborted||i){t&&t(e,r,o);for(var a=n(o),s=m(e),c=s.length,f=0;f<c;f++)s[f].apply(a,r);var d=u[g[e]];return d&&d.push([x,e,r,a]),a}}function p(t,n){y[t]=m(t).concat(n)}function h(t,n){var e=y[t];if(e)for(var r=0;r<e.length;r++)e[r]===n&&e.splice(r,1)}function m(t){return y[t]||[]}function w(t){return d[t]=d[t]||o(e)}function v(t,n){f(t,function(t,e){n=n||"feature",g[e]=n,n in u||(u[n]=[])})}var y={},g={},x={on:p,addEventListener:p,removeEventListener:h,emit:e,get:w,listeners:m,context:n,buffer:v,abort:a,aborted:!1};return x}function i(){return new r}function a(){(u.api||u.feature)&&(l.aborted=!0,u=l.backlog={})}var s="nr@context",c=t("gos"),f=t(18),u={},d={},l=n.exports=o();l.backlog=u},{}],gos:[function(t,n,e){function r(t,n,e){if(o.call(t,n))return t[n];var r=e();if(Object.defineProperty&&Object.keys)try{return Object.defineProperty(t,n,{value:r,writable:!0,enumerable:!1}),r}catch(i){}return t[n]=r,r}var o=Object.prototype.hasOwnProperty;n.exports=r},{}],handle:[function(t,n,e){function r(t,n,e,r){o.buffer([t],r),o.emit(t,n,e)}var o=t("ee").get("handle");n.exports=r,r.ee=o},{}],id:[function(t,n,e){function r(t){var n=typeof t;return!t||"object"!==n&&"function"!==n?-1:t===window?0:a(t,i,function(){return o++})}var o=1,i="nr@id",a=t("gos");n.exports=r},{}],loader:[function(t,n,e){function r(){if(!E++){var t=b.info=NREUM.info,n=p.getElementsByTagName("script")[0];if(setTimeout(u.abort,3e4),!(t&&t.licenseKey&&t.applicationID&&n))return u.abort();f(g,function(n,e){t[n]||(t[n]=e)}),c("mark",["onload",a()+b.offset],null,"api");var e=p.createElement("script");e.src="https://"+t.agent,n.parentNode.insertBefore(e,n)}}function o(){"complete"===p.readyState&&i()}function i(){c("mark",["domContent",a()+b.offset],null,"api")}function a(){return R.exists&&performance.now?Math.round(performance.now()):(s=Math.max((new Date).getTime(),s))-b.offset}var s=(new Date).getTime(),c=t("handle"),f=t(18),u=t("ee"),d=t(17),l=window,p=l.document,h="addEventListener",m="attachEvent",w=l.XMLHttpRequest,v=w&&w.prototype;NREUM.o={ST:setTimeout,SI:l.setImmediate,CT:clearTimeout,XHR:w,REQ:l.Request,EV:l.Event,PR:l.Promise,MO:l.MutationObserver};var y=""+location,g={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",agent:"js-agent.newrelic.com/nr-1130.min.js"},x=w&&v&&v[h]&&!/CriOS/.test(navigator.userAgent),b=n.exports={offset:s,now:a,origin:y,features:{},xhrWrappable:x,userAgent:d};t(13),p[h]?(p[h]("DOMContentLoaded",i,!1),l[h]("load",r,!1)):(p[m]("onreadystatechange",o),l[m]("onload",r)),c("mark",["firstbyte",s],null,"api");var E=0,R=t(20)},{}]},{},["loader",2,11,4,3]);;
}
</script>
<script type="text/javascript">Disney.adSystem='dfp'</script>
<script type="text/javascript">Disney.consentPolicy={}</script><script src="https://cdn.registerdisney.go.com/v2/outer/DisneyID.js" type="text/javascript" id="disneyid-script" async=""></script>
</head>
<body dir="ltr" data-ad_system="dfp" data-cto-region="">
<div id="style-pack-theming"><style type="text/css">
/* base-level page background styles */
.body-bg{ opacity: 1; }
.body-bg .main, .body-bg .safety-color{ background-color: #edeef3; }
.body-bg .color-fade{
background-image: linear-gradient(to bottom, #edeef3 0, #edeef3 808px, #9399bd 1500px, #9399bd 92%);
}
@media screen and (min-width: 1025px){
footer #bottomnav a, footer #bottomnav p, footer #help p, footer #utility p{ color: #fff; }
footer #bottomnav .col, footer #utility .divider { border-color: rgba(255, 255, 255, 0.07); }
}
/* page-level entity styles */
</style>
</div>
<div id="takeover-styles-default"><style type="text/css">
/* style-pack-configured takeover styles */
@media screen and (min-width: 1025px){
.site-default-gradient{ display: none; }
.takeover-area .overlay.default .main-image{ background-image: url(https://lumiere-a.akamaihd.net/v1/images/open-uri20150610-21458-1oo90h9_04c794d4.jpeg?region=0,0,1600,764); }
#nav-logo, #nav-local li a, aside.gpt.pushdown, #chrome-controls{ color: #000; }
#chrome-controls .chrome-controls-icon{ border-color: transparent #000 #000 transparent; }
#nav-local li a.active{ color: #1786eb; }
}
@media screen and (min-width: 1025px){
#nav-logo{ background-image: url(https://static-mh.content.disney.io/matterhorn/assets/logos/nav_logo_dark-cdc4f0768098.png);}
}
@media screen and (-webkit-min-device-pixel-ratio: 1.5) and (min-width: 1025px), screen and (min-resolution: 144dpi) and (min-width: 1025px){
#nav-logo{ background-image: url(https://static-mh.content.disney.io/matterhorn/assets/logos/nav_logo_dark@2x-8096506f0cde.png);}
}
</style>
</div>
<div id="takeover-styles-module-override"></div>
<div class="goc-el goc-bg-dark goc-overlay" id="goc-menu">
<div class="goc-bound goc-col">
<form class="goc-search" action="//search.disney.com/search" method="GET">
<input type="text" class="search-type-" name="q" placeholder="Search">
</form>
<dl id="goc-user-mobile">
<dt class="goc-login goc-dropdown">
<span class="trigger-menu" data-event="login"><a class="goc-icn-login" href="javascript:void(0);"><u>Login</u></a></span>
</dt>
<dt class="goc-logout goc-dropdown">
<a href="" class="goc-icn-login goc-logout goc-expandable"><u>My Account</u></a>
</dt>
<dd class="goc-dropdown">
<span class="trigger-menu" data-event="profile">
<a data-analytic="disid_menu" href="javascript:void(0);" rel="nofollow"><u>Account Settings</u></a>
</span>
<span class="trigger-menu" data-event="create">
<a data-analytic="disid_menu" href=/creations rel="nofollow"><u>My Creations</u></a>
</span>
<span class="trigger-menu" data-event="logout">
<a data-analytic="disid_menu" href="javascript:void(0);"><u>Logout</u></a>
</span>
</dd>
</dl>
<dl class="menu-section">
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://www.disney.com/" class=" goc-icn-0 goc-active"><u>Disney.com</u></a></dt>
<dd class="">
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://www.shopdisney.com/?CMP=OTL-Dcom_DropRollover_Store_EFC_280559" class=" goc-icn-1"><u>Shop</u></a></dt>
<dd class="">
<a href="https://www.shopdisney.com?CMP=OTL-Dom_att_DropRollover_Sale_EFC280559" class=""><u>Sale</u></a>
<a href="https://www.shopdisney.com/clothes?CMP=OTL-Dom_att_DropRollover_Clothes_EFC_280559" class=""><u>Clothes</u></a>
<a href="https://www.shopdisney.com/accessories?CMP=OTL-Dom_att_DropRollover_Accessories_EFC_280559" class=""><u>Accessories</u></a>
<a href="https://www.shopdisney.com/toys?CMP=OTL-Dom_att_DropRollover_Toys_EFC_280559" class=""><u>Toys</u></a>
<a href="https://www.shopdisney.com/?CMP=OTL-Dcom_att_DropRollover_AllStore_EFC_280559" class=""><u>Shop All</u></a>
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://disneyparks.disney.go.com/?DISCID=DI_flyawaynav_8" class=" goc-icn-2"><u>Parks & Travel</u></a></dt>
<dd class="">
<a href="https://disneyparks.disney.go.com/?DISCID=DI_flyawaynav_8" class="goc-mobile"><u>Home</u></a>
<a href="https://disneyworld.disney.go.com/?DISCID=DI_flyawaynav_9" class="goc-desktop"><u>Walt Disney World</u></a>
<a href="https://disneyworld.disney.go.com/?DISCID=di_flyawaynav_9" class="goc-mobile"><u>Walt Disney World</u></a>
<a href="https://disneyland.disney.go.com/?DISCID=DI_flyawaynav_10" class=""><u>Disneyland</u></a>
<a href="https://disneycruise.disney.go.com/?DISCID=DI_flyawaynav_11" class=""><u>Disney Cruise Line</u></a>
<a href="https://www.disneyaulani.com/?DISCID=DI_flyawaynav_12" class=""><u>Aulani</u></a>
<a href="https://disneyparks.disney.go.com/?DISCID=DI_flyawaynav_13" class=""><u>All Parks & Travel</u></a>
</dd>
</dl>
<dl class="menu-section">
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://preview.disneyplus.com?cid=DTCI-desktopdropdownnav_disneyplus" class=" goc-icn-3"><u>Disney+</u></a></dt>
<dd class="">
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://lol.disney.com/games" class=" goc-icn-4"><u>Games</u></a></dt>
<dd class="">
<a href="https://lol.disney.com/games" class="goc-mobile"><u>Home</u></a>
<a href="https://lol.disney.com/create" class=""><u>Create</u></a>
<a href="https://lol.disney.com/games/dress-up-games" class=""><u>Dress Up Games</u></a>
<a href="https://lol.disney.com/games/racing-games" class=""><u>Racing Games</u></a>
<a href="https://www.clubpenguinisland.com/?country=US?oast=DOS_CP_CPVW_DCOM_HOMENAV_2013EVER_BAC_EN_NAM_nav&cmp=clp_bac_en_2013EVER_dcom_nav_home-nav_extl" class=""><u>Club Penguin Island</u></a>
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://video.disney.com" class=" goc-icn-5"><u>Video</u></a></dt>
<dd class="">
<a href="https://video.disney.com" class="goc-mobile"><u>Home</u></a>
<a href="https://movies.disney.com" class=""><u>Movies</u></a>
<a href="https://shows.disney.com" class=""><u>Shows</u></a>
<a href="https://video.disney.com/how-to-draw" class=""><u>How To Draw</u></a>
<a href="https://music.disney.com" class=""><u>Music Videos</u></a>
<a href="https://video.disney.com/watchtv" class="goc-desktop"><u>Watch TV</u></a>
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://shows.disney.com/" class=" goc-icn-6"><u>TV</u></a></dt>
<dd class="">
<a href="https://disneynow.go.com/all-shows/disney-channel" class=""><u>Disney Channel</u></a>
<a href="https://disneynow.go.com/all-shows/disney-xd" class=""><u>Disney XD</u></a>
<a href="https://disneynow.go.com/all-shows/disney-junior" class=""><u>Disney Junior</u></a>
</dd>
</dl>
<dl class="menu-section">
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://ohmy.disney.com/" class=" goc-icn-7"><u>Oh My Disney</u></a></dt>
<dd class="">
<a href="https://ohmy.disney.com/" class="goc-mobile"><u>Home</u></a>
<a href="https://ohmy.disney.com/quiz/" class=""><u>Quiz</u></a>
<a href="https://ohmy.disney.com/news/" class=""><u>News</u></a>
<a href="https://ohmy.disney.com/food/" class=""><u>Food</u></a>
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://style.disney.com/" class=" goc-icn-8"><u>Disney Style</u></a></dt>
<dd class="">
<a href="https://style.disney.com/" class="goc-mobile"><u>Home</u></a>
<a href="https://style.disney.com/fashion/" class=""><u>Fashion</u></a>
<a href="https://video.disney.com/disney-style" class=""><u>Video</u></a>
<a href="https://style.disney.com/shopping/" class=""><u>Shopping</u></a>
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://family.disney.com/" class=" goc-icn-9"><u>Family</u></a></dt>
<dd class="">
<a href="https://family.disney.com" class="goc-mobile"><u>Home</u></a>
<a href="https://family.disney.com/crafts/" class=""><u>Crafts</u></a>
<a href="https://family.disney.com/recipes/" class=""><u>Recipes</u></a>
<a href="https://family.disney.com/activities/" class=""><u>Activities</u></a>
</dd>
</dl>
<dl class="menu-section">
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://movies.disney.com" class=" goc-icn-10"><u>Movies</u></a></dt>
<dd class="">
<a href="https://movies.disney.com" class="goc-mobile"><u>Home</u></a>
<a href="https://movies.disney.com/in-theaters" class=""><u>In Theaters</u></a>
<a href="https://movies.disney.com/watch-at-home" class=""><u>At Home</u></a>
<a href="https://moviesanywhere.com/collection/disney-collection" class=""><u>Movies Anywhere</u></a>
<a href="https://movies.disney.com/all-movies" class=""><u>All Movies</u></a>
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="http://music.disney.com" class=" goc-icn-11"><u>Music</u></a></dt>
<dd class="">
<a href="https://music.disney.com" class="goc-mobile"><u>Home</u></a>
<a href="https://music.disney.com/music-videos" class=""><u>Music Videos</u></a>
<a href="https://music.disney.com/artists" class=""><u>Artists</u></a>
<a href="https://radio.disney.com/" class=""><u>Radio Disney</u></a>
<a href="https://radio.disney.com/radio-disney-music-awards" class=""><u>RDMA</u></a>
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://books.disney.com/" class=" goc-icn-12"><u>Books</u></a></dt>
<dd class="">
<a href="https://books.disney.com/" class="goc-mobile"><u>Home</u></a>
<a href="https://disneystorycentral.com/" class=""><u>Digital</u></a>
</dd>
<dt class="menu-section-heading goc-mobile-subnav-title"><a href="https://liveshows.disney.com/" class=" goc-icn-13"><u>Live Shows</u></a></dt>
<dd class="">
<a href="https://liveshows.disney.com" class="goc-mobile"><u>Home</u></a>
<a href="http://www.disneyonbroadway.com/" class=""><u>Disney on Broadway</u></a>
<a href="https://www.disneyonice.com/" class=""><u>Disney on Ice</u></a>
<a href="https://www.disneylive.com" class=""><u>Disney Live!</u></a>
</dd>
</dl>
</div>
<div class="goc-bound">
<button class="goc-logo-image" id="goc-button">
<u>Disney.com</u>
<span class="arrow"></span>
</button>
</div>
<dl class="goc-mobile"><dd>
<a href="https://preview.disneyplus.com?cid=DTCI-desktopnav_disneyplus"><u>Disney+</u></a>
</dd></dl>
</div>
<div id="goc-body" class="goc-main-body"> <button id="goc-skip-nav" class="goc-bg-dark goc-el">Skip Navigation</button>
<div class="goc-el goc-bg-dark " id="goc-bar">
<div class="goc-bound">
<ul id="goc-desktop-global" class="goc-desktop-global" role="list">
<span id="goc-bar-left" class="goc-left" role="none">
<li class="goc-desktop goc-menu goc-left-0" role="listitem">
<a class="goc-wide-link " href="https://www.disney.com/" class="goc-logo-image"><u>Disney.com</u></a>
</li>
<li class="goc-desktop goc-store goc-left-1" role="listitem">
<a class="goc-wide-link " href="https://www.shopdisney.com/?CMP=OTL-Dcom_ChromShpIconB_Shop_EFC280559" class="goc-logo-image"><u>Shop</u></a>
</li>
<li class="goc-desktop goc-parks goc-top-dropdown goc-left-2" role="listitem">
<a class="goc-wide-link goc-dropdown-link" href="https://disneyparks.disney.go.com/?DISCID=DI_mtt_chrome" class="goc-logo-image"><u>Parks & Travel</u></a>
<span class="goc-thumb-dropdown dropdown-2">
<span class="goc-dropdown-inner">
<a class="goc-thumb-link" title="Walt Disney World Resort" href="https://disneyworld.disney.go.com/?DISCID=DI_mtt_chrome_dropdown_wdw" data-name="Disney US Chrome | Parks Dropdown | WDW"></a><a class="goc-thumb-link" title="Disneyland Resort" href="https://disneyland.disney.go.com/?DISCID=DI_mtt_chrome_dropdown_dlr" data-name="Disney US Chrome | Parks Dropdown | DL"></a><a class="goc-thumb-link" title="Disney Cruise Line" href="https://disneycruise.disney.go.com/?DISCID=DI_mtt_chrome_dropdown_dcl" data-name="Disney US Chrome | Parks Dropdown | CL"></a><a class="goc-thumb-link" title="Aulani - A Disney Resort and Spa" href="https://www.disneyaulani.com/?DISCID=DI_mtt_chrome_dropdown_aulani" data-name="Disney US Chrome | Parks Dropdown | Aulani"></a><a class="goc-thumb-link" title="Adventures by Disney" href="https://www.adventuresbydisney.com/?DISCID=DI_mtt_chrome_dropdown_abd" data-name="Disney US Chrome | Parks Dropdown | ABD"></a><a class="goc-thumb-link" title="Disney Vacation Club" href="https://disneyvacationclub.disney.go.com/?DISCID=DI_mtt_chrome_dropdown_dvc" data-name="Disney US Chrome | Parks Dropdown | DVC"></a>
</span>
</span>
</li>
<li class=" goc-parks goc-left-13" role="listitem">
<a class="goc-wide-link " href="https://preview.disneyplus.com?cid=DTCI-desktopnav_disneyplus" class="goc-logo-image"><u>Disney+</u></a>
</li>
</span>
<span id="goc-bar-right" class="goc-right" role="none">
<li class="goc-desktop " role="listitem">
<a href="https://lol.disney.com/games" class=" "><u>Games</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://video.disney.com/" class=" "><u>Video</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://ohmy.disney.com/" class=" "><u>Oh My Disney</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://shows.disney.com" class=" "><u>TV</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://movies.disney.com" class=" "><u>Movies</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://music.disney.com" class=" "><u>Music</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://family.disney.com/" class=" "><u>Family</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://style.disney.com" class=" "><u>Style</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://liveshows.disney.com" class=" "><u>Live Shows</u></a>
</li>
<li class="goc-desktop " role="listitem">
<a href="https://books.disney.com/" class=" "><u>Books</u></a>
</li>
</span>
<li class="goc-desktop goc-hidden goc-dropdown" id="goc-more-link" role="listitem"><a href="#"><u>More</u><span class="arrow"></span></a><ul id="goc-more-menu"></ul></li>
</ul>
<ul id="goc-user">
<li class="goc-login">
<span class="goc-icn-login-bar"></span>
<span class="login-title-link trigger-base" data-event="login" role="button" onclick="">
<a href="javascript:void(0);" class="login-link"><u>Login</u></a>
</span>
</li>
<li class="goc-logout goc-dropdown">
<span class="goc-icn-login-bar"></span>
<a href="#" class="login-dropdown-title-link" role="button">
<u class="title">My Account</u>
<span class="arrow"></span>
</a>
<ul>
<li>
<span class="trigger-base" data-event="profile" role="button" onclick="">
<a class="login-dropdown-link dropdown_link" data-analytic="disid_menu" href="javascript:void(0);" rel="nofollow"><u>Account Settings</u></a>
</span>
</li>
<li>
<span class="trigger-base" data-event="create" role="button" onclick="">
<a class="login-dropdown-link dropdown_link" data-analytic="disid_menu" href=/creations rel="nofollow"><u>My Creations</u></a>
</span>
</li>
<li>
<span class="trigger-base" data-event="logout" role="button" onclick="">
<a class="login-dropdown-link" data-analytic="disid_menu" href="javascript:void(0);"><u>Logout</u></a>
</span>
</li>
</ul>
</li>
</ul>
<form class="goc-search" action="//search.disney.com/search" method="GET">
<input type="hidden" name="o" value="home">
<input type="text" name="q" id="goc-instant-search-input" class="instant-search-input" placeholder="Search">
<input type="submit" class="bar-search-icon ada-el-focus" value="" tabindex="0">
</form>
</div>
</div>
<div id="goc-nav" class="goc-el goc-bg-dark ">
<span id="goc-logo" title="Disney"></span>
<span id="goc-e" role="button" title="Navigate"></span>
</div>
<script type="text/javascript">GOC.queue.push(["trigger","accept:base"]);</script>
<div id="nav-local" class="nav-local goc-bg-dark">
<div id="nav-pushdown"></div>
<div class="bound">
<button id="nav-e" role="button" title="Navigate"></button>
<a href="http://go.com" title="Disney " class="nav-logo" id="nav-logo"><span></span> </a>
<ul>
</ul>
<span id="search_cancel_text">Cancel</span>
</div>
</div>
<script src="//ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js" type="text/javascript"></script>
<script src="https://static-mh.content.disney.io/matterhorn/assets/application-82b7f01d51c8.js" type="text/javascript"></script>
<div id="base-bg" ></div>
<div id="burger-container">
<div class="background-styles">
<div class="site-default-gradient">
<div class="safety-color"></div>
</div>
<div class="body-bg">
<div class="safety-color"></div>
<div class="main"></div>
<div class="color-fade"></div>
</div>
<div id="takeover-colors" class="takeover-area">
<div class="overlay default">
<div class="safety-color">
<div class="color-block"></div>
</div>
<div class="main-color"></div>
<div class="repeating repeating-color"></div>
<div class="fade-out"></div>
</div>
<div class="overlay module-override">
<div class="safety-color">
<div class="color-block"></div>
</div>
<div class="main-color"></div>
<div class="repeating repeating-color"></div>
<div class="fade-out"></div>
</div>
</div>
</div>
<div id="nav-body">
<div id="main"><article id="burger" class="frozen">
<style type="text/css">
<!-- /* background_styles module 0-1 */ -->
</style>
<section class="module background_styles transparent primary-theme light bun" id="ref-0-1">
<div class="background-styles">
<div id="takeover-images" class="takeover-area">
<div class="overlay default">
<div class="repeating repeating-image"></div>
<div class="main-image"></div>
</div>
<div class="overlay module-override">
<div class="repeating repeating-image"></div>
<div class="main-image"></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* hero_universal module 1-0 */ -->
</style>
<section class="module hero_universal skip-styles skip-bottom-border skip-top-border full-height full-width header-left content-span-full-screen primary-theme light hidden_in_desktop hidden_in_mobile " id="ref-1-0">
<div class="bound">
<div class="carousel universal">
<ul class="slides">
<li><div class="branding">
<div class="scaler"></div>
<div class="background">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/open-uri20160811-19390-aqm9ri_97bd2a91.jpeg?region=0%2C0%2C1024%2C320" alt="Go Homepage"></noscript>
</div>
</div>
<div class="content right">
<div class="logo">
<a href="" class="heading" tabindex="-1">
<h2 class="dark" ></h2>
<h3 class="dark"></h3>
</a>
</div>
</div>
</li>
</ul>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-1 */ -->
#ref-1-1:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left no-border content-span-full-screen primary-theme light hidden_in_desktop hidden_in_mobile " id="ref-1-1">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:9.77%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/image_ab20438a.jpeg?region=0,0,1024,100" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* watch_playlist_2 module 1-2 */ -->
</style>
<section class="module watch_playlist_2 content-span-full-screen primary-theme light " id="ref-1-2">
<div class="bound">
<div id="video_watch_container" itemprop="video" itemscope itemtype="http://schema.org/VideoObject" >
<div id="video_wrapper_2" class="video_wrapper_2">
<div class="scaler"></div>
<div id="frame">
</div>
</div><!-- End of video_wrapper -->
</div><!-- End #video_watch_container-->
<div class="playlist">
<div class="scaler"></div>
<div class="up-next">
<h3>Up Next</h3>
</div>
<div class="playlist-item-container"></div>
<div class="playlist-gradient"></div>
</div>
</div><!-- End of bound -->
</section><style type="text/css">
<!-- /* rich_image module 1-3 */ -->
#ref-1-3:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-3">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.53%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-desktop_1f595224.jpeg?region=0,0,1536,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-4 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-4">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="https://www.shopdisney.com/?cmp=OTL-Dcom&att=GO%7Csdhome&EFC=280559">shopDisney: Disney's Official Online Store</a><br>Disney store online is now shopDisney, the ultimate Disney shopping destination! Shop for costumes, clothes, toys, collectibles, décor, movies and more.</p><p class=""><br></p><p class=""><a href="https://www.shopdisney.com/movies-shows/marvel/captain-marvel?cmp=OTL-Dcom&att=GO%7Ccap&EFC=280559">Captain Marvel Merchandise</a><br>Shop Captain Marvel merchandise like t-shirts, costumes, action figures, collectibles and more at shopDisney.<br></p><p class=""><br></p><p><a href="https://www.shopdisney.com/characters/mickey-mouse?cmp=OTL-Dcom&att=GO%7Cmic&EFC=280559">Mickey Mouse Merchandise</a><br>Make magic with Mickey Mouse. Find an entire clubhouse of merchandise like toys, costumes, earhats, t-shirts, home decorations, party supplies and more at shopDisney.</p><p><br></p><p><a href="https://www.shopdisney.com/characters/stitch?cmp=OTL-Dcom&att=GO%7Clas&EFC=280559">Stitch Merchandise</a><br>Say aloha to Stitch merchandise from Disney's Lilo & Stitch for your entire ohana at shopDisney.<br></p><p><br></p><p><a href="https://www.shopdisney.com/toys?cmp=OTL-Dcom&att=GO%7Ctoy&EFC=280559">Toys for Kids</a><br>Make play time a blast with Disney toys. Find plush toys, Princess toys, action figures and much more at shopDisney.<br></p><p><br></p><p><a href="https://www.shopdisney.com/clothes?cmp=OTL-Dcom&att=GO%7Cclo&EFC=280559">Shop Disney Clothes: T-Shirts, Hoodies, PJs and More</a><br>Dress to impress with Disney clothes. Shop for hoodies, shirts, denim, activewear, pajamas and more at shopDisney.<br></p><p><br></p><p><a href="https://www.shopdisney.com/adult/women/accessories/beauty?cmp=OTL-Dcom&att=GO%7Cbam&EFC=280559">Disney Makeup & Beauty Products</a><br><span style='font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; font-size: 1rem;'>Express yourself with this magical collection of lipsticks, powders, eyeshadows, headbands, beauty accessories and more at shopDisney.</span></p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-5 */ -->
#ref-1-5:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left no-border content-span-full-screen primary-theme light " id="ref-1-5">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.53%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/dcpi-header-logo_d6f42a07.jpeg?region=0,0,1536,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-6 */ -->
</style>
<section class="module rich_text header-left no-border content-span-full-screen primary-theme light " id="ref-1-6">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="http://lol.disney.com/games" style="background-color: rgb(255, 255, 255); font-size: 1rem;">Online Games </a><br></p><p> Play Disney online games from Disney Channel, Disney XD, and Disney Movies! Plus <a href="http://lol.disney.com/games/coloring-pages">coloring pages</a>, fun <a href="http://lol.disney.com/video">videos</a> and awesome <a href="http://lol.disney.com/star-wars">Star Wars activities</a>.</p><p><br></p><p><a href="http://video.disney.com/">Disney Videos</a></p><p>Watch your favorite Disney videos from Disney Channel, Disney XD, movies, music videos, Disney on YouTube, and much more!</p><p><br></p><p><a href="http://lol.disney.com/star-wars-kids">Galaxy of Adventures for Star Wars Kids!</a></p><p>Take your first step into a larger world with Star Wars Galaxy of Adventures!<br></p><p><br></p><p><a href="http://lol.disney.com/star-wars">Star Wars Activities</a><br></p><p>Check out the latest Star Wars activities, <a href="http://lol.disney.com/star-wars-games">games</a>, coloring pages, videos, <a href="http://lol.disney.com/star-wars-quizzes">quizzes</a>, and more! </p><p><br></p><p><a href="https://movies.disney.com/captain-marvel">Captain Marvel</a></p><p>Marvel Studios’ “Captain Marvel” follows the journey of Carol Danvers as she becomes one of the universe’s most powerful heroes. <br></p><p><br></p><p><a href="https://movies.disney.com/aladdin-2019">Aladdin (2019)</a></p><p>The live-action adaptation of Disney's beloved animated classic "Aladdin".<br><br></p><p><a href="https://movies.disney.com/toy-story-4">Toy Story 4</a></p><p>Join Woody and friends on their next adventure this summer.</p><p><br></p><p><a href="https://movies.disney.com/the-lion-king-2019">The Lion King (2019)</a></p><p>Follow the live-action story of a Disney classic. <br><br></p><p><a href="https://movies.disney.com/frozen-2">Frozen 2</a></p><p>The sequel to the popular Disney movie "Frozen" hits theaters November 22, 2019.</p><p><br></p><p><a href="https://www.starwars.com/films/star-wars-episode-ix-the-rise-of-skywalker">Star Wars Episode 9: The Rise of Skywalker</a></p><p>Watch the conclusion to the Skywalker saga December 2019.</p><p><br></p><p><a href="https://movies.disney.com/maleficent-mistress-of-evil">Maleficent: Mistress of Evil</a></p><p>Explore the complex relationship between Maleficent and the soon to be Queen in "Maleficent: Mistress of Evil."</p><p><br></p><p><a href="https://movies.disney.com/dark-phoenix">Dark Phoenix</a></p><p>Follow X-Men's Jean Grey as she evolves into the iconic Dark Phoenix.</p><p><br></p><p><a href="https://movies.disney.com/onward">Onward</a></p><p>Set in a suburban fantasy world, Disney and Pixar’s “Onward” introduces two elf brothers who embark on an extraordinary quest.</p><p><br></p><p><a href="https://movies.disney.com/soul">Soul</a></p><p>Pixar Animation Studios will take you on a journey from the streets of New York City to the cosmic realms to discover the answers to life’s most important questions. <br><br></p><p><a href="https://movies.disney.com/mulan-2020">Mulan (2020)</a></p><p>The live-action adaptation of Disney's "Mulan" hits theaters March 2020.</p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-7 */ -->
#ref-1-7:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-7">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.53%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-8wlgy9_ced6895d.jpeg?region=0,0,1536,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-8 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-8">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="http://abcnews.go.com/">ABC Breaking News</a></p><p>Get breaking national & world news, broadcast video coverage, and exclusive interviews. <br></p><p><br></p><p><a href="http://abcnews.go.com/us">National News</a></p><p> News about United States politics, crime, education, legal stories, celebrities, weather, the economy and more. </p><p><br></p><p><a href="http://abcnews.go.com/international">International News </a><br></p><p> Get the latest international news and events from Asia, Europe, the Middle East, and more. </p><p><br></p><p><a href="http://abcnews.go.com/video">News Videos </a><br></p><p>Get the latest news videos and watch live news clips & coverage online at ABC News. </p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-9 */ -->
#ref-1-9:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-9">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.53%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/rich_small_go_parks_159d0824.jpeg?region=0,0,1536,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-10 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-10">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="https://disneyworld.disney.go.com/plan/my-disney-experience/?CMP=AFC-DPFY13Q1DIENT1371A&DISCID=DI_go_mdx">My Disney Experience - Walt Disney Resort</a></p><p> Discover the tools to plan & share your Disney World vacation</p><p><br></p><p><a href="https://disneyland.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1372B&DISCID=DI_go_dlr">Disneyland Resort </a><br></p><p>Imagination is the destination at Disneyland Resort in Anaheim, CA </p><p><br></p><p><a href="https://disneyparks.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1373G&DISCID=DI_go_parks">Disney Parks</a></p><p>Plan a family vacation to Disney Parks, cruises & other destinations</p><p><br></p><p><a href="https://disneyparks.disney.go.com?DISCID=DI_go_disneyside">Show Your Disney Side</a></p><p>Bring out the fun in your family at Disney Parks.</p><p><br></p><p><a href="https://disneycruise.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1375C&DISCID=DI_go_dcl">Disney Cruise Line </a><br></p><p> Discover magical vacations with unique cruise activities for everyone</p><p><br></p><p><a href="https://www.adventuresbydisney.com/?CMP=AFC-DPFY13Q1DIENT1376D&DISCID=DI_go_abd">Adventures by Disney</a></p><p>Planned & guided vacations with exciting itineraries all over the globe</p><p><br></p><p> <a href="https://resorts.disney.go.com/aulani-hawaii-resort/?CMP=AFC-DPFY13Q1DIENT1377F&DISCID=DI_go_aulani">Aulani: A Disney Resort & Spa Disney</a></p><p> Hawaii Resort, a Hawaiian paradise with a touch of magic <br></p><p><a href="https://disneyvacationclub.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1378E&DISCID=DI_go_dvc"><br></a></p><p><a href="https://disneyvacationclub.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1378E&DISCID=DI_go_dvc">Disney Vacation Club</a></p><p>Disney Vacation Ownership and a flexible timeshare program.</p><p><br></p><p><a href="https://disneyland.disney.go.com/events-tours/disneyland/star-wars/?DISCID=DI_go_dlrstarwars">Disneyland Star Wars</a></p><p>Season of the Force is a series of special events and experiences celebrating the Star Wars saga that takes place within Tomorrowland at Disneyland Park.</p><p><br></p><p><a href="https://disneyworld.disney.go.com/destinations/hollywood-studios/toy-story-land/?DISCID=DW_go_dwrtoystory">Toy Story Land</a></p><p>Shrink to the size of a toy in a new land at Disney's Hollywood Studios! Coming June 30, 2018 to Walt Disney World Resort.</p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-11 */ -->
#ref-1-11:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-11">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.53%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-2rkl33_7e676ce3.jpeg?region=0,0,1536,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-12 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-12">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="http://abc.go.com/">Official Site of the ABC Network</a></p><p>Visit ABC online for information on ABC daytime and primetime network programming.</p><p><br></p><p> <a href="http://abc.go.com/watch">Watch Full Episodes from ABC</a> <br></p><p>Watch full episodes from your favorite ABC programs online. </p><p><br></p><p> <a href="">ABC TV Shows</a></p><p> Browse the complete list of our programming as well as movies and specials. <br></p><p><br></p><p> <a href="http://abc.go.com/schedule">ABC Television Schedule</a></p><p> Official ABC Home Schedule offers a deeper look at the hit TV series. </p><p><br></p><p> <a href="http://abc.go.com/shows/greys-anatomy">Grey's Anatomy</a> <br></p><p>The official Grey's Anatomy page on ABC. </p><p><br></p><p> <a href="http://abc.go.com/shows/dancing-with-the-stars/index">Dancing With the Stars</a></p><p> Watch full episodes, play trivia games and read recaps for every episode. </p><p><br></p><p> <a href="http://abcfamily.go.com/">ABC Family </a><br></p><p>Visit ABC Family online for information on ABC Family network programming. </p><p><br></p><p><a href="http://abc.go.com/daytime?cid=10_Daytime_Nav">ABC Daytime</a> <br></p><p> The View, The Chew, General Hospital, and more.. <br></p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-13 */ -->
#ref-1-13:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-13">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.53%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-v7z75q_551d9388.jpeg?region=0,0,1536,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-14 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-14">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="http://www.espn.com/">ESPN</a></p><p>Stay updated on all the latest sports news and scores at ESPN.com, the Worldwide Leader in Sports</p><p><br></p><p><a href="http://www.espn.com/video/sportscenter">SportsCenter</a></p><p>Watch sports video clips, highlights and all the famous SportsCenter commercials at SportsCenter.com</p><p><br></p><p> <a href="http://www.espn.com/watchespn/">WatchESPN</a><br></p><p>Watch live sports events and replays as well as ESPN programs at WatchESPN.com </p><p><br></p><p><a href="http://www.espn.in">ESPN India</a></p><p>Visit ESPN India to get up-to-the-minute sports news coverage, scores, highlights and commentary for cricket, rugby, football, F1, kabaddi and more.<br></p><p><br></p><p><a href="http://www.espn.com.br/">ESPN Brasil</a></p><p>Casa do futebol brasileiro e internacional, da NBA, NFL, MLB e do tênis. Notícias exclusivas, blogs, vídeos, fotos e tempo real de eventos esportivos.<br></p><p><br></p><p><a href="http://tv5.espn.com/">ESPN Philippines</a></p><p>Visit ESPN to get up-to-the-minute sports news coverage, scores, highlights and commentary for NBA, PBA, American NCAA Basketball, eSports, NFL, Boxing and more.<br></p><p><br></p><p><a href="https://plus.espn.com/">ESPN+ Stream Live Sports</a></p><p>Watch a selection of live sports from MLB, MLS, NHL, PGA TOUR Golf, Top Rank Boxing, Grand Slam Tennis, college sports, soccer, cricket, rugby and more. </p><p><br></p><p><a href="https://plus.espn.com/es/">ESPN+ Streaming Deportes En Vivo</a><br></p><p>Disfruta una selección de juegos en vivo de la MLB, la MLS, la NHL, TOUR de golf de PGA, Top Rank Boxing, tenis de Grand Slam, deportes universitarios y más.<br></p><p><br></p><p><a href="http://www.espn.com/nba/draft/news">NBA Draft</a></p><p>Get all the latest news around the <a href="http://www.espn.com/nba/draft/live">2018 NBA Draft</a> with Draftcast on ESPN<br></p><p><br></p><p><a href="http://www.espn.com/fantasy/football/">Fantasy Football</a></p><p>Play ESPN fantasy football for free. Create or join a fantasy football league, draft players, track rankings, watch highlights, get pick advice, and more!</p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-15 */ -->
#ref-1-15:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-15">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.53%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-f7ejpf_c7088577.jpeg?region=0,0,1536,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-16 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-16">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="https://ohmy.disney.com/" style="background-color: rgb(255, 255, 255); font-size: 1rem;">Oh My Disney</a><br></p><p>The official destination for Disney quizzes, nostalgia, news, and other Disney magic.</p><p><br></p><p><a href="https://style.disney.com/">Disney Style</a></p><p>The ultimate destination for everything Disney fashion, lifestyle, shopping, celebrity news, and beauty.</p><p><br></p><p><a href="https://family.disney.com/" style="background-color: rgb(255, 255, 255); font-size: 1rem;">Disney Family</a><br></p><p>Disney Family offers parents a way to add magic to their kiddo’s life—from the best <a href="https://family.disney.com/articles/kids-party-invitations/">kids party invitations</a> and <a href="https://family.disney.com/articles/frozen-party-ideas-ultimate-guide/">Frozen party ideas</a> to making a regular weekend feel special! Disney Family has tons of <a href="https://family.disney.com/crafts/">crafts</a>, <a href="https://family.disney.com/recipes/">recipes</a>, and <a href="https://family.disney.com/parties/">parties</a> to help create Disney memories for the whole family.</p><p><br></p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-17 */ -->
#ref-1-17:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-17">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.53%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_aa8d97ea.png?region=0,0,1536,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-18 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-18">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="http://fivethirtyeight.com/">FiveThirtyEight</a> </p><p>Visit Nate Silver’s FiveThirtyEight which uses statistical analysis to tell compelling stories about elections, politics, sports, science, economics and lifestyle.</p><p><br></p><p><a href="http://fivethirtyeight.com/politics/">Politics</a></p><p>Read expert political analysis from campaign fundraising to election day and beyond.</p><p><br></p><p><a href="http://fivethirtyeight.com/economics/">Economics</a> </p><p>FiveThirtyEight guides readers through a thicket of economic data, clarifying what politicians and policy wonks often make obscure.</p><p><br></p><p><a href="http://fivethirtyeight.com/sports/">Sports</a> </p><p>Visit FiveThirtyEight for a unique statistical approach to sports analysis covering MLB, NBA, NFL, and beyond.</p><p><br></p><p><a href="http://fivethirtyeight.com/science/">Science</a> </p><p>FiveThirtyEight analyzes the data behind those headline-grabbing science stories, separating the silly stories from the breakthroughs.</p><p><br></p><p><a href="http://fivethirtyeight.com/life/">Lifestyle</a> </p><p>FiveThirtyEight tells lifestyle stories you’ll want to share with your friends, from trends in online dating to analysis of which airline is most likely to land its planes on time.</p><p><br></p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-19 */ -->
#ref-1-19:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-19">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:20.0%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/desktop_2_d1d38dbb.png?region=0,0,1500,300" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-20 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-20">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="https://theundefeated.com/">The Undefeated</a></p><p>Visit The Undefeated to get news and commentary that explores the intersections of race, sports, culture and more.<br></p><p><br></p><p><a href="https://theundefeated.com/sports/">Sports: News and Commentary</a><br></p><p>Read The Undefeated for innovative reporting on the latest sports news — from athletes and games, to the tough discussions at the intersections of race and culture.<br></p><p><br></p><p><a href="https://theundefeated.com/culture/">Culture: Music, Fashion, Movies, TV, Entertainment</a><br></p><p>Read The Undefeated for thoughtful commentary on everything culture — from music to style and everything in between.<br></p><p><br></p><p><a href="https://theundefeated.com/hbcu/">Historically black college and university news</a><br></p><p>Read The Undefeated for reporting and commentary on historically black colleges and universities.<br></p><p><br></p><p><a href="https://theundefeated.com/the-uplift/">The Uplift: Good news, positive stories</a><br></p><p>Read The Undefeated for uplifting commentary, bringing the good news from around the nation and globe.<br></p><p><a href="https://theundefeated.com/features/the-stop-national-geographic-anquan-boldin-racial-profiling-of-drivers-leaves-legacy-of-anger/"><br></a></p><p><a href="https://theundefeated.com/features/childish-gambinos-this-is-america-video-is-a-beautiful-nightmare/">Childish Gambino’s ‘This is America’</a><br></p><p>Waking up from staying woke: Genius or not, Gambino’s frightening dreamlike opus is right on time<br></p><p><br></p></div>
</div>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_image module 1-21 */ -->
#ref-1-21:before{ text-align: right; }
</style>
<section class="module rich_image full-height full-width header-left content-span-full-screen primary-theme light " id="ref-1-21">
<div class="bound">
<div class="aspect background-image" style="padding-bottom:19.51%;">
<noscript><img src="https://lumiere-a.akamaihd.net/v1/images/marvel-logo-desktop-white-1440x281_ce5b20d9.png?region=0,0,1440,281" alt=""></noscript>
</div>
</div>
</section><style type="text/css">
<!-- /* rich_text module 1-22 */ -->
</style>
<section class="module rich_text header-left content-span-full-screen primary-theme light " id="ref-1-22">
<div class="bound">
<div class="rich-text-container">
<div class="rich_text_body rich-text-enabled">
<div class="rich-text-output"><p><a href="https://www.marvel.com">Marvel.com: The Official Site of Marvel Entertainment</a></p><p>Marvel.com is the official site of Marvel Entertainment! Browse official Marvel movies, characters, comics, TV shows, videos, & more.</p><p><br></p><p><a href="https://www.marvel.com/movies/spider-man-far-from-home/live-red-carpet-world-premiere">Spider-Man: Far From Home Release Date, Trailer, Cast, & More</a></p><p>In theaters July 2, 2019! Peter Parker's European vacation is halted when he agrees to help Nick Fury uncover the mystery of elemental creature attacks.</p><p><br></p><p><a href="https://www.marvel.com/movies/avengers-endgame">Avengers: Endgame Cast, Tickets, Trailer, & More</a><br></p><p>In theaters April 26, 2019! The Avengers take a final stand against Thanos in Marvel Studios' conclusion to twenty-two films, "Avengers: Endgame."</p><p><br></p><p><a href="https://www.marvel.com/games/marvel-s-avengers">Marvel’s Avengers Video Game (Release Date: May 15, 2020)</a></p><p>Marvel’s Avengers combines an original story with single-player or up to four player co-operative gameplay in the definitive Avengers gaming experience.</p><p><br></p><p><a href="https://www.marvel.com/comics/unlimited">Marvel Unlimited – Digital Comic Book Subscription Service</a></p><p>Unlock the Marvel universe, and enjoy instant access to over 25,000 digital comics with Marvel’s premier digital subscription service.</p><p><br></p><p><a href="https://www.marvel.com/movies">Marvel Movies & the Marvel Cinematic Universe (MCU)</a><br></p><p>Explore your favorite Marvel movies and films on the official site of Marvel Entertainment! Discover your favorite plots, characters, cast, & more!</p><p><br></p><p><a href="https://www.marvel.com/characters">Marvel Characters, Super Heroes, & Villains</a></p><p>Learn about your favorite Marvel characters, super heroes, & villains! Read about <a href="https://www.marvel.com/characters/spider-man-peter-parker">Spider-Man</a>, <a href="https://www.marvel.com/characters/iron-man-tony-stark">Iron Man</a>, <a href="https://www.marvel.com/characters/captain-marvel-carol-danvers">Captain Marvel</a>, <a href="https://www.marvel.com/characters/thanos">Thanos</a>, <a href="https://www.marvel.com/teams-and-groups/avengers">the Avengers</a> & more!</p><p><br></p><p><a href="https://www.marvel.com/tv-shows">Marvel TV Shows</a></p><p>Check out all of your favorite Marvel TV shows! Learn all about the cast, characters, plots, & episodes of your favorite shows!</p><p><br></p><p><a href="https://www.marvel.com/games">Marvel Games</a></p><p>Explore Marvel's collection of console, online, & mobile games! Check out Marvel’s <a href="https://www.marvel.com/games/marvel-s-spider-man">Spider-Man game</a>, for PlayStation 4.</p><p><br></p><p><a href="https://www.marvel.com/comics">Marvel Comics</a></p><p>Explore and purchase Marvel print and digital comics. Marvel.com is the official website to learn about all-things Marvel comics!</p></div>
</div>
</div>
</div>
</section>
</article>
<script type="text/javascript">this.Grill?Grill.burger={"title":"Go.com | The Walt Disney Company ","cto":{"country":"","contentDescription":"","contentType":"","property":"","propertyId":"","buId":"","buCode":"","region":"","intBreadcrumbs":"","categoryCode":"dfam","account":"gocom,matterhorn","brandSegment":"goc","cmsId":"MH","program":"","sponsor":"","siteCode":"goc","comscorekw":"","pageName":"homepage","breadcrumbs":"homepage","ctoSrcPath":"/stat/dolWebAnalytics.js"},"cds":0,"pda":false,"href":"http://go.com","stack":[{"view":"background_styles","ref":"0-1","type":"","count":0,"visibility":null,"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"active_theme":"primary","additional_style_classes":["primary-theme","light"]}},{"view":"hero_universal","ref":"1-0","type":"hero","count":1,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":["desktop","mobile"]},"title":null,"data":[{"id":"502cf1767cc35afec29b7a0f","slug":"go-homepage","entity_type":"hero","entity_config":{},"title":"Go Homepage","contentPosition":"right","largeLink":true,"editorialColor":"dark","heroSize":"standard","takeover_styles":{"pushdown_safety_color":"#edeef3","local_chrome_color":"dark","local_chrome_dark":true,"main_background_color":"#edeef3"},"image_assets":{"retina":{"wide_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20160811-19390-69zbfg_81fd312f.jpeg?region=0%2C0%2C1536%2C480","mobile_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20160811-19390-11g81jr_a9148fae.jpeg?region=0%2C0%2C640%2C320"},"non_retina":{"wide_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20160811-19390-aqm9ri_97bd2a91.jpeg?region=0%2C0%2C1024%2C320","mobile_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20160811-19390-11g81jr_a9148fae.jpeg?region=0%2C0%2C640%2C320"}},"hero":"https://lumiere-a.akamaihd.net/v1/images/open-uri20160811-19390-aqm9ri_97bd2a91.jpeg?region=0%2C0%2C1024%2C320","hero2x":"https://lumiere-a.akamaihd.net/v1/images/open-uri20160811-19390-69zbfg_81fd312f.jpeg?region=0%2C0%2C1536%2C480","hero_mobile":"https://lumiere-a.akamaihd.net/v1/images/open-uri20160811-19390-11g81jr_a9148fae.jpeg?region=0%2C0%2C640%2C320","featured_entity_translation":"Featured Content","cta_button_title":"See More","alt_text":"Go Homepage","type":"Hero"}],"slide_timer":"3","translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"header_text_alignment":"left","fullscreen_content":true,"image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_image","ref":"1-1","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":["desktop","mobile"]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/image_ab20438a.jpeg?region=0%2C0%2C1024%2C100","retina_url":null,"mobile_url":"https://lumiere-a.akamaihd.net/v1/images/image_2f062a75.jpeg?region=0%2C0%2C480%2C98","mobile_retina_url":null,"alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_ab20438a.jpeg?region=0,0,1024,100","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_ab20438a.jpeg","width":1024,"height":100,"aspect_ratio":0.0977,"aspect_ratio_pct":"9.77%","orientation":"landscape","half_width":512},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_2f062a75.jpeg?region=0,0,480,98","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_2f062a75.jpeg","width":480,"height":98,"aspect_ratio":0.2042,"aspect_ratio_pct":"20.42%","orientation":"landscape","half_width":240}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","no-border","content-span-full-screen","primary-theme","light"]}},{"view":"watch_playlist_2","ref":"1-2","type":"videoplaylist","count":1,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[{"video_list":[{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58df816f00c6cebd6b4f2a72","slug":"disney-s-the-lion-king-world-premiere-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Disney’s The Lion King World Premiere | Disney Style","duration":"2:48","duration_sec":168,"duration_iso":"T00H02M48S","description":"Description: Ad for Pandora. Join us as we interview the cast and crew of Disney’s The Lion King at the World Premiere of the much anticipated film, which opens nationwide on July 19.","analytics":"vid||||1_vl5h82ng|","adId":"1_vl5h82ng","analyticsId":"1_vl5h82ng","vType":"Advertising","adPattern":"C","externals":[{"_id":"5d30afe7ac75f700016db856","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_vl5h82ng/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"168","msDuration":"168000","durationType":null,"id":"1_vl5h82ng","name":"Disney’s The Lion King World Premiere | Disney Style","description":"Description: Ad for Pandora. Join us as we interview the cast and crew of Disney’s The Lion King at the World Premiere of the much anticipated film, which opens nationwide on July 19.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1563471561","updatedAt":1563474699,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_vl5h82ng/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Disney’s The Lion King World Premiere | Disney Style us-video, matterhorn-asset-import, kaltura-hosted Description: Ad for Pandora. Join us as we interview the cast and crew of Disney’s The Lion King at the World Premiere of the much anticipated film, which opens nationwide on July 19. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_vl5h82ng/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"f8e1b86ea98211e98b9267ee43d266a9","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_vl5h82ng","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58df816f00c6cebd6b4f2a72","thumbnail_updatedAt":"1563473754","PromoType":"Theatrical Release","VideoType":"Advertising","Distributor":"4d3a78879c47877bb55bd685","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"4b9060051ace550f422a8ba2,4b9060051aeb050f422a8ba2,4b9060051b1cf50f422a8ba2,4b9060051b37c50f422a8ba2,4d3a78879c47877bb55bd685,4f36211421947a3e622c7a77,5387cec0d87dec3019a2ef14,53fb404a4414785152c57f80,53fb4065ac90775d779c5793,53fb407f00a5430d5208dca2,548992fff1f082c5a4cc2cc9,548aa4281d5c0b885618c2a5,54f2cc2154ec3f9870d44cee,556f570436363481bb85c21e,556f58a15831a481bb85c21e,55770c0d5aca8d87af578f03,55770c21d3c66d87af578f03,561f3b9be1bcab5dbc536b4b,561f3b9c38d67b5dbc536b4b,56b0f048b281f59c7a2ffe2b,56e11bc0f888875c3d79268c,583da0eb9ce92c22351a0d86,583da163e51bfc22351a0d86,583ed11e98eb88042cbf2d29,58df620da3ef9a46d9678dee","Locales":"{\"locale\": \"en\", \"name\": null, \"description\": null},{\"locale\": \"en-US\", \"name\": null, \"description\": null}","Production":"548992fff1f082c5a4cc2cc9"},"data_id":"1_vl5h82ng","group":"us","source":"kaltura","id":"5d30afe7ac75f700016db856"},{"_id":"5d30afe7ac75f700016db857","account":"1.0","data":{},"data_id":"f8e1b86ea98211e98b9267ee43d266a9","group":null,"source":"house_number","id":"5d30afe7ac75f700016db857"}],"embedURL":"https://secure.disney.com/embed/58df816f00c6cebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4b9974109d9cbb84fc68753a","5487245af1da6d710a05657c"],"publishers":["4d3a78879c47877bb55bd685","4de0686c1592a3928b60f313","54895851f24feb885618c2a5"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"content_date":"2019-07-18T12:00:00-07:00","created_at":"2019-07-18T12:00:01-07:00","flavors":[{"bitrate":438,"format":"mp4","id":"5d30bb266a9e0300010246a7","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0_r06mj9jn/fileName/Disney___s_The_Lion_King_World_Premiere___Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0*~hmac=d0c24a02bdf42640066039bf1675b62cb58b799c0a915a288fe4af69a5580092"},{"bitrate":664,"format":"mp4","id":"5d30bb266a9e0300010246a9","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0_sj1grfti/fileName/Disney___s_The_Lion_King_World_Premiere___Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0*~hmac=d0c24a02bdf42640066039bf1675b62cb58b799c0a915a288fe4af69a5580092"},{"bitrate":829,"format":"mp4","id":"5d30bb266a9e0300010246aa","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0_9i627nyj/fileName/Disney___s_The_Lion_King_World_Premiere___Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0*~hmac=d0c24a02bdf42640066039bf1675b62cb58b799c0a915a288fe4af69a5580092"},{"bitrate":1322,"format":"mp4","id":"5d30bb266a9e0300010246ab","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0_ddb8uesz/fileName/Disney___s_The_Lion_King_World_Premiere___Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0*~hmac=d0c24a02bdf42640066039bf1675b62cb58b799c0a915a288fe4af69a5580092"},{"bitrate":2280,"format":"mp4","id":"5d30bb266a9e0300010246ac","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0_1g5pgdav/fileName/Disney___s_The_Lion_King_World_Premiere___Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0*~hmac=d0c24a02bdf42640066039bf1675b62cb58b799c0a915a288fe4af69a5580092"},{"bitrate":3560,"format":"mp4","id":"5d30bb266a9e0300010246ad","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0_xymu4tb5/fileName/Disney___s_The_Lion_King_World_Premiere___Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_vl5h82ng/v/2/pv/1/ev/7/flavorId/0*~hmac=d0c24a02bdf42640066039bf1675b62cb58b799c0a915a288fe4af69a5580092"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_vl5h82ng/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_mhej654w/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_51591a55.png?height=354\u0026region=0%2C0%2C1920%2C1080\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_51591a55.png?region=0,0,1920,1080\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_51591a55.png","publish_date":"July 18, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_51591a55.png?region=0,0,1920,1080","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_51591a55.png","width":1920,"height":1080,"aspect_ratio":0.5625,"aspect_ratio_pct":"56.25%","orientation":"landscape","half_width":960},"alt_text":"Disney’s The Lion King World Premiere | Disney Style","type":"Video","href":"https://video.disney.com/watch/disney-s-the-lion-king-world-premiere-disney-style-58df816f00c6cebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58c283dfe25c4ebd6b4f2a72","slug":"every-disney-thing-happening-this-summer-news-by-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Every Disney Thing Happening This Summer | News by Oh My Disney","duration":"1:02","duration_sec":62,"duration_iso":"T00H01M02S","description":"Summer is here and there's so much to look forward to from Disney. See every Disney thing happening this season.","analytics":"vid||||1_0u6izs1t|","adId":"1_0u6izs1t","analyticsId":"1_0u6izs1t","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5d12494de05f1300010c96fd","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_0u6izs1t/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"62","msDuration":"62000","durationType":null,"id":"1_0u6izs1t","name":"Every Disney Thing Happening This Summer | News by Oh My Disney","description":"Summer is here and there's so much to look forward to from Disney. See every Disney thing happening this season.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1561479350","updatedAt":1561479914,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_0u6izs1t/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Every Disney Thing Happening This Summer | News by Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted Summer is here and theres so much to look forward to from Disney. See every Disney thing happening this season. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_0u6izs1t/version/100041","accessControlId":"519772","startDate":"1561392000","endDate":null,"referenceId":"7f6eb228976411e9a44a5bfd5dd9b4d7","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_0u6izs1t","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58c283dfe25c4ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"4b906005cba6350f422a8ba2,5364631582d35eb77b849c41,4b9060051b37c50f422a8ba2,4b906004bc03d50f422a8ba2,582c90d8b9b56c22351a0d86,55cdee529a76637c8b8db00d,4b9060051b2ac50f422a8ba2,4b9060051ace550f422a8ba2,528274135d6a5fded34e0177,538290acf8dfcb06c7f34118,4b906004bbbf450f422a8ba2,58b9fca240b2bc66569c2da8,50f4bfd6308729244bdb08be,4b9060051aeb050f422a8ba2,55cdeead07a6e37c8b8db00d,54f2cc2154ec3f9870d44cee","Locales":"en,en-US","thumbnail_updatedAt":"1561479645"},"data_id":"1_0u6izs1t","group":"us","source":"kaltura","id":"5d12494de05f1300010c96fd"},{"_id":"5d12494de05f1300010c96fe","account":"1.0","data":{},"data_id":"7f6eb228976411e9a44a5bfd5dd9b4d7","group":null,"source":"house_number","id":"5d12494de05f1300010c96fe"}],"embedURL":"https://secure.disney.com/embed/58c283dfe25c4ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4b9974109d9cbb84fc68753a","4b997410be04bb84fc68753a","509cfaa1818fa01e1453a144"],"publishers":["4b91e204b476890a20669196","4de0686c1592a3928b60f313","5364631582d35eb77b849c41"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"start_date":"2019-06-24T09:00:00-07:00","content_date":"2019-06-25T09:28:17-07:00","created_at":"2019-06-25T09:28:17-07:00","flavors":[{"bitrate":464,"format":"mp4","id":"5d124b6af9d6ea0063d6214e","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1_hl2lgj46/fileName/Every_Disney_Thing_Happening_This_Summer___News_by_Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1*~hmac=cef8b771e619eab1b2f05ca2f1c19dc51877db06e6d857c18c36e9a797d48969"},{"bitrate":664,"format":"mp4","id":"5d124b6af9d6ea0063d62150","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1_lgz8vnz0/fileName/Every_Disney_Thing_Happening_This_Summer___News_by_Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1*~hmac=cef8b771e619eab1b2f05ca2f1c19dc51877db06e6d857c18c36e9a797d48969"},{"bitrate":910,"format":"mp4","id":"5d124b6af9d6ea0063d62151","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1_ktgmc6qv/fileName/Every_Disney_Thing_Happening_This_Summer___News_by_Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1*~hmac=cef8b771e619eab1b2f05ca2f1c19dc51877db06e6d857c18c36e9a797d48969"},{"bitrate":1479,"format":"mp4","id":"5d124b6af9d6ea0063d62152","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1_0w8dhn8g/fileName/Every_Disney_Thing_Happening_This_Summer___News_by_Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1*~hmac=cef8b771e619eab1b2f05ca2f1c19dc51877db06e6d857c18c36e9a797d48969"},{"bitrate":2474,"format":"mp4","id":"5d124b6af9d6ea0063d62153","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1_0g88n3tm/fileName/Every_Disney_Thing_Happening_This_Summer___News_by_Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1*~hmac=cef8b771e619eab1b2f05ca2f1c19dc51877db06e6d857c18c36e9a797d48969"},{"bitrate":3871,"format":"mp4","id":"5d124b6af9d6ea0063d62154","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1_keucdayy/fileName/Every_Disney_Thing_Happening_This_Summer___News_by_Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_0u6izs1t/v/1/pv/1/ev/7/flavorId/1*~hmac=cef8b771e619eab1b2f05ca2f1c19dc51877db06e6d857c18c36e9a797d48969"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_0u6izs1t/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_48d317bd.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_48d317bd.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_48d317bd.jpeg","publish_date":"June 25, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com","title":"Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_48d317bd.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_48d317bd.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Every Disney Thing Happening This Summer | News by Oh My Disney","type":"Video","href":"https://video.disney.com/watch/every-disney-thing-happening-this-summer-news-by-oh-my-disney-58c283dfe25c4ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58c166a7aeecdebd6b4f2a72","slug":"spider-man-far-from-home-cast-shares-their-experience-filming-abroad-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Spider-Man: Far From Home Cast Shares Their Experience Filming Abroad | Oh My Disney","duration":"1:55","duration_sec":115,"duration_iso":"T00H01M55S","description":"Ad for Spider-Man: Far From Home. The cast of Spider-Man: Far From Home share their favorite moments filming abroad.","analytics":"vid||||1_w95y1wj1|","adId":"1_w95y1wj1","analyticsId":"1_w95y1wj1","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5d111e3d59a4930001d00969","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_w95y1wj1/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"115","msDuration":"115000","durationType":null,"id":"1_w95y1wj1","name":"Spider-Man: Far From Home Cast Shares Their Experience Filming Abroad | Oh My Disney","description":"Ad for Spider-Man: Far From Home. The cast of Spider-Man: Far From Home share their favorite moments filming abroad.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1561402787","updatedAt":1561403505,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_w95y1wj1/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Spider-Man: Far From Home Cast Shares Their Experience Filming Abroad | Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted Ad for Spider-Man: Far From Home. The cast of Spider-Man: Far From Home share their favorite moments filming abroad. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_w95y1wj1/version/100062","accessControlId":"519772","startDate":"1561402800","endDate":null,"referenceId":"3c4e8d9996b211e99ab7358c67b94523","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_w95y1wj1","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58c166a7aeecdebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"4b906005cba6350f422a8ba2,53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,56d0c08c1f9a954ff02997de,5364631582d35eb77b849c41,4bea21f435941569cf1f4715,556f59a69d409481bb85c21e,55cdee529a76637c8b8db00d,53dfec1c08ee3407425dcf8d,55cdef0e7fa2f37c8b8db00d,53fb404a4414785152c57f80,58a9c2a73aba2c9f8debe54f,55770c34c0505d87af578f03,4dee663d1f97ca226e63be24,4bdffde60b9270a748a24bca","Locales":"en,en-US","thumbnail_updatedAt":"1561403505"},"data_id":"1_w95y1wj1","group":"us","source":"kaltura","id":"5d111e3d59a4930001d00969"},{"_id":"5d111e3d59a4930001d0096a","account":"1.0","data":{},"data_id":"3c4e8d9996b211e99ab7358c67b94523","group":null,"source":"house_number","id":"5d111e3d59a4930001d0096a"}],"embedURL":"https://secure.disney.com/embed/58c166a7aeecdebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364631582d35eb77b849c41"],"networks":["548877d7c3cfc576b88c66c6"]},"start_date":"2019-06-24T12:00:00-07:00","content_date":"2019-06-24T12:13:30-07:00","created_at":"2019-06-24T12:13:30-07:00","flavors":[{"bitrate":464,"format":"mp4","id":"5d112096e40b4c005d5bdba5","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1_x8g67ncs/fileName/Spider-Man:_Far_From_Home_Cast_Shares_Their_Experience_Filming_Abroad___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1*~hmac=5a9dc87dabf29e8c60d59ce9495c5f5f7014411ccf4e95d9f7f4d6058dea720d"},{"bitrate":664,"format":"mp4","id":"5d112096e40b4c005d5bdba8","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1_0hcuh3ej/fileName/Spider-Man:_Far_From_Home_Cast_Shares_Their_Experience_Filming_Abroad___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1*~hmac=5a9dc87dabf29e8c60d59ce9495c5f5f7014411ccf4e95d9f7f4d6058dea720d"},{"bitrate":921,"format":"mp4","id":"5d112096e40b4c005d5bdba9","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1_wlcmqdae/fileName/Spider-Man:_Far_From_Home_Cast_Shares_Their_Experience_Filming_Abroad___Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1*~hmac=5a9dc87dabf29e8c60d59ce9495c5f5f7014411ccf4e95d9f7f4d6058dea720d"},{"bitrate":1474,"format":"mp4","id":"5d112096e40b4c005d5bdbaa","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1_482t14oe/fileName/Spider-Man:_Far_From_Home_Cast_Shares_Their_Experience_Filming_Abroad___Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1*~hmac=5a9dc87dabf29e8c60d59ce9495c5f5f7014411ccf4e95d9f7f4d6058dea720d"},{"bitrate":2483,"format":"mp4","id":"5d112096e40b4c005d5bdbab","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1_hkma6hpo/fileName/Spider-Man:_Far_From_Home_Cast_Shares_Their_Experience_Filming_Abroad___Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1*~hmac=5a9dc87dabf29e8c60d59ce9495c5f5f7014411ccf4e95d9f7f4d6058dea720d"},{"bitrate":3923,"format":"mp4","id":"5d112096e40b4c005d5bdbac","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1_p0np1g0i/fileName/Spider-Man:_Far_From_Home_Cast_Shares_Their_Experience_Filming_Abroad___Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_w95y1wj1/v/1/pv/1/ev/7/flavorId/1*~hmac=5a9dc87dabf29e8c60d59ce9495c5f5f7014411ccf4e95d9f7f4d6058dea720d"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_w95y1wj1/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_70afmo13/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_88c94537.jpeg?height=354\u0026region=0%2C0%2C1920%2C1080\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_88c94537.jpeg?region=0,0,1920,1080\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_88c94537.jpeg","publish_date":"June 24, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com","title":"Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_88c94537.jpeg?region=0,0,1920,1080","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_88c94537.jpeg","width":1920,"height":1080,"aspect_ratio":0.5625,"aspect_ratio_pct":"56.25%","orientation":"landscape","half_width":960},"alt_text":"Spider-Man: Far From Home Cast Shares Their Experience Filming Abroad | Oh My Disney","type":"Video","href":"https://video.disney.com/watch/spider-man-far-from-home-cast-shares-their-experience-filming-abroad-oh-my-disney-58c166a7aeecdebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58bdce22169a7ebd6b4f2a72","slug":"fans-compare-their-college-experience-to-monsters-university-reactions-by-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Fans Compare Their College Experience to Monsters University | Reactions by Oh My Disney","duration":"3:06","duration_sec":186,"duration_iso":"T00H03M06S","description":"Recent college grads compare their college experiences to Monsters University.","analytics":"vid||||1_b1kjo9je|","adId":"1_b1kjo9je","analyticsId":"1_b1kjo9je","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5d0d598c540da60001f36f2f","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_b1kjo9je/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"5374","views":"17669","lastPlayedAt":"1561345200","width":"1920","height":"1080","duration":"186","msDuration":"186000","durationType":null,"id":"1_b1kjo9je","name":"Fans Compare Their College Experience to Monsters University | Reactions by Oh My Disney","description":"Recent college grads compare their college experiences to Monsters University.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1561155686","updatedAt":1561401240,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_b1kjo9je/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Fans Compare Their College Experience to Monsters University | Reactions by Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted Recent college grads compare their college experiences to Monsters University. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_b1kjo9je/version/100051","accessControlId":"519772","startDate":"1561132800","endDate":null,"referenceId":"e8cf5907947211e98a98751d476d8fdd","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_b1kjo9je","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58bdce22169a7ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,4b906004bad7c50f422a8ba2,55cdee529a76637c8b8db00d,4ba34c4ed81d359e961b9666,4e33d9d5b70aeb6dc5158eab,53fb404a4414785152c57f80,58b283bc387f255cfac0cdad,56d0c027920b654ff02997de,55cdef03535dc37c8b8db00d,55770c34c0505d87af578f03,517b8690da91ac7276afe92e","Locales":"en,en-US","thumbnail_updatedAt":"1561401240"},"data_id":"1_b1kjo9je","group":"us","source":"kaltura","id":"5d0d598c540da60001f36f2f"},{"_id":"5d0d598c540da60001f36f30","account":"1.0","data":{},"data_id":"e8cf5907947211e98a98751d476d8fdd","group":null,"source":"house_number","id":"5d0d598c540da60001f36f30"}],"embedURL":"https://secure.disney.com/embed/58bdce22169a7ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364631582d35eb77b849c41"],"networks":null},"start_date":"2019-06-21T09:00:00-07:00","content_date":"2019-06-21T15:33:00-07:00","created_at":"2019-06-21T15:33:01-07:00","flavors":[{"bitrate":466,"format":"mp4","id":"5d1117d0dce2a500649d4ce9","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0_d27w59ag/fileName/Fans_Compare_Their_College_Experience_to_Monsters_University___Reactions_by_Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0*~hmac=7bdc80a06df7c0433d3f9c31df33759c269c19cbbbaca7b5d83f3c83a9199b79"},{"bitrate":667,"format":"mp4","id":"5d1117d0dce2a500649d4ceb","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0_gkss619b/fileName/Fans_Compare_Their_College_Experience_to_Monsters_University___Reactions_by_Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0*~hmac=7bdc80a06df7c0433d3f9c31df33759c269c19cbbbaca7b5d83f3c83a9199b79"},{"bitrate":916,"format":"mp4","id":"5d1117d0dce2a500649d4cec","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0_tzv8l8yi/fileName/Fans_Compare_Their_College_Experience_to_Monsters_University___Reactions_by_Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0*~hmac=7bdc80a06df7c0433d3f9c31df33759c269c19cbbbaca7b5d83f3c83a9199b79"},{"bitrate":1437,"format":"mp4","id":"5d1117d0dce2a500649d4ced","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0_2n8049tj/fileName/Fans_Compare_Their_College_Experience_to_Monsters_University___Reactions_by_Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0*~hmac=7bdc80a06df7c0433d3f9c31df33759c269c19cbbbaca7b5d83f3c83a9199b79"},{"bitrate":2628,"format":"mp4","id":"5d1117d0dce2a500649d4cee","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0_x3dy05z8/fileName/Fans_Compare_Their_College_Experience_to_Monsters_University___Reactions_by_Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0*~hmac=7bdc80a06df7c0433d3f9c31df33759c269c19cbbbaca7b5d83f3c83a9199b79"},{"bitrate":4128,"format":"mp4","id":"5d1117d0dce2a500649d4cef","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0_ieb1l83v/fileName/Fans_Compare_Their_College_Experience_to_Monsters_University___Reactions_by_Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b1kjo9je/v/2/pv/1/ev/7/flavorId/0*~hmac=7bdc80a06df7c0433d3f9c31df33759c269c19cbbbaca7b5d83f3c83a9199b79"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_b1kjo9je/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_a8027001.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_a8027001.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_a8027001.jpeg","publish_date":"June 21, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com","title":"Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_a8027001.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_a8027001.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Fans Compare Their College Experience to Monsters University | Reactions by Oh My Disney","type":"Video","href":"https://video.disney.com/watch/fans-compare-their-college-experience-to-monsters-university-reactions-by-oh-my-disney-58bdce22169a7ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58b8b717a6bb8ebd6b4f2a72","slug":"keegan-michael-key-puts-his-own-spin-on-toy-story-quotes-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Keegan Michael Key Puts His Own Spin on Toy Story Quotes | Oh My Disney","duration":"0:57","duration_sec":57,"duration_iso":"T00H00M57S","description":"We asked Keegan Michael Key, who plays Ducky in Toy Story 4, to re-write some of the famous quotes from Toy Story, and the results are hilarious. Go see Toy Story 4, in theaters June 21.","analytics":"vid||||1_zuuua19t|","adId":"1_zuuua19t","analyticsId":"1_zuuua19t","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5d0802e87a38f0000155922b","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_zuuua19t/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"58","msDuration":"57646","durationType":null,"id":"1_zuuua19t","name":"Keegan Michael Key Puts His Own Spin on Toy Story Quotes | Oh My Disney","description":"We asked Keegan Michael Key, who plays Ducky in Toy Story 4, to re-write some of the famous quotes from Toy Story, and the results are hilarious. Go see Toy Story 4, in theaters June 21.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1560805904","updatedAt":1560806354,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_zuuua19t/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Keegan Michael Key Puts His Own Spin on Toy Story Quotes | Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted We asked Keegan Michael Key, who plays Ducky in Toy Story 4, to re-write some of the famous quotes from Toy Story, and the results are hilarious. Go see Toy Story 4, in theaters June 21. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_zuuua19t/version/100052","accessControlId":"519772","startDate":"1560841200","endDate":null,"referenceId":"82497100914411e9a5a889948262d5b2","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_zuuua19t","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58b8b717a6bb8ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"5639fa0c8b03d4af3f2add21,56b0f048b281f59c7a2ffe2b,528274135d6a5fded34e0177","Locales":"en,en-US","thumbnail_updatedAt":"1560806354"},"data_id":"1_zuuua19t","group":"us","source":"kaltura","id":"5d0802e87a38f0000155922b"},{"_id":"5d0802e87a38f0000155922c","account":"1.0","data":{},"data_id":"82497100914411e9a5a889948262d5b2","group":null,"source":"house_number","id":"5d0802e87a38f0000155922c"}],"embedURL":"https://secure.disney.com/embed/58b8b717a6bb8ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4b997410be04bb84fc68753a"],"publishers":["4b91e204b476890a20669196","5364631582d35eb77b849c41"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"start_date":"2019-06-18T00:00:00-07:00","content_date":"2019-06-18T09:00:01-07:00","created_at":"2019-06-18T09:00:01-07:00","flavors":[{"bitrate":470,"format":"mp4","id":"5d080503dce2a5cd5d901837","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1_27dovhq7/fileName/Keegan_Michael_Key_Puts_His_Own_Spin_on_Toy_Story_Quotes___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1*~hmac=374c1a058ec263275ca3bfb465df93f09498fbb85e1f19420162cbfcbf816859"},{"bitrate":669,"format":"mp4","id":"5d080503dce2a5cd5d901839","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1_aneoovwp/fileName/Keegan_Michael_Key_Puts_His_Own_Spin_on_Toy_Story_Quotes___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1*~hmac=374c1a058ec263275ca3bfb465df93f09498fbb85e1f19420162cbfcbf816859"},{"bitrate":964,"format":"mp4","id":"5d080503dce2a5cd5d90183a","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1_pc4qonb1/fileName/Keegan_Michael_Key_Puts_His_Own_Spin_on_Toy_Story_Quotes___Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1*~hmac=374c1a058ec263275ca3bfb465df93f09498fbb85e1f19420162cbfcbf816859"},{"bitrate":1492,"format":"mp4","id":"5d080503dce2a5cd5d90183b","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1_1hr3yozu/fileName/Keegan_Michael_Key_Puts_His_Own_Spin_on_Toy_Story_Quotes___Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1*~hmac=374c1a058ec263275ca3bfb465df93f09498fbb85e1f19420162cbfcbf816859"},{"bitrate":2628,"format":"mp4","id":"5d080503dce2a5cd5d90183c","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1_991n0102/fileName/Keegan_Michael_Key_Puts_His_Own_Spin_on_Toy_Story_Quotes___Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1*~hmac=374c1a058ec263275ca3bfb465df93f09498fbb85e1f19420162cbfcbf816859"},{"bitrate":3898,"format":"mp4","id":"5d080503dce2a5cd5d90183d","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1_n4jdum6p/fileName/Keegan_Michael_Key_Puts_His_Own_Spin_on_Toy_Story_Quotes___Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_zuuua19t/v/1/pv/1/ev/7/flavorId/1*~hmac=374c1a058ec263275ca3bfb465df93f09498fbb85e1f19420162cbfcbf816859"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_zuuua19t/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_1d082aac.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_1d082aac.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_1d082aac.jpeg","publish_date":"June 18, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com","title":"Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_1d082aac.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_1d082aac.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Keegan Michael Key Puts His Own Spin on Toy Story Quotes | Oh My Disney","type":"Video","href":"https://video.disney.com/watch/keegan-michael-key-puts-his-own-spin-on-toy-story-quotes-oh-my-disney-58b8b717a6bb8ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58b51281f0009ebd6b4f2a72","slug":"star-wars-tackle-box-disney-diy-by-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Star Wars Tackle Box | Disney DIY by Disney Family","duration":"2:03","duration_sec":123,"duration_iso":"T00H02M03S","description":"Get the whole family excited for your next fishing trip with this Star Wars tackle box project. Learn to make it at family.disney.com \r\n\r\nTo plan your next fishing and boating adventure, visit takemefishing.org/firstcatch","analytics":"vid||||1_5lr93ntp|","adId":"1_5lr93ntp","analyticsId":"1_5lr93ntp","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5d04311759a4930001761e93","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_5lr93ntp/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"123","msDuration":"123000","durationType":null,"id":"1_5lr93ntp","name":"Star Wars Tackle Box | Disney DIY by Disney Family","description":"Get the whole family excited for your next fishing trip with this Star Wars tackle box project. Learn to make it at family.disney.com \n\nTo plan your next fishing and boating adventure, visit takemefishing.org/firstcatch","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1560555565","updatedAt":1560556112,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_5lr93ntp/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Star Wars Tackle Box | Disney DIY by Disney Family us-video, matterhorn-asset-import, kaltura-hosted Get the whole family excited for your next fishing trip with this Star Wars tackle box project. Learn to make it at family.disney.com To plan your next fishing and boating adventure, visit takemefishing.org/firstcatch ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_5lr93ntp/version/100052","accessControlId":"519772","startDate":"1560614400","endDate":null,"referenceId":"a4b73c918efd11e999bdb3db7ffac602","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_5lr93ntp","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58b51281f0009ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"52bcf1f27c8fc867c947de89,58996dfb2d7b8f4261e27365,556f5957519d4481bb85c21e,55cdeef7176df37c8b8db00d,53fb40359630d30d5208dca2,53fb401bd038385152c57f80","Locales":"en,en-US","thumbnail_updatedAt":"1560556112"},"data_id":"1_5lr93ntp","group":"us","source":"kaltura","id":"5d04311759a4930001761e93"},{"_id":"5d04311759a4930001761e94","account":"1.0","data":{},"data_id":"a4b73c918efd11e999bdb3db7ffac602","group":null,"source":"house_number","id":"5d04311759a4930001761e94"}],"embedURL":"https://secure.disney.com/embed/58b51281f0009ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4cd590b302f009592fc489de"],"publishers":["4cd593a8a99bed3121848c0f","5364634694e2a5c8a5c3cff7"],"networks":["4cd5910c91af5b4093fbacd1","548877d7c3cfc576b88c66c6"]},"start_date":"2019-06-15T09:00:00-07:00","content_date":"2019-06-15T09:00:01-07:00","created_at":"2019-06-15T09:00:01-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5d043260e40b4c0063532355","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1_15vb35nq/fileName/Star_Wars_Tackle_Box___Disney_DIY_by_Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1*~hmac=e38ab1841ff3460707c19bee3412c141159e4db639a092cd2e0592fe3ecf23fb"},{"bitrate":664,"format":"mp4","id":"5d043260e40b4c0063532357","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1_52hzllsj/fileName/Star_Wars_Tackle_Box___Disney_DIY_by_Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1*~hmac=e38ab1841ff3460707c19bee3412c141159e4db639a092cd2e0592fe3ecf23fb"},{"bitrate":891,"format":"mp4","id":"5d043260e40b4c0063532358","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1_gfazbn9r/fileName/Star_Wars_Tackle_Box___Disney_DIY_by_Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1*~hmac=e38ab1841ff3460707c19bee3412c141159e4db639a092cd2e0592fe3ecf23fb"},{"bitrate":1390,"format":"mp4","id":"5d043260e40b4c0063532359","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1_q2jwr0sh/fileName/Star_Wars_Tackle_Box___Disney_DIY_by_Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1*~hmac=e38ab1841ff3460707c19bee3412c141159e4db639a092cd2e0592fe3ecf23fb"},{"bitrate":2439,"format":"mp4","id":"5d043260e40b4c006353235a","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1_2uo4ncup/fileName/Star_Wars_Tackle_Box___Disney_DIY_by_Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1*~hmac=e38ab1841ff3460707c19bee3412c141159e4db639a092cd2e0592fe3ecf23fb"},{"bitrate":3834,"format":"mp4","id":"5d043260e40b4c006353235b","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1_6cqsyqql/fileName/Star_Wars_Tackle_Box___Disney_DIY_by_Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5lr93ntp/v/1/pv/1/ev/7/flavorId/1*~hmac=e38ab1841ff3460707c19bee3412c141159e4db639a092cd2e0592fe3ecf23fb"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_5lr93ntp/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_b9e6a2b1.jpeg?height=354\u0026region=0%2C0%2C1920%2C1080\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_b9e6a2b1.jpeg?region=0,0,1920,1080\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_b9e6a2b1.jpeg","publish_date":"June 15, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_b9e6a2b1.jpeg?region=0,0,1920,1080","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_b9e6a2b1.jpeg","width":1920,"height":1080,"aspect_ratio":0.5625,"aspect_ratio_pct":"56.25%","orientation":"landscape","half_width":960},"alt_text":"Star Wars Tackle Box | Disney DIY by Disney Family","type":"Video","href":"https://video.disney.com/watch/star-wars-tackle-box-disney-diy-by-disney-family-58b51281f0009ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58b382fa2b557ebd6b4f2a72","slug":"hercules-brush-lettering-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Hercules Brush Lettering | Disney Family","duration":"1:14","duration_sec":74,"duration_iso":"T00H01M14S","description":"Go the distance with this brush lettering by Amy Tan (@amytangerine) inspired by Hercules.","analytics":"vid||||1_7v6lvu7u|","adId":"1_7v6lvu7u","analyticsId":"1_7v6lvu7u","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5d028e09e05f13000105bfbf","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_7v6lvu7u/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"74","msDuration":"74000","durationType":null,"id":"1_7v6lvu7u","name":"Hercules Brush Lettering | Disney Family","description":"Go the distance with this brush lettering by Amy Tan (@amytangerine) inspired by Hercules.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1560448317","updatedAt":1560450614,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_7v6lvu7u/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Hercules Brush Lettering | Disney Family us-video, matterhorn-asset-import, kaltura-hosted Go the distance with this brush lettering by Amy Tan (@amytangerine) inspired by Hercules. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_7v6lvu7u/version/100051","accessControlId":"519772","startDate":"1560441600","endDate":null,"referenceId":"efdc512e8e0311e9a2e869400f185511","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_7v6lvu7u","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58b382fa2b557ebd6b4f2a72","PromoType":"Non-Branded","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"556f5957519d4481bb85c21e,5364634694e2a5c8a5c3cff7,58a9c2b48c291c9f8debe54f,55cdeeb98340637c8b8db00d,4ba34c3b8baaf59e961b9666","Locales":"en,en-US","thumbnail_updatedAt":"1560450392"},"data_id":"1_7v6lvu7u","group":"us","source":"kaltura","id":"5d028e09e05f13000105bfbf"},{"_id":"5d028e09e05f13000105bfc0","account":"1.0","data":{},"data_id":"efdc512e8e0311e9a2e869400f185511","group":null,"source":"house_number","id":"5d028e09e05f13000105bfc0"}],"embedURL":"https://secure.disney.com/embed/58b382fa2b557ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":null},"start_date":"2019-06-13T09:00:00-07:00","content_date":"2019-06-13T11:28:00-07:00","created_at":"2019-06-13T11:28:18-07:00","flavors":[{"bitrate":464,"format":"mp4","id":"5d029676e05f1300010a4503","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1_ssjulgjv/fileName/Hercules_Brush_Lettering___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1*~hmac=f8d6b14de9cefc68683296ec55c7080a537f15217a7a6354da730670ad1c3daf"},{"bitrate":664,"format":"mp4","id":"5d029676e05f1300010a4505","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1_36z1wpij/fileName/Hercules_Brush_Lettering___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1*~hmac=f8d6b14de9cefc68683296ec55c7080a537f15217a7a6354da730670ad1c3daf"},{"bitrate":815,"format":"mp4","id":"5d029676e05f1300010a4506","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1_rzqtrqb4/fileName/Hercules_Brush_Lettering___Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1*~hmac=f8d6b14de9cefc68683296ec55c7080a537f15217a7a6354da730670ad1c3daf"},{"bitrate":1203,"format":"mp4","id":"5d029676e05f1300010a4507","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1_3x2sj4pc/fileName/Hercules_Brush_Lettering___Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1*~hmac=f8d6b14de9cefc68683296ec55c7080a537f15217a7a6354da730670ad1c3daf"},{"bitrate":2768,"format":"mp4","id":"5d029676e05f1300010a4508","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1_xnkq02h9/fileName/Hercules_Brush_Lettering___Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_7v6lvu7u/v/1/pv/1/ev/6/flavorId/1*~hmac=f8d6b14de9cefc68683296ec55c7080a537f15217a7a6354da730670ad1c3daf"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_7v6lvu7u/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_56c0549f.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_56c0549f.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_56c0549f.jpeg","publish_date":"June 13, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_56c0549f.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_56c0549f.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Hercules Brush Lettering | Disney Family","type":"Video","href":"https://video.disney.com/watch/hercules-brush-lettering-disney-family-58b382fa2b557ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58a33728320e7ebd6b4f2a72","slug":"moana-sit-upon-disney-diy-by-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Moana Sit-Upon | Disney DIY by Disney Family","duration":"2:22","duration_sec":142,"duration_iso":"T00H02M22S","description":"Paid Partnership with Take Me Fishing\u2028 \r\nGet the whole family ready to sit and observe nature with a DIY sit-upon inspired by Moana. Learn to make them at family.disney.com\u2028 \r\nTo plan your next fishing and boating adventure, visit takemefishing.org/firstcatch","analytics":"vid||||0_oc47b43p|","adId":"0_oc47b43p","analyticsId":"0_oc47b43p","vType":"Recurring Segment","adPattern":"ACC","externals":[{"_id":"5cf177cd43a40c00019f67d3","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_oc47b43p/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"20666","views":"432631","lastPlayedAt":"1559703600","width":"1920","height":"1080","duration":"142","msDuration":"142000","durationType":null,"id":"0_oc47b43p","name":"Moana Sit-Upon | Disney DIY by Disney Family","description":"Paid Partnership with Take Me Fishing\nGet the whole family ready to sit and observe nature with a DIY sit-upon inspired by Moana. Learn to make them at family.disney.com\nTo plan your next fishing and boating adventure, visit takemefishing.org/firstcatch","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1559328453","updatedAt":1559760341,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_oc47b43p/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Moana Sit-Upon | Disney DIY by Disney Family us-video, matterhorn-asset-import, kaltura-hosted Paid Partnership with Take Me FishingGet the whole family ready to sit and observe nature with a DIY sit-upon inspired by Moana. Learn to make them at family.disney.comTo plan your next fishing and boating adventure, visit takemefishing.org/firstcatch ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_oc47b43p/version/100021","accessControlId":"519772","startDate":"1559286000","endDate":null,"referenceId":"8ca0857883d411e9b493f1b8a3f31a4c","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_oc47b43p","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58a33728320e7ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"4f37ea1d4e23fb4d5dcba540,58996e0b0136ff4261e27365,535454df1ce98c39b91ef7bb,5364634694e2a5c8a5c3cff7,556f5957519d4481bb85c21e,55cdeef7176df37c8b8db00d","Locales":"en,en-US","thumbnail_updatedAt":"1559328763"},"data_id":"0_oc47b43p","group":"us","source":"kaltura","id":"5cf177cd43a40c00019f67d3"},{"_id":"5cf177cd43a40c00019f67d4","account":"1.0","data":{},"data_id":"8ca0857883d411e9b493f1b8a3f31a4c","group":null,"source":"house_number","id":"5cf177cd43a40c00019f67d4"}],"embedURL":"https://secure.disney.com/embed/58a33728320e7ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":null},"start_date":"2019-05-31T00:00:00-07:00","content_date":"2019-05-31T11:57:01-07:00","created_at":"2019-05-31T11:57:02-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5cf178b04aaf1f005bb0b56e","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1_sv1l48t7/fileName/Moana_Sit-Upon___Disney_DIY_by_Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1*~hmac=bcb16af4b39c89ae51b21d3e5e83f0ca3e5c4fc658113bc1905aa55d09314914"},{"bitrate":664,"format":"mp4","id":"5cf178b04aaf1f005bb0b570","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1_61725fbn/fileName/Moana_Sit-Upon___Disney_DIY_by_Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1*~hmac=bcb16af4b39c89ae51b21d3e5e83f0ca3e5c4fc658113bc1905aa55d09314914"},{"bitrate":915,"format":"mp4","id":"5cf178b04aaf1f005bb0b571","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1_8wwwi8v7/fileName/Moana_Sit-Upon___Disney_DIY_by_Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1*~hmac=bcb16af4b39c89ae51b21d3e5e83f0ca3e5c4fc658113bc1905aa55d09314914"},{"bitrate":1406,"format":"mp4","id":"5cf178b04aaf1f005bb0b572","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1_t9ssf6um/fileName/Moana_Sit-Upon___Disney_DIY_by_Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1*~hmac=bcb16af4b39c89ae51b21d3e5e83f0ca3e5c4fc658113bc1905aa55d09314914"},{"bitrate":2628,"format":"mp4","id":"5cf178b04aaf1f005bb0b573","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1_vi7d7f1o/fileName/Moana_Sit-Upon___Disney_DIY_by_Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1*~hmac=bcb16af4b39c89ae51b21d3e5e83f0ca3e5c4fc658113bc1905aa55d09314914"},{"bitrate":3931,"format":"mp4","id":"5cf178b04aaf1f005bb0b574","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1_x2sr0kyn/fileName/Moana_Sit-Upon___Disney_DIY_by_Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_oc47b43p/v/1/pv/1/ev/7/flavorId/1*~hmac=bcb16af4b39c89ae51b21d3e5e83f0ca3e5c4fc658113bc1905aa55d09314914"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_oc47b43p/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_9a4222e1.jpeg?height=354\u0026region=0%2C0%2C1920%2C1080\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_9a4222e1.jpeg?region=0,0,1920,1080\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_9a4222e1.jpeg","publish_date":"May 31, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_9a4222e1.jpeg?region=0,0,1920,1080","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_9a4222e1.jpeg","width":1920,"height":1080,"aspect_ratio":0.5625,"aspect_ratio_pct":"56.25%","orientation":"landscape","half_width":960},"alt_text":"Moana Sit-Upon | Disney DIY by Disney Family","type":"Video","href":"https://video.disney.com/watch/moana-sit-upon-disney-diy-by-disney-family-58a33728320e7ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58a0c3e7bb1a6ebd6b4f2a72","slug":"disney-fans-react-to-the-first-12-minutes-of-up-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Disney Fans React to the First 12 Minutes of Up | Oh My Disney","duration":"3:16","duration_sec":196,"duration_iso":"T00H03M16S","description":"How far do you get into the first 12 minutes of Disney and Pixar's Up without tearing up?","analytics":"vid||||1_mbifvsya|","adId":"1_mbifvsya","analyticsId":"1_mbifvsya","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5ceee6758e69000001720215","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_mbifvsya/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"196","msDuration":"196000","durationType":null,"id":"1_mbifvsya","name":"Disney Fans React to the First 12 Minutes of Up | Oh My Disney","description":"How far do you get into the first 12 minutes of Disney and Pixar's Up without tearing up?","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1559160076","updatedAt":1559161081,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_mbifvsya/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Disney Fans React to the First 12 Minutes of Up | Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted How far do you get into the first 12 minutes of Disney and Pixars Up without tearing up? ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_mbifvsya/version/100071","accessControlId":"519772","startDate":"1559113200","endDate":null,"referenceId":"8455bd21824c11e995a5816e869abd91","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_mbifvsya","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58a0c3e7bb1a6ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"4b9060054c42e50f422a8ba2,53fb4065ac90775d779c5793,58968306dfa84f4261e27365,5364631582d35eb77b849c41,55cdee529a76637c8b8db00d,517904266d0a431bbbf010a2,53fb404a4414785152c57f80,56d0c027920b654ff02997de,4b90600519dfb50f422a8ba2,53fb407f00a5430d5208dca2","Locales":"en,en-US","HouseId":"LTD108","thumbnail_updatedAt":"1559161066"},"data_id":"1_mbifvsya","group":"us","source":"kaltura","id":"5ceee6758e69000001720215"},{"_id":"5ceee6758e69000001720216","account":"1.0","data":{},"data_id":"8455bd21824c11e995a5816e869abd91","group":null,"source":"house_number","id":"5ceee6758e69000001720216"}],"embedURL":"https://secure.disney.com/embed/58a0c3e7bb1a6ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4b997410e8f89b84fc68753a"],"publishers":["4b91e204b476890a20669196","5364631582d35eb77b849c41"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"start_date":"2019-05-29T00:00:00-07:00","content_date":"2019-05-29T13:19:49-07:00","created_at":"2019-05-29T13:19:50-07:00","flavors":[{"bitrate":466,"format":"mp4","id":"5ceee9302aa3390065aa05d2","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1_xy9skqln/fileName/Disney_Fans_React_to_the_First_12_Minutes_of_Up___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1*~hmac=f674d8f18e28cfc4b95d9790f9a1b1a4efc2f2c8dc1a1bb974e1650363e25ca0"},{"bitrate":667,"format":"mp4","id":"5ceee9312aa3390065aa05d5","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1_szv88wbq/fileName/Disney_Fans_React_to_the_First_12_Minutes_of_Up___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1*~hmac=f674d8f18e28cfc4b95d9790f9a1b1a4efc2f2c8dc1a1bb974e1650363e25ca0"},{"bitrate":918,"format":"mp4","id":"5ceee9312aa3390065aa05d6","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1_yi6dps7p/fileName/Disney_Fans_React_to_the_First_12_Minutes_of_Up___Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1*~hmac=f674d8f18e28cfc4b95d9790f9a1b1a4efc2f2c8dc1a1bb974e1650363e25ca0"},{"bitrate":1424,"format":"mp4","id":"5ceee9312aa3390065aa05d7","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1_1umd9hnh/fileName/Disney_Fans_React_to_the_First_12_Minutes_of_Up___Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1*~hmac=f674d8f18e28cfc4b95d9790f9a1b1a4efc2f2c8dc1a1bb974e1650363e25ca0"},{"bitrate":2628,"format":"mp4","id":"5ceee9312aa3390065aa05d8","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1_2hdrvsdc/fileName/Disney_Fans_React_to_the_First_12_Minutes_of_Up___Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1*~hmac=f674d8f18e28cfc4b95d9790f9a1b1a4efc2f2c8dc1a1bb974e1650363e25ca0"},{"bitrate":4128,"format":"mp4","id":"5ceee9312aa3390065aa05d9","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1_e6pv94sk/fileName/Disney_Fans_React_to_the_First_12_Minutes_of_Up___Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_mbifvsya/v/1/pv/1/ev/7/flavorId/1*~hmac=f674d8f18e28cfc4b95d9790f9a1b1a4efc2f2c8dc1a1bb974e1650363e25ca0"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_mbifvsya/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_yk35ffxk/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_e5bb2373.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_e5bb2373.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_e5bb2373.jpeg","publish_date":"May 29, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com","title":"Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_e5bb2373.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_e5bb2373.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Disney Fans React to the First 12 Minutes of Up | Oh My Disney","type":"Video","href":"https://video.disney.com/watch/disney-fans-react-to-the-first-12-minutes-of-up-oh-my-disney-58a0c3e7bb1a6ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"589f7cecb60bfebd6b4f2a72","slug":"up-brush-lettering-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Up Brush Lettering | Disney Family","duration":"0:47","duration_sec":47,"duration_iso":"T00H00M47S","description":"Adventure is out there with this brush lettering by Amy Tan (@amytangerine) inspired by Disney and Pixar's Up.","analytics":"vid||||1_air767tg|","adId":"1_air767tg","analyticsId":"1_air767tg","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5ced8eda0a1298000141eb74","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_air767tg/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"48","msDuration":"47761","durationType":null,"id":"1_air767tg","name":"Up Brush Lettering | Disney Family","description":"Adventure is out there with this brush lettering by Amy Tan (@amytangerine) inspired by Disney and Pixar's Up.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1559072303","updatedAt":1559075223,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_air767tg/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Up Brush Lettering | Disney Family us-video, matterhorn-asset-import, kaltura-hosted Adventure is out there with this brush lettering by Amy Tan (@amytangerine) inspired by Disney and Pixars Up. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_air767tg/version/100061","accessControlId":"519772","startDate":"1559059200","endDate":null,"referenceId":"2773035c818011e9a3f7256ca69828a6","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_air767tg","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"589f7cecb60bfebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en,en-US","Tags":"53fb407f00a5430d5208dca2,55cdeeb98340637c8b8db00d,53fb4065ac90775d779c5793,4b9060054c42e50f422a8ba2,589682eaf3624f4261e27365,53fb404a4414785152c57f80,5364634694e2a5c8a5c3cff7,556f5957519d4481bb85c21e","thumbnail_updatedAt":"1559075190"},"data_id":"1_air767tg","group":"us","source":"kaltura","id":"5ced8eda0a1298000141eb74"},{"_id":"5ced8eda0a1298000141eb75","account":"1.0","data":{},"data_id":"2773035c818011e9a3f7256ca69828a6","group":null,"source":"house_number","id":"5ced8eda0a1298000141eb75"}],"embedURL":"https://secure.disney.com/embed/589f7cecb60bfebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4b997410e8f89b84fc68753a"],"publishers":["4b91e204b476890a20669196","5364634694e2a5c8a5c3cff7"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"start_date":"2019-05-28T09:00:00-07:00","content_date":"2019-05-29T00:00:05-07:00","created_at":"2019-05-29T00:00:05-07:00","flavors":[{"bitrate":477,"format":"mp4","id":"5ceda36bcd00ff00607983f9","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1_8kjue198/fileName/Up_Brush_Lettering___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1*~hmac=38966bc04244079274fd06c5c39b9dd9e868cbc875a052e69ca6fddb34b922f6"},{"bitrate":665,"format":"mp4","id":"5ceda36bcd00ff00607983fb","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1_6r9zra4o/fileName/Up_Brush_Lettering___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1*~hmac=38966bc04244079274fd06c5c39b9dd9e868cbc875a052e69ca6fddb34b922f6"},{"bitrate":848,"format":"mp4","id":"5ceda36bcd00ff00607983fc","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1_v5uigpsb/fileName/Up_Brush_Lettering___Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1*~hmac=38966bc04244079274fd06c5c39b9dd9e868cbc875a052e69ca6fddb34b922f6"},{"bitrate":1262,"format":"mp4","id":"5ceda36bcd00ff00607983fd","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1_w7yjn46r/fileName/Up_Brush_Lettering___Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1*~hmac=38966bc04244079274fd06c5c39b9dd9e868cbc875a052e69ca6fddb34b922f6"},{"bitrate":2830,"format":"mp4","id":"5ceda36bcd00ff00607983fe","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1_4gpulpjy/fileName/Up_Brush_Lettering___Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_air767tg/v/1/pv/1/ev/6/flavorId/1*~hmac=38966bc04244079274fd06c5c39b9dd9e868cbc875a052e69ca6fddb34b922f6"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_air767tg/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_21f0acaa.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_21f0acaa.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_21f0acaa.jpeg","publish_date":"May 29, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_21f0acaa.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_21f0acaa.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Up Brush Lettering | Disney Family","type":"Video","href":"https://video.disney.com/watch/up-brush-lettering-disney-family-589f7cecb60bfebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58994a5080046ebd6b4f2a72","slug":"disney-family-at-the-lake-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Disney Family at the Lake | Disney Family","duration":"2:21","duration_sec":141,"duration_iso":"T00H02M21S","description":"Paid Partnership with Take Me Fishing \r\nWatch as the whole family experiences the joy of fishing together, and learn to make your own Incredibles bandanas, Porg tackle box, and Moana sit-upon by visiting family.disney.com \r\n\r\nTo plan your next fishing and boating adventure, visit takemefishing.org/firstcatch","analytics":"vid||||1_kbqh9i5i|","adId":"1_kbqh9i5i","analyticsId":"1_kbqh9i5i","vType":"Recurring Segment","adPattern":"C","externals":[{"_id":"5ce70fbdba31c90001915a4f","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_kbqh9i5i/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"7","lastPlayedAt":null,"width":"1920","height":"1080","duration":"141","msDuration":"141000","durationType":null,"id":"1_kbqh9i5i","name":"Disney Family at the Lake | Disney Family","description":"Paid Partnership with Take Me Fishing \nWatch as the whole family experiences the joy of fishing together, and learn to make your own Incredibles bandanas, Porg tackle box, and Moana sit-upon by visiting family.disney.com \n\nTo plan your next fishing and boating adventure, visit takemefishing.org/firstcatch","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1558646401","updatedAt":1558718702,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_kbqh9i5i/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Disney Family at the Lake | Disney Family us-video, matterhorn-asset-import, kaltura-hosted Paid Partnership with Take Me Fishing Watch as the whole family experiences the joy of fishing together, and learn to make your own Incredibles bandanas, Porg tackle box, and Moana sit-upon by visiting family.disney.com To plan your next fishing and boating adventure, visit takemefishing.org/firstcatch ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_kbqh9i5i/version/100071","accessControlId":"519772","startDate":"1558681200","endDate":null,"referenceId":"85d0c3977da011e9b33f05295ca05e4a","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_kbqh9i5i","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58994a5080046ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,587d80d0de012e18f42d4923,53fb404a4414785152c57f80,5364634694e2a5c8a5c3cff7,556f5957519d4481bb85c21e,55cdeef7176df37c8b8db00d,56d0c077a951454ff02997de","Locales":"en,en-US","thumbnail_updatedAt":"1558718702"},"data_id":"1_kbqh9i5i","group":"us","source":"kaltura","id":"5ce70fbdba31c90001915a4f"},{"_id":"5ce70fbdba31c90001915a50","account":"1.0","data":{},"data_id":"85d0c3977da011e9b33f05295ca05e4a","group":null,"source":"house_number","id":"5ce70fbdba31c90001915a50"}],"embedURL":"https://secure.disney.com/embed/58994a5080046ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":null},"start_date":"2019-05-24T00:00:00-07:00","content_date":"2019-05-24T09:00:03-07:00","created_at":"2019-05-24T09:00:03-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5ce82905cd00ff006671a067","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1_ey92zz0y/fileName/Disney_Family_at_the_Lake___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1*~hmac=ce76741103041b2dea83f0079bdedf9ad45c1ef3d1b5b8a8c8d60ee97a2180da"},{"bitrate":665,"format":"mp4","id":"5ce82905cd00ff006671a069","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1_nyc4ch72/fileName/Disney_Family_at_the_Lake___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1*~hmac=ce76741103041b2dea83f0079bdedf9ad45c1ef3d1b5b8a8c8d60ee97a2180da"},{"bitrate":964,"format":"mp4","id":"5ce82905cd00ff006671a06a","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1_oibcn0hy/fileName/Disney_Family_at_the_Lake___Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1*~hmac=ce76741103041b2dea83f0079bdedf9ad45c1ef3d1b5b8a8c8d60ee97a2180da"},{"bitrate":1528,"format":"mp4","id":"5ce82905cd00ff006671a06b","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1_yf5b604q/fileName/Disney_Family_at_the_Lake___Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1*~hmac=ce76741103041b2dea83f0079bdedf9ad45c1ef3d1b5b8a8c8d60ee97a2180da"},{"bitrate":2628,"format":"mp4","id":"5ce82905cd00ff006671a06c","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1_41imr3sf/fileName/Disney_Family_at_the_Lake___Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1*~hmac=ce76741103041b2dea83f0079bdedf9ad45c1ef3d1b5b8a8c8d60ee97a2180da"},{"bitrate":4128,"format":"mp4","id":"5ce82905cd00ff006671a06d","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1_rr9bu5zu/fileName/Disney_Family_at_the_Lake___Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kbqh9i5i/v/1/pv/1/ev/7/flavorId/1*~hmac=ce76741103041b2dea83f0079bdedf9ad45c1ef3d1b5b8a8c8d60ee97a2180da"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_kbqh9i5i/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_xk15oqqv/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_2264aa86.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_2264aa86.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_2264aa86.jpeg","publish_date":"May 24, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_2264aa86.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_2264aa86.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Disney Family at the Lake | Disney Family","type":"Video","href":"https://video.disney.com/watch/disney-family-at-the-lake-disney-family-58994a5080046ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"588cf17d3d4abebd6b4f2a72","slug":"aladdin-inspired-makeup-tutorials-beauty-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Aladdin-Inspired Makeup Tutorials | Beauty by Disney Style","duration":"5:56","duration_sec":356,"duration_iso":"T00H05M56S","description":"Ad for MAC Cosmetics. Learn how to get an everyday and formal evening look inspired by Disney’s thrilling and vibrant live-action film Aladdin, which opens in theaters nationwide May 24, 2019.","analytics":"vid||||1_1uhz1ayc|","adId":"1_1uhz1ayc","analyticsId":"1_1uhz1ayc","vType":"Advertising","adPattern":"C","externals":[{"_id":"5cda1dec8e69000001ab1486","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_1uhz1ayc/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"301767","views":"549958","lastPlayedAt":"1563246000","width":"1920","height":"1080","duration":"356","msDuration":"356000","durationType":null,"id":"1_1uhz1ayc","name":"Aladdin-Inspired Makeup Tutorials | Beauty by Disney Style","description":"Ad for MAC Cosmetics. Learn how to get an everyday and formal evening look inspired by Disney’s thrilling and vibrant live-action film Aladdin, which opens in theaters nationwide May 24, 2019.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1557797923","updatedAt":1563319684,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_1uhz1ayc/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Aladdin-Inspired Makeup Tutorials | Beauty by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Ad for MAC Cosmetics. Learn how to get an everyday and formal evening look inspired by Disney’s thrilling and vibrant live-action film Aladdin, which opens in theaters nationwide May 24, 2019. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_1uhz1ayc/version/100112","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"01c78a8075e911e9be949728c18d4756","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_1uhz1ayc","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"588cf17d3d4abebd6b4f2a72","PromoType":"Theatrical Release","VideoType":"Advertising","Distributor":"4d3a78879c47877bb55bd685","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"4d3a78879c47877bb55bd685,538299b4735ec597a0b9652c,53fb404a4414785152c57f80,53fb4065ac90775d779c5793,53fb407f00a5430d5208dca2,54044a4434701c4f197ad222,55770c21d3c66d87af578f03,55c403c744f29586ab44c45c,55cc5570987bf21579bdb3c9,55cdee529a76637c8b8db00d,55cdee9947feb37c8b8db00d,55cdeeb98340637c8b8db00d,56f90dc6dfcbe6bcd1baa20f,587d7fed08b4ae18f42d4923","Locales":"{\"locale\": \"en\", \"name\": null, \"description\": null},{\"locale\": \"en-US\", \"name\": null, \"description\": null}","HouseId":"STUT216","thumbnail_updatedAt":"1563314841","ContentDate":"1563300237"},"data_id":"1_1uhz1ayc","group":"us","source":"kaltura","id":"5cda1dec8e69000001ab1486"},{"_id":"5cda1dec8e69000001ab1487","account":"1.0","data":{},"data_id":"01c78a8075e911e9be949728c18d4756","group":null,"source":"house_number","id":"5cda1dec8e69000001ab1487"}],"embedURL":"https://secure.disney.com/embed/588cf17d3d4abebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["4d3a78879c47877bb55bd685"],"networks":null},"content_date":"2019-05-15T09:00:01-07:00","created_at":"2019-05-15T09:00:02-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5d2e4c8305c4e1005c8606d0","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId/1_4owxpvdt/fileName/Aladdin-Inspired_Makeup_Tutorials___Beauty_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId*~hmac=089703b2a7de2592c34a95211dc680e0e0af20f5c8ed4cffa043841c356384d7"},{"bitrate":667,"format":"mp4","id":"5d2e4c8305c4e1005c8606d3","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId/1_giu9e78t/fileName/Aladdin-Inspired_Makeup_Tutorials___Beauty_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId*~hmac=089703b2a7de2592c34a95211dc680e0e0af20f5c8ed4cffa043841c356384d7"},{"bitrate":964,"format":"mp4","id":"5d2e4c8305c4e1005c8606d4","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId/1_0wn1hxup/fileName/Aladdin-Inspired_Makeup_Tutorials___Beauty_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId*~hmac=089703b2a7de2592c34a95211dc680e0e0af20f5c8ed4cffa043841c356384d7"},{"bitrate":1488,"format":"mp4","id":"5d2e4c8305c4e1005c8606d5","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId/1_8eg0z4qa/fileName/Aladdin-Inspired_Makeup_Tutorials___Beauty_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId*~hmac=089703b2a7de2592c34a95211dc680e0e0af20f5c8ed4cffa043841c356384d7"},{"bitrate":2628,"format":"mp4","id":"5d2e4c8305c4e1005c8606d6","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId/1_iwrluc7g/fileName/Aladdin-Inspired_Makeup_Tutorials___Beauty_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId*~hmac=089703b2a7de2592c34a95211dc680e0e0af20f5c8ed4cffa043841c356384d7"},{"bitrate":4128,"format":"mp4","id":"5d2e4c8305c4e1005c8606d7","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId/1_8zyyvcar/fileName/Aladdin-Inspired_Makeup_Tutorials___Beauty_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_1uhz1ayc/v/12/pv/1/ev/14/flavorId*~hmac=089703b2a7de2592c34a95211dc680e0e0af20f5c8ed4cffa043841c356384d7"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_1uhz1ayc/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_prhlaok1/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_b78c2485.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_b78c2485.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_b78c2485.jpeg","publish_date":"May 15, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_b78c2485.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_b78c2485.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Aladdin-Inspired Makeup Tutorials | Beauty by Disney Style","type":"Video","href":"https://video.disney.com/watch/aladdin-inspired-makeup-tutorials-beauty-by-disney-style-588cf17d3d4abebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58891cf415907ebd6b4f2a72","slug":"incredibles-calligraphy-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Incredibles Calligraphy | Disney Family","duration":"1:00","duration_sec":60,"duration_iso":"T00H01M00S","description":"Super parents save the day with this inspiration from Disney and Pixar's The Incredibles.","analytics":"vid||||1_egaxjc6e|","adId":"1_egaxjc6e","analyticsId":"1_egaxjc6e","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5cd618898e69000001d93634","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_egaxjc6e/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"37131","views":"95402","lastPlayedAt":"1557716400","width":"1920","height":"1080","duration":"60","msDuration":"60000","durationType":null,"id":"1_egaxjc6e","name":"Incredibles Calligraphy | Disney Family","description":"Super parents save the day with this inspiration from Disney and Pixar's The Incredibles.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1557534712","updatedAt":1557535174,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_egaxjc6e/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Incredibles Calligraphy | Disney Family us-video, matterhorn-asset-import, kaltura-hosted Super parents save the day with this inspiration from Disney and Pixars The Incredibles. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_egaxjc6e/version/100052","accessControlId":"519772","startDate":"1557644400","endDate":null,"referenceId":"2c0eae5c738411e98af58547b7cbadc5","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_egaxjc6e","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58891cf415907ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"4b9060054bff750f422a8ba2,53fb407f00a5430d5208dca2,5364634694e2a5c8a5c3cff7,53fb4065ac90775d779c5793,53fb404a4414785152c57f80","Locales":"en,en-US","thumbnail_updatedAt":"1557535174"},"data_id":"1_egaxjc6e","group":"us","source":"kaltura","id":"5cd618898e69000001d93634"},{"_id":"5cd618898e69000001d93635","account":"1.0","data":{},"data_id":"2c0eae5c738411e98af58547b7cbadc5","group":null,"source":"house_number","id":"5cd618898e69000001d93635"}],"embedURL":"https://secure.disney.com/embed/58891cf415907ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":null},"start_date":"2019-05-12T00:00:00-07:00","content_date":"2019-05-12T09:00:03-07:00","created_at":"2019-05-12T09:00:03-07:00","flavors":[{"bitrate":474,"format":"mp4","id":"5cd99d9b3314b70064abf5a4","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1_eg89mye9/fileName/Incredibles_Calligraphy___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1*~hmac=fd44cbdfe99e12452c741678bc703f31d7cedfa8a25d521f710c86fa74fca8a2"},{"bitrate":670,"format":"mp4","id":"5cd99d9b3314b70064abf5a6","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1_9eh1kbvm/fileName/Incredibles_Calligraphy___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1*~hmac=fd44cbdfe99e12452c741678bc703f31d7cedfa8a25d521f710c86fa74fca8a2"},{"bitrate":915,"format":"mp4","id":"5cd99d9b3314b70064abf5a7","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1_z1m1l9b2/fileName/Incredibles_Calligraphy___Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1*~hmac=fd44cbdfe99e12452c741678bc703f31d7cedfa8a25d521f710c86fa74fca8a2"},{"bitrate":1357,"format":"mp4","id":"5cd99d9b3314b70064abf5a8","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1_lp4o64pu/fileName/Incredibles_Calligraphy___Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1*~hmac=fd44cbdfe99e12452c741678bc703f31d7cedfa8a25d521f710c86fa74fca8a2"},{"bitrate":2628,"format":"mp4","id":"5cd99d9b3314b70064abf5a9","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1_rkgzbga2/fileName/Incredibles_Calligraphy___Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1*~hmac=fd44cbdfe99e12452c741678bc703f31d7cedfa8a25d521f710c86fa74fca8a2"},{"bitrate":3484,"format":"mp4","id":"5cd99d9b3314b70064abf5aa","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1_a2cxyw4x/fileName/Incredibles_Calligraphy___Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_egaxjc6e/v/1/pv/1/ev/7/flavorId/1*~hmac=fd44cbdfe99e12452c741678bc703f31d7cedfa8a25d521f710c86fa74fca8a2"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_egaxjc6e/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_9d2c3d7f.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_9d2c3d7f.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_9d2c3d7f.jpeg","publish_date":"May 12, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_9d2c3d7f.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_9d2c3d7f.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Incredibles Calligraphy | Disney Family","type":"Video","href":"https://video.disney.com/watch/incredibles-calligraphy-disney-family-58891cf415907ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"587eb3c4d2ad4ebd6b4f2a72","slug":"maleficent-flower-fashion-illustration-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Maleficent Flower Fashion Illustration | Disney Style","duration":"1:00","duration_sec":60,"duration_iso":"T00H01M00S","description":"Ad for Zales. Fashion illustrator Sunny Gu reimagines Maleficent with watercolor and flowers.","analytics":"vid||||0_w0wkcy2d|","adId":"0_w0wkcy2d","analyticsId":"0_w0wkcy2d","vType":"Advertising","adPattern":"C","externals":[{"_id":"5ccb2e428841ad0001cdc314","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_w0wkcy2d/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"462171","views":"905394","lastPlayedAt":"1560308400","width":"1920","height":"1080","duration":"60","msDuration":"60000","durationType":null,"id":"0_w0wkcy2d","name":"Maleficent Flower Fashion Illustration | Disney Style","description":"Ad for Zales. Fashion illustrator Sunny Gu reimagines Maleficent with watercolor and flowers.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1556819283","updatedAt":1560364558,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_w0wkcy2d/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Maleficent Flower Fashion Illustration | Disney Style us-video, matterhorn-asset-import, kaltura-hosted Ad for Zales. Fashion illustrator Sunny Gu reimagines Maleficent with watercolor and flowers. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_w0wkcy2d/version/100062","accessControlId":"519772","startDate":"1558594800","endDate":null,"referenceId":"6e84e86b6d0211e9a57b11f875d8bb1a","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_w0wkcy2d","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"587eb3c4d2ad4ebd6b4f2a72","PromoType":"None","VideoType":"Advertising","Distributor":"4d3a78879c47877bb55bd685","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"538298eca1bfec6f59a0ee62,53fb407f00a5430d5208dca2,55cdeeb98340637c8b8db00d,53fb4065ac90775d779c5793,556f58a15831a481bb85c21e,4f8ab65790fe2a636ef97e78,556f570436363481bb85c21e,55c403c744f29586ab44c45c,53fb404a4414785152c57f80,56e11bc0f888875c3d79268c,4d3a78879c47877bb55bd685,5858062d6aa6f77a54a6bc92,55770c0d5aca8d87af578f03","Locales":"en,en-US","HouseId":"SAV214","thumbnail_updatedAt":"1556820113"},"data_id":"0_w0wkcy2d","group":"us","source":"kaltura","id":"5ccb2e428841ad0001cdc314"},{"_id":"5ccb2e428841ad0001cdc315","account":"1.0","data":{},"data_id":"6e84e86b6d0211e9a57b11f875d8bb1a","group":null,"source":"house_number","id":"5ccb2e428841ad0001cdc315"}],"embedURL":"https://secure.disney.com/embed/587eb3c4d2ad4ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["4d3a78879c47877bb55bd685"],"networks":null},"start_date":"2019-05-23T00:00:00-07:00","content_date":"2019-05-03T09:00:01-07:00","created_at":"2019-05-03T09:00:01-07:00","flavors":[{"bitrate":469,"format":"mp4","id":"5ccb31c7e92b6f00018640f3","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0_hpboswzx/fileName/Maleficent_Flower_Fashion_Illustration___Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0*~hmac=c0b28d109a7c077b1d892370cdec7ce93aed2e9378f029d666c409c719dfada1"},{"bitrate":667,"format":"mp4","id":"5ccb31c7e92b6f00018640f5","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0_nomhbstk/fileName/Maleficent_Flower_Fashion_Illustration___Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0*~hmac=c0b28d109a7c077b1d892370cdec7ce93aed2e9378f029d666c409c719dfada1"},{"bitrate":921,"format":"mp4","id":"5ccb31c7e92b6f00018640f6","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0_vuuvi63w/fileName/Maleficent_Flower_Fashion_Illustration___Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0*~hmac=c0b28d109a7c077b1d892370cdec7ce93aed2e9378f029d666c409c719dfada1"},{"bitrate":1484,"format":"mp4","id":"5ccb31c7e92b6f00018640f7","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0_0is70u0j/fileName/Maleficent_Flower_Fashion_Illustration___Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0*~hmac=c0b28d109a7c077b1d892370cdec7ce93aed2e9378f029d666c409c719dfada1"},{"bitrate":2459,"format":"mp4","id":"5ccb31c7e92b6f00018640f8","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0_po7ijg1f/fileName/Maleficent_Flower_Fashion_Illustration___Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0*~hmac=c0b28d109a7c077b1d892370cdec7ce93aed2e9378f029d666c409c719dfada1"},{"bitrate":3865,"format":"mp4","id":"5ccb31c7e92b6f00018640f9","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0_a6zg82dp/fileName/Maleficent_Flower_Fashion_Illustration___Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_w0wkcy2d/v/2/pv/1/ev/7/flavorId/0*~hmac=c0b28d109a7c077b1d892370cdec7ce93aed2e9378f029d666c409c719dfada1"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_w0wkcy2d/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/0_p1lhhdhz/v/2/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_efc1459c.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_efc1459c.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_efc1459c.jpeg","publish_date":"May 3, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_efc1459c.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_efc1459c.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Maleficent Flower Fashion Illustration | Disney Style","type":"Video","href":"https://video.disney.com/watch/maleficent-flower-fashion-illustration-disney-style-587eb3c4d2ad4ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58776e39014c0ebd6b4f2a72","slug":"disney-pixar-diy-graduation-caps-diy-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Disney•Pixar DIY Graduation Caps | DIY by Disney Style","duration":"1:26","duration_sec":86,"duration_iso":"T00H01M26S","description":"You just kept swimming and it's time to graduate! Decorate your graduation cap with inspiration from Edna Mode, UP, and Finding Nemo.","analytics":"vid||||1_01zv2g36|","adId":"1_01zv2g36","analyticsId":"1_01zv2g36","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5cc391328841ad000106773f","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_01zv2g36/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"86","msDuration":"86000","durationType":null,"id":"1_01zv2g36","name":"Disney•Pixar DIY Graduation Caps | DIY by Disney Style","description":"You just kept swimming and it's time to graduate! Decorate your graduation cap with inspiration from Edna Mode, UP, and Finding Nemo.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1556319577","updatedAt":1556321258,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_01zv2g36/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Disney•Pixar DIY Graduation Caps | DIY by Disney Style us-video, matterhorn-asset-import, kaltura-hosted You just kept swimming and its time to graduate! Decorate your graduation cap with inspiration from Edna Mode, UP, and Finding Nemo. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_01zv2g36/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"f7220bb5687611e986e7df19b7a41a10","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_01zv2g36","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58776e39014c0ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","PromoType":"None","VideoType":"Recurring Segment","Distributor":"4d3a78879c47877bb55bd685","Tags":"4b9060054c42e50f422a8ba2,55cdeeb98340637c8b8db00d,56d0c027920b654ff02997de,53fb407f00a5430d5208dca2,556f57ce405a3481bb85c21e,55770c0d5aca8d87af578f03,4d9689c302d87d851d01e558,556f5957519d4481bb85c21e,53fb404a4414785152c57f80,4b9060054bff750f422a8ba2,53a371c4662ea901e5852ae3,53fb4065ac90775d779c5793,5873568a7b7ceeff2a7b6713,4d3a78879c47877bb55bd685","HouseId":"SDIY236","thumbnail_updatedAt":"1556321131"},"data_id":"1_01zv2g36","group":"us","source":"kaltura","id":"5cc391328841ad000106773f"},{"_id":"5cc391328841ad0001067740","account":"1.0","data":{},"data_id":"f7220bb5687611e986e7df19b7a41a10","group":null,"source":"house_number","id":"5cc391328841ad0001067740"}],"embedURL":"https://secure.disney.com/embed/58776e39014c0ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4b99741002dfdb84fc68753a","4b99741080580b84fc68753a","4b997410e8f89b84fc68753a","4f24d59955c5b73b1712f840","57d6624cec42815f6e6a126d"],"publishers":["4b91e204b476890a20669196","4d3a78879c47877bb55bd685"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-27T09:00:02-07:00","created_at":"2019-04-27T09:00:02-07:00","flavors":[{"bitrate":470,"format":"mp4","id":"5cc393fed62ba20001cd9c56","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1_vtss39pp/fileName/Disney___Pixar_DIY_Graduation_Caps___DIY_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1*~hmac=17009e2aa2e472dea2590828045e2eac591e64f275f0601378259f85e40340cb"},{"bitrate":664,"format":"mp4","id":"5cc393fed62ba20001cd9c57","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1_jtb2azk6/fileName/Disney___Pixar_DIY_Graduation_Caps___DIY_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1*~hmac=17009e2aa2e472dea2590828045e2eac591e64f275f0601378259f85e40340cb"},{"bitrate":904,"format":"mp4","id":"5cc393fed62ba20001cd9c58","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1_qcfl8062/fileName/Disney___Pixar_DIY_Graduation_Caps___DIY_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1*~hmac=17009e2aa2e472dea2590828045e2eac591e64f275f0601378259f85e40340cb"},{"bitrate":1424,"format":"mp4","id":"5cc393fed62ba20001cd9c59","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1_03jfih9a/fileName/Disney___Pixar_DIY_Graduation_Caps___DIY_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1*~hmac=17009e2aa2e472dea2590828045e2eac591e64f275f0601378259f85e40340cb"},{"bitrate":2628,"format":"mp4","id":"5cc393fed62ba20001cd9c5a","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1_on23w5mv/fileName/Disney___Pixar_DIY_Graduation_Caps___DIY_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1*~hmac=17009e2aa2e472dea2590828045e2eac591e64f275f0601378259f85e40340cb"},{"bitrate":4128,"format":"mp4","id":"5cc393fed62ba20001cd9c5b","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1_7zezre8x/fileName/Disney___Pixar_DIY_Graduation_Caps___DIY_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_01zv2g36/v/1/pv/1/ev/7/flavorId/1*~hmac=17009e2aa2e472dea2590828045e2eac591e64f275f0601378259f85e40340cb"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_01zv2g36/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_9240a6f1.png?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_9240a6f1.png?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_9240a6f1.png","publish_date":"April 27, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_9240a6f1.png?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_9240a6f1.png","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Disney•Pixar DIY Graduation Caps | DIY by Disney Style","type":"Video","href":"https://video.disney.com/watch/disney-pixar-diy-graduation-caps-diy-by-disney-style-58776e39014c0ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"587374a7989e3ebd6b4f2a72","slug":"pocahontas-watercolor-sketchbook-by-omd","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Pocahontas Watercolor | Sketchbook by OMD","duration":"1:00","duration_sec":60,"duration_iso":"T00H01M00S","description":"Ad for Zales. Watch Mary Doodles paint Pocahontas with mesmerizing watercolor.","analytics":"vid||||1_i7rbquk4|","adId":"1_i7rbquk4","analyticsId":"1_i7rbquk4","vType":"Advertising","adPattern":"C","externals":[{"_id":"5cbf6337c02aa80001115fb1","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_i7rbquk4/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"60","msDuration":"60000","durationType":null,"id":"1_i7rbquk4","name":"Pocahontas Watercolor | Sketchbook by OMD","description":"Ad for Zales. Watch Mary Doodles paint Pocahontas with mesmerizing watercolor.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1556046426","updatedAt":1556047330,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_i7rbquk4/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Pocahontas Watercolor | Sketchbook by OMD us-video, matterhorn-asset-import, kaltura-hosted Ad for Zales. Watch Mary Doodles paint Pocahontas with mesmerizing watercolor. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_i7rbquk4/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"fc409e5465fa11e994d55b44a5779c7c","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_i7rbquk4","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"587374a7989e3ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1556047084","PromoType":"None","VideoType":"Advertising","Distributor":"5364631582d35eb77b849c41","Tags":"5364631582d35eb77b849c41,55cdeeb98340637c8b8db00d,5382996f1a335c6f59a0ee62,4be79a72dc42c20a5ed3c5a4,53fb407f00a5430d5208dca2,55cdee529a76637c8b8db00d,55770c21d3c66d87af578f03,55c403c744f29586ab44c45c,53fb404a4414785152c57f80,5869835babb2fdacb04ec2eb,53fb4065ac90775d779c5793,55770c0d5aca8d87af578f03","HouseId":"SKTCH510"},"data_id":"1_i7rbquk4","group":"us","source":"kaltura","id":"5cbf6337c02aa80001115fb1"},{"_id":"5cbf6337c02aa80001115fb2","account":"1.0","data":{},"data_id":"fc409e5465fa11e994d55b44a5779c7c","group":null,"source":"house_number","id":"5cbf6337c02aa80001115fb2"}],"embedURL":"https://secure.disney.com/embed/587374a7989e3ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364631582d35eb77b849c41"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-26T09:00:00-07:00","created_at":"2019-04-26T09:00:01-07:00","flavors":[{"bitrate":470,"format":"mp4","id":"5cbf664fe0d377005b9ee38c","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1_q70hcr1y/fileName/Pocahontas_Watercolor___Sketchbook_by_OMD_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1*~hmac=516fe3264fdfd3337123122703b4018dd5ff131f9cfc4d4bd738fca8465cef56"},{"bitrate":666,"format":"mp4","id":"5cbf664fe0d377005b9ee38e","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1_m8zsvcf7/fileName/Pocahontas_Watercolor___Sketchbook_by_OMD_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1*~hmac=516fe3264fdfd3337123122703b4018dd5ff131f9cfc4d4bd738fca8465cef56"},{"bitrate":918,"format":"mp4","id":"5cbf664fe0d377005b9ee38f","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1_z8m45lw9/fileName/Pocahontas_Watercolor___Sketchbook_by_OMD_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1*~hmac=516fe3264fdfd3337123122703b4018dd5ff131f9cfc4d4bd738fca8465cef56"},{"bitrate":1448,"format":"mp4","id":"5cbf664fe0d377005b9ee390","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1_gzoyct4k/fileName/Pocahontas_Watercolor___Sketchbook_by_OMD_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1*~hmac=516fe3264fdfd3337123122703b4018dd5ff131f9cfc4d4bd738fca8465cef56"},{"bitrate":2488,"format":"mp4","id":"5cbf664fe0d377005b9ee391","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1_089p2qkg/fileName/Pocahontas_Watercolor___Sketchbook_by_OMD_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1*~hmac=516fe3264fdfd3337123122703b4018dd5ff131f9cfc4d4bd738fca8465cef56"},{"bitrate":3914,"format":"mp4","id":"5cbf664fe0d377005b9ee392","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1_v35vrm7f/fileName/Pocahontas_Watercolor___Sketchbook_by_OMD_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_i7rbquk4/v/1/pv/1/ev/7/flavorId/1*~hmac=516fe3264fdfd3337123122703b4018dd5ff131f9cfc4d4bd738fca8465cef56"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_i7rbquk4/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_rs02mew8/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_6c56d084.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_6c56d084.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_6c56d084.jpeg","publish_date":"April 26, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_6c56d084.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_6c56d084.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Pocahontas Watercolor | Sketchbook by OMD","type":"Video","href":"https://video.disney.com/watch/pocahontas-watercolor-sketchbook-by-omd-587374a7989e3ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"5875041b54df4ebd6b4f2a72","slug":"10-prom-looks-inspired-by-disney-characters-fashion-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"10 Prom Looks Inspired by Disney Characters | Fashion by Disney Style","duration":"0:59","duration_sec":59,"duration_iso":"T00H00M59S","description":"Feel like a prom Princess! Get inspiration for your prom night from some of your favorite Disney characters.","analytics":"vid||||0_anbu38k3|","adId":"0_anbu38k3","analyticsId":"0_anbu38k3","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5cc105ce49873500017fc792","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_anbu38k3/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"60","msDuration":"59690","durationType":null,"id":"0_anbu38k3","name":"10 Prom Looks Inspired by Disney Characters | Fashion by Disney Style","description":"Feel like a prom Princess! Get inspiration for your prom night from some of your favorite Disney characters.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1556153653","updatedAt":1556154450,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_anbu38k3/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| 10 Prom Looks Inspired by Disney Characters | Fashion by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Feel like a prom Princess! Get inspiration for your prom night from some of your favorite Disney characters. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_anbu38k3/version/100052","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"a4961e0566f411e98c7db5c6b7901568","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_anbu38k3","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"5875041b54df4ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","PromoType":"None","VideoType":"Recurring Segment","Distributor":"4d3a78879c47877bb55bd685","Tags":"4b9060053452050f422a8ba2,53fb407f00a5430d5208dca2,4ef8b7a9ea7930786a15b5e4,53fb4065ac90775d779c5793,538299b4735ec597a0b9652c,556f58a15831a481bb85c21e,4b90600534a8350f422a8ba2,4caf7a7f8f0b9efce754088c,53fb404a4414785152c57f80,5869784ccbca5dacb04ec2eb,4be86687fa103a1c99253929,55c403c744f29586ab44c45c,4d7ad538cacb920b930c602d,4d3a78879c47877bb55bd685,4b9060053597250f422a8ba2,4be1632ea4522ba8674453da,55770c0d5aca8d87af578f03,4b9060051c58950f422a8ba2,4b9060051aa4c50f422a8ba2","HouseId":"STUT213","thumbnail_updatedAt":"1556154450"},"data_id":"0_anbu38k3","group":"us","source":"kaltura","id":"5cc105ce49873500017fc792"},{"_id":"5cc105ce49873500017fc793","account":"1.0","data":{},"data_id":"a4961e0566f411e98c7db5c6b7901568","group":null,"source":"house_number","id":"5cc105ce49873500017fc793"}],"embedURL":"https://secure.disney.com/embed/5875041b54df4ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["4d3a78879c47877bb55bd685"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-25T09:00:02-07:00","created_at":"2019-04-25T09:00:03-07:00","flavors":[{"bitrate":469,"format":"mp4","id":"5cc1086576cf510001a78597","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0_cvsvynq6/fileName/10_Prom_Looks_Inspired_by_Disney_Characters___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0*~hmac=da53f59bf54b43592e5f3ce4514e69e98b1d1aa188377bb878702082dfcb6f14"},{"bitrate":667,"format":"mp4","id":"5cc1086576cf510001a7859a","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0_bshaq2lt/fileName/10_Prom_Looks_Inspired_by_Disney_Characters___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0*~hmac=da53f59bf54b43592e5f3ce4514e69e98b1d1aa188377bb878702082dfcb6f14"},{"bitrate":964,"format":"mp4","id":"5cc1086576cf510001a7859b","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0_t2gcifdz/fileName/10_Prom_Looks_Inspired_by_Disney_Characters___Fashion_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0*~hmac=da53f59bf54b43592e5f3ce4514e69e98b1d1aa188377bb878702082dfcb6f14"},{"bitrate":1537,"format":"mp4","id":"5cc1086576cf510001a7859c","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0_qgwigdyi/fileName/10_Prom_Looks_Inspired_by_Disney_Characters___Fashion_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0*~hmac=da53f59bf54b43592e5f3ce4514e69e98b1d1aa188377bb878702082dfcb6f14"},{"bitrate":2628,"format":"mp4","id":"5cc1086576cf510001a7859d","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0_9k3q9ujl/fileName/10_Prom_Looks_Inspired_by_Disney_Characters___Fashion_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0*~hmac=da53f59bf54b43592e5f3ce4514e69e98b1d1aa188377bb878702082dfcb6f14"},{"bitrate":4128,"format":"mp4","id":"5cc1086576cf510001a7859e","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0_1npo1ei0/fileName/10_Prom_Looks_Inspired_by_Disney_Characters___Fashion_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_anbu38k3/v/2/pv/1/ev/7/flavorId/0*~hmac=da53f59bf54b43592e5f3ce4514e69e98b1d1aa188377bb878702082dfcb6f14"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_anbu38k3/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/0_tnnwr5um/v/2/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_a2f78721.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_a2f78721.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_a2f78721.jpeg","publish_date":"April 25, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_a2f78721.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_a2f78721.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"10 Prom Looks Inspired by Disney Characters | Fashion by Disney Style","type":"Video","href":"https://video.disney.com/watch/10-prom-looks-inspired-by-disney-characters-fashion-by-disney-style-5875041b54df4ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58736d1d8a402ebd6b4f2a72","slug":"60-seconds-of-disney-characters-as-kids-and-babies-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"60 Seconds of Disney Characters as Kids and Babies | Disney Family","duration":"0:58","duration_sec":58,"duration_iso":"T00H00M58S","description":"From baby Moana to baby Pegasus, your favorite Disney and Pixar characters are even cuter as babies!","analytics":"vid||||1_qrrdii0n|","adId":"1_qrrdii0n","analyticsId":"1_qrrdii0n","vType":"Short","adPattern":"AC","externals":[{"_id":"5cbf5b3d5504f80001c3c49b","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_qrrdii0n/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"58","msDuration":"58063","durationType":null,"id":"1_qrrdii0n","name":"60 Seconds of Disney Characters as Kids and Babies | Disney Family","description":"From baby Moana to baby Pegasus, your favorite Disney and Pixar characters are even cuter as babies!","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1556044402","updatedAt":1556045596,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_qrrdii0n/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| 60 Seconds of Disney Characters as Kids and Babies | Disney Family us-video, matterhorn-asset-import, kaltura-hosted From baby Moana to baby Pegasus, your favorite Disney and Pixar characters are even cuter as babies! ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_qrrdii0n/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"45f7a3a165f611e981775b44a5779c7c","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_qrrdii0n","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58736d1d8a402ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1556045015","PromoType":"None","VideoType":"Short","Distributor":"5364634694e2a5c8a5c3cff7","Tags":"53fb4065ac90775d779c5793,532953d84d96c95c9bde311b,55770c0d5aca8d87af578f03,53fb404a4414785152c57f80,5364634694e2a5c8a5c3cff7,5255219f28b5127d267013fb,4be1632ea4522ba8674453da,4caf79170f502efce754088c,5643b36da85fe342179d44ed,517904266d0a431bbbf010a2,4e33d9d5b70aeb6dc5158eab,535454df1ce98c39b91ef7bb,4befb73c950ee591ddd8bee2,4e02bf1b1874155e078627b4,4c894154214cfab1e893be76,58697a10df0905000aed1b7e,4b906004bad7c50f422a8ba2,53f3f90a7078d341d266e8d4,4b906004ba2a350f422a8ba2,4c894153f2426ab1e893be76,54be285cf2f79020ced85171,4b90600519dfb50f422a8ba2,4befc958461c384ece3662fc,55cdeb1072b7737c8b8db00d,51704f26c48e7a645e4dba72,4c7e05950e4855b251b7f4dd,4b9060051aa4c50f422a8ba2,4b9060049d55e50f422a8ba2,53fb407f00a5430d5208dca2,4bf7e4da669b3b7efb7fbee2,4caf79170f167efce754088c,54ac95773d1b15b84254328a,55cdee529a76637c8b8db00d,4bf091951be9971b6248fc22,54be28edb207d4357073b194,4b9060049d91050f422a8ba2,4b906004b3de950f422a8ba2","HouseId":"FNV113"},"data_id":"1_qrrdii0n","group":"us","source":"kaltura","id":"5cbf5b3d5504f80001c3c49b"},{"_id":"5cbf5b3d5504f80001c3c49c","account":"1.0","data":{},"data_id":"45f7a3a165f611e981775b44a5779c7c","group":null,"source":"house_number","id":"5cbf5b3d5504f80001c3c49c"}],"embedURL":"https://secure.disney.com/embed/58736d1d8a402ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-25T09:00:01-07:00","created_at":"2019-04-25T09:00:02-07:00","flavors":[{"bitrate":464,"format":"mp4","id":"5cbf5f3a76cf5100014026e3","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1_sr42h924/fileName/60_Seconds_of_Disney_Characters_as_Kids_and_Babies___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1*~hmac=b099837b669cf48bc015a657d613dfcff2de6c6639f4283b492da7b996fb2fba"},{"bitrate":664,"format":"mp4","id":"5cbf5f3a76cf5100014026e6","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1_poykntu4/fileName/60_Seconds_of_Disney_Characters_as_Kids_and_Babies___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1*~hmac=b099837b669cf48bc015a657d613dfcff2de6c6639f4283b492da7b996fb2fba"},{"bitrate":914,"format":"mp4","id":"5cbf5f3a76cf5100014026e7","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1_f2lm7mwf/fileName/60_Seconds_of_Disney_Characters_as_Kids_and_Babies___Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1*~hmac=b099837b669cf48bc015a657d613dfcff2de6c6639f4283b492da7b996fb2fba"},{"bitrate":1479,"format":"mp4","id":"5cbf5f3a76cf5100014026e8","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1_uzcpyhl7/fileName/60_Seconds_of_Disney_Characters_as_Kids_and_Babies___Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1*~hmac=b099837b669cf48bc015a657d613dfcff2de6c6639f4283b492da7b996fb2fba"},{"bitrate":2459,"format":"mp4","id":"5cbf5f3a76cf5100014026e9","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1_ogh9s929/fileName/60_Seconds_of_Disney_Characters_as_Kids_and_Babies___Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1*~hmac=b099837b669cf48bc015a657d613dfcff2de6c6639f4283b492da7b996fb2fba"},{"bitrate":3830,"format":"mp4","id":"5cbf5f3a76cf5100014026ea","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1_ewdjnq68/fileName/60_Seconds_of_Disney_Characters_as_Kids_and_Babies___Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_qrrdii0n/v/1/pv/1/ev/7/flavorId/1*~hmac=b099837b669cf48bc015a657d613dfcff2de6c6639f4283b492da7b996fb2fba"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_qrrdii0n/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/0_p1q78hnz/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_a3168f2a.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_a3168f2a.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_a3168f2a.jpeg","publish_date":"April 25, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"short","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_a3168f2a.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_a3168f2a.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"60 Seconds of Disney Characters as Kids and Babies | Disney Family","type":"Video","href":"https://video.disney.com/watch/60-seconds-of-disney-characters-as-kids-and-babies-disney-family-58736d1d8a402ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"586ea1f5fab88ebd6b4f2a72","slug":"diy-wall-e-succulent-garden-diy-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"DIY WALL•E Succulent Garden | DIY by Disney Style","duration":"1:00","duration_sec":60,"duration_iso":"T00H01M00S","description":"Celebrate Earth Day by adding a WALL•E succulent garden to your home decor.","analytics":"vid||||1_e9lg138t|","adId":"1_e9lg138t","analyticsId":"1_e9lg138t","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5cba544b4987350001ac1425","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_e9lg138t/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"60","msDuration":"60000","durationType":null,"id":"1_e9lg138t","name":"DIY WALL•E Succulent Garden | DIY by Disney Style","description":"Celebrate Earth Day by adding a WALL•E succulent garden to your home decor.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1555714991","updatedAt":1555715651,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_e9lg138t/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| DIY WALL•E Succulent Garden | DIY by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Celebrate Earth Day by adding a WALL•E succulent garden to your home decor. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_e9lg138t/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"4d3def5e62f711e993abf35352bd0953","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_e9lg138t","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"586ea1f5fab88ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1555715431","PromoType":"None","VideoType":"Recurring Segment","Distributor":"4d3a78879c47877bb55bd685","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,4b9060054c4c550f422a8ba2,556f57ce405a3481bb85c21e,586976b6f5d08dacb04ec2eb,55770c0d5aca8d87af578f03,556f5957519d4481bb85c21e,4b9060051a60050f422a8ba2,53a371c4662ea901e5852ae3,56f90cf42f12e6bcd1baa20f,4d3a78879c47877bb55bd685,53fb404a4414785152c57f80","HouseId":"SDIY235"},"data_id":"1_e9lg138t","group":"us","source":"kaltura","id":"5cba544b4987350001ac1425"},{"_id":"5cba544b4987350001ac1426","account":"1.0","data":{},"data_id":"4d3def5e62f711e993abf35352bd0953","group":null,"source":"house_number","id":"5cba544b4987350001ac1426"}],"embedURL":"https://secure.disney.com/embed/586ea1f5fab88ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4ba34c846d20559e961b9666"],"publishers":["4b91e204b476890a20669196","4d3a78879c47877bb55bd685"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-22T09:00:03-07:00","created_at":"2019-04-22T09:00:04-07:00","flavors":[{"bitrate":470,"format":"mp4","id":"5cba566476cf5100011c90ac","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0_26k2rdgq/fileName/DIY_WALL___E_Succulent_Garden___DIY_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0*~hmac=0f85a1aa9e9bc662b97e838e084bb9243ec9099eeceb876a5dc64064a7f1781f"},{"bitrate":669,"format":"mp4","id":"5cba566476cf5100011c90af","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0_75anqzkz/fileName/DIY_WALL___E_Succulent_Garden___DIY_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0*~hmac=0f85a1aa9e9bc662b97e838e084bb9243ec9099eeceb876a5dc64064a7f1781f"},{"bitrate":964,"format":"mp4","id":"5cba566476cf5100011c90b0","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0_dxffy9rz/fileName/DIY_WALL___E_Succulent_Garden___DIY_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0*~hmac=0f85a1aa9e9bc662b97e838e084bb9243ec9099eeceb876a5dc64064a7f1781f"},{"bitrate":1448,"format":"mp4","id":"5cba566476cf5100011c90b1","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0_a6evoj21/fileName/DIY_WALL___E_Succulent_Garden___DIY_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0*~hmac=0f85a1aa9e9bc662b97e838e084bb9243ec9099eeceb876a5dc64064a7f1781f"},{"bitrate":2508,"format":"mp4","id":"5cba566476cf5100011c90b2","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0_i0sgvesk/fileName/DIY_WALL___E_Succulent_Garden___DIY_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0*~hmac=0f85a1aa9e9bc662b97e838e084bb9243ec9099eeceb876a5dc64064a7f1781f"},{"bitrate":3910,"format":"mp4","id":"5cba566476cf5100011c90b3","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0_g64phusl/fileName/DIY_WALL___E_Succulent_Garden___DIY_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_e9lg138t/v/2/pv/1/ev/7/flavorId/0*~hmac=0f85a1aa9e9bc662b97e838e084bb9243ec9099eeceb876a5dc64064a7f1781f"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_e9lg138t/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_hgexa4bx/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_66ae32bf.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_66ae32bf.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_66ae32bf.jpeg","publish_date":"April 22, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_66ae32bf.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_66ae32bf.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"DIY WALL•E Succulent Garden | DIY by Disney Style","type":"Video","href":"https://video.disney.com/watch/diy-wall-e-succulent-garden-diy-by-disney-style-586ea1f5fab88ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"586e6f1648f6bebd6b4f2a72","slug":"it-s-a-small-world-3d-nail-art-tips-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"It's A Small World' 3D Nail Art | TIPS by Disney Style","duration":"1:59","duration_sec":119,"duration_iso":"T00H01M59S","description":"Celebrate one of Disney Parks' timeless attractions with nail art from artist Britney Tokyo.","analytics":"vid||||1_yz5khuav|","adId":"1_yz5khuav","analyticsId":"1_yz5khuav","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5cba1f8e4987350001ac1403","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_yz5khuav/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"119","msDuration":"119000","durationType":null,"id":"1_yz5khuav","name":"It's A Small World' 3D Nail Art | TIPS by Disney Style","description":"Celebrate one of Disney Parks' timeless attractions with nail art from artist Britney Tokyo.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1555701347","updatedAt":1555702675,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_yz5khuav/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Its A Small World 3D Nail Art | TIPS by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Celebrate one of Disney Parks timeless attractions with nail art from artist Britney Tokyo. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_yz5khuav/version/100062","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"816ed6a862d711e9bd4ff35352bd0953","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_yz5khuav","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"586e6f1648f6bebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"4d3a78879c47877bb55bd685","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,56d0bfdfc855ac798f365344,556f58a15831a481bb85c21e,53fb404a4414785152c57f80,4d3a78879c47877bb55bd685,556f58eddb635481bb85c21e,55770c0d5aca8d87af578f03,53829a0f23e0a595ec6bb3b5,586976e02f27adacb04ec2eb","Locales":"en,en-US","HouseId":"TIPS239","thumbnail_updatedAt":"1555702675"},"data_id":"1_yz5khuav","group":"us","source":"kaltura","id":"5cba1f8e4987350001ac1403"},{"_id":"5cba1f8e4987350001ac1404","account":"1.0","data":{},"data_id":"816ed6a862d711e9bd4ff35352bd0953","group":null,"source":"house_number","id":"5cba1f8e4987350001ac1404"}],"embedURL":"https://secure.disney.com/embed/586e6f1648f6bebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["4d3a78879c47877bb55bd685"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-22T09:00:02-07:00","created_at":"2019-04-22T09:00:03-07:00","flavors":[{"bitrate":468,"format":"mp4","id":"5cba23c676cf5100011c907d","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1_au6w72xb/fileName/It_s_A_Small_World__3D_Nail_Art___TIPS_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1*~hmac=d9696c8232e6fea7c21db0c1d122422a3785417d5b527c72fb6a9903e8a644a7"},{"bitrate":667,"format":"mp4","id":"5cba23c676cf5100011c907f","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1_q1cyqyem/fileName/It_s_A_Small_World__3D_Nail_Art___TIPS_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1*~hmac=d9696c8232e6fea7c21db0c1d122422a3785417d5b527c72fb6a9903e8a644a7"},{"bitrate":964,"format":"mp4","id":"5cba23c676cf5100011c9080","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1_w7xn0bci/fileName/It_s_A_Small_World__3D_Nail_Art___TIPS_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1*~hmac=d9696c8232e6fea7c21db0c1d122422a3785417d5b527c72fb6a9903e8a644a7"},{"bitrate":1456,"format":"mp4","id":"5cba23c676cf5100011c9081","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1_cxpwro5f/fileName/It_s_A_Small_World__3D_Nail_Art___TIPS_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1*~hmac=d9696c8232e6fea7c21db0c1d122422a3785417d5b527c72fb6a9903e8a644a7"},{"bitrate":2628,"format":"mp4","id":"5cba23c676cf5100011c9082","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1_8qvpcewx/fileName/It_s_A_Small_World__3D_Nail_Art___TIPS_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1*~hmac=d9696c8232e6fea7c21db0c1d122422a3785417d5b527c72fb6a9903e8a644a7"},{"bitrate":3772,"format":"mp4","id":"5cba23c676cf5100011c9083","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1_mi4c23re/fileName/It_s_A_Small_World__3D_Nail_Art___TIPS_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_yz5khuav/v/1/pv/1/ev/7/flavorId/1*~hmac=d9696c8232e6fea7c21db0c1d122422a3785417d5b527c72fb6a9903e8a644a7"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_yz5khuav/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_0acc9e94.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_0acc9e94.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_0acc9e94.jpeg","publish_date":"April 22, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_0acc9e94.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_0acc9e94.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"It's A Small World' 3D Nail Art | TIPS by Disney Style","type":"Video","href":"https://video.disney.com/watch/it-s-a-small-world-3d-nail-art-tips-by-disney-style-586e6f1648f6bebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"586e607349c63ebd6b4f2a72","slug":"we-learned-all-about-the-lego-marvel-studios-avengers-endgame-sets","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"We Learned All About the LEGO Marvel Studios' Avengers: Endgame Sets","duration":"4:46","duration_sec":286,"duration_iso":"T00H04M46S","description":"Marvel fans, assemble! These LEGO Marvel Studios' Avengers: Endgame sets are epic. Ad for The LEGO Group. \r\nCatch the film in theaters April 26.","analytics":"vid||||1_pah88vwj|","adId":"1_pah88vwj","analyticsId":"1_pah88vwj","vType":"Advertising","adPattern":"C","externals":[{"_id":"5cba105111e13d000112853a","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_pah88vwj/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"3","views":"5","lastPlayedAt":"1555696800","width":"1920","height":"1080","duration":"286","msDuration":"286000","durationType":null,"id":"1_pah88vwj","name":"We Learned All About the LEGO Marvel Studios' Avengers: Endgame Sets","description":"Marvel fans, assemble! These LEGO Marvel Studios' Avengers: Endgame sets are epic. Ad for The LEGO Group. \nCatch the film in theaters April 26.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1555697405","updatedAt":1555958254,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_pah88vwj/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| We Learned All About the LEGO Marvel Studios Avengers: Endgame Sets us-video, matterhorn-asset-import, kaltura-hosted Marvel fans, assemble! These LEGO Marvel Studios Avengers: Endgame sets are epic. Ad for The LEGO Group. Catch the film in theaters April 26. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_pah88vwj/version/100061","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"5b8e84fd62ce11e9a4f6f35352bd0953","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_pah88vwj","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"586e607349c63ebd6b4f2a72","PromoType":"Consumer Product","VideoType":"Advertising","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"5696c727445cb444f60328dd,5364631582d35eb77b849c41,53fb404a4414785152c57f80,56d0c08c1f9a954ff02997de,53fb407f00a5430d5208dca2,55cdee529a76637c8b8db00d,53829807f5d4ec72c2bc8f6a,55770c21d3c66d87af578f03,53fb4065ac90775d779c5793,55bae65f5544598083d8f855,538295926b829597a0b9652c,55770c0d5aca8d87af578f03","Locales":"en,en-US","thumbnail_updatedAt":"1555958254"},"data_id":"1_pah88vwj","group":"us","source":"kaltura","id":"5cba105111e13d000112853a"},{"_id":"5cba105111e13d000112853b","account":"1.0","data":{},"data_id":"5b8e84fd62ce11e9a4f6f35352bd0953","group":null,"source":"house_number","id":"5cba105111e13d000112853b"}],"embedURL":"https://secure.disney.com/embed/586e607349c63ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364631582d35eb77b849c41"],"networks":null},"content_date":"2019-04-22T09:00:00-07:00","created_at":"2019-04-22T09:00:01-07:00","flavors":[{"bitrate":464,"format":"mp4","id":"5cbe09ff51ec6e005c82b32d","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0_aah3bx3b/fileName/We_Learned_All_About_the_LEGO_Marvel_Studios__Avengers:_Endgame_Sets_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0*~hmac=5e56118b33337cd26e7e541234314f384dda8f273beeed511f40218e4d63a36c"},{"bitrate":665,"format":"mp4","id":"5cbe09ff51ec6e005c82b330","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0_jfd30jb4/fileName/We_Learned_All_About_the_LEGO_Marvel_Studios__Avengers:_Endgame_Sets_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0*~hmac=5e56118b33337cd26e7e541234314f384dda8f273beeed511f40218e4d63a36c"},{"bitrate":910,"format":"mp4","id":"5cbe09ff51ec6e005c82b331","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0_rmxeqkzk/fileName/We_Learned_All_About_the_LEGO_Marvel_Studios__Avengers:_Endgame_Sets_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0*~hmac=5e56118b33337cd26e7e541234314f384dda8f273beeed511f40218e4d63a36c"},{"bitrate":1458,"format":"mp4","id":"5cbe09ff51ec6e005c82b332","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0_4cuidtqb/fileName/We_Learned_All_About_the_LEGO_Marvel_Studios__Avengers:_Endgame_Sets_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0*~hmac=5e56118b33337cd26e7e541234314f384dda8f273beeed511f40218e4d63a36c"},{"bitrate":2503,"format":"mp4","id":"5cbe09ff51ec6e005c82b333","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0_obshchsw/fileName/We_Learned_All_About_the_LEGO_Marvel_Studios__Avengers:_Endgame_Sets_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0*~hmac=5e56118b33337cd26e7e541234314f384dda8f273beeed511f40218e4d63a36c"},{"bitrate":3935,"format":"mp4","id":"5cbe09ff51ec6e005c82b334","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0_vflx6xqz/fileName/We_Learned_All_About_the_LEGO_Marvel_Studios__Avengers:_Endgame_Sets_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_pah88vwj/v/2/pv/1/ev/7/flavorId/0*~hmac=5e56118b33337cd26e7e541234314f384dda8f273beeed511f40218e4d63a36c"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_pah88vwj/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_ex1p117n/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_f85e4254.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_f85e4254.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_f85e4254.jpeg","publish_date":"April 22, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_f85e4254.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_f85e4254.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"We Learned All About the LEGO Marvel Studios' Avengers: Endgame Sets","type":"Video","href":"https://video.disney.com/watch/we-learned-all-about-the-lego-marvel-studios-avengers-endgame-sets-586e607349c63ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"586d61cec2df1ebd6b4f2a72","slug":"cinderella-flower-fashion-illustration-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Cinderella Flower Fashion Illustration | Disney Style","duration":"1:00","duration_sec":60,"duration_iso":"T00H01M00S","description":"Ad for Zales. Fashion illustrator Sunny Gu reimagines Cinderella with watercolor and flowers.","analytics":"vid||||1_5es52awu|","adId":"1_5es52awu","analyticsId":"1_5es52awu","vType":"Advertising","adPattern":"C","externals":[{"_id":"5cb904ac5504f80001b3b1fe","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_5es52awu/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"60","msDuration":"60000","durationType":null,"id":"1_5es52awu","name":"Cinderella Flower Fashion Illustration | Disney Style","description":"Ad for Zales. Fashion illustrator Sunny Gu reimagines Cinderella with watercolor and flowers.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1555629050","updatedAt":1555629855,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_5es52awu/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Cinderella Flower Fashion Illustration | Disney Style us-video, matterhorn-asset-import, kaltura-hosted Ad for Zales. Fashion illustrator Sunny Gu reimagines Cinderella with watercolor and flowers. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_5es52awu/version/100061","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"34bb0700622f11e9a290f366268189c4","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_5es52awu","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"586d61cec2df1ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1555629609","PromoType":"None","VideoType":"Advertising","Distributor":"4d3a78879c47877bb55bd685","Tags":"53fb407f00a5430d5208dca2,4b9060051c58950f422a8ba2,548991d9aca58b885618c2a5,55770c21d3c66d87af578f03,55c403c744f29586ab44c45c,53fb404a4414785152c57f80,53fb4065ac90775d779c5793,58645ba094c045000aed1b7e,4d3a78879c47877bb55bd685,538295926b829597a0b9652c,55770c0d5aca8d87af578f03","HouseId":"SAV215"},"data_id":"1_5es52awu","group":"us","source":"kaltura","id":"5cb904ac5504f80001b3b1fe"},{"_id":"5cb904ac5504f80001b3b1ff","account":"1.0","data":{},"data_id":"34bb0700622f11e9a290f366268189c4","group":null,"source":"house_number","id":"5cb904ac5504f80001b3b1ff"}],"embedURL":"https://secure.disney.com/embed/586d61cec2df1ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["5487245af1da6d710a05657c"],"publishers":["4d3a78879c47877bb55bd685"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-19T09:00:01-07:00","created_at":"2019-04-19T09:00:01-07:00","flavors":[{"bitrate":469,"format":"mp4","id":"5cb9073fc02aa8000102b886","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1_nrta5498/fileName/Cinderella_Flower_Fashion_Illustration___Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1*~hmac=2e1ef61eb8851fa2b6967e321e6256a738b2d1766288990cf99a5561befda586"},{"bitrate":666,"format":"mp4","id":"5cb9073fc02aa8000102b889","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1_8s204ewd/fileName/Cinderella_Flower_Fashion_Illustration___Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1*~hmac=2e1ef61eb8851fa2b6967e321e6256a738b2d1766288990cf99a5561befda586"},{"bitrate":899,"format":"mp4","id":"5cb9073fc02aa8000102b88a","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1_nlu5nshc/fileName/Cinderella_Flower_Fashion_Illustration___Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1*~hmac=2e1ef61eb8851fa2b6967e321e6256a738b2d1766288990cf99a5561befda586"},{"bitrate":1430,"format":"mp4","id":"5cb9073fc02aa8000102b88b","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1_l9gbryqx/fileName/Cinderella_Flower_Fashion_Illustration___Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1*~hmac=2e1ef61eb8851fa2b6967e321e6256a738b2d1766288990cf99a5561befda586"},{"bitrate":2421,"format":"mp4","id":"5cb9073fc02aa8000102b88c","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1_doos5gij/fileName/Cinderella_Flower_Fashion_Illustration___Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1*~hmac=2e1ef61eb8851fa2b6967e321e6256a738b2d1766288990cf99a5561befda586"},{"bitrate":3660,"format":"mp4","id":"5cb9073fc02aa8000102b88d","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1_ponzoumk/fileName/Cinderella_Flower_Fashion_Illustration___Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_5es52awu/v/1/pv/1/ev/7/flavorId/1*~hmac=2e1ef61eb8851fa2b6967e321e6256a738b2d1766288990cf99a5561befda586"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_5es52awu/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/0_si0s7hto/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_862660ff.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_862660ff.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_862660ff.jpeg","publish_date":"April 19, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_862660ff.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_862660ff.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Cinderella Flower Fashion Illustration | Disney Style","type":"Video","href":"https://video.disney.com/watch/cinderella-flower-fashion-illustration-disney-style-586d61cec2df1ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58649c55c7d6aebd6b4f2a72","slug":"ariel-watercolor-sketchbook-by-omd","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Ariel Watercolor | Sketchbook by OMD","duration":"1:00","duration_sec":60,"duration_iso":"T00H01M00S","description":"Ad for Zales. Watch Mary Doodles paint Ariel with mesmerizing watercolor.","analytics":"vid||||1_jfrarzm4|","adId":"1_jfrarzm4","analyticsId":"1_jfrarzm4","vType":"Advertising","adPattern":"C","externals":[{"_id":"5cafdc0b8da52a00605ff191","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_jfrarzm4/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"60","msDuration":"60000","durationType":null,"id":"1_jfrarzm4","name":"Ariel Watercolor | Sketchbook by OMD","description":"Ad for Zales. Watch Mary Doodles paint Ariel with mesmerizing watercolor.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1555026285","updatedAt":1555030248,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_jfrarzm4/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Ariel Watercolor | Sketchbook by OMD us-video, matterhorn-asset-import, kaltura-hosted Ad for Zales. Watch Mary Doodles paint Ariel with mesmerizing watercolor. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_jfrarzm4/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"c91e22335cb311e98beb6ba1d4fffc00","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_jfrarzm4","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58649c55c7d6aebd6b4f2a72","PromoType":"None","VideoType":"Advertising","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"5364631582d35eb77b849c41,55cdeeb98340637c8b8db00d,5382996f1a335c6f59a0ee62,53fb407f00a5430d5208dca2,55cdee529a76637c8b8db00d,5848b4d6e101337fa2fc0b06,55c403c744f29586ab44c45c,540454e2cf942468780d9686,53fb4065ac90775d779c5793,53fb404a4414785152c57f80,55770c21d3c66d87af578f03,55770c0d5aca8d87af578f03","Locales":"en,en-US","HouseId":"SKTCH509","thumbnail_updatedAt":"1555028677"},"data_id":"1_jfrarzm4","group":"us","source":"kaltura","id":"5cafdc0b8da52a00605ff191"},{"_id":"5cafdc0b8da52a00605ff192","account":"1.0","data":{},"data_id":"c91e22335cb311e98beb6ba1d4fffc00","group":null,"source":"house_number","id":"5cafdc0b8da52a00605ff192"}],"embedURL":"https://secure.disney.com/embed/58649c55c7d6aebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364631582d35eb77b849c41"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-12T09:00:01-07:00","created_at":"2019-04-12T09:00:02-07:00","flavors":[{"bitrate":469,"format":"mp4","id":"5cafe87d84f2160001c8c706","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0_6oo1w9n7/fileName/Ariel_Watercolor___Sketchbook_by_OMD_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0*~hmac=47de121dacbf67f3650c43bcb013a0a973565542e2b0dac020f853d7738d27c7"},{"bitrate":668,"format":"mp4","id":"5cafe87d84f2160001c8c708","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0_gx8qh0r2/fileName/Ariel_Watercolor___Sketchbook_by_OMD_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0*~hmac=47de121dacbf67f3650c43bcb013a0a973565542e2b0dac020f853d7738d27c7"},{"bitrate":964,"format":"mp4","id":"5cafe87d84f2160001c8c709","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0_maii6e2m/fileName/Ariel_Watercolor___Sketchbook_by_OMD_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0*~hmac=47de121dacbf67f3650c43bcb013a0a973565542e2b0dac020f853d7738d27c7"},{"bitrate":1464,"format":"mp4","id":"5cafe87d84f2160001c8c70a","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0_oyr0xfwl/fileName/Ariel_Watercolor___Sketchbook_by_OMD_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0*~hmac=47de121dacbf67f3650c43bcb013a0a973565542e2b0dac020f853d7738d27c7"},{"bitrate":2628,"format":"mp4","id":"5cafe87d84f2160001c8c70b","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0_r9qrmy0j/fileName/Ariel_Watercolor___Sketchbook_by_OMD_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0*~hmac=47de121dacbf67f3650c43bcb013a0a973565542e2b0dac020f853d7738d27c7"},{"bitrate":3923,"format":"mp4","id":"5cafe87d84f2160001c8c70c","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0_j9y41gkl/fileName/Ariel_Watercolor___Sketchbook_by_OMD_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_jfrarzm4/v/2/pv/1/ev/7/flavorId/0*~hmac=47de121dacbf67f3650c43bcb013a0a973565542e2b0dac020f853d7738d27c7"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_jfrarzm4/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_cddd5f8d.png?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_cddd5f8d.png?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_cddd5f8d.png","publish_date":"April 12, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com/","title":"Visit Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_cddd5f8d.png?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_cddd5f8d.png","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Ariel Watercolor | Sketchbook by OMD","type":"Video","href":"https://video.disney.com/watch/ariel-watercolor-sketchbook-by-omd-58649c55c7d6aebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"5863077c1e676ebd6b4f2a72","slug":"5-types-of-siblings-as-told-by-disney-characters-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"5 Types of Siblings, As Told by Disney Characters | Oh My Disney","duration":"0:46","duration_sec":46,"duration_iso":"T00H00M46S","description":"It's National Siblings Day! Which Disney characters best represent you and your sibling?","analytics":"vid||||1_o9cmm8xc|","adId":"1_o9cmm8xc","analyticsId":"1_o9cmm8xc","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5cae29c5e22a2a0001854883","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_o9cmm8xc/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"47","msDuration":"46677","durationType":null,"id":"1_o9cmm8xc","name":"5 Types of Siblings, As Told by Disney Characters | Oh My Disney","description":"It's National Siblings Day! Which Disney characters best represent you and your sibling?","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1554917609","updatedAt":1554918583,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_o9cmm8xc/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| 5 Types of Siblings, As Told by Disney Characters | Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted Its National Siblings Day! Which Disney characters best represent you and your sibling? ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_o9cmm8xc/version/100061","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"c1143c945bb611e98c96a7c346b5fb7f","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_o9cmm8xc","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"5863077c1e676ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"4b906004b47e950f422a8ba2,55770c0d5aca8d87af578f03,4c7e0598949a95b251b7f4dd,53fb404a4414785152c57f80,4b906004b48c550f422a8ba2,4dee62fde782aa226e63be24,4b906004b44cd50f422a8ba2,585805fcd2b7477a54a6bc92,4be2411e6ee2326ee9b03bc9,4dee653dfdf5ba226e63be24,53fb407f00a5430d5208dca2,538298324ad848a9361c5bea,4be8d5a3649b4b5d2b34e58d,4cafb7e11f748efc7e14088c,4be8668672890a1c99253929,4b9060051b7ac50f422a8ba2,4be866fe724a6a1c99253929,4dee6468d279aa226e63be24,4be86687fa103a1c99253929,4b906004b4b0250f422a8ba2,517e0a2f460846c42c352998,4caf5ed3f0c6ef47867ca57a,5364631582d35eb77b849c41,4bf7e4da669b3b7efb7fbee2,53fb4065ac90775d779c5793,55cdee529a76637c8b8db00d,4be8d5a1ec067b5d2b34e58d,4b906004b465f50f422a8ba2,4be2418d3814f97162b03fbf,4de44a13f811d775b8814b49,4dee6468c67bba226e63be24,517e0a2f4f61f6c42c352998","Locales":"en,en-US","HouseId":"ONV201","thumbnail_updatedAt":"1554918531"},"data_id":"1_o9cmm8xc","group":"us","source":"kaltura","id":"5cae29c5e22a2a0001854883"},{"_id":"5cae29c5e22a2a0001854884","account":"1.0","data":{},"data_id":"c1143c945bb611e98c96a7c346b5fb7f","group":null,"source":"house_number","id":"5cae29c5e22a2a0001854884"}],"embedURL":"https://secure.disney.com/embed/5863077c1e676ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364631582d35eb77b849c41"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-10T10:51:27-07:00","created_at":"2019-04-10T10:51:28-07:00","flavors":[{"bitrate":465,"format":"mp4","id":"5cae2ccf36649e0001dd6942","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1_5dbb6225/fileName/5_Types_of_Siblings,_As_Told_by_Disney_Characters___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1*~hmac=f02c92ea6b97294d0bc522ef8e7dc619b4f3d94ee0453fd9486eab3c10050626"},{"bitrate":664,"format":"mp4","id":"5cae2ccf36649e0001dd6944","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1_md8uv7sp/fileName/5_Types_of_Siblings,_As_Told_by_Disney_Characters___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1*~hmac=f02c92ea6b97294d0bc522ef8e7dc619b4f3d94ee0453fd9486eab3c10050626"},{"bitrate":912,"format":"mp4","id":"5cae2ccf36649e0001dd6945","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1_1ihzvlbj/fileName/5_Types_of_Siblings,_As_Told_by_Disney_Characters___Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1*~hmac=f02c92ea6b97294d0bc522ef8e7dc619b4f3d94ee0453fd9486eab3c10050626"},{"bitrate":1476,"format":"mp4","id":"5cae2ccf36649e0001dd6946","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1_2uw6t0eu/fileName/5_Types_of_Siblings,_As_Told_by_Disney_Characters___Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1*~hmac=f02c92ea6b97294d0bc522ef8e7dc619b4f3d94ee0453fd9486eab3c10050626"},{"bitrate":2468,"format":"mp4","id":"5cae2ccf36649e0001dd6947","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1_px8ak6h5/fileName/5_Types_of_Siblings,_As_Told_by_Disney_Characters___Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1*~hmac=f02c92ea6b97294d0bc522ef8e7dc619b4f3d94ee0453fd9486eab3c10050626"},{"bitrate":3872,"format":"mp4","id":"5cae2ccf36649e0001dd6948","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1_mtk79xc1/fileName/5_Types_of_Siblings,_As_Told_by_Disney_Characters___Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_o9cmm8xc/v/1/pv/1/ev/7/flavorId/1*~hmac=f02c92ea6b97294d0bc522ef8e7dc619b4f3d94ee0453fd9486eab3c10050626"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_o9cmm8xc/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_oj2t3gv3/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_a3cf0093.png?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_a3cf0093.png?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_a3cf0093.png","publish_date":"April 10, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com/","title":"Visit Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_a3cf0093.png?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_a3cf0093.png","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"5 Types of Siblings, As Told by Disney Characters | Oh My Disney","type":"Video","href":"https://video.disney.com/watch/5-types-of-siblings-as-told-by-disney-characters-oh-my-disney-5863077c1e676ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"585d1b34d116aebd6b4f2a72","slug":"kids-talk-disney-siblings-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Kids Talk Disney: Siblings | Disney Family","duration":"1:55","duration_sec":115,"duration_iso":"T00H01M55S","description":"In celebration of Siblings Day, watch as kids talk about which Disney characters they'd like to have as their brother or sister.","analytics":"vid||||1_ek9tze1f|","adId":"1_ek9tze1f","analyticsId":"1_ek9tze1f","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5ca7f3cd233c620001a0dbad","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_ek9tze1f/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"115","msDuration":"115000","durationType":null,"id":"1_ek9tze1f","name":"Kids Talk Disney: Siblings | Disney Family","description":"In celebration of Siblings Day, watch as kids talk about which Disney characters they'd like to have as their brother or sister.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1554510587","updatedAt":1554511905,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_ek9tze1f/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Kids Talk Disney: Siblings | Disney Family us-video, matterhorn-asset-import, kaltura-hosted In celebration of Siblings Day, watch as kids talk about which Disney characters theyd like to have as their brother or sister. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_ek9tze1f/version/100042","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"1483e897580311e9b59127e60e1f9446","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_ek9tze1f","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"585d1b34d116aebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1554511351","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","Tags":"4b9060049d55e50f422a8ba2,53fb407f00a5430d5208dca2,53fb404a4414785152c57f80,4fc22e8599dbd8e307639c8f,55770c0d5aca8d87af578f03,4b9060051bee550f422a8ba2,4b906004b465f50f422a8ba2,5364634694e2a5c8a5c3cff7,53fb4065ac90775d779c5793,4b906004b3de950f422a8ba2,4be89148cbe52bc28bc15bb2,585805eb5f6e277a54a6bc92,4bea45420407cb5f31c7a788,4be1632ea4522ba8674453da,581bc66613149696971d4f1f,55cdee529a76637c8b8db00d,4b9060053452050f422a8ba2","HouseId":"KTD002","PromoType":"None"},"data_id":"1_ek9tze1f","group":"us","source":"kaltura","id":"5ca7f3cd233c620001a0dbad"},{"_id":"5ca7f3cd233c620001a0dbae","account":"1.0","data":{},"data_id":"1483e897580311e9b59127e60e1f9446","group":null,"source":"house_number","id":"5ca7f3cd233c620001a0dbae"}],"embedURL":"https://secure.disney.com/embed/585d1b34d116aebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-08T09:00:00-07:00","created_at":"2019-04-08T09:00:01-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5ca7f83a59f9bc005e9b2751","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1_6v2rtq4c/fileName/Kids_Talk_Disney:_Siblings___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1*~hmac=ec801a9df59c5b768ed7f072911206559507df662c2a713f01516ca28ae5ef34"},{"bitrate":664,"format":"mp4","id":"5ca7f83a59f9bc005e9b2754","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1_gcm9lhwi/fileName/Kids_Talk_Disney:_Siblings___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1*~hmac=ec801a9df59c5b768ed7f072911206559507df662c2a713f01516ca28ae5ef34"},{"bitrate":912,"format":"mp4","id":"5ca7f83a59f9bc005e9b2755","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1_x9tjj36x/fileName/Kids_Talk_Disney:_Siblings___Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1*~hmac=ec801a9df59c5b768ed7f072911206559507df662c2a713f01516ca28ae5ef34"},{"bitrate":1467,"format":"mp4","id":"5ca7f83a59f9bc005e9b2756","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1_bkg1qelr/fileName/Kids_Talk_Disney:_Siblings___Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1*~hmac=ec801a9df59c5b768ed7f072911206559507df662c2a713f01516ca28ae5ef34"},{"bitrate":2471,"format":"mp4","id":"5ca7f83a59f9bc005e9b2757","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1_mvvo80t3/fileName/Kids_Talk_Disney:_Siblings___Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1*~hmac=ec801a9df59c5b768ed7f072911206559507df662c2a713f01516ca28ae5ef34"},{"bitrate":3908,"format":"mp4","id":"5ca7f83a59f9bc005e9b2758","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1_udqaay9b/fileName/Kids_Talk_Disney:_Siblings___Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_ek9tze1f/v/1/pv/1/ev/7/flavorId/1*~hmac=ec801a9df59c5b768ed7f072911206559507df662c2a713f01516ca28ae5ef34"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_ek9tze1f/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_pvlaou87/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_9555f09c.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_9555f09c.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_9555f09c.jpeg","publish_date":"April 8, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_9555f09c.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_9555f09c.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Kids Talk Disney: Siblings | Disney Family","type":"Video","href":"https://video.disney.com/watch/kids-talk-disney-siblings-disney-family-585d1b34d116aebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"585d1655d55c0ebd6b4f2a72","slug":"let-s-talk-disney-style-a-goofy-movie-fashion-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Let's Talk Disney Style: A Goofy Movie | Fashion by Disney Style","duration":"1:18","duration_sec":78,"duration_iso":"T00H01M18S","description":"We're breaking down the '90s style from the animated classic A Goofy Movie.","analytics":"vid||||1_z4q7qrjd|","adId":"1_z4q7qrjd","analyticsId":"1_z4q7qrjd","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5ca7eea4d298a20001b4def6","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_z4q7qrjd/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"78","msDuration":"78000","durationType":null,"id":"1_z4q7qrjd","name":"Let's Talk Disney Style: A Goofy Movie | Fashion by Disney Style","description":"We're breaking down the '90s style from the animated classic A Goofy Movie.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1554509279","updatedAt":1554510128,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_z4q7qrjd/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Lets Talk Disney Style: A Goofy Movie | Fashion by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Were breaking down the 90s style from the animated classic A Goofy Movie. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_z4q7qrjd/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"092695a1580011e9bbef27e60e1f9446","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_z4q7qrjd","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"585d1655d55c0ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","PromoType":"None","VideoType":"Recurring Segment","Distributor":"4d3a78879c47877bb55bd685","Tags":"53fb404a4414785152c57f80,53fb407f00a5430d5208dca2,51bf5ee8a523a2ee40bc9274,53fb4065ac90775d779c5793,55cdeead07a6e37c8b8db00d,51bf5ec4a77fd2ee40bc9274,556f58a15831a481bb85c21e,53829992ebfd5b06c7f34118,4ba34c16dddba59e961b9666,5848b526a832037fa2fc0b06,55770c0d5aca8d87af578f03,4d3a78879c47877bb55bd685,4dee62b473193a226e63be24,51bf5ee86bd2d2ee40bc9274,55cdee529a76637c8b8db00d","HouseId":"SOO2069","thumbnail_updatedAt":"1554510128"},"data_id":"1_z4q7qrjd","group":"us","source":"kaltura","id":"5ca7eea4d298a20001b4def6"},{"_id":"5ca7eea4d298a20001b4def7","account":"1.0","data":{},"data_id":"092695a1580011e9bbef27e60e1f9446","group":null,"source":"house_number","id":"5ca7eea4d298a20001b4def7"}],"embedURL":"https://secure.disney.com/embed/585d1655d55c0ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4bdfd35102a87496bbe03d00"],"publishers":["4be8be83931cbf77c4e6b379","4d3a78879c47877bb55bd685"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"content_date":"2019-04-07T09:00:00-07:00","created_at":"2019-04-07T09:00:01-07:00","flavors":[{"bitrate":468,"format":"mp4","id":"5ca7f139dd99e100017c276f","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1_8kjebvzv/fileName/Let_s_Talk_Disney_Style:_A_Goofy_Movie___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1*~hmac=93b25b879db497b8fb34129752f072d37053a8cb6d1ec90540f3575a7f1d808c"},{"bitrate":667,"format":"mp4","id":"5ca7f139dd99e100017c2772","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1_oqg12eld/fileName/Let_s_Talk_Disney_Style:_A_Goofy_Movie___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1*~hmac=93b25b879db497b8fb34129752f072d37053a8cb6d1ec90540f3575a7f1d808c"},{"bitrate":903,"format":"mp4","id":"5ca7f139dd99e100017c2773","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1_2k8054gp/fileName/Let_s_Talk_Disney_Style:_A_Goofy_Movie___Fashion_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1*~hmac=93b25b879db497b8fb34129752f072d37053a8cb6d1ec90540f3575a7f1d808c"},{"bitrate":1450,"format":"mp4","id":"5ca7f139dd99e100017c2774","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1_kamrd6cr/fileName/Let_s_Talk_Disney_Style:_A_Goofy_Movie___Fashion_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1*~hmac=93b25b879db497b8fb34129752f072d37053a8cb6d1ec90540f3575a7f1d808c"},{"bitrate":2479,"format":"mp4","id":"5ca7f139dd99e100017c2775","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1_qp0uznit/fileName/Let_s_Talk_Disney_Style:_A_Goofy_Movie___Fashion_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1*~hmac=93b25b879db497b8fb34129752f072d37053a8cb6d1ec90540f3575a7f1d808c"},{"bitrate":3861,"format":"mp4","id":"5ca7f139dd99e100017c2776","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1_xn2bkhd2/fileName/Let_s_Talk_Disney_Style:_A_Goofy_Movie___Fashion_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_z4q7qrjd/v/1/pv/1/ev/7/flavorId/1*~hmac=93b25b879db497b8fb34129752f072d37053a8cb6d1ec90540f3575a7f1d808c"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_z4q7qrjd/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_4t7gcx4m/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_d5acca2e.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_d5acca2e.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_d5acca2e.jpeg","publish_date":"April 7, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_d5acca2e.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_d5acca2e.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Let's Talk Disney Style: A Goofy Movie | Fashion by Disney Style","type":"Video","href":"https://video.disney.com/watch/let-s-talk-disney-style-a-goofy-movie-fashion-by-disney-style-585d1655d55c0ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"585cd0fe3d4afebd6b4f2a72","slug":"belle-flower-fashion-illustration-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Belle Flower Fashion Illustration | Disney Style","duration":"1:00","duration_sec":60,"duration_iso":"T00H01M00S","description":"Fashion illustrator Sunny Gu reimagines Belle's beautiful ballgown with watercolor and flowers. Ad for Zales.","analytics":"vid||||1_p6kifv7f|","adId":"1_p6kifv7f","analyticsId":"1_p6kifv7f","vType":"Advertising","adPattern":"C","externals":[{"_id":"5ca7a5fdea8c7500018e7a11","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_p6kifv7f/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"145456","views":"246445","lastPlayedAt":"1554692400","width":"1920","height":"1080","duration":"60","msDuration":"60000","durationType":null,"id":"1_p6kifv7f","name":"Belle Flower Fashion Illustration | Disney Style","description":"Fashion illustrator Sunny Gu reimagines Belle's beautiful ballgown with watercolor and flowers. Ad for Zales.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1554490665","updatedAt":1554745027,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_p6kifv7f/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Belle Flower Fashion Illustration | Disney Style us-video, matterhorn-asset-import, kaltura-hosted Fashion illustrator Sunny Gu reimagines Belles beautiful ballgown with watercolor and flowers. Ad for Zales. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_p6kifv7f/version/100081","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"b26789de57d411e9af081f53e7706dd5","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_p6kifv7f","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"585cd0fe3d4afebd6b4f2a72","thumbnail_updatedAt":"1554744605","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","PromoType":"None","VideoType":"Advertising","Distributor":"4d3a78879c47877bb55bd685","Tags":"538298eca1bfec6f59a0ee62,53fb407f00a5430d5208dca2,55cdeeb98340637c8b8db00d,53fb4065ac90775d779c5793,538295926b829597a0b9652c,5848b316d6aef15b8397d88d,55770c21d3c66d87af578f03,53fb404a4414785152c57f80,4d3a78879c47877bb55bd685,540454e2cf942468780d9686,55770c0d5aca8d87af578f03","HouseId":"SAV213"},"data_id":"1_p6kifv7f","group":"us","source":"kaltura","id":"5ca7a5fdea8c7500018e7a11"},{"_id":"5ca7a5fdea8c7500018e7a12","account":"1.0","data":{},"data_id":"b26789de57d411e9af081f53e7706dd5","group":null,"source":"house_number","id":"5ca7a5fdea8c7500018e7a12"}],"embedURL":"https://secure.disney.com/embed/585cd0fe3d4afebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["4d3a78879c47877bb55bd685"],"networks":null},"content_date":"2019-04-05T12:16:00-07:00","created_at":"2019-04-05T12:16:45-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5cab856559f9bc005b9dd630","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1_kdnwum3e/fileName/Belle_Flower_Fashion_Illustration___Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1*~hmac=ab6e7a1596f0de602ca7a9c330a2f5d44c43e2bb0316788b0106b6cd613d0b85"},{"bitrate":664,"format":"mp4","id":"5cab856559f9bc005b9dd633","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1_h1cds1yk/fileName/Belle_Flower_Fashion_Illustration___Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1*~hmac=ab6e7a1596f0de602ca7a9c330a2f5d44c43e2bb0316788b0106b6cd613d0b85"},{"bitrate":911,"format":"mp4","id":"5cab856559f9bc005b9dd634","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1_4vkiv5db/fileName/Belle_Flower_Fashion_Illustration___Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1*~hmac=ab6e7a1596f0de602ca7a9c330a2f5d44c43e2bb0316788b0106b6cd613d0b85"},{"bitrate":1463,"format":"mp4","id":"5cab856559f9bc005b9dd635","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1_5hxd3v5f/fileName/Belle_Flower_Fashion_Illustration___Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1*~hmac=ab6e7a1596f0de602ca7a9c330a2f5d44c43e2bb0316788b0106b6cd613d0b85"},{"bitrate":2438,"format":"mp4","id":"5cab856559f9bc005b9dd636","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1_goxzlbe4/fileName/Belle_Flower_Fashion_Illustration___Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1*~hmac=ab6e7a1596f0de602ca7a9c330a2f5d44c43e2bb0316788b0106b6cd613d0b85"},{"bitrate":3832,"format":"mp4","id":"5cab856559f9bc005b9dd637","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1_4mu42wqx/fileName/Belle_Flower_Fashion_Illustration___Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_p6kifv7f/v/1/pv/1/ev/7/flavorId/1*~hmac=ab6e7a1596f0de602ca7a9c330a2f5d44c43e2bb0316788b0106b6cd613d0b85"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_p6kifv7f/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_wchjnnzl/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_eb2cd91c.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_eb2cd91c.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_eb2cd91c.jpeg","publish_date":"April 5, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_eb2cd91c.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_eb2cd91c.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Belle Flower Fashion Illustration | Disney Style","type":"Video","href":"https://video.disney.com/watch/belle-flower-fashion-illustration-disney-style-585cd0fe3d4afebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"5857b781992deebd6b4f2a72","slug":"celebrate-your-birthday-in-disney-style-fashion-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Celebrate Your Birthday in Disney Style | Fashion by Disney Style","duration":"1:34","duration_sec":94,"duration_iso":"T00H01M34S","description":"Ad for Visa. What better way to spend your special day than at the Disneyland Resort with your BFFs?","analytics":"vid||||1_t0fks4mj|","adId":"1_t0fks4mj","analyticsId":"1_t0fks4mj","vType":"Advertising","adPattern":"C","externals":[{"_id":"5ca24d2971d549000146ca20","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_t0fks4mj/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"94","msDuration":"94000","durationType":null,"id":"1_t0fks4mj","name":"Celebrate Your Birthday in Disney Style | Fashion by Disney Style","description":"Ad for Visa. What better way to spend your special day than at the Disneyland Resort with your BFFs?","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1554140226","updatedAt":1554154066,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_t0fks4mj/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Celebrate Your Birthday in Disney Style | Fashion by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Ad for Visa. What better way to spend your special day than at the Disneyland Resort with your BFFs? ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_t0fks4mj/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"c480f8c254a411e997d627effb1453c0","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_t0fks4mj","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"5857b781992deebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1554142862","PromoType":"Parks","VideoType":"Advertising","Distributor":"4d3a78879c47877bb55bd685","Tags":"4b906005cba6350f422a8ba2,53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,556f58a15831a481bb85c21e,53829992ebfd5b06c7f34118,55770c21d3c66d87af578f03,55cdef0e7fa2f37c8b8db00d,53fb404a4414785152c57f80,4d3a78879c47877bb55bd685,5848b394500b915b8397d88d,55770c0d5aca8d87af578f03","HouseId":"SOO2067"},"data_id":"1_t0fks4mj","group":"us","source":"kaltura","id":"5ca24d2971d549000146ca20"},{"_id":"5ca24d2971d549000146ca21","account":"1.0","data":{},"data_id":"c480f8c254a411e997d627effb1453c0","group":null,"source":"house_number","id":"5ca24d2971d549000146ca21"}],"embedURL":"https://secure.disney.com/embed/5857b781992deebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["4d3a78879c47877bb55bd685"],"networks":null},"content_date":"2019-04-01T11:42:00-07:00","created_at":"2019-04-01T11:42:03-07:00","flavors":[{"bitrate":464,"format":"mp4","id":"5ca2825ada6b8d000151f3aa","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0_zcvkk6ex/fileName/Celebrate_Your_Birthday_in_Disney_Style___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0*~hmac=ad37818da628b50baa4f843ee2e35916742649a524920e3d2aa04c6c672e56da"},{"bitrate":664,"format":"mp4","id":"5ca2825ada6b8d000151f3ad","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0_ljb26yei/fileName/Celebrate_Your_Birthday_in_Disney_Style___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0*~hmac=ad37818da628b50baa4f843ee2e35916742649a524920e3d2aa04c6c672e56da"},{"bitrate":919,"format":"mp4","id":"5ca2825ada6b8d000151f3ae","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0_j60cj619/fileName/Celebrate_Your_Birthday_in_Disney_Style___Fashion_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0*~hmac=ad37818da628b50baa4f843ee2e35916742649a524920e3d2aa04c6c672e56da"},{"bitrate":1496,"format":"mp4","id":"5ca2825ada6b8d000151f3af","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0_8dvbcjn5/fileName/Celebrate_Your_Birthday_in_Disney_Style___Fashion_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0*~hmac=ad37818da628b50baa4f843ee2e35916742649a524920e3d2aa04c6c672e56da"},{"bitrate":2462,"format":"mp4","id":"5ca2825ada6b8d000151f3b0","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0_g9ctdvqt/fileName/Celebrate_Your_Birthday_in_Disney_Style___Fashion_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0*~hmac=ad37818da628b50baa4f843ee2e35916742649a524920e3d2aa04c6c672e56da"},{"bitrate":3847,"format":"mp4","id":"5ca2825ada6b8d000151f3b1","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0_rrf9hxv6/fileName/Celebrate_Your_Birthday_in_Disney_Style___Fashion_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_t0fks4mj/v/2/pv/1/ev/7/flavorId/0*~hmac=ad37818da628b50baa4f843ee2e35916742649a524920e3d2aa04c6c672e56da"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_t0fks4mj/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_jfl9erhr/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_f320c7a3.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_f320c7a3.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_f320c7a3.jpeg","publish_date":"April 1, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"advertising","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_f320c7a3.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_f320c7a3.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Celebrate Your Birthday in Disney Style | Fashion by Disney Style","type":"Video","href":"https://video.disney.com/watch/celebrate-your-birthday-in-disney-style-fashion-by-disney-style-5857b781992deebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"585401b5190a7ebd6b4f2a72","slug":"let-s-talk-disney-style-meet-the-robinsons-fashion-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Let's Talk Disney Style: Meet the Robinsons | Fashion by Disney Style","duration":"1:34","duration_sec":94,"duration_iso":"T00H01M34S","description":"We're breaking down the fun and futuristic fashion from Disney's Meet the Robinsons.","analytics":"vid||||1_u2qngcq6|","adId":"1_u2qngcq6","analyticsId":"1_u2qngcq6","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5c9e694fe6cf080001126e12","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_u2qngcq6/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"94","msDuration":"94000","durationType":null,"id":"1_u2qngcq6","name":"Let's Talk Disney Style: Meet the Robinsons | Fashion by Disney Style","description":"We're breaking down the fun and futuristic fashion from Disney's Meet the Robinsons.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1553885266","updatedAt":1553885911,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_u2qngcq6/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Lets Talk Disney Style: Meet the Robinsons | Fashion by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Were breaking down the fun and futuristic fashion from Disneys Meet the Robinsons. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_u2qngcq6/version/100061","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"24b0e18f525311e98d7f1bbcde98eb71","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_u2qngcq6","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"585401b5190a7ebd6b4f2a72","PromoType":"None","VideoType":"Recurring Segment","Distributor":"4d3a78879c47877bb55bd685","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"53fb404a4414785152c57f80,53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,4b9060051ca1150f422a8ba2,4b9060054c8d550f422a8ba2,548992fff1f082c5a4cc2cc9,4dee63a986675a226e63be24,4cafa590bd379efce664088c,4c7e05a74a32f5b251b7f4dd,4d3a78879c47877bb55bd685,55770c0d5aca8d87af578f03,5848b35e1a88615b8397d88d,556f58a15831a481bb85c21e","Locales":"en,en-US","HouseId":"SOO2068","thumbnail_updatedAt":"1553885875"},"data_id":"1_u2qngcq6","group":"us","source":"kaltura","id":"5c9e694fe6cf080001126e12"},{"_id":"5c9e694fe6cf080001126e13","account":"1.0","data":{},"data_id":"24b0e18f525311e98d7f1bbcde98eb71","group":null,"source":"house_number","id":"5c9e694fe6cf080001126e13"}],"embedURL":"https://secure.disney.com/embed/585401b5190a7ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4b9974101f6c9b84fc68753a","5487245af1da6d710a05657c"],"publishers":["4bb23ddb2ad8cdde025a775d","4d3a78879c47877bb55bd685"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-30T09:00:00-07:00","created_at":"2019-03-30T09:00:01-07:00","flavors":[{"bitrate":468,"format":"mp4","id":"5c9e6af0da6b8d00014b3abb","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1_t002uc6r/fileName/Let_s_Talk_Disney_Style:_Meet_the_Robinsons___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1*~hmac=16c1ddb3a9e56ea0692e48a77092c94a57c62b195bc012b12408d4014b601868"},{"bitrate":667,"format":"mp4","id":"5c9e6af0da6b8d00014b3abe","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1_n6nnwc2v/fileName/Let_s_Talk_Disney_Style:_Meet_the_Robinsons___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1*~hmac=16c1ddb3a9e56ea0692e48a77092c94a57c62b195bc012b12408d4014b601868"},{"bitrate":964,"format":"mp4","id":"5c9e6af0da6b8d00014b3abf","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1_ezu6zaup/fileName/Let_s_Talk_Disney_Style:_Meet_the_Robinsons___Fashion_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1*~hmac=16c1ddb3a9e56ea0692e48a77092c94a57c62b195bc012b12408d4014b601868"},{"bitrate":1511,"format":"mp4","id":"5c9e6af0da6b8d00014b3ac0","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1_2nked9is/fileName/Let_s_Talk_Disney_Style:_Meet_the_Robinsons___Fashion_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1*~hmac=16c1ddb3a9e56ea0692e48a77092c94a57c62b195bc012b12408d4014b601868"},{"bitrate":2628,"format":"mp4","id":"5c9e6af0da6b8d00014b3ac1","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1_osh64d6s/fileName/Let_s_Talk_Disney_Style:_Meet_the_Robinsons___Fashion_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1*~hmac=16c1ddb3a9e56ea0692e48a77092c94a57c62b195bc012b12408d4014b601868"},{"bitrate":4128,"format":"mp4","id":"5c9e6af0da6b8d00014b3ac2","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1_6cw0iaro/fileName/Let_s_Talk_Disney_Style:_Meet_the_Robinsons___Fashion_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_u2qngcq6/v/1/pv/1/ev/7/flavorId/1*~hmac=16c1ddb3a9e56ea0692e48a77092c94a57c62b195bc012b12408d4014b601868"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_u2qngcq6/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_631u3tx6/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_716b3b0f.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_716b3b0f.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_716b3b0f.jpeg","publish_date":"March 30, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_716b3b0f.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_716b3b0f.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Let's Talk Disney Style: Meet the Robinsons | Fashion by Disney Style","type":"Video","href":"https://video.disney.com/watch/let-s-talk-disney-style-meet-the-robinsons-fashion-by-disney-style-585401b5190a7ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"5850738740c3eebd6b4f2a72","slug":"cast-and-crew-of-disney-s-dumbo-discuss-becoming-a-family-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Cast and Crew of Disney's Dumbo Discuss Becoming a Family | Disney","duration":"1:20","duration_sec":80,"duration_iso":"T00H01M20S","description":"Danny DeVito, Colin Farrell, Eva Green, and the cast of Disney's Dumbo chat about how their circus family became their real family while filming the movie.","analytics":"vid||||1_b6gjrz3g|","adId":"1_b6gjrz3g","analyticsId":"1_b6gjrz3g","vType":"Interview","adPattern":"AC","externals":[{"_id":"5c9aaf141ec6740001d6d33b","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_b6gjrz3g/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"80","msDuration":"80000","durationType":null,"id":"1_b6gjrz3g","name":"Cast and Crew of Disney's Dumbo Discuss Becoming a Family | Disney","description":"Danny DeVito, Colin Farrell, Eva Green, and the cast of Disney's Dumbo chat about how their circus family became their real family while filming the movie.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1553640942","updatedAt":1553647616,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_b6gjrz3g/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Cast and Crew of Disneys Dumbo Discuss Becoming a Family | Disney us-video, matterhorn-asset-import, kaltura-hosted Danny DeVito, Colin Farrell, Eva Green, and the cast of Disneys Dumbo chat about how their circus family became their real family while filming the movie. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_b6gjrz3g/version/100091","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"4809b5ba501a11e983975d63516d7840","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_b6gjrz3g","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"5850738740c3eebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1553647616","PromoType":"Theatrical Release","VideoType":"Interview","Distributor":"562ea17cd4267fa7ef54f3cf","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,4d7ad538a629420b930c602d,562ea17cd4267fa7ef54f3cf,55cdee529a76637c8b8db00d,56e9e2999ad55fb5743bdce6,53fb404a4414785152c57f80,56e9e165202fef23a86769ec,4be88c663235cbc28bc15bb2,56e9e195e3b73f23a86769ec,55cc55fdbe46421579bdb3c9,5848b276d53fd15b8397d88d,4be845732f6a6a1c99153929,4e1554300fe65a56e7c2682d,55770c0d5aca8d87af578f03,556f59a69d409481bb85c21e,548aa5550645bd710a05657c,56e9e1163c358f23a86769ec","HouseId":"DOO209"},"data_id":"1_b6gjrz3g","group":"us","source":"kaltura","id":"5c9aaf141ec6740001d6d33b"},{"_id":"5c9aaf141ec6740001d6d33c","account":"1.0","data":{},"data_id":"4809b5ba501a11e983975d63516d7840","group":null,"source":"house_number","id":"5c9aaf141ec6740001d6d33c"}],"embedURL":"https://secure.disney.com/embed/5850738740c3eebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4ba34c30de5e659e961b9666","5487245af1da6d710a05657c"],"publishers":["4de0686c1592a3928b60f313","54895851f24feb885618c2a5","562ea17cd4267fa7ef54f3cf"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-27T09:00:02-07:00","created_at":"2019-03-27T09:00:02-07:00","flavors":[{"bitrate":469,"format":"mp4","id":"5c9ac82aa67a8c0001e1945d","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1_hi8l8v47/fileName/Cast_and_Crew_of_Disney_s_Dumbo_Discuss_Becoming_a_Family___Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1*~hmac=4be95a73ef9995e7d94ab66bc829d53ab3a0477512a2e4e2033e7798b20f0fa5"},{"bitrate":668,"format":"mp4","id":"5c9ac82ba67a8c0001e19460","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1_evtjl3r4/fileName/Cast_and_Crew_of_Disney_s_Dumbo_Discuss_Becoming_a_Family___Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1*~hmac=4be95a73ef9995e7d94ab66bc829d53ab3a0477512a2e4e2033e7798b20f0fa5"},{"bitrate":919,"format":"mp4","id":"5c9ac82ba67a8c0001e19461","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1_5mu9q408/fileName/Cast_and_Crew_of_Disney_s_Dumbo_Discuss_Becoming_a_Family___Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1*~hmac=4be95a73ef9995e7d94ab66bc829d53ab3a0477512a2e4e2033e7798b20f0fa5"},{"bitrate":1459,"format":"mp4","id":"5c9ac82ba67a8c0001e19462","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1_wn4vabpz/fileName/Cast_and_Crew_of_Disney_s_Dumbo_Discuss_Becoming_a_Family___Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1*~hmac=4be95a73ef9995e7d94ab66bc829d53ab3a0477512a2e4e2033e7798b20f0fa5"},{"bitrate":2628,"format":"mp4","id":"5c9ac82ba67a8c0001e19463","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1_pn6l1g1x/fileName/Cast_and_Crew_of_Disney_s_Dumbo_Discuss_Becoming_a_Family___Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1*~hmac=4be95a73ef9995e7d94ab66bc829d53ab3a0477512a2e4e2033e7798b20f0fa5"},{"bitrate":4128,"format":"mp4","id":"5c9ac82ba67a8c0001e19464","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1_4s4zzhph/fileName/Cast_and_Crew_of_Disney_s_Dumbo_Discuss_Becoming_a_Family___Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_b6gjrz3g/v/1/pv/1/ev/7/flavorId/1*~hmac=4be95a73ef9995e7d94ab66bc829d53ab3a0477512a2e4e2033e7798b20f0fa5"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_b6gjrz3g/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_j6zeo5qr/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_47c79621.jpeg?height=354\u0026region=0%2C0%2C600%2C600\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_47c79621.jpeg?region=0,132,600,336\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_47c79621.jpeg","publish_date":"March 27, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"interview","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_47c79621.jpeg?region=0,132,600,336","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_47c79621.jpeg","width":600,"height":336,"aspect_ratio":0.56,"aspect_ratio_pct":"56.0%","orientation":"landscape","half_width":300},"alt_text":"Cast and Crew of Disney's Dumbo Discuss Becoming a Family | Disney","type":"Video","href":"https://video.disney.com/watch/cast-and-crew-of-disney-s-dumbo-discuss-becoming-a-family-disney-5850738740c3eebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"584a2e4e2e957ebd6b4f2a72","slug":"dumbo-nail-art-tips-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Dumbo Nail Art | TIPS by Disney Style","duration":"2:15","duration_sec":135,"duration_iso":"T00H02M15S","description":"We're taking this manicure to new heights with nail art inspired by the new live-adaptation of Dumbo.","analytics":"vid||||1_38940jhi|","adId":"1_38940jhi","analyticsId":"1_38940jhi","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5c941bb523dfa40001ddf096","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_38940jhi/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"105196","views":"203389","lastPlayedAt":"1553994000","width":"1920","height":"1080","duration":"135","msDuration":"135000","durationType":null,"id":"1_38940jhi","name":"Dumbo Nail Art | TIPS by Disney Style","description":"We're taking this manicure to new heights with nail art inspired by the new live-adaptation of Dumbo.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1553210043","updatedAt":1554411501,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_38940jhi/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Dumbo Nail Art | TIPS by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Were taking this manicure to new heights with nail art inspired by the new live-adaptation of Dumbo. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_38940jhi/version/100071","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"045e586e4c2f11e982b2a3ae920e0793","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_38940jhi","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"584a2e4e2e957ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1553211281","PromoType":"None","VideoType":"Recurring Segment","Distributor":"4d3a78879c47877bb55bd685","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,556f58a15831a481bb85c21e,53fb404a4414785152c57f80,5848b33a5cf8015b8397d88d,55cc55fdbe46421579bdb3c9,4d3a78879c47877bb55bd685,556f58eddb635481bb85c21e,55770c0d5aca8d87af578f03,53829a0f23e0a595ec6bb3b5","HouseId":"TIPS238"},"data_id":"1_38940jhi","group":"us","source":"kaltura","id":"5c941bb523dfa40001ddf096"},{"_id":"5c941bb523dfa40001ddf097","account":"1.0","data":{},"data_id":"045e586e4c2f11e982b2a3ae920e0793","group":null,"source":"house_number","id":"5c941bb523dfa40001ddf097"}],"embedURL":"https://secure.disney.com/embed/584a2e4e2e957ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4ba34c30de5e659e961b9666"],"publishers":["4d3a78879c47877bb55bd685","4de0686c1592a3928b60f313"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-22T09:00:00-07:00","created_at":"2019-03-22T09:00:21-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5ca67024dd99e100019a942c","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId/1_ca0jaya5/fileName/Dumbo_Nail_Art___TIPS_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId*~hmac=6b0717ea94e4574acf701ca733fe5331ce1b14fb19dd8b3a9ccd05d080858ca7"},{"bitrate":665,"format":"mp4","id":"5ca67024dd99e100019a942e","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId/1_rfioz257/fileName/Dumbo_Nail_Art___TIPS_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId*~hmac=6b0717ea94e4574acf701ca733fe5331ce1b14fb19dd8b3a9ccd05d080858ca7"},{"bitrate":964,"format":"mp4","id":"5ca67024dd99e100019a942f","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId/1_sk63tdm7/fileName/Dumbo_Nail_Art___TIPS_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId*~hmac=6b0717ea94e4574acf701ca733fe5331ce1b14fb19dd8b3a9ccd05d080858ca7"},{"bitrate":1441,"format":"mp4","id":"5ca67024dd99e100019a9430","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId/1_cwhqdedv/fileName/Dumbo_Nail_Art___TIPS_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId*~hmac=6b0717ea94e4574acf701ca733fe5331ce1b14fb19dd8b3a9ccd05d080858ca7"},{"bitrate":2628,"format":"mp4","id":"5ca67024dd99e100019a9431","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId/1_cdxficp6/fileName/Dumbo_Nail_Art___TIPS_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId*~hmac=6b0717ea94e4574acf701ca733fe5331ce1b14fb19dd8b3a9ccd05d080858ca7"},{"bitrate":4128,"format":"mp4","id":"5ca67024dd99e100019a9432","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId/1_ddat3ibo/fileName/Dumbo_Nail_Art___TIPS_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_38940jhi/v/11/pv/1/ev/14/flavorId*~hmac=6b0717ea94e4574acf701ca733fe5331ce1b14fb19dd8b3a9ccd05d080858ca7"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_38940jhi/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_8bwsddng/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_938a2c25.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_938a2c25.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_938a2c25.jpeg","publish_date":"March 22, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_938a2c25.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_938a2c25.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Dumbo Nail Art | TIPS by Disney Style","type":"Video","href":"https://video.disney.com/watch/dumbo-nail-art-tips-by-disney-style-584a2e4e2e957ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"58461d0465166ebd6b4f2a72","slug":"every-disney-film-happening-in-the-spring-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Every Disney Film Happening in the Spring | Oh My Disney","duration":"1:00","duration_sec":60,"duration_iso":"T00H01M00S","description":"Here are the Disney films that will be hitting theatres in the Spring this year!","analytics":"vid||||0_hsgqb5wd|","adId":"0_hsgqb5wd","analyticsId":"0_hsgqb5wd","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5c8fd7e7a19fe20001363f29","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_hsgqb5wd/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"60","msDuration":"60000","durationType":null,"id":"0_hsgqb5wd","name":"Every Disney Film Happening in the Spring | Oh My Disney","description":"Here are the Disney films that will be hitting theatres in the Spring this year!","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1552930525","updatedAt":1552932340,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_hsgqb5wd/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Every Disney Film Happening in the Spring | Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted Here are the Disney films that will be hitting theatres in the Spring this year! ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_hsgqb5wd/version/100072","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"363e98a649a411e9ac18c380978446c1","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_hsgqb5wd","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"58461d0465166ebd6b4f2a72","thumbnail_updatedAt":"1552931058","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"5696c727445cb444f60328dd,53fb4065ac90775d779c5793,4b906004bc1d150f422a8ba2,582d487f7d70e8042cbf2d29,55770c0d5aca8d87af578f03,53fb404a4414785152c57f80,56f90dc5d58546bcd1baa20f,532a377d6c8bd0719283442a,538290a04183a597a0b9652c,5639fa0c8b03d4af3f2add21,5639fa0ce51554af3f2add21,528274135d6a5fded34e0177,55f370a555d7ab359e30f2f8,5697a6065d5ab4c2b6293fe8,583db172d8136780d69f6d1a,4be88c663235cbc28bc15bb2,4b906004bb95d50f422a8ba2,538298324ad848a9361c5bea,56e9e22635715f23a86769ec,562fc2d9f34874e4c046ce18,55cc5570987bf21579bdb3c9,53fb407f00a5430d5208dca2,4be8ded523e24b5d2b94e58d,56e11bc0f888875c3d79268c,55cc55fdbe46421579bdb3c9,4be8ded3a622eb5d2b94e58d,5364631582d35eb77b849c41,4be8c8d7bfe4f177ca3cde97,4b906004bc03d50f422a8ba2,55cdee529a76637c8b8db00d,513cd6d96a41a0d22cad9442,56e9e1f2fa24bf23a86769ec,5639fa0cfbd454af3f2add21,5639fa0ca66ce4af3f2add21,55cdeead07a6e37c8b8db00d","Locales":"en,en-US","HouseId":"ONV200","Production":"54886a08bb5af3e79a4d1b79"},"data_id":"0_hsgqb5wd","group":"us","source":"kaltura","id":"5c8fd7e7a19fe20001363f29"},{"_id":"5c8fd7e7a19fe20001363f2a","account":"1.0","data":{},"data_id":"363e98a649a411e9ac18c380978446c1","group":null,"source":"house_number","id":"5c8fd7e7a19fe20001363f2a"}],"embedURL":"https://secure.disney.com/embed/58461d0465166ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["4b997410be04bb84fc68753a","4ba349e26dbf959e961b9666","4ba34c30de5e659e961b9666","4ba34c6812f2a59e961b9666","4bdfdfe52960ebfa581faf57","5487245af1da6d710a05657c"],"publishers":["4b91e204b476890a20669196","4de0686c1592a3928b60f313","5364631582d35eb77b849c41"],"networks":["4b91db2d7a6f3963fc560f6c","548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-20T09:00:02-07:00","created_at":"2019-03-20T09:00:03-07:00","flavors":[{"bitrate":468,"format":"mp4","id":"5c8fdeca402486006313f1f7","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0_6e26xe1b/fileName/Every_Disney_Film_Happening_in_the_Spring___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0*~hmac=e1e5085cb8dbaf89e9f1cdd52dad5c7b1b105ce4075166cfa923c863bcf52a14"},{"bitrate":664,"format":"mp4","id":"5c8fdeca402486006313f1fa","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0_wuwzq73d/fileName/Every_Disney_Film_Happening_in_the_Spring___Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0*~hmac=e1e5085cb8dbaf89e9f1cdd52dad5c7b1b105ce4075166cfa923c863bcf52a14"},{"bitrate":910,"format":"mp4","id":"5c8fdeca402486006313f1fb","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0_wgep86gl/fileName/Every_Disney_Film_Happening_in_the_Spring___Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0*~hmac=e1e5085cb8dbaf89e9f1cdd52dad5c7b1b105ce4075166cfa923c863bcf52a14"},{"bitrate":1457,"format":"mp4","id":"5c8fdeca402486006313f1fc","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0_rcfb54jc/fileName/Every_Disney_Film_Happening_in_the_Spring___Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0*~hmac=e1e5085cb8dbaf89e9f1cdd52dad5c7b1b105ce4075166cfa923c863bcf52a14"},{"bitrate":2458,"format":"mp4","id":"5c8fdeca402486006313f1fd","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0_twf3o0wm/fileName/Every_Disney_Film_Happening_in_the_Spring___Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0*~hmac=e1e5085cb8dbaf89e9f1cdd52dad5c7b1b105ce4075166cfa923c863bcf52a14"},{"bitrate":3828,"format":"mp4","id":"5c8fdeca402486006313f1fe","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0_wju07ipp/fileName/Every_Disney_Film_Happening_in_the_Spring___Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_hsgqb5wd/v/2/pv/1/ev/7/flavorId/0*~hmac=e1e5085cb8dbaf89e9f1cdd52dad5c7b1b105ce4075166cfa923c863bcf52a14"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_hsgqb5wd/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/0_h5zv9g62/v/2/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_541503b7.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_541503b7.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_541503b7.jpeg","publish_date":"March 20, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com/","title":"Visit Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_541503b7.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_541503b7.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Every Disney Film Happening in the Spring | Oh My Disney","type":"Video","href":"https://video.disney.com/watch/every-disney-film-happening-in-the-spring-oh-my-disney-58461d0465166ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"584177468bf06ebd6b4f2a72","slug":"beauty-and-the-beast-stained-glass-pasta-art-disney-diy-by-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Beauty and the Beast Stained Glass Pasta Art | Disney DIY by Disney Family","duration":"1:33","duration_sec":93,"duration_iso":"T00H01M33S","description":"Want to add an extra touch of Disney magic to your home? Look no further than this Beauty and the Beast Stained Glass Pasta Art! Cracked and dyed lasagna pasta is assembled to create show-stopping decor that’s both beautiful and simple to create.","analytics":"vid||||1_xvgqusea|","adId":"1_xvgqusea","analyticsId":"1_xvgqusea","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5c8af85500b6810001829e5f","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_xvgqusea/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"93","msDuration":"93000","durationType":null,"id":"1_xvgqusea","name":"Beauty and the Beast Stained Glass Pasta Art | Disney DIY by Disney Family","description":"Want to add an extra touch of Disney magic to your home? Look no further than this Beauty and the Beast Stained Glass Pasta Art! Cracked and dyed lasagna pasta is assembled to create show-stopping decor that’s both beautiful and simple to create.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1552611156","updatedAt":1552612127,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_xvgqusea/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Beauty and the Beast Stained Glass Pasta Art | Disney DIY by Disney Family us-video, matterhorn-asset-import, kaltura-hosted Want to add an extra touch of Disney magic to your home? Look no further than this Beauty and the Beast Stained Glass Pasta Art! Cracked and dyed lasagna pasta is assembled to create show-stopping decor that’s both beautiful and simple to create. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_xvgqusea/version/100061","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"9f98b16346bc11e990c00dbd1d3171ef","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_xvgqusea","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"584177468bf06ebd6b4f2a72","thumbnail_updatedAt":"1552611608","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,5402cbb14f34d87e06cf2f2e,556f57ce405a3481bb85c21e,55770c0d5aca8d87af578f03,53fb404a4414785152c57f80,53829610311c0595ec6bb3b5,5364634694e2a5c8a5c3cff7,583868f125369324d813505f,556f5957519d4481bb85c21e,556f58b8182c0481bb85c21e","HouseId":"DDIY276"},"data_id":"1_xvgqusea","group":"us","source":"kaltura","id":"5c8af85500b6810001829e5f"},{"_id":"5c8af85500b6810001829e60","account":"1.0","data":{},"data_id":"9f98b16346bc11e990c00dbd1d3171ef","group":null,"source":"house_number","id":"5c8af85500b6810001829e60"}],"embedURL":"https://secure.disney.com/embed/584177468bf06ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-17T09:00:02-07:00","created_at":"2019-03-17T09:00:02-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5c8afb5db771d90001ead4f1","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1_4oo22r96/fileName/Beauty_and_the_Beast_Stained_Glass_Pasta_Art___Disney_DIY_by_Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1*~hmac=473e5acdbc6d8277af0642cd9174aba556aab7d1a72ab73a4a7013781097a636"},{"bitrate":664,"format":"mp4","id":"5c8afb5db771d90001ead4f4","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1_yk0yobbj/fileName/Beauty_and_the_Beast_Stained_Glass_Pasta_Art___Disney_DIY_by_Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1*~hmac=473e5acdbc6d8277af0642cd9174aba556aab7d1a72ab73a4a7013781097a636"},{"bitrate":913,"format":"mp4","id":"5c8afb5db771d90001ead4f5","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1_oy9cnek0/fileName/Beauty_and_the_Beast_Stained_Glass_Pasta_Art___Disney_DIY_by_Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1*~hmac=473e5acdbc6d8277af0642cd9174aba556aab7d1a72ab73a4a7013781097a636"},{"bitrate":1416,"format":"mp4","id":"5c8afb5db771d90001ead4f6","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1_p2q5glzs/fileName/Beauty_and_the_Beast_Stained_Glass_Pasta_Art___Disney_DIY_by_Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1*~hmac=473e5acdbc6d8277af0642cd9174aba556aab7d1a72ab73a4a7013781097a636"},{"bitrate":2479,"format":"mp4","id":"5c8afb5db771d90001ead4f7","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1_b29213kv/fileName/Beauty_and_the_Beast_Stained_Glass_Pasta_Art___Disney_DIY_by_Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1*~hmac=473e5acdbc6d8277af0642cd9174aba556aab7d1a72ab73a4a7013781097a636"},{"bitrate":3922,"format":"mp4","id":"5c8afb5db771d90001ead4f8","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1_kb86ozho/fileName/Beauty_and_the_Beast_Stained_Glass_Pasta_Art___Disney_DIY_by_Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_xvgqusea/v/1/pv/1/ev/7/flavorId/1*~hmac=473e5acdbc6d8277af0642cd9174aba556aab7d1a72ab73a4a7013781097a636"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_xvgqusea/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_8dfj27vd/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_e019b149.jpeg?height=354\u0026region=0%2C0%2C1200%2C676\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_e019b149.jpeg?region=0,0,1200,676\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_e019b149.jpeg","publish_date":"March 17, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com/","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_e019b149.jpeg?region=0,0,1200,676","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_e019b149.jpeg","width":1200,"height":676,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":600},"alt_text":"Beauty and the Beast Stained Glass Pasta Art | Disney DIY by Disney Family","type":"Video","href":"https://video.disney.com/watch/beauty-and-the-beast-stained-glass-pasta-art-disney-diy-by-disney-family-584177468bf06ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"583fea391030bebd6b4f2a72","slug":"the-most-under-appreciated-disney-characters-let-s-talk-disney-by-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"The Most Under-Appreciated Disney Characters | Let's Talk Disney by Oh My Disney","duration":"2:01","duration_sec":121,"duration_iso":"T00H02M01S","description":"Disney fans face off to determine who the most underrated Disney characters are. Do you agree?","analytics":"vid||||1_dog619c7|","adId":"1_dog619c7","analyticsId":"1_dog619c7","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5c895851c8e67b0001165f4a","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_dog619c7/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"121","msDuration":"121000","durationType":null,"id":"1_dog619c7","name":"The Most Under-Appreciated Disney Characters | Let's Talk Disney by Oh My Disney","description":"Disney fans face off to determine who the most underrated Disney characters are. Do you agree?","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1552504573","updatedAt":1552522492,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_dog619c7/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| The Most Under-Appreciated Disney Characters | Lets Talk Disney by Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted Disney fans face off to determine who the most underrated Disney characters are. Do you agree? ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_dog619c7/version/100072","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"772b590a45c411e9b07295702b05765e","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_dog619c7","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"583fea391030bebd6b4f2a72","thumbnail_updatedAt":"1552512279","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"53fb4065ac90775d779c5793,4bf7e4da66c73b7efb7fbee2,583868ddbdb27324d813505f,55770c0d5aca8d87af578f03,4be142cf81f1cad00804e53c,53fb404a4414785152c57f80,54663b99d2fec28c71f75c6c,4be142cc9b07dad00804e53c,4be2411e6ee2326ee9b03bc9,4f8ab65790fe2a636ef97e78,4caf7a7f8f0b9efce754088c,4be142c9273b5ad00804e53c,4b9060053580850f422a8ba2,53fb407f00a5430d5208dca2,4be142cadf5ddad00804e53c,4d3579489ba6db572215a24b,4b9060053597250f422a8ba2,4b9060051c41250f422a8ba2,5364631582d35eb77b849c41,4dee65302f481a226e63be24,4b9060051bc2350f422a8ba2,4be2418d3814f97162b03fbf","Locales":"en,en-US","HouseId":"LTD107"},"data_id":"1_dog619c7","group":"us","source":"kaltura","id":"5c895851c8e67b0001165f4a"},{"_id":"5c895851c8e67b0001165f4b","account":"1.0","data":{},"data_id":"772b590a45c411e9b07295702b05765e","group":null,"source":"house_number","id":"5c895851c8e67b0001165f4b"}],"embedURL":"https://secure.disney.com/embed/583fea391030bebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364631582d35eb77b849c41"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-14T09:00:03-07:00","created_at":"2019-03-14T09:00:03-07:00","flavors":[{"bitrate":467,"format":"mp4","id":"5c899d35b771d900014b1f30","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1_hebdb20c/fileName/The_Most_Under-Appreciated_Disney_Characters___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1*~hmac=58b01ab0600d07e6a3e6c978b8b1bda0b6d723d61da52bf200022db3c66ab715"},{"bitrate":664,"format":"mp4","id":"5c899d35b771d900014b1f32","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1_a1651r4q/fileName/The_Most_Under-Appreciated_Disney_Characters___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1*~hmac=58b01ab0600d07e6a3e6c978b8b1bda0b6d723d61da52bf200022db3c66ab715"},{"bitrate":964,"format":"mp4","id":"5c899d35b771d900014b1f33","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1_ms7587nu/fileName/The_Most_Under-Appreciated_Disney_Characters___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1*~hmac=58b01ab0600d07e6a3e6c978b8b1bda0b6d723d61da52bf200022db3c66ab715"},{"bitrate":1500,"format":"mp4","id":"5c899d35b771d900014b1f34","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1_l2r1gw4r/fileName/The_Most_Under-Appreciated_Disney_Characters___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1*~hmac=58b01ab0600d07e6a3e6c978b8b1bda0b6d723d61da52bf200022db3c66ab715"},{"bitrate":2628,"format":"mp4","id":"5c899d35b771d900014b1f35","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1_leqx9n79/fileName/The_Most_Under-Appreciated_Disney_Characters___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1*~hmac=58b01ab0600d07e6a3e6c978b8b1bda0b6d723d61da52bf200022db3c66ab715"},{"bitrate":4128,"format":"mp4","id":"5c899d35b771d900014b1f36","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1_wwwi6f3p/fileName/The_Most_Under-Appreciated_Disney_Characters___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_dog619c7/v/1/pv/1/ev/7/flavorId/1*~hmac=58b01ab0600d07e6a3e6c978b8b1bda0b6d723d61da52bf200022db3c66ab715"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_dog619c7/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_uqh3gpf4/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_94c2a4f6.jpeg?height=354\u0026region=0%2C0%2C1920%2C1080\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_94c2a4f6.jpeg?region=0,0,1920,1080\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_94c2a4f6.jpeg","publish_date":"March 14, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com/","title":"Visit Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_94c2a4f6.jpeg?region=0,0,1920,1080","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_94c2a4f6.jpeg","width":1920,"height":1080,"aspect_ratio":0.5625,"aspect_ratio_pct":"56.25%","orientation":"landscape","half_width":960},"alt_text":"The Most Under-Appreciated Disney Characters | Let's Talk Disney by Oh My Disney","type":"Video","href":"https://video.disney.com/watch/the-most-under-appreciated-disney-characters-let-s-talk-disney-by-oh-my-disney-583fea391030bebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"5839fed114533ebd6b4f2a72","slug":"winnie-the-pooh-spring-wreath-disney-diy-by-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Winnie the Pooh Spring Wreath | Disney DIY by Disney Family","duration":"3:00","duration_sec":180,"duration_iso":"T00H03M00S","description":"No more blustery days! Celebrate the first day of spring with a DIY wreath featuring your favorite silly old bear, Winnie the Pooh!","analytics":"vid||||0_8bgvih3r|","adId":"0_8bgvih3r","analyticsId":"0_8bgvih3r","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5c832302b771d90001087ac0","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_8bgvih3r/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"180","msDuration":"180000","durationType":null,"id":"0_8bgvih3r","name":"Winnie the Pooh Spring Wreath | Disney DIY by Disney Family","description":"No more blustery days! Celebrate the first day of spring with a DIY wreath featuring your favorite silly old bear, Winnie the Pooh!","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1552097784","updatedAt":1552098664,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_8bgvih3r/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Winnie the Pooh Spring Wreath | Disney DIY by Disney Family us-video, matterhorn-asset-import, kaltura-hosted No more blustery days! Celebrate the first day of spring with a DIY wreath featuring your favorite silly old bear, Winnie the Pooh! ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_8bgvih3r/version/100072","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"562def07421111e9818b01dff6059064","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_8bgvih3r","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"5839fed114533ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1552098452","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","Tags":"53fb407f00a5430d5208dca2,583868b80359e324d813505f,55c4087034d6e498577efb8e,53fb40deb72ba40a5c1d54ca,556f57ce405a3481bb85c21e,55770c0d5aca8d87af578f03,53fb404a4414785152c57f80,53829610311c0595ec6bb3b5,5364634694e2a5c8a5c3cff7,53fb4065ac90775d779c5793,556f5957519d4481bb85c21e","HouseId":"DDIY275"},"data_id":"0_8bgvih3r","group":"us","source":"kaltura","id":"5c832302b771d90001087ac0"},{"_id":"5c832302b771d90001087ac1","account":"1.0","data":{},"data_id":"562def07421111e9818b01dff6059064","group":null,"source":"house_number","id":"5c832302b771d90001087ac1"}],"embedURL":"https://secure.disney.com/embed/5839fed114533ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-11T09:00:00-07:00","created_at":"2019-03-11T09:00:01-07:00","flavors":[{"bitrate":469,"format":"mp4","id":"5c832595aee4bc00014a371a","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0_9bx76h42/fileName/Winnie_the_Pooh_Spring_Wreath___Disney_DIY_by_Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0*~hmac=42f063a3b0cd0118d4fec21bb709c5e233cc813d6106870871cd0a6f0244efe6"},{"bitrate":664,"format":"mp4","id":"5c832595aee4bc00014a371d","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0_brsibdph/fileName/Winnie_the_Pooh_Spring_Wreath___Disney_DIY_by_Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0*~hmac=42f063a3b0cd0118d4fec21bb709c5e233cc813d6106870871cd0a6f0244efe6"},{"bitrate":889,"format":"mp4","id":"5c832595aee4bc00014a371e","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0_9uud3rxp/fileName/Winnie_the_Pooh_Spring_Wreath___Disney_DIY_by_Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0*~hmac=42f063a3b0cd0118d4fec21bb709c5e233cc813d6106870871cd0a6f0244efe6"},{"bitrate":1370,"format":"mp4","id":"5c832595aee4bc00014a371f","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0_6ligkow3/fileName/Winnie_the_Pooh_Spring_Wreath___Disney_DIY_by_Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0*~hmac=42f063a3b0cd0118d4fec21bb709c5e233cc813d6106870871cd0a6f0244efe6"},{"bitrate":2628,"format":"mp4","id":"5c832595aee4bc00014a3720","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0_gbawnfe9/fileName/Winnie_the_Pooh_Spring_Wreath___Disney_DIY_by_Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0*~hmac=42f063a3b0cd0118d4fec21bb709c5e233cc813d6106870871cd0a6f0244efe6"},{"bitrate":3293,"format":"mp4","id":"5c832595aee4bc00014a3721","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0_kuz6agco/fileName/Winnie_the_Pooh_Spring_Wreath___Disney_DIY_by_Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_8bgvih3r/v/2/pv/1/ev/7/flavorId/0*~hmac=42f063a3b0cd0118d4fec21bb709c5e233cc813d6106870871cd0a6f0244efe6"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_8bgvih3r/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/0_cy8r53ci/v/2/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_f82aa336.jpeg?height=354\u0026region=0%2C0%2C1200%2C675\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_f82aa336.jpeg?region=0,0,1200,675\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_f82aa336.jpeg","publish_date":"March 11, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_f82aa336.jpeg?region=0,0,1200,675","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_f82aa336.jpeg","width":1200,"height":675,"aspect_ratio":0.5625,"aspect_ratio_pct":"56.25%","orientation":"landscape","half_width":600},"alt_text":"Winnie the Pooh Spring Wreath | Disney DIY by Disney Family","type":"Video","href":"https://video.disney.com/watch/winnie-the-pooh-spring-wreath-disney-diy-by-disney-family-5839fed114533ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"5839c2432a8d0ebd6b4f2a72","slug":"captain-marvel-cast-teaches-a-10-year-old-about-the-90s-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Captain Marvel Cast Teaches A 10-Year Old About The ‘90s | Disney","duration":"1:52","duration_sec":112,"duration_iso":"T00H01M52S","description":"Brie Larson, Samuel L. Jackson, and others in the cast of Captain Marvel teach a 10-year-old super fan about classic '90s tech.","analytics":"vid||||0_2y3jplfj|","adId":"0_2y3jplfj","analyticsId":"0_2y3jplfj","vType":"Interview","adPattern":"AC","externals":[{"_id":"5c82e3813448ea0001bc0ee9","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_2y3jplfj/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"112","msDuration":"112000","durationType":null,"id":"0_2y3jplfj","name":"Captain Marvel Cast Teaches A 10-Year Old About The ‘90s | Disney","description":"Brie Larson, Samuel L. Jackson, and others in the cast of Captain Marvel teach a 10-year-old super fan about classic '90s tech.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1552081529","updatedAt":1552082194,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_2y3jplfj/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Captain Marvel Cast Teaches A 10-Year Old About The ‘90s | Disney us-video, matterhorn-asset-import, kaltura-hosted Brie Larson, Samuel L. Jackson, and others in the cast of Captain Marvel teach a 10-year-old super fan about classic 90s tech. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_2y3jplfj/version/100052","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"7d7bd20741eb11e991b801dff6059064","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_2y3jplfj","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"5839c2432a8d0ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","PromoType":"Theatrical Release","VideoType":"Interview","Distributor":"562ea17cd4267fa7ef54f3cf","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,56d0c08c1f9a954ff02997de,55cdeead07a6e37c8b8db00d,54e0fd3ea2b15a50ea59fb68,582beffdf006a324d813505f,562ea17cd4267fa7ef54f3cf,55cdee529a76637c8b8db00d,5825d728b1204696971d4f1f,582bf2791f9db780d69f6d1a,55770c0d5aca8d87af578f03,5825d75cc88f7696971d4f1f,4be88a197bd04bc28bf15bb2,548aa5550645bd710a05657c,53fb404a4414785152c57f80,556f59a69d409481bb85c21e,582bf1f459a8f324d813505f,582be797551f6780d69f6d1a,582e967a1349e780d69f6d1a","HouseId":"DOO207","thumbnail_updatedAt":"1552082194"},"data_id":"0_2y3jplfj","group":"us","source":"kaltura","id":"5c82e3813448ea0001bc0ee9"},{"_id":"5c82e3813448ea0001bc0eea","account":"1.0","data":{},"data_id":"7d7bd20741eb11e991b801dff6059064","group":null,"source":"house_number","id":"5c82e3813448ea0001bc0eea"}],"embedURL":"https://secure.disney.com/embed/5839c2432a8d0ebd6b4f2a72?domain=video.disney.com","authors":{"properties":["5487245af1da6d710a05657c","54e0fcebab4390b509a56756"],"publishers":["54895851f24feb885618c2a5","562ea17cd4267fa7ef54f3cf"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-09T09:00:02-08:00","created_at":"2019-03-09T09:00:03-08:00","flavors":[{"bitrate":468,"format":"mp4","id":"5c82e528b771d90001bbe7fb","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1_rwjt7x18/fileName/Captain_Marvel_Cast_Teaches_A_10-Year_Old_About_The____90s___Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1*~hmac=58ed7d1f8a35d01a9fc1d75c7df32461e813f618a6500332ebebbfe5d9b99e51"},{"bitrate":669,"format":"mp4","id":"5c82e528b771d90001bbe7fe","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1_zoyz01nb/fileName/Captain_Marvel_Cast_Teaches_A_10-Year_Old_About_The____90s___Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1*~hmac=58ed7d1f8a35d01a9fc1d75c7df32461e813f618a6500332ebebbfe5d9b99e51"},{"bitrate":964,"format":"mp4","id":"5c82e528b771d90001bbe7ff","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1_9sgaa0hw/fileName/Captain_Marvel_Cast_Teaches_A_10-Year_Old_About_The____90s___Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1*~hmac=58ed7d1f8a35d01a9fc1d75c7df32461e813f618a6500332ebebbfe5d9b99e51"},{"bitrate":1474,"format":"mp4","id":"5c82e528b771d90001bbe800","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1_2po5b4jh/fileName/Captain_Marvel_Cast_Teaches_A_10-Year_Old_About_The____90s___Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1*~hmac=58ed7d1f8a35d01a9fc1d75c7df32461e813f618a6500332ebebbfe5d9b99e51"},{"bitrate":2628,"format":"mp4","id":"5c82e528b771d90001bbe801","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1_u88sxsqd/fileName/Captain_Marvel_Cast_Teaches_A_10-Year_Old_About_The____90s___Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1*~hmac=58ed7d1f8a35d01a9fc1d75c7df32461e813f618a6500332ebebbfe5d9b99e51"},{"bitrate":4128,"format":"mp4","id":"5c82e528b771d90001bbe802","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1_ceoboe9f/fileName/Captain_Marvel_Cast_Teaches_A_10-Year_Old_About_The____90s___Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_2y3jplfj/v/1/pv/1/ev/7/flavorId/1*~hmac=58ed7d1f8a35d01a9fc1d75c7df32461e813f618a6500332ebebbfe5d9b99e51"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_2y3jplfj/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_q0cbw6iv/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_3fb2ef55.jpeg?height=354\u0026region=0%2C0%2C1200%2C673\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_3fb2ef55.jpeg?region=0,0,1200,673\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_3fb2ef55.jpeg","publish_date":"March 9, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"interview","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_3fb2ef55.jpeg?region=0,0,1200,673","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_3fb2ef55.jpeg","width":1200,"height":673,"aspect_ratio":0.5608,"aspect_ratio_pct":"56.08%","orientation":"landscape","half_width":600},"alt_text":"Captain Marvel Cast Teaches A 10-Year Old About The ‘90s | Disney","type":"Video","href":"https://video.disney.com/watch/captain-marvel-cast-teaches-a-10-year-old-about-the-90s-disney-5839c2432a8d0ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"5839a69c55d3aebd6b4f2a72","slug":"cast-of-captain-marvel-chats-with-little-girl-about-the-film-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Cast of Captain Marvel Chats with Little Girl About the Film | Disney","duration":"2:01","duration_sec":121,"duration_iso":"T00H02M01S","description":"Watch as a little girl dressed as Captain Marvel interviews Jude Law, Samuel L. Jackson, Gemma Chan, and others in the film about what it means for children to see this movie.","analytics":"vid||||1_kzg7sdfv|","adId":"1_kzg7sdfv","analyticsId":"1_kzg7sdfv","vType":"Interview","adPattern":"AC","externals":[{"_id":"5c82c670c8e67b00012e1fdf","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_kzg7sdfv/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"121","msDuration":"121000","durationType":null,"id":"1_kzg7sdfv","name":"Cast of Captain Marvel Chats with Little Girl About the Film | Disney","description":"Watch as a little girl dressed as Captain Marvel interviews Jude Law, Samuel L. Jackson, Gemma Chan, and others in the film about what it means for children to see this movie.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1552074106","updatedAt":1552074811,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/1_kzg7sdfv/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Cast of Captain Marvel Chats with Little Girl About the Film | Disney us-video, matterhorn-asset-import, kaltura-hosted Watch as a little girl dressed as Captain Marvel interviews Jude Law, Samuel L. Jackson, Gemma Chan, and others in the film about what it means for children to see this movie. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/1_kzg7sdfv/version/100042","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"35347b4f41da11e998ad01dff6059064","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"1_kzg7sdfv","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"5839a69c55d3aebd6b4f2a72","thumbnail_updatedAt":"1552074483","PromoType":"Theatrical Release","VideoType":"Interview","Distributor":"562ea17cd4267fa7ef54f3cf","PermissionGroups":"505f4f3d75221803a57ac5db","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,56d0c08c1f9a954ff02997de,54e0fd3ea2b15a50ea59fb68,582beffdf006a324d813505f,562ea17cd4267fa7ef54f3cf,55cdee529a76637c8b8db00d,5825d728b1204696971d4f1f,582bf2791f9db780d69f6d1a,55770c0d5aca8d87af578f03,5825d75cc88f7696971d4f1f,582bf1f459a8f324d813505f,582e96ef14374780d69f6d1a,548aa5550645bd710a05657c,53fb404a4414785152c57f80,556f59a69d409481bb85c21e,4be88a197bd04bc28bf15bb2,582be797551f6780d69f6d1a","Locales":"en,en-US","HouseId":"DOO206","Production":"54e0fd3ea2b15a50ea59fb68"},"data_id":"1_kzg7sdfv","group":"us","source":"kaltura","id":"5c82c670c8e67b00012e1fdf"},{"_id":"5c82c670c8e67b00012e1fe0","account":"1.0","data":{},"data_id":"35347b4f41da11e998ad01dff6059064","group":null,"source":"house_number","id":"5c82c670c8e67b00012e1fe0"}],"embedURL":"https://secure.disney.com/embed/5839a69c55d3aebd6b4f2a72?domain=video.disney.com","authors":{"properties":["5487245af1da6d710a05657c","54e0fcebab4390b509a56756"],"publishers":["54895851f24feb885618c2a5","562ea17cd4267fa7ef54f3cf"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-08T11:59:19-08:00","created_at":"2019-03-08T11:59:19-08:00","flavors":[{"bitrate":467,"format":"mp4","id":"5c82c84e3448ea0001629da9","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1_u21f9ufm/fileName/Cast_of_Captain_Marvel_Chats_with_Little_Girl_About_the_Film___Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1*~hmac=c4eeb1c85ad4b26c00295eb28d52bb9028da96035b7ab174538a7ed54d1fc853"},{"bitrate":668,"format":"mp4","id":"5c82c84e3448ea0001629dab","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1_dpkuu13r/fileName/Cast_of_Captain_Marvel_Chats_with_Little_Girl_About_the_Film___Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1*~hmac=c4eeb1c85ad4b26c00295eb28d52bb9028da96035b7ab174538a7ed54d1fc853"},{"bitrate":925,"format":"mp4","id":"5c82c84e3448ea0001629dac","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1_e5rb7x00/fileName/Cast_of_Captain_Marvel_Chats_with_Little_Girl_About_the_Film___Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1*~hmac=c4eeb1c85ad4b26c00295eb28d52bb9028da96035b7ab174538a7ed54d1fc853"},{"bitrate":1444,"format":"mp4","id":"5c82c84e3448ea0001629dad","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1_355uqmhr/fileName/Cast_of_Captain_Marvel_Chats_with_Little_Girl_About_the_Film___Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1*~hmac=c4eeb1c85ad4b26c00295eb28d52bb9028da96035b7ab174538a7ed54d1fc853"},{"bitrate":2628,"format":"mp4","id":"5c82c84e3448ea0001629dae","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1_y0rhtst0/fileName/Cast_of_Captain_Marvel_Chats_with_Little_Girl_About_the_Film___Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1*~hmac=c4eeb1c85ad4b26c00295eb28d52bb9028da96035b7ab174538a7ed54d1fc853"},{"bitrate":4128,"format":"mp4","id":"5c82c84e3448ea0001629daf","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1_1rmyjkvk/fileName/Cast_of_Captain_Marvel_Chats_with_Little_Girl_About_the_Film___Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/1_kzg7sdfv/v/1/pv/1/ev/7/flavorId/1*~hmac=c4eeb1c85ad4b26c00295eb28d52bb9028da96035b7ab174538a7ed54d1fc853"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/1_kzg7sdfv/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_7df2f6a9.jpeg?height=354\u0026region=0%2C0%2C1200%2C673\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_7df2f6a9.jpeg?region=0,0,1200,673\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_7df2f6a9.jpeg","publish_date":"March 8, 2019","featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"interview","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_7df2f6a9.jpeg?region=0,0,1200,673","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_7df2f6a9.jpeg","width":1200,"height":673,"aspect_ratio":0.5608,"aspect_ratio_pct":"56.08%","orientation":"landscape","half_width":600},"alt_text":"Cast of Captain Marvel Chats with Little Girl About the Film | Disney","type":"Video","href":"https://video.disney.com/watch/cast-of-captain-marvel-chats-with-little-girl-about-the-film-disney-5839a69c55d3aebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"583779392dbfcebd6b4f2a72","slug":"kids-talk-disney-disney-family","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Kids Talk Disney | Disney Family","duration":"1:39","duration_sec":99,"duration_iso":"T00H01M39S","description":"In celebration of International Women’s Day, kids talk about female Disney characters who inspire them the most.","analytics":"vid||||0_rvisr276|","adId":"0_rvisr276","analyticsId":"0_rvisr276","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5c807de700b68100018e729d","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_rvisr276/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"99","msDuration":"99000","durationType":null,"id":"0_rvisr276","name":"Kids Talk Disney | Disney Family","description":"In celebration of International Women’s Day, kids talk about female Disney characters who inspire them the most.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1551924484","updatedAt":1551925346,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_rvisr276/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Kids Talk Disney | Disney Family us-video, matterhorn-asset-import, kaltura-hosted In celebration of International Women’s Day, kids talk about female Disney characters who inspire them the most. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_rvisr276/version/100062","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"d73dd31e407d11e998366dcd0d30b6d1","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_rvisr276","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"583779392dbfcebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364634694e2a5c8a5c3cff7","Tags":"53fb404a4414785152c57f80,53fb407f00a5430d5208dca2,4be1632ea4522ba8674453da,53fb40deb72ba40a5c1d54ca,581bc66613149696971d4f1f,582e968606e4f780d69f6d1a,55cdee529a76637c8b8db00d,55c403c744f29586ab44c45c,535454df1ce98c39b91ef7bb,5364634694e2a5c8a5c3cff7,53fb4065ac90775d779c5793,55770c0d5aca8d87af578f03,4b906004b4b0250f422a8ba2,4b9060051bee550f422a8ba2,51704f26c48e7a645e4dba72,4b9060051aa4c50f422a8ba2","HouseId":"KTD001","thumbnail_updatedAt":"1551925346"},"data_id":"0_rvisr276","group":"us","source":"kaltura","id":"5c807de700b68100018e729d"},{"_id":"5c807de700b68100018e729e","account":"1.0","data":{},"data_id":"d73dd31e407d11e998366dcd0d30b6d1","group":null,"source":"house_number","id":"5c807de700b68100018e729e"}],"embedURL":"https://secure.disney.com/embed/583779392dbfcebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364634694e2a5c8a5c3cff7"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-03-07T09:00:01-08:00","created_at":"2019-03-07T09:00:02-08:00","flavors":[{"bitrate":467,"format":"mp4","id":"5c80807daee4bc000102441a","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0_3xpye0b3/fileName/Kids_Talk_Disney___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0*~hmac=0b7e76c0b6d3e326ec28e8bd4024c8628743d6906f5e203c9368f89904962f18"},{"bitrate":665,"format":"mp4","id":"5c80807daee4bc000102441d","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0_3upouy25/fileName/Kids_Talk_Disney___Disney_Family_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0*~hmac=0b7e76c0b6d3e326ec28e8bd4024c8628743d6906f5e203c9368f89904962f18"},{"bitrate":904,"format":"mp4","id":"5c80807daee4bc000102441e","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0_i5dg3ksq/fileName/Kids_Talk_Disney___Disney_Family_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0*~hmac=0b7e76c0b6d3e326ec28e8bd4024c8628743d6906f5e203c9368f89904962f18"},{"bitrate":1444,"format":"mp4","id":"5c80807daee4bc000102441f","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0_em0ebr35/fileName/Kids_Talk_Disney___Disney_Family_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0*~hmac=0b7e76c0b6d3e326ec28e8bd4024c8628743d6906f5e203c9368f89904962f18"},{"bitrate":2442,"format":"mp4","id":"5c80807daee4bc0001024420","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0_jds82g8m/fileName/Kids_Talk_Disney___Disney_Family_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0*~hmac=0b7e76c0b6d3e326ec28e8bd4024c8628743d6906f5e203c9368f89904962f18"},{"bitrate":3816,"format":"mp4","id":"5c80807daee4bc0001024421","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0_r8cxesva/fileName/Kids_Talk_Disney___Disney_Family_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_rvisr276/v/2/pv/1/ev/7/flavorId/0*~hmac=0b7e76c0b6d3e326ec28e8bd4024c8628743d6906f5e203c9368f89904962f18"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_rvisr276/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/0_ay1bhu6z/v/2/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_9b4cb9dc.jpeg?height=354\u0026region=0%2C0%2C600%2C338\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_9b4cb9dc.jpeg?region=0,0,600,338\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_9b4cb9dc.jpeg","publish_date":"March 7, 2019","contentToolbarTitleLink":{"url":"https://family.disney.com/","title":"Visit Disney Family"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_9b4cb9dc.jpeg?region=0,0,600,338","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_9b4cb9dc.jpeg","width":600,"height":338,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":300},"alt_text":"Kids Talk Disney | Disney Family","type":"Video","href":"https://video.disney.com/watch/kids-talk-disney-disney-family-583779392dbfcebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"5828118fdb8f6ebd6b4f2a72","slug":"why-we-love-ursula-from-the-little-mermaid-let-s-talk-disney-by-oh-my-disney","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"Why We Love Ursula from The Little Mermaid | Let's Talk Disney by Oh My Disney","duration":"1:26","duration_sec":86,"duration_iso":"T00H01M26S","description":"Disney fans discuss The Little Mermaid's iconic villain.","analytics":"vid||||0_9o0ys1j1|","adId":"0_9o0ys1j1","analyticsId":"0_9o0ys1j1","vType":"Recurring Segment","adPattern":"AC","externals":[{"_id":"5c705697b771d90001ff9eca","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_9o0ys1j1/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"86","msDuration":"86000","durationType":null,"id":"0_9o0ys1j1","name":"Why We Love Ursula from The Little Mermaid | Let's Talk Disney by Oh My Disney","description":"Disney fans discuss The Little Mermaid's iconic villain.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1550865866","updatedAt":1550866852,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_9o0ys1j1/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| Why We Love Ursula from The Little Mermaid | Lets Talk Disney by Oh My Disney us-video, matterhorn-asset-import, kaltura-hosted Disney fans discuss The Little Mermaids iconic villain. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_9o0ys1j1/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"0d6a74a336dd11e984ae57228ec0d8fe","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_9o0ys1j1","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"5828118fdb8f6ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","PromoType":"None","VideoType":"Recurring Segment","Distributor":"5364631582d35eb77b849c41","Tags":"5364631582d35eb77b849c41,53fb4065ac90775d779c5793,4be7a7759c03eb913cc5dc09,53fb407f00a5430d5208dca2,55cdee529a76637c8b8db00d,52f5ad8ab1b3f1c360e7efbe,4b90600534a8350f422a8ba2,4be7a779c8d87b913cc5dc09,540454e2cf942468780d9686,54663b99d2fec28c71f75c6c,4b906005347ca50f422a8ba2,582591c4ff4ad55c585d5479,53fb404a4414785152c57f80,55770c0d5aca8d87af578f03,4b9060053452050f422a8ba2","HouseId":"LTD105","thumbnail_updatedAt":"1550866852"},"data_id":"0_9o0ys1j1","group":"us","source":"kaltura","id":"5c705697b771d90001ff9eca"},{"_id":"5c705697b771d90001ff9ecb","account":"1.0","data":{},"data_id":"0d6a74a336dd11e984ae57228ec0d8fe","group":null,"source":"house_number","id":"5c705697b771d90001ff9ecb"}],"embedURL":"https://secure.disney.com/embed/5828118fdb8f6ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["5364631582d35eb77b849c41"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-02-27T09:00:02-08:00","created_at":"2019-02-27T09:00:02-08:00","flavors":[{"bitrate":464,"format":"mp4","id":"5c7059e3a19fe200015cf2ba","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1_nqcrnkbe/fileName/Why_We_Love_Ursula_from_The_Little_Mermaid___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1*~hmac=5be21184a51d0980c59f4cb2143a91736e320ba4b5afdc3302db468e8afafed2"},{"bitrate":664,"format":"mp4","id":"5c7059e3a19fe200015cf2bd","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1_w6s2fv88/fileName/Why_We_Love_Ursula_from_The_Little_Mermaid___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1*~hmac=5be21184a51d0980c59f4cb2143a91736e320ba4b5afdc3302db468e8afafed2"},{"bitrate":905,"format":"mp4","id":"5c7059e3a19fe200015cf2be","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1_1i53x89r/fileName/Why_We_Love_Ursula_from_The_Little_Mermaid___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1*~hmac=5be21184a51d0980c59f4cb2143a91736e320ba4b5afdc3302db468e8afafed2"},{"bitrate":1459,"format":"mp4","id":"5c7059e3a19fe200015cf2bf","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1_rnzunb5w/fileName/Why_We_Love_Ursula_from_The_Little_Mermaid___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1*~hmac=5be21184a51d0980c59f4cb2143a91736e320ba4b5afdc3302db468e8afafed2"},{"bitrate":2431,"format":"mp4","id":"5c7059e3a19fe200015cf2c0","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1_sfsyoy1z/fileName/Why_We_Love_Ursula_from_The_Little_Mermaid___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1*~hmac=5be21184a51d0980c59f4cb2143a91736e320ba4b5afdc3302db468e8afafed2"},{"bitrate":3839,"format":"mp4","id":"5c7059e3a19fe200015cf2c1","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1_uew1vnlb/fileName/Why_We_Love_Ursula_from_The_Little_Mermaid___Let_s_Talk_Disney_by_Oh_My_Disney_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_9o0ys1j1/v/1/pv/1/ev/7/flavorId/1*~hmac=5be21184a51d0980c59f4cb2143a91736e320ba4b5afdc3302db468e8afafed2"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_9o0ys1j1/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_xie5z7i7/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_2e46f23e.jpeg?height=354\u0026region=0%2C0%2C1920%2C1080\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_2e46f23e.jpeg?region=0,0,1920,1080\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_2e46f23e.jpeg","publish_date":"February 27, 2019","contentToolbarTitleLink":{"url":"https://ohmy.disney.com/","title":"Visit Oh My Disney"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"recurring_segment","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_2e46f23e.jpeg?region=0,0,1920,1080","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_2e46f23e.jpeg","width":1920,"height":1080,"aspect_ratio":0.5625,"aspect_ratio_pct":"56.25%","orientation":"landscape","half_width":960},"alt_text":"Why We Love Ursula from The Little Mermaid | Let's Talk Disney by Oh My Disney","type":"Video","href":"https://video.disney.com/watch/why-we-love-ursula-from-the-little-mermaid-let-s-talk-disney-by-oh-my-disney-5828118fdb8f6ebd6b4f2a72"},{"primaryImageName":"thumb","ptitle":null,"app_token_ks":"NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs=","id":"582d2fc952215ebd6b4f2a72","slug":"5-outfits-inspired-by-the-little-mermaid-fashion-by-disney-style","entity_type":"video","entity_config":{"rounded_corners":"default","title_overlay":true,"thumb_outline":true,"aspect_ratio":"16x9","button_cta":"watch_now","show_ptitle":true,"text_alignment":"left","details_visibility":"show"},"title":"5 Outfits Inspired by The Little Mermaid | Fashion by Disney Style","duration":"1:38","duration_sec":98,"duration_iso":"T00H01M38S","description":"Celebrate the 30th anniversary of Disney's The Little Mermaid, with fashion-forward outfits inspired by some of our favorite characters from the film.","analytics":"vid||||0_0xu4qwhz|","adId":"0_0xu4qwhz","analyticsId":"0_0xu4qwhz","vType":"Short","adPattern":"AC","externals":[{"_id":"5c75b4bab771d9000111c641","account":"1068292","data":{"objectType":"KalturaMediaEntry","mediaType":"1","conversionQuality":"7804132","sourceType":"5","searchProviderType":null,"searchProviderId":null,"creditUserName":null,"creditUrl":null,"mediaDate":null,"dataUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_0xu4qwhz/format/url/protocol/http","flavorParamsIds":"0,1694071,1694081,1694091,1694101,1694111,1694121","isTrimDisabled":null,"streams":null,"plays":"0","views":"0","lastPlayedAt":null,"width":"1920","height":"1080","duration":"98","msDuration":"98000","durationType":null,"id":"0_0xu4qwhz","name":"5 Outfits Inspired by The Little Mermaid | Fashion by Disney Style","description":"Celebrate the 30th anniversary of Disney's The Little Mermaid, with fashion-forward outfits inspired by some of our favorite characters from the film.","partnerId":"1068292","userId":"None","creatorId":"None","tags":"us-video, matterhorn-asset-import, kaltura-hosted","adminTags":null,"categories":null,"categoriesIds":null,"status":"2","moderationStatus":"6","moderationCount":"0","type":"1","createdAt":"1551217576","updatedAt":1551218579,"rank":"0","totalRank":"0","votes":"0","groupId":null,"partnerData":null,"downloadUrl":"http://cdnapi.kaltura.com/p/1068292/sp/106829200/playManifest/entryId/0_0xu4qwhz/format/download/protocol/http/flavorParamIds/0","searchText":"_KAL_NET_ _1068292_ _MEDIA_TYPE_1| 5 Outfits Inspired by The Little Mermaid | Fashion by Disney Style us-video, matterhorn-asset-import, kaltura-hosted Celebrate the 30th anniversary of Disneys The Little Mermaid, with fashion-forward outfits inspired by some of our favorite characters from the film. ","licenseType":"-1","version":"0","thumbnailUrl":"http://cfvod.kaltura.com/p/1068292/sp/106829200/thumbnail/entry_id/0_0xu4qwhz/version/100051","accessControlId":"519772","startDate":null,"endDate":null,"referenceId":"f15490993a0f11e9a4a697d2c83636ae","replacingEntryId":null,"replacedEntryId":null,"replacementStatus":"0","partnerSortValue":"0","conversionProfileId":"7804132","redirectEntryId":null,"rootEntryId":"0_0xu4qwhz","parentEntryId":null,"operationAttributes":null,"entitledUsersEdit":null,"entitledUsersPublish":null,"entitledUsersView":null,"capabilities":null,"templateEntryId":null,"displayInSearch":"2","relatedObjects":null,"CoreId":"582d2fc952215ebd6b4f2a72","PermissionGroups":"505f4f3d75221803a57ac5db","Locales":"en-US,en","thumbnail_updatedAt":"1551218357","PromoType":"None","VideoType":"Short","Distributor":"4d3a78879c47877bb55bd685","Tags":"53fb407f00a5430d5208dca2,53fb4065ac90775d779c5793,538299b4735ec597a0b9652c,55cdee529a76637c8b8db00d,540454e2cf942468780d9686,582591a61030e55c585d5479,55770c0d5aca8d87af578f03,4d3a78879c47877bb55bd685,53fb404a4414785152c57f80,556f58a15831a481bb85c21e","HouseId":"STUT212"},"data_id":"0_0xu4qwhz","group":"us","source":"kaltura","id":"5c75b4bab771d9000111c641"},{"_id":"5c75b4bab771d9000111c642","account":"1.0","data":{},"data_id":"f15490993a0f11e9a4a697d2c83636ae","group":null,"source":"house_number","id":"5c75b4bab771d9000111c642"}],"embedURL":"https://secure.disney.com/embed/582d2fc952215ebd6b4f2a72?domain=video.disney.com","authors":{"properties":[],"publishers":["4d3a78879c47877bb55bd685"],"networks":["548877d7c3cfc576b88c66c6"]},"content_date":"2019-02-26T14:15:23-08:00","created_at":"2019-02-26T14:15:24-08:00","flavors":[{"bitrate":469,"format":"mp4","id":"5c75b7c7aee4bc000183e460","width":"480","height":"270","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0_xlp9a7n3/fileName/5_Outfits_Inspired_by_The_Little_Mermaid___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_400)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0*~hmac=bae8697fe72ac7746de98149dcb26850b914b86dd88fb6d839e1d75603162fb4"},{"bitrate":666,"format":"mp4","id":"5c75b7c7aee4bc000183e463","width":"640","height":"360","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0_4yeg533d/fileName/5_Outfits_Inspired_by_The_Little_Mermaid___Fashion_by_Disney_Style_(DIS-Basic_Small_-_WEB_MBL_(H264_600)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0*~hmac=bae8697fe72ac7746de98149dcb26850b914b86dd88fb6d839e1d75603162fb4"},{"bitrate":914,"format":"mp4","id":"5c75b7c7aee4bc000183e464","width":"960","height":"540","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0_4v4lgyqh/fileName/5_Outfits_Inspired_by_The_Little_Mermaid___Fashion_by_Disney_Style_(DIS-SD_Small_-_WEB_MBL_(H264_900)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0*~hmac=bae8697fe72ac7746de98149dcb26850b914b86dd88fb6d839e1d75603162fb4"},{"bitrate":1485,"format":"mp4","id":"5c75b7c7aee4bc000183e465","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0_2hppti8u/fileName/5_Outfits_Inspired_by_The_Little_Mermaid___Fashion_by_Disney_Style_(DIS-SD_Large_-_WEB_MBL_(H264_1500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0*~hmac=bae8697fe72ac7746de98149dcb26850b914b86dd88fb6d839e1d75603162fb4"},{"bitrate":2509,"format":"mp4","id":"5c75b7c7aee4bc000183e466","width":"1280","height":"720","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0_iv44oklk/fileName/5_Outfits_Inspired_by_The_Little_Mermaid___Fashion_by_Disney_Style_(DIS-HD_720_-_WEB_(H264_2500)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0*~hmac=bae8697fe72ac7746de98149dcb26850b914b86dd88fb6d839e1d75603162fb4"},{"bitrate":3913,"format":"mp4","id":"5c75b7c7aee4bc000183e467","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization","tokenization"],"url":"https://mh-kaltura.akamaized.net/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0_st1juj4s/fileName/5_Outfits_Inspired_by_The_Little_Mermaid___Fashion_by_Disney_Style_(DIS-HD_1080_-_WEB_(H264_4000)).mp4/forceproxy/true/name/a.mp4?__hdnea__=st=1563824218~exp=1563849418~acl=/s/p/1068292/sp/106829200/serveFlavor/entryId/0_0xu4qwhz/v/2/pv/1/ev/7/flavorId/0*~hmac=bae8697fe72ac7746de98149dcb26850b914b86dd88fb6d839e1d75603162fb4"},{"bitrate":99999,"format":"hls","id":"","width":"1920","height":"1080","security_profile":["progressive","encrypted_hls","tokenization"],"url":"https://cdnapisec.kaltura.com/p/1068292/sp/0/playManifest/entryId/0_0xu4qwhz/tags/mbr/preferredBitrate/1600/format/applehttp/protocol/https/video.m3u8?ks=NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"captions":[{"language":"en_us","format":"srt","url":"http://cdnbakmi.kaltura.com/api_v3/index.php/service/caption_captionAsset/action/serve/captionAssetId/1_0eoy8h4y/ks/NDIxMTY4MzQ1N2YyZjJlYmVlYmE5YWU0OTJiOTQ4ZjM2ZGQ0YzQ4NHwxMDY4MjkyOzEwNjgyOTI7MTU2Mzg1Njc5NjswOzE1NjM4MTM1OTYuNDk0NTs7c2Vzc2lvbmlkOjBfNjQ3ZW82ZGQsYXBwdG9rZW46MF82NDdlbzZkZCxzdmlldzoqOzs="}],"thumb":"https://lumiere-a.akamaihd.net/v1/images/image_154659e0.jpeg?height=354\u0026region=0%2C0%2C600%2C338\u0026width=630","thumb_list":"https://lumiere-a.akamaihd.net/v1/images/image_154659e0.jpeg?region=0,0,600,338\u0026width=320\u0026height=180","thumb_secure":"https://lumiere-a.akamaihd.net/v1/images/image_154659e0.jpeg","publish_date":"February 26, 2019","contentToolbarTitleLink":{"url":"http://blogs.disney.com/disney-style/","title":"Visit Disney Style"},"featured_entity_translation":"Featured Content","cta_button_title":"Watch Now","sub_type":"short","thumb_data":{"src":"https://lumiere-a.akamaihd.net/v1/images/image_154659e0.jpeg?region=0,0,600,338","base_src":"https://lumiere-a.akamaihd.net/v1/images/image_154659e0.jpeg","width":600,"height":338,"aspect_ratio":0.5633,"aspect_ratio_pct":"56.33%","orientation":"landscape","half_width":300},"alt_text":"5 Outfits Inspired by The Little Mermaid | Fashion by Disney Style","type":"Video","href":"https://video.disney.com/watch/5-outfits-inspired-by-the-little-mermaid-fashion-by-disney-style-582d2fc952215ebd6b4f2a72"}],"id":"5428c3cac55c11165be8a500","slug":"general-audience-playlist","entity_type":"videoplaylist","entity_config":{},"title":"General Audience Playlist","featured_entity_translation":"Featured Content","cta_button_title":"See More","alt_text":"General Audience Playlist","type":"VideoPlaylist"}],"autoplay":true,"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images","up_next":"Up Next","now_playing":"Now Playing","watch_next_video":"Watch Next Video","autoplay_off":"Turn Autoplay Off","replay_video":"Replay Video","next_video_start":"Next Video","autoplay_on":"Autoplay On","related_videos":"Related Videos"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["content-span-full-screen","primary-theme","light"]},"config_options":{"disable_endcard":true,"autoplay_mute":true}},{"view":"rich_image","ref":"1-3","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-desktop_1f595224.jpeg?region=0%2C0%2C1536%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-desktop_1f595224.jpeg?region=0%2C0%2C1536%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-mobile_73963647.jpeg?region=0%2C0%2C640%2C444","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-mobile_73963647.jpeg?region=0%2C0%2C640%2C444","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-desktop_1f595224.jpeg?region=0,0,1536,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-desktop_1f595224.jpeg","width":1536,"height":300,"aspect_ratio":0.1953,"aspect_ratio_pct":"19.53%","orientation":"landscape","half_width":768},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-mobile_73963647.jpeg?region=0,0,640,444","base_src":"https://lumiere-a.akamaihd.net/v1/images/shopdisney-logo-mobile_73963647.jpeg","width":640,"height":444,"aspect_ratio":0.6938,"aspect_ratio_pct":"69.38%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-4","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"https://www.shopdisney.com/?cmp=OTL-Dcom\u0026amp;att=GO%7Csdhome\u0026amp;EFC=280559\"\u003eshopDisney: Disney's Official Online Store\u003c/a\u003e\u003cbr\u003eDisney store online is now shopDisney, the ultimate Disney shopping destination! Shop for costumes, clothes, toys, collectibles, décor, movies and more.\u003c/p\u003e\u003cp class=\"\"\u003e\u003cbr\u003e\u003c/p\u003e\u003cp class=\"\"\u003e\u003ca href=\"https://www.shopdisney.com/movies-shows/marvel/captain-marvel?cmp=OTL-Dcom\u0026amp;att=GO%7Ccap\u0026amp;EFC=280559\"\u003eCaptain Marvel Merchandise\u003c/a\u003e\u003cbr\u003eShop Captain Marvel merchandise like t-shirts, costumes, action figures, collectibles and more at shopDisney.\u003cbr\u003e\u003c/p\u003e\u003cp class=\"\"\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.shopdisney.com/characters/mickey-mouse?cmp=OTL-Dcom\u0026amp;att=GO%7Cmic\u0026amp;EFC=280559\"\u003eMickey Mouse Merchandise\u003c/a\u003e\u003cbr\u003eMake magic with Mickey Mouse. Find an entire clubhouse of merchandise like toys, costumes, earhats, t-shirts, home decorations, party supplies and more at shopDisney.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.shopdisney.com/characters/stitch?cmp=OTL-Dcom\u0026amp;att=GO%7Clas\u0026amp;EFC=280559\"\u003eStitch Merchandise\u003c/a\u003e\u003cbr\u003eSay aloha to Stitch merchandise from Disney's Lilo \u0026amp; Stitch for your entire ohana at shopDisney.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.shopdisney.com/toys?cmp=OTL-Dcom\u0026amp;att=GO%7Ctoy\u0026amp;EFC=280559\"\u003eToys for Kids\u003c/a\u003e\u003cbr\u003eMake play time a blast with Disney toys. Find plush toys, Princess toys, action figures and much more at shopDisney.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.shopdisney.com/clothes?cmp=OTL-Dcom\u0026amp;att=GO%7Cclo\u0026amp;EFC=280559\"\u003eShop Disney Clothes: T-Shirts, Hoodies, PJs and More\u003c/a\u003e\u003cbr\u003eDress to impress with Disney clothes. Shop for hoodies, shirts, denim, activewear, pajamas and more at shopDisney.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.shopdisney.com/adult/women/accessories/beauty?cmp=OTL-Dcom\u0026amp;att=GO%7Cbam\u0026amp;EFC=280559\"\u003eDisney Makeup \u0026amp; Beauty Products\u003c/a\u003e\u003cbr\u003e\u003cspan style='font-family: -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, \"Helvetica Neue\", Arial, sans-serif; font-size: 1rem;'\u003eExpress yourself with this magical collection of lipsticks, powders, eyeshadows, headbands, beauty accessories and more at shopDisney.\u003c/span\u003e\u003c/p\u003e"},{"view":"rich_image","ref":"1-5","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/dcpi-header-logo_d6f42a07.jpeg?region=0%2C0%2C1536%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/dcpi-header-logo_d6f42a07.jpeg?region=0%2C0%2C1536%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/hero-1-mobile_3fbc2500.png?region=0%2C0%2C640%2C444","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/hero-1-mobile_3fbc2500.png?region=0%2C0%2C640%2C444","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/dcpi-header-logo_d6f42a07.jpeg?region=0,0,1536,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/dcpi-header-logo_d6f42a07.jpeg","width":1536,"height":300,"aspect_ratio":0.1953,"aspect_ratio_pct":"19.53%","orientation":"landscape","half_width":768},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/hero-1-mobile_3fbc2500.png?region=0,0,640,444","base_src":"https://lumiere-a.akamaihd.net/v1/images/hero-1-mobile_3fbc2500.png","width":640,"height":444,"aspect_ratio":0.6938,"aspect_ratio_pct":"69.38%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","no-border","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-6","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","no-border","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"http://lol.disney.com/games\" style=\"background-color: rgb(255, 255, 255); font-size: 1rem;\"\u003eOnline Games \u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\tPlay Disney online games from Disney Channel, Disney XD, and Disney Movies! Plus \u003ca href=\"http://lol.disney.com/games/coloring-pages\"\u003ecoloring pages\u003c/a\u003e, fun \u003ca href=\"http://lol.disney.com/video\"\u003evideos\u003c/a\u003e and awesome \u003ca href=\"http://lol.disney.com/star-wars\"\u003eStar Wars activities\u003c/a\u003e.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://video.disney.com/\"\u003eDisney Videos\u003c/a\u003e\u003c/p\u003e\u003cp\u003eWatch your favorite Disney videos from Disney Channel, Disney XD, movies, music videos, Disney on YouTube, and much more!\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://lol.disney.com/star-wars-kids\"\u003eGalaxy of Adventures for Star Wars Kids!\u003c/a\u003e\u003c/p\u003e\u003cp\u003eTake your first step into a larger world with Star Wars Galaxy of Adventures!\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://lol.disney.com/star-wars\"\u003eStar Wars Activities\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eCheck out the latest Star Wars activities, \u003ca href=\"http://lol.disney.com/star-wars-games\"\u003egames\u003c/a\u003e, coloring pages, videos, \u003ca href=\"http://lol.disney.com/star-wars-quizzes\"\u003equizzes\u003c/a\u003e, and more! \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/captain-marvel\"\u003eCaptain Marvel\u003c/a\u003e\u003c/p\u003e\u003cp\u003eMarvel Studios’ “Captain Marvel” follows the journey of Carol Danvers as she becomes one of the universe’s most powerful heroes. \u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/aladdin-2019\"\u003eAladdin (2019)\u003c/a\u003e\u003c/p\u003e\u003cp\u003eThe live-action adaptation of Disney's beloved animated classic \"Aladdin\".\u003cbr\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/toy-story-4\"\u003eToy Story 4\u003c/a\u003e\u003c/p\u003e\u003cp\u003eJoin Woody and friends on their next adventure this summer.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/the-lion-king-2019\"\u003eThe Lion King (2019)\u003c/a\u003e\u003c/p\u003e\u003cp\u003eFollow the live-action story of a Disney classic. \u003cbr\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/frozen-2\"\u003eFrozen 2\u003c/a\u003e\u003c/p\u003e\u003cp\u003eThe sequel to the popular Disney movie \"Frozen\" hits theaters November 22, 2019.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.starwars.com/films/star-wars-episode-ix-the-rise-of-skywalker\"\u003eStar Wars Episode 9: The Rise of Skywalker\u003c/a\u003e\u003c/p\u003e\u003cp\u003eWatch the conclusion to the Skywalker saga December 2019.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/maleficent-mistress-of-evil\"\u003eMaleficent: Mistress of Evil\u003c/a\u003e\u003c/p\u003e\u003cp\u003eExplore the complex relationship between Maleficent and the soon to be Queen in \"Maleficent: Mistress of Evil.\"\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/dark-phoenix\"\u003eDark Phoenix\u003c/a\u003e\u003c/p\u003e\u003cp\u003eFollow X-Men's Jean Grey as she evolves into the iconic Dark Phoenix.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/onward\"\u003eOnward\u003c/a\u003e\u003c/p\u003e\u003cp\u003eSet in a suburban fantasy world, Disney and Pixar’s “Onward” introduces two elf brothers who embark on an extraordinary quest.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/soul\"\u003eSoul\u003c/a\u003e\u003c/p\u003e\u003cp\u003ePixar Animation Studios will take you on a journey from the streets of New York City to the cosmic realms to discover the answers to life’s most important questions. \u003cbr\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://movies.disney.com/mulan-2020\"\u003eMulan (2020)\u003c/a\u003e\u003c/p\u003e\u003cp\u003eThe live-action adaptation of Disney's \"Mulan\" hits theaters March 2020.\u003c/p\u003e"},{"view":"rich_image","ref":"1-7","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-8wlgy9_ced6895d.jpeg?region=0%2C0%2C1536%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-8wlgy9_ced6895d.jpeg?region=0%2C0%2C1536%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-17fjk0a_fb7511f1.jpeg?region=0%2C0%2C640%2C444","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-17fjk0a_fb7511f1.jpeg?region=0%2C0%2C640%2C444","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-8wlgy9_ced6895d.jpeg?region=0,0,1536,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-8wlgy9_ced6895d.jpeg","width":1536,"height":300,"aspect_ratio":0.1953,"aspect_ratio_pct":"19.53%","orientation":"landscape","half_width":768},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-17fjk0a_fb7511f1.jpeg?region=0,0,640,444","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-17fjk0a_fb7511f1.jpeg","width":640,"height":444,"aspect_ratio":0.6938,"aspect_ratio_pct":"69.38%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-8","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"http://abcnews.go.com/\"\u003eABC Breaking News\u003c/a\u003e\u003c/p\u003e\u003cp\u003eGet breaking national \u0026amp; world news, broadcast video coverage, and exclusive interviews. \u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://abcnews.go.com/us\"\u003eNational News\u003c/a\u003e\u003c/p\u003e\u003cp\u003e \t News about United States politics, crime, education, legal stories, celebrities, weather, the economy and more. \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://abcnews.go.com/international\"\u003eInternational News \u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\t Get the latest international news and events from Asia, Europe, the Middle East, and more. \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://abcnews.go.com/video\"\u003eNews Videos \u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eGet the latest news videos and watch live news clips \u0026amp; coverage online at ABC News. \u003c/p\u003e"},{"view":"rich_image","ref":"1-9","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/rich_small_go_parks_159d0824.jpeg?region=0%2C0%2C1536%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/rich_small_go_parks_159d0824.jpeg?region=0%2C0%2C1536%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/rich_mobile_go_parks_copy_95a640f5.jpeg?region=0%2C0%2C640%2C444","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/rich_mobile_go_parks_copy_95a640f5.jpeg?region=0%2C0%2C640%2C444","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/rich_small_go_parks_159d0824.jpeg?region=0,0,1536,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/rich_small_go_parks_159d0824.jpeg","width":1536,"height":300,"aspect_ratio":0.1953,"aspect_ratio_pct":"19.53%","orientation":"landscape","half_width":768},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/rich_mobile_go_parks_copy_95a640f5.jpeg?region=0,0,640,444","base_src":"https://lumiere-a.akamaihd.net/v1/images/rich_mobile_go_parks_copy_95a640f5.jpeg","width":640,"height":444,"aspect_ratio":0.6938,"aspect_ratio_pct":"69.38%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-10","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"https://disneyworld.disney.go.com/plan/my-disney-experience/?CMP=AFC-DPFY13Q1DIENT1371A\u0026amp;DISCID=DI_go_mdx\"\u003eMy Disney Experience - Walt Disney Resort\u003c/a\u003e\u003c/p\u003e\u003cp\u003e \t Discover the tools to plan \u0026amp; share your Disney World vacation\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://disneyland.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1372B\u0026amp;DISCID=DI_go_dlr\"\u003eDisneyland Resort \u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eImagination is the destination at Disneyland Resort in Anaheim, CA \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://disneyparks.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1373G\u0026amp;DISCID=DI_go_parks\"\u003eDisney Parks\u003c/a\u003e\u003c/p\u003e\u003cp\u003ePlan a family vacation to Disney Parks, cruises \u0026amp; other destinations\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://disneyparks.disney.go.com?DISCID=DI_go_disneyside\"\u003eShow Your Disney Side\u003c/a\u003e\u003c/p\u003e\u003cp\u003eBring out the fun in your family at Disney Parks.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://disneycruise.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1375C\u0026amp;DISCID=DI_go_dcl\"\u003eDisney Cruise Line \u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\t Discover magical vacations with unique cruise activities for everyone\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.adventuresbydisney.com/?CMP=AFC-DPFY13Q1DIENT1376D\u0026amp;DISCID=DI_go_abd\"\u003eAdventures by Disney\u003c/a\u003e\u003c/p\u003e\u003cp\u003ePlanned \u0026amp; guided vacations with exciting itineraries all over the globe\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e \u003ca href=\"https://resorts.disney.go.com/aulani-hawaii-resort/?CMP=AFC-DPFY13Q1DIENT1377F\u0026amp;DISCID=DI_go_aulani\"\u003eAulani: A Disney Resort \u0026amp; Spa \t Disney\u003c/a\u003e\u003c/p\u003e\u003cp\u003e Hawaii Resort, a Hawaiian paradise with a touch of magic \u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://disneyvacationclub.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1378E\u0026amp;DISCID=DI_go_dvc\"\u003e\u003cbr\u003e\u003c/a\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://disneyvacationclub.disney.go.com/?CMP=AFC-DPFY13Q1DIENT1378E\u0026amp;DISCID=DI_go_dvc\"\u003eDisney Vacation Club\u003c/a\u003e\u003c/p\u003e\u003cp\u003eDisney Vacation Ownership and a flexible timeshare program.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://disneyland.disney.go.com/events-tours/disneyland/star-wars/?DISCID=DI_go_dlrstarwars\"\u003eDisneyland Star Wars\u003c/a\u003e\u003c/p\u003e\u003cp\u003eSeason of the Force is a series of special events and experiences celebrating the Star Wars saga that takes place within Tomorrowland at Disneyland Park.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://disneyworld.disney.go.com/destinations/hollywood-studios/toy-story-land/?DISCID=DW_go_dwrtoystory\"\u003eToy Story Land\u003c/a\u003e\u003c/p\u003e\u003cp\u003eShrink to the size of a toy in a new land at Disney's Hollywood Studios! Coming June 30, 2018 to Walt Disney World Resort.\u003c/p\u003e"},{"view":"rich_image","ref":"1-11","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-2rkl33_7e676ce3.jpeg?region=0%2C0%2C1536%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-2rkl33_7e676ce3.jpeg?region=0%2C0%2C1536%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-1da45yk_f57f854e.jpeg?region=0%2C0%2C640%2C444","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-1da45yk_f57f854e.jpeg?region=0%2C0%2C640%2C444","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-2rkl33_7e676ce3.jpeg?region=0,0,1536,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-2rkl33_7e676ce3.jpeg","width":1536,"height":300,"aspect_ratio":0.1953,"aspect_ratio_pct":"19.53%","orientation":"landscape","half_width":768},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-1da45yk_f57f854e.jpeg?region=0,0,640,444","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-1da45yk_f57f854e.jpeg","width":640,"height":444,"aspect_ratio":0.6938,"aspect_ratio_pct":"69.38%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-12","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"http://abc.go.com/\"\u003eOfficial Site of the ABC Network\u003c/a\u003e\u003c/p\u003e\u003cp\u003eVisit ABC online for information on ABC daytime and primetime network programming.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e \u003ca href=\"http://abc.go.com/watch\"\u003eWatch Full Episodes from ABC\u003c/a\u003e \u003cbr\u003e\u003c/p\u003e\u003cp\u003eWatch full episodes from your favorite ABC programs online. \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e \u003ca href=\"\"\u003eABC TV Shows\u003c/a\u003e\u003c/p\u003e\u003cp\u003e \t Browse the complete list of our programming as well as movies and specials. \u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e \u003ca href=\"http://abc.go.com/schedule\"\u003eABC Television Schedule\u003c/a\u003e\u003c/p\u003e\u003cp\u003e \t Official ABC Home Schedule offers a deeper look at the hit TV series. \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e \u003ca href=\"http://abc.go.com/shows/greys-anatomy\"\u003eGrey's Anatomy\u003c/a\u003e \u003cbr\u003e\u003c/p\u003e\u003cp\u003eThe official Grey's Anatomy page on ABC. \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e \u003ca href=\"http://abc.go.com/shows/dancing-with-the-stars/index\"\u003eDancing With the Stars\u003c/a\u003e\u003c/p\u003e\u003cp\u003e \t Watch full episodes, play trivia games and read recaps for every episode. \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e \u003ca href=\"http://abcfamily.go.com/\"\u003eABC Family \u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eVisit ABC Family online for information on ABC Family network programming. \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://abc.go.com/daytime?cid=10_Daytime_Nav\"\u003eABC Daytime\u003c/a\u003e \u003cbr\u003e\u003c/p\u003e\u003cp\u003e\t The View, The Chew, General Hospital, and more.. \u003cbr\u003e\u003c/p\u003e"},{"view":"rich_image","ref":"1-13","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-v7z75q_551d9388.jpeg?region=0%2C0%2C1536%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-v7z75q_551d9388.jpeg?region=0%2C0%2C1536%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-l6j1f5_1e54dc26.jpeg?region=0%2C0%2C640%2C444","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-l6j1f5_1e54dc26.jpeg?region=0%2C0%2C640%2C444","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-v7z75q_551d9388.jpeg?region=0,0,1536,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-v7z75q_551d9388.jpeg","width":1536,"height":300,"aspect_ratio":0.1953,"aspect_ratio_pct":"19.53%","orientation":"landscape","half_width":768},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-l6j1f5_1e54dc26.jpeg?region=0,0,640,444","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-l6j1f5_1e54dc26.jpeg","width":640,"height":444,"aspect_ratio":0.6938,"aspect_ratio_pct":"69.38%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-14","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"http://www.espn.com/\"\u003eESPN\u003c/a\u003e\u003c/p\u003e\u003cp\u003eStay updated on all the latest sports news and scores at ESPN.com, the Worldwide Leader in Sports\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://www.espn.com/video/sportscenter\"\u003eSportsCenter\u003c/a\u003e\u003c/p\u003e\u003cp\u003eWatch sports video clips, highlights and all the famous SportsCenter commercials at SportsCenter.com\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e \u003ca href=\"http://www.espn.com/watchespn/\"\u003eWatchESPN\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eWatch live sports events and replays as well as ESPN programs at WatchESPN.com \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://www.espn.in\"\u003eESPN India\u003c/a\u003e\u003c/p\u003e\u003cp\u003eVisit ESPN India to get up-to-the-minute sports news coverage, scores, highlights and commentary for cricket, rugby, football, F1, kabaddi and more.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://www.espn.com.br/\"\u003eESPN Brasil\u003c/a\u003e\u003c/p\u003e\u003cp\u003eCasa do futebol brasileiro e internacional, da NBA, NFL, MLB e do tênis. Notícias exclusivas, blogs, vídeos, fotos e tempo real de eventos esportivos.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://tv5.espn.com/\"\u003eESPN Philippines\u003c/a\u003e\u003c/p\u003e\u003cp\u003eVisit ESPN to get up-to-the-minute sports news coverage, scores, highlights and commentary for NBA, PBA, American NCAA Basketball, eSports, NFL, Boxing and more.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://plus.espn.com/\"\u003eESPN+ Stream Live Sports\u003c/a\u003e\u003c/p\u003e\u003cp\u003eWatch a selection of live sports from MLB, MLS, NHL, PGA TOUR Golf, Top Rank Boxing, Grand Slam Tennis, college sports, soccer, cricket, rugby and more. \u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://plus.espn.com/es/\"\u003eESPN+ Streaming Deportes En Vivo\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eDisfruta una selección de juegos en vivo de la MLB, la MLS, la NHL, TOUR de golf de PGA, Top Rank Boxing, tenis de Grand Slam, deportes universitarios y más.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://www.espn.com/nba/draft/news\"\u003eNBA Draft\u003c/a\u003e\u003c/p\u003e\u003cp\u003eGet all the latest news around the \u003ca href=\"http://www.espn.com/nba/draft/live\"\u003e2018 NBA Draft\u003c/a\u003e with Draftcast on ESPN\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://www.espn.com/fantasy/football/\"\u003eFantasy Football\u003c/a\u003e\u003c/p\u003e\u003cp\u003ePlay ESPN fantasy football for free. Create or join a fantasy football league, draft players, track rankings, watch highlights, get pick advice, and more!\u003c/p\u003e"},{"view":"rich_image","ref":"1-15","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-f7ejpf_c7088577.jpeg?region=0%2C0%2C1536%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-f7ejpf_c7088577.jpeg?region=0%2C0%2C1536%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-19y6qga_d9631413.jpeg?region=0%2C0%2C640%2C444","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-19y6qga_d9631413.jpeg?region=0%2C0%2C640%2C444","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-f7ejpf_c7088577.jpeg?region=0,0,1536,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-f7ejpf_c7088577.jpeg","width":1536,"height":300,"aspect_ratio":0.1953,"aspect_ratio_pct":"19.53%","orientation":"landscape","half_width":768},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-19y6qga_d9631413.jpeg?region=0,0,640,444","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150608-27674-19y6qga_d9631413.jpeg","width":640,"height":444,"aspect_ratio":0.6938,"aspect_ratio_pct":"69.38%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-16","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"https://ohmy.disney.com/\" style=\"background-color: rgb(255, 255, 255); font-size: 1rem;\"\u003eOh My Disney\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eThe official destination for Disney quizzes, nostalgia, news, and other Disney magic.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://style.disney.com/\"\u003eDisney Style\u003c/a\u003e\u003c/p\u003e\u003cp\u003eThe ultimate destination for everything Disney fashion, lifestyle, shopping, celebrity news, and beauty.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://family.disney.com/\" style=\"background-color: rgb(255, 255, 255); font-size: 1rem;\"\u003eDisney Family\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eDisney Family offers parents a way to add magic to their kiddo’s life—from the best \u003ca href=\"https://family.disney.com/articles/kids-party-invitations/\"\u003ekids party invitations\u003c/a\u003e and \u003ca href=\"https://family.disney.com/articles/frozen-party-ideas-ultimate-guide/\"\u003eFrozen party ideas\u003c/a\u003e to making a regular weekend feel special! Disney Family has tons of \u003ca href=\"https://family.disney.com/crafts/\"\u003ecrafts\u003c/a\u003e, \u003ca href=\"https://family.disney.com/recipes/\"\u003erecipes\u003c/a\u003e, and \u003ca href=\"https://family.disney.com/parties/\"\u003eparties\u003c/a\u003e to help create Disney memories for the whole family.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e"},{"view":"rich_image","ref":"1-17","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_aa8d97ea.png?region=0%2C0%2C1536%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_aa8d97ea.png?region=0%2C0%2C1536%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_mobile_8ca275cf.png?region=0%2C0%2C640%2C444","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_mobile_8ca275cf.png?region=0%2C0%2C640%2C444","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_aa8d97ea.png?region=0,0,1536,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_aa8d97ea.png","width":1536,"height":300,"aspect_ratio":0.1953,"aspect_ratio_pct":"19.53%","orientation":"landscape","half_width":768},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_mobile_8ca275cf.png?region=0,0,640,444","base_src":"https://lumiere-a.akamaihd.net/v1/images/fivethirtyeight_go_com_header_mobile_8ca275cf.png","width":640,"height":444,"aspect_ratio":0.6938,"aspect_ratio_pct":"69.38%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-18","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"http://fivethirtyeight.com/\"\u003eFiveThirtyEight\u003c/a\u003e \u003c/p\u003e\u003cp\u003eVisit Nate Silver’s FiveThirtyEight which uses statistical analysis to tell compelling stories about elections, politics, sports, science, economics and lifestyle.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://fivethirtyeight.com/politics/\"\u003ePolitics\u003c/a\u003e\u003c/p\u003e\u003cp\u003eRead expert political analysis from campaign fundraising to election day and beyond.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://fivethirtyeight.com/economics/\"\u003eEconomics\u003c/a\u003e \u003c/p\u003e\u003cp\u003eFiveThirtyEight guides readers through a thicket of economic data, clarifying what politicians and policy wonks often make obscure.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://fivethirtyeight.com/sports/\"\u003eSports\u003c/a\u003e \u003c/p\u003e\u003cp\u003eVisit FiveThirtyEight for a unique statistical approach to sports analysis covering MLB, NBA, NFL, and beyond.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://fivethirtyeight.com/science/\"\u003eScience\u003c/a\u003e \u003c/p\u003e\u003cp\u003eFiveThirtyEight analyzes the data behind those headline-grabbing science stories, separating the silly stories from the breakthroughs.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"http://fivethirtyeight.com/life/\"\u003eLifestyle\u003c/a\u003e \u003c/p\u003e\u003cp\u003eFiveThirtyEight tells lifestyle stories you’ll want to share with your friends, from trends in online dating to analysis of which airline is most likely to land its planes on time.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e"},{"view":"rich_image","ref":"1-19","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/desktop_2_d1d38dbb.png?region=0%2C0%2C1500%2C300","retina_url":"https://lumiere-a.akamaihd.net/v1/images/desktop_2_d1d38dbb.png?region=0%2C0%2C1500%2C300","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/mobile_f061050a.jpeg?region=0%2C0%2C640%2C450","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/mobile_f061050a.jpeg?region=0%2C0%2C640%2C450","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/desktop_2_d1d38dbb.png?region=0,0,1500,300","base_src":"https://lumiere-a.akamaihd.net/v1/images/desktop_2_d1d38dbb.png","width":1500,"height":300,"aspect_ratio":0.2,"aspect_ratio_pct":"20.0%","orientation":"landscape","half_width":750},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/mobile_f061050a.jpeg?region=0,0,640,450","base_src":"https://lumiere-a.akamaihd.net/v1/images/mobile_f061050a.jpeg","width":640,"height":450,"aspect_ratio":0.7031,"aspect_ratio_pct":"70.31%","orientation":"landscape","half_width":320}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-20","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"https://theundefeated.com/\"\u003eThe Undefeated\u003c/a\u003e\u003c/p\u003e\u003cp\u003eVisit The Undefeated to get news and commentary that explores the intersections of race, sports, culture and more.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://theundefeated.com/sports/\"\u003eSports: News and Commentary\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eRead The Undefeated for innovative reporting on the latest sports news — from athletes and games, to the tough discussions at the intersections of race and culture.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://theundefeated.com/culture/\"\u003eCulture: Music, Fashion, Movies, TV, Entertainment\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eRead The Undefeated for thoughtful commentary on everything culture — from music to style and everything in between.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://theundefeated.com/hbcu/\"\u003eHistorically black college and university news\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eRead The Undefeated for reporting and commentary on historically black colleges and universities.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://theundefeated.com/the-uplift/\"\u003eThe Uplift: Good news, positive stories\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eRead The Undefeated for uplifting commentary, bringing the good news from around the nation and globe.\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://theundefeated.com/features/the-stop-national-geographic-anquan-boldin-racial-profiling-of-drivers-leaves-legacy-of-anger/\"\u003e\u003cbr\u003e\u003c/a\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://theundefeated.com/features/childish-gambinos-this-is-america-video-is-a-beautiful-nightmare/\"\u003eChildish Gambino’s ‘This is America’\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eWaking up from staying woke: Genius or not, Gambino’s frightening dreamlike opus is right on time\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e"},{"view":"rich_image","ref":"1-21","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{"foreground_image":{"url":"https://lumiere-a.akamaihd.net/v1/images/marvel-logo-desktop-white-1440x281_ce5b20d9.png?region=0%2C0%2C1440%2C281","retina_url":"https://lumiere-a.akamaihd.net/v1/images/marvel-logo-desktop-white-1440x281_ce5b20d9.png?region=0%2C0%2C1440%2C281","mobile_url":"https://lumiere-a.akamaihd.net/v1/images/marvel-logo-mobile-white-400x277_03b69333.png?region=0%2C0%2C400%2C277","mobile_retina_url":"https://lumiere-a.akamaihd.net/v1/images/marvel-logo-mobile-white-400x277_03b69333.png?region=0%2C0%2C400%2C277","alignment":"top"}},"fullscreen_content":true,"header_text_alignment":"left","peekaboo_options":{"hide_open_text_on_desktop":true,"hide_close_text_on_desktop":true,"text_alignment":"right"},"image_assets":{"foreground_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/marvel-logo-desktop-white-1440x281_ce5b20d9.png?region=0,0,1440,281","base_src":"https://lumiere-a.akamaihd.net/v1/images/marvel-logo-desktop-white-1440x281_ce5b20d9.png","width":1440,"height":281,"aspect_ratio":0.1951,"aspect_ratio_pct":"19.51%","orientation":"landscape","half_width":720},"foreground_image_mobile":{"src":"https://lumiere-a.akamaihd.net/v1/images/marvel-logo-mobile-white-400x277_03b69333.png?region=0,0,400,277","base_src":"https://lumiere-a.akamaihd.net/v1/images/marvel-logo-mobile-white-400x277_03b69333.png","width":400,"height":277,"aspect_ratio":0.6925,"aspect_ratio_pct":"69.25%","orientation":"landscape","half_width":200}},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]}},{"view":"rich_text","ref":"1-22","type":"","count":0,"visibility":{"allowed_regions":[],"disallowed_regions":[],"invisible_device_types":[]},"title":null,"data":[],"translations":{"see_all":"See All","show_more":"Show More","share":"Share","embed":"Embed","quick_link":"Quick Link","of":"of","loading":"Loading","take_quiz":"Take Quiz","progress_bar":"Progress Bar","all":"All","images":"images"},"style_options":{"default_color_theme":"light","images":{},"fullscreen_content":true,"header_text_alignment":"left","text_color":{"text_lightness":"dark"},"columns":"1","image_assets":{},"color_theme":"light","active_theme":"primary","additional_style_classes":["header-left","content-span-full-screen","primary-theme","light"]},"rich_text":"\u003cp\u003e\u003ca href=\"https://www.marvel.com\"\u003eMarvel.com: The Official Site of Marvel Entertainment\u003c/a\u003e\u003c/p\u003e\u003cp\u003eMarvel.com is the official site of Marvel Entertainment! Browse official Marvel movies, characters, comics, TV shows, videos, \u0026amp; more.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/movies/spider-man-far-from-home/live-red-carpet-world-premiere\"\u003eSpider-Man: Far From Home Release Date, Trailer, Cast, \u0026amp; More\u003c/a\u003e\u003c/p\u003e\u003cp\u003eIn theaters July 2, 2019! Peter Parker's European vacation is halted when he agrees to help Nick Fury uncover the mystery of elemental creature attacks.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/movies/avengers-endgame\"\u003eAvengers: Endgame Cast, Tickets, Trailer, \u0026amp; More\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eIn theaters April 26, 2019! The Avengers take a final stand against Thanos in Marvel Studios' conclusion to twenty-two films, \"Avengers: Endgame.\"\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/games/marvel-s-avengers\"\u003eMarvel’s Avengers Video Game (Release Date: May 15, 2020)\u003c/a\u003e\u003c/p\u003e\u003cp\u003eMarvel’s Avengers combines an original story with single-player or up to four player co-operative gameplay in the definitive Avengers gaming experience.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/comics/unlimited\"\u003eMarvel Unlimited – Digital Comic Book Subscription Service\u003c/a\u003e\u003c/p\u003e\u003cp\u003eUnlock the Marvel universe, and enjoy instant access to over 25,000 digital comics with Marvel’s premier digital subscription service.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/movies\"\u003eMarvel Movies \u0026amp; the Marvel Cinematic Universe (MCU)\u003c/a\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003eExplore your favorite Marvel movies and films on the official site of Marvel Entertainment! Discover your favorite plots, characters, cast, \u0026amp; more!\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/characters\"\u003eMarvel Characters, Super Heroes, \u0026amp; Villains\u003c/a\u003e\u003c/p\u003e\u003cp\u003eLearn about your favorite Marvel characters, super heroes, \u0026amp; villains! Read about \u003ca href=\"https://www.marvel.com/characters/spider-man-peter-parker\"\u003eSpider-Man\u003c/a\u003e, \u003ca href=\"https://www.marvel.com/characters/iron-man-tony-stark\"\u003eIron Man\u003c/a\u003e, \u003ca href=\"https://www.marvel.com/characters/captain-marvel-carol-danvers\"\u003eCaptain Marvel\u003c/a\u003e, \u003ca href=\"https://www.marvel.com/characters/thanos\"\u003eThanos\u003c/a\u003e, \u003ca href=\"https://www.marvel.com/teams-and-groups/avengers\"\u003ethe Avengers\u003c/a\u003e \u0026amp; more!\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/tv-shows\"\u003eMarvel TV Shows\u003c/a\u003e\u003c/p\u003e\u003cp\u003eCheck out all of your favorite Marvel TV shows! Learn all about the cast, characters, plots, \u0026amp; episodes of your favorite shows!\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/games\"\u003eMarvel Games\u003c/a\u003e\u003c/p\u003e\u003cp\u003eExplore Marvel's collection of console, online, \u0026amp; mobile games! Check out Marvel’s \u003ca href=\"https://www.marvel.com/games/marvel-s-spider-man\"\u003eSpider-Man game\u003c/a\u003e, for PlayStation 4.\u003c/p\u003e\u003cp\u003e\u003cbr\u003e\u003c/p\u003e\u003cp\u003e\u003ca href=\"https://www.marvel.com/comics\"\u003eMarvel Comics\u003c/a\u003e\u003c/p\u003e\u003cp\u003eExplore and purchase Marvel print and digital comics. Marvel.com is the official website to learn about all-things Marvel comics!\u003c/p\u003e"}],"style":{"takeover_styles":{"local_chrome_color":"dark","local_chrome_dark":true,"main_image":{"src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150610-21458-1oo90h9_04c794d4.jpeg?region=0,0,1600,764","base_src":"https://lumiere-a.akamaihd.net/v1/images/open-uri20150610-21458-1oo90h9_04c794d4.jpeg","width":1600,"height":764,"aspect_ratio":0.4775,"aspect_ratio_pct":"47.75%","orientation":"landscape","half_width":800},"repeating_image":null},"page_background_styles":{"bg_color":"#edeef3","footer_inverted":true,"footer_text_color":"light","pushdown_safety_color":"#9399bd","gradient":{"type":"linear","direction":"to bottom","fixed":false,"color":"#9399bd","stop1":"0","stop2":"808px","stop3":"1500px","stop4":"92%"}},"site_max_width_shadow":false},"adData":{"config":{"targeting":{"unit":"dol","siteSection":"home","contentType":"homepage","pgn":"homepage","pageName":"homepage","contentId":"502cec430e1c0033286fe0a7","property":null,"propertyId":null,"actor":"","character":"","characterId":null,"tag":null,"keywords":null,"product":null,"movieGenre":null,"movieRating":null,"movieTitle":null,"gameGenre":null,"gameTitle":null,"gameType":null,"videoType":null},"web":"/21783347309/goc/homepage","mobile":"/21783347309/goc/homepage"},"cds":0,"disableAds":false,"pda":false,"adSystem":"dfp","adTargeting":{"unit":"dol","siteSection":"home","contentType":"homepage","pgn":"homepage","pageName":"homepage","contentId":"502cec430e1c0033286fe0a7","property":null,"propertyId":null,"actor":"","character":"","characterId":null,"tag":null,"keywords":null,"product":null,"movieGenre":null,"movieRating":null,"movieTitle":null,"gameGenre":null,"gameTitle":null,"gameType":null,"videoType":null},"cmsIdKalturaMap":[{"cms_id":"2044","description":"US","kaltura_act_id":"1068292","kaltura_group":"us"}],"dfpAdRule":1,"showOop":true,"showOverlay":true,"web_override_prefix":null,"mobile_override_prefix":null},"market_code":"us","browser_warning":{"header":"We recommend you view this site in a newer web browser.","body":"Disney wants to bring you the best online experiences that use the latest technology. You may continue to the site, but we cannot guarantee that things will look and behave correctly.","continue_button":"Continue"},"age_gate_text":{},"global_chrome":{"exclude_chrome":false,"edition":"wide","background":"dark","collapse":false,"hide_search":false,"hide_desktop_menu":false},"global_footer":{"exclude_footer":false},"local_chrome_and_footer":{"exclude_local_chrome":false,"exclude_local_footer":false},"cellophane_base_uri":"https://api.disney.com","adobe_target":{},"cellophane_auth_key":"FD D3D87BC6-6278-46E5-B1B4-455B9E081BBF:8B2B4ADE1239F8E0238D860C1E9C872C904DCF6989C84FD8","social_follow_links":{},"social_share_networks":{"facebook":true,"twitter":true,"google_plus":false,"pinterest":true},"social_share_min_age":13,"font_overrides":{"header":[],"body":[],"utility":[],"globalchrome":[],"globalfooter":[]},"iframe_whitelist":["40.81.252.190","api-disney-birthday-book.collectivezen.com","app.powster.com","app.powster.com/disney","app.powster.com/disney/a-wrinkle-in-time/au","app.powster.com/disney/aladdin/au","app.powster.com/disney/christopher-robin/au","app.powster.com/disney/cro-1/be_fr","app.powster.com/disney/cro-1/be_fr/embed","app.powster.com/disney/cro-1/be_nl","app.powster.com/disney/cro-1/be_nl/embed","app.powster.com/disney/cro-1/es","app.powster.com/disney/cro-1/es/embed","app.powster.com/disney/cro-1/fr","app.powster.com/disney/cro-1/fr/embed","app.powster.com/disney/cro-1/it","app.powster.com/disney/cro-1/it/embed","app.powster.com/disney/cro-1/mde","app.powster.com/disney/cro-1/mde/embed","app.powster.com/disney/cro-1/nl","app.powster.com/disney/cro-1/nl/embed","app.powster.com/disney/cro-1/pl","app.powster.com/disney/cro-1/pl/embed","app.powster.com/disney/cro-1/pt","app.powster.com/disney/cro-1/pt/embed","app.powster.com/disney/cro-1/tr","app.powster.com/disney/cro-1/tr/embed","app.powster.com/disney/cro-1/uk","app.powster.com/disney/cro-1/uk/embed","app.powster.com/disney/cro-1/za","app.powster.com/disney/cro-1/za/embed","app.powster.com/disney/dumbo/au/embed","app.powster.com/disney/incredibles-2/au","app.powster.com/disney/incredibles-2/be_fr","app.powster.com/disney/incredibles-2/be_nl","app.powster.com/disney/incredibles-2/es","app.powster.com/disney/incredibles-2/fr","app.powster.com/disney/incredibles-2/gb","app.powster.com/disney/incredibles-2/it","app.powster.com/disney/incredibles-2/mde","app.powster.com/disney/incredibles-2/nl","app.powster.com/disney/incredibles-2/pl","app.powster.com/disney/incredibles-2/pt","app.powster.com/disney/incredibles-2/tr","app.powster.com/disney/mar-2/be_fr","app.powster.com/disney/mar-2/be_fr/embed","app.powster.com/disney/mar-2/be_nl","app.powster.com/disney/mar-2/be_nl/embed","app.powster.com/disney/mar-2/es","app.powster.com/disney/mar-2/es/embed","app.powster.com/disney/mar-2/fr","app.powster.com/disney/mar-2/fr/embed","app.powster.com/disney/mar-2/it","app.powster.com/disney/mar-2/it/embed","app.powster.com/disney/mar-2/mde","app.powster.com/disney/mar-2/mde/embed","app.powster.com/disney/mar-2/nl","app.powster.com/disney/mar-2/nl/embed","app.powster.com/disney/mar-2/pl","app.powster.com/disney/mar-2/pl/embed","app.powster.com/disney/mar-2/pt","app.powster.com/disney/mar-2/pt/embed","app.powster.com/disney/mar-2/tr","app.powster.com/disney/mar-2/tr/embed","app.powster.com/disney/mar-2/uk","app.powster.com/disney/mar-2/uk/embed","app.powster.com/disney/mar-2/za","app.powster.com/disney/mar-2/za/embed","app.powster.com/disney/mary-poppins-returns/au/embed","app.powster.com/disney/nfr-1/be_fr","app.powster.com/disney/nfr-1/be_fr/embed","app.powster.com/disney/nfr-1/be_nl","app.powster.com/disney/nfr-1/be_nl/embed","app.powster.com/disney/nfr-1/es","app.powster.com/disney/nfr-1/es/embed","app.powster.com/disney/nfr-1/fr","app.powster.com/disney/nfr-1/fr/embed","app.powster.com/disney/nfr-1/it","app.powster.com/disney/nfr-1/it/embed","app.powster.com/disney/nfr-1/mde","app.powster.com/disney/nfr-1/mde/embed","app.powster.com/disney/nfr-1/nl","app.powster.com/disney/nfr-1/nl/embed","app.powster.com/disney/nfr-1/pl","app.powster.com/disney/nfr-1/pl/embed","app.powster.com/disney/nfr-1/pt","app.powster.com/disney/nfr-1/pt/embed","app.powster.com/disney/nfr-1/tr","app.powster.com/disney/nfr-1/tr/embed","app.powster.com/disney/nfr-1/uk","app.powster.com/disney/nfr-1/uk/embed","app.powster.com/disney/nfr-1/za","app.powster.com/disney/nfr-1/za/embed","app.powster.com/disney/ralph-breaks-the-internet/au/embed","app.powster.com/disney/solo","app.powster.com/disney/solo-a","app.powster.com/disney/solo-a-star","app.powster.com/disney/solo-a-star-wars","app.powster.com/disney/solo-a-star-wars-story","app.powster.com/disney/solo-a-star-wars-story/au","app.powster.com/disney/solo-a-star-wars-story/be_fr","app.powster.com/disney/solo-a-star-wars-story/be_fr/embed","app.powster.com/disney/solo-a-star-wars-story/be_nl","app.powster.com/disney/solo-a-star-wars-story/be_nl/embed","app.powster.com/disney/solo-a-star-wars-story/es","app.powster.com/disney/solo-a-star-wars-story/es/embed","app.powster.com/disney/solo-a-star-wars-story/fr","app.powster.com/disney/solo-a-star-wars-story/fr/embed","app.powster.com/disney/solo-a-star-wars-story/gb","app.powster.com/disney/solo-a-star-wars-story/gb/embed","app.powster.com/disney/solo-a-star-wars-story/il","app.powster.com/disney/solo-a-star-wars-story/il/embed","app.powster.com/disney/solo-a-star-wars-story/it","app.powster.com/disney/solo-a-star-wars-story/it/embed","app.powster.com/disney/solo-a-star-wars-story/mde","app.powster.com/disney/solo-a-star-wars-story/mde/embed","app.powster.com/disney/solo-a-star-wars-story/mde/embed-arabic","app.powster.com/disney/solo-a-star-wars-story/nl","app.powster.com/disney/solo-a-star-wars-story/nl/embed","app.powster.com/disney/solo-a-star-wars-story/pl","app.powster.com/disney/solo-a-star-wars-story/pl/embed","app.powster.com/disney/solo-a-star-wars-story/pt","app.powster.com/disney/solo-a-star-wars-story/pt/embed","app.powster.com/disney/solo-a-star-wars-story/tr","app.powster.com/disney/solo-a-star-wars-story/tr/embed","app.powster.com/disney/solo-a-star-wars-story/za","app.powster.com/disney/solo-a-star-wars-story/za/embed","app.powster.com/disney/the-lion-king/au/embed","app.powster.com/disney/the-nutcracker-and-the-four-realms/au","app.powster.com/disney/toy-story-4/au/embed","app.powster.com/disney/wir-2/be_fr","app.powster.com/disney/wir-2/be_fr/embed","app.powster.com/disney/wir-2/be_nl","app.powster.com/disney/wir-2/be_nl/embed","app.powster.com/disney/wir-2/es","app.powster.com/disney/wir-2/es/embed","app.powster.com/disney/wir-2/fr","app.powster.com/disney/wir-2/fr/embed","app.powster.com/disney/wir-2/it","app.powster.com/disney/wir-2/it/embed","app.powster.com/disney/wir-2/mde","app.powster.com/disney/wir-2/mde/embed","app.powster.com/disney/wir-2/nl","app.powster.com/disney/wir-2/nl/embed","app.powster.com/disney/wir-2/pl","app.powster.com/disney/wir-2/pl/embed","app.powster.com/disney/wir-2/pt","app.powster.com/disney/wir-2/pt/embed","app.powster.com/disney/wir-2/tr","app.powster.com/disney/wir-2/tr/embed","app.powster.com/disney/wir-2/uk","app.powster.com/disney/wir-2/uk/embed","app.powster.com/disney/wir-2/za","app.powster.com/disney/wir-2/za/embed","app.powster.com/marvel","app.powster.com/marvel/ant-man-and-the-wasp/au","app.powster.com/marvel/avengers-endgame/au/embed","app.powster.com/marvel/avengers-infinity-war/au","app.powster.com/marvel/avengers-infinity-war/be_fr","app.powster.com/marvel/avengers-infinity-war/be_fr/embed","app.powster.com/marvel/avengers-infinity-war/be_nl","app.powster.com/marvel/avengers-infinity-war/be_nl/embed","app.powster.com/marvel/avengers-infinity-war/es","app.powster.com/marvel/avengers-infinity-war/es/embed","app.powster.com/marvel/avengers-infinity-war/fr","app.powster.com/marvel/avengers-infinity-war/fr/embed","app.powster.com/marvel/avengers-infinity-war/gb","app.powster.com/marvel/avengers-infinity-war/gb/embed","app.powster.com/marvel/avengers-infinity-war/il","app.powster.com/marvel/avengers-infinity-war/il/embed","app.powster.com/marvel/avengers-infinity-war/it","app.powster.com/marvel/avengers-infinity-war/it/embed","app.powster.com/marvel/avengers-infinity-war/mde","app.powster.com/marvel/avengers-infinity-war/mde/embed","app.powster.com/marvel/avengers-infinity-war/nl","app.powster.com/marvel/avengers-infinity-war/nl/embed","app.powster.com/marvel/avengers-infinity-war/pl","app.powster.com/marvel/avengers-infinity-war/pl/embed","app.powster.com/marvel/avengers-infinity-war/pt","app.powster.com/marvel/avengers-infinity-war/pt/embed","app.powster.com/marvel/black-panther","app.powster.com/marvel/black-panther/au","app.powster.com/marvel/black-panther/au/embed","app.powster.com/marvel/black-panther/be_fr","app.powster.com/marvel/black-panther/be_fr/embed","app.powster.com/marvel/black-panther/be_nl","app.powster.com/marvel/black-panther/be_nl/embed","app.powster.com/marvel/black-panther/es","app.powster.com/marvel/black-panther/es/embed","app.powster.com/marvel/black-panther/fr","app.powster.com/marvel/black-panther/fr/embed","app.powster.com/marvel/black-panther/gb","app.powster.com/marvel/black-panther/gb/embed","app.powster.com/marvel/black-panther/il","app.powster.com/marvel/black-panther/il/embed","app.powster.com/marvel/black-panther/it","app.powster.com/marvel/black-panther/it/embed","app.powster.com/marvel/black-panther/mde","app.powster.com/marvel/black-panther/mde/embed","app.powster.com/marvel/black-panther/nl","app.powster.com/marvel/black-panther/nl/embed","app.powster.com/marvel/black-panther/pl","app.powster.com/marvel/black-panther/pl/embed","app.powster.com/marvel/black-panther/pt","app.powster.com/marvel/black-panther/pt/embed","app.powster.com/marvel/black-panther/za","app.powster.com/marvel/black-panther/za/embed","app.powster.com/marvel/captain-marvel/au/embed","app.powster.com/marvel/cma-1/be_fr","app.powster.com/marvel/cma-1/be_fr/embed","app.powster.com/marvel/cma-1/be_nl","app.powster.com/marvel/cma-1/be_nl/embed","app.powster.com/marvel/cma-1/es","app.powster.com/marvel/cma-1/es/embed","app.powster.com/marvel/cma-1/fr","app.powster.com/marvel/cma-1/fr/embed","app.powster.com/marvel/cma-1/il","app.powster.com/marvel/cma-1/il/embed","app.powster.com/marvel/cma-1/it","app.powster.com/marvel/cma-1/it/embed","app.powster.com/marvel/cma-1/me","app.powster.com/marvel/cma-1/me/embed","app.powster.com/marvel/cma-1/nl","app.powster.com/marvel/cma-1/nl/embed","app.powster.com/marvel/cma-1/pl","app.powster.com/marvel/cma-1/pl/embed","app.powster.com/marvel/cma-1/pt","app.powster.com/marvel/cma-1/pt/embed","app.powster.com/marvel/cma-1/tr","app.powster.com/marvel/cma-1/tr/embed","app.powster.com/marvel/cma-1/uk","app.powster.com/marvel/cma-1/uk/embed","app.powster.com/marvel/cma-1/za","app.powster.com/marvel/cma-1/za/embed","app.powster.com/marvel/thor-ragnarok/au","apps.disneylatino.com/kakamora/index.html","asxtuatw1.arroweyesolutions.net/Clientinterface/CP2StartTransaction.asp","asxtuatw1.arroweyesolutions.net/mobile/Clientinterface/CP2StartTransaction.asp","asxtuatw2.arroweyesolutions.net/CP002/Clientinterface/CreateGiftCard.asp","asxtuatw2.arroweyesolutions.net/Mobile/Clientinterface/CP2StartTransaction.asp","bindass-staging.cloudapp.net/download_KKR.html","birthdaybook.disney.in","blogs.disney.com/oh-my-disney/2015/12/29/quiz-guess-the-disney-movie-based-on-the-emojis","bo-wtb.swaven.com/preview","bo-wtb.swaven.com/preview/insite_extended.html","campaigns.disney.com.au/disney-games-rogueone-helmet-design/index.php","cardways.com/cp002/Clientinterface/CreateGiftCard.asp","cardways.com/cp002/Clientinterface/TestStart.asp","cdnapisec.kaltura.com/html5/html5lib/v2.61.5/mwEmbedFrame.php/p/1068292/uiconf_id/40626971/entry_id/1_qoj4leml","concorsi.disney.it","concorsi.disney.it/sfreccia-con-cars3","content.jwplatform.com","content.jwplatform.com/players","cruz-stg.disney.es/client","cruz.disney.es/client","d1dv9sw6y0l0k7.cloudfront.net/hiddenmickey/index.html","d3jur4ki5divsa.cloudfront.net/da-dk","d3jur4ki5divsa.cloudfront.net/de-de","d3jur4ki5divsa.cloudfront.net/en-gb","d3jur4ki5divsa.cloudfront.net/es-es","d3jur4ki5divsa.cloudfront.net/fr-fr","d3jur4ki5divsa.cloudfront.net/iframe/index.html","d3jur4ki5divsa.cloudfront.net/it-it","d3jur4ki5divsa.cloudfront.net/nl-nl","d3jur4ki5divsa.cloudfront.net/pl-pl","d3jur4ki5divsa.cloudfront.net/sv-se","dedalord.com/kakamora","deezer.com/album/9551920","deezer.com/plugins/player","demo.showtimes-static.s3-website-eu-west-1.amazonaws.com","demo.showtimes-static.s3-website-eu-west-1.amazonaws.com/disney/a-wrinkle-in-time/au","demo.showtimes-static.s3-website-eu-west-1.amazonaws.com/disney/incredibles-2/au","demo.showtimes-static.s3-website-eu-west-1.amazonaws.com/disney/star-wars-the-last-jedi/au","demo.showtimes-static.s3-website-eu-west-1.amazonaws.com/marvel/thor-ragnarok/au","demo.showtimes-static.s3-website-eu-west-1.amazonaws.com/powster/group-booking-test/gb/group","dev.disney.co.uk/advertising/demo/Heeleys/Quiz_latest-24aug2016/index_quizonly.htm","dev.disney.co.ukdisney.co.uk/advertising","di-kakamora-us-nonprod-1.appspot.com/index.html","di-kkamora-us-prod-1.appspot.com","disney.co.uk/dmp/specsavers","disney.com.au/downloads/games/robo-carp/index.html","disney.com.au/downloads/games/science-crafter","disney.com.au/downloads/games/science-crafter/index.html","disney.powio.com","disney.powio.com/au/beauty-and-the-beast","disney.powio.com/au/cars-3","disney.powio.com/au/moana","disney.powio.com/au/petes-dragon","disney.powio.com/au/pirates-of-the-caribbean-salazars-revenge","disney.powio.com/mde/incredibles-2","disney.powio.com/micro_embed/id/1823","disney.powio.com/micro_embed/id/1824","disney.powio.com/micro_embed/id/1855","disney.powio.com/micro_embed/id/1859","disney.powio.com/micro_embed/id/1860","disney.stage.powio.com","disney.swaven.com/fr/infinitywar/index.html","disneychannel.asia/clubmickeymouse/index-6aug.html","disneychannel.asia/clubmickeymouse/index-S2.html","disneychannel.asia/clubmickeymouse/index.html","disneychannel.disneyturkiye.com.tr","disneydna.disneyinternational.com","disneyinternational.com","disneylatino-assets.akamaized.net/assets/mh/2018/Disney_Latino_Web_Ajuste2.mp4","disneystore.com","disneystore.intelliresponse.com/shopDisney","disneystore.intelliresponse.com/staging2","disneytickets.qa.nliven.co","divertissement.disney.fr","divertissement.disney.fr/selfish","dnyalice.swservice.biz","docs.google.com/a/disney.io/forms/d/e/1FAIpQLSe4DGaR4FvyL0J89THvgYRlZFGDyzQ1xMUvyOXTAJ_k8AVT_w/viewform","e304920c.content.disney.io","e304920c.content.disney.io/index.html","e304920c.content.disney.io/test1.html","ec2-52-76-48-70.ap-southeast-1.compute.amazonaws.com/playground/disneyland","ecuadorstreaming.net/listen.pls","embed.spotify.com","embed.wirewax.com/8038202","experiences.offerpop.com/campaign","experiences.wyng.com/campaign","giftcards.shopdisney.com/CP002/Clientinterface/CreateGiftCard.asp","giftcards.shopdisney.com/cp002/Clientinterface/CreateGiftCard.asp","giftcards.shopdisney.com/mobile/Clientinterface/CP2StartTransaction.asp","github.wdig.com/pages/creative-technology/coloring-book","goo.gl/XXMlM4","groupdisneytickets.disney.co.uk","groupdisneytickets.disney.co.uk/aladdin","groupdisneytickets.disney.co.uk/mary-poppins","groupdisneytickets.disney.co.uk/the-lion-king","hiddenmickey.disney.co.uk","hosted.where2getit.com/shopdisney","hosted.where2stageit.com/disney/index2017.html","iframe.nowlive.com/event/5a28bbffc349c12979ae7e4f","iframe.nowlive.com/watch/5a261480c349c12979ae7e47","img.lum.dolimg.com/v1/files/015cbd30-d1f0-11e6-9ac8-06de3600005d/coloring-book-1.0.5/index.html","img.lum.dolimg.com/v1/files/092c8400-9447-11e6-a686-0609da000034/index.html","img.lum.dolimg.com/v1/files/0f7c3b90-6bc8-11e6-aeca-06ab5e000106/coloring-book-1.0.0/index.html","img.lum.dolimg.com/v1/files/11a91170-971c-11e6-bef1-06c1e4000066/path-tracer-dory-2.0.2/index.html","img.lum.dolimg.com/v1/files/13142a20-9d72-11e6-b32b-067c180000f7/match-three-1.0.0/index.html","img.lum.dolimg.com/v1/files/17f6f360-d3aa-11e6-ad6b-06c1e4000066/vertical-stacker-1.0.0/index.html","img.lum.dolimg.com/v1/files/1b3b6610-c71f-11e6-a2e9-06cdc8000068/moana-game-moana-prod/test/index.html","img.lum.dolimg.com/v1/files/2204af70-6bd4-11e6-8dc0-06a2140000fb/path-tracer-dory-2.0.0/test/index.html","img.lum.dolimg.com/v1/files/23c6aac0-6e45-11e6-b40d-062bc8000035/path-tracer-dory-2.0.0/index.html","img.lum.dolimg.com/v1/files/265445d0-ef2e-11e6-a89f-06de3600005d/memory-card-1.1.0/index.html","img.lum.dolimg.com/v1/files/28ab9230-971c-11e6-a90e-06a2140000fb/path-tracer-sw-2.0.2/index.html","img.lum.dolimg.com/v1/files/32a4d040-8cda-11e6-88b4-069a12000069/memory-card-app-1.0.3/index.html","img.lum.dolimg.com/v1/files/392ea180-c09b-11e6-ae42-069a12000069/spl_act_xwingrun-2/release/index.html","img.lum.dolimg.com/v1/files/3ad03060-6bd4-11e6-b40d-062bc8000035/path-tracer-sw-2.0.0/test/index.html","img.lum.dolimg.com/v1/files/48a87d60-8ff5-11e6-a7fc-069a12000069/scratch-reveal-1.0.0-alpha/index.html","img.lum.dolimg.com/v1/files/55ff40f0-a776-11e6-a92b-06c1e4000066/path-tracer-sw-2.0.1/index.html","img.lum.dolimg.com/v1/files/5e3e8a80-c898-11e6-8593-062bc8000035/vertical-stacker-0.1.0/index.html","img.lum.dolimg.com/v1/files/5f365ea0-79e1-11e6-b7c3-06c1e4000066/release/index.html","img.lum.dolimg.com/v1/files/61cd05b0-bdfd-11e5-826d-0609da000034/index.html","img.lum.dolimg.com/v1/files/69fa7520-a776-11e6-adc7-067c180000f7/path-tracer-dory-2.0.1/index.html","img.lum.dolimg.com/v1/files/7f1ea280-c73f-11e6-8ee0-06a2140000fb/moana-game/index.html","img.lum.dolimg.com/v1/files/82a06a80-c724-11e6-8f0f-06c1e4000066/moana-game/index.html","img.lum.dolimg.com/v1/files/84786610-c8a9-11e6-a881-069a12000069/vertical-stacker-0.1.2/index.html","img.lum.dolimg.com/v1/files/8ef09960-c999-11e5-9c26-06de3600005d/jun_spl_act_kaachallenge.swf","img.lum.dolimg.com/v1/files/8f1c5650-1d35-11e6-8910-06095000006a/kraft_dory/index.html","img.lum.dolimg.com/v1/files/970de9d0-a117-11e6-91e2-062bc8000035/index.html","img.lum.dolimg.com/v1/files/975a7340-d6b9-11e6-b2eb-06c1e4000066/spl_act_xwingrun_update/release/index.html","img.lum.dolimg.com/v1/files/a0455310-6e47-11e6-a210-067c180000f7/dist/index.html","img.lum.dolimg.com/v1/files/a18de530-9c95-11e6-b32b-067c180000f7/dist/index.html","img.lum.dolimg.com/v1/files/a2565c20-1ddf-11e6-9543-06ab5e000106/kraft_dory_mint/index.html","img.lum.dolimg.com/v1/files/bb62a250-97bf-11e6-a686-0609da000034/match-three-app-2.0.0/index.html","img.lum.dolimg.com/v1/files/bca1abd0-c15d-11e6-b01c-06cdc8000068/star-wars-v2/release/index.html","img.lum.dolimg.com/v1/files/be1a6090-c899-11e6-8015-06de3600005d/vertical-stacker-0.1.1/index.html","img.lum.dolimg.com/v1/files/c130ec80-bd6e-11e6-9d79-06cdc8000068/emoji_spl_acv_disneyemojimaker/index.html","img.lum.dolimg.com/v1/files/cc3bfb70-fea9-11e6-9328-067c180000f7/web-mobile-262/index.html","img.lum.dolimg.com/v1/files/d06aea60-6ee6-11e6-b7b9-069a12000069/coloring-book-1.0.2/index.html","img.lum.dolimg.com/v1/files/d382f8f0-0c03-11e6-80fd-06a2140000fb/kraft_sw/index.html","img.lum.dolimg.com/v1/files/d62b7f40-0ca9-11e6-b254-06de3600005d/kraft_sw/index.html","img.lum.dolimg.com/v1/files/da351840-c8b4-11e6-996e-06095000006a/vertical-stacker-0.1.3/index.html","img.lum.dolimg.com/v1/files/db0d1660-8c27-11e6-84da-067c180000f7/coloring-book-app-v2/index.html","img.lum.dolimg.com/v1/files/e431bf30-1df4-11e6-a19e-069a12000069/kraft_dory_mint/index.html","img.lum.dolimg.com/v1/files/e5303a80-6e24-11e6-b17f-06de3600005d/coloring-book-1.0.1/index.html","img.lum.dolimg.com/v1/files/f1e74e90-8a7a-11e6-84da-067c180000f7/index.html","img.lum.dolimg.com/v1/files/f3050790-7134-11e6-b7b9-069a12000069/coloring-book-1.0.3/index.html","img.lum.dolimg.com/v1/files/f97b8ee0-9ca5-11e6-ab3b-069a12000069/tic-tac-toe-1.0.0/index.html","img.lum.dolimg.com/v1/files/fa9cf280-6e44-11e6-a210-067c180000f7/path-tracer-sw-2.0.0/index.html","in.bookmyshow.com","int.lumiere.diznee.net/api/v1/files/d2001b60-c7b1-11e6-a3ef-06c26e00141a/vertical-stacker-app-0.0.2/index.html","kakamorakaos.com/au/index.html","kinofinder.mobi/disneyjr","kokomorakaos.com/br","kokomorakaos.com/latam","locations.shopdisney.com","lumiere-a.akamaihd.net","lumiere-a.akamaihd.net/v1/files/10370178-5f64-11e8-a656-0a580a7cb608/pandora/index.html","lumiere-a.akamaihd.net/v1/files/24adc75e-e664-11e8-9837-0a580a7d0505/White-Label-Catching/index.html","lumiere-a.akamaihd.net/v1/files/2989bdba-7ba1-11e8-9973-0a580a7cd724/index.html","lumiere-a.akamaihd.net/v1/files/62387520-e7f3-11e8-abd1-0a580a7cf605/CrystalPalace/index.html","lumiere-a.akamaihd.net/v1/files/7d254464-26ae-11e8-b62b-0a580a7c3820/index.html","lumiere-a.akamaihd.net/v1/files/95a486aa-1adb-11e8-b6db-0a580a7c9b10/index.html","lumiere-a.akamaihd.net/v1/files/96e85c90-db8c-11e8-b775-0a580a7c6617/ArcticChallenge/index.html","lumiere-a.akamaihd.net/v1/files/9985ca62-5ce5-11e8-837f-0a580a7c0865/pandora/index.html","lumiere-a.akamaihd.net/v1/files/9d0c445a-7deb-11e8-843a-0a580a7c10a7/index.html","lumiere-a.akamaihd.net/v1/files/d4a1b050-db6d-11e8-b2c3-0a580a7c971a/ArcticChallenge/index.html","lumiere-a.akamaihd.net/v1/files/d68fb9f2-dc53-11e8-bbdd-0a580a7c9f21/ArcticChallenge/index.html","lumiere-a.akamaihd.net/v1/files/d9716b70-5378-11e8-894a-0a580a7c5e58/index.html","lumiere-a.akamaihd.net/v1/files/e02efa14-5903-11e8-a456-0a580a7c5d83/index.html","lumiere-a.akamaihd.net/v1/files/e51a165a-ed9e-11e8-be1e-0a580a7d1a07/ZapfChristmasSurprise/index.html","lumiere-a.akamaihd.net/v1/files/ead2d78e-2dba-11e8-b71b-0a580a7c7b0f/index.html","lumiere-a.akamaihd.net/v1/files/ff801e80-f182-11e8-97e7-0a580a7ca306/ZapfChristmasSurprise/index.html","mampomysl.disney.pl","mdstrm.com/live-stream/5ac26861dfc8d8091ab5d501","mdstrm.com/live-stream/5bc61483a5ae3c68f842f242","mickey90.disney.co.uk/iframe/index.html","nl.disney.be","nliven.cirquedusoleil.com/tickets/series/ONE","offerpop.com/commerce/gallery/23682","offerpop.com/hashtag/gallery/12292","open.spotify.com/embed","open.spotify.com/embed/album/1BRtB2es44HlB6QLPMyBGh","open.spotify.com/embed/album/1Gb5WNBbET7YCwhyLd4ACK","open.spotify.com/embed/album/1Zc4PrQCHy7cTJaQ4f92I7","open.spotify.com/user/128899670/playlist/4RLWGcrv63pBsCdnHgY2Sg","open.spotify.com/user/128899670/playlist/5ipH57xJ5XrWKgLoqUDC7q","open.spotify.com/user/128899670/playlist/7Hgc75ZscVfZRKHwizaScC","partners.disney.com.br","partners.disney.com.br/mattel/cars3pathtracer/index.html","partners.disneylatino.com","partners.disneylatino.com/mattel/cars3pathtracer/es/index.html","partners.disneylatino.com/mattel/cars3pathtracer/index.html","partners.disneylatino.com/mattel/cars3pathtracer/pt/index.html","petesdragon.disney.com.au","play.spotify.com/album/1Zc4PrQCHy7cTJaQ4f92I7","playcanv.as/e/b/2YqRcVE3","player.vimeo.com/video/181644714","programacion.disneylatino.com","programacion.disneylatino.com/jr","pub.immersivemedia.com/immersiveDemos/privateVRChannel-immersive/RadioDisney/index.html","radio.domint.net/listen.pls","radio7.domint.net/listen.pls","rebelraid.boxofsoap.com","revelmode.us6.list-manage.com/subscribe/post","s3-ap-southeast-1.amazonaws.com/seintl-apac-dolau-sea-campaigns-2/cars3game/index.html","s3.amazonaws.com/vhmedia/static/clients/disney/mobile/disney/ardy/index.html","s3.amazonaws.com/vhmedia/static/clients/disney/mobile/disney/qotw/index_qa.html","sc.digitalproserver.com/listen.pls","sean-kinoticket-de-test.s3-website-eu-west-1.amazonaws.com/index1.html","secure.disney.com/embed/4ce3b9f4a268717a313c5fd8","secure.worldpay.com/sso/public/auth/login.html","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115000728851","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115004092168","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115004092188","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115004092208","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115004092228","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115004104807","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115004104827","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115004104867","shopdisneyguestservices.zendesk.com/hc/en-us/sections/115004104887","signup.disney.com.au","soy-luna.disneychannel.de","staging-disneydna.disneyinternational.com","staging.dimglabs.com.au","staging.disney.asia/showtimes/id/cars3","staging.disney.asia/showtimes/my/cars3","staging.disney.asia/showtimes/ph/cars3","staging.disney.asia/showtimes/sg/cars3","staging.disney.asia/showtimes/th/cars3","staging.disney.de/channel/serien/soy-luna/charaktere","staging.frozenthemusical.co.uk/webgl/index.html","staging.hiddenmickey.disney.co.uk","staging.soapcreative.com/byo","staging.travel.disney.atlasagency.com.au/four.html","stg.disney.asia/clubmickeymouse/index-6aug.html","stg.disney.asia/clubmickeymouse/index.html","stg.disney.asia/showtimes/ph/cars3","stg.disney.asia/showtimes/sg/pirates","stg.disney.com.au/downloads/review/carsrsn.html","stg.disneychannel.asia/clubmickeymouse/index-6aug.html","stg.disneychannel.asia/clubmickeymouse/index.html","stg.local.disney.asia/clubmickeymouse/index.html","stg.local.disney.asia/disneyland_parks/index.html","stg.local.disney.asia/showtimes/sg/coco","stories.blend.media/1164/b5fa5547-aea5-44c2-a22f-cd9cd8152f1a/index.html","streamrd1.sarandi.com.uy/listen.pls","support.disney.com/hc/en-gb","tara.nullschool.net","test.zetenta.com/disney/adsales-mattel-promocars-cars-path-tracer/index.html","testinc.disney.eu","thebfg-mygiantname.disney.com.au","tmp-players.switchboard.live/disney.html","tv1.disney.es","video-batch.disneyinternational.com","videos.disneylatino.com/ver/alas-la-primera-canci-n-de-soy-luna-52964847e3919b6e8338baa7","visitzootropolis.com/it_IT","www.deezer.com/plugins/player","www.digitalsploonk.com/disney/final/2/home.html","www.digitalsploonk.com/disney/final/2/peli.html","www.digitalsploonk.com/disney/final/final/home.html","www.digitalsploonk.com/disney/final/final/peli.html","www.digitalsploonk.com/disney/final/home.html","www.digitalsploonk.com/disney/final/peli.html","www.digitalsploonk.com/disney/ok/peliculas_html5.html","www.digitalsploonk.com/disney/ok/video_html5.html","www.digitalsploonk.com/disney/peliculas_html5.html","www.digitalsploonk.com/disney/video_html5.html","www.disney.asia/clubmickeymouse/index-6aug.html","www.disney.asia/clubmickeymouse/index.html","www.disney.asia/disneyland_parks/index.html","www.disney.asia/disneyland_parks/th.html","www.disney.asia/showtimes/*","www.disney.asia/showtimes/id/aladdin","www.disney.asia/showtimes/id/antman2","www.disney.asia/showtimes/id/avengers4","www.disney.asia/showtimes/id/blackpanther","www.disney.asia/showtimes/id/captainmarvel","www.disney.asia/showtimes/id/cars3","www.disney.asia/showtimes/id/christopherrobin","www.disney.asia/showtimes/id/coco","www.disney.asia/showtimes/id/dumbo","www.disney.asia/showtimes/id/glass","www.disney.asia/showtimes/id/incredibles2","www.disney.asia/showtimes/id/infinitywar","www.disney.asia/showtimes/id/lionking","www.disney.asia/showtimes/id/marypoppinsreturns","www.disney.asia/showtimes/id/nutcracker","www.disney.asia/showtimes/id/solo_starwars","www.disney.asia/showtimes/id/toystory4","www.disney.asia/showtimes/id/wreckitralph2","www.disney.asia/showtimes/id/wrinkleintime","www.disney.asia/showtimes/my/aladdin","www.disney.asia/showtimes/my/antman2","www.disney.asia/showtimes/my/avengers4","www.disney.asia/showtimes/my/blackpanther","www.disney.asia/showtimes/my/captainmarvel","www.disney.asia/showtimes/my/cars3","www.disney.asia/showtimes/my/christopherrobin","www.disney.asia/showtimes/my/coco","www.disney.asia/showtimes/my/dumbo","www.disney.asia/showtimes/my/glass","www.disney.asia/showtimes/my/incredibles2","www.disney.asia/showtimes/my/infinitywar","www.disney.asia/showtimes/my/lionking","www.disney.asia/showtimes/my/marypoppinsreturns","www.disney.asia/showtimes/my/nutcracker","www.disney.asia/showtimes/my/solo_starwars","www.disney.asia/showtimes/my/toystory4","www.disney.asia/showtimes/my/wreckitralph2","www.disney.asia/showtimes/my/wrinkleintime","www.disney.asia/showtimes/ph/aladdin","www.disney.asia/showtimes/ph/antman2","www.disney.asia/showtimes/ph/avengers4","www.disney.asia/showtimes/ph/blackpanther","www.disney.asia/showtimes/ph/captainmarvel","www.disney.asia/showtimes/ph/cars3","www.disney.asia/showtimes/ph/christopherrobin","www.disney.asia/showtimes/ph/coco","www.disney.asia/showtimes/ph/dumbo","www.disney.asia/showtimes/ph/glass","www.disney.asia/showtimes/ph/incredibles2","www.disney.asia/showtimes/ph/infinitywar","www.disney.asia/showtimes/ph/lionking","www.disney.asia/showtimes/ph/marypoppinsreturns","www.disney.asia/showtimes/ph/nutcracker","www.disney.asia/showtimes/ph/solo_starwars","www.disney.asia/showtimes/ph/toystory4","www.disney.asia/showtimes/ph/wreckitralph2","www.disney.asia/showtimes/ph/wrinkleintime","www.disney.asia/showtimes/sg/aladdin","www.disney.asia/showtimes/sg/antman2","www.disney.asia/showtimes/sg/avengers4","www.disney.asia/showtimes/sg/blackpanther","www.disney.asia/showtimes/sg/captainmarvel","www.disney.asia/showtimes/sg/cars3","www.disney.asia/showtimes/sg/christopherrobin","www.disney.asia/showtimes/sg/coco","www.disney.asia/showtimes/sg/dumbo","www.disney.asia/showtimes/sg/glass","www.disney.asia/showtimes/sg/incredibles2","www.disney.asia/showtimes/sg/infinitywar","www.disney.asia/showtimes/sg/lionking","www.disney.asia/showtimes/sg/marypoppinsreturns","www.disney.asia/showtimes/sg/nutcracker","www.disney.asia/showtimes/sg/pirates","www.disney.asia/showtimes/sg/solo_starwars","www.disney.asia/showtimes/sg/toystory4","www.disney.asia/showtimes/sg/wreckitralph2","www.disney.asia/showtimes/sg/wrinkleintime","www.disney.asia/showtimes/th/aladdin","www.disney.asia/showtimes/th/antman2","www.disney.asia/showtimes/th/avengers4","www.disney.asia/showtimes/th/blackpanther","www.disney.asia/showtimes/th/captainmarvel","www.disney.asia/showtimes/th/cars3","www.disney.asia/showtimes/th/christopherrobin","www.disney.asia/showtimes/th/coco","www.disney.asia/showtimes/th/dumbo","www.disney.asia/showtimes/th/glass","www.disney.asia/showtimes/th/incredibles2","www.disney.asia/showtimes/th/infinitywar","www.disney.asia/showtimes/th/lionking","www.disney.asia/showtimes/th/marypoppinsreturns","www.disney.asia/showtimes/th/nutcracker","www.disney.asia/showtimes/th/solo_starwars","www.disney.asia/showtimes/th/toystory4","www.disney.asia/showtimes/th/wreckitralph2","www.disney.asia/showtimes/th/wrinkleintime","www.disney.asia/showtimes/vn/lionking","www.disney.asia/showtimes/xx/coco","www.disney.de/channel/serien/soy-luna/charaktere","www.disney.de/iframe/lieblingsfilme","www.disney.de/lieblingsfilme","www.disneyinternational.com","www.facebook.com/plugins/video.php","www.im360.com/embed/az7838t0qlivn29","www.kakamorakaos.com/au","www.kinofinder.mobi/disneyjr","www.lionkingeducation.co.uk/staging","www.on.game","www.sploonk.com/clientes/disney/video.html","www.streamingtank.com/players/starwars/player.html","www.thorragnarok.com.au","www.youtube.com/embed/14Fkcyi8E1k","www.youtube.com/embed/198ijL6HnLA","www.youtube.com/embed/5A7M4fqCnUk","www.youtube.com/embed/6mBSCRNgpBY","www.youtube.com/embed/83sdwFOL1r8","www.youtube.com/embed/9zWRVy6PaCs","www.youtube.com/embed/BFlzXfQb-UQ","www.youtube.com/embed/Bvwyx8IxDYQ","www.youtube.com/embed/CJFjC_GMfmw","www.youtube.com/embed/Dv6j5hpHirI","www.youtube.com/embed/FQRW0RM4V0k","www.youtube.com/embed/FQp6F0PjfpI","www.youtube.com/embed/GCKPH4IQe2Q","www.youtube.com/embed/GrlTosbjylA","www.youtube.com/embed/Hh8sTR2b4zI","www.youtube.com/embed/Hux5kdmdQA8","www.youtube.com/embed/IdXM20rMv5U","www.youtube.com/embed/Iirghls6r58","www.youtube.com/embed/Jfj1YDMW2hA","www.youtube.com/embed/K-9-qehGhT4","www.youtube.com/embed/LPr2XYR_IgY","www.youtube.com/embed/LQlFHaE8jaA","www.youtube.com/embed/MBYyd6gny5Q","www.youtube.com/embed/PL3U-4GPjSU","www.youtube.com/embed/Q0CbN8sfihY","www.youtube.com/embed/QrWyc0VbwyI","www.youtube.com/embed/QsACfgOCoh8","www.youtube.com/embed/R4JoD-cawKA","www.youtube.com/embed/RnhiLZOprZE","www.youtube.com/embed/TbHqUI8bHBI","www.youtube.com/embed/U-90C1dtk4Y","www.youtube.com/embed/UVNIEszp2UQ","www.youtube.com/embed/VB15H_RYL6I","www.youtube.com/embed/VfdTeJdu1xw","www.youtube.com/embed/WWXfdIK1WxA","www.youtube.com/embed/Xb8bOaqfpEs","www.youtube.com/embed/_Flzbmqcq4o","www.youtube.com/embed/_IZHQ9B8rb0","www.youtube.com/embed/_dyvXcv3ej0","www.youtube.com/embed/_uvd4DT2fo4","www.youtube.com/embed/adzYW5DZoWs","www.youtube.com/embed/bArwQrhOoSk","www.youtube.com/embed/c1pNhaOBU84","www.youtube.com/embed/cACre05XTrs","www.youtube.com/embed/dTqmkkw22vs","www.youtube.com/embed/daJbHAN8QXE","www.youtube.com/embed/dbeWIHtlslE","www.youtube.com/embed/fIsvA5YiE7Q","www.youtube.com/embed/fZvhCduFpVY","www.youtube.com/embed/fq_3z1iylCM","www.youtube.com/embed/g1GmFAobizk","www.youtube.com/embed/gQLB3Rxhcyw","www.youtube.com/embed/gbRijjvIeyk","www.youtube.com/embed/gjU-qyIGoXY","www.youtube.com/embed/h6J6hlEg5_4","www.youtube.com/embed/jYdfBPqrzTQ","www.youtube.com/embed/lAa6z5U49Ug","www.youtube.com/embed/lQ9Bmzw3ims","www.youtube.com/embed/lZqJdrpqvgo","www.youtube.com/embed/mazadQ7uMkk","www.youtube.com/embed/pPIyVPlwBL4","www.youtube.com/embed/qAGR8ox8F5c","www.youtube.com/embed/qjycf7h4KZM","www.youtube.com/embed/qpYOstfcQBs","www.youtube.com/embed/rVnoDLFUL5c","www.youtube.com/embed/rg_zwK_sSEY","www.youtube.com/embed/s9-DwrpdUdQ","www.youtube.com/embed/sC9abcLLQpI","www.youtube.com/embed/sP6SaKn2WuM","www.youtube.com/embed/smTrKLdqHsU","www.youtube.com/embed/vh7S9cS2_FQ","www.youtube.com/embed/videoseries","www.youtube.com/embed/x94NGWXVFnA","www.youtube.com/embed/xamLwk3Q_AE","www.youtube.com/embed/yU9vpz4YCnU","www.youtube.com/embed/zB4I68XVPzQ","www.youtube.com/playlist","www.youtube.com/watch","www.zazzle.com/disneyiframe/iframe_characters","www.zazzle.com/disneyiframe/products","www.zazzle.com/ifr","wyng.com/commerce/gallery/28173","youtube.com/embed/6p2cYYorv3o","youtube.com/embed/9j2W6Ge7-VU","youtube.com/embed/A0uWr3rvNhI","youtube.com/embed/B2cYjqbqm78","youtube.com/embed/BJzESESDKIo","youtube.com/embed/CJFjC_GMfmw","youtube.com/embed/Cp5gNgRBsYc","youtube.com/embed/Dv6j5hpHirI","youtube.com/embed/FQRW0RM4V0k","youtube.com/embed/GVByHlulni8","youtube.com/embed/HDniueXezL0","youtube.com/embed/Hh8sTR2b4zI","youtube.com/embed/LPr2XYR_IgY","youtube.com/embed/PLxJBDULNEg","youtube.com/embed/R4JoD-cawKA","youtube.com/embed/RNVvqUpy1ZE","youtube.com/embed/R_rQm0hnCx8","youtube.com/embed/T-TYoB-IOJM","youtube.com/embed/ULutY-NoUWI","youtube.com/embed/WfisnmIJqCg","youtube.com/embed/YB65rpsxg7k","youtube.com/embed/YFkaOY_CvAY","youtube.com/embed/ZTahA_HDLZk","youtube.com/embed/_dyvXcv3ej0","youtube.com/embed/_uvd4DT2fo4","youtube.com/embed/bZYQtS668","youtube.com/embed/bZYQtS668_o","youtube.com/embed/c1pNhaOBU84","youtube.com/embed/dTqmkkw22vs","youtube.com/embed/daJbHAN8QXE","youtube.com/embed/fIsvA5YiE7Q","youtube.com/embed/fZvhCduFpVY","youtube.com/embed/gQLB3Rxhcyw","youtube.com/embed/kPX0mPb_Z_0","youtube.com/embed/lAa6z5U49Ug","youtube.com/embed/lX6g_cm2rM4","youtube.com/embed/mazadQ7uMkk","youtube.com/embed/mf7UKH9LSbo","youtube.com/embed/q8xzKNEF8Dg","youtube.com/embed/qAGR8ox8F5c","youtube.com/embed/qz6_ETehLpQ","youtube.com/embed/tSDcbucrWmw","youtube.com/embed/x94NGWXVFnA","youtube.com/embed/xamLwk3Q_AE","youtube.com/embed/zGlLe1w3DJM","youtube.com/embed/zSAluFDVE9o","youtube.com/watch","zoom.disneynature.fr/map/iframe/5191"],"monotype_project_id":null,"disable_games_close_button":null,"flattener_base_uri":"https://imgflattener.matterhorn.disney.io/","flattener_client_id":"GAE 0F79A2B7-7DE3-4938-BCFC-FBB89B74F15B","interaction_base_uri":"https://interactions.matterhorn.disney.io/api/v1/","interaction_client_id":"c6f3cbd2-9f77-45bd-b34b-3915d0564194","ugc_api_url":"https://di-mhugc-us-prod-1.appspot.com","ugc_client_id":"GAE 750F50BB-B404-4D1B-B455-64EE358C635D","use_recommendation_service":false,"scroll_to_top":null,"consent_policy":{},"branding":"","disid":{"enableTop":false,"langPref":"en-US"}}:(function(){var a=document.getElementsByTagName("html")[0];a.setAttribute("class",a.getAttribute("class")+" grill-error")})();</script>
<!-- pageview_candidate comscorekw= -->
</div>
</div>
<footer>
<h2 class="outline">Footer</h2>
<nav id="bottomnav">
<ul class="cols-4"></ul>
</nav>
<section id="utility" class=" has-search">
<div class="divider">
<form class="search" action="//search.disney.com/search" method="GET">
<input type="hidden" name="o" value="home">
<div class="search-field">
<input type="text" name="q" placeholder="Search" autocomplete="off" id="searchField_Footer">
<span class="search-icon"></span>
</div>
</form>
</div>
</section>
</footer>
</div>
<div id="goc-ft" data-country="us">
<section id="goc-ft-help">
<h2 class="outline">Help</h2>
<div id="goc-ft-logo"></div>
<nav>
<h3 class="outline">About and Legal</h3>
<ul id="goc-ft-about">
<li><a target="" href="https://www.thewaltdisneycompany.com/?ppLink=pp_wdig">About Disney</a></li>
<li><a target="" href="https://help.disney.com/">Disney Help</a></li>
<li><a target="" href="https://jobs.disneycareers.com/">Careers</a></li>
<li><a target="" href="https://help.disney.com/">Contact Us</a></li>
<li><a target="" href="https://ddn.disney.com/">Advertise With Us</a></li>
</ul>
<ul id="goc-ft-legal">
<li><a target="" href="https://disneytermsofuse.com/">Terms of Use</a></li>
<li><a target="" href="https://help.disney.com/articles/en_US/FAQ/Legal-Notices">Legal Notices</a></li>
<li><a target="" href="https://privacy.thewaltdisneycompany.com/en/">Privacy Policy</a></li>
<li><a target="" href="https://privacy.thewaltdisneycompany.com/en/current-privacy-policy/your-california-privacy-rights/">Your California Privacy Rights</a></li>
<li><a target="" href="https://privacy.thewaltdisneycompany.com/en/for-parents/childrens-online-privacy-policy/">Children's Online Privacy Policy</a></li>
<li><a target="" href="http://preferences-mgr.truste.com/?type=disneycolor&affiliateId=115">Interest-Based Ads</a></li>
</ul>
<div id="goc-ft-copyright">
© Disney, All Rights Reserved, <span class="branding"></span>
</div>
</nav>
</section>
</div>
</div>
<div id='modal-container'>
<div id='modal-window' class='out-of-burger'>
<button id='modal-close' class='top-right hidden ada-el-focus'></button>
<div id="modal-close-background"></div>
</div>
<div id='modal-overlay'></div>
</div>
<script src="https://static-mh.content.disney.io/matterhorn/assets/modules/background_styles-e8777b9d0a7f.js" type="text/javascript"></script><script src="https://static-mh.content.disney.io/matterhorn/assets/modules/hero_universal-bc69c350b757.js" type="text/javascript"></script><script src="https://static-mh.content.disney.io/matterhorn/assets/modules/rich_image-9285556dc7a7.js" type="text/javascript"></script><script src="https://static-mh.content.disney.io/matterhorn/assets/modules/watch_playlist_2-a304100bb490.js" type="text/javascript"></script><script src="https://static-mh.content.disney.io/matterhorn/assets/modules/rich_text-76a136f7001d.js" type="text/javascript"></script>
</body>
</html>
|