Skip to content

Instantly share code, notes, and snippets.

@jamesreggio
Created May 21, 2018 14:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jamesreggio/eedd17511a3d64d1ba1613cbc08d78c5 to your computer and use it in GitHub Desktop.
Save jamesreggio/eedd17511a3d64d1ba1613cbc08d78c5 to your computer and use it in GitHub Desktop.
Repro for apollo-cache-inmemory stack overflow issue
RangeError: Maximum call stack size exceeded
at Array.forEach (native)
at merge (blob:file:///71f10210-bc6a-4c31-bb2d-281064e4b98f:64781:24)
at blob:file:///71f10210-bc6a-4c31-bb2d-281064e4b98f:64787:11
at Array.forEach (native)
at merge (blob:file:///71f10210-bc6a-4c31-bb2d-281064e4b98f:64781:24)
at blob:file:///71f10210-bc6a-4c31-bb2d-281064e4b98f:64787:11
at Array.forEach (native)
at merge (blob:file:///71f10210-bc6a-4c31-bb2d-281064e4b98f:64781:24)
at blob:file:///71f10210-bc6a-4c31-bb2d-281064e4b98f:64787:11
at Array.forEach (native)
===
Unfortunately, no additional frames are available; however, judging by a profiler trace,
the complete recursive cycle is captured in this trace.
Specifically, it looks like the `forEach` in `merge` keeps hitting the `else if` arm and
recursing. I wasn't able to isolate which bit of data led to the infinite recursion.
query HomeFeedQuery($feedIncluded: Boolean = true, $feedPageSize: Int = 30, $feedAfter: String, $episodeSessionsIncluded: Boolean = true, $episodeSessionsPageSize: Int = 20, $upNextIncluded: Boolean = true, $upNextPageSize: Int = 10) {
feed(type: HOME, pagination: {first: $feedPageSize, after: $feedAfter}) @include(if: $feedIncluded) {
pageInfo {
hasNextPage
endCursor
__typename
}
items {
...FeedItemPublishedFragment
...FeedItemHighlightFragment
...FeedItemRecastFragment
__typename
}
__typename
}
viewer: node(id: "viewer") {
id
... on User {
episodeSessions(pagination: {first: $episodeSessionsPageSize}) @include(if: $episodeSessionsIncluded) {
items {
...EpisodeSessionFragment
episode {
...EpisodeFragment
owner {
... on Show {
upNext {
...EpisodeFragment
__typename
}
__typename
}
__typename
}
__typename
}
__typename
}
__typename
}
__typename
}
__typename
}
upNext(pagination: {first: $upNextPageSize}) @include(if: $upNextIncluded) {
items {
...EpisodeFragment
__typename
}
__typename
}
}
fragment FeedItemPublishedFragment on FeedItemPublished {
id
episode {
...EpisodeFragment
__typename
}
__typename
}
fragment EpisodeFragment on Episode {
id
title
description
publishedAt
duration
owner {
...AccountFragment
__typename
}
images {
...ImageFragment
__typename
}
media {
...MediaFragment
__typename
}
...EpisodeSessionsFragment
...BookmarkableFragment
...ListenableFragment
...UpvotableFragment
...HighlightableFragment
...RecastableFragment
...ReplyableFragment
__typename
}
fragment AccountFragment on Account {
id
name
handle
description
image {
...ImageFragment
__typename
}
theme {
...ThemeFragment
__typename
}
... on Show {
artist
__typename
}
... on User {
isAnonymous
__typename
}
...SubscribableFragment
__typename
}
fragment ImageFragment on Image {
id
src
width
height
__typename
}
fragment ThemeFragment on Theme {
id
halftones {
cmyk {
...ImageFragment
__typename
}
__typename
}
palette {
white {
...PaletteColorsFragment
__typename
}
black {
...PaletteColorsFragment
__typename
}
show {
...PaletteColorsFragment
__typename
}
__typename
}
__typename
}
fragment PaletteColorsFragment on PaletteColors {
title
body
background
__typename
}
fragment SubscribableFragment on Subscribable {
id
subscribersCount: subscribers(owner: ANY) {
totalCount
__typename
}
mySubscriptionsCount: subscribers(owner: VIEWER) {
totalCount
__typename
}
__typename
}
fragment MediaFragment on Media {
id
src
origin
waveform
__typename
}
fragment EpisodeSessionsFragment on Episode {
id
myEpisodeSessionsPreview: episodeSessions(owner: VIEWER, pagination: {first: 1}) {
items {
...EpisodeSessionFragment
__typename
}
__typename
}
__typename
}
fragment EpisodeSessionFragment on EpisodeSession {
id
updatedAt
position
finished
episode {
id
__typename
}
__typename
}
fragment BookmarkableFragment on Bookmarkable {
id
myBookmarksCount: bookmarks(owner: VIEWER) {
totalCount
__typename
}
__typename
}
fragment ListenableFragment on Listenable {
id
listenersCount: listeners(owner: ANY) {
totalCount
__typename
}
subListenersCount: listeners(owner: SUBSCRIPTION_ONLY) {
totalCount
__typename
}
subListenersPreview: listeners(owner: SUBSCRIPTION_ONLY, pagination: {first: 5}) {
items {
...AccountFragment
__typename
}
__typename
}
__typename
}
fragment UpvotableFragment on Upvotable {
id
upvotesCount: upvotes(owner: ANY) {
totalCount
__typename
}
subUpvotesCount: upvotes(owner: SUBSCRIPTION_ONLY) {
totalCount
__typename
}
myUpvotesCount: upvotes(owner: VIEWER) {
totalCount
__typename
}
__typename
}
fragment HighlightableFragment on Highlightable {
id
__typename
}
fragment RecastableFragment on Recastable {
id
myRecastsCount: recasts(owner: VIEWER) {
totalCount
__typename
}
myRecastsPreview: recasts(owner: VIEWER, pagination: {first: 1}) {
items {
...RecastFragment
__typename
}
__typename
}
__typename
}
fragment RecastFragment on Recast {
id
createdAt
target {
id
__typename
}
owner {
...AccountFragment
__typename
}
message {
...MessageFragment
__typename
}
...ListenableFragment
...UpvotableFragment
...ReplyableFragment
__typename
}
fragment MessageFragment on Message {
body
__typename
}
fragment ReplyableFragment on Replyable {
id
repliesCount: replies(owner: ANY) {
globalCount
__typename
}
subRepliesPreview: replies(owner: SUBSCRIPTION, pagination: {first: 6}) {
items {
...ReplyFragment
__typename
}
__typename
}
__typename
}
fragment ReplyFragment on Reply {
id
createdAt
target {
id
__typename
}
parent {
id
__typename
}
owner {
...AccountFragment
__typename
}
message {
...MessageFragment
__typename
}
...UpvotableFragment
__typename
}
fragment FeedItemHighlightFragment on FeedItemHighlight {
id
episode {
...EpisodeFragment
__typename
}
highlights {
...HighlightFragment
__typename
}
__typename
}
fragment HighlightFragment on Highlight {
id
createdAt
target {
id
__typename
}
owner {
...AccountFragment
__typename
}
message {
...MessageFragment
__typename
}
media {
...MediaFragment
__typename
}
range {
...RangeFragment
__typename
}
...HighlightSessionsFragment
...ListenableFragment
...UpvotableFragment
...ReplyableFragment
__typename
}
fragment RangeFragment on Range {
lower
upper
__typename
}
fragment HighlightSessionsFragment on Highlight {
id
myHighlightSessionsPreview: highlightSessions(owner: VIEWER, pagination: {first: 1}) {
items {
...HighlightSessionFragment
__typename
}
__typename
}
__typename
}
fragment HighlightSessionFragment on HighlightSession {
id
highlight {
id
__typename
}
__typename
}
fragment FeedItemRecastFragment on FeedItemRecast {
id
episode {
...EpisodeFragment
__typename
}
recasts {
...RecastFragment
__typename
}
__typename
}
{
"kind": "Document",
"definitions": [
{
"kind": "OperationDefinition",
"operation": "query",
"name": {
"kind": "Name",
"value": "HomeFeedQuery"
},
"variableDefinitions": [
{
"kind": "VariableDefinition",
"variable": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "feedIncluded"
}
},
"type": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Boolean"
}
},
"defaultValue": {
"kind": "BooleanValue",
"value": true
}
},
{
"kind": "VariableDefinition",
"variable": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "feedPageSize"
}
},
"type": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Int"
}
},
"defaultValue": {
"kind": "IntValue",
"value": "30"
}
},
{
"kind": "VariableDefinition",
"variable": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "feedAfter"
}
},
"type": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "String"
}
}
},
{
"kind": "VariableDefinition",
"variable": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "episodeSessionsIncluded"
}
},
"type": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Boolean"
}
},
"defaultValue": {
"kind": "BooleanValue",
"value": true
}
},
{
"kind": "VariableDefinition",
"variable": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "episodeSessionsPageSize"
}
},
"type": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Int"
}
},
"defaultValue": {
"kind": "IntValue",
"value": "20"
}
},
{
"kind": "VariableDefinition",
"variable": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "upNextIncluded"
}
},
"type": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Boolean"
}
},
"defaultValue": {
"kind": "BooleanValue",
"value": true
}
},
{
"kind": "VariableDefinition",
"variable": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "upNextPageSize"
}
},
"type": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Int"
}
},
"defaultValue": {
"kind": "IntValue",
"value": "10"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "feed"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "type"
},
"value": {
"kind": "EnumValue",
"value": "HOME"
}
},
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "pagination"
},
"value": {
"kind": "ObjectValue",
"fields": [
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "first"
},
"value": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "feedPageSize"
}
}
},
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "after"
},
"value": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "feedAfter"
}
}
}
]
}
}
],
"directives": [
{
"kind": "Directive",
"name": {
"kind": "Name",
"value": "include"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "if"
},
"value": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "feedIncluded"
}
}
}
]
}
],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "pageInfo"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "hasNextPage"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "endCursor"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "items"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "FeedItemPublishedFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "FeedItemHighlightFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "FeedItemRecastFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "viewer"
},
"name": {
"kind": "Name",
"value": "node"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "id"
},
"value": {
"kind": "StringValue",
"value": "viewer",
"block": false
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "InlineFragment",
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "User"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "episodeSessions"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "pagination"
},
"value": {
"kind": "ObjectValue",
"fields": [
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "first"
},
"value": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "episodeSessionsPageSize"
}
}
}
]
}
}
],
"directives": [
{
"kind": "Directive",
"name": {
"kind": "Name",
"value": "include"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "if"
},
"value": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "episodeSessionsIncluded"
}
}
}
]
}
],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "items"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeSessionFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "episode"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "owner"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "InlineFragment",
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Show"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "upNext"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "upNext"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "pagination"
},
"value": {
"kind": "ObjectValue",
"fields": [
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "first"
},
"value": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "upNextPageSize"
}
}
}
]
}
}
],
"directives": [
{
"kind": "Directive",
"name": {
"kind": "Name",
"value": "include"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "if"
},
"value": {
"kind": "Variable",
"name": {
"kind": "Name",
"value": "upNextIncluded"
}
}
}
]
}
],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "items"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "FeedItemPublishedFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "FeedItemPublished"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "episode"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "EpisodeFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Episode"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "title"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "description"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "publishedAt"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "duration"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "owner"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "AccountFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "images"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ImageFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "media"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "MediaFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeSessionsFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "BookmarkableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ListenableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "UpvotableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "HighlightableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "RecastableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ReplyableFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "AccountFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Account"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "name"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "handle"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "description"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "image"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ImageFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "theme"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ThemeFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "InlineFragment",
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Show"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "artist"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "InlineFragment",
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "User"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "isAnonymous"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "SubscribableFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "ImageFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Image"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "src"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "width"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "height"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "ThemeFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Theme"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "halftones"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "cmyk"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ImageFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "palette"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "white"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "PaletteColorsFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "black"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "PaletteColorsFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "show"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "PaletteColorsFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "PaletteColorsFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "PaletteColors"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "title"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "body"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "background"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "SubscribableFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Subscribable"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "subscribersCount"
},
"name": {
"kind": "Name",
"value": "subscribers"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "ANY"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "mySubscriptionsCount"
},
"name": {
"kind": "Name",
"value": "subscribers"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "VIEWER"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "MediaFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Media"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "src"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "origin"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "waveform"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "EpisodeSessionsFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Episode"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "myEpisodeSessionsPreview"
},
"name": {
"kind": "Name",
"value": "episodeSessions"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "VIEWER"
}
},
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "pagination"
},
"value": {
"kind": "ObjectValue",
"fields": [
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "first"
},
"value": {
"kind": "IntValue",
"value": "1"
}
}
]
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "items"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeSessionFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "EpisodeSessionFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "EpisodeSession"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "updatedAt"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "position"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "finished"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "episode"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "BookmarkableFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Bookmarkable"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "myBookmarksCount"
},
"name": {
"kind": "Name",
"value": "bookmarks"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "VIEWER"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "ListenableFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Listenable"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "listenersCount"
},
"name": {
"kind": "Name",
"value": "listeners"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "ANY"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "subListenersCount"
},
"name": {
"kind": "Name",
"value": "listeners"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "SUBSCRIPTION_ONLY"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "subListenersPreview"
},
"name": {
"kind": "Name",
"value": "listeners"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "SUBSCRIPTION_ONLY"
}
},
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "pagination"
},
"value": {
"kind": "ObjectValue",
"fields": [
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "first"
},
"value": {
"kind": "IntValue",
"value": "5"
}
}
]
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "items"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "AccountFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "UpvotableFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Upvotable"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "upvotesCount"
},
"name": {
"kind": "Name",
"value": "upvotes"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "ANY"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "subUpvotesCount"
},
"name": {
"kind": "Name",
"value": "upvotes"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "SUBSCRIPTION_ONLY"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "myUpvotesCount"
},
"name": {
"kind": "Name",
"value": "upvotes"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "VIEWER"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "HighlightableFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Highlightable"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "RecastableFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Recastable"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "myRecastsCount"
},
"name": {
"kind": "Name",
"value": "recasts"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "VIEWER"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "totalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "myRecastsPreview"
},
"name": {
"kind": "Name",
"value": "recasts"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "VIEWER"
}
},
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "pagination"
},
"value": {
"kind": "ObjectValue",
"fields": [
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "first"
},
"value": {
"kind": "IntValue",
"value": "1"
}
}
]
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "items"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "RecastFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "RecastFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Recast"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "createdAt"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "target"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "owner"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "AccountFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "message"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "MessageFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ListenableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "UpvotableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ReplyableFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "MessageFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Message"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "body"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "ReplyableFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Replyable"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "repliesCount"
},
"name": {
"kind": "Name",
"value": "replies"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "ANY"
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "globalCount"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "subRepliesPreview"
},
"name": {
"kind": "Name",
"value": "replies"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "SUBSCRIPTION"
}
},
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "pagination"
},
"value": {
"kind": "ObjectValue",
"fields": [
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "first"
},
"value": {
"kind": "IntValue",
"value": "6"
}
}
]
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "items"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ReplyFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "ReplyFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Reply"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "createdAt"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "target"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "parent"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "owner"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "AccountFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "message"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "MessageFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "UpvotableFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "FeedItemHighlightFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "FeedItemHighlight"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "episode"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "highlights"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "HighlightFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "HighlightFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Highlight"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "createdAt"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "target"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "owner"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "AccountFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "message"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "MessageFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "media"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "MediaFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "range"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "RangeFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "HighlightSessionsFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ListenableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "UpvotableFragment"
},
"directives": []
},
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "ReplyableFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "RangeFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Range"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "lower"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "upper"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "HighlightSessionsFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "Highlight"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"alias": {
"kind": "Name",
"value": "myHighlightSessionsPreview"
},
"name": {
"kind": "Name",
"value": "highlightSessions"
},
"arguments": [
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "owner"
},
"value": {
"kind": "EnumValue",
"value": "VIEWER"
}
},
{
"kind": "Argument",
"name": {
"kind": "Name",
"value": "pagination"
},
"value": {
"kind": "ObjectValue",
"fields": [
{
"kind": "ObjectField",
"name": {
"kind": "Name",
"value": "first"
},
"value": {
"kind": "IntValue",
"value": "1"
}
}
]
}
}
],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "items"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "HighlightSessionFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "HighlightSessionFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "HighlightSession"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "highlight"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "FragmentDefinition",
"name": {
"kind": "Name",
"value": "FeedItemRecastFragment"
},
"typeCondition": {
"kind": "NamedType",
"name": {
"kind": "Name",
"value": "FeedItemRecast"
}
},
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "id"
},
"arguments": [],
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "episode"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "EpisodeFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "recasts"
},
"arguments": [],
"directives": [],
"selectionSet": {
"kind": "SelectionSet",
"selections": [
{
"kind": "FragmentSpread",
"name": {
"kind": "Name",
"value": "RecastFragment"
},
"directives": []
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
},
{
"kind": "Field",
"name": {
"kind": "Name",
"value": "__typename"
}
}
]
}
}
],
"loc": {
"start": 0,
"end": 1320,
"source": {
"body": "\n query HomeFeedQuery(\n $feedIncluded: Boolean = true\n $feedPageSize: Int = 30\n $feedAfter: String\n\n $episodeSessionsIncluded: Boolean = true\n $episodeSessionsPageSize: Int = 20\n\n $upNextIncluded: Boolean = true\n $upNextPageSize: Int = 10\n ) {\n feed(\n type: HOME\n pagination: {\n first: $feedPageSize\n after: $feedAfter\n }\n ) @include(if: $feedIncluded) {\n pageInfo {\n hasNextPage\n endCursor\n }\n items {\n ...FeedItemPublishedFragment\n ...FeedItemHighlightFragment\n ...FeedItemRecastFragment\n }\n }\n\n viewer: node(\n id: \"viewer\"\n ) {\n id\n ... on User {\n episodeSessions(\n pagination: {first: $episodeSessionsPageSize}\n ) @include(if: $episodeSessionsIncluded) {\n items {\n ...EpisodeSessionFragment\n episode {\n ...EpisodeFragment\n owner {\n ... on Show {\n upNext {\n ...EpisodeFragment\n }\n }\n }\n }\n }\n }\n }\n }\n\n upNext(\n pagination: {first: $upNextPageSize}\n ) @include(if: $upNextIncluded) {\n items {\n ...EpisodeFragment\n }\n }\n }\n \n \n \n \n \n",
"name": "GraphQL request",
"locationOffset": {
"line": 1,
"column": 1
}
}
}
}
{
"data": {
"feed": {
"pageInfo": {
"hasNextPage": true,
"endCursor": "{\"ordering\":\"2018-05-18T05:31:25\",\"id\":2513281}",
"__typename": "PageInfo"
},
"items": [{
"id": "FeedItemPublished:2542851",
"episode": {
"id": "Episode:648295022",
"title": "Bob's Red Mill: Bob Moore",
"description": "In the 1960s, Bob Moore read a book about an old grain mill and was inspired to start his own. Using giant quartz stones from the 19th century, he made dozens of different cereals and flours, positioning his company at the forefront of the health food boom. Today, Bob's Red Mill has grown into a $100 million business – and at nearly 90, Bob goes to work at the mill every day. PLUS, for our postscript, \"How You Built That,\" how Mike Bolos and Jason Grohowski created the portable desk, Deskview.",
"publishedAt": "2018-05-21T04:02:03.000Z",
"duration": 2806,
"owner": {
"id": "Show:32",
"name": "How I Built This with Guy Raz",
"handle": null,
"description": "Guy Raz dives into the stories behind some of the world's best known companies. <em>How I Built This</em> weaves a narrative journey about innovators, entrepreneurs and idealists—and the movements they built.",
"image": {
"id": "Image:1349363",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bd/52/32/bd52320ee3a140f16e3893f32f355e0e4dbd2b12.null",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:32",
"halftones": {
"cmyk": {
"id": "Image:60d8953b0cf66977f99da4c51b98341d3c530d6ec94dc206ee45027a3513644b",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/de/9e/c8/de9ec89819c29514dc11b42b6ef884d071127e4a.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(190, 138, 13)",
"body": "rgb(151, 110, 11)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(239, 176, 25)",
"body": "rgb(239, 176, 25)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(199, 145, 14)",
"body": "rgb(239, 176, 25)",
"background": "rgb(47, 47, 47)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 9,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:125486825",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/80/71/ef/8071ef61746010987558bbf31af16b9802b5aae6.jpeg",
"width": 1400,
"height": 787,
"__typename": "Image"
}],
"media": {
"id": "Media:73046dfd4e0801dc499ea4454b675c0728ad5ba83c70ef6530bf348ab0ed6f22",
"src": "https://media.staging.banter.fm/episodes/648295022.mp3",
"origin": "https://play.podtrac.com/npr-510313/npr.mc.tritondigital.com/NPR_510313/media/anon.npr-mp3/npr/hibt/2018/05/20180517_hibt_bobs.mp3?orgId=1&d=2806&p=510313&story=612108005&t=podcast&e=612108005&ft=pod&f=510313",
"waveform": null,
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2542230",
"episode": {
"id": "Episode:648004204",
"title": "646: The Secret of My Death",
"description": "Cryptic messages on a cell phone and a teeter totter at a construction site: these are clues people found, trying to make sense of a death.",
"publishedAt": "2018-05-20T22:00:00.000Z",
"duration": 4008,
"owner": {
"id": "Show:10",
"name": "This American Life",
"handle": null,
"description": "This American Life is a weekly public radio show, heard by 2.2 million people on more than 500 stations. Another 2.5 million people download the weekly podcast. It is hosted by Ira Glass, produced in collaboration with Chicago Public Media, delivered to stations by PRX The Public Radio Exchange, and has won all of the major broadcasting awards.",
"image": {
"id": "Image:86292014",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f4/09/d4/f409d4bbd5e4606e160254afd1ea242088dcc42f.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:10",
"halftones": {
"cmyk": {
"id": "Image:b722235f0579dbd50fdc101764709e45abe7a14699ba05da1aa2ed31320f812a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/11/50/62/11506208041331ec95324a05fcc483dc70cfb158.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(232, 0, 0)",
"body": "rgb(232, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(232, 0, 0)",
"body": "rgb(237, 0, 0)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(232, 201, 199)",
"body": "rgb(247, 236, 235)",
"background": "rgb(232, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "This American Life",
"__typename": "Show",
"subscribersCount": {
"totalCount": 158,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:8cdb45323660b7c1cb15e8bc4bec3e744bf745e3c297afc2fee7499a49b2a66c",
"src": "https://cache.banter.fm/banter-media-cache/58/f1/b4/58f1b4a01de7f17502f80310ff851fe8d23aeefb.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/podcast.thisamericanlife.org/podcast/646.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/fc/98/ae/fc98ae1e3ffc993f0b473aa823c356f4d75e28a7.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemRecast:2537918",
"episode": {
"id": "Episode:615921071",
"title": "Michael Pollan — Exploring The New Science of Psychedelics",
"description": "This might be the most important podcast episode I've put out in the last two years. Please trust me and give it a full listen. It will surprise you, perhaps shock you, and definitely make you think differently.\n\nMichael Pollan (@michaelpollan) is the author of seven previous books, including Cooked, Food Rules, In Defense of Food, The Omnivore's Dilemma, and The Botany of Desire, all of which were New York Times bestsellers. A longtime contributor to the New York Times Magazine, he also teaches writing at Harvard and the University of California, Berkeley where he is the John S. and James L. Knight Professor of Science Journalism. In 2010, Time magazine named him one of the 100 most influential people in the world.\n\nHis most recent book, How to Change Your Mind: What the New Science of Psychedelics Teaches Us About Consciousness, Dying, Addiction, Depression, and Transcendence, might be my favorite yet. This is the first podcast interview Michael has done about the book, the science and applications of psychedelics, his exploration, and his own experiences. It is a wild ride.\n\nIn fact, partially due to this book, I am committing a million dollars over the next few years to support the scientific study of psychedelic compounds. This is by far the largest commitment to research and nonprofits I've ever made, and if you'd like to join me in supporting this research, please check out tim.blog/science.\n\nIn our wide-ranging conversation, we cover many things, including:The fundamentals of \"psychedelics,\" what the term means, and what compounds like psilocybin, mescaline, and others have in common.New insights related to treatment-resistant depression, anxiety, alcohol/nicotine dependence, OCD, PTSD, and more.Recent scientific and clinical discussions of a \"grand unified theory of mental illness.\"Potential applications and risks of psychedelics.Michael's own experiences — which he did not initially intend on having — and what he's learned from them.The \"entropic brain,\" and why there might be a therapeutic sweet spot between mental order and chaos.Why researchers at Johns Hopkins, NYU, Yale, and elsewhere are dedicating resources to understanding these compounds.And much, much more...\n\n\nThe molecules discussed in this episode — and some incredible clinical results from well-designed studies — have absolutely captured my attention over the last two years. After wading in and supporting smaller studies, I've decided to go all-in on scientists exploring this area. It seems to be an Archimedes lever for potentially solving a wide range of root-cause problems, instead of playing whack-a-mole with symptoms one by one.\n\nThis episode is brought to you by Teeter. Inversion therapy, which uses gravity and your own body weight to decompress the spine or relieve pressure on the discs and surrounding nerves, seems to help with a whole slew of conditions. And just as a general maintenance program, it's one of my favorite things to do.\n\nSince 1981, more than three million people have put their trust in Teeter inversion tables for relief, and it's the only inversion table brand that's been both safety-certified by Underwriters Laboratories (UL) and registered with the FDA as a class one medical device. For a limited time, my listeners can get the Teeter inversion table with bonus accessories and a free pair of gravity boots — a savings of over $148 — by going to Teeter.com/Tim!\n\nThis podcast is also brought to you by Helix Sleep. I recently moved into a new home and needed new beds, and I purchased mattresses from Helix Sleep. It offers mattresses personalized to your preferences and sleeping style — without costing thousands of dollars. Visit Helixsleep.com/TIM and take the simple 2-3 minute sleep quiz to get started, and the team there will build a mattress you'll love. Plus you’ll get up to $125 off your mattress order.",
"publishedAt": "2018-05-06T12:32:17.000Z",
"duration": 8094,
"owner": {
"id": "Show:53",
"name": "The Tim Ferriss Show",
"handle": null,
"description": "Tim Ferriss is a self-experimenter and bestselling author, best known for The 4-Hour Workweek, which has been translated into 40+ languages. Newsweek calls him \"the world's best human guinea pig,\" and The New York Times calls him \"a cross between Jack Welch and a Buddhist monk.\" In this show, he deconstructs world-class performers from eclectic areas (investing, chess, pro sports, etc.), digging deep to find the tools, tactics, and tricks that listeners can use.",
"image": {
"id": "Image:86294139",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/70/b2/50/70b25072a3c8c6ad2bdc0adb83f266223a8b02bb.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:53",
"halftones": {
"cmyk": {
"id": "Image:ba3fec99dd15fe23a392818d2f341feebedcfb8d1581804eff5fc7b695dd1577",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/b8/35/1bb835cacf607b27c61e4b3474fcf8d4d3132d73.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(177, 141, 17)",
"body": "rgb(140, 112, 13)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(234, 189, 31)",
"body": "rgb(234, 189, 31)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(196, 156, 18)",
"body": "rgb(234, 189, 31)",
"background": "rgb(24, 16, 23)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Tim Ferriss: Bestselling Author, Human Guinea Pig",
"__typename": "Show",
"subscribersCount": {
"totalCount": 6,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:690b72959a48a382c2af7302605176972b60c3b22a6f0c087f5018997f1f13c5",
"src": "https://cache.banter.fm/banter-media-cache/f0/7e/32/f07e326788595b82a4a4087822722af8e54b396e.mp3",
"origin": "http://rss.art19.com/episodes/6aaa228b-ed2c-4f7a-8af1-4802988fdaba.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/64/5f/d0/645fd004df03ab9324fdb854ec298dce5652f1bc.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:2698592",
"name": "Lucy Lyle",
"handle": "lucylyle",
"description": null,
"image": {
"id": "Image:125387105",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/95/98/70/959870d51ff50fd1d6274413e09a7ba887521095.jpeg",
"width": 512,
"height": 511,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698592",
"halftones": {
"cmyk": {
"id": "Image:c3e0f83b45d478d9254f80538b2439231e6c2767842cb44979dfffffed803645",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/23/5f/73/235f7370f1cc1d78b017bd823c15716622949362.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(245, 49, 1)",
"body": "rgb(225, 45, 1)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(245, 49, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(194, 39, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(245, 241, 235)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:423",
"createdAt": "2018-05-20T14:54:21.425Z",
"target": {
"id": "Episode:615921071",
"__typename": "Episode"
},
"owner": {
"id": "User:2699165",
"name": "Todd Mundt",
"handle": "toddmundt",
"description": null,
"image": {
"id": "Image:124808860",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b3/00/e5/b300e5ca60162f91caead89d9efdf475376464fb.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2699165",
"halftones": {
"cmyk": {
"id": "Image:8b73a9c43e4213c421394ad4c37189f16277af53d6cdb04f2a4c08e21edab3c0",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/89/c4/a8/89c4a81f3276c7d1da62930f1647246c7fe81b84.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(168, 139, 107)",
"body": "rgb(141, 113, 83)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(168, 139, 107)",
"body": "rgb(168, 139, 107)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(141, 113, 83)",
"body": "rgb(168, 139, 107)",
"background": "rgb(11, 6, 8)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "For all the obvious reasons, this is a deeper conversation than Pollan has participated in on other shows in which he’s appeared.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:2698592",
"name": "Lucy Lyle",
"handle": "lucylyle",
"description": null,
"image": {
"id": "Image:125387105",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/95/98/70/959870d51ff50fd1d6274413e09a7ba887521095.jpeg",
"width": 512,
"height": 511,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698592",
"halftones": {
"cmyk": {
"id": "Image:c3e0f83b45d478d9254f80538b2439231e6c2767842cb44979dfffffed803645",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/23/5f/73/235f7370f1cc1d78b017bd823c15716622949362.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(245, 49, 1)",
"body": "rgb(225, 45, 1)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(245, 49, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(194, 39, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(245, 241, 235)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 2,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Reply:239",
"createdAt": "2018-05-21T01:10:06.467Z",
"target": {
"id": "Recast:423",
"__typename": "Recast"
},
"parent": {
"id": "Recast:423",
"__typename": "Recast"
},
"owner": {
"id": "User:2698508",
"name": "Brendan Hutchins",
"handle": "thepodplaylist",
"description": null,
"image": {
"id": "Image:120964870",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/00/4a/49/004a49ce0825550e64c9874a5c1b4ba287ec4c8f.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698508",
"halftones": {
"cmyk": {
"id": "Image:1a467890122ceeebb3d5ec5a8c1bdab2a5c62a8cfe405b5b26416278fe541a59",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/77/04/c6/7704c6f46597f35200e33286dbabdbabe8a9fb58.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(135, 119, 97)",
"body": "rgb(135, 119, 97)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(126, 111, 91)",
"body": "rgb(135, 119, 97)",
"background": "rgb(47, 38, 28)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Better Than Ezra? 😉",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:241",
"createdAt": "2018-05-21T01:29:42.647Z",
"target": {
"id": "Recast:423",
"__typename": "Recast"
},
"parent": {
"id": "Recast:423",
"__typename": "Recast"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "I just wish it wasn't over 2 hours long 😐",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
}, {
"id": "Recast:427",
"createdAt": "2018-05-20T23:14:28.445Z",
"target": {
"id": "Episode:615921071",
"__typename": "Episode"
},
"owner": {
"id": "User:2698592",
"name": "Lucy Lyle",
"handle": "lucylyle",
"description": null,
"image": {
"id": "Image:125387105",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/95/98/70/959870d51ff50fd1d6274413e09a7ba887521095.jpeg",
"width": 512,
"height": 511,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698592",
"halftones": {
"cmyk": {
"id": "Image:c3e0f83b45d478d9254f80538b2439231e6c2767842cb44979dfffffed803645",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/23/5f/73/235f7370f1cc1d78b017bd823c15716622949362.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(245, 49, 1)",
"body": "rgb(225, 45, 1)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(245, 49, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(194, 39, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(245, 241, 235)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": null,
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemRecast:2538527",
"episode": {
"id": "Episode:623716633",
"title": "Episode 293: Adam Davidson",
"description": "",
"publishedAt": "2018-05-09T14:33:00.000Z",
"duration": 3229,
"owner": {
"id": "Show:1563",
"name": "Longform",
"handle": null,
"description": "A weekly conversation with a non-fiction writer about how they got their start and how they tell stories. Co-produced by Longform and The Atavist.",
"image": {
"id": "Image:116952578",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6f/94/f3/6f94f3431499d1cf97d4bff76eff18b1345e4279.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1563",
"halftones": {
"cmyk": {
"id": "Image:6a1c0b2c8cb887adfb598c79e20940477391d4a8eb9799cca4ca4cd2e8ccc4f3",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/75/40/ce/7540ce6198e280d64d3a0c282bf1e24c404b1a0b.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(176, 16, 24)",
"body": "rgb(176, 16, 24)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(180, 12, 21)",
"body": "rgb(232, 21, 32)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(223, 219, 219)",
"body": "rgb(247, 246, 246)",
"background": "rgb(176, 16, 24)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Longform",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:cafbd45e7ac8319921f619f0ee762956ad97a522155751bd3ee824f318ccfb99",
"src": "https://cache.banter.fm/banter-media-cache/83/d5/80/83d58036c6233826e2652c630d8532c1d1eec9c7.mp3",
"origin": "https://audio.simplecast.com/890f3d57.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/b2/2c/d3/b22cd3c30815518833f9a20f05637601856adf0d.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:1174417",
"name": "Nick Chen",
"handle": "nychen",
"description": null,
"image": {
"id": "Image:89102047",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/67/c9/4e/67c94e9d4589c91ad61e57bff01296b34c76f827.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:1174417",
"halftones": {
"cmyk": {
"id": "Image:ca0d831be98ac52932e423f52034b506c6a513221edb3c3a8f49632c3bc83495",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/da/4a/98da4a8a198884953e853c6a138cdaa23bc43d30.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(131, 108, 88)",
"body": "rgb(153, 106, 66)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(169, 146, 127)",
"body": "rgb(181, 162, 145)",
"background": "rgb(82, 71, 64)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:425",
"createdAt": "2018-05-20T16:06:37.531Z",
"target": {
"id": "Episode:623716633",
"__typename": "Episode"
},
"owner": {
"id": "User:2699165",
"name": "Todd Mundt",
"handle": "toddmundt",
"description": null,
"image": {
"id": "Image:124808860",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b3/00/e5/b300e5ca60162f91caead89d9efdf475376464fb.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2699165",
"halftones": {
"cmyk": {
"id": "Image:8b73a9c43e4213c421394ad4c37189f16277af53d6cdb04f2a4c08e21edab3c0",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/89/c4/a8/89c4a81f3276c7d1da62930f1647246c7fe81b84.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(168, 139, 107)",
"body": "rgb(141, 113, 83)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(168, 139, 107)",
"body": "rgb(168, 139, 107)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(141, 113, 83)",
"body": "rgb(168, 139, 107)",
"background": "rgb(11, 6, 8)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "In a long line of fantastic episodes from Longform.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:1174417",
"name": "Nick Chen",
"handle": "nychen",
"description": null,
"image": {
"id": "Image:89102047",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/67/c9/4e/67c94e9d4589c91ad61e57bff01296b34c76f827.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:1174417",
"halftones": {
"cmyk": {
"id": "Image:ca0d831be98ac52932e423f52034b506c6a513221edb3c3a8f49632c3bc83495",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/da/4a/98da4a8a198884953e853c6a138cdaa23bc43d30.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(131, 108, 88)",
"body": "rgb(153, 106, 66)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(169, 146, 127)",
"body": "rgb(181, 162, 145)",
"background": "rgb(82, 71, 64)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 1,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Reply:238",
"createdAt": "2018-05-21T01:04:21.866Z",
"target": {
"id": "Recast:425",
"__typename": "Recast"
},
"parent": {
"id": "Recast:425",
"__typename": "Recast"
},
"owner": {
"id": "User:2698508",
"name": "Brendan Hutchins",
"handle": "thepodplaylist",
"description": null,
"image": {
"id": "Image:120964870",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/00/4a/49/004a49ce0825550e64c9874a5c1b4ba287ec4c8f.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698508",
"halftones": {
"cmyk": {
"id": "Image:1a467890122ceeebb3d5ec5a8c1bdab2a5c62a8cfe405b5b26416278fe541a59",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/77/04/c6/7704c6f46597f35200e33286dbabdbabe8a9fb58.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(135, 119, 97)",
"body": "rgb(135, 119, 97)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(126, 111, 91)",
"body": "rgb(135, 119, 97)",
"background": "rgb(47, 38, 28)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Oh cool. I’ll check this out. I listen to Longform just occasionally. The hosts are... fine. But I’m a big fan of Adam Davidson; at least, post-Surprisingly Awesome.",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
}, {
"id": "Recast:426",
"createdAt": "2018-05-20T22:37:31.671Z",
"target": {
"id": "Episode:623716633",
"__typename": "Episode"
},
"owner": {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Prob worth a listen, and I am not a fan of this guy as much as the next, but here is the thing — Trump figured out how to hack his way into being a US President. He may be gross, and dealing with shitty people, and all that. Just don’t call him stupid.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemRecast:2537258",
"episode": {
"id": "Episode:644100263",
"title": "Time Bandits",
"description": "Timekeeping software is becoming the standard across the U.S. And it turns out, it can be used to steal workers' wages, a few minutes at a time.",
"publishedAt": "2018-05-18T20:37:00.000Z",
"duration": 546,
"owner": {
"id": "Show:943335",
"name": "The Indicator from Planet Money",
"handle": null,
"description": "A little show about big ideas. From the people who make Planet Money, The Indicator helps you make sense of what's happening today. It's a quick hit of insight into work, business, the economy, and everything else. Listen weekday afternoons.",
"image": {
"id": "Image:103011441",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/46/40/12/464012ebc0e17f8e8d46d4e9b87311631165ef08.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:943335",
"halftones": {
"cmyk": {
"id": "Image:5f156e1df80b577704dc2ae206eeb923464f9abba94c622038ce9b85c98f81a7",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ea/41/08/ea41088c74d9d79ca40c1d7fcbb998a8da36ccaf.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(239, 88, 32)",
"body": "rgb(210, 68, 15)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(239, 88, 32)",
"body": "rgb(239, 88, 32)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(205, 66, 15)",
"body": "rgb(239, 88, 32)",
"background": "rgb(24, 23, 79)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 11,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:90f4b8af0515972766821d43b98facdb62d0c6df53f7125cef6bf21e0e259b21",
"src": "https://cache.banter.fm/banter-media-cache/88/f8/ff/88f8ff915faac4c0c2bce10921303a8a8bed6f9e.mp3",
"origin": "https://play.podtrac.com/npr-510325/npr.mc.tritondigital.com/NPR_510325/media/anon.npr-mp3/npr/indicator/2018/05/20180518_indicator_0518_time_theft_final.mp3?orgId=1&d=545&p=510325&story=612452258&t=podcast&e=612452258&ft=pod&f=510325",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/0c/95/29/0c9529e71680c40e8c00da38d5479ec41390f860.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8575",
"updatedAt": "2018-05-20T19:24:23.985Z",
"position": 536,
"finished": false,
"episode": {
"id": "Episode:644100263",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12580",
"name": "Cheston Lee",
"handle": "cheston",
"description": null,
"image": {
"id": "Image:70482301",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/6a/ac/986aacf8bcb350f90958db2f5127010ccaafbd5b.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12580",
"halftones": {
"cmyk": {
"id": "Image:f6f112c66cc40074778704767c717a9dcdb1bdc4c76e783eded74476c9051af1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/38/a4/8238a4e13867ae5be4555b78c75e3393943d1f34.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(109, 56, 21)",
"body": "rgb(109, 56, 21)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(139, 71, 27)",
"body": "rgb(182, 93, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(156, 80, 30)",
"body": "rgb(156, 80, 30)",
"background": "rgb(30, 18, 14)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:421",
"createdAt": "2018-05-20T14:31:44.323Z",
"target": {
"id": "Episode:644100263",
"__typename": "Episode"
},
"owner": {
"id": "User:12580",
"name": "Cheston Lee",
"handle": "cheston",
"description": null,
"image": {
"id": "Image:70482301",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/6a/ac/986aacf8bcb350f90958db2f5127010ccaafbd5b.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12580",
"halftones": {
"cmyk": {
"id": "Image:f6f112c66cc40074778704767c717a9dcdb1bdc4c76e783eded74476c9051af1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/38/a4/8238a4e13867ae5be4555b78c75e3393943d1f34.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(109, 56, 21)",
"body": "rgb(109, 56, 21)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(139, 71, 27)",
"body": "rgb(182, 93, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(156, 80, 30)",
"body": "rgb(156, 80, 30)",
"background": "rgb(30, 18, 14)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "The abuse of nursing staff and medical professionals with long hours and no breaks goes beyond concerns over alertness and into down right theft.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemRecast:2538245",
"episode": {
"id": "Episode:638608898",
"title": "The Iran Nuclear Deal: What, in the World, Happens Next?",
"description": "In this episode of Intelligence Matters, host Michael Morell interviews former Ambassador and Iran expert James Jeffrey, who also served as deputy National Security Adviser to President George W. Bush. Jeffrey explains what implications the United States' withdrawal from the Iran nuclear deal may have - in the region, among European allies, and in the world. Morell and Jeffrey also discuss what President Trump's subsequent strategy for negotiating with Iran might be and how the Iranians may choose to counter it. They look ahead to nuclear talks with North Korea and assess the potential consequences had by the United States' decision to withdraw from a third multilateral agreement.",
"publishedAt": "2018-05-15T22:00:00.000Z",
"duration": 1702,
"owner": {
"id": "Show:391346",
"name": "Intelligence Matters",
"handle": null,
"description": "In Intelligence Matters, former acting Director of the CIA Michael Morell, speaks with top leaders of the U.S. intelligence community as they reflect on their life, career and the critical roles they play in shaping national security policies.\n\nAs a central figure in the most significant U.S. counter-terror efforts of the past two decades and a former CIA intelligence analyst, Morell is uniquely skilled at taking industry leading knowledge to make connections that provide deep insight into complex security events – helping decode intelligence officials’ key priorities and providing perspectives on how to achieve national security objectives.\n\nMorell is the author of “The Great War of Our Time” and a vivid account of the Central Intelligence Agency, a life in secrets, and a war in the shadows.",
"image": {
"id": "Image:114597499",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ec/c5/49/ecc549efe63ef22788c114f02ec9586638dbbee4.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:391346",
"halftones": {
"cmyk": {
"id": "Image:8c421b0062a72bc867b216bc6e7bbec796bd96b5441fdc210ad6026b22d65d90",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ac/f6/fb/acf6fbe722142656d316f3072893f311af0215aa.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(154, 150, 10)",
"body": "rgb(121, 118, 8)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(226, 220, 15)",
"body": "rgb(226, 220, 15)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(178, 173, 12)",
"body": "rgb(226, 220, 15)",
"background": "rgb(7, 8, 12)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "CBS News Radio",
"__typename": "Show",
"subscribersCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:1fdc7c9f40ad3e3abfd5160cd9e68da66fff0d692603b08149c332911045a2d2",
"src": "https://cache.banter.fm/banter-media-cache/42/ee/69/42ee694b04c02934a62dba8843098f630f6d73eb.mp3",
"origin": "http://www.cbsradionewsfeed.com/eyecast/distribution/podcasts/2393098.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/48/b2/7f/48b27f719d5435abf6b13ab848e9243c44e0724f.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:424",
"createdAt": "2018-05-20T15:34:16.950Z",
"target": {
"id": "Episode:638608898",
"__typename": "Episode"
},
"owner": {
"id": "User:2699165",
"name": "Todd Mundt",
"handle": "toddmundt",
"description": null,
"image": {
"id": "Image:124808860",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b3/00/e5/b300e5ca60162f91caead89d9efdf475376464fb.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2699165",
"halftones": {
"cmyk": {
"id": "Image:8b73a9c43e4213c421394ad4c37189f16277af53d6cdb04f2a4c08e21edab3c0",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/89/c4/a8/89c4a81f3276c7d1da62930f1647246c7fe81b84.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(168, 139, 107)",
"body": "rgb(141, 113, 83)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(168, 139, 107)",
"body": "rgb(168, 139, 107)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(141, 113, 83)",
"body": "rgb(168, 139, 107)",
"background": "rgb(11, 6, 8)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Nuanced conversation - excellent",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemRecast:2536877",
"episode": {
"id": "Episode:644226792",
"title": "The Libya Model and North Korean Nukes",
"description": "<p>What is going on with the Trump-Kim summit following the recent cancellation of a DPRK-ROK meeting?</p> <p>Will Trump and Kim meet?</p> <p>And how does John Bolton fit into all of this?</p> <p>Today, Aaron and Jeffrey discuss the latest twists and turns in the run-up to the Singapore summit, and raise broader questions about denuclearization and bureaucratic politics in the United States.</p> <p> </p> <p><strong>Links of Note:</strong></p> <p>John Bolton <a href=\"https://youtu.be/1JTYS59R4v4\">discussing that the summit will fail</a>.</p> <p><a href=\"https://www.imdb.com/title/tt0388888/\">Dig!</a></p> <p><strong>Support us over at Patreon.com/acwpodcast!</strong></p>",
"publishedAt": "2018-05-17T19:56:27.000Z",
"duration": 2386,
"owner": {
"id": "Show:1593",
"name": "Arms Control Wonk",
"handle": null,
"description": "The nuclear weapons, arms control, disarmament and nonproliferation podcast. Companion to the popular Arms Control Wonk blog (www.armscontrolwonk.com). Hosted by Jeffrey Lewis & Aaron Stein.",
"image": {
"id": "Image:296546",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9b/be/d8/9bbed801ac20b02265254cc6a6d2af67a8ce0e4a.jpeg",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:1593",
"halftones": {
"cmyk": {
"id": "Image:976baf6b1a834212d9993dabbb496000d8d8a871da5ffb422672513ecc22a168",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1d/af/50/1daf50b100b1a6ba9a9a36d1e07cebe80688e6ee.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(245, 16, 0)",
"body": "rgb(235, 15, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(245, 16, 0)",
"body": "rgb(245, 16, 0)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(194, 13, 0)",
"body": "rgb(245, 16, 0)",
"background": "rgb(247, 247, 247)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Jeffrey Lewis & Aaron Stein",
"__typename": "Show",
"subscribersCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:5320be1300547d05b8f4a9adeda11af1ee9e995d7878c87bdaa3a2dbd642b7fa",
"src": "https://cache.banter.fm/banter-media-cache/e3/87/75/e38775b58b1fd182e0e7faf8fd8f24194bd769f1.mp3",
"origin": "http://traffic.libsyn.com/armscontrolwonk/96.mp3?dest-id=228077",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/74/6b/72/746b725bee6ff3bb383c5e380882d8d29a09966e.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8576",
"updatedAt": "2018-05-20T19:36:38.013Z",
"position": 1015,
"finished": false,
"episode": {
"id": "Episode:644226792",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:420",
"createdAt": "2018-05-20T12:46:39.520Z",
"target": {
"id": "Episode:644226792",
"__typename": "Episode"
},
"owner": {
"id": "User:2699165",
"name": "Todd Mundt",
"handle": "toddmundt",
"description": null,
"image": {
"id": "Image:124808860",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b3/00/e5/b300e5ca60162f91caead89d9efdf475376464fb.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2699165",
"halftones": {
"cmyk": {
"id": "Image:8b73a9c43e4213c421394ad4c37189f16277af53d6cdb04f2a4c08e21edab3c0",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/89/c4/a8/89c4a81f3276c7d1da62930f1647246c7fe81b84.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(168, 139, 107)",
"body": "rgb(141, 113, 83)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(168, 139, 107)",
"body": "rgb(168, 139, 107)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(141, 113, 83)",
"body": "rgb(168, 139, 107)",
"background": "rgb(11, 6, 8)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "From a consistently excellent and engaging podcast, this episode is a great introduction to the series as well as a thoughtful analysis of the complexities of this negotiation that other media are missing.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 1,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Reply:242",
"createdAt": "2018-05-21T01:30:52.689Z",
"target": {
"id": "Recast:420",
"__typename": "Recast"
},
"parent": {
"id": "Recast:420",
"__typename": "Recast"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "This was nice and nuanced, without belaboring anything. Thanks, and welcome to Banter!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemRecast:2484108",
"episode": {
"id": "Episode:633662005",
"title": "The Prospect of Peace With North Korea",
"description": "The time and place for a historic meeting between the president of the United States and the leader of North Korea have been set. Does President Trump deserve credit for the diplomatic breakthrough on the Korean Peninsula? Guest: Nicholas Kristof, a New York Times columnist who writes about human rights and global affairs, and who has repeatedly traveled to North Korea for The Times. For more information on today’s episode, visit nytimes.com/thedaily.",
"publishedAt": "2018-05-14T09:54:50.000Z",
"duration": 1182,
"owner": {
"id": "Show:13",
"name": "The Daily",
"handle": null,
"description": "This is what the news should sound like. The biggest stories of our time, told by the best journalists in the world. Hosted by Michael Barbaro. Twenty minutes a day, five days a week, ready by 6 a.m.",
"image": {
"id": "Image:86291898",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/27/2b/62/272b6276ee7aa1ccfa41aaa0bcf40793991c0d53.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:13",
"halftones": {
"cmyk": {
"id": "Image:1c4fd710b7ee353b5c902531af7ae4862fbfdddd401cdd5e9afb962ae84f9962",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d0/37/ed/d037ed87fffe4ff2b48e3f3fc284bef93c20531e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 124, 180)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 142, 206)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(231, 243, 70)",
"body": "rgb(231, 244, 74)",
"background": "rgb(0, 142, 206)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The New York Times",
"__typename": "Show",
"subscribersCount": {
"totalCount": 139,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:41f0646fcfca4804c0b00724f902d3835effbd5297022c84d169086a03ec0445",
"src": "https://cache.banter.fm/banter-media-cache/1d/80/07/1d800707fd1c8a9358fe33022955104d02ca48f9.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/7339526a-fb0d-4e30-a4ab-56c9f50919e1.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/b8/90/a4/b890a4172c1945703fe5b575433742a82883a4af.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8192",
"updatedAt": "2018-05-14T14:49:37.125Z",
"position": 1147,
"finished": false,
"episode": {
"id": "Episode:633662005",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 8,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 7,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:331365",
"name": "Joseph Lambert",
"handle": "joe",
"description": null,
"image": {
"id": "Image:103548377",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/21/e1/9b/21e19b0aa2d966a4a685188b2336490fc20d656b.jpeg",
"width": 511,
"height": 511,
"__typename": "Image"
},
"theme": {
"id": "Theme:331365",
"halftones": {
"cmyk": {
"id": "Image:74fb1f59c100c8a32823371f4bdd36b48dbf7cf2045e7eb0abbd19100f53e64b",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f2/ed/49/f2ed49ac1e0ea54cde330e9aa57127e6f7bfbe8d.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(146, 153, 150)",
"body": "rgb(146, 153, 150)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(83, 89, 86)",
"body": "rgb(108, 115, 112)",
"background": "rgb(207, 205, 203)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:20416",
"name": "Savannah Krenzel",
"handle": "sannarie",
"description": null,
"image": {
"id": "Image:14231",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b6/eb/a2/b6eba2b9b6ff758464dcb01dee8648ed8322faec.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20416",
"halftones": {
"cmyk": {
"id": "Image:295a0ad58385e08d9ad5e5ec533e1ec019be8cac064b35c05b30eecf2a374e4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/b6/5d/82b65d4f53a40d80c359e40b31a12ac1c0a0faf8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(159, 40, 70)",
"body": "rgb(159, 40, 70)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(174, 25, 63)",
"body": "rgb(207, 64, 100)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(192, 48, 84)",
"body": "rgb(192, 48, 84)",
"background": "rgb(31, 25, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:451044",
"name": "Kristen Leach",
"handle": "pajamasuit",
"description": null,
"image": {
"id": "Image:118973394",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/5c/9d/a5/5c9da5055b52f2599e1c90d96fc7c12e8eccdd46.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:451044",
"halftones": {
"cmyk": {
"id": "Image:afcd15db068777b55fba62bfe1eeb10a19c3e24b5eeab8c2f9c1fe16b83e893d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/5f/da/de/5fdadea795a818f4703325ae19f286ec260cc359.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(103, 87, 88)",
"body": "rgb(133, 112, 114)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(36, 31, 31)",
"body": "rgb(64, 54, 55)",
"background": "rgb(234, 234, 236)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12580",
"name": "Cheston Lee",
"handle": "cheston",
"description": null,
"image": {
"id": "Image:70482301",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/6a/ac/986aacf8bcb350f90958db2f5127010ccaafbd5b.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12580",
"halftones": {
"cmyk": {
"id": "Image:f6f112c66cc40074778704767c717a9dcdb1bdc4c76e783eded74476c9051af1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/38/a4/8238a4e13867ae5be4555b78c75e3393943d1f34.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(109, 56, 21)",
"body": "rgb(109, 56, 21)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(139, 71, 27)",
"body": "rgb(182, 93, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(156, 80, 30)",
"body": "rgb(156, 80, 30)",
"background": "rgb(30, 18, 14)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 1,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Post:148",
"createdAt": "2018-05-14T13:28:54.261Z",
"target": {
"id": "Episode:633662005",
"__typename": "Episode"
},
"parent": {
"id": "Episode:633662005",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "\"So the credit [Trump] deserves is for scaring everyone.\" Yep.",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:419",
"createdAt": "2018-05-20T12:44:42.561Z",
"target": {
"id": "Episode:633662005",
"__typename": "Episode"
},
"owner": {
"id": "User:2699165",
"name": "Todd Mundt",
"handle": "toddmundt",
"description": null,
"image": {
"id": "Image:124808860",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b3/00/e5/b300e5ca60162f91caead89d9efdf475376464fb.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2699165",
"halftones": {
"cmyk": {
"id": "Image:8b73a9c43e4213c421394ad4c37189f16277af53d6cdb04f2a4c08e21edab3c0",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/89/c4/a8/89c4a81f3276c7d1da62930f1647246c7fe81b84.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(168, 139, 107)",
"body": "rgb(141, 113, 83)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(168, 139, 107)",
"body": "rgb(168, 139, 107)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(141, 113, 83)",
"body": "rgb(168, 139, 107)",
"background": "rgb(11, 6, 8)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": null,
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemPublished:2536687",
"episode": {
"id": "Episode:646700807",
"title": "Shake Shacktivism",
"description": "You can’t change the world with shirtless insta selfies",
"publishedAt": "2018-05-20T09:00:00.000Z",
"duration": 3711,
"owner": {
"id": "Show:16574",
"name": "Food 4 Thot",
"handle": null,
"description": "A multiracial mix of queer writers talk about sex, relationships, race, identity, what we like to read, and who we like to read. It's not about food — we just really like the pun.",
"image": {
"id": "Image:61983474",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1f/f1/43/1ff143ef1e7b923ba08d3c4f524aa569d1e45176.jpeg",
"width": 3000,
"height": 3000,
"__typename": "Image"
},
"theme": {
"id": "Theme:16574",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(225, 117, 97)",
"body": "rgb(211, 66, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(231, 143, 127)",
"body": "rgb(231, 143, 127)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(177, 55, 33)",
"body": "rgb(216, 72, 45)",
"background": "rgb(247, 207, 207)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Food 4 Thot",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:be78ef14c0b6e51d22505d41f010382da356cbe90de2b245902b5df87f613fe8",
"src": "https://cache.banter.fm/banter-media-cache/e1/e2/9f/e1e29f46cd6c98834b97ac4a391416c31ada1f97.mp3",
"origin": "https://audio.simplecast.com/efa761fe.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/85/1e/6f/851e6fd3a9c310411bfab5344921e62361c5f714.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8579",
"updatedAt": "2018-05-20T20:06:03.518Z",
"position": 2017,
"finished": false,
"episode": {
"id": "Episode:646700807",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 1,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Post:163",
"createdAt": "2018-05-20T19:57:02.099Z",
"target": {
"id": "Episode:646700807",
"__typename": "Episode"
},
"parent": {
"id": "Episode:646700807",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "@john_fram I think you might enjoy the second segment of this one — it's a writer who wrote about 100 dates.",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2536684",
"episode": {
"id": "Episode:646652139",
"title": "#41: You're Not a 'Bad Gay'",
"description": "<p><a href=\"https://twitter.com/jpbrammer\" target=\"_blank\">John Paul Brammer</a> wrote the column <a href=\"https://intomore.com/you/hola-papi/\">\"Hola Papi\"</a> for <a href=\"https://intomore.com\">Into</a>; he's now a staff writer at <a href=\"https://www.them.us\">Them</a>. Want advice from Nancy? Email your question (ideally as a voice memo) to <a href=\"mailto:advice@nancypodcast.org\">advice@nancypodcast.org</a>.</p>\n<p>Original music by Jeremy Bloom.</p>\n<p><em>Support our work! Become a Nancy member today at <a href=\"https://pledge3.wnyc.org/donate/nancy-it/onestep/?utm_source=wnyc&amp;utm_medium=nancy-redirect&amp;utm_campaign=pledge&amp;utm_content=show-notes\" target=\"_blank\" title=\"Pledge\">Nancypodcast.org/donate</a>.</em></p>",
"publishedAt": "2018-05-20T16:00:00.000Z",
"duration": 1231,
"owner": {
"id": "Show:2884",
"name": "Nancy",
"handle": null,
"description": "BFFs Kathy Tu and Tobin Low are super queer, super fun and ready to take over your podcast feed. Join them for provocative stories and frank conversations about the LGBTQ experience today. Because everyone’s a little bit gay.\r\r\n\r\r\nWNYC Studios is the producer of other podcasts including Radiolab, Death, Sex & Money, 2 Dope Queens and many others.",
"image": {
"id": "Image:96709",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d2/87/18/d28718f053ec631ea201733c68923c91dae7bd68.png",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:2884",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(152, 88, 216)",
"body": "rgb(152, 85, 219)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(152, 88, 216)",
"body": "rgb(152, 88, 216)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(207, 238, 251)",
"body": "rgb(254, 255, 255)",
"background": "rgb(152, 88, 216)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "WNYC Studios",
"__typename": "Show",
"subscribersCount": {
"totalCount": 3,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:125039786",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/2a/33/34/2a3334066567f010af2b0487d075c4f19e791218.jpeg",
"width": 960,
"height": 960,
"__typename": "Image"
}],
"media": {
"id": "Media:dcb316a4bf88cdae8be010fe358f759c7d314ef762b86668d8b3ff877c567b24",
"src": "https://cache.banter.fm/banter-media-cache/20/4b/71/204b71a8cd4d5d3bd49898ce7791786d48e18cd4.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/nancy/nancy052018_cms856230_pod.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/fa/ac/96/faac969d94969c829321a30b16148594745203ef.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8577",
"updatedAt": "2018-05-20T19:42:42.607Z",
"position": 450,
"finished": false,
"episode": {
"id": "Episode:646652139",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2526674",
"episode": {
"id": "Episode:644847564",
"title": "The Daily Presents “Caliphate,” Chapter 5",
"description": "The New York Times has introduced a documentary audio series that follows Rukmini Callimachi, who covers terrorism for The Times, on her quest to understand ISIS. Today, as a special episode of “The Daily,” we offer Chapter 5 of “Caliphate,” in which an ISIS recruit carries out a killing — then questions everything.\n\nThe next episode of “Caliphate” will publish in the series’s own feed next Thursday, May 24th, and as a bonus installment of “The Daily” next Saturday, May 26th. New York Times subscribers can listen to that episode now at nytimes.com/caliphate.\n\nThis episode includes disturbing language and scenes of graphic violence.",
"publishedAt": "2018-05-19T09:45:00.000Z",
"duration": 1356,
"owner": {
"id": "Show:13",
"name": "The Daily",
"handle": null,
"description": "This is what the news should sound like. The biggest stories of our time, told by the best journalists in the world. Hosted by Michael Barbaro. Twenty minutes a day, five days a week, ready by 6 a.m.",
"image": {
"id": "Image:86291898",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/27/2b/62/272b6276ee7aa1ccfa41aaa0bcf40793991c0d53.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:13",
"halftones": {
"cmyk": {
"id": "Image:1c4fd710b7ee353b5c902531af7ae4862fbfdddd401cdd5e9afb962ae84f9962",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d0/37/ed/d037ed87fffe4ff2b48e3f3fc284bef93c20531e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 124, 180)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 142, 206)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(231, 243, 70)",
"body": "rgb(231, 244, 74)",
"background": "rgb(0, 142, 206)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The New York Times",
"__typename": "Show",
"subscribersCount": {
"totalCount": 139,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:80cb63ce9b94ccac3d2442e8c035179c335210c134ebe9584a72bed5ad6a24de",
"src": "https://cache.banter.fm/banter-media-cache/18/f9/43/18f9433fa947cf3868e46380a63891362557fb02.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/c867f985-7cce-4d6d-9914-1ed43b1fc8e4.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/40/95/50/409550049925cca9801fdc26466589396c761b0a.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2527060",
"episode": {
"id": "Episode:645154270",
"title": "Rudy Awakening",
"description": "A bunch of corruption and collusion stories break and it’s very bad for the crime gang! Trump calls people animals and we debate how nuanced it was. The Peace Prize hits a snag on the Korean peninsula. And yes there’s a royal wedding but we stopped caring about that AT YORKTOWN IN 1781. Anyway, great show. Paul Scheer (check out his new podcast! https://itunes.apple.com/us/podcast/unspooled/id1381507437?mt=2), Amanda Seales, and labor activist Saru Jayaraman join Jon to break down the week’s news. Plus we do like 30 seconds on Laurel/Yanni tops.",
"publishedAt": "2018-05-19T12:29:30.000Z",
"duration": 3913,
"owner": {
"id": "Show:70",
"name": "Lovett or Leave It",
"handle": null,
"description": "Jon Lovett, former Obama speechwriter and co-host of Pod Save America, is joined by comedians, actors, journalists, and many, many renowned Friends of the Pod for a roundup of the week's top news. Rants! Games! Bad impressions! Nuanced discussion! Recorded in front of a live audience.",
"image": {
"id": "Image:86296659",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/34/ab/c6/34abc6674541f8427649651f8bd1309714a7dd60.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:70",
"halftones": {
"cmyk": {
"id": "Image:f2e2e4e0386a2e5db9999ff4f09b6969a8182d34379f69410f5eea6bd5da49dc",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6a/fb/1e/6afb1e42a811543f3aabdf4ab677f2ce6e6dc9f1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(189, 31, 18)",
"body": "rgb(189, 31, 18)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(189, 31, 18)",
"body": "rgb(226, 37, 22)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(142, 23, 14)",
"body": "rgb(189, 31, 18)",
"background": "rgb(248, 232, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Crooked Media",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:e482ceebe2851a4d3421c1729a90680b1dca36ccf02352cac0ef7ae85737c23c",
"src": "https://cache.banter.fm/banter-media-cache/71/f2/70/71f2705185ac96c4967d938084a019959ba88ea6.mp3",
"origin": "https://rss.art19.com/episodes/45cda39d-9688-4110-a39d-35e14e9a8ba9.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/05/dc/5c/05dc5c3c81238eb1fa8f59e31b66d3d9487bd350.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2526743",
"episode": {
"id": "Episode:644997754",
"title": "SYSK Selects: Is brain size related to intelligence?",
"description": "The idea that the larger the brain, the higher the intelligence is an old one, but it's pretty much utterly false. Modern investigation into how the brain works suggests there's a lot more to take into account when comparing brain biology to intellect.",
"publishedAt": "2018-05-19T11:00:00.000Z",
"duration": 2301,
"owner": {
"id": "Show:9",
"name": "Stuff You Should Know",
"handle": null,
"description": "How do landfills work? How do mosquitos work? Join Josh and Chuck as they explore the Stuff You Should Know about everything from genes to the Galapagos in this podcast from HowStuffWorks.com.",
"image": {
"id": "Image:124400714",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/2d/f6/60/2df6608b39c0a7e3d02906cb287394f329a0c30c.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:9",
"halftones": {
"cmyk": {
"id": "Image:abea545be4ddfafe56c399f511c51d22442680ddd52570165f98c4e934b1641c",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/65/71/29/6571290b5c7773f588901f44e51f979b4f9c58b6.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(201, 52, 46)",
"body": "rgb(201, 52, 46)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(201, 52, 46)",
"body": "rgb(231, 25, 16)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(6, 4, 5)",
"body": "rgb(35, 26, 30)",
"background": "rgb(201, 52, 46)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "HowStuffWorks",
"__typename": "Show",
"subscribersCount": {
"totalCount": 120,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:153d5a3eb9d590104ba2915304b28d95372c31b77bcdfaa3e2b5c1e05adbdd32",
"src": "https://cache.banter.fm/banter-media-cache/16/7e/28/167e284f239480264b2283c1e11c048bbff39e68.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/traffic.megaphone.fm/HSW7140919727.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/fc/cd/5b/fccd5bbe7938bbc52c7c0489eaa49b79290ba7c1.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2525018",
"episode": {
"id": "Episode:644190191",
"title": "a16z Podcast: B2B2C",
"description": "When it comes to B2B2C business models -- which combine both business to business (B2B) and business to consumer (B2C) -- who really \"owns\" the customer? That question might not matter as much in more symbiotic, mutually beneficial marketplaces and other platform contexts, but can be a problem in other contexts or if not done right. For example, if it gives entrepreneurs the illusion that they don't have to work to acquire customers, invest in direct sales, or provides a (false) sense of optionality for a second product/ business that \"will work later someday\".\n\nGeneral partners Alex Rampell (who among other things co-founded TrialPay and Affirm) and Martin Casado (who was formerly CTO and cofounder of Nicira, and then SVP and GM of VMWare's networking and security business unit) draw on their backgrounds on both the consumer and enterprise side of B2B2C to share lessons learned in this episode of the 16z Podcast (in conversation with Sonal Chokshi). In enterprise settings, expanding the sale is one of the biggest drivers of growth, and there are broader ecosystem partners and considerations at play. But more broadly, we discuss how one could think about \"channel\" -- a.k.a. the route to market for distributing product to customers -- as well as if, when, and how to build more than one product in a startup.",
"publishedAt": "2018-05-18T23:29:31.000Z",
"duration": 1754,
"owner": {
"id": "Show:2280",
"name": "a16z",
"handle": null,
"description": "The a16z Podcast discusses tech and culture trends, news, and the future -- especially as ‘software eats the world’. It features industry experts, business leaders, and other interesting thinkers and voices from around the world. This podcast is produced by Andreessen Horowitz (aka “a16z”), a Silicon Valley-based venture capital firm. Multiple episodes are released every week; visit a16z.com for more details and to sign up for our newsletters and other content as well!",
"image": {
"id": "Image:99597993",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ab/60/b9/ab60b9542e59fa5336e7fb77ecede85c3e4d32b1.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:2280",
"halftones": {
"cmyk": {
"id": "Image:72957926a080abb2508e5df8b32be0ddecfa889636cbc92535632c40f91c8775",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ea/25/d5/ea25d553c5207c0bfa43d22a6e7153ce08b7601e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(111, 85, 19)",
"body": "rgb(126, 118, 96)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(112, 86, 18)",
"body": "rgb(112, 86, 18)",
"background": "rgb(1, 1, 2)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "a16z",
"__typename": "Show",
"subscribersCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:aa96531255cd37d408254c5a540abd532e74b596bb4b6d57c65438f09b9258cc",
"src": "https://cache.banter.fm/banter-media-cache/c1/d9/e2/c1d9e2e49032ed88eea37e5aeba5edb8c97eb5c8.mp3",
"origin": "http://feeds.soundcloud.com/stream/446049561-a16z-b2b2c-consumer-enterprise.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/e0/8a/6c/e08a6c663fe3d843cb09a18a3fa1b761b4496ce6.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2525009",
"episode": {
"id": "Episode:644186134",
"title": "Across the Desert and the Sea",
"description": "African migrants fleeing persecution or seeking opportunity often end up in Libya, where they are tortured and trafficked. Many try to escape to Europe, only to be intercepted at sea and returned to Libya. On this episode of Reveal, we bring you one reporter’s dispatch from a treacherous migrant rescue operation and explore how Europe’s … Continue reading Across the Desert and the Sea →",
"publishedAt": "2018-05-19T04:05:37.000Z",
"duration": 3036,
"owner": {
"id": "Show:1528",
"name": "Reveal",
"handle": null,
"description": "The official free download of the award-winning radio program “Reveal,” produced by The Center for Investigative Reporting and PRX. Hidden stories, uncovered – that's what this show is about. It takes you deep inside stories that impact your world, revealing injustice and holding the powerful accountable. The first-of-its-kind investigative program on public radio, \"Reveal\" is hosted by Al Letson and updated regularly.",
"image": {
"id": "Image:86362049",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/2c/0a/a7/2c0aa7fd38da2725b89ea1e76d8c3b29129c6cc9.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1528",
"halftones": {
"cmyk": {
"id": "Image:1ece3f3f8e2ac899f00261cd585819574c5b47b5e504387b1b703dc6187e2e0b",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/25/d9/3a/25d93ae3372be61d048e22311e9f57cd24f9ba9d.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(247, 247, 247)",
"body": "rgb(247, 247, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(222, 222, 222)",
"body": "rgb(247, 247, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The Center for Investigative Reporting and PRX",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:124404600",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/96/ba/10/96ba10101f0b2e2116e1187c7fcecc26aaa1342f.jpeg",
"width": 3000,
"height": 2000,
"__typename": "Image"
}],
"media": {
"id": "Media:fda22313a6cbfd9c722f04b737f26ef977c3864549cc3b1b70e3a6d4b279a4b8",
"src": "https://cache.banter.fm/banter-media-cache/eb/9a/00/eb9a00ff2d21a9e9b70e0b1ffadb1815280ae966.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/media.blubrry.com/reveal/cdn-reveal.prx.org/wp-content/uploads/Across-the-Desert-and-the-Sea_128.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/88/97/5d/88975d2366ad1baa256d0ae1b3030f872579baca.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemRecast:2522629",
"episode": {
"id": "Episode:643974208",
"title": "Sean Grover - When Kids Call The Shots",
"description": "Sean Grover is a psychotherapist from New York City, dad of two children, and an author of the book When Kids Call The Shots. For 25 years Sean has been teaching parents how to embrace their challenges and to create a happy functioning family. If you think your kid might be bullying you, if you lost all hope and don’t know how to deal with tantrums, or maybe you are just looking for some advice on how to be a better parent, this interview is for you. You will not be disappointed, guaranteed!",
"publishedAt": "2018-05-18T19:30:00.000Z",
"duration": 3037,
"owner": {
"id": "Show:1054217",
"name": "Rad Dad",
"handle": null,
"description": "Rad Dad is an interview series with dads about parenting, life as a dad, joys, challenges, marriage and divorce, career and leisure, and everything in between. Hosted by Kirill Zubovsky.",
"image": {
"id": "Image:55367170",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/0f/2f/d7/0f2fd7122efa6dc8afac5fa96c323997f48cd0f2.jpeg",
"width": 3000,
"height": 3000,
"__typename": "Image"
},
"theme": {
"id": "Theme:1054217",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(87, 87, 113)",
"body": "rgb(114, 114, 147)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(223, 223, 223)",
"body": "rgb(248, 248, 248)",
"background": "rgb(27, 27, 35)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "KIRILL ZUBOVSKY",
"__typename": "Show",
"subscribersCount": {
"totalCount": 7,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:124356864",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b4/ee/bb/b4eebb7e6a757038effd74be47999d3be87640a5.jpeg",
"width": 3000,
"height": 3000,
"__typename": "Image"
}],
"media": {
"id": "Media:47b4071d2f49994b7c0f7de82516c4b328b2fbfc5897d83ae0ca1c1a60342ede",
"src": "https://cache.banter.fm/banter-media-cache/33/0f/7b/330f7bfdf0ecf5379bbb5a913c7462b4c2fb128b.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/audio.simplecast.com/9081017c.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/c6/07/47/c60747c582391b2ba84d20db7ecf6a5c20d3ae14.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2689536",
"name": "Dan Newcomer",
"handle": "danimal",
"description": null,
"image": {
"id": "Image:69744882",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6d/16/eb/6d16eb763ce08501edd7d511d17095466e5df84d.jpeg",
"width": 512,
"height": 511,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689536",
"halftones": {
"cmyk": {
"id": "Image:fc5b5cca86d97f9425702eae64d0bb115869e11b76ec36a0f269b39bc710150c",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/19/92/d5/1992d554646ca9d0eb50f5d475dea131efe7fbbd.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(72, 96, 85)",
"body": "rgb(94, 125, 110)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(224, 190, 10)",
"body": "rgb(245, 213, 40)",
"background": "rgb(39, 52, 46)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:454612",
"name": "Tess Dickman",
"handle": "zebra_xing",
"description": null,
"image": {
"id": "Image:7479797",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/78/29/ee/7829eece991ef0e66a190d749321065a225b084e.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:454612",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(160, 107, 70)",
"body": "rgb(156, 105, 68)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(160, 107, 70)",
"body": "rgb(160, 107, 70)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(125, 83, 54)",
"body": "rgb(160, 107, 70)",
"background": "rgb(225, 214, 193)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:418",
"createdAt": "2018-05-18T20:26:43.674Z",
"target": {
"id": "Episode:643974208",
"__typename": "Episode"
},
"owner": {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "This guy is great. Send this to every parent who talks about their misbehaving children. Hint: negative behavior starts earlier, and it starts at home.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2689536",
"name": "Dan Newcomer",
"handle": "danimal",
"description": null,
"image": {
"id": "Image:69744882",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6d/16/eb/6d16eb763ce08501edd7d511d17095466e5df84d.jpeg",
"width": 512,
"height": 511,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689536",
"halftones": {
"cmyk": {
"id": "Image:fc5b5cca86d97f9425702eae64d0bb115869e11b76ec36a0f269b39bc710150c",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/19/92/d5/1992d554646ca9d0eb50f5d475dea131efe7fbbd.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(72, 96, 85)",
"body": "rgb(94, 125, 110)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(224, 190, 10)",
"body": "rgb(245, 213, 40)",
"background": "rgb(39, 52, 46)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:454612",
"name": "Tess Dickman",
"handle": "zebra_xing",
"description": null,
"image": {
"id": "Image:7479797",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/78/29/ee/7829eece991ef0e66a190d749321065a225b084e.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:454612",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(160, 107, 70)",
"body": "rgb(156, 105, 68)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(160, 107, 70)",
"body": "rgb(160, 107, 70)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(125, 83, 54)",
"body": "rgb(160, 107, 70)",
"background": "rgb(225, 214, 193)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemRecast:2522645",
"episode": {
"id": "Episode:260944415",
"title": "Episode 1: The Swarm",
"description": "This is the Emergency Alert System. Do not go outside. Do not look at the sky. Do not make noise. Your cooperation is vital to your survival. (Series Premiere) www.phenomenonpod.com",
"publishedAt": "2017-11-29T13:14:46.000Z",
"duration": 1031,
"owner": {
"id": "Show:447596",
"name": "The Phenomenon",
"handle": null,
"description": "When a supernatural threat drives mankind to the point of extinction, survivors around the globe struggle to endure in a world with just three rules:\n\nDo not look outside. Do not look at the sky. Do not make noise.",
"image": {
"id": "Image:99680302",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6d/0e/1b/6d0e1b5f260a228e5af3f4aa4766a64ea282e54e.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:447596",
"halftones": {
"cmyk": {
"id": "Image:bf9122008c9beb7074a0a88b0ed2d7d5cf15f3f036021f8045c70251e9fb6401",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/10/da/da/10dadae184ecd8aa1b8e7bb21f43f453cc4f5bfb.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(244, 244, 244)",
"body": "rgb(244, 244, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(219, 219, 219)",
"body": "rgb(244, 244, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Luciola Creative",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:e81e144472881a84c3e6db5aabbb5de0616cfe977f2a6e606036f9e6c8b93f4e",
"src": "https://cache.banter.fm/banter-media-cache/69/2a/7d/692a7d9eda22b5e7e59af57cf3d9f38877377ba5.mp3",
"origin": "http://traffic.libsyn.com/phenomenonpod/The_Phenomenon_Episode_1_The_Swarm.mp3?dest-id=564641",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/87/c9/0d/87c90d8269b81c14822594603ff61074aba713e7.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8538",
"updatedAt": "2018-05-19T19:04:45.704Z",
"position": 1030,
"finished": true,
"episode": {
"id": "Episode:260944415",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 3,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:417",
"createdAt": "2018-05-18T19:37:22.344Z",
"target": {
"id": "Episode:260944415",
"__typename": "Episode"
},
"owner": {
"id": "User:2698508",
"name": "Brendan Hutchins",
"handle": "thepodplaylist",
"description": null,
"image": {
"id": "Image:120964870",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/00/4a/49/004a49ce0825550e64c9874a5c1b4ba287ec4c8f.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698508",
"halftones": {
"cmyk": {
"id": "Image:1a467890122ceeebb3d5ec5a8c1bdab2a5c62a8cfe405b5b26416278fe541a59",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/77/04/c6/7704c6f46597f35200e33286dbabdbabe8a9fb58.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(135, 119, 97)",
"body": "rgb(135, 119, 97)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(126, 111, 91)",
"body": "rgb(135, 119, 97)",
"background": "rgb(47, 38, 28)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "For @iamsteadman and any other BitRaters following his quest for a new favorite podcast, here is my recommendation this week. It’s an audio drama about aliens 👽. Super well produced. Also one of the few book adaptations I’ve ever heard in podcast form. \n\nLemme know what you think, and we may mention it on the next BitRate.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 3,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 6,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 5,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 4,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Reply:230",
"createdAt": "2018-05-19T06:28:32.168Z",
"target": {
"id": "Recast:417",
"__typename": "Recast"
},
"parent": {
"id": "Recast:417",
"__typename": "Recast"
},
"owner": {
"id": "User:2698886",
"name": "Mark Steadman",
"handle": "iamsteadman",
"description": null,
"image": {
"id": "Image:123014796",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/59/8a/be/598abeadc2e2b39bed5b928e7624187e9f86053a.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698886",
"halftones": {
"cmyk": {
"id": "Image:94e45837e3bcb8030c8dacb92ecf316a96af6e296cded0625c0546860e915c3a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f5/52/d2/f552d27bd3dfa75f9c30e98888efeb62c4514c7c.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(170, 37, 2)",
"body": "rgb(170, 37, 2)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(172, 36, 0)",
"body": "rgb(225, 49, 3)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(195, 42, 2)",
"body": "rgb(195, 42, 2)",
"background": "rgb(47, 12, 15)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Might get listening on my train to London today",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:231",
"createdAt": "2018-05-19T07:05:34.737Z",
"target": {
"id": "Recast:417",
"__typename": "Recast"
},
"parent": {
"id": "Recast:417",
"__typename": "Recast"
},
"owner": {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Woah, I really enjoyed this. 💥 I’ve often been disappointed by podcast dramas, so have gravitated towards educational / news / biographical podcasts.\n\nThat said, I love seeing people experiment with the format (e.g. even though 36 Questions wasn’t quite my thing, it was neat to listen to). BUT this caught my ear almost immediately. I love good sci-if. Going to keep with it and see how it goes.",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:234",
"createdAt": "2018-05-19T19:02:36.426Z",
"target": {
"id": "Recast:417",
"__typename": "Recast"
},
"parent": {
"id": "Recast:417",
"__typename": "Recast"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Okay, I was skeptical, but that was good.",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:235",
"createdAt": "2018-05-20T02:16:20.911Z",
"target": {
"id": "Recast:417",
"__typename": "Recast"
},
"parent": {
"id": "Recast:417",
"__typename": "Recast"
},
"owner": {
"id": "User:2698157",
"name": "Kevin Korpi",
"handle": "lonelybob",
"description": null,
"image": {
"id": "Image:118807324",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/69/11/cb/6911cbd92169fd1515111d009890c2f7243f9b2f.null",
"width": 129,
"height": 129,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698157",
"halftones": {
"cmyk": {
"id": "Image:1168d24e6818b70eafd7aee1e5387246d33beb8c8ea8ffea261775c842c9948a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9c/35/62/9c3562c1290bb88ab5c94e52750b16471d223260.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 158, 38)",
"body": "rgb(98, 125, 30)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(169, 210, 67)",
"body": "rgb(169, 210, 67)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(85, 108, 26)",
"body": "rgb(117, 149, 36)",
"background": "rgb(245, 244, 242)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Listened to Season 1 already, it's an excellent SciFi audio drama. Look fwd to hear where it goes in season 2!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemPublished:2524959",
"episode": {
"id": "Episode:644170047",
"title": "Weekly Wrap: \"Just Say It.\"",
"description": "Sam Sanders wraps up the week in news with NPR reporters Vanessa Romo and Brakkton Booker.",
"publishedAt": "2018-05-18T19:00:15.000Z",
"duration": 2790,
"owner": {
"id": "Show:47",
"name": "It's Been a Minute with Sam Sanders",
"handle": null,
"description": "Sometimes you just need to talk it out—and that's exactly what host Sam Sanders does each week. Join him on Fridays for a recap of the week's news, culture and everything – plus Tuesday deep dives with artists, writers, journalists and more.",
"image": {
"id": "Image:124593979",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b1/b2/0a/b1b20a2043346b907d3270073c13e6fb0c006313.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:47",
"halftones": {
"cmyk": {
"id": "Image:1b9ba03fe034c3d9af5490a6cf2b7ecbf7a89a56094b6dba7167f65c65fb2cc9",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/26/49/40/26494095ce2be2daaa3e7177cef49ee8d82c724d.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(240, 90, 31)",
"body": "rgb(211, 70, 14)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(240, 90, 31)",
"body": "rgb(240, 90, 31)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(68, 22, 5)",
"body": "rgb(115, 38, 8)",
"background": "rgb(239, 231, 24)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:29c2ddeca1747d386ca323910041cbd4792e275ab6f9895d012a77a56e8e20d0",
"src": "https://cache.banter.fm/banter-media-cache/55/43/db/5543db21c9357846d015f9f0023bb869ea723850.mp3",
"origin": "https://play.podtrac.com/npr-510317/npr.mc.tritondigital.com/NPR_510317/media/anon.npr-mp3/npr/sam/2018/05/20180518_sam_wrap518.mp3?orgId=1&d=2768&p=510317&story=612407327&t=podcast&e=612407327&ft=pod&f=510317",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/45/14/a6/4514a61d5311f5fa32200b7395068a41438d7851.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8541",
"updatedAt": "2018-05-19T19:04:47.470Z",
"position": 8,
"finished": false,
"episode": {
"id": "Episode:644170047",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2523097",
"episode": {
"id": "Episode:644049651",
"title": "#842: Showdown at the WTO",
"description": "The World Trade Organization: Can't live with it, hard to crush your trade opponents without it.",
"publishedAt": "2018-05-18T20:04:00.000Z",
"duration": 1181,
"owner": {
"id": "Show:35",
"name": "Planet Money",
"handle": null,
"description": "The economy explained. Imagine you could call up a friend and say, \"Meet me at the bar and tell me what's going on with the economy.\" Now imagine that's actually a fun evening.",
"image": {
"id": "Image:86292398",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/c3/08/5d/c3085d8b9f91e4721cf119a0cf452142643cf180.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:35",
"halftones": {
"cmyk": {
"id": "Image:aeb3f5619cff08020b4e1363e42ac69d7bb0fb74b57d4127d0cfacb4a2b3175d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/0f/55/df/0f55df0a602df0225a81834ccad476eefb0b0ce4.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(15, 103, 87)",
"body": "rgb(15, 103, 87)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(15, 103, 87)",
"body": "rgb(20, 134, 113)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(228, 225, 205)",
"body": "rgb(246, 245, 238)",
"background": "rgb(15, 103, 87)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 158,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:124362749",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/37/c6/cc/37c6cc82d949fcd0de70aec1ecc9e7f8c85d9c39.jpeg",
"width": 1400,
"height": 787,
"__typename": "Image"
}],
"media": {
"id": "Media:fbe5fe5dab19b593e4862d74c6e0a48b9e1f3cb768427021f218056a96d61020",
"src": "https://cache.banter.fm/banter-media-cache/a4/de/94/a4de9490c15d247f59635a737ace8a9696e4429e.mp3",
"origin": "https://play.podtrac.com/npr-510289/npr.mc.tritondigital.com/NPR_510289/media/anon.npr-mp3/npr/pmoney/2018/05/20180518_pmoney_pmpod842.mp3?orgId=1&d=1162&p=510289&story=612074447&t=podcast&e=612074447&ft=pod&f=510289",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/4e/f7/0c/4ef70cbbe2aaa5dca86239a03c80779933ac29e7.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2516447",
"episode": {
"id": "Episode:643778669",
"title": "117: The TV is Lying to Brandy Jensen",
"description": "Is it Yanny or is it Laurel or is it a reason to scream blood? On this week’s episode Josh and Ryan discuss Apple’s latest crappy design, Bitcoin’s leprechaun-shaped carbon footprint, and the latest Cruise Missile news.<br><br>Later we chat with Brandy Jensen, advice columnist and renaissance woman, about taking responsibility for your actions, living your best life, and reality TV.",
"publishedAt": "2018-05-18T16:34:14.000Z",
"duration": 4013,
"owner": {
"id": "Show:3348",
"name": "Tomorrow with Joshua Topolsky",
"handle": null,
"description": "Tomorrow with Joshua Topolsky is a podcast about what's happening right now — and next — in the world of culture, technology and the internet, music, movies, politics, and more. Whether it's dissecting the news of the day or having an in-depth conversation with a creator, deep thinker, or artist, Tomorrow will be the best hour of funny, weird, and wonderful you'll get all week.\n\nContact us at podcasts@theoutline.com for any comments, thoughts, or veiled threats.",
"image": {
"id": "Image:99642386",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/4c/10/70/4c1070c735c4398c5b6c49668ee6d4fb619b86be.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:3348",
"halftones": {
"cmyk": {
"id": "Image:6782f9ac3ad4e2ebd37626189916950e6c3fda2ec28fbfabea3951ed3c9cce19",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fd/e3/09/fde309a7041385234cd175d10378013b68f7b980.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(235, 27, 92)",
"body": "rgb(231, 20, 86)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(235, 27, 92)",
"body": "rgb(235, 27, 92)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(180, 16, 67)",
"body": "rgb(227, 20, 85)",
"background": "rgb(130, 230, 169)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The Outline",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:2d0a6c03dc6ac5f3dfb5752ed5498f77a19cecb324dc7ea90fad4de9ba835aca",
"src": "https://cache.banter.fm/banter-media-cache/4a/fe/03/4afe036c3e39cdc985deb20e07dee007387b4eaf.mp3",
"origin": "https://traffic.megaphone.fm/OUT2484365140.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/ca/e9/68/cae96872809ecbb5f3e1406162e2f55c048fb7c7.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2516432",
"episode": {
"id": "Episode:643742745",
"title": "A cynic's guide to the royal wedding",
"description": "Unless you’ve been living under a rock, you might have heard that there’s a royal wedding happening this Saturday. (Even Sean’s mom is tuning in!) England’s Prince Harry is set to wed American actress Meghan Markle with great fanfare, to the ballpark cost of $43 million. Kristen Meinzer, co-host of the When Meghan met Harry podcast, tells Sean why he should care.\n\n**************************************************************\n\nFor more info on how British royals plan a wedding, check out Vox Video here: https://youtu.be/jNTyQPUoFHs",
"publishedAt": "2018-05-18T16:43:53.000Z",
"duration": 1375,
"owner": {
"id": "Show:2688802",
"name": "Today, Explained",
"handle": null,
"description": "News comes at you fast. Join us at the end of your day to understand it. Monday to Friday. All killer, no filler. Hosted by Sean Rameswaram. Featuring the finest explainers from Vox and more.",
"image": {
"id": "Image:86294315",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1a/95/6c/1a956cfb1c10584ac9d5ffdfe7d0b4c89959d2dc.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:2688802",
"halftones": {
"cmyk": {
"id": "Image:17ae7ec8d3704ac1cad1a22128de21a9e7e4cadf71416c124bc334438e4aaa36",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/69/ab/1b/69ab1b42a8b66484b26073fc9c383ff27b88afcc.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(91, 91, 91)",
"body": "rgb(116, 116, 116)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(7, 7, 7)",
"body": "rgb(32, 32, 32)",
"background": "rgb(247, 231, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Vox and Stitcher",
"__typename": "Show",
"subscribersCount": {
"totalCount": 9,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:47e9067eec92921ec20ae2fe5f2247920f08a5e2feed6df82bc7f1ecaeee8c3c",
"src": "https://cache.banter.fm/banter-media-cache/41/d7/ee/41d7ee2f38e04129525cd830239df4348581bb63.mp3",
"origin": "https://rss.art19.com/episodes/0b3db0d9-cf47-47a9-a349-f2de3e06a275.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/f5/ec/eb/f5eceb3049b39bfddbdcf771d3af56f381f32fea.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemRecast:2514854",
"episode": {
"id": "Episode:643418690",
"title": "Boom, busted and Banter",
"description": "Praise and critique for audio dramas, AudioBoom goes boom (maybe), and banter about Banter.",
"publishedAt": "2018-05-18T13:00:00.000Z",
"duration": 2121,
"owner": {
"id": "Show:2695420",
"name": "Bitrate",
"handle": null,
"description": "Join Brendan Hutchins and Mark Steadman as they discuss the latest podcasting news.",
"image": {
"id": "Image:120969406",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/30/e2/3c/30e23c4f39012c9e990687cc61b7ac2b5fac9def.png",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:2695420",
"halftones": {
"cmyk": {
"id": "Image:ca36a4f806a8423462e617d3a7d6be7c32b22adff13f30a1d4428e4ee0993b0e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/00/f9/e0/00f9e0accd74381005c28d58fb0c83040bf553ff.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(239, 71, 33)",
"body": "rgb(220, 54, 16)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(239, 71, 33)",
"body": "rgb(239, 71, 33)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(251, 213, 204)",
"body": "rgb(255, 252, 252)",
"background": "rgb(168, 56, 119)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Brendan Hutchins & Mark Steadman",
"__typename": "Show",
"subscribersCount": {
"totalCount": 3,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:2538899e71bc81f256e13f4d95b5217f6c17c50925015b7630b01cd599bc0696",
"src": "https://cache.banter.fm/banter-media-cache/75/9e/de/759ede2dfbc586b4227bd2729db486f69b79698c.mp3",
"origin": "https://tracking.podiant.co/d/spoke/bitrate/episodes/363cb085c8ebb0/primary/1526637804.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/48/49/34/4849340488448a46d5e33fa9b02aea66cafcc647.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8484",
"updatedAt": "2018-05-18T15:25:50.996Z",
"position": 1384,
"finished": false,
"episode": {
"id": "Episode:643418690",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 1,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 6,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2547416",
"name": "Jason Bade",
"handle": "jason",
"description": null,
"image": {
"id": "Image:62809982",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/26/d4/12/26d412cabe2a81eb39e19d4f2be5d7293348b294.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2547416",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(44, 82, 148)",
"body": "rgb(44, 82, 148)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(48, 89, 160)",
"body": "rgb(69, 117, 200)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(51, 95, 172)",
"body": "rgb(51, 95, 172)",
"background": "rgb(21, 16, 11)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 4,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 1,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [{
"id": "Recast:416",
"createdAt": "2018-05-18T15:26:11.610Z",
"target": {
"id": "Episode:643418690",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Super honored for Banter to be mentioned by @thepodplaylist and @iamsteadman on their show today! (Conversation begins around 23:00.)\n\nIf you're joining Banter because you heard about us on Bitrate, welcome! Please leave a comment on this recast to say hello.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2547416",
"name": "Jason Bade",
"handle": "jason",
"description": null,
"image": {
"id": "Image:62809982",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/26/d4/12/26d412cabe2a81eb39e19d4f2be5d7293348b294.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2547416",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(44, 82, 148)",
"body": "rgb(44, 82, 148)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(48, 89, 160)",
"body": "rgb(69, 117, 200)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(51, 95, 172)",
"body": "rgb(51, 95, 172)",
"background": "rgb(21, 16, 11)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 11,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 10,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 3,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Reply:227",
"createdAt": "2018-05-18T17:28:41.930Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:2699098",
"name": "Jason Behrends",
"handle": "orangealert",
"description": null,
"image": {
"id": "Image:124305460",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/44/1e/c6/441ec6f66d55b6e9ad823522f2af2aa30dfd3de1.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2699098",
"halftones": {
"cmyk": {
"id": "Image:17972ca0ec6a634267f8d4511b5bfba40805bd3f793bed75dec6e75f4268d848",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/55/4e/c6/554ec69ee2507c63cd294211a91ebf75a5a6b205.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(112, 112, 112)",
"body": "rgb(117, 117, 117)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(122, 122, 122)",
"body": "rgb(122, 122, 122)",
"background": "rgb(48, 48, 48)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Just joined because of the Bitrate recommendation!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 8,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 7,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:229",
"createdAt": "2018-05-18T19:06:39.825Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Happy to see Banter getting some well deserved recognition!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:232",
"createdAt": "2018-05-19T11:59:15.846Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Welcome Bitrate listeners, and great exposure for Banter!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
}],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"recasts": [{
"id": "Recast:416",
"createdAt": "2018-05-18T15:26:11.610Z",
"target": {
"id": "Episode:643418690",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Super honored for Banter to be mentioned by @thepodplaylist and @iamsteadman on their show today! (Conversation begins around 23:00.)\n\nIf you're joining Banter because you heard about us on Bitrate, welcome! Please leave a comment on this recast to say hello.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2547416",
"name": "Jason Bade",
"handle": "jason",
"description": null,
"image": {
"id": "Image:62809982",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/26/d4/12/26d412cabe2a81eb39e19d4f2be5d7293348b294.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2547416",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(44, 82, 148)",
"body": "rgb(44, 82, 148)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(48, 89, 160)",
"body": "rgb(69, 117, 200)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(51, 95, 172)",
"body": "rgb(51, 95, 172)",
"background": "rgb(21, 16, 11)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 11,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 10,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 3,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Reply:227",
"createdAt": "2018-05-18T17:28:41.930Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:2699098",
"name": "Jason Behrends",
"handle": "orangealert",
"description": null,
"image": {
"id": "Image:124305460",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/44/1e/c6/441ec6f66d55b6e9ad823522f2af2aa30dfd3de1.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2699098",
"halftones": {
"cmyk": {
"id": "Image:17972ca0ec6a634267f8d4511b5bfba40805bd3f793bed75dec6e75f4268d848",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/55/4e/c6/554ec69ee2507c63cd294211a91ebf75a5a6b205.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(112, 112, 112)",
"body": "rgb(117, 117, 117)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(122, 122, 122)",
"body": "rgb(122, 122, 122)",
"background": "rgb(48, 48, 48)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Just joined because of the Bitrate recommendation!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 8,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 7,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:229",
"createdAt": "2018-05-18T19:06:39.825Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Happy to see Banter getting some well deserved recognition!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:232",
"createdAt": "2018-05-19T11:59:15.846Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Welcome Bitrate listeners, and great exposure for Banter!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
}],
"__typename": "FeedItemRecast"
}, {
"id": "FeedItemPublished:2513589",
"episode": {
"id": "Episode:643091618",
"title": "Does Mueller Have a Plan for Trump?",
"description": "White House lawyers have claimed that Robert S. Mueller III, the special counsel overseeing the Russia investigation, will not indict the president, regardless of his findings. If that’s true, then what is the purpose of his inquiry? Guest: Michael S. Schmidt, a Washington correspondent who covers national security and federal investigations for The New York Times. For more information on today’s episode, visit nytimes.com/thedaily.",
"publishedAt": "2018-05-18T09:55:25.000Z",
"duration": 1236,
"owner": {
"id": "Show:13",
"name": "The Daily",
"handle": null,
"description": "This is what the news should sound like. The biggest stories of our time, told by the best journalists in the world. Hosted by Michael Barbaro. Twenty minutes a day, five days a week, ready by 6 a.m.",
"image": {
"id": "Image:86291898",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/27/2b/62/272b6276ee7aa1ccfa41aaa0bcf40793991c0d53.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:13",
"halftones": {
"cmyk": {
"id": "Image:1c4fd710b7ee353b5c902531af7ae4862fbfdddd401cdd5e9afb962ae84f9962",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d0/37/ed/d037ed87fffe4ff2b48e3f3fc284bef93c20531e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 124, 180)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 142, 206)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(231, 243, 70)",
"body": "rgb(231, 244, 74)",
"background": "rgb(0, 142, 206)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The New York Times",
"__typename": "Show",
"subscribersCount": {
"totalCount": 139,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:d9874f00756d08a86cd4363e54be38c2fd910622fbbd878145d81737835574c7",
"src": "https://cache.banter.fm/banter-media-cache/23/ce/b0/23ceb0971504e7be9cea7f3be4b5569c3ebbd0e4.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/596e9a2f-c5c7-47fe-99f0-b0421061def3.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/06/5f/1d/065f1d932ec865cf1c0ebe7ad14830f4bc6715b8.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8479",
"updatedAt": "2018-05-18T13:45:46.124Z",
"position": 1236,
"finished": true,
"episode": {
"id": "Episode:643091618",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 7,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 6,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2698592",
"name": "Lucy Lyle",
"handle": "lucylyle",
"description": null,
"image": {
"id": "Image:125387105",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/95/98/70/959870d51ff50fd1d6274413e09a7ba887521095.jpeg",
"width": 512,
"height": 511,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698592",
"halftones": {
"cmyk": {
"id": "Image:c3e0f83b45d478d9254f80538b2439231e6c2767842cb44979dfffffed803645",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/23/5f/73/235f7370f1cc1d78b017bd823c15716622949362.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(245, 49, 1)",
"body": "rgb(225, 45, 1)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(245, 49, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(194, 39, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(245, 241, 235)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:20393",
"name": "Jess Garms",
"handle": "jess",
"description": null,
"image": {
"id": "Image:4679",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/dc/ba/fd/dcbafdffc1f6d0a8938fed8958af6b32351909db.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20393",
"halftones": {
"cmyk": {
"id": "Image:17b224e402c470f16254328586c6dce77313fea21e81ab8ff61094548965394f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/c3/09/ad/c309ade9603b1deb4f4a1bcef1fa51e52c528bc3.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(199, 131, 129)",
"body": "rgb(156, 102, 100)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(184, 145, 144)",
"body": "rgb(184, 145, 144)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(164, 114, 113)",
"body": "rgb(184, 145, 144)",
"background": "rgb(39, 34, 39)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:20416",
"name": "Savannah Krenzel",
"handle": "sannarie",
"description": null,
"image": {
"id": "Image:14231",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b6/eb/a2/b6eba2b9b6ff758464dcb01dee8648ed8322faec.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20416",
"halftones": {
"cmyk": {
"id": "Image:295a0ad58385e08d9ad5e5ec533e1ec019be8cac064b35c05b30eecf2a374e4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/b6/5d/82b65d4f53a40d80c359e40b31a12ac1c0a0faf8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(159, 40, 70)",
"body": "rgb(159, 40, 70)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(174, 25, 63)",
"body": "rgb(207, 64, 100)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(192, 48, 84)",
"body": "rgb(192, 48, 84)",
"background": "rgb(31, 25, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12580",
"name": "Cheston Lee",
"handle": "cheston",
"description": null,
"image": {
"id": "Image:70482301",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/6a/ac/986aacf8bcb350f90958db2f5127010ccaafbd5b.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12580",
"halftones": {
"cmyk": {
"id": "Image:f6f112c66cc40074778704767c717a9dcdb1bdc4c76e783eded74476c9051af1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/38/a4/8238a4e13867ae5be4555b78c75e3393943d1f34.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(109, 56, 21)",
"body": "rgb(109, 56, 21)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(139, 71, 27)",
"body": "rgb(182, 93, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(156, 80, 30)",
"body": "rgb(156, 80, 30)",
"background": "rgb(30, 18, 14)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2513658",
"episode": {
"id": "Episode:643093053",
"title": "Friday May 18, 2018",
"description": "President Trump says he will give \"very strong\" protections to North Korea's leader if he surrenders nuclear weapons. How could the U.S. guarantee the rule of a foreign dictator? Also, a patient with Ebola recently turned up in a large city in the Democratic Republic of Congo. Will the country be able to keep Ebola from spreading? And what are people in Britain saying about tomorrow's royal wedding?",
"publishedAt": "2018-05-18T09:51:00.000Z",
"duration": 780,
"owner": {
"id": "Show:27",
"name": "Up First",
"handle": null,
"description": "NPR's Up First is the news you need to start your day. The biggest stories and ideas — from politics to pop culture — in 10 minutes. Hosted by Rachel Martin, David Greene and Steve Inskeep, with reporting and analysis from NPR News. Available weekdays by 6 a.m. ET. Subscribe and listen, then support your local NPR station at donate.npr.org.",
"image": {
"id": "Image:124404071",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/a7/15/83/a715836178e02ef935532ea36cd8cfe5563bb689.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:27",
"halftones": {
"cmyk": {
"id": "Image:7e7b0c2320526847c82fe0b8ce8ec170872398a21b14785c602682ee82e71506",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/75/14/c4/7514c452f6f7f0fe08a54f5cf0ccae68d7f3bf11.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(111, 111, 111)",
"body": "rgb(119, 119, 119)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(86, 86, 86)",
"body": "rgb(111, 111, 111)",
"background": "rgb(231, 231, 231)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 7,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:6d7e401c3eae692ea2b2d89eb2c5ab2e8cf46a55557fb0763ed15d24d5c98edd",
"src": "https://cache.banter.fm/banter-media-cache/10/c8/cf/10c8cf85d0ee644de797935be03ed813dfc8219c.mp3",
"origin": "https://play.podtrac.com/npr-510318/npr.mc.tritondigital.com/NPR_510318/media/anon.npr-mp3/npr/upfirst/2018/05/20180518_upfirst_upfirst05182018.mp3?orgId=1&d=779&p=510318&story=612251838&t=podcast&e=612251838&ft=pod&f=510318",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/4a/67/c1/4a67c15620fffa1bd935e91953ebe2ed214b95c6.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 3,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 3,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:20416",
"name": "Savannah Krenzel",
"handle": "sannarie",
"description": null,
"image": {
"id": "Image:14231",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b6/eb/a2/b6eba2b9b6ff758464dcb01dee8648ed8322faec.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20416",
"halftones": {
"cmyk": {
"id": "Image:295a0ad58385e08d9ad5e5ec533e1ec019be8cac064b35c05b30eecf2a374e4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/b6/5d/82b65d4f53a40d80c359e40b31a12ac1c0a0faf8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(159, 40, 70)",
"body": "rgb(159, 40, 70)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(174, 25, 63)",
"body": "rgb(207, 64, 100)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(192, 48, 84)",
"body": "rgb(192, 48, 84)",
"background": "rgb(31, 25, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12580",
"name": "Cheston Lee",
"handle": "cheston",
"description": null,
"image": {
"id": "Image:70482301",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/6a/ac/986aacf8bcb350f90958db2f5127010ccaafbd5b.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12580",
"halftones": {
"cmyk": {
"id": "Image:f6f112c66cc40074778704767c717a9dcdb1bdc4c76e783eded74476c9051af1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/38/a4/8238a4e13867ae5be4555b78c75e3393943d1f34.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(109, 56, 21)",
"body": "rgb(109, 56, 21)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(139, 71, 27)",
"body": "rgb(182, 93, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(156, 80, 30)",
"body": "rgb(156, 80, 30)",
"background": "rgb(30, 18, 14)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2513321",
"episode": {
"id": "Episode:643059111",
"title": "Episode 152 — Platforms Versus Aggregators",
"description": "Ben and James continue to discuss the differences between platforms and aggregators, including Facebook, Microsoft, Apple, Google, Netflix, Amazon, and Uber. Presented by WordPress.com: Get 15% off on a new site by visiting WordPress.com/Exponent. Links Ben Thompson: The Moat Map — Stratechery Ben Thompson: Books and Blogs — Stratechery Ben Thompson: Zillow, Aggregation, and Integration — Stratechery Ben Thompson: Tech’s Two Philosophies — Stratechery Ben Thompson: Casual Gaming is a Sustainable Business, but Not a Platform Differentiator — Stratechery Ben Thompson: Why Doesn’t Apple Enable Sustainable Businesses on the App Store? — Stratechery Ben Thompson: Apple’s China Problem — Stratechery … Continue reading Episode 152 — Platforms Versus Aggregators",
"publishedAt": "2018-05-18T09:24:21.000Z",
"duration": 3117,
"owner": {
"id": "Show:2290",
"name": "Exponent",
"handle": null,
"description": "Exponent, a production of Stratechery.com, is hosted by Ben Thompson and James Allworth.\n\n\n\nIn this program we seek to explore the massive effect technology is having not just on technology companies, but also on society as a whole. Ben Thompson is the author of Stratechery, a blog about the business and strategy of technology. James Allworth is the co-author with Clay Christensen of \"How Will You Measure Your Life\" and a writer for the Harvard Business Review.\n\n\n\nVisit the website at http://exponent.fm for show notes and to subscribe. To see old Stratechery.FM episodes, please visit http://stratechery.fm",
"image": {
"id": "Image:99598037",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bd/f2/6c/bdf26c7083a1e517b1c724c01fedec4ddd12c106.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:2290",
"halftones": {
"cmyk": {
"id": "Image:6b413a2aa1ddec79e09adf0bbaacb0b7caa99a140aa63185bc92e263ba177153",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/25/49/05/2549058ef15b4d6d6c6a91e3f7e5abda1e6211f2.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(214, 124, 8)",
"body": "rgb(170, 98, 7)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(247, 159, 47)",
"body": "rgb(247, 159, 47)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(74, 66, 58)",
"body": "rgb(103, 91, 80)",
"background": "rgb(247, 159, 47)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Ben Thompson / James Allworth",
"__typename": "Show",
"subscribersCount": {
"totalCount": 7,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:1a62552d7e2aacbcfdcd1f6e21565553552fddf776474521c62176768076c3df",
"src": "https://cache.banter.fm/banter-media-cache/a8/ca/09/a8ca090a41cd2e6f29b69f912b8c060e863bb4af.mp3",
"origin": "http://media.blubrry.com/exponent/content.blubrry.com/exponent/exponent152.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/5f/49/aa/5f49aa1ceffd608494e43cd942bfb9cada8cc396.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8481",
"updatedAt": "2018-05-18T14:16:04.010Z",
"position": 66,
"finished": false,
"episode": {
"id": "Episode:643059111",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2513313",
"episode": {
"id": "Episode:643017009",
"title": "Draconian and Cruel Immigration Policies",
"description": "Jamelle Bouie talks to <em>Vox's</em> Dara Lind about the latest moves the Trump administration has made on immigration and on the southern border.<br><br>Join us for our live show in <a href=\"http://slate.com/live\">Brooklyn, NY on May 30th at 730PM (ET).</a>",
"publishedAt": "2018-05-18T09:00:00.000Z",
"duration": 1299,
"owner": {
"id": "Show:1556",
"name": "Trumpcast",
"handle": null,
"description": "A quasi-daily podcast from Slate chronicling Donald Trump's rise to the presidency and his current administration. Jacob Weisberg, chairman of Slate, along with Slate chief political correspondent Jamelle Bouie, and the writer Virginia Heffernan, will be talking to journalists, historians, psychiatrists, and other experts to help explain who this man is and why this is happening, right now, in the United States of America.",
"image": {
"id": "Image:50328881",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/46/f9/86/46f986c0a350a2ef636b7e1cffac8a4413dcd889.jpeg",
"width": 3000,
"height": 3000,
"__typename": "Image"
},
"theme": {
"id": "Theme:1556",
"halftones": {
"cmyk": {
"id": "Image:64366993506f7fdb74338f129a109a79c40ba78045a9223639ec4608f7efe767",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/f7/ae/ccf7ae1b5488d8a00f633247db3381389236b735.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(238, 71, 0)",
"body": "rgb(212, 63, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(238, 71, 0)",
"body": "rgb(238, 71, 0)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(252, 227, 181)",
"body": "rgb(252, 227, 181)",
"background": "rgb(238, 71, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Slate Magazine",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:c5d01e461b0c1d3320ee10adc4e4d070ca00c09a454673f198ba26f58271f1b7",
"src": "https://cache.banter.fm/banter-media-cache/58/f5/4f/58f54fd9603d6fd1727762cb616236a188b7e78f.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/traffic.megaphone.fm/PPY7910584134.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/76/58/03/765803c769cc4914b841a6e9ee2318af796df276.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2513309",
"episode": {
"id": "Episode:643015066",
"title": "New Music Friday: May 18",
"description": "<em>All Songs Considered'</em>s Robin Hilton joins NPR Music's Rodney Carmichael, Lars Gotrich, Marissa Lorusso, Ann Powers and Stephen Thompson for a sprint through the best new albums out on May 18. This includes the raging rock of Courtney Barnett, Atlanta rapper Nick Grant, wildly ambitious psych-folk from Ray La Montagne and a whole lot more. Featured Albums: Courtney Barnett: <em>Tell Me How You Really Feel, </em>BTS: <em>Love Yourself: Tear, </em>Nick Grant: <em>Dreamin' Out Loud, </em>Ray LaMontagne: <em>Part of the Light, </em>Joan Armatrading: <em>Not Too Far Away, </em>Remember Sports: <em>Slow Buzz. </em>Other notable releases for May 18: GAS: <em>Rausch, </em>John Maus: <em>Addendum, </em>Low Cut Connie: <em>Dirty Pictures (Part 2), </em>Nellie McKay: <em>Sister Orchid, </em>Parquet Courts: <em>Wide Awake, </em>Ryley Walker: <em>Deafman Glance, </em>Stephen Malkmus And The Jicks: <em>Sparkle Hard</em>",
"publishedAt": "2018-05-18T09:00:02.000Z",
"duration": 1366,
"owner": {
"id": "Show:1331",
"name": "All Songs Considered",
"handle": null,
"description": "Hosts/nerds Bob Boilen and Robin Hilton are your friendly music buddies with the week's best new music discoveries, including conversations with emerging artists, icons and more. Hear songs that can completely change your day, with humor, heart and (sometimes) a whole lot of noise. Directions for use: Morning commute, the gym, or alone time. (If rash persists, discontinue use.)",
"image": {
"id": "Image:86355312",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ea/0c/40/ea0c4001560e8250e4fb0a8f82d970b61eed1a57.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1331",
"halftones": {
"cmyk": {
"id": "Image:46727adff9028e7c7664a5ea68bed6cf5deba370db21a66eddf4d63aa15ed276",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/78/1b/e0/781be0348e6d830627af315c5d490ca0dca7a9af.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(174, 63, 23)",
"body": "rgb(174, 63, 23)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(174, 63, 23)",
"body": "rgb(206, 74, 27)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(222, 218, 218)",
"body": "rgb(246, 245, 245)",
"background": "rgb(174, 63, 23)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:0e68c2c76a1a5439f50391b3e786212d534e9ad7082ee7f06509cc54dd307b4d",
"src": "https://cache.banter.fm/banter-media-cache/f0/69/62/f069620cb49a18b1428459ea1958f0641355817e.mp3",
"origin": "https://play.podtrac.com/npr-510019/npr.mc.tritondigital.com/ALLSONGS_PODCAST/media/anon.npr-mp3/npr/asc/2018/05/20180518_asc_nmf_20180518v3-rxloud_01.mp3?orgId=1&d=1352&p=510019&story=612004412&t=podcast&e=612004412&ft=pod&f=510019",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/74/99/4d/74994d5ede3b3437468f797583d6170bb0ba2aac.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2513299",
"episode": {
"id": "Episode:642900734",
"title": "Gayish: 065 Unicorns",
"description": "OK, so this episode is about unicorns. Why? We have no idea. I mean, they are pretty gay. But we also talk about millenials, pooping ice cream, and Kyle says something that Mike says is his favorite thing that has ever been said on the podcast.<br />",
"publishedAt": "2018-05-18T07:50:52.000Z",
"duration": 3957,
"owner": {
"id": "Show:65519",
"name": "Gayish",
"handle": null,
"description": "Nominated for Best LGBTQ Podcast, Mike and Kyle discuss gay stereotypes they do and don't fit into. Grab a glass of rose, throw out your gay assumptions, and get ready to find out how two gay guys are really a mixture of gay and straight.",
"image": {
"id": "Image:99234937",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/c7/04/3c/c7043cfef7e2dea80a8e6e6edb8d42d412c569d7.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:65519",
"halftones": {
"cmyk": {
"id": "Image:fe692b1f96ef3c9e15f3438fcdd8a38a37118ebc16050ae0fd817391d7098fc6",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/e2/16/23/e21623686968e4ae83a9c7c19fb0e8c34e1201f2.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(8, 155, 236)",
"body": "rgb(6, 123, 186)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(17, 166, 247)",
"body": "rgb(17, 166, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(5, 103, 157)",
"body": "rgb(7, 136, 206)",
"background": "rgb(230, 230, 230)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Gayish Media",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:1af4ff6bdeabad2682f7fa0cf5c1210b5d53af41541a4196204ecbf36f681ccd",
"src": "https://cache.banter.fm/banter-media-cache/c8/e1/f2/c8e1f2052b9e770a1b0770752b68ee5090b405e1.mp3",
"origin": "http://media.blubrry.com/gayish/http://feeds.soundcloud.com/stream/445726881-user-483377239-gayish-065-unicorns.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/4c/c9/92/4cc9928a21cae268a8a1cfcbda37dd6377cfb024.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2524731",
"episode": {
"id": "Episode:642432766",
"title": "More or Less Human",
"description": "<p>Seven years ago chatbots - those robotic texting machines - were a mere curiosity. They were noticeably robotic and at their most malicious seemed only capable of scamming men looking for love online. Today, the chatbot landscape is wildly different. From election interference to spreading hate, chatbots have become online weapons.</p>\n<p>And so, we decided to reinvestigate the role these robotic bits of code play in our lives and the effects they’re having on us. We begin with a little theater. In our live show “Robert or Robot?” Jad and Robert test 100 people to see if they can spot a bot. We then take a brief detour to revisit the humanity of the Furby, and finish in a virtual house where the line between technology and humanity becomes blurrier than ever before.</p>\n<p><em>This episode was reported and produced by Simon Adler. Our live event was produced by Simon Adler and Suzie Lechtenberg.</em></p>\n<p><em>Support Radiolab today at <a href=\"https://pledge3.wnyc.org/donate/radiolab-it/onestep/?utm_source=podcast&amp;utm_medium=notes&amp;utm_campaign=membership&amp;utm_content=radiolab\" target=\"_blank\">Radiolab.org/donate</a>.</em></p>",
"publishedAt": "2018-05-18T02:39:00.000Z",
"duration": 3846,
"owner": {
"id": "Show:21",
"name": "Radiolab",
"handle": null,
"description": "A two-time Peabody Award-winner, Radiolab is an investigation told through sounds and stories, and centered around one big idea. In the Radiolab world, information sounds like music and science and culture collide. Hosted by Jad Abumrad and Robert Krulwich, the show is designed for listeners who demand skepticism, but appreciate wonder. \r\r\n\r\r\nWNYC Studios is the producer of other leading podcasts including Freakonomics Radio, Death, Sex & Money, On the Media and many more.",
"image": {
"id": "Image:109997273",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/19/ac/93/19ac93fa3c12773801af17f0bb20f0af22b8560d.png",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:21",
"halftones": {
"cmyk": {
"id": "Image:ab292b488f2f77304e36ab3c648cc2b2802185249b5201b821b0ed4a5322a0d1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b4/94/3a/b4943ab2337410c9c2aad8bd7815e7d4aae1f2f8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(32, 48, 152)",
"body": "rgb(32, 48, 152)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(53, 74, 212)",
"body": "rgb(91, 108, 220)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(23, 35, 110)",
"body": "rgb(32, 48, 152)",
"background": "rgb(248, 248, 248)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "WNYC Studios",
"__typename": "Show",
"subscribersCount": {
"totalCount": 159,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:123955565",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/0d/da/3e/0dda3e2e752bdc48ef4ffcb7a0773000bd6cc55f.jpeg",
"width": 1600,
"height": 900,
"__typename": "Image"
}],
"media": {
"id": "Media:f047fd0a0e50121601a9bb58eff6f4bd1b91d87d33d072f5ae19a4e09f625d07",
"src": "https://cache.banter.fm/banter-media-cache/a0/21/4e/a0214ea371b090e824dcf7697888a6af0a7f6185.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18morelesshuman.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/8f/dc/d9/8fdcd9dab995f3013ec3d73fc8bd8e7527f55e97.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8555",
"updatedAt": "2018-05-20T01:57:21.779Z",
"position": 2701,
"finished": false,
"episode": {
"id": "Episode:642432766",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 3,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2698157",
"name": "Kevin Korpi",
"handle": "lonelybob",
"description": null,
"image": {
"id": "Image:118807324",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/69/11/cb/6911cbd92169fd1515111d009890c2f7243f9b2f.null",
"width": 129,
"height": 129,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698157",
"halftones": {
"cmyk": {
"id": "Image:1168d24e6818b70eafd7aee1e5387246d33beb8c8ea8ffea261775c842c9948a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9c/35/62/9c3562c1290bb88ab5c94e52750b16471d223260.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 158, 38)",
"body": "rgb(98, 125, 30)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(169, 210, 67)",
"body": "rgb(169, 210, 67)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(85, 108, 26)",
"body": "rgb(117, 149, 36)",
"background": "rgb(245, 244, 242)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 1,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Post:162",
"createdAt": "2018-05-20T01:23:13.042Z",
"target": {
"id": "Episode:642432766",
"__typename": "Episode"
},
"parent": {
"id": "Episode:642432766",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "The Turing Test at the beginning was cute, but the second act (around 30:00) was super fucked up. I had a visceral aversion to hearing that toy dinosaur respond to being tortured...",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}, {
"id": "FeedItemPublished:2513281",
"episode": {
"id": "Episode:642714878",
"title": "S10EP09 - BreastWorld",
"description": "<p>Joe Betance and Evan Ayres dissect, discuss and deconstruct Episode 9 of RuPaul's Drag Race Season 10.</p> <p>Email: <a href= \"mailto:dragracerecap@gmail.com\">dragracerecap@gmail.com</a></p> <p>Facebook: facebook.com/dragracerecap</p> <p>Instagram: @dragracerecap</p> <p>Twitter: @dragracerecap</p> <p>Patreon: patreon.com/dragracerecap</p>",
"publishedAt": "2018-05-18T05:31:25.000Z",
"duration": 5137,
"owner": {
"id": "Show:265401",
"name": "RuPaul's Drag Race Recap",
"handle": null,
"description": "Join two fans of Rupaul's Drag Race as they breakdown and analyze each new episode with the same level of scrutiny usually reserved for major sporting events, supreme court decisions and the latest antics of Juice Newton. Irreverent, smart and hilarious, Joe, and Taylor will satisfy your craving to eavesdrop on two lonely and sad gay friends with nothing better to do than critique the contestants on their favorite reality show.",
"image": {
"id": "Image:90092681",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/30/0a/8a/300a8a72be4ebd267609fa406027db5d7895b756.jpeg",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:265401",
"halftones": {
"cmyk": {
"id": "Image:5e171f9a166959a19093fb4c5cb2847530db7ab067ada62f2aadc605a74a8e96",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/33/c6/0c/33c60c0eb93cc54e8b009cc053e2260e2f7047bf.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(201, 84, 199)",
"body": "rgb(189, 60, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(201, 84, 199)",
"body": "rgb(201, 84, 199)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(178, 56, 176)",
"body": "rgb(201, 84, 199)",
"background": "rgb(1, 0, 1)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Joe Betance, Taylor the Latte boy",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:ea244c93b096a4082c7f0cd593a8cd768e2281e6aeddc179d9e45c988d9ea5a2",
"src": "https://cache.banter.fm/banter-media-cache/8c/ad/68/8cad680f3d39c8ac0eb92b37e2af77419a0faa1e.mp3",
"origin": "http://traffic.libsyn.com/dragracerecap/S10EP09_-_BreastWorld.mp3?dest-id=363198",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/39/9f/bd/399fbde09ed7c852949580156be5db6731d092aa.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "FeedItemPublished"
}],
"__typename": "FeedItemConnection"
},
"viewer": {
"id": "User:20186",
"episodeSessions": {
"items": [{
"id": "EpisodeSession:8605",
"updatedAt": "2018-05-21T02:30:18.716Z",
"position": 1653,
"finished": false,
"episode": {
"id": "Episode:638368665",
"__typename": "Episode",
"title": "Risky Business #499 -- Is PGP actually busted and Signal pwnt? Noooope",
"description": "In this week’s weekly show we’re just going to drill in to the week’s extra long security news section with Adam Boileau then go straight to the sponsor interview. I’ve got a fantastic feature interview for you this week, but I’m going to publish it outside of the news show. It was either that or run stupidly long or cut too much from everything to make it all fit.\n\nThis week’s sponsor interview is a good one though. We’re chatting with the team behind DarkTrace. They make a machine learning-backed network monitor. A key different with this kit is it actually gets involved on the network. If it sees something it’s confident is attacker behaviour it will start spraying TCP resets to boot them off the network.\n\nThis is something the IPS systems of old used to do but it’s an approach that fell out of favour. We’ll find out why that approach was discarded and why it’s coming back, as well as generally discuss the role of machine learning in security with a company that has invested in it heavily. This isn’t a “for or against” interview segment. This is a discussion with one company that is getting value out of the approach, so stick around for that.\n\nThe show notes/news items are below, and you can follow Adam or Patrick on Twitter if that’s your thing.",
"publishedAt": "2018-05-16T00:00:00.000Z",
"duration": 4405,
"owner": {
"id": "Show:2340",
"name": "Risky Business",
"handle": null,
"description": "Risky Business is a weekly information security podcast featuring news and in-depth interviews with industry luminaries. Launched in February 2007, Risky Business is a must-listen digest for information security pros. With a running time of approximately 50-60 minutes, Risky Business is pacy; a security podcast without the waffle.",
"image": {
"id": "Image:99599550",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/4e/0c/7b/4e0c7b1f656ee15760585f83ab00294b21223159.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:2340",
"halftones": {
"cmyk": {
"id": "Image:efd39161e4b2b1589eb5fbf6189d159010299f6a0eb94518487728fdf81f2450",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fb/e1/ba/fbe1ba4e514949a9586725b0e3ad16c296f3e1a1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(248, 248, 248)",
"body": "rgb(248, 248, 248)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 1)",
"background": "rgb(248, 248, 248)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Patrick Gray",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": {
"id": "Episode:642303129",
"title": "Risky Business feature interview: Hacking PUBG",
"description": "Here it is – this week’s feature interview with Marisa Emerson! Marisa is a security researcher who did a great talk at BSides Canberra in March all about game cheating.\n\nShe was specifically talking about the cheating techniques PUBG gamers are using and just how advanced they are. The crazy thing is the cheaters here are rolling some pretty decent techniques. It’s reminiscent of the iPhone jailbreaking scene – a lot of good hackers who don’t know they’re good hackers.\n\nMarisa is running a binary exploitation bootcamp in Brisbane that will have another session next semester. Details are here.",
"publishedAt": "2018-05-18T00:00:00.000Z",
"duration": 1647,
"owner": {
"id": "Show:2340",
"name": "Risky Business",
"handle": null,
"description": "Risky Business is a weekly information security podcast featuring news and in-depth interviews with industry luminaries. Launched in February 2007, Risky Business is a must-listen digest for information security pros. With a running time of approximately 50-60 minutes, Risky Business is pacy; a security podcast without the waffle.",
"image": {
"id": "Image:99599550",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/4e/0c/7b/4e0c7b1f656ee15760585f83ab00294b21223159.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:2340",
"halftones": {
"cmyk": {
"id": "Image:efd39161e4b2b1589eb5fbf6189d159010299f6a0eb94518487728fdf81f2450",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fb/e1/ba/fbe1ba4e514949a9586725b0e3ad16c296f3e1a1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(248, 248, 248)",
"body": "rgb(248, 248, 248)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 1)",
"background": "rgb(248, 248, 248)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Patrick Gray",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:4da10a997e49911591257a896d50b9df5872f837fdcc6d557eefa5693e523685",
"src": "https://cache.banter.fm/banter-media-cache/c5/ea/bc/c5eabcec5f3b2dc982ffcea02eaaf46d87b03bb6.mp3",
"origin": "http://media2.risky.biz/RB499_feature.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/4b/e1/02/4be10218ff0b4a04935bc37fe5aa242c2d721beb.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}
},
"images": [],
"media": {
"id": "Media:a0b3555d4d51c58dfdfc14d0e34b2b8b42d92144d4d865254c03476bd5173672",
"src": "https://cache.banter.fm/banter-media-cache/9a/79/49/9a79490bcf589988f588bbc1096575a47c15b7d6.mp3",
"origin": "http://media2.risky.biz/RB499.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/c0/f0/ca/c0f0ca54e8603fd38612696e0dc501114f301bed.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8605",
"updatedAt": "2018-05-21T02:30:18.716Z",
"position": 1653,
"finished": false,
"episode": {
"id": "Episode:638368665",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12580",
"name": "Cheston Lee",
"handle": "cheston",
"description": null,
"image": {
"id": "Image:70482301",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/6a/ac/986aacf8bcb350f90958db2f5127010ccaafbd5b.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12580",
"halftones": {
"cmyk": {
"id": "Image:f6f112c66cc40074778704767c717a9dcdb1bdc4c76e783eded74476c9051af1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/38/a4/8238a4e13867ae5be4555b78c75e3393943d1f34.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(109, 56, 21)",
"body": "rgb(109, 56, 21)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(139, 71, 27)",
"body": "rgb(182, 93, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(156, 80, 30)",
"body": "rgb(156, 80, 30)",
"background": "rgb(30, 18, 14)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8604",
"updatedAt": "2018-05-21T01:42:43.754Z",
"position": 689,
"finished": false,
"episode": {
"id": "Episode:633125447",
"__typename": "Episode",
"title": "Episode 14: Digital Self-Harm",
"description": "Alyson anonymously sent herself hateful and homophobic messages online. Dylan Marron asks her why.\n\nWant to be a guest on the show and take your own online conversation and move it offline? Fill out the form at <a href=\"http://dylanmarron.com/podcast\" target=\"_blank\">conversationswithpeoplewhohateme.com</a>\n\n<a href=\"http://conversationswithpeoplewhohateme.com/\" target=\"_blank\">Conversations with People Who Hate Me</a> is a production of Night Vale Presents. Credits: Dylan Marron (creator, producer, host), Christy Gressman (executive producer), Vincent Cacchione (audio engineer, mixer), Rob Wilson (logo designer). Theme song: “These Dark Times” by Caged Animals.",
"publishedAt": "2018-05-14T04:00:00.000Z",
"duration": 1830,
"owner": {
"id": "Show:60",
"name": "Conversations with People Who Hate Me",
"handle": null,
"description": "Online video creator Dylan Marron calls some of the folks who wrote him hateful messages to ask one simple question: why? The results are sometimes awkward, often political, and always fascinating. In new episodes starting April 2nd, Dylan will moderate conversations between people who exchanged their own negative messages online.",
"image": {
"id": "Image:99500226",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6c/88/a2/6c88a2e346647e2e5c4247be63fb4cc502e9e29e.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:60",
"halftones": {
"cmyk": {
"id": "Image:e82518ccd0df06a601a0bf2e94a99f16147ccbba31532e5aeb1d789593ab4d17",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/ad/15/f7ad152c888a4d1fb7d263a32e996947ef5e91d0.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 72, 104)",
"body": "rgb(0, 72, 104)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(0, 97, 140)",
"body": "rgb(0, 125, 180)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 37, 53)",
"body": "rgb(0, 72, 104)",
"background": "rgb(248, 248, 248)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Night Vale Presents",
"__typename": "Show",
"subscribersCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:a03f1036eba240298ae659b102cf9482f094f0ff1ef6f77db025781477a87b1c",
"src": "https://cache.banter.fm/banter-media-cache/62/7f/f4/627ff40aff6de8a0c8795d914a3cb88274702862.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/dovetail.prxu.org/124/e8264c66-541a-4178-90e5-a3bece776f39/CWPWHM_Ep_14_Digital_Self_Harm.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/96/1c/ac/961cac26bb49e4f99b1343abcbca9861f6d4a68e.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8604",
"updatedAt": "2018-05-21T01:42:43.754Z",
"position": 689,
"finished": false,
"episode": {
"id": "Episode:633125447",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8581",
"updatedAt": "2018-05-20T21:02:20.385Z",
"position": 2044,
"finished": false,
"episode": {
"id": "Episode:628698493",
"__typename": "Episode",
"title": "Reveal Presents: The View from Room 205",
"description": "In 2014, WBEZ Chicago reporter Linda Lutton followed a class of fourth-graders at William Penn Elementary School on Chicago’s West Side. She wanted to explore a big idea that’s at the heart of the American dream: Can public schools be the great equalizer in society, giving everyone a chance to succeed, no matter where they … Continue reading Reveal Presents: The View from Room 205 →",
"publishedAt": "2018-05-12T04:05:54.000Z",
"duration": 3182,
"owner": {
"id": "Show:1528",
"name": "Reveal",
"handle": null,
"description": "The official free download of the award-winning radio program “Reveal,” produced by The Center for Investigative Reporting and PRX. Hidden stories, uncovered – that's what this show is about. It takes you deep inside stories that impact your world, revealing injustice and holding the powerful accountable. The first-of-its-kind investigative program on public radio, \"Reveal\" is hosted by Al Letson and updated regularly.",
"image": {
"id": "Image:86362049",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/2c/0a/a7/2c0aa7fd38da2725b89ea1e76d8c3b29129c6cc9.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1528",
"halftones": {
"cmyk": {
"id": "Image:1ece3f3f8e2ac899f00261cd585819574c5b47b5e504387b1b703dc6187e2e0b",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/25/d9/3a/25d93ae3372be61d048e22311e9f57cd24f9ba9d.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(247, 247, 247)",
"body": "rgb(247, 247, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(222, 222, 222)",
"body": "rgb(247, 247, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The Center for Investigative Reporting and PRX",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": {
"id": "Episode:644186134",
"title": "Across the Desert and the Sea",
"description": "African migrants fleeing persecution or seeking opportunity often end up in Libya, where they are tortured and trafficked. Many try to escape to Europe, only to be intercepted at sea and returned to Libya. On this episode of Reveal, we bring you one reporter’s dispatch from a treacherous migrant rescue operation and explore how Europe’s … Continue reading Across the Desert and the Sea →",
"publishedAt": "2018-05-19T04:05:37.000Z",
"duration": 3036,
"owner": {
"id": "Show:1528",
"name": "Reveal",
"handle": null,
"description": "The official free download of the award-winning radio program “Reveal,” produced by The Center for Investigative Reporting and PRX. Hidden stories, uncovered – that's what this show is about. It takes you deep inside stories that impact your world, revealing injustice and holding the powerful accountable. The first-of-its-kind investigative program on public radio, \"Reveal\" is hosted by Al Letson and updated regularly.",
"image": {
"id": "Image:86362049",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/2c/0a/a7/2c0aa7fd38da2725b89ea1e76d8c3b29129c6cc9.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1528",
"halftones": {
"cmyk": {
"id": "Image:1ece3f3f8e2ac899f00261cd585819574c5b47b5e504387b1b703dc6187e2e0b",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/25/d9/3a/25d93ae3372be61d048e22311e9f57cd24f9ba9d.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(247, 247, 247)",
"body": "rgb(247, 247, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(222, 222, 222)",
"body": "rgb(247, 247, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The Center for Investigative Reporting and PRX",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:124404600",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/96/ba/10/96ba10101f0b2e2116e1187c7fcecc26aaa1342f.jpeg",
"width": 3000,
"height": 2000,
"__typename": "Image"
}],
"media": {
"id": "Media:fda22313a6cbfd9c722f04b737f26ef977c3864549cc3b1b70e3a6d4b279a4b8",
"src": "https://cache.banter.fm/banter-media-cache/eb/9a/00/eb9a00ff2d21a9e9b70e0b1ffadb1815280ae966.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/media.blubrry.com/reveal/cdn-reveal.prx.org/wp-content/uploads/Across-the-Desert-and-the-Sea_128.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/88/97/5d/88975d2366ad1baa256d0ae1b3030f872579baca.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}
},
"images": [{
"id": "Image:120413534",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/42/92/7f/42927f03b9e5c0a15c78fbbb4a6c16b9efbfc2ea.png",
"width": 883,
"height": 440,
"__typename": "Image"
}],
"media": {
"id": "Media:aa821e71323970b11e3a5d5c445cb7d08595066ab70367aa5770c0ed1260fc05",
"src": "https://cache.banter.fm/banter-media-cache/79/f6/cb/79f6cb0ca559afd259ac38f30da34bbbee5f8cf4.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/media.blubrry.com/reveal/cdn-reveal.prx.org/wp-content/uploads/Reveal-Presents_-The-View-from-Room-205_128.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/cd/3a/d4/cd3ad442055abe7f8641608fb9b9b7d41b12f841.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8581",
"updatedAt": "2018-05-20T21:02:20.385Z",
"position": 2044,
"finished": false,
"episode": {
"id": "Episode:628698493",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 1,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 1,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Post:147",
"createdAt": "2018-05-14T12:07:40.580Z",
"target": {
"id": "Episode:628698493",
"__typename": "Episode"
},
"parent": {
"id": "Episode:628698493",
"__typename": "Episode"
},
"owner": {
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Amazing journalism revealing a devastating reality. Will never think about the word “ripe” the same way...",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8579",
"updatedAt": "2018-05-20T20:06:03.518Z",
"position": 2017,
"finished": false,
"episode": {
"id": "Episode:646700807",
"__typename": "Episode",
"title": "Shake Shacktivism",
"description": "You can’t change the world with shirtless insta selfies",
"publishedAt": "2018-05-20T09:00:00.000Z",
"duration": 3711,
"owner": {
"id": "Show:16574",
"name": "Food 4 Thot",
"handle": null,
"description": "A multiracial mix of queer writers talk about sex, relationships, race, identity, what we like to read, and who we like to read. It's not about food — we just really like the pun.",
"image": {
"id": "Image:61983474",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1f/f1/43/1ff143ef1e7b923ba08d3c4f524aa569d1e45176.jpeg",
"width": 3000,
"height": 3000,
"__typename": "Image"
},
"theme": {
"id": "Theme:16574",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(225, 117, 97)",
"body": "rgb(211, 66, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(231, 143, 127)",
"body": "rgb(231, 143, 127)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(177, 55, 33)",
"body": "rgb(216, 72, 45)",
"background": "rgb(247, 207, 207)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Food 4 Thot",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:be78ef14c0b6e51d22505d41f010382da356cbe90de2b245902b5df87f613fe8",
"src": "https://cache.banter.fm/banter-media-cache/e1/e2/9f/e1e29f46cd6c98834b97ac4a391416c31ada1f97.mp3",
"origin": "https://audio.simplecast.com/efa761fe.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/85/1e/6f/851e6fd3a9c310411bfab5344921e62361c5f714.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8579",
"updatedAt": "2018-05-20T20:06:03.518Z",
"position": 2017,
"finished": false,
"episode": {
"id": "Episode:646700807",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 1,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Post:163",
"createdAt": "2018-05-20T19:57:02.099Z",
"target": {
"id": "Episode:646700807",
"__typename": "Episode"
},
"parent": {
"id": "Episode:646700807",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "@john_fram I think you might enjoy the second segment of this one — it's a writer who wrote about 100 dates.",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8577",
"updatedAt": "2018-05-20T19:42:42.607Z",
"position": 450,
"finished": false,
"episode": {
"id": "Episode:646652139",
"__typename": "Episode",
"title": "#41: You're Not a 'Bad Gay'",
"description": "<p><a href=\"https://twitter.com/jpbrammer\" target=\"_blank\">John Paul Brammer</a> wrote the column <a href=\"https://intomore.com/you/hola-papi/\">\"Hola Papi\"</a> for <a href=\"https://intomore.com\">Into</a>; he's now a staff writer at <a href=\"https://www.them.us\">Them</a>. Want advice from Nancy? Email your question (ideally as a voice memo) to <a href=\"mailto:advice@nancypodcast.org\">advice@nancypodcast.org</a>.</p>\n<p>Original music by Jeremy Bloom.</p>\n<p><em>Support our work! Become a Nancy member today at <a href=\"https://pledge3.wnyc.org/donate/nancy-it/onestep/?utm_source=wnyc&amp;utm_medium=nancy-redirect&amp;utm_campaign=pledge&amp;utm_content=show-notes\" target=\"_blank\" title=\"Pledge\">Nancypodcast.org/donate</a>.</em></p>",
"publishedAt": "2018-05-20T16:00:00.000Z",
"duration": 1231,
"owner": {
"id": "Show:2884",
"name": "Nancy",
"handle": null,
"description": "BFFs Kathy Tu and Tobin Low are super queer, super fun and ready to take over your podcast feed. Join them for provocative stories and frank conversations about the LGBTQ experience today. Because everyone’s a little bit gay.\r\r\n\r\r\nWNYC Studios is the producer of other podcasts including Radiolab, Death, Sex & Money, 2 Dope Queens and many others.",
"image": {
"id": "Image:96709",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d2/87/18/d28718f053ec631ea201733c68923c91dae7bd68.png",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:2884",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(152, 88, 216)",
"body": "rgb(152, 85, 219)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(152, 88, 216)",
"body": "rgb(152, 88, 216)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(207, 238, 251)",
"body": "rgb(254, 255, 255)",
"background": "rgb(152, 88, 216)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "WNYC Studios",
"__typename": "Show",
"subscribersCount": {
"totalCount": 3,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [{
"id": "Image:125039786",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/2a/33/34/2a3334066567f010af2b0487d075c4f19e791218.jpeg",
"width": 960,
"height": 960,
"__typename": "Image"
}],
"media": {
"id": "Media:dcb316a4bf88cdae8be010fe358f759c7d314ef762b86668d8b3ff877c567b24",
"src": "https://cache.banter.fm/banter-media-cache/20/4b/71/204b71a8cd4d5d3bd49898ce7791786d48e18cd4.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/nancy/nancy052018_cms856230_pod.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/fa/ac/96/faac969d94969c829321a30b16148594745203ef.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8577",
"updatedAt": "2018-05-20T19:42:42.607Z",
"position": 450,
"finished": false,
"episode": {
"id": "Episode:646652139",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8576",
"updatedAt": "2018-05-20T19:36:38.013Z",
"position": 1015,
"finished": false,
"episode": {
"id": "Episode:644226792",
"__typename": "Episode",
"title": "The Libya Model and North Korean Nukes",
"description": "<p>What is going on with the Trump-Kim summit following the recent cancellation of a DPRK-ROK meeting?</p> <p>Will Trump and Kim meet?</p> <p>And how does John Bolton fit into all of this?</p> <p>Today, Aaron and Jeffrey discuss the latest twists and turns in the run-up to the Singapore summit, and raise broader questions about denuclearization and bureaucratic politics in the United States.</p> <p> </p> <p><strong>Links of Note:</strong></p> <p>John Bolton <a href=\"https://youtu.be/1JTYS59R4v4\">discussing that the summit will fail</a>.</p> <p><a href=\"https://www.imdb.com/title/tt0388888/\">Dig!</a></p> <p><strong>Support us over at Patreon.com/acwpodcast!</strong></p>",
"publishedAt": "2018-05-17T19:56:27.000Z",
"duration": 2386,
"owner": {
"id": "Show:1593",
"name": "Arms Control Wonk",
"handle": null,
"description": "The nuclear weapons, arms control, disarmament and nonproliferation podcast. Companion to the popular Arms Control Wonk blog (www.armscontrolwonk.com). Hosted by Jeffrey Lewis & Aaron Stein.",
"image": {
"id": "Image:296546",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9b/be/d8/9bbed801ac20b02265254cc6a6d2af67a8ce0e4a.jpeg",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:1593",
"halftones": {
"cmyk": {
"id": "Image:976baf6b1a834212d9993dabbb496000d8d8a871da5ffb422672513ecc22a168",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1d/af/50/1daf50b100b1a6ba9a9a36d1e07cebe80688e6ee.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(245, 16, 0)",
"body": "rgb(235, 15, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(245, 16, 0)",
"body": "rgb(245, 16, 0)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(194, 13, 0)",
"body": "rgb(245, 16, 0)",
"background": "rgb(247, 247, 247)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Jeffrey Lewis & Aaron Stein",
"__typename": "Show",
"subscribersCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:5320be1300547d05b8f4a9adeda11af1ee9e995d7878c87bdaa3a2dbd642b7fa",
"src": "https://cache.banter.fm/banter-media-cache/e3/87/75/e38775b58b1fd182e0e7faf8fd8f24194bd769f1.mp3",
"origin": "http://traffic.libsyn.com/armscontrolwonk/96.mp3?dest-id=228077",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/74/6b/72/746b725bee6ff3bb383c5e380882d8d29a09966e.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8576",
"updatedAt": "2018-05-20T19:36:38.013Z",
"position": 1015,
"finished": false,
"episode": {
"id": "Episode:644226792",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8575",
"updatedAt": "2018-05-20T19:24:23.985Z",
"position": 536,
"finished": false,
"episode": {
"id": "Episode:644100263",
"__typename": "Episode",
"title": "Time Bandits",
"description": "Timekeeping software is becoming the standard across the U.S. And it turns out, it can be used to steal workers' wages, a few minutes at a time.",
"publishedAt": "2018-05-18T20:37:00.000Z",
"duration": 546,
"owner": {
"id": "Show:943335",
"name": "The Indicator from Planet Money",
"handle": null,
"description": "A little show about big ideas. From the people who make Planet Money, The Indicator helps you make sense of what's happening today. It's a quick hit of insight into work, business, the economy, and everything else. Listen weekday afternoons.",
"image": {
"id": "Image:103011441",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/46/40/12/464012ebc0e17f8e8d46d4e9b87311631165ef08.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:943335",
"halftones": {
"cmyk": {
"id": "Image:5f156e1df80b577704dc2ae206eeb923464f9abba94c622038ce9b85c98f81a7",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ea/41/08/ea41088c74d9d79ca40c1d7fcbb998a8da36ccaf.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(239, 88, 32)",
"body": "rgb(210, 68, 15)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(239, 88, 32)",
"body": "rgb(239, 88, 32)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(205, 66, 15)",
"body": "rgb(239, 88, 32)",
"background": "rgb(24, 23, 79)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 11,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:90f4b8af0515972766821d43b98facdb62d0c6df53f7125cef6bf21e0e259b21",
"src": "https://cache.banter.fm/banter-media-cache/88/f8/ff/88f8ff915faac4c0c2bce10921303a8a8bed6f9e.mp3",
"origin": "https://play.podtrac.com/npr-510325/npr.mc.tritondigital.com/NPR_510325/media/anon.npr-mp3/npr/indicator/2018/05/20180518_indicator_0518_time_theft_final.mp3?orgId=1&d=545&p=510325&story=612452258&t=podcast&e=612452258&ft=pod&f=510325",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/0c/95/29/0c9529e71680c40e8c00da38d5479ec41390f860.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8575",
"updatedAt": "2018-05-20T19:24:23.985Z",
"position": 536,
"finished": false,
"episode": {
"id": "Episode:644100263",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12580",
"name": "Cheston Lee",
"handle": "cheston",
"description": null,
"image": {
"id": "Image:70482301",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/6a/ac/986aacf8bcb350f90958db2f5127010ccaafbd5b.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12580",
"halftones": {
"cmyk": {
"id": "Image:f6f112c66cc40074778704767c717a9dcdb1bdc4c76e783eded74476c9051af1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/38/a4/8238a4e13867ae5be4555b78c75e3393943d1f34.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(109, 56, 21)",
"body": "rgb(109, 56, 21)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(139, 71, 27)",
"body": "rgb(182, 93, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(156, 80, 30)",
"body": "rgb(156, 80, 30)",
"background": "rgb(30, 18, 14)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8555",
"updatedAt": "2018-05-20T01:57:21.779Z",
"position": 2701,
"finished": false,
"episode": {
"id": "Episode:642432766",
"__typename": "Episode",
"title": "More or Less Human",
"description": "<p>Seven years ago chatbots - those robotic texting machines - were a mere curiosity. They were noticeably robotic and at their most malicious seemed only capable of scamming men looking for love online. Today, the chatbot landscape is wildly different. From election interference to spreading hate, chatbots have become online weapons.</p>\n<p>And so, we decided to reinvestigate the role these robotic bits of code play in our lives and the effects they’re having on us. We begin with a little theater. In our live show “Robert or Robot?” Jad and Robert test 100 people to see if they can spot a bot. We then take a brief detour to revisit the humanity of the Furby, and finish in a virtual house where the line between technology and humanity becomes blurrier than ever before.</p>\n<p><em>This episode was reported and produced by Simon Adler. Our live event was produced by Simon Adler and Suzie Lechtenberg.</em></p>\n<p><em>Support Radiolab today at <a href=\"https://pledge3.wnyc.org/donate/radiolab-it/onestep/?utm_source=podcast&amp;utm_medium=notes&amp;utm_campaign=membership&amp;utm_content=radiolab\" target=\"_blank\">Radiolab.org/donate</a>.</em></p>",
"publishedAt": "2018-05-18T02:39:00.000Z",
"duration": 3846,
"owner": {
"id": "Show:21",
"name": "Radiolab",
"handle": null,
"description": "A two-time Peabody Award-winner, Radiolab is an investigation told through sounds and stories, and centered around one big idea. In the Radiolab world, information sounds like music and science and culture collide. Hosted by Jad Abumrad and Robert Krulwich, the show is designed for listeners who demand skepticism, but appreciate wonder. \r\r\n\r\r\nWNYC Studios is the producer of other leading podcasts including Freakonomics Radio, Death, Sex & Money, On the Media and many more.",
"image": {
"id": "Image:109997273",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/19/ac/93/19ac93fa3c12773801af17f0bb20f0af22b8560d.png",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:21",
"halftones": {
"cmyk": {
"id": "Image:ab292b488f2f77304e36ab3c648cc2b2802185249b5201b821b0ed4a5322a0d1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b4/94/3a/b4943ab2337410c9c2aad8bd7815e7d4aae1f2f8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(32, 48, 152)",
"body": "rgb(32, 48, 152)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(53, 74, 212)",
"body": "rgb(91, 108, 220)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(23, 35, 110)",
"body": "rgb(32, 48, 152)",
"background": "rgb(248, 248, 248)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "WNYC Studios",
"__typename": "Show",
"subscribersCount": {
"totalCount": 159,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [{
"id": "Image:123955565",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/0d/da/3e/0dda3e2e752bdc48ef4ffcb7a0773000bd6cc55f.jpeg",
"width": 1600,
"height": 900,
"__typename": "Image"
}],
"media": {
"id": "Media:f047fd0a0e50121601a9bb58eff6f4bd1b91d87d33d072f5ae19a4e09f625d07",
"src": "https://cache.banter.fm/banter-media-cache/a0/21/4e/a0214ea371b090e824dcf7697888a6af0a7f6185.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/radiolab_podcast/radiolab_podcast18morelesshuman.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/8f/dc/d9/8fdcd9dab995f3013ec3d73fc8bd8e7527f55e97.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8555",
"updatedAt": "2018-05-20T01:57:21.779Z",
"position": 2701,
"finished": false,
"episode": {
"id": "Episode:642432766",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 3,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2698157",
"name": "Kevin Korpi",
"handle": "lonelybob",
"description": null,
"image": {
"id": "Image:118807324",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/69/11/cb/6911cbd92169fd1515111d009890c2f7243f9b2f.null",
"width": 129,
"height": 129,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698157",
"halftones": {
"cmyk": {
"id": "Image:1168d24e6818b70eafd7aee1e5387246d33beb8c8ea8ffea261775c842c9948a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9c/35/62/9c3562c1290bb88ab5c94e52750b16471d223260.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 158, 38)",
"body": "rgb(98, 125, 30)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(169, 210, 67)",
"body": "rgb(169, 210, 67)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(85, 108, 26)",
"body": "rgb(117, 149, 36)",
"background": "rgb(245, 244, 242)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 1,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Post:162",
"createdAt": "2018-05-20T01:23:13.042Z",
"target": {
"id": "Episode:642432766",
"__typename": "Episode"
},
"parent": {
"id": "Episode:642432766",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "The Turing Test at the beginning was cute, but the second act (around 30:00) was super fucked up. I had a visceral aversion to hearing that toy dinosaur respond to being tortured...",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8553",
"updatedAt": "2018-05-20T00:40:00.471Z",
"position": 1654,
"finished": false,
"episode": {
"id": "Episode:638616653",
"__typename": "Episode",
"title": "War Crimes and Collective Punishment",
"description": "Blacklisted academic Norman Finkelstein discusses his meticulous, scholarly documentation of the collective punishment of Gaza, “the largest concentration camp in the world.” The son of two Nazi concentration camp survivors, Finkelstein is an incendiary academic whose work has infuriated the Israeli government for decades. His latest book, \"Gaza: An Inquest Into its Martyrdom,\" has not been reviewed in a single U.S. newspaper. He talks about the latest massacre in Gaza, the history of US support for Israel’s war crimes and why he believes Iran is out-maneuvering Netanyahu.&nbsp;<br><br>Sen. Ron Wyden, a longtime member of the Intelligence Committee, blasts the CIA propaganda campaign in support of Haspel and accuses the Republicans of engaging in a secret confirmation process. Jeremy also asks Wyden if he believes CIA personnel involved with torture should be criminally prosecuted, what he thinks of Edward Snowden and why James Clapper, Obama’s director of national intelligence, was never charged with perjury.&nbsp;<br><br>Plus, Jared Kushner speaks a little too much truth at the Jerusalem embassy.",
"publishedAt": "2018-05-16T10:00:00.000Z",
"duration": 4706,
"owner": {
"id": "Show:1562",
"name": "Intercepted with Jeremy Scahill",
"handle": null,
"description": "The people behind The Intercept’s fearless reporting and incisive commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss the crucial issues of our time: national security, civil liberties, foreign policy, and criminal justice. Plus interviews with artists, thinkers, and newsmakers who challenge our preconceptions about the world we live in.",
"image": {
"id": "Image:86298086",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/0e/c7/fc/0ec7fc315ab29aa1b6c4bceabc802a22e9d78d1b.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1562",
"halftones": {
"cmyk": {
"id": "Image:e33d4f088795046470ae7bc8fb10f3d8e143d80774ae0efe4afc9eb2d8b33996",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/34/bf/4c/34bf4c4a381986dcc1eb196ba5c8af171fff2d2a.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(224, 224, 224)",
"body": "rgb(224, 224, 224)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(1, 1, 1)",
"background": "rgb(224, 224, 224)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The Intercept",
"__typename": "Show",
"subscribersCount": {
"totalCount": 5,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:3eb165e0bb426d39fcd5a5fb9f90773600ddfdcf78bddb2a4dadda3294301e45",
"src": "https://cache.banter.fm/banter-media-cache/22/fe/8b/22fe8b20dfe5adcfe39390829bfa07049e27cf87.mp3",
"origin": "https://traffic.megaphone.fm/PPY1868430652.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/a5/bd/12/a5bd120bd5d39892af4e0efa0cbead9a492c44bd.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8553",
"updatedAt": "2018-05-20T00:40:00.471Z",
"position": 1654,
"finished": false,
"episode": {
"id": "Episode:638616653",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:2698652",
"name": "Stephen Lyle",
"handle": "chefnyc",
"description": null,
"image": {
"id": "Image:121730067",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f2/90/50/f29050f2adb7ef2bcc7b2d7d6b73b1d405f9e62e.jpeg",
"width": 64,
"height": 64,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698652",
"halftones": {
"cmyk": {
"id": "Image:3ffdf7a7817395ab54a1d56798eefc115ec03f50c5ea29d3f6fec9c9511c80c9",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cf/24/d8/cf24d824a066dce407443436eb2b502622b65eed.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(182, 3, 29)",
"body": "rgb(140, 111, 115)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(123, 98, 101)",
"body": "rgb(140, 111, 115)",
"background": "rgb(26, 26, 49)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:454612",
"name": "Tess Dickman",
"handle": "zebra_xing",
"description": null,
"image": {
"id": "Image:7479797",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/78/29/ee/7829eece991ef0e66a190d749321065a225b084e.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:454612",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(160, 107, 70)",
"body": "rgb(156, 105, 68)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(160, 107, 70)",
"body": "rgb(160, 107, 70)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(125, 83, 54)",
"body": "rgb(160, 107, 70)",
"background": "rgb(225, 214, 193)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8543",
"updatedAt": "2018-05-19T23:45:43.411Z",
"position": 885,
"finished": true,
"episode": {
"id": "Episode:639527637",
"__typename": "Episode",
"title": "Senate Releases More Details on Trump Jr. And Russian Lawyer Meeting & Tuesday's Primaries Takeaways",
"description": "The Senate Judiciary Committee released more than 2,500 pages related to an investigation of a meeting between top Trump aides and a delegation of Russians. We sift through what the testimony tells us. Plus, women continue to be front and center in this year's primaries. This episode: Congressional correspondent Scott Detrow, justice correspondent Ryan Lucas, national political correspondent Mara Liasson, and Congressional reporter Kelsey Snell. Email the show at nprpolitics@npr.org. Find and support your local public radio station at npr.org/stations.",
"publishedAt": "2018-05-16T20:30:00.000Z",
"duration": 1461,
"owner": {
"id": "Show:55",
"name": "NPR Politics Podcast",
"handle": null,
"description": "The NPR Politics Podcast is where NPR's political reporters talk to you like they talk to each other. With weekly roundups and quick takes on news of the day, you don't have to keep up with politics to know what's happening. You just have to keep up with us.",
"image": {
"id": "Image:125483218",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/55/2a/78/552a78222673347a0ab0e307dcbe403939fcdd05.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:55",
"halftones": {
"cmyk": {
"id": "Image:534a0b73137276e1927bf7c37f5c76ab2a1cd9dd76bda593adac2167b4261235",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/52/24/dd/5224dd6aaa79057f4d92eaba588efaa9080cddb9.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(207, 77, 38)",
"body": "rgb(203, 75, 37)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(207, 77, 38)",
"body": "rgb(207, 77, 38)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(226, 126, 96)",
"body": "rgb(226, 126, 96)",
"background": "rgb(143, 37, 30)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 7,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": {
"id": "Episode:641926132",
"title": "Weekly Roundup: Thursday, May 17",
"description": "As Republicans break off from their party leaders, an immigration vote edges closer to the House floor. Democrats get a rare win on the Senate floor. Plus, President Trump's plans for a summit with North Korea grow sour. This episode: Congressional correspondent Susan Davis, White House reporter Ayesha Rascoe, White House correspondent Scott Horsley, and editor & correspondent Ron Elving. Email the show at nprpolitics@npr.org. Find and support your local public radio station at npr.org/stations.",
"publishedAt": "2018-05-17T20:55:00.000Z",
"duration": 2490,
"owner": {
"id": "Show:55",
"name": "NPR Politics Podcast",
"handle": null,
"description": "The NPR Politics Podcast is where NPR's political reporters talk to you like they talk to each other. With weekly roundups and quick takes on news of the day, you don't have to keep up with politics to know what's happening. You just have to keep up with us.",
"image": {
"id": "Image:125483218",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/55/2a/78/552a78222673347a0ab0e307dcbe403939fcdd05.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:55",
"halftones": {
"cmyk": {
"id": "Image:534a0b73137276e1927bf7c37f5c76ab2a1cd9dd76bda593adac2167b4261235",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/52/24/dd/5224dd6aaa79057f4d92eaba588efaa9080cddb9.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(207, 77, 38)",
"body": "rgb(203, 75, 37)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(207, 77, 38)",
"body": "rgb(207, 77, 38)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(226, 126, 96)",
"body": "rgb(226, 126, 96)",
"background": "rgb(143, 37, 30)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 7,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:563b5e8fc083cb51c9aad9226430c71cdfc619f86c74ae1eaff633dc10febc02",
"src": "https://cache.banter.fm/banter-media-cache/e1/56/06/e156066e54b7154b5a3d2b8bf1a029be720d899b.mp3",
"origin": "https://play.podtrac.com/npr-510310/npr.mc.tritondigital.com/NPR_510310/media/anon.npr-mp3/npr/nprpolitics/2018/05/20180517_nprpolitics_517198politcspodcast.mp3?orgId=1&d=2490&p=510310&story=612091361&t=podcast&e=612091361&ft=pod&f=510310",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/49/ea/73/49ea73be7349bb436b35e687b86165760d87a5e1.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}
},
"images": [],
"media": {
"id": "Media:56f66536c3ffb9c0dd72f988f00e4ad34e25979bad506f6a32b179d2788fab58",
"src": "https://cache.banter.fm/banter-media-cache/9d/36/9b/9d369b91939a84b48da2262e3f8985fdcc8897ae.mp3",
"origin": "https://play.podtrac.com/npr-510310/npr.mc.tritondigital.com/NPR_510310/media/anon.npr-mp3/npr/nprpolitics/2018/05/20180516_nprpolitics_51618politicspodcast2.mp3?orgId=1&d=1443&p=510310&story=611712320&t=podcast&e=611712320&ft=pod&f=510310",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/23/05/74/230574297d4510f5cbf896dcfecd351ba582beb3.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8543",
"updatedAt": "2018-05-19T23:45:43.411Z",
"position": 885,
"finished": true,
"episode": {
"id": "Episode:639527637",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8542",
"updatedAt": "2018-05-19T21:04:03.408Z",
"position": 300,
"finished": true,
"episode": {
"id": "Episode:638616653",
"__typename": "Episode",
"title": "War Crimes and Collective Punishment",
"description": "Blacklisted academic Norman Finkelstein discusses his meticulous, scholarly documentation of the collective punishment of Gaza, “the largest concentration camp in the world.” The son of two Nazi concentration camp survivors, Finkelstein is an incendiary academic whose work has infuriated the Israeli government for decades. His latest book, \"Gaza: An Inquest Into its Martyrdom,\" has not been reviewed in a single U.S. newspaper. He talks about the latest massacre in Gaza, the history of US support for Israel’s war crimes and why he believes Iran is out-maneuvering Netanyahu.&nbsp;<br><br>Sen. Ron Wyden, a longtime member of the Intelligence Committee, blasts the CIA propaganda campaign in support of Haspel and accuses the Republicans of engaging in a secret confirmation process. Jeremy also asks Wyden if he believes CIA personnel involved with torture should be criminally prosecuted, what he thinks of Edward Snowden and why James Clapper, Obama’s director of national intelligence, was never charged with perjury.&nbsp;<br><br>Plus, Jared Kushner speaks a little too much truth at the Jerusalem embassy.",
"publishedAt": "2018-05-16T10:00:00.000Z",
"duration": 4706,
"owner": {
"id": "Show:1562",
"name": "Intercepted with Jeremy Scahill",
"handle": null,
"description": "The people behind The Intercept’s fearless reporting and incisive commentary—Jeremy Scahill, Glenn Greenwald, Betsy Reed and others—discuss the crucial issues of our time: national security, civil liberties, foreign policy, and criminal justice. Plus interviews with artists, thinkers, and newsmakers who challenge our preconceptions about the world we live in.",
"image": {
"id": "Image:86298086",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/0e/c7/fc/0ec7fc315ab29aa1b6c4bceabc802a22e9d78d1b.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1562",
"halftones": {
"cmyk": {
"id": "Image:e33d4f088795046470ae7bc8fb10f3d8e143d80774ae0efe4afc9eb2d8b33996",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/34/bf/4c/34bf4c4a381986dcc1eb196ba5c8af171fff2d2a.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(224, 224, 224)",
"body": "rgb(224, 224, 224)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(1, 1, 1)",
"background": "rgb(224, 224, 224)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The Intercept",
"__typename": "Show",
"subscribersCount": {
"totalCount": 5,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:3eb165e0bb426d39fcd5a5fb9f90773600ddfdcf78bddb2a4dadda3294301e45",
"src": "https://cache.banter.fm/banter-media-cache/22/fe/8b/22fe8b20dfe5adcfe39390829bfa07049e27cf87.mp3",
"origin": "https://traffic.megaphone.fm/PPY1868430652.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/a5/bd/12/a5bd120bd5d39892af4e0efa0cbead9a492c44bd.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8553",
"updatedAt": "2018-05-20T00:40:00.471Z",
"position": 1654,
"finished": false,
"episode": {
"id": "Episode:638616653",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:2698652",
"name": "Stephen Lyle",
"handle": "chefnyc",
"description": null,
"image": {
"id": "Image:121730067",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f2/90/50/f29050f2adb7ef2bcc7b2d7d6b73b1d405f9e62e.jpeg",
"width": 64,
"height": 64,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698652",
"halftones": {
"cmyk": {
"id": "Image:3ffdf7a7817395ab54a1d56798eefc115ec03f50c5ea29d3f6fec9c9511c80c9",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cf/24/d8/cf24d824a066dce407443436eb2b502622b65eed.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(182, 3, 29)",
"body": "rgb(140, 111, 115)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(123, 98, 101)",
"body": "rgb(140, 111, 115)",
"background": "rgb(26, 26, 49)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:454612",
"name": "Tess Dickman",
"handle": "zebra_xing",
"description": null,
"image": {
"id": "Image:7479797",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/78/29/ee/7829eece991ef0e66a190d749321065a225b084e.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:454612",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(160, 107, 70)",
"body": "rgb(156, 105, 68)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(160, 107, 70)",
"body": "rgb(160, 107, 70)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(125, 83, 54)",
"body": "rgb(160, 107, 70)",
"background": "rgb(225, 214, 193)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8541",
"updatedAt": "2018-05-19T19:04:47.470Z",
"position": 8,
"finished": false,
"episode": {
"id": "Episode:644170047",
"__typename": "Episode",
"title": "Weekly Wrap: \"Just Say It.\"",
"description": "Sam Sanders wraps up the week in news with NPR reporters Vanessa Romo and Brakkton Booker.",
"publishedAt": "2018-05-18T19:00:15.000Z",
"duration": 2790,
"owner": {
"id": "Show:47",
"name": "It's Been a Minute with Sam Sanders",
"handle": null,
"description": "Sometimes you just need to talk it out—and that's exactly what host Sam Sanders does each week. Join him on Fridays for a recap of the week's news, culture and everything – plus Tuesday deep dives with artists, writers, journalists and more.",
"image": {
"id": "Image:124593979",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b1/b2/0a/b1b20a2043346b907d3270073c13e6fb0c006313.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:47",
"halftones": {
"cmyk": {
"id": "Image:1b9ba03fe034c3d9af5490a6cf2b7ecbf7a89a56094b6dba7167f65c65fb2cc9",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/26/49/40/26494095ce2be2daaa3e7177cef49ee8d82c724d.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(240, 90, 31)",
"body": "rgb(211, 70, 14)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(240, 90, 31)",
"body": "rgb(240, 90, 31)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(68, 22, 5)",
"body": "rgb(115, 38, 8)",
"background": "rgb(239, 231, 24)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:29c2ddeca1747d386ca323910041cbd4792e275ab6f9895d012a77a56e8e20d0",
"src": "https://cache.banter.fm/banter-media-cache/55/43/db/5543db21c9357846d015f9f0023bb869ea723850.mp3",
"origin": "https://play.podtrac.com/npr-510317/npr.mc.tritondigital.com/NPR_510317/media/anon.npr-mp3/npr/sam/2018/05/20180518_sam_wrap518.mp3?orgId=1&d=2768&p=510317&story=612407327&t=podcast&e=612407327&ft=pod&f=510317",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/45/14/a6/4514a61d5311f5fa32200b7395068a41438d7851.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8541",
"updatedAt": "2018-05-19T19:04:47.470Z",
"position": 8,
"finished": false,
"episode": {
"id": "Episode:644170047",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8538",
"updatedAt": "2018-05-19T19:04:45.704Z",
"position": 1030,
"finished": true,
"episode": {
"id": "Episode:260944415",
"__typename": "Episode",
"title": "Episode 1: The Swarm",
"description": "This is the Emergency Alert System. Do not go outside. Do not look at the sky. Do not make noise. Your cooperation is vital to your survival. (Series Premiere) www.phenomenonpod.com",
"publishedAt": "2017-11-29T13:14:46.000Z",
"duration": 1031,
"owner": {
"id": "Show:447596",
"name": "The Phenomenon",
"handle": null,
"description": "When a supernatural threat drives mankind to the point of extinction, survivors around the globe struggle to endure in a world with just three rules:\n\nDo not look outside. Do not look at the sky. Do not make noise.",
"image": {
"id": "Image:99680302",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6d/0e/1b/6d0e1b5f260a228e5af3f4aa4766a64ea282e54e.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:447596",
"halftones": {
"cmyk": {
"id": "Image:bf9122008c9beb7074a0a88b0ed2d7d5cf15f3f036021f8045c70251e9fb6401",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/10/da/da/10dadae184ecd8aa1b8e7bb21f43f453cc4f5bfb.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(244, 244, 244)",
"body": "rgb(244, 244, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(219, 219, 219)",
"body": "rgb(244, 244, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Luciola Creative",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": {
"id": "Episode:260944411",
"title": "Episode 2: The Days That Follow",
"description": "After the arrival of The Phenomenon, survivors around the world begin grappling with the realities of their new world. www.phenomenonpod.com",
"publishedAt": "2017-11-29T14:11:25.000Z",
"duration": 1327,
"owner": {
"id": "Show:447596",
"name": "The Phenomenon",
"handle": null,
"description": "When a supernatural threat drives mankind to the point of extinction, survivors around the globe struggle to endure in a world with just three rules:\n\nDo not look outside. Do not look at the sky. Do not make noise.",
"image": {
"id": "Image:99680302",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6d/0e/1b/6d0e1b5f260a228e5af3f4aa4766a64ea282e54e.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:447596",
"halftones": {
"cmyk": {
"id": "Image:bf9122008c9beb7074a0a88b0ed2d7d5cf15f3f036021f8045c70251e9fb6401",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/10/da/da/10dadae184ecd8aa1b8e7bb21f43f453cc4f5bfb.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(244, 244, 244)",
"body": "rgb(244, 244, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(219, 219, 219)",
"body": "rgb(244, 244, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Luciola Creative",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:7612f7fadc1e7a2312574cc3eb9548b0263607b98c9a96f7b65b928d27ea60c6",
"src": "https://cache.banter.fm/banter-media-cache/e3/ed/ae/e3edae9fa405fa7f4348c4ea1324f9e5461c79f9.mp3",
"origin": "http://traffic.libsyn.com/phenomenonpod/The_Phenomenon_Episode_2_The_Days_That_Follow.mp3?dest-id=564641",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/b7/d8/e8/b7d8e88e2c20b9636dfac078f0a2841ae4f8b1e8.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}
},
"images": [],
"media": {
"id": "Media:e81e144472881a84c3e6db5aabbb5de0616cfe977f2a6e606036f9e6c8b93f4e",
"src": "https://cache.banter.fm/banter-media-cache/69/2a/7d/692a7d9eda22b5e7e59af57cf3d9f38877377ba5.mp3",
"origin": "http://traffic.libsyn.com/phenomenonpod/The_Phenomenon_Episode_1_The_Swarm.mp3?dest-id=564641",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/87/c9/0d/87c90d8269b81c14822594603ff61074aba713e7.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8538",
"updatedAt": "2018-05-19T19:04:45.704Z",
"position": 1030,
"finished": true,
"episode": {
"id": "Episode:260944415",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 3,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8537",
"updatedAt": "2018-05-19T18:46:45.302Z",
"position": 2194,
"finished": false,
"episode": {
"id": "Episode:642381203",
"__typename": "Episode",
"title": "#121 Pain Funnel",
"description": "An ambitious plan to help people goes off the rails, and a man from Florida tries to fix things the only way he knows how: with prank phone calls.<br><br>Further reading:<br><a href=\"https://www.theverge.com/2017/9/7/16257412/rehabs-near-me-google-search-scam-florida-treatment-centers\">Cat Ferguson's reporting on Google and Rehab (The Verge) - Part I</a><br><a href=\"https://www.theverge.com/2017/9/14/16309752/google-rehabs-near-me-search-adwords-crackdown\">Cat Ferguson's reporting on Google and Rehab (The Verge) - Part II<br></a><a href=\"https://www.nytimes.com/interactive/2017/12/27/business/addiction-inc.html\">David Segal's series on the business around addiction (New York Times)</a><br><a href=\"https://www.amazon.com/American-Fix-Inside-Opioid-Addiction/dp/1250196264\">Ryan Hampton's American Fix: Inside the Opioid Addiction Crisis</a><br><a href=\"https://www.mypalmbeachpost.com/sober-homes/\">Palm Beach Post's Reporting on the Sober Home Crisis&nbsp;</a>",
"publishedAt": "2018-05-18T02:05:23.000Z",
"duration": 2210,
"owner": {
"id": "Show:31",
"name": "Reply All",
"handle": null,
"description": "\"'A podcast about the internet' that is actually an unfailingly original exploration of modern life and how to survive it.\" - The Guardian. Hosted by PJ Vogt and Alex Goldman, from Gimlet.",
"image": {
"id": "Image:86295579",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1c/68/d1/1c68d1294f89b18747a9f0dc07a7df45c813ea08.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:31",
"halftones": {
"cmyk": {
"id": "Image:09c3466f06618f331849613449aa31db2a76ee3deb7045556a11f5379eaf2799",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b5/14/7bb514280eba4e467d8ba35b4cb3e56744dc5e11.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(49, 156, 226)",
"body": "rgb(27, 124, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(143, 201, 239)",
"body": "rgb(143, 201, 239)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(51, 63, 3)",
"body": "rgb(90, 111, 6)",
"background": "rgb(143, 201, 239)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Gimlet",
"__typename": "Show",
"subscribersCount": {
"totalCount": 165,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:e643155fd9eca2f66ebe0a6e76902b0b639a25f500aa83034f35cd29b817b4b8",
"src": "https://cache.banter.fm/banter-media-cache/de/bf/04/debf04183aee1606c11e73ec8df6b5f7f669e87c.mp3",
"origin": "https://traffic.megaphone.fm/GLT9587621985.mp3?updated=1526608810",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/b1/1d/9f/b11d9f165195fcdd6be3ee318dd3d1eafdbd52d9.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8537",
"updatedAt": "2018-05-19T18:46:45.302Z",
"position": 2194,
"finished": false,
"episode": {
"id": "Episode:642381203",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 6,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:2695526",
"name": "Elisabeth Hutton",
"handle": "libby",
"description": null,
"image": {
"id": "Image:104219695",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/30/a8/64/30a86440204bf79cdb6067df0077c7bdaed316f2.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2695526",
"halftones": {
"cmyk": {
"id": "Image:bf24ccb4732697096feaaf0582bb91189a649a4cf664fc56d17fad36644e035b",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d1/85/2c/d1852c3d20e131385583527f36dc002d05e208c5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 144, 160)",
"body": "rgb(0, 130, 145)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(0, 144, 160)",
"body": "rgb(0, 144, 160)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(227, 230, 230)",
"body": "rgb(246, 247, 247)",
"background": "rgb(0, 144, 160)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:20416",
"name": "Savannah Krenzel",
"handle": "sannarie",
"description": null,
"image": {
"id": "Image:14231",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b6/eb/a2/b6eba2b9b6ff758464dcb01dee8648ed8322faec.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20416",
"halftones": {
"cmyk": {
"id": "Image:295a0ad58385e08d9ad5e5ec533e1ec019be8cac064b35c05b30eecf2a374e4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/b6/5d/82b65d4f53a40d80c359e40b31a12ac1c0a0faf8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(159, 40, 70)",
"body": "rgb(159, 40, 70)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(174, 25, 63)",
"body": "rgb(207, 64, 100)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(192, 48, 84)",
"body": "rgb(192, 48, 84)",
"background": "rgb(31, 25, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:451044",
"name": "Kristen Leach",
"handle": "pajamasuit",
"description": null,
"image": {
"id": "Image:118973394",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/5c/9d/a5/5c9da5055b52f2599e1c90d96fc7c12e8eccdd46.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:451044",
"halftones": {
"cmyk": {
"id": "Image:afcd15db068777b55fba62bfe1eeb10a19c3e24b5eeab8c2f9c1fe16b83e893d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/5f/da/de/5fdadea795a818f4703325ae19f286ec260cc359.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(103, 87, 88)",
"body": "rgb(133, 112, 114)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(36, 31, 31)",
"body": "rgb(64, 54, 55)",
"background": "rgb(234, 234, 236)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2698157",
"name": "Kevin Korpi",
"handle": "lonelybob",
"description": null,
"image": {
"id": "Image:118807324",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/69/11/cb/6911cbd92169fd1515111d009890c2f7243f9b2f.null",
"width": 129,
"height": 129,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698157",
"halftones": {
"cmyk": {
"id": "Image:1168d24e6818b70eafd7aee1e5387246d33beb8c8ea8ffea261775c842c9948a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9c/35/62/9c3562c1290bb88ab5c94e52750b16471d223260.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 158, 38)",
"body": "rgb(98, 125, 30)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(169, 210, 67)",
"body": "rgb(169, 210, 67)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(85, 108, 26)",
"body": "rgb(117, 149, 36)",
"background": "rgb(245, 244, 242)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 4,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 2,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Post:158",
"createdAt": "2018-05-18T19:14:32.964Z",
"target": {
"id": "Episode:642381203",
"__typename": "Episode"
},
"parent": {
"id": "Episode:642381203",
"__typename": "Episode"
},
"owner": {
"id": "User:2698508",
"name": "Brendan Hutchins",
"handle": "thepodplaylist",
"description": null,
"image": {
"id": "Image:120964870",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/00/4a/49/004a49ce0825550e64c9874a5c1b4ba287ec4c8f.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698508",
"halftones": {
"cmyk": {
"id": "Image:1a467890122ceeebb3d5ec5a8c1bdab2a5c62a8cfe405b5b26416278fe541a59",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/77/04/c6/7704c6f46597f35200e33286dbabdbabe8a9fb58.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(135, 119, 97)",
"body": "rgb(135, 119, 97)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(126, 111, 91)",
"body": "rgb(135, 119, 97)",
"background": "rgb(47, 38, 28)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "I ❤️’d this, but it’s more like 💔.\n\nI have struggles with addiction. Father is an alcoholic. Mother is on her way at times. I’ve been down bad roads with sugar and caffeine and behaviors. I’ve heard ads for things like this, recently actually, on Doug Loves Movies, and I’m scared it’s a similar scam. ",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Post:161",
"createdAt": "2018-05-19T18:38:22.027Z",
"target": {
"id": "Episode:642381203",
"__typename": "Episode"
},
"parent": {
"id": "Episode:642381203",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Ugh, this is terrible. I briefly worked in the nursing home industry, and it was much the same. The owners were slumlords who were barely ever held accountable. Just get as many Medicare-backed heads in beds.",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8536",
"updatedAt": "2018-05-19T18:20:20.134Z",
"position": 3513,
"finished": false,
"episode": {
"id": "Episode:640240056",
"__typename": "Episode",
"title": "63. Frank Bruni on the Age of Outrage",
"description": "What is the line between sensitivity and censorship? In today's episode, Katie and Brian are navigating the realm of political correctness, from trigger warnings to safe spaces. New York Times Op-Ed writer Frank Bruni joins to discuss what he sees as the promise and pitfalls of hot-button issues like cultural appropriation and the idea of \"checking your privilege.\" Plus, listeners call in with their own thoughts on PC culture.",
"publishedAt": "2018-05-17T04:00:00.000Z",
"duration": 3582,
"owner": {
"id": "Show:1553",
"name": "Katie Couric",
"handle": null,
"description": "Journalism's most insightful interviewer. The biggest names in news, politics, and popular culture. Candid, unscripted conversations that go beyond the soundbites to reveal how we got here and what's really going on. Unexpected. Unconventional. Un-buttoned up.",
"image": {
"id": "Image:86363665",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b6/da/0e/b6da0e53d169f7d10592d5c0406bbd4c53ce1c52.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1553",
"halftones": {
"cmyk": {
"id": "Image:b85ddc92dd7273dc3d4d10b48bdaa423b3ea1493cb16eebe88c748853159d3ad",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/92/1e/f6/921ef653d424f60b29bb6578a368bcd61ff70881.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(193, 138, 19)",
"body": "rgb(151, 108, 15)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(233, 171, 35)",
"body": "rgb(233, 171, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(197, 142, 20)",
"body": "rgb(233, 171, 35)",
"background": "rgb(20, 24, 17)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Stitcher and Katie Couric",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:ffd0f81c9373ad06ad19047215d883d61d1f6d9afd5fc3c9da35c68555ccb289",
"src": "https://cache.banter.fm/banter-media-cache/6f/9e/53/6f9e53490f134b9e6d99b35f38c650e162b834e7.mp3",
"origin": "https://rss.art19.com/episodes/7e4bc015-106d-4965-aeb2-056cfa5360ef.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/91/00/cf/9100cf92f22b7b28a2b564ca8f28a1e75acd9185.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8536",
"updatedAt": "2018-05-19T18:20:20.134Z",
"position": 3513,
"finished": false,
"episode": {
"id": "Episode:640240056",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 1,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 6,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:2698652",
"name": "Stephen Lyle",
"handle": "chefnyc",
"description": null,
"image": {
"id": "Image:121730067",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f2/90/50/f29050f2adb7ef2bcc7b2d7d6b73b1d405f9e62e.jpeg",
"width": 64,
"height": 64,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698652",
"halftones": {
"cmyk": {
"id": "Image:3ffdf7a7817395ab54a1d56798eefc115ec03f50c5ea29d3f6fec9c9511c80c9",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cf/24/d8/cf24d824a066dce407443436eb2b502622b65eed.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(182, 3, 29)",
"body": "rgb(140, 111, 115)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(123, 98, 101)",
"body": "rgb(140, 111, 115)",
"background": "rgb(26, 26, 49)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:454612",
"name": "Tess Dickman",
"handle": "zebra_xing",
"description": null,
"image": {
"id": "Image:7479797",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/78/29/ee/7829eece991ef0e66a190d749321065a225b084e.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:454612",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(160, 107, 70)",
"body": "rgb(156, 105, 68)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(160, 107, 70)",
"body": "rgb(160, 107, 70)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(125, 83, 54)",
"body": "rgb(160, 107, 70)",
"background": "rgb(225, 214, 193)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2698157",
"name": "Kevin Korpi",
"handle": "lonelybob",
"description": null,
"image": {
"id": "Image:118807324",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/69/11/cb/6911cbd92169fd1515111d009890c2f7243f9b2f.null",
"width": 129,
"height": 129,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698157",
"halftones": {
"cmyk": {
"id": "Image:1168d24e6818b70eafd7aee1e5387246d33beb8c8ea8ffea261775c842c9948a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9c/35/62/9c3562c1290bb88ab5c94e52750b16471d223260.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 158, 38)",
"body": "rgb(98, 125, 30)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(169, 210, 67)",
"body": "rgb(169, 210, 67)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(85, 108, 26)",
"body": "rgb(117, 149, 36)",
"background": "rgb(245, 244, 242)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8484",
"updatedAt": "2018-05-18T15:25:50.996Z",
"position": 1384,
"finished": false,
"episode": {
"id": "Episode:643418690",
"__typename": "Episode",
"title": "Boom, busted and Banter",
"description": "Praise and critique for audio dramas, AudioBoom goes boom (maybe), and banter about Banter.",
"publishedAt": "2018-05-18T13:00:00.000Z",
"duration": 2121,
"owner": {
"id": "Show:2695420",
"name": "Bitrate",
"handle": null,
"description": "Join Brendan Hutchins and Mark Steadman as they discuss the latest podcasting news.",
"image": {
"id": "Image:120969406",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/30/e2/3c/30e23c4f39012c9e990687cc61b7ac2b5fac9def.png",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:2695420",
"halftones": {
"cmyk": {
"id": "Image:ca36a4f806a8423462e617d3a7d6be7c32b22adff13f30a1d4428e4ee0993b0e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/00/f9/e0/00f9e0accd74381005c28d58fb0c83040bf553ff.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(239, 71, 33)",
"body": "rgb(220, 54, 16)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(239, 71, 33)",
"body": "rgb(239, 71, 33)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(251, 213, 204)",
"body": "rgb(255, 252, 252)",
"background": "rgb(168, 56, 119)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Brendan Hutchins & Mark Steadman",
"__typename": "Show",
"subscribersCount": {
"totalCount": 3,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:2538899e71bc81f256e13f4d95b5217f6c17c50925015b7630b01cd599bc0696",
"src": "https://cache.banter.fm/banter-media-cache/75/9e/de/759ede2dfbc586b4227bd2729db486f69b79698c.mp3",
"origin": "https://tracking.podiant.co/d/spoke/bitrate/episodes/363cb085c8ebb0/primary/1526637804.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/48/49/34/4849340488448a46d5e33fa9b02aea66cafcc647.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8484",
"updatedAt": "2018-05-18T15:25:50.996Z",
"position": 1384,
"finished": false,
"episode": {
"id": "Episode:643418690",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 1,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 6,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2547416",
"name": "Jason Bade",
"handle": "jason",
"description": null,
"image": {
"id": "Image:62809982",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/26/d4/12/26d412cabe2a81eb39e19d4f2be5d7293348b294.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2547416",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(44, 82, 148)",
"body": "rgb(44, 82, 148)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(48, 89, 160)",
"body": "rgb(69, 117, 200)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(51, 95, 172)",
"body": "rgb(51, 95, 172)",
"background": "rgb(21, 16, 11)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 4,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 1,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [{
"id": "Recast:416",
"createdAt": "2018-05-18T15:26:11.610Z",
"target": {
"id": "Episode:643418690",
"__typename": "Episode"
},
"owner": {
"id": "User:20186",
"name": "James Reggio",
"handle": "james",
"description": null,
"image": {
"id": "Image:125499779",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/76/24/93/762493a965d864b5db960f1d81623959a6ebc7e2.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20186",
"halftones": {
"cmyk": {
"id": "Image:1c0e8169b5626d6884c6669f1c3e971fee4d161896f64112f801d6c2ba7dc92f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/8b/32/0b/8b320b0355b0c45211e08880e08a795707ddde81.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(119, 77, 56)",
"body": "rgb(119, 77, 56)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(138, 71, 37)",
"body": "rgb(161, 104, 76)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(157, 102, 74)",
"body": "rgb(157, 102, 74)",
"background": "rgb(49, 37, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Super honored for Banter to be mentioned by @thepodplaylist and @iamsteadman on their show today! (Conversation begins around 23:00.)\n\nIf you're joining Banter because you heard about us on Bitrate, welcome! Please leave a comment on this recast to say hello.",
"__typename": "Message"
},
"listenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 5,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:23011",
"name": "Kirill Zubovsky",
"handle": "kirill",
"description": null,
"image": {
"id": "Image:71633058",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/cc/7c/82/cc7c82f181b45a6eab301f92cc7d3ec2633fc374.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:23011",
"halftones": {
"cmyk": {
"id": "Image:6976ed4a1a7647b9f90b20d0f46c1726a55706761bfaf4291e931ed41eb2082e",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/1b/27/be/1b27bed75445c4ddb08d28986b5d50f7dfa5561e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(217, 14, 40)",
"body": "rgb(217, 14, 40)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(217, 14, 40)",
"body": "rgb(231, 15, 43)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(140, 9, 26)",
"body": "rgb(188, 12, 35)",
"background": "rgb(172, 178, 180)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2547416",
"name": "Jason Bade",
"handle": "jason",
"description": null,
"image": {
"id": "Image:62809982",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/26/d4/12/26d412cabe2a81eb39e19d4f2be5d7293348b294.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2547416",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(44, 82, 148)",
"body": "rgb(44, 82, 148)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(48, 89, 160)",
"body": "rgb(69, 117, 200)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(51, 95, 172)",
"body": "rgb(51, 95, 172)",
"background": "rgb(21, 16, 11)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"__typename": "Recast",
"upvotesCount": {
"totalCount": 11,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 10,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"repliesCount": {
"globalCount": 3,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [{
"id": "Reply:227",
"createdAt": "2018-05-18T17:28:41.930Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:2699098",
"name": "Jason Behrends",
"handle": "orangealert",
"description": null,
"image": {
"id": "Image:124305460",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/44/1e/c6/441ec6f66d55b6e9ad823522f2af2aa30dfd3de1.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:2699098",
"halftones": {
"cmyk": {
"id": "Image:17972ca0ec6a634267f8d4511b5bfba40805bd3f793bed75dec6e75f4268d848",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/55/4e/c6/554ec69ee2507c63cd294211a91ebf75a5a6b205.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(112, 112, 112)",
"body": "rgb(117, 117, 117)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(122, 122, 122)",
"body": "rgb(122, 122, 122)",
"background": "rgb(48, 48, 48)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 175,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Just joined because of the Bitrate recommendation!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 8,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 7,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:229",
"createdAt": "2018-05-18T19:06:39.825Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Happy to see Banter getting some well deserved recognition!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}, {
"id": "Reply:232",
"createdAt": "2018-05-19T11:59:15.846Z",
"target": {
"id": "Recast:416",
"__typename": "Recast"
},
"parent": {
"id": "Recast:416",
"__typename": "Recast"
},
"owner": {
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"message": {
"body": "Welcome Bitrate listeners, and great exposure for Banter!",
"__typename": "Message"
},
"upvotesCount": {
"totalCount": 3,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"__typename": "Reply"
}],
"__typename": "ReplyConnection"
}
}],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8481",
"updatedAt": "2018-05-18T14:16:04.010Z",
"position": 66,
"finished": false,
"episode": {
"id": "Episode:643059111",
"__typename": "Episode",
"title": "Episode 152 — Platforms Versus Aggregators",
"description": "Ben and James continue to discuss the differences between platforms and aggregators, including Facebook, Microsoft, Apple, Google, Netflix, Amazon, and Uber. Presented by WordPress.com: Get 15% off on a new site by visiting WordPress.com/Exponent. Links Ben Thompson: The Moat Map — Stratechery Ben Thompson: Books and Blogs — Stratechery Ben Thompson: Zillow, Aggregation, and Integration — Stratechery Ben Thompson: Tech’s Two Philosophies — Stratechery Ben Thompson: Casual Gaming is a Sustainable Business, but Not a Platform Differentiator — Stratechery Ben Thompson: Why Doesn’t Apple Enable Sustainable Businesses on the App Store? — Stratechery Ben Thompson: Apple’s China Problem — Stratechery … Continue reading Episode 152 — Platforms Versus Aggregators",
"publishedAt": "2018-05-18T09:24:21.000Z",
"duration": 3117,
"owner": {
"id": "Show:2290",
"name": "Exponent",
"handle": null,
"description": "Exponent, a production of Stratechery.com, is hosted by Ben Thompson and James Allworth.\n\n\n\nIn this program we seek to explore the massive effect technology is having not just on technology companies, but also on society as a whole. Ben Thompson is the author of Stratechery, a blog about the business and strategy of technology. James Allworth is the co-author with Clay Christensen of \"How Will You Measure Your Life\" and a writer for the Harvard Business Review.\n\n\n\nVisit the website at http://exponent.fm for show notes and to subscribe. To see old Stratechery.FM episodes, please visit http://stratechery.fm",
"image": {
"id": "Image:99598037",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bd/f2/6c/bdf26c7083a1e517b1c724c01fedec4ddd12c106.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:2290",
"halftones": {
"cmyk": {
"id": "Image:6b413a2aa1ddec79e09adf0bbaacb0b7caa99a140aa63185bc92e263ba177153",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/25/49/05/2549058ef15b4d6d6c6a91e3f7e5abda1e6211f2.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(214, 124, 8)",
"body": "rgb(170, 98, 7)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(247, 159, 47)",
"body": "rgb(247, 159, 47)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(74, 66, 58)",
"body": "rgb(103, 91, 80)",
"background": "rgb(247, 159, 47)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Ben Thompson / James Allworth",
"__typename": "Show",
"subscribersCount": {
"totalCount": 7,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:1a62552d7e2aacbcfdcd1f6e21565553552fddf776474521c62176768076c3df",
"src": "https://cache.banter.fm/banter-media-cache/a8/ca/09/a8ca090a41cd2e6f29b69f912b8c060e863bb4af.mp3",
"origin": "http://media.blubrry.com/exponent/content.blubrry.com/exponent/exponent152.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/5f/49/aa/5f49aa1ceffd608494e43cd942bfb9cada8cc396.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8481",
"updatedAt": "2018-05-18T14:16:04.010Z",
"position": 66,
"finished": false,
"episode": {
"id": "Episode:643059111",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8479",
"updatedAt": "2018-05-18T13:45:46.124Z",
"position": 1236,
"finished": true,
"episode": {
"id": "Episode:643091618",
"__typename": "Episode",
"title": "Does Mueller Have a Plan for Trump?",
"description": "White House lawyers have claimed that Robert S. Mueller III, the special counsel overseeing the Russia investigation, will not indict the president, regardless of his findings. If that’s true, then what is the purpose of his inquiry? Guest: Michael S. Schmidt, a Washington correspondent who covers national security and federal investigations for The New York Times. For more information on today’s episode, visit nytimes.com/thedaily.",
"publishedAt": "2018-05-18T09:55:25.000Z",
"duration": 1236,
"owner": {
"id": "Show:13",
"name": "The Daily",
"handle": null,
"description": "This is what the news should sound like. The biggest stories of our time, told by the best journalists in the world. Hosted by Michael Barbaro. Twenty minutes a day, five days a week, ready by 6 a.m.",
"image": {
"id": "Image:86291898",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/27/2b/62/272b6276ee7aa1ccfa41aaa0bcf40793991c0d53.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:13",
"halftones": {
"cmyk": {
"id": "Image:1c4fd710b7ee353b5c902531af7ae4862fbfdddd401cdd5e9afb962ae84f9962",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d0/37/ed/d037ed87fffe4ff2b48e3f3fc284bef93c20531e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 124, 180)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 142, 206)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(231, 243, 70)",
"body": "rgb(231, 244, 74)",
"background": "rgb(0, 142, 206)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The New York Times",
"__typename": "Show",
"subscribersCount": {
"totalCount": 139,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": {
"id": "Episode:644847564",
"title": "The Daily Presents “Caliphate,” Chapter 5",
"description": "The New York Times has introduced a documentary audio series that follows Rukmini Callimachi, who covers terrorism for The Times, on her quest to understand ISIS. Today, as a special episode of “The Daily,” we offer Chapter 5 of “Caliphate,” in which an ISIS recruit carries out a killing — then questions everything.\n\nThe next episode of “Caliphate” will publish in the series’s own feed next Thursday, May 24th, and as a bonus installment of “The Daily” next Saturday, May 26th. New York Times subscribers can listen to that episode now at nytimes.com/caliphate.\n\nThis episode includes disturbing language and scenes of graphic violence.",
"publishedAt": "2018-05-19T09:45:00.000Z",
"duration": 1356,
"owner": {
"id": "Show:13",
"name": "The Daily",
"handle": null,
"description": "This is what the news should sound like. The biggest stories of our time, told by the best journalists in the world. Hosted by Michael Barbaro. Twenty minutes a day, five days a week, ready by 6 a.m.",
"image": {
"id": "Image:86291898",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/27/2b/62/272b6276ee7aa1ccfa41aaa0bcf40793991c0d53.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:13",
"halftones": {
"cmyk": {
"id": "Image:1c4fd710b7ee353b5c902531af7ae4862fbfdddd401cdd5e9afb962ae84f9962",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d0/37/ed/d037ed87fffe4ff2b48e3f3fc284bef93c20531e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 124, 180)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 142, 206)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(231, 243, 70)",
"body": "rgb(231, 244, 74)",
"background": "rgb(0, 142, 206)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The New York Times",
"__typename": "Show",
"subscribersCount": {
"totalCount": 139,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:80cb63ce9b94ccac3d2442e8c035179c335210c134ebe9584a72bed5ad6a24de",
"src": "https://cache.banter.fm/banter-media-cache/18/f9/43/18f9433fa947cf3868e46380a63891362557fb02.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/c867f985-7cce-4d6d-9914-1ed43b1fc8e4.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/40/95/50/409550049925cca9801fdc26466589396c761b0a.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}
},
"images": [],
"media": {
"id": "Media:d9874f00756d08a86cd4363e54be38c2fd910622fbbd878145d81737835574c7",
"src": "https://cache.banter.fm/banter-media-cache/23/ce/b0/23ceb0971504e7be9cea7f3be4b5569c3ebbd0e4.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/596e9a2f-c5c7-47fe-99f0-b0421061def3.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/06/5f/1d/065f1d932ec865cf1c0ebe7ad14830f4bc6715b8.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8479",
"updatedAt": "2018-05-18T13:45:46.124Z",
"position": 1236,
"finished": true,
"episode": {
"id": "Episode:643091618",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 7,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 6,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2698592",
"name": "Lucy Lyle",
"handle": "lucylyle",
"description": null,
"image": {
"id": "Image:125387105",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/95/98/70/959870d51ff50fd1d6274413e09a7ba887521095.jpeg",
"width": 512,
"height": 511,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698592",
"halftones": {
"cmyk": {
"id": "Image:c3e0f83b45d478d9254f80538b2439231e6c2767842cb44979dfffffed803645",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/23/5f/73/235f7370f1cc1d78b017bd823c15716622949362.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(245, 49, 1)",
"body": "rgb(225, 45, 1)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(245, 49, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(194, 39, 1)",
"body": "rgb(245, 49, 1)",
"background": "rgb(245, 241, 235)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:20393",
"name": "Jess Garms",
"handle": "jess",
"description": null,
"image": {
"id": "Image:4679",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/dc/ba/fd/dcbafdffc1f6d0a8938fed8958af6b32351909db.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20393",
"halftones": {
"cmyk": {
"id": "Image:17b224e402c470f16254328586c6dce77313fea21e81ab8ff61094548965394f",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/c3/09/ad/c309ade9603b1deb4f4a1bcef1fa51e52c528bc3.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(199, 131, 129)",
"body": "rgb(156, 102, 100)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(184, 145, 144)",
"body": "rgb(184, 145, 144)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(164, 114, 113)",
"body": "rgb(184, 145, 144)",
"background": "rgb(39, 34, 39)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:20416",
"name": "Savannah Krenzel",
"handle": "sannarie",
"description": null,
"image": {
"id": "Image:14231",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b6/eb/a2/b6eba2b9b6ff758464dcb01dee8648ed8322faec.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:20416",
"halftones": {
"cmyk": {
"id": "Image:295a0ad58385e08d9ad5e5ec533e1ec019be8cac064b35c05b30eecf2a374e4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/b6/5d/82b65d4f53a40d80c359e40b31a12ac1c0a0faf8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(159, 40, 70)",
"body": "rgb(159, 40, 70)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(174, 25, 63)",
"body": "rgb(207, 64, 100)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(192, 48, 84)",
"body": "rgb(192, 48, 84)",
"background": "rgb(31, 25, 37)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12580",
"name": "Cheston Lee",
"handle": "cheston",
"description": null,
"image": {
"id": "Image:70482301",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/98/6a/ac/986aacf8bcb350f90958db2f5127010ccaafbd5b.jpeg",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12580",
"halftones": {
"cmyk": {
"id": "Image:f6f112c66cc40074778704767c717a9dcdb1bdc4c76e783eded74476c9051af1",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/82/38/a4/8238a4e13867ae5be4555b78c75e3393943d1f34.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(109, 56, 21)",
"body": "rgb(109, 56, 21)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(139, 71, 27)",
"body": "rgb(182, 93, 35)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(156, 80, 30)",
"body": "rgb(156, 80, 30)",
"background": "rgb(30, 18, 14)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8372",
"updatedAt": "2018-05-16T21:12:08.040Z",
"position": 630,
"finished": false,
"episode": {
"id": "Episode:638938008",
"__typename": "Episode",
"title": "EP.76 - CHARLIE BROOKER",
"description": "BLOG\nAdam talks with British writer, producer and presenter Charlie Brooker.\nTHIS EPISODE CONTAINS LANGUAGE AND THEMES THAT HAVE OFFENDED IN THE PAST AND MAY OFFEND AGAIN.\nThere was a problem with one of the mics on this episode hence roomy sound from back up recording. Apologies for any emo\n\n\nHello. Adam here with a few notes and links related to this episode for you.\nMy rambly conversation with Charlie was recorded in March of this year 2018, in the west London house where he lives with his wife Connie and their two young children.&nbsp;\nCharlie started his media career writing about video games in the 90s and we began by reminiscing about our childhood fascination with those blocky virtual worlds.\nWe also talked about Nathan Barley (Channel 4, 2005), Black Mirror (Channel 4, Netflix, 2011 - present), how comedic fury can be taken at face value, smoking, defecating, and how we would cope if we were on reality TV or facing armageddon and didn’t have Bear Grylls to advise us. Charlie also does an impression of comedian Jimmy Carr’s laugh which will improve your life.\nThanks to Seamus Murphy-Mitchel for production support.\nMusic and jingles by Adam Buxton\n\n\nADAM BUXTON’S OLD BITS DVD/DOWNLOAD\nhttps://www.gofasterstripe.com/cgi-bin/website.cgi?page=videofull&id=33226\n\n\nTHE FREE ADAM BUXTON BUXTON APP\nhttps://itunes.apple.com/gb/app/the-adam-buxton-app/id1264624915?mt=8\n\n\nCHARLIE CONVO LINKS\n\n\nADAM & JOE - PEOPLE PLACE&nbsp;\nhttps://youtu.be/IBjcHsRLSsc\n\n\nTV GO HOME WEBSITE\nhttp://www.tvgohome.com/\n\n\nNATHAN BARELY EP 1\nhttps://www.youtube.com/watch?v=Rqfkuc5mawg\n\n\n‘WAKE IN FRIGHT’ 2012 ARTICLE IN THE NEW YORKER\nhttps://www.newyorker.com/culture/culture-desk/wake-in-fright-prepare-to-be-disturbed-mate\n\n\n‘WAKE IN FRIGHT’ HOW WAS THE KANGAROO SLAUGHTER FILMED?\nhttp://screenprism.com/insights/article/in-wake-in-fright-how-was-the-kangaroo-scene-filmed\n\n\nARISTON AD FEATURING ROBOCOP VIDEO GAME MUSIC\nhttps://www.youtube.com/watch?v=YUVs7vXNZiw\n\n\nPYE CORNER AUDIO YOUTUBE PLAYLIST\nhttps://www.youtube.com/playlist?list=PLPlEifkDHZgycqnDndOmkpNIjCiY1KYlW\n\n\nCHILDHOOD TRAUMA LINKS (STILL GRIM!)\n\n\nQ.E.D. - A GUIDE TO ARMAGEDDON\nhttps://www.youtube.com/watch?v=9GJttnC8PoA\n\n\nPROTECT AND SURVIVE - 70s UK PUBLIC INFORMATION FILMS ABOUT NUCLEAR WAR\nhttps://www.youtube.com/watch?v=m6U9T3R3EQg\n\n\n‘CHARLIE SAYS’ DON’T TALK TO STRANGERS\nhttps://www.youtube.com/watch?v=y3FnCiRpdQ4",
"publishedAt": "2018-05-13T19:05:46.000Z",
"duration": 4941,
"owner": {
"id": "Show:2688714",
"name": "THE ADAM BUXTON PODCAST",
"handle": null,
"description": "Adam Buxton is a British comedian, actor and director who has appeared in films such as ‘Hot Fuzz’, ‘Stardust’ and ‘Son Of Rambow’ as well as a variety of TV shows in the UK. \n\nSince 2007 he has hosted ‘BUG’, a bi monthly live show that combines music videos and comedy that became a TV series on Sky Atlantic in 2012. \n\nAlong with lifelong friend Joe Cornish he also is one half of award winning TV, radio and podcast duo Adam & Joe who have worked together since 1995.\n\nHe lives with his wife and 3 children in Norfolk in the east of England.\n\nHe is writing this himself using the third person.",
"image": {
"id": "Image:65695962",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/21/fd/8d/21fd8d1de07c742121049e5dfe68a4597d0fdce6.null",
"width": 1500,
"height": 1500,
"__typename": "Image"
},
"theme": {
"id": "Theme:2688714",
"halftones": {
"cmyk": {
"id": "Image:2d71a262f729b402d4d9095ae10e68949b6f2fb2d2eea8bd15ddf4ce8102b418",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6f/6c/42/6f6c42401b19318d3f80e480dc779f7a6a388d8e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(74, 137, 243)",
"body": "rgb(36, 112, 240)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(74, 137, 243)",
"body": "rgb(74, 137, 243)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(8, 52, 125)",
"body": "rgb(11, 72, 173)",
"background": "rgb(53, 162, 247)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "ADAM BUXTON",
"__typename": "Show",
"subscribersCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 0,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [],
"media": {
"id": "Media:bd7407870f7307dc097d5ffe0e520468bdfdaa58cd5e1992cc260a18f2a3f0f3",
"src": "https://cache.banter.fm/banter-media-cache/c6/39/f9/c639f99fd8496609f7a0b9d480304a1acae09fe8.mp3",
"origin": "https://media.acast.com/adambuxton/ep.76-charliebrooker/media.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/d7/2f/f0/d72ff07fc59427c85bcf9d9702f8202ef064b38d.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8372",
"updatedAt": "2018-05-16T21:12:08.040Z",
"position": 630,
"finished": false,
"episode": {
"id": "Episode:638938008",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 4,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 3,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:2689113",
"name": "Maribeth Friel",
"handle": "maribeth_friel",
"description": null,
"image": {
"id": "Image:68037275",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d6/86/70/d686708c0d6b838b278303d8204244d1d666a3a6.jpeg",
"width": 512,
"height": 512,
"__typename": "Image"
},
"theme": {
"id": "Theme:2689113",
"halftones": {
"cmyk": {
"id": "Image:c96ae16a87380d97f2b7565d8dbd487f92441a43798c88a5752f3bb02a9873dd",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/7b/b1/7f/7bb17fd1556576ab8882e0acba8aae982c6ffd22.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(138, 147, 185)",
"body": "rgb(103, 115, 163)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(230, 232, 240)",
"body": "rgb(230, 232, 240)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(8, 5, 9)",
"background": "rgb(230, 232, 240)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 173,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:2698157",
"name": "Kevin Korpi",
"handle": "lonelybob",
"description": null,
"image": {
"id": "Image:118807324",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/69/11/cb/6911cbd92169fd1515111d009890c2f7243f9b2f.null",
"width": 129,
"height": 129,
"__typename": "Image"
},
"theme": {
"id": "Theme:2698157",
"halftones": {
"cmyk": {
"id": "Image:1168d24e6818b70eafd7aee1e5387246d33beb8c8ea8ffea261775c842c9948a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9c/35/62/9c3562c1290bb88ab5c94e52750b16471d223260.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 158, 38)",
"body": "rgb(98, 125, 30)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(169, 210, 67)",
"body": "rgb(169, 210, 67)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(85, 108, 26)",
"body": "rgb(117, 149, 36)",
"background": "rgb(245, 244, 242)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 176,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}, {
"id": "EpisodeSession:8366",
"updatedAt": "2018-05-16T19:21:53.387Z",
"position": 1500,
"finished": false,
"episode": {
"id": "Episode:631376669",
"__typename": "Episode",
"title": "#40: dilDOs and dilDON'Ts",
"description": "<p>Sex toys can be about more than just pleasure. For queer people, they're often a vital part of figuring yourself out.</p>\n<p><a href=\"https://twitter.com/gaybonez\" target=\"_blank\">Gabe Gonzalez</a> is a comedian and writer. <a href=\"http://buckangel.com/\" target=\"_blank\">Buck Angel</a> is a trans advocate and sex toy designer. Special thanks to Hallie Lieberman, author of the book <a href=\"https://www.amazon.com/Buzz-Stimulating-History-Sex-Toy/dp/1681775433\">Buzz: The Stimulating History of the Sex Toy</a>. </p>\n<p>Original music by Jeremy Bloom with additional music by James Pants (<a href=\"http://freemusicarchive.org/music/James_Pants/Bonus_Beat_Blast_2011/33_james_pants-bird\">\"Bird\"</a>) and Kevin MacLeod (<a href=\"http://freemusicarchive.org/music/Kevin_MacLeod/Jazz_Sampler/Off_to_Osaka\">\"Off to Osaka\"</a>).</p>\n<p><em>Support our work! Become a Nancy member today at <a href=\"https://pledge3.wnyc.org/donate/nancy-it/onestep/?utm_source=wnyc&amp;utm_medium=nancy-redirect&amp;utm_campaign=pledge&amp;utm_content=show-notes\" target=\"_blank\" title=\"Pledge\">Nancypodcast.org/donate</a>.</em></p>",
"publishedAt": "2018-05-13T16:00:00.000Z",
"duration": 1588,
"owner": {
"id": "Show:2884",
"name": "Nancy",
"handle": null,
"description": "BFFs Kathy Tu and Tobin Low are super queer, super fun and ready to take over your podcast feed. Join them for provocative stories and frank conversations about the LGBTQ experience today. Because everyone’s a little bit gay.\r\r\n\r\r\nWNYC Studios is the producer of other podcasts including Radiolab, Death, Sex & Money, 2 Dope Queens and many others.",
"image": {
"id": "Image:96709",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d2/87/18/d28718f053ec631ea201733c68923c91dae7bd68.png",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:2884",
"halftones": {
"cmyk": {
"id": "Image:68b948638d42d8df52600412495036101bfe8c7aa48b74b807d95affa778693d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bc/d2/17/bcd217f025285fd1d78812a23d44a40bcfe70bd8.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(152, 88, 216)",
"body": "rgb(152, 85, 219)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(152, 88, 216)",
"body": "rgb(152, 88, 216)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(207, 238, 251)",
"body": "rgb(254, 255, 255)",
"background": "rgb(152, 88, 216)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "WNYC Studios",
"__typename": "Show",
"subscribersCount": {
"totalCount": 3,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"upNext": null
},
"images": [{
"id": "Image:121021124",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/9f/cf/48/9fcf48617183a53474e01da86dc452b1baeb60a6.png",
"width": 1860,
"height": 1220,
"__typename": "Image"
}],
"media": {
"id": "Media:c201199e79bcb788fe4c0a292a6bd0ebe596a9c46ff7ec9b7be6e9ce7dd15477",
"src": "https://cache.banter.fm/banter-media-cache/b7/44/11/b7441192ab0cc83e3f4469b244bffcf9702151c8.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/audio.wnyc.org/nancy/nancy051318_cms854358_pod.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/f5/a3/e0/f5a3e0c875454a1a70473c7300b50fed7d851ed6.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [{
"id": "EpisodeSession:8366",
"updatedAt": "2018-05-16T19:21:53.387Z",
"position": 1500,
"finished": false,
"episode": {
"id": "Episode:631376669",
"__typename": "Episode"
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 1,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
},
"__typename": "EpisodeSession"
}],
"__typename": "EpisodeSessionConnection"
},
"__typename": "User"
},
"upNext": {
"items": [{
"id": "Episode:648295022",
"title": "Bob's Red Mill: Bob Moore",
"description": "In the 1960s, Bob Moore read a book about an old grain mill and was inspired to start his own. Using giant quartz stones from the 19th century, he made dozens of different cereals and flours, positioning his company at the forefront of the health food boom. Today, Bob's Red Mill has grown into a $100 million business – and at nearly 90, Bob goes to work at the mill every day. PLUS, for our postscript, \"How You Built That,\" how Mike Bolos and Jason Grohowski created the portable desk, Deskview.",
"publishedAt": "2018-05-21T04:02:03.000Z",
"duration": 2806,
"owner": {
"id": "Show:32",
"name": "How I Built This with Guy Raz",
"handle": null,
"description": "Guy Raz dives into the stories behind some of the world's best known companies. <em>How I Built This</em> weaves a narrative journey about innovators, entrepreneurs and idealists—and the movements they built.",
"image": {
"id": "Image:1349363",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/bd/52/32/bd52320ee3a140f16e3893f32f355e0e4dbd2b12.null",
"width": 1400,
"height": 1400,
"__typename": "Image"
},
"theme": {
"id": "Theme:32",
"halftones": {
"cmyk": {
"id": "Image:60d8953b0cf66977f99da4c51b98341d3c530d6ec94dc206ee45027a3513644b",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/de/9e/c8/de9ec89819c29514dc11b42b6ef884d071127e4a.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(190, 138, 13)",
"body": "rgb(151, 110, 11)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(239, 176, 25)",
"body": "rgb(239, 176, 25)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(199, 145, 14)",
"body": "rgb(239, 176, 25)",
"background": "rgb(47, 47, 47)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 9,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:125486825",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/80/71/ef/8071ef61746010987558bbf31af16b9802b5aae6.jpeg",
"width": 1400,
"height": 787,
"__typename": "Image"
}],
"media": {
"id": "Media:73046dfd4e0801dc499ea4454b675c0728ad5ba83c70ef6530bf348ab0ed6f22",
"src": "https://media.staging.banter.fm/episodes/648295022.mp3",
"origin": "https://play.podtrac.com/npr-510313/npr.mc.tritondigital.com/NPR_510313/media/anon.npr-mp3/npr/hibt/2018/05/20180517_hibt_bobs.mp3?orgId=1&d=2806&p=510313&story=612108005&t=podcast&e=612108005&ft=pod&f=510313",
"waveform": null,
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:648004204",
"title": "646: The Secret of My Death",
"description": "Cryptic messages on a cell phone and a teeter totter at a construction site: these are clues people found, trying to make sense of a death.",
"publishedAt": "2018-05-20T22:00:00.000Z",
"duration": 4008,
"owner": {
"id": "Show:10",
"name": "This American Life",
"handle": null,
"description": "This American Life is a weekly public radio show, heard by 2.2 million people on more than 500 stations. Another 2.5 million people download the weekly podcast. It is hosted by Ira Glass, produced in collaboration with Chicago Public Media, delivered to stations by PRX The Public Radio Exchange, and has won all of the major broadcasting awards.",
"image": {
"id": "Image:86292014",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f4/09/d4/f409d4bbd5e4606e160254afd1ea242088dcc42f.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:10",
"halftones": {
"cmyk": {
"id": "Image:b722235f0579dbd50fdc101764709e45abe7a14699ba05da1aa2ed31320f812a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/11/50/62/11506208041331ec95324a05fcc483dc70cfb158.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(232, 0, 0)",
"body": "rgb(232, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(232, 0, 0)",
"body": "rgb(237, 0, 0)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(232, 201, 199)",
"body": "rgb(247, 236, 235)",
"background": "rgb(232, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "This American Life",
"__typename": "Show",
"subscribersCount": {
"totalCount": 158,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:8cdb45323660b7c1cb15e8bc4bec3e744bf745e3c297afc2fee7499a49b2a66c",
"src": "https://cache.banter.fm/banter-media-cache/58/f1/b4/58f1b4a01de7f17502f80310ff851fe8d23aeefb.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/podcast.thisamericanlife.org/podcast/646.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/fc/98/ae/fc98ae1e3ffc993f0b473aa823c356f4d75e28a7.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:642303129",
"title": "Risky Business feature interview: Hacking PUBG",
"description": "Here it is – this week’s feature interview with Marisa Emerson! Marisa is a security researcher who did a great talk at BSides Canberra in March all about game cheating.\n\nShe was specifically talking about the cheating techniques PUBG gamers are using and just how advanced they are. The crazy thing is the cheaters here are rolling some pretty decent techniques. It’s reminiscent of the iPhone jailbreaking scene – a lot of good hackers who don’t know they’re good hackers.\n\nMarisa is running a binary exploitation bootcamp in Brisbane that will have another session next semester. Details are here.",
"publishedAt": "2018-05-18T00:00:00.000Z",
"duration": 1647,
"owner": {
"id": "Show:2340",
"name": "Risky Business",
"handle": null,
"description": "Risky Business is a weekly information security podcast featuring news and in-depth interviews with industry luminaries. Launched in February 2007, Risky Business is a must-listen digest for information security pros. With a running time of approximately 50-60 minutes, Risky Business is pacy; a security podcast without the waffle.",
"image": {
"id": "Image:99599550",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/4e/0c/7b/4e0c7b1f656ee15760585f83ab00294b21223159.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:2340",
"halftones": {
"cmyk": {
"id": "Image:efd39161e4b2b1589eb5fbf6189d159010299f6a0eb94518487728fdf81f2450",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fb/e1/ba/fbe1ba4e514949a9586725b0e3ad16c296f3e1a1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(248, 248, 248)",
"body": "rgb(248, 248, 248)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 1)",
"background": "rgb(248, 248, 248)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Patrick Gray",
"__typename": "Show",
"subscribersCount": {
"totalCount": 2,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:4da10a997e49911591257a896d50b9df5872f837fdcc6d557eefa5693e523685",
"src": "https://cache.banter.fm/banter-media-cache/c5/ea/bc/c5eabcec5f3b2dc982ffcea02eaaf46d87b03bb6.mp3",
"origin": "http://media2.risky.biz/RB499_feature.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/4b/e1/02/4be10218ff0b4a04935bc37fe5aa242c2d721beb.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:644186134",
"title": "Across the Desert and the Sea",
"description": "African migrants fleeing persecution or seeking opportunity often end up in Libya, where they are tortured and trafficked. Many try to escape to Europe, only to be intercepted at sea and returned to Libya. On this episode of Reveal, we bring you one reporter’s dispatch from a treacherous migrant rescue operation and explore how Europe’s … Continue reading Across the Desert and the Sea →",
"publishedAt": "2018-05-19T04:05:37.000Z",
"duration": 3036,
"owner": {
"id": "Show:1528",
"name": "Reveal",
"handle": null,
"description": "The official free download of the award-winning radio program “Reveal,” produced by The Center for Investigative Reporting and PRX. Hidden stories, uncovered – that's what this show is about. It takes you deep inside stories that impact your world, revealing injustice and holding the powerful accountable. The first-of-its-kind investigative program on public radio, \"Reveal\" is hosted by Al Letson and updated regularly.",
"image": {
"id": "Image:86362049",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/2c/0a/a7/2c0aa7fd38da2725b89ea1e76d8c3b29129c6cc9.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:1528",
"halftones": {
"cmyk": {
"id": "Image:1ece3f3f8e2ac899f00261cd585819574c5b47b5e504387b1b703dc6187e2e0b",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/25/d9/3a/25d93ae3372be61d048e22311e9f57cd24f9ba9d.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(247, 247, 247)",
"body": "rgb(247, 247, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(222, 222, 222)",
"body": "rgb(247, 247, 247)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The Center for Investigative Reporting and PRX",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [{
"id": "Image:124404600",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/96/ba/10/96ba10101f0b2e2116e1187c7fcecc26aaa1342f.jpeg",
"width": 3000,
"height": 2000,
"__typename": "Image"
}],
"media": {
"id": "Media:fda22313a6cbfd9c722f04b737f26ef977c3864549cc3b1b70e3a6d4b279a4b8",
"src": "https://cache.banter.fm/banter-media-cache/eb/9a/00/eb9a00ff2d21a9e9b70e0b1ffadb1815280ae966.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/media.blubrry.com/reveal/cdn-reveal.prx.org/wp-content/uploads/Across-the-Desert-and-the-Sea_128.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/88/97/5d/88975d2366ad1baa256d0ae1b3030f872579baca.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:260944411",
"title": "Episode 2: The Days That Follow",
"description": "After the arrival of The Phenomenon, survivors around the world begin grappling with the realities of their new world. www.phenomenonpod.com",
"publishedAt": "2017-11-29T14:11:25.000Z",
"duration": 1327,
"owner": {
"id": "Show:447596",
"name": "The Phenomenon",
"handle": null,
"description": "When a supernatural threat drives mankind to the point of extinction, survivors around the globe struggle to endure in a world with just three rules:\n\nDo not look outside. Do not look at the sky. Do not make noise.",
"image": {
"id": "Image:99680302",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6d/0e/1b/6d0e1b5f260a228e5af3f4aa4766a64ea282e54e.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:447596",
"halftones": {
"cmyk": {
"id": "Image:bf9122008c9beb7074a0a88b0ed2d7d5cf15f3f036021f8045c70251e9fb6401",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/10/da/da/10dadae184ecd8aa1b8e7bb21f43f453cc4f5bfb.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(244, 244, 244)",
"body": "rgb(244, 244, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(219, 219, 219)",
"body": "rgb(244, 244, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Luciola Creative",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:7612f7fadc1e7a2312574cc3eb9548b0263607b98c9a96f7b65b928d27ea60c6",
"src": "https://cache.banter.fm/banter-media-cache/e3/ed/ae/e3edae9fa405fa7f4348c4ea1324f9e5461c79f9.mp3",
"origin": "http://traffic.libsyn.com/phenomenonpod/The_Phenomenon_Episode_2_The_Days_That_Follow.mp3?dest-id=564641",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/b7/d8/e8/b7d8e88e2c20b9636dfac078f0a2841ae4f8b1e8.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 2,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}, {
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:645154270",
"title": "Rudy Awakening",
"description": "A bunch of corruption and collusion stories break and it’s very bad for the crime gang! Trump calls people animals and we debate how nuanced it was. The Peace Prize hits a snag on the Korean peninsula. And yes there’s a royal wedding but we stopped caring about that AT YORKTOWN IN 1781. Anyway, great show. Paul Scheer (check out his new podcast! https://itunes.apple.com/us/podcast/unspooled/id1381507437?mt=2), Amanda Seales, and labor activist Saru Jayaraman join Jon to break down the week’s news. Plus we do like 30 seconds on Laurel/Yanni tops.",
"publishedAt": "2018-05-19T12:29:30.000Z",
"duration": 3913,
"owner": {
"id": "Show:70",
"name": "Lovett or Leave It",
"handle": null,
"description": "Jon Lovett, former Obama speechwriter and co-host of Pod Save America, is joined by comedians, actors, journalists, and many, many renowned Friends of the Pod for a roundup of the week's top news. Rants! Games! Bad impressions! Nuanced discussion! Recorded in front of a live audience.",
"image": {
"id": "Image:86296659",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/34/ab/c6/34abc6674541f8427649651f8bd1309714a7dd60.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:70",
"halftones": {
"cmyk": {
"id": "Image:f2e2e4e0386a2e5db9999ff4f09b6969a8182d34379f69410f5eea6bd5da49dc",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/6a/fb/1e/6afb1e42a811543f3aabdf4ab677f2ce6e6dc9f1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(189, 31, 18)",
"body": "rgb(189, 31, 18)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(189, 31, 18)",
"body": "rgb(226, 37, 22)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(142, 23, 14)",
"body": "rgb(189, 31, 18)",
"background": "rgb(248, 232, 0)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "Crooked Media",
"__typename": "Show",
"subscribersCount": {
"totalCount": 4,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:e482ceebe2851a4d3421c1729a90680b1dca36ccf02352cac0ef7ae85737c23c",
"src": "https://cache.banter.fm/banter-media-cache/71/f2/70/71f2705185ac96c4967d938084a019959ba88ea6.mp3",
"origin": "https://rss.art19.com/episodes/45cda39d-9688-4110-a39d-35e14e9a8ba9.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/05/dc/5c/05dc5c3c81238eb1fa8f59e31b66d3d9487bd350.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:449076",
"name": "Matt McFarlane",
"handle": "mattymcf",
"description": null,
"image": {
"id": "Image:107283113",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/f7/09/bb/f709bb6cfa415f377498349938710eb4a37767ec.null",
"width": 157,
"height": 157,
"__typename": "Image"
},
"theme": {
"id": "Theme:449076",
"halftones": {
"cmyk": {
"id": "Image:3f321efa09b25faa828cf5975961e032068d54afda9f2535270a8db4d116ad88",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/b2/d0/ac/b2d0ace5446fcb56560e985da3b91cefde740fb5.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(118, 132, 162)",
"body": "rgb(72, 115, 208)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(118, 132, 162)",
"body": "rgb(118, 132, 162)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(93, 107, 136)",
"body": "rgb(118, 132, 162)",
"background": "rgb(38, 18, 31)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:644997754",
"title": "SYSK Selects: Is brain size related to intelligence?",
"description": "The idea that the larger the brain, the higher the intelligence is an old one, but it's pretty much utterly false. Modern investigation into how the brain works suggests there's a lot more to take into account when comparing brain biology to intellect.",
"publishedAt": "2018-05-19T11:00:00.000Z",
"duration": 2301,
"owner": {
"id": "Show:9",
"name": "Stuff You Should Know",
"handle": null,
"description": "How do landfills work? How do mosquitos work? Join Josh and Chuck as they explore the Stuff You Should Know about everything from genes to the Galapagos in this podcast from HowStuffWorks.com.",
"image": {
"id": "Image:124400714",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/2d/f6/60/2df6608b39c0a7e3d02906cb287394f329a0c30c.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:9",
"halftones": {
"cmyk": {
"id": "Image:abea545be4ddfafe56c399f511c51d22442680ddd52570165f98c4e934b1641c",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/65/71/29/6571290b5c7773f588901f44e51f979b4f9c58b6.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(201, 52, 46)",
"body": "rgb(201, 52, 46)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(201, 52, 46)",
"body": "rgb(231, 25, 16)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(6, 4, 5)",
"body": "rgb(35, 26, 30)",
"background": "rgb(201, 52, 46)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "HowStuffWorks",
"__typename": "Show",
"subscribersCount": {
"totalCount": 120,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:153d5a3eb9d590104ba2915304b28d95372c31b77bcdfaa3e2b5c1e05adbdd32",
"src": "https://cache.banter.fm/banter-media-cache/16/7e/28/167e284f239480264b2283c1e11c048bbff39e68.mp3",
"origin": "https://www.podtrac.com/pts/redirect.mp3/traffic.megaphone.fm/HSW7140919727.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/fc/cd/5b/fccd5bbe7938bbc52c7c0489eaa49b79290ba7c1.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:22661",
"name": "Mark Golazeski",
"handle": "mark",
"description": null,
"image": {
"id": "Image:4625",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/af/48/b0/af48b0525a8f2f5172f212bab4323e67e38ee0cd.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:22661",
"halftones": {
"cmyk": {
"id": "Image:01f29de27c8236d19a47d86a7f15e70dd11b594ed5500b4cd2e06cf66e8fd66a",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/3b/d9/b1/3bd9b1df83d5fd5a71b0297654659e181ddbdfe7.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(42, 156, 229)",
"body": "rgb(23, 123, 187)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(165, 213, 244)",
"body": "rgb(165, 213, 244)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(120, 192, 238)",
"body": "rgb(165, 213, 244)",
"background": "rgb(27, 22, 29)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:644847564",
"title": "The Daily Presents “Caliphate,” Chapter 5",
"description": "The New York Times has introduced a documentary audio series that follows Rukmini Callimachi, who covers terrorism for The Times, on her quest to understand ISIS. Today, as a special episode of “The Daily,” we offer Chapter 5 of “Caliphate,” in which an ISIS recruit carries out a killing — then questions everything.\n\nThe next episode of “Caliphate” will publish in the series’s own feed next Thursday, May 24th, and as a bonus installment of “The Daily” next Saturday, May 26th. New York Times subscribers can listen to that episode now at nytimes.com/caliphate.\n\nThis episode includes disturbing language and scenes of graphic violence.",
"publishedAt": "2018-05-19T09:45:00.000Z",
"duration": 1356,
"owner": {
"id": "Show:13",
"name": "The Daily",
"handle": null,
"description": "This is what the news should sound like. The biggest stories of our time, told by the best journalists in the world. Hosted by Michael Barbaro. Twenty minutes a day, five days a week, ready by 6 a.m.",
"image": {
"id": "Image:86291898",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/27/2b/62/272b6276ee7aa1ccfa41aaa0bcf40793991c0d53.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:13",
"halftones": {
"cmyk": {
"id": "Image:1c4fd710b7ee353b5c902531af7ae4862fbfdddd401cdd5e9afb962ae84f9962",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/d0/37/ed/d037ed87fffe4ff2b48e3f3fc284bef93c20531e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 124, 180)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(0, 142, 206)",
"body": "rgb(0, 142, 206)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(231, 243, 70)",
"body": "rgb(231, 244, 74)",
"background": "rgb(0, 142, 206)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "The New York Times",
"__typename": "Show",
"subscribersCount": {
"totalCount": 139,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:80cb63ce9b94ccac3d2442e8c035179c335210c134ebe9584a72bed5ad6a24de",
"src": "https://cache.banter.fm/banter-media-cache/18/f9/43/18f9433fa947cf3868e46380a63891362557fb02.mp3",
"origin": "https://dts.podtrac.com/redirect.mp3/rss.art19.com/episodes/c867f985-7cce-4d6d-9914-1ed43b1fc8e4.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/40/95/50/409550049925cca9801fdc26466589396c761b0a.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 1,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [{
"id": "User:12581",
"name": "Steve Krenzel",
"handle": "steve",
"description": null,
"image": {
"id": "Image:121252725",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/20/63/46/206346297cdbecb8a672b7f0b54e7ad30f60996b.null",
"width": 200,
"height": 200,
"__typename": "Image"
},
"theme": {
"id": "Theme:12581",
"halftones": {
"cmyk": {
"id": "Image:6c2aa822c83bc4e5780e51fb13d1dda388ecef1ba24271011e71bd4dd339fc4d",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/fc/a3/1c/fca31cb704acc1e27d2e485823b9f17927e5f6b1.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(123, 128, 69)",
"body": "rgb(117, 121, 65)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(123, 128, 69)",
"body": "rgb(123, 128, 69)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(250, 251, 247)",
"body": "rgb(250, 251, 247)",
"background": "rgb(140, 151, 74)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"isAnonymous": false,
"__typename": "User",
"subscribersCount": {
"totalCount": 174,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
}],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 2,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:644190191",
"title": "a16z Podcast: B2B2C",
"description": "When it comes to B2B2C business models -- which combine both business to business (B2B) and business to consumer (B2C) -- who really \"owns\" the customer? That question might not matter as much in more symbiotic, mutually beneficial marketplaces and other platform contexts, but can be a problem in other contexts or if not done right. For example, if it gives entrepreneurs the illusion that they don't have to work to acquire customers, invest in direct sales, or provides a (false) sense of optionality for a second product/ business that \"will work later someday\".\n\nGeneral partners Alex Rampell (who among other things co-founded TrialPay and Affirm) and Martin Casado (who was formerly CTO and cofounder of Nicira, and then SVP and GM of VMWare's networking and security business unit) draw on their backgrounds on both the consumer and enterprise side of B2B2C to share lessons learned in this episode of the 16z Podcast (in conversation with Sonal Chokshi). In enterprise settings, expanding the sale is one of the biggest drivers of growth, and there are broader ecosystem partners and considerations at play. But more broadly, we discuss how one could think about \"channel\" -- a.k.a. the route to market for distributing product to customers -- as well as if, when, and how to build more than one product in a startup.",
"publishedAt": "2018-05-18T23:29:31.000Z",
"duration": 1754,
"owner": {
"id": "Show:2280",
"name": "a16z",
"handle": null,
"description": "The a16z Podcast discusses tech and culture trends, news, and the future -- especially as ‘software eats the world’. It features industry experts, business leaders, and other interesting thinkers and voices from around the world. This podcast is produced by Andreessen Horowitz (aka “a16z”), a Silicon Valley-based venture capital firm. Multiple episodes are released every week; visit a16z.com for more details and to sign up for our newsletters and other content as well!",
"image": {
"id": "Image:99597993",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ab/60/b9/ab60b9542e59fa5336e7fb77ecede85c3e4d32b1.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:2280",
"halftones": {
"cmyk": {
"id": "Image:72957926a080abb2508e5df8b32be0ddecfa889636cbc92535632c40f91c8775",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/ea/25/d5/ea25d553c5207c0bfa43d22a6e7153ce08b7601e.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(0, 0, 0)",
"body": "rgb(0, 0, 0)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(111, 85, 19)",
"body": "rgb(126, 118, 96)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(112, 86, 18)",
"body": "rgb(112, 86, 18)",
"background": "rgb(1, 1, 2)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "a16z",
"__typename": "Show",
"subscribersCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:aa96531255cd37d408254c5a540abd532e74b596bb4b6d57c65438f09b9258cc",
"src": "https://cache.banter.fm/banter-media-cache/c1/d9/e2/c1d9e2e49032ed88eea37e5aeba5edb8c97eb5c8.mp3",
"origin": "http://feeds.soundcloud.com/stream/446049561-a16z-b2b2c-consumer-enterprise.mp3",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/e0/8a/6c/e08a6c663fe3d843cb09a18a3fa1b761b4496ce6.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}, {
"id": "Episode:641926132",
"title": "Weekly Roundup: Thursday, May 17",
"description": "As Republicans break off from their party leaders, an immigration vote edges closer to the House floor. Democrats get a rare win on the Senate floor. Plus, President Trump's plans for a summit with North Korea grow sour. This episode: Congressional correspondent Susan Davis, White House reporter Ayesha Rascoe, White House correspondent Scott Horsley, and editor & correspondent Ron Elving. Email the show at nprpolitics@npr.org. Find and support your local public radio station at npr.org/stations.",
"publishedAt": "2018-05-17T20:55:00.000Z",
"duration": 2490,
"owner": {
"id": "Show:55",
"name": "NPR Politics Podcast",
"handle": null,
"description": "The NPR Politics Podcast is where NPR's political reporters talk to you like they talk to each other. With weekly roundups and quick takes on news of the day, you don't have to keep up with politics to know what's happening. You just have to keep up with us.",
"image": {
"id": "Image:125483218",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/55/2a/78/552a78222673347a0ab0e307dcbe403939fcdd05.jpeg",
"width": 600,
"height": 600,
"__typename": "Image"
},
"theme": {
"id": "Theme:55",
"halftones": {
"cmyk": {
"id": "Image:534a0b73137276e1927bf7c37f5c76ab2a1cd9dd76bda593adac2167b4261235",
"src": "https://nyc3.digitaloceanspaces.com/banter-images/52/24/dd/5224dd6aaa79057f4d92eaba588efaa9080cddb9.png",
"width": null,
"height": null,
"__typename": "Image"
},
"__typename": "Halftones"
},
"palette": {
"white": {
"title": "rgb(207, 77, 38)",
"body": "rgb(203, 75, 37)",
"background": "rgb(255, 255, 255)",
"__typename": "PaletteColors"
},
"black": {
"title": "rgb(207, 77, 38)",
"body": "rgb(207, 77, 38)",
"background": "rgb(0, 0, 0)",
"__typename": "PaletteColors"
},
"show": {
"title": "rgb(226, 126, 96)",
"body": "rgb(226, 126, 96)",
"background": "rgb(143, 37, 30)",
"__typename": "PaletteColors"
},
"__typename": "Palette"
},
"__typename": "Theme"
},
"artist": "NPR",
"__typename": "Show",
"subscribersCount": {
"totalCount": 7,
"__typename": "SubscriptionConnection"
},
"mySubscriptionsCount": {
"totalCount": 1,
"__typename": "SubscriptionConnection"
}
},
"images": [],
"media": {
"id": "Media:563b5e8fc083cb51c9aad9226430c71cdfc619f86c74ae1eaff633dc10febc02",
"src": "https://cache.banter.fm/banter-media-cache/e1/56/06/e156066e54b7154b5a3d2b8bf1a029be720d899b.mp3",
"origin": "https://play.podtrac.com/npr-510310/npr.mc.tritondigital.com/NPR_510310/media/anon.npr-mp3/npr/nprpolitics/2018/05/20180517_nprpolitics_517198politcspodcast.mp3?orgId=1&d=2490&p=510310&story=612091361&t=podcast&e=612091361&ft=pod&f=510310",
"waveform": "https://nyc3.digitaloceanspaces.com/banter-media-cache/49/ea/73/49ea73be7349bb436b35e687b86165760d87a5e1.json",
"__typename": "Media"
},
"myEpisodeSessionsPreview": {
"items": [],
"__typename": "EpisodeSessionConnection"
},
"__typename": "Episode",
"myBookmarksCount": {
"totalCount": 0,
"__typename": "BookmarkConnection"
},
"listenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersCount": {
"totalCount": 0,
"__typename": "AccountConnection"
},
"subListenersPreview": {
"items": [],
"__typename": "AccountConnection"
},
"upvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"subUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myUpvotesCount": {
"totalCount": 0,
"__typename": "UpvoteConnection"
},
"myRecastsCount": {
"totalCount": 0,
"__typename": "RecastConnection"
},
"myRecastsPreview": {
"items": [],
"__typename": "RecastConnection"
},
"repliesCount": {
"globalCount": 0,
"__typename": "ReplyConnection"
},
"subRepliesPreview": {
"items": [],
"__typename": "ReplyConnection"
}
}],
"__typename": "EpisodeConnection"
}
}
}
{
"feedIncluded": true,
"feedPageSize": 30,
"episodeSessionsIncluded": true,
"episodeSessionsPageSize": 20,
"upNextIncluded": true,
"upNextPageSize": 10
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment